ETH Price: $3,440.82 (-0.40%)
Gas: 7 Gwei

Token

JIN X9 (JX9)
 

Overview

Max Total Supply

999 JX9

Holders

472

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A
Balance
1 JX9
0x0e8634c3951b2a0A4988636fD76AE969665e6FdD
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:
JINX9

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-04-17
*/

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

//Developer Info:
//Written by Blockchainguy.net
//Email: [email protected]
//Instagram: @sheraz.manzoor

/**
 * @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;
    }
}
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);
    }
}
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);
            }
        }
    }
}
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);
}
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);
}
pragma solidity ^0.8.0;


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

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

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

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

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

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

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

    function _setOwner(address newOwner) private {
        address oldOwner = _owner;
        _owner = newOwner;
        emit OwnershipTransferred(oldOwner, newOwner);
    }
}
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;
    }
}
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;
}
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);
}
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);

    /**
     * @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);
}
error ApprovalCallerNotOwnerNorApproved();
error ApprovalQueryForNonexistentToken();
error ApproveToCaller();
error ApprovalToCurrentOwner();
error BalanceQueryForZeroAddress();
error MintedQueryForZeroAddress();
error BurnedQueryForZeroAddress();
error AuxQueryForZeroAddress();
error MintToZeroAddress();
error MintZeroQuantity();
error OwnerIndexOutOfBounds();
error OwnerQueryForNonexistentToken();
error TokenIndexOutOfBounds();
error TransferCallerNotOwnerNorApproved();
error TransferFromIncorrectOwner();
error TransferToNonERC721ReceiverImplementer();
error TransferToZeroAddress();
error URIQueryForNonexistentToken();

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

    // Compiler will pack this into a single 256bit word.
    struct TokenOwnership {
        // The address of the owner.
        address addr;
        // Keeps track of the start time of ownership with minimal overhead for tokenomics.
        uint64 startTimestamp;
        // Whether the token has been burned.
        bool burned;
    }

    // Compiler will pack this into a single 256bit word.
    struct AddressData {
        // Realistically, 2**64-1 is more than enough.
        uint64 balance;
        // Keeps track of mint count with minimal overhead for tokenomics.
        uint64 numberMinted;
        // Keeps track of burn count with minimal overhead for tokenomics.
        uint64 numberBurned;
        // For miscellaneous variable(s) pertaining to the address
        // (e.g. number of whitelist mint slots used). 
        // If there are multiple variables, please pack them into a uint64.
        uint64 aux;
    }

    // The tokenId of the next token to be minted.
    uint256 internal _currentIndex = 1;

    // The number of tokens burned.
    uint256 internal _burnCounter;

    // Token name
    string private _name;

    // Token symbol
    string private _symbol;

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

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

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

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

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

    /**
     * @dev See {IERC721Enumerable-totalSupply}.
     */
    function totalSupply() public view returns (uint256) {
        // Counter underflow is impossible as _burnCounter cannot be incremented
        // more than _currentIndex times
        unchecked {
            return (_currentIndex - _burnCounter) - 1;    
        }
    }

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

    /**
     * @dev See {IERC721-balanceOf}.
     */
    function balanceOf(address owner) public view override returns (uint256) {
        if (owner == address(0)) revert BalanceQueryForZeroAddress();
        return uint256(_addressData[owner].balance);
    }

    /**
     * Returns the number of tokens minted by `owner`.
     */
    function _numberMinted(address owner) internal view returns (uint256) {
        if (owner == address(0)) revert MintedQueryForZeroAddress();
        return uint256(_addressData[owner].numberMinted);
    }

    /**
     * Returns the number of tokens burned by or on behalf of `owner`.
     */
    function _numberBurned(address owner) internal view returns (uint256) {
        if (owner == address(0)) revert BurnedQueryForZeroAddress();
        return uint256(_addressData[owner].numberBurned);
    }

    /**
     * Returns the auxillary data for `owner`. (e.g. number of whitelist mint slots used).
     */
    function _getAux(address owner) internal view returns (uint64) {
        if (owner == address(0)) revert AuxQueryForZeroAddress();
        return _addressData[owner].aux;
    }

    /**
     * Sets the auxillary data for `owner`. (e.g. number of whitelist mint slots used).
     * If there are multiple variables, please pack them into a uint64.
     */
    function _setAux(address owner, uint64 aux) internal {
        if (owner == address(0)) revert AuxQueryForZeroAddress();
        _addressData[owner].aux = aux;
    }

    /**
     * Gas spent here starts off proportional to the maximum mint batch size.
     * It gradually moves to O(1) as tokens get transferred around in the collection over time.
     */
    function ownershipOf(uint256 tokenId) internal view returns (TokenOwnership memory) {
        uint256 curr = tokenId;

        unchecked {
            if (curr < _currentIndex) {
                TokenOwnership memory ownership = _ownerships[curr];
                if (!ownership.burned) {
                    if (ownership.addr != address(0)) {
                        return ownership;
                    }
                    // Invariant: 
                    // There will always be an ownership that has an address and is not burned 
                    // before an ownership that does not have an address and is not burned.
                    // Hence, curr will not underflow.
                    while (true) {
                        curr--;
                        ownership = _ownerships[curr];
                        if (ownership.addr != address(0)) {
                            return ownership;
                        }
                    }
                }
            }
        }
        revert OwnerQueryForNonexistentToken();
    }

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

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

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

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

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

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

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

        if (_msgSender() != owner && !isApprovedForAll(owner, _msgSender())) {
            revert ApprovalCallerNotOwnerNorApproved();
        }

        _approve(to, tokenId, owner);
    }

    /**
     * @dev See {IERC721-getApproved}.
     */
    function getApproved(uint256 tokenId) public view override returns (address) {
        if (!_exists(tokenId)) revert ApprovalQueryForNonexistentToken();

        return _tokenApprovals[tokenId];
    }

    /**
     * @dev See {IERC721-setApprovalForAll}.
     */
    function setApprovalForAll(address operator, bool approved) public override {
        if (operator == _msgSender()) revert ApproveToCaller();

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

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

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

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

    /**
     * @dev See {IERC721-safeTransferFrom}.
     */
    function safeTransferFrom(
        address from,
        address to,
        uint256 tokenId,
        bytes memory _data
    ) public virtual override {
        _transfer(from, to, tokenId);
        if (!_checkOnERC721Received(from, to, tokenId, _data)) {
            revert TransferToNonERC721ReceiverImplementer();
        }
    }

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

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

    /**
     * @dev Safely mints `quantity` tokens and transfers them to `to`.
     *
     * Requirements:
     *
     * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called for each safe transfer.
     * - `quantity` must be greater than 0.
     *
     * Emits a {Transfer} event.
     */
    function _safeMint(
        address to,
        uint256 quantity,
        bytes memory _data
    ) internal {
        _mint(to, quantity, _data, true);
    }

    /**
     * @dev Mints `quantity` tokens and transfers them to `to`.
     *
     * Requirements:
     *
     * - `to` cannot be the zero address.
     * - `quantity` must be greater than 0.
     *
     * Emits a {Transfer} event.
     */
    function _mint(
        address to,
        uint256 quantity,
        bytes memory _data,
        bool safe
    ) internal {
        uint256 startTokenId = _currentIndex;
        if (to == address(0)) revert MintToZeroAddress();
        if (quantity == 0) revert MintZeroQuantity();

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

        // Overflows are incredibly unrealistic.
        // balance or numberMinted overflow if current value of either + quantity > 1.8e19 (2**64) - 1
        // updatedIndex overflows if _currentIndex + quantity > 1.2e77 (2**256) - 1
        unchecked {
            _addressData[to].balance += uint64(quantity);
            _addressData[to].numberMinted += uint64(quantity);

            _ownerships[startTokenId].addr = to;
            _ownerships[startTokenId].startTimestamp = uint64(block.timestamp);

            uint256 updatedIndex = startTokenId;

            for (uint256 i; i < quantity; i++) {
                emit Transfer(address(0), to, updatedIndex);
                if (safe && !_checkOnERC721Received(address(0), to, updatedIndex, _data)) {
                    revert TransferToNonERC721ReceiverImplementer();
                }
                updatedIndex++;
            }

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

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

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

        if (!isApprovedOrOwner) revert TransferCallerNotOwnerNorApproved();
        if (prevOwnership.addr != from) revert TransferFromIncorrectOwner();
        if (to == address(0)) revert TransferToZeroAddress();

        _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.
        // Counter overflow is incredibly unrealistic as tokenId would have to be 2**256.
        unchecked {
            _addressData[from].balance -= 1;
            _addressData[to].balance += 1;

            _ownerships[tokenId].addr = to;
            _ownerships[tokenId].startTimestamp = uint64(block.timestamp);

            // If the ownership slot of tokenId+1 is not explicitly set, that means the transfer initiator owns it.
            // Set the slot of tokenId+1 explicitly in storage to maintain correctness for ownerOf(tokenId+1) calls.
            uint256 nextTokenId = tokenId + 1;
            if (_ownerships[nextTokenId].addr == address(0)) {
                // This will suffice for checking _exists(nextTokenId),
                // as a burned slot cannot contain the zero address.
                if (nextTokenId < _currentIndex) {
                    _ownerships[nextTokenId].addr = prevOwnership.addr;
                    _ownerships[nextTokenId].startTimestamp = prevOwnership.startTimestamp;
                }
            }
        }

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

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

        _beforeTokenTransfers(prevOwnership.addr, address(0), 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.
        // Counter overflow is incredibly unrealistic as tokenId would have to be 2**256.
        unchecked {
            _addressData[prevOwnership.addr].balance -= 1;
            _addressData[prevOwnership.addr].numberBurned += 1;

            // Keep track of who burned the token, and the timestamp of burning.
            _ownerships[tokenId].addr = prevOwnership.addr;
            _ownerships[tokenId].startTimestamp = uint64(block.timestamp);
            _ownerships[tokenId].burned = true;

            // If the ownership slot of tokenId+1 is not explicitly set, that means the burn initiator owns it.
            // Set the slot of tokenId+1 explicitly in storage to maintain correctness for ownerOf(tokenId+1) calls.
            uint256 nextTokenId = tokenId + 1;
            if (_ownerships[nextTokenId].addr == address(0)) {
                // This will suffice for checking _exists(nextTokenId),
                // as a burned slot cannot contain the zero address.
                if (nextTokenId < _currentIndex) {
                    _ownerships[nextTokenId].addr = prevOwnership.addr;
                    _ownerships[nextTokenId].startTimestamp = prevOwnership.startTimestamp;
                }
            }
        }

        emit Transfer(prevOwnership.addr, address(0), tokenId);
        _afterTokenTransfers(prevOwnership.addr, address(0), tokenId, 1);

        // Overflow not possible, as _burnCounter cannot be exceed _currentIndex times.
        unchecked { 
            _burnCounter++;
        }
    }

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

    /**
     * @dev Internal function to invoke {IERC721Receiver-onERC721Received} on a target 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 TransferToNonERC721ReceiverImplementer();
                } 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.
     * And also called before burning one token.
     *
     * startTokenId - the first token id to be transferred
     * quantity - the amount to be transferred
     *
     * Calling conditions:
     *
     * - When `from` and `to` are both non-zero, `from`'s `tokenId` will be
     * transferred to `to`.
     * - When `from` is zero, `tokenId` will be minted for `to`.
     * - When `to` is zero, `tokenId` will be burned by `from`.
     * - `from` and `to` are never both zero.
     */
    function _beforeTokenTransfers(
        address from,
        address to,
        uint256 startTokenId,
        uint256 quantity
    ) internal virtual {}

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

library ECDSA {
    enum RecoverError {
        NoError,
        InvalidSignature,
        InvalidSignatureLength,
        InvalidSignatureS,
        InvalidSignatureV
    }

    function _throwError(RecoverError error) private pure {
        if (error == RecoverError.NoError) {
            return; // no error: do nothing
        } else if (error == RecoverError.InvalidSignature) {
            revert("ECDSA: invalid signature");
        } else if (error == RecoverError.InvalidSignatureLength) {
            revert("ECDSA: invalid signature length");
        } else if (error == RecoverError.InvalidSignatureS) {
            revert("ECDSA: invalid signature 's' value");
        } else if (error == RecoverError.InvalidSignatureV) {
            revert("ECDSA: invalid signature 'v' value");
        }
    }

    /**
     * @dev Returns the address that signed a hashed message (`hash`) with
     * `signature` or error string. This address can then be used for verification purposes.
     *
     * The `ecrecover` EVM opcode allows for malleable (non-unique) signatures:
     * this function rejects them by requiring the `s` value to be in the lower
     * half order, and the `v` value to be either 27 or 28.
     *
     * IMPORTANT: `hash` _must_ be the result of a hash operation for the
     * verification to be secure: it is possible to craft signatures that
     * recover to arbitrary addresses for non-hashed data. A safe way to ensure
     * this is by receiving a hash of the original message (which may otherwise
     * be too long), and then calling {toEthSignedMessageHash} on it.
     *
     * Documentation for signature generation:
     * - with https://web3js.readthedocs.io/en/v1.3.4/web3-eth-accounts.html#sign[Web3.js]
     * - with https://docs.ethers.io/v5/api/signer/#Signer-signMessage[ethers]
     *
     * _Available since v4.3._
     */
    function tryRecover(bytes32 hash, bytes memory signature) internal pure returns (address, RecoverError) {
        // Check the signature length
        // - case 65: r,s,v signature (standard)
        // - case 64: r,vs signature (cf https://eips.ethereum.org/EIPS/eip-2098) _Available since v4.1._
        if (signature.length == 65) {
            bytes32 r;
            bytes32 s;
            uint8 v;
            // ecrecover takes the signature parameters, and the only way to get them
            // currently is to use assembly.
            assembly {
                r := mload(add(signature, 0x20))
                s := mload(add(signature, 0x40))
                v := byte(0, mload(add(signature, 0x60)))
            }
            return tryRecover(hash, v, r, s);
        } else if (signature.length == 64) {
            bytes32 r;
            bytes32 vs;
            // ecrecover takes the signature parameters, and the only way to get them
            // currently is to use assembly.
            assembly {
                r := mload(add(signature, 0x20))
                vs := mload(add(signature, 0x40))
            }
            return tryRecover(hash, r, vs);
        } else {
            return (address(0), RecoverError.InvalidSignatureLength);
        }
    }

    /**
     * @dev Returns the address that signed a hashed message (`hash`) with
     * `signature`. This address can then be used for verification purposes.
     *
     * The `ecrecover` EVM opcode allows for malleable (non-unique) signatures:
     * this function rejects them by requiring the `s` value to be in the lower
     * half order, and the `v` value to be either 27 or 28.
     *
     * IMPORTANT: `hash` _must_ be the result of a hash operation for the
     * verification to be secure: it is possible to craft signatures that
     * recover to arbitrary addresses for non-hashed data. A safe way to ensure
     * this is by receiving a hash of the original message (which may otherwise
     * be too long), and then calling {toEthSignedMessageHash} on it.
     */
    function recover(bytes32 hash, bytes memory signature) internal pure returns (address) {
        (address recovered, RecoverError error) = tryRecover(hash, signature);
        _throwError(error);
        return recovered;
    }

    /**
     * @dev Overload of {ECDSA-tryRecover} that receives the `r` and `vs` short-signature fields separately.
     *
     * See https://eips.ethereum.org/EIPS/eip-2098[EIP-2098 short signatures]
     *
     * _Available since v4.3._
     */
    function tryRecover(
        bytes32 hash,
        bytes32 r,
        bytes32 vs
    ) internal pure returns (address, RecoverError) {
        bytes32 s = vs & bytes32(0x7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff);
        uint8 v = uint8((uint256(vs) >> 255) + 27);
        return tryRecover(hash, v, r, s);
    }

    /**
     * @dev Overload of {ECDSA-recover} that receives the `r and `vs` short-signature fields separately.
     *
     * _Available since v4.2._
     */
    function recover(
        bytes32 hash,
        bytes32 r,
        bytes32 vs
    ) internal pure returns (address) {
        (address recovered, RecoverError error) = tryRecover(hash, r, vs);
        _throwError(error);
        return recovered;
    }

    /**
     * @dev Overload of {ECDSA-tryRecover} that receives the `v`,
     * `r` and `s` signature fields separately.
     *
     * _Available since v4.3._
     */
    function tryRecover(
        bytes32 hash,
        uint8 v,
        bytes32 r,
        bytes32 s
    ) internal pure returns (address, RecoverError) {
        // EIP-2 still allows signature malleability for ecrecover(). Remove this possibility and make the signature
        // unique. Appendix F in the Ethereum Yellow paper (https://ethereum.github.io/yellowpaper/paper.pdf), defines
        // the valid range for s in (301): 0 < s < secp256k1n ÷ 2 + 1, and for v in (302): v ∈ {27, 28}. Most
        // signatures from current libraries generate a unique signature with an s-value in the lower half order.
        //
        // If your library generates malleable signatures, such as s-values in the upper range, calculate a new s-value
        // with 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFEBAAEDCE6AF48A03BBFD25E8CD0364141 - s1 and flip v from 27 to 28 or
        // vice versa. If your library also generates signatures with 0/1 for v instead 27/28, add 27 to v to accept
        // these malleable signatures as well.
        if (uint256(s) > 0x7FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF5D576E7357A4501DDFE92F46681B20A0) {
            return (address(0), RecoverError.InvalidSignatureS);
        }
        if (v != 27 && v != 28) {
            return (address(0), RecoverError.InvalidSignatureV);
        }

        // If the signature is valid (and not malleable), return the signer address
        address signer = ecrecover(hash, v, r, s);
        if (signer == address(0)) {
            return (address(0), RecoverError.InvalidSignature);
        }

        return (signer, RecoverError.NoError);
    }

    /**
     * @dev Overload of {ECDSA-recover} that receives the `v`,
     * `r` and `s` signature fields separately.
     */
    function recover(
        bytes32 hash,
        uint8 v,
        bytes32 r,
        bytes32 s
    ) internal pure returns (address) {
        (address recovered, RecoverError error) = tryRecover(hash, v, r, s);
        _throwError(error);
        return recovered;
    }

    /**
     * @dev Returns an Ethereum Signed Message, created from a `hash`. This
     * produces hash corresponding to the one signed with the
     * https://eth.wiki/json-rpc/API#eth_sign[`eth_sign`]
     * JSON-RPC method as part of EIP-191.
     *
     * See {recover}.
     */
    function toEthSignedMessageHash(bytes32 hash) internal pure returns (bytes32) {
        // 32 is the length in bytes of hash,
        // enforced by the type signature above
        return keccak256(abi.encodePacked("\x19Ethereum Signed Message:\n32", hash));
    }

    /**
     * @dev Returns an Ethereum Signed Message, created from `s`. This
     * produces hash corresponding to the one signed with the
     * https://eth.wiki/json-rpc/API#eth_sign[`eth_sign`]
     * JSON-RPC method as part of EIP-191.
     *
     * See {recover}.
     */
    function toEthSignedMessageHash(bytes memory s) internal pure returns (bytes32) {
        return keccak256(abi.encodePacked("\x19Ethereum Signed Message:\n", Strings.toString(s.length), s));
    }

    /**
     * @dev Returns an Ethereum Signed Typed Data, created from a
     * `domainSeparator` and a `structHash`. This produces hash corresponding
     * to the one signed with the
     * https://eips.ethereum.org/EIPS/eip-712[`eth_signTypedData`]
     * JSON-RPC method as part of EIP-712.
     *
     * See {recover}.
     */
    function toTypedDataHash(bytes32 domainSeparator, bytes32 structHash) internal pure returns (bytes32) {
        return keccak256(abi.encodePacked("\x19\x01", domainSeparator, structHash));
    }
}
abstract contract EIP712 {
    /* solhint-disable var-name-mixedcase */
    // Cache the domain separator as an immutable value, but also store the chain id that it corresponds to, in order to
    // invalidate the cached domain separator if the chain id changes.
    bytes32 private immutable _CACHED_DOMAIN_SEPARATOR;
    uint256 private immutable _CACHED_CHAIN_ID;
    address private immutable _CACHED_THIS;

    bytes32 private immutable _HASHED_NAME;
    bytes32 private immutable _HASHED_VERSION;
    bytes32 private immutable _TYPE_HASH;

    /* solhint-enable var-name-mixedcase */

    /**
     * @dev Initializes the domain separator and parameter caches.
     *
     * The meaning of `name` and `version` is specified in
     * https://eips.ethereum.org/EIPS/eip-712#definition-of-domainseparator[EIP 712]:
     *
     * - `name`: the user readable name of the signing domain, i.e. the name of the DApp or the protocol.
     * - `version`: the current major version of the signing domain.
     *
     * NOTE: These parameters cannot be changed except through a xref:learn::upgrading-smart-contracts.adoc[smart
     * contract upgrade].
     */
    constructor(string memory name, string memory version) {
        bytes32 hashedName = keccak256(bytes(name));
        bytes32 hashedVersion = keccak256(bytes(version));
        bytes32 typeHash = keccak256(
            "EIP712Domain(string name,string version,uint256 chainId,address verifyingContract)"
        );
        _HASHED_NAME = hashedName;
        _HASHED_VERSION = hashedVersion;
        _CACHED_CHAIN_ID = block.chainid;
        _CACHED_DOMAIN_SEPARATOR = _buildDomainSeparator(typeHash, hashedName, hashedVersion);
        _CACHED_THIS = address(this);
        _TYPE_HASH = typeHash;
    }

    /**
     * @dev Returns the domain separator for the current chain.
     */
    function _domainSeparatorV4() internal view returns (bytes32) {
        if (address(this) == _CACHED_THIS && block.chainid == _CACHED_CHAIN_ID) {
            return _CACHED_DOMAIN_SEPARATOR;
        } else {
            return _buildDomainSeparator(_TYPE_HASH, _HASHED_NAME, _HASHED_VERSION);
        }
    }

    function _buildDomainSeparator(
        bytes32 typeHash,
        bytes32 nameHash,
        bytes32 versionHash
    ) private view returns (bytes32) {
        return keccak256(abi.encode(typeHash, nameHash, versionHash, block.chainid, address(this)));
    }

    /**
     * @dev Given an already https://eips.ethereum.org/EIPS/eip-712#definition-of-hashstruct[hashed struct], this
     * function returns the hash of the fully encoded EIP712 message for this domain.
     *
     * This hash can be used together with {ECDSA-recover} to obtain the signer of a message. For example:
     *
     * ```solidity
     * bytes32 digest = _hashTypedDataV4(keccak256(abi.encode(
     *     keccak256("Mail(address to,string contents)"),
     *     mailTo,
     *     keccak256(bytes(mailContents))
     * )));
     * address signer = ECDSA.recover(digest, signature);
     * ```
     */
    function _hashTypedDataV4(bytes32 structHash) internal view virtual returns (bytes32) {
        return ECDSA.toTypedDataHash(_domainSeparatorV4(), structHash);
    }
}

contract JINX9 is EIP712, Ownable, ERC721A {
    string private constant SIGNING_DOMAIN = "WEB3CLUB";
    string private constant SIGNATURE_VERSION = "1";

    uint256 public adoptionLimit = 2;
    uint256 public adoptionLimitWL = 1;
    uint256 public adoptionLimitOG = 2;
    uint256 public adoptionLimitWL_OG = 3;
    using Strings for uint256;

    mapping(uint256 => string) private _tokenURIs;
    bool public publicSaleOpen = false;
    bool public privateSaleOpen = false;
    string public baseURI = "";
    string public _extension = "";
    uint256 public price = 0.09 ether;
    uint256 public maxSupply = 999;

    address private whitelistVerify = 0xbF3e689B25F460F695FC5a6715aA9c74de79e52F;
    address public dev_address = 0x8EE6FabbD0272c9A0520658f465C965f90f0ac94;
    
    mapping(uint => uint256) public voucherIds;
    constructor() ERC721A("JIN X9", "JX9") EIP712(SIGNING_DOMAIN, SIGNATURE_VERSION){}
    
    function mintNFT(uint256 _quantity) public payable {
        require(_quantity > 0 && _quantity <= adoptionLimit, "Wrong Quantity.");
        require(totalSupply() + _quantity <= maxSupply, "Reaching max supply");
        require(msg.value == price * _quantity, "Needs to send more eth");
        require(getMintedCount(msg.sender) + _quantity <= adoptionLimit, "Exceed max minting amount");
        require(publicSaleOpen, "Public Sale Not Started Yet!");

        _safeMint(msg.sender, _quantity);

    }

    function mintPresaleWL(uint256 _quantity, uint256 id, bytes memory signature) public payable {
        require(_quantity > 0 && _quantity <= adoptionLimitWL, "Wrong Quantity.");
        require(totalSupply() + _quantity <= maxSupply, "Reaching max supply");
        require(msg.value == price * _quantity, "Needs to send more eth");
        require(getMintedCount(msg.sender) + _quantity <= adoptionLimitWL, "Exceed max minting amount");
        require(privateSaleOpen, "Private Sale Not Started Yet!");
        require(check(id,signature) == whitelistVerify, "You are not whitelisted.");
        require(voucherIds[id] == 0, "Invalid Voucher. Try Again.");

        _safeMint(msg.sender, _quantity);
        voucherIds[id] = 1;

    }

    function mintPresaleOG(uint256 _quantity, uint256 id, bytes memory signature) public payable {
        require(_quantity > 0 && _quantity <= adoptionLimitOG, "Wrong Quantity.");
        require(totalSupply() + _quantity <= maxSupply, "Reaching max supply");
        require(msg.value == price * _quantity, "Needs to send more eth");
        require(getMintedCount(msg.sender) + _quantity <= adoptionLimitOG, "Exceed max minting amount");
        require(privateSaleOpen, "Private Sale Not Started Yet!");
        require(check(id,signature) == whitelistVerify, "You are not whitelisted.");
        require(voucherIds[id] == 0, "Invalid Voucher. Try Again.");

        _safeMint(msg.sender, _quantity);
        voucherIds[id] = 1;

    }

    function mintPresaleWL_OG(uint256 _quantity, uint256 id, bytes memory signature) public payable {
        require(_quantity > 0 && _quantity <= adoptionLimitWL_OG, "Wrong Quantity.");
        require(totalSupply() + _quantity <= maxSupply, "Reaching max supply");
        require(msg.value == price * _quantity, "Needs to send more eth");
        require(getMintedCount(msg.sender) + _quantity <= adoptionLimitWL_OG, "Exceed max minting amount");
        require(privateSaleOpen, "Private Sale Not Started Yet!");
        require(check(id,signature) == whitelistVerify, "You are not whitelisted.");

        require(voucherIds[id] == 0, "Invalid Voucher. Try Again.");

        _safeMint(msg.sender, _quantity);
        voucherIds[id] = 1;
    }


    function sendGifts(address[] memory _wallets) external onlyOwner{
        require(totalSupply() + _wallets.length <= maxSupply, "Max Supply Reached.");
        for(uint i = 0; i < _wallets.length; i++)
            _safeMint(_wallets[i], 1);

    }
   function sendGiftsToWallet(address _wallet, uint256 _num) external onlyOwner{
               require(totalSupply() + _num <= maxSupply, "Max Supply Reached.");
            _safeMint(_wallet, _num);
    }

    function check(uint id, bytes memory signature) public view returns(address){
        return _verify(id, signature);
    }

    function _verify(uint id, bytes memory signature) internal view returns(address){
        bytes32 digest = _hash(id);
        return ECDSA.recover(digest, signature);
    }

    function _hash(uint id) internal view returns(bytes32){
        return _hashTypedDataV4(keccak256(abi.encode(
            keccak256("EIP712Domain(uint id)"),
            id
        )));
    }

    function tokenURI(uint256 _tokenId) public view virtual override returns (string memory) {
        require(
            _exists(_tokenId),
            "ERC721Metadata: URI set of nonexistent token"
        );

        return string(abi.encodePacked(baseURI, _tokenId.toString(), _extension));
    }

    function updateBaseURI(string memory _newBaseURI) onlyOwner public {
        baseURI = _newBaseURI;
    }
    function updateExtension(string memory _temp) onlyOwner public {
        _extension = _temp;
    }

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

    function setPrice(uint256 _price) public onlyOwner() {
        price = _price;
    }
    function setAdoptionlimits(uint256 _adoptionLimit, uint256 _adoptionLimitOG, uint256 _adoptionLimitWL, uint256 _adoptionLimitWL_OG) public onlyOwner() {
        adoptionLimit = _adoptionLimit;
        adoptionLimitOG = _adoptionLimitOG;
        adoptionLimitWL = _adoptionLimitWL;
        adoptionLimitWL_OG = _adoptionLimitWL_OG;
    }

    function setmaxSupply(uint256 _supply) public onlyOwner() {
        maxSupply = _supply;
    }

    function toggleSale() public onlyOwner() {
        publicSaleOpen = !publicSaleOpen;
    }
    function toggleWLSale() public onlyOwner() {
        privateSaleOpen = !privateSaleOpen;
    }

    function getBalance() public view returns(uint) {
        return address(this).balance;
    }

    function getMintedCount(address owner) public view returns (uint256) {
    return _numberMinted(owner);
  }

    function change_dev_address(address _temp) external {
        require(msg.sender == dev_address, "You are not dev.");
        dev_address = _temp;
    } 

    function withdraw() external onlyOwner {
        uint _balance = address(this).balance;
        payable(dev_address).transfer(_balance * 5 / 100); //dev
        payable(owner()).transfer(_balance * 95 / 100); //Owner
    }

    function getOwnershipData(uint256 tokenId)
    external
    view
    returns (TokenOwnership memory)
  {
    return ownershipOf(tokenId);
  }

    receive() external payable {}

}

Contract Security Audit

Contract ABI

[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"inputs":[],"name":"ApprovalCallerNotOwnerNorApproved","type":"error"},{"inputs":[],"name":"ApprovalQueryForNonexistentToken","type":"error"},{"inputs":[],"name":"ApprovalToCurrentOwner","type":"error"},{"inputs":[],"name":"ApproveToCaller","type":"error"},{"inputs":[],"name":"BalanceQueryForZeroAddress","type":"error"},{"inputs":[],"name":"MintToZeroAddress","type":"error"},{"inputs":[],"name":"MintZeroQuantity","type":"error"},{"inputs":[],"name":"MintedQueryForZeroAddress","type":"error"},{"inputs":[],"name":"OwnerQueryForNonexistentToken","type":"error"},{"inputs":[],"name":"TransferCallerNotOwnerNorApproved","type":"error"},{"inputs":[],"name":"TransferFromIncorrectOwner","type":"error"},{"inputs":[],"name":"TransferToNonERC721ReceiverImplementer","type":"error"},{"inputs":[],"name":"TransferToZeroAddress","type":"error"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"approved","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[],"name":"_extension","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"adoptionLimit","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"adoptionLimitOG","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"adoptionLimitWL","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"adoptionLimitWL_OG","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"baseURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_temp","type":"address"}],"name":"change_dev_address","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"id","type":"uint256"},{"internalType":"bytes","name":"signature","type":"bytes"}],"name":"check","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"dev_address","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":"getBalance","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"getBaseURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"getMintedCount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getOwnershipData","outputs":[{"components":[{"internalType":"address","name":"addr","type":"address"},{"internalType":"uint64","name":"startTimestamp","type":"uint64"},{"internalType":"bool","name":"burned","type":"bool"}],"internalType":"struct ERC721A.TokenOwnership","name":"","type":"tuple"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_quantity","type":"uint256"}],"name":"mintNFT","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_quantity","type":"uint256"},{"internalType":"uint256","name":"id","type":"uint256"},{"internalType":"bytes","name":"signature","type":"bytes"}],"name":"mintPresaleOG","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_quantity","type":"uint256"},{"internalType":"uint256","name":"id","type":"uint256"},{"internalType":"bytes","name":"signature","type":"bytes"}],"name":"mintPresaleWL","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_quantity","type":"uint256"},{"internalType":"uint256","name":"id","type":"uint256"},{"internalType":"bytes","name":"signature","type":"bytes"}],"name":"mintPresaleWL_OG","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"price","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"privateSaleOpen","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"publicSaleOpen","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"_data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address[]","name":"_wallets","type":"address[]"}],"name":"sendGifts","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_wallet","type":"address"},{"internalType":"uint256","name":"_num","type":"uint256"}],"name":"sendGiftsToWallet","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_adoptionLimit","type":"uint256"},{"internalType":"uint256","name":"_adoptionLimitOG","type":"uint256"},{"internalType":"uint256","name":"_adoptionLimitWL","type":"uint256"},{"internalType":"uint256","name":"_adoptionLimitWL_OG","type":"uint256"}],"name":"setAdoptionlimits","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":"uint256","name":"_price","type":"uint256"}],"name":"setPrice","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_supply","type":"uint256"}],"name":"setmaxSupply","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"toggleSale","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"toggleWLSale","outputs":[],"stateMutability":"nonpayable","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":"string","name":"_newBaseURI","type":"string"}],"name":"updateBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_temp","type":"string"}],"name":"updateExtension","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"","type":"uint256"}],"name":"voucherIds","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"withdraw","outputs":[],"stateMutability":"nonpayable","type":"function"},{"stateMutability":"payable","type":"receive"}]

600180805560026009819055600a91909155600b556003600c55600e805461ffff19169055610160604081905260006101408190526200004291600f916200028b565b5060408051602081019182905260009081905262000063916010916200028b565b5067013fbe85edc900006011556103e7601255601380546001600160a01b031990811673bf3e689b25f460f695fc5a6715aa9c74de79e52f1790915560148054909116738ee6fabbd0272c9a0520658f465c965f90f0ac94179055348015620000cb57600080fd5b5060408051808201825260068152654a494e20583960d01b6020808301919091528251808401845260038152624a583960e81b818301528351808501855260088152672ba2a119a1a62aa160c11b818401908152855180870190965260018652603160f81b93860193909352805190922060e08190527fc89efdaa54c0f20c7adf612882df0950f5a951637e0307cdcb4c672f298b8bc66101008190524660a052939491937f8b73c3c69bb8fe3d512ecc4cf759cc79239f7b179b0ffacaa9a75d522b39400f620001e18184846040805160208101859052908101839052606081018290524660808201523060a082015260009060c0016040516020818303038152906040528051906020012090509392505050565b6080523060601b60c0526101205250620002079250620002019150503390565b6200023b565b81516200021c9060039060208501906200028b565b508051620002329060049060208401906200028b565b5050506200036e565b600080546001600160a01b038381166001600160a01b0319831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b828054620002999062000331565b90600052602060002090601f016020900481019282620002bd576000855562000308565b82601f10620002d857805160ff191683800117855562000308565b8280016001018555821562000308579182015b8281111562000308578251825591602001919060010190620002eb565b50620003169291506200031a565b5090565b5b808211156200031657600081556001016200031b565b600181811c908216806200034657607f821691505b602082108114156200036857634e487b7160e01b600052602260045260246000fd5b50919050565b60805160a05160c05160601c60e0516101005161012051612cd7620003c16000396000612296015260006122e5015260006122c001526000612219015260006122430152600061226d0152612cd76000f3fe6080604052600436106102b25760003560e01c80637d8966e411610175578063a22cb465116100dc578063d5abeb0111610095578063e917a28c1161006f578063e917a28c14610807578063e985e9c51461081d578063f2fde38b14610866578063f9e237991461088657600080fd5b8063d5abeb01146107b1578063e198efdc146107c7578063e57deb39146107e757600080fd5b8063a22cb465146106ef578063ab34ee4f1461070f578063b88d4fde1461073c578063c87b56dd1461075c578063d1f919ed1461077c578063d57f82791461079c57600080fd5b8063931688cb1161012e578063931688cb1461065857806395881b551461067857806395d89b411461068e57806397d6696b146106a357806399779463146106c3578063a035b1fe146106d957600080fd5b80637d8966e41461057c5780637e6182d9146105915780638da5cb5b146105b157806391b7f5ed146105cf5780639231ab2a146105ef578063926427441461064557600080fd5b80633ccfd60b1161021957806370a08231116101d257806370a08231146104df578063714c5398146104ff578063715018a6146105145780637871e2fd146105295780637abb8efb1461053c5780637c8255db1461055c57600080fd5b80633ccfd60b1461044357806342842e0e14610458578063590d0aef146104785780636352211e1461048b57806367fe2fde146104ab5780636c0360eb146104ca57600080fd5b806318160ddd1161026b57806318160ddd146103a6578063228025e8146103bb57806323b872dd146103db57806327568e3b146103fb5780632ea96b1c1461041b5780633ae1dd9d1461042e57600080fd5b806301ffc9a7146102be57806306fdde03146102f3578063081812fc14610315578063095ea7b31461034d578063108a17141461036f57806312065fe01461039357600080fd5b366102b957005b600080fd5b3480156102ca57600080fd5b506102de6102d936600461278f565b6108a0565b60405190151581526020015b60405180910390f35b3480156102ff57600080fd5b506103086108f2565b6040516102ea9190612a27565b34801561032157600080fd5b50610335610330366004612811565b610984565b6040516001600160a01b0390911681526020016102ea565b34801561035957600080fd5b5061036d6103683660046126b2565b6109c8565b005b34801561037b57600080fd5b50610385600b5481565b6040519081526020016102ea565b34801561039f57600080fd5b5047610385565b3480156103b257600080fd5b50610385610a56565b3480156103c757600080fd5b5061036d6103d6366004612811565b610a64565b3480156103e757600080fd5b5061036d6103f63660046125d3565b610a9c565b34801561040757600080fd5b5061036d6104163660046128bf565b610aa7565b61036d610429366004612870565b610ae5565b34801561043a57600080fd5b50610308610d13565b34801561044f57600080fd5b5061036d610da1565b34801561046457600080fd5b5061036d6104733660046125d3565b610e6e565b61036d610486366004612870565b610e89565b34801561049757600080fd5b506103356104a6366004612811565b610f24565b3480156104b757600080fd5b50600e546102de90610100900460ff1681565b3480156104d657600080fd5b50610308610f36565b3480156104eb57600080fd5b506103856104fa366004612585565b610f43565b34801561050b57600080fd5b50610308610f91565b34801561052057600080fd5b5061036d610fa0565b61036d610537366004612870565b610fd6565b34801561054857600080fd5b50601454610335906001600160a01b031681565b34801561056857600080fd5b5061036d6105773660046126dc565b611071565b34801561058857600080fd5b5061036d611138565b34801561059d57600080fd5b5061036d6105ac3660046127c9565b611176565b3480156105bd57600080fd5b506000546001600160a01b0316610335565b3480156105db57600080fd5b5061036d6105ea366004612811565b6111b3565b3480156105fb57600080fd5b5061060f61060a366004612811565b6111e2565b6040805182516001600160a01b031681526020808401516001600160401b031690820152918101511515908201526060016102ea565b61036d610653366004612811565b611208565b34801561066457600080fd5b5061036d6106733660046127c9565b611356565b34801561068457600080fd5b50610385600c5481565b34801561069a57600080fd5b50610308611393565b3480156106af57600080fd5b506103856106be366004612585565b6113a2565b3480156106cf57600080fd5b50610385600a5481565b3480156106e557600080fd5b5061038560115481565b3480156106fb57600080fd5b5061036d61070a366004612676565b6113ad565b34801561071b57600080fd5b5061038561072a366004612811565b60156020526000908152604090205481565b34801561074857600080fd5b5061036d61075736600461260f565b611443565b34801561076857600080fd5b50610308610777366004612811565b61147d565b34801561078857600080fd5b5061036d6107973660046126b2565b61151e565b3480156107a857600080fd5b5061036d6115ac565b3480156107bd57600080fd5b5061038560125481565b3480156107d357600080fd5b5061036d6107e2366004612585565b6115f3565b3480156107f357600080fd5b5061033561080236600461282a565b611662565b34801561081357600080fd5b5061038560095481565b34801561082957600080fd5b506102de6108383660046125a0565b6001600160a01b03918216600090815260086020908152604080832093909416825291909152205460ff1690565b34801561087257600080fd5b5061036d610881366004612585565b611675565b34801561089257600080fd5b50600e546102de9060ff1681565b60006001600160e01b031982166380ac58cd60e01b14806108d157506001600160e01b03198216635b5e139f60e01b145b806108ec57506301ffc9a760e01b6001600160e01b03198316145b92915050565b60606003805461090190612bb3565b80601f016020809104026020016040519081016040528092919081815260200182805461092d90612bb3565b801561097a5780601f1061094f5761010080835404028352916020019161097a565b820191906000526020600020905b81548152906001019060200180831161095d57829003601f168201915b5050505050905090565b600061098f8261170d565b6109ac576040516333d1c03960e21b815260040160405180910390fd5b506000908152600760205260409020546001600160a01b031690565b60006109d382610f24565b9050806001600160a01b0316836001600160a01b03161415610a085760405163250fdee360e21b815260040160405180910390fd5b336001600160a01b03821614801590610a285750610a268133610838565b155b15610a46576040516367d9dca160e11b815260040160405180910390fd5b610a51838383611739565b505050565b600254600154036000190190565b6000546001600160a01b03163314610a975760405162461bcd60e51b8152600401610a8e90612a63565b60405180910390fd5b601255565b610a51838383611795565b6000546001600160a01b03163314610ad15760405162461bcd60e51b8152600401610a8e90612a63565b600993909355600b91909155600a55600c55565b600083118015610af75750600a548311155b610b135760405162461bcd60e51b8152600401610a8e90612a3a565b60125483610b1f610a56565b610b299190612b25565b1115610b475760405162461bcd60e51b8152600401610a8e90612ac8565b82601154610b559190612b51565b3414610b735760405162461bcd60e51b8152600401610a8e90612a98565b600a5483610b80336113a2565b610b8a9190612b25565b1115610bd45760405162461bcd60e51b8152602060048201526019602482015278115e18d95959081b585e081b5a5b9d1a5b99c8185b5bdd5b9d603a1b6044820152606401610a8e565b600e54610100900460ff16610c2b5760405162461bcd60e51b815260206004820152601d60248201527f507269766174652053616c65204e6f74205374617274656420596574210000006044820152606401610a8e565b6013546001600160a01b0316610c418383611662565b6001600160a01b031614610c975760405162461bcd60e51b815260206004820152601860248201527f596f7520617265206e6f742077686974656c69737465642e00000000000000006044820152606401610a8e565b60008281526015602052604090205415610cf35760405162461bcd60e51b815260206004820152601b60248201527f496e76616c696420566f75636865722e2054727920416761696e2e00000000006044820152606401610a8e565b610cfd33846119a9565b5060009081526015602052604090206001905550565b60108054610d2090612bb3565b80601f0160208091040260200160405190810160405280929190818152602001828054610d4c90612bb3565b8015610d995780601f10610d6e57610100808354040283529160200191610d99565b820191906000526020600020905b815481529060010190602001808311610d7c57829003601f168201915b505050505081565b6000546001600160a01b03163314610dcb5760405162461bcd60e51b8152600401610a8e90612a63565b60145447906001600160a01b03166108fc6064610de9846005612b51565b610df39190612b3d565b6040518115909202916000818181858888f19350505050158015610e1b573d6000803e3d6000fd5b506000546001600160a01b03166108fc6064610e3884605f612b51565b610e429190612b3d565b6040518115909202916000818181858888f19350505050158015610e6a573d6000803e3d6000fd5b5050565b610a5183838360405180602001604052806000815250611443565b600083118015610e9b5750600b548311155b610eb75760405162461bcd60e51b8152600401610a8e90612a3a565b60125483610ec3610a56565b610ecd9190612b25565b1115610eeb5760405162461bcd60e51b8152600401610a8e90612ac8565b82601154610ef99190612b51565b3414610f175760405162461bcd60e51b8152600401610a8e90612a98565b600b5483610b80336113a2565b6000610f2f826119c3565b5192915050565b600f8054610d2090612bb3565b60006001600160a01b038216610f6c576040516323d3ad8160e21b815260040160405180910390fd5b506001600160a01b03166000908152600660205260409020546001600160401b031690565b6060600f805461090190612bb3565b6000546001600160a01b03163314610fca5760405162461bcd60e51b8152600401610a8e90612a63565b610fd46000611ade565b565b600083118015610fe85750600c548311155b6110045760405162461bcd60e51b8152600401610a8e90612a3a565b60125483611010610a56565b61101a9190612b25565b11156110385760405162461bcd60e51b8152600401610a8e90612ac8565b826011546110469190612b51565b34146110645760405162461bcd60e51b8152600401610a8e90612a98565b600c5483610b80336113a2565b6000546001600160a01b0316331461109b5760405162461bcd60e51b8152600401610a8e90612a63565b60125481516110a8610a56565b6110b29190612b25565b11156110f65760405162461bcd60e51b815260206004820152601360248201527226b0bc1029bab838363c902932b0b1b432b21760691b6044820152606401610a8e565b60005b8151811015610e6a5761112682828151811061111757611117612c5f565b602002602001015160016119a9565b8061113081612bee565b9150506110f9565b6000546001600160a01b031633146111625760405162461bcd60e51b8152600401610a8e90612a63565b600e805460ff19811660ff90911615179055565b6000546001600160a01b031633146111a05760405162461bcd60e51b8152600401610a8e90612a63565b8051610e6a906010906020840190612459565b6000546001600160a01b031633146111dd5760405162461bcd60e51b8152600401610a8e90612a63565b601155565b60408051606081018252600080825260208201819052918101919091526108ec826119c3565b60008111801561121a57506009548111155b6112365760405162461bcd60e51b8152600401610a8e90612a3a565b60125481611242610a56565b61124c9190612b25565b111561126a5760405162461bcd60e51b8152600401610a8e90612ac8565b806011546112789190612b51565b34146112965760405162461bcd60e51b8152600401610a8e90612a98565b600954816112a3336113a2565b6112ad9190612b25565b11156112f75760405162461bcd60e51b8152602060048201526019602482015278115e18d95959081b585e081b5a5b9d1a5b99c8185b5bdd5b9d603a1b6044820152606401610a8e565b600e5460ff166113495760405162461bcd60e51b815260206004820152601c60248201527f5075626c69632053616c65204e6f7420537461727465642059657421000000006044820152606401610a8e565b61135333826119a9565b50565b6000546001600160a01b031633146113805760405162461bcd60e51b8152600401610a8e90612a63565b8051610e6a90600f906020840190612459565b60606004805461090190612bb3565b60006108ec82611b2e565b6001600160a01b0382163314156113d75760405163b06307db60e01b815260040160405180910390fd5b3360008181526008602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b61144e848484611795565b61145a84848484611b83565b611477576040516368d2bf6b60e11b815260040160405180910390fd5b50505050565b60606114888261170d565b6114e95760405162461bcd60e51b815260206004820152602c60248201527f4552433732314d657461646174613a2055524920736574206f66206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b6064820152608401610a8e565b600f6114f483611c92565b6010604051602001611508939291906129b7565b6040516020818303038152906040529050919050565b6000546001600160a01b031633146115485760405162461bcd60e51b8152600401610a8e90612a63565b60125481611554610a56565b61155e9190612b25565b11156115a25760405162461bcd60e51b815260206004820152601360248201527226b0bc1029bab838363c902932b0b1b432b21760691b6044820152606401610a8e565b610e6a82826119a9565b6000546001600160a01b031633146115d65760405162461bcd60e51b8152600401610a8e90612a63565b600e805461ff001981166101009182900460ff1615909102179055565b6014546001600160a01b031633146116405760405162461bcd60e51b815260206004820152601060248201526f2cb7ba9030b932903737ba103232bb1760811b6044820152606401610a8e565b601480546001600160a01b0319166001600160a01b0392909216919091179055565b600061166e8383611d8f565b9392505050565b6000546001600160a01b0316331461169f5760405162461bcd60e51b8152600401610a8e90612a63565b6001600160a01b0381166117045760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610a8e565b61135381611ade565b6000600154821080156108ec575050600090815260056020526040902054600160e01b900460ff161590565b60008281526007602052604080822080546001600160a01b0319166001600160a01b0387811691821790925591518593918516917f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591a4505050565b60006117a0826119c3565b80519091506000906001600160a01b0316336001600160a01b031614806117ce575081516117ce9033610838565b806117e95750336117de84610984565b6001600160a01b0316145b90508061180957604051632ce44b5f60e11b815260040160405180910390fd5b846001600160a01b031682600001516001600160a01b03161461183e5760405162a1148160e81b815260040160405180910390fd5b6001600160a01b03841661186557604051633a954ecd60e21b815260040160405180910390fd5b6118756000848460000151611739565b6001600160a01b038581166000908152600660209081526040808320805467ffffffffffffffff198082166001600160401b0392831660001901831617909255898616808652838620805493841693831660019081018416949094179055898652600590945282852080546001600160e01b031916909417600160a01b42909216919091021790925590860180835291205490911661195f5760015481101561195f57825160008281526005602090815260409091208054918601516001600160401b0316600160a01b026001600160e01b03199092166001600160a01b03909316929092171790555b5082846001600160a01b0316866001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45b5050505050565b610e6a828260405180602001604052806000815250611da7565b60408051606081018252600080825260208201819052918101919091526001548290811015611ac557600081815260056020908152604091829020825160608101845290546001600160a01b0381168252600160a01b81046001600160401b031692820192909252600160e01b90910460ff16151591810182905290611ac35780516001600160a01b031615611a5a579392505050565b5060001901600081815260056020908152604091829020825160608101845290546001600160a01b038116808352600160a01b82046001600160401b031693830193909352600160e01b900460ff1615159281019290925215611abe579392505050565b611a5a565b505b604051636f96cda160e11b815260040160405180910390fd5b600080546001600160a01b038381166001600160a01b0319831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b60006001600160a01b038216611b57576040516335ebb31960e01b815260040160405180910390fd5b506001600160a01b0316600090815260066020526040902054600160401b90046001600160401b031690565b60006001600160a01b0384163b15611c8657604051630a85bd0160e11b81526001600160a01b0385169063150b7a0290611bc79033908990889088906004016129ea565b602060405180830381600087803b158015611be157600080fd5b505af1925050508015611c11575060408051601f3d908101601f19168201909252611c0e918101906127ac565b60015b611c6c573d808015611c3f576040519150601f19603f3d011682016040523d82523d6000602084013e611c44565b606091505b508051611c64576040516368d2bf6b60e11b815260040160405180910390fd5b805181602001fd5b6001600160e01b031916630a85bd0160e11b149050611c8a565b5060015b949350505050565b606081611cb65750506040805180820190915260018152600360fc1b602082015290565b8160005b8115611ce05780611cca81612bee565b9150611cd99050600a83612b3d565b9150611cba565b6000816001600160401b03811115611cfa57611cfa612c75565b6040519080825280601f01601f191660200182016040528015611d24576020820181803683370190505b5090505b8415611c8a57611d39600183612b70565b9150611d46600a86612c09565b611d51906030612b25565b60f81b818381518110611d6657611d66612c5f565b60200101906001600160f81b031916908160001a905350611d88600a86612b3d565b9450611d28565b600080611d9b84611db4565b9050611c8a8184611e09565b610a518383836001611e2d565b604080517f092b584b565f9711d79732cb738ace6cf7a206eb6277470732d92d8cc83ad27560208201529081018290526000906108ec9060600160405160208183030381529060405280519060200120611f93565b6000806000611e188585611fe1565b91509150611e2581612051565b509392505050565b6001546001600160a01b038516611e5657604051622e076360e81b815260040160405180910390fd5b83611e745760405163b562e8dd60e01b815260040160405180910390fd5b6001600160a01b038516600081815260066020908152604080832080546fffffffffffffffffffffffffffffffff1981166001600160401b038083168c018116918217600160401b67ffffffffffffffff1990941690921783900481168c018116909202179091558584526005909252822080546001600160e01b031916909317600160a01b42909216919091021790915581905b85811015611f8a5760405182906001600160a01b038916906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a4838015611f605750611f5e6000888488611b83565b155b15611f7e576040516368d2bf6b60e11b815260040160405180910390fd5b60019182019101611f09565b506001556119a2565b60006108ec611fa061220c565b8360405161190160f01b6020820152602281018390526042810182905260009060620160405160208183030381529060405280519060200120905092915050565b6000808251604114156120185760208301516040840151606085015160001a61200c87828585612333565b9450945050505061204a565b8251604014156120425760208301516040840151612037868383612420565b93509350505061204a565b506000905060025b9250929050565b600081600481111561206557612065612c49565b141561206e5750565b600181600481111561208257612082612c49565b14156120d05760405162461bcd60e51b815260206004820152601860248201527f45434453413a20696e76616c6964207369676e617475726500000000000000006044820152606401610a8e565b60028160048111156120e4576120e4612c49565b14156121325760405162461bcd60e51b815260206004820152601f60248201527f45434453413a20696e76616c6964207369676e6174757265206c656e677468006044820152606401610a8e565b600381600481111561214657612146612c49565b141561219f5760405162461bcd60e51b815260206004820152602260248201527f45434453413a20696e76616c6964207369676e6174757265202773272076616c604482015261756560f01b6064820152608401610a8e565b60048160048111156121b3576121b3612c49565b14156113535760405162461bcd60e51b815260206004820152602260248201527f45434453413a20696e76616c6964207369676e6174757265202776272076616c604482015261756560f01b6064820152608401610a8e565b6000306001600160a01b037f00000000000000000000000000000000000000000000000000000000000000001614801561226557507f000000000000000000000000000000000000000000000000000000000000000046145b1561228f57507f000000000000000000000000000000000000000000000000000000000000000090565b50604080517f00000000000000000000000000000000000000000000000000000000000000006020808301919091527f0000000000000000000000000000000000000000000000000000000000000000828401527f000000000000000000000000000000000000000000000000000000000000000060608301524660808301523060a0808401919091528351808403909101815260c0909201909252805191012090565b6000807f7fffffffffffffffffffffffffffffff5d576e7357a4501ddfe92f46681b20a083111561236a5750600090506003612417565b8460ff16601b1415801561238257508460ff16601c14155b156123935750600090506004612417565b6040805160008082526020820180845289905260ff881692820192909252606081018690526080810185905260019060a0016020604051602081039080840390855afa1580156123e7573d6000803e3d6000fd5b5050604051601f1901519150506001600160a01b03811661241057600060019250925050612417565b9150600090505b94509492505050565b6000806001600160ff1b0383168161243d60ff86901c601b612b25565b905061244b87828885612333565b935093505050935093915050565b82805461246590612bb3565b90600052602060002090601f01602090048101928261248757600085556124cd565b82601f106124a057805160ff19168380011785556124cd565b828001600101855582156124cd579182015b828111156124cd5782518255916020019190600101906124b2565b506124d99291506124dd565b5090565b5b808211156124d957600081556001016124de565b60006001600160401b0383111561250b5761250b612c75565b61251e601f8401601f1916602001612af5565b905082815283838301111561253257600080fd5b828260208301376000602084830101529392505050565b80356001600160a01b038116811461256057600080fd5b919050565b600082601f83011261257657600080fd5b61166e838335602085016124f2565b60006020828403121561259757600080fd5b61166e82612549565b600080604083850312156125b357600080fd5b6125bc83612549565b91506125ca60208401612549565b90509250929050565b6000806000606084860312156125e857600080fd5b6125f184612549565b92506125ff60208501612549565b9150604084013590509250925092565b6000806000806080858703121561262557600080fd5b61262e85612549565b935061263c60208601612549565b92506040850135915060608501356001600160401b0381111561265e57600080fd5b61266a87828801612565565b91505092959194509250565b6000806040838503121561268957600080fd5b61269283612549565b9150602083013580151581146126a757600080fd5b809150509250929050565b600080604083850312156126c557600080fd5b6126ce83612549565b946020939093013593505050565b600060208083850312156126ef57600080fd5b82356001600160401b038082111561270657600080fd5b818501915085601f83011261271a57600080fd5b81358181111561272c5761272c612c75565b8060051b915061273d848301612af5565b8181528481019084860184860187018a101561275857600080fd5b600095505b838610156127825761276e81612549565b83526001959095019491860191860161275d565b5098975050505050505050565b6000602082840312156127a157600080fd5b813561166e81612c8b565b6000602082840312156127be57600080fd5b815161166e81612c8b565b6000602082840312156127db57600080fd5b81356001600160401b038111156127f157600080fd5b8201601f8101841361280257600080fd5b611c8a848235602084016124f2565b60006020828403121561282357600080fd5b5035919050565b6000806040838503121561283d57600080fd5b8235915060208301356001600160401b0381111561285a57600080fd5b61286685828601612565565b9150509250929050565b60008060006060848603121561288557600080fd5b833592506020840135915060408401356001600160401b038111156128a957600080fd5b6128b586828701612565565b9150509250925092565b600080600080608085870312156128d557600080fd5b5050823594602084013594506040840135936060013592509050565b60008151808452612909816020860160208601612b87565b601f01601f19169290920160200192915050565b8054600090600181811c908083168061293757607f831692505b602080841082141561295957634e487b7160e01b600052602260045260246000fd5b81801561296d576001811461297e576129ab565b60ff198616895284890196506129ab565b60008881526020902060005b868110156129a35781548b82015290850190830161298a565b505084890196505b50505050505092915050565b60006129c3828661291d565b84516129d3818360208901612b87565b6129df8183018661291d565b979650505050505050565b6001600160a01b0385811682528416602082015260408101839052608060608201819052600090612a1d908301846128f1565b9695505050505050565b60208152600061166e60208301846128f1565b6020808252600f908201526e2bb937b7339028bab0b73a34ba3c9760891b604082015260600190565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b60208082526016908201527509ccacac8e640e8de40e6cadcc840dadee4ca40cae8d60531b604082015260600190565b6020808252601390820152725265616368696e67206d617820737570706c7960681b604082015260600190565b604051601f8201601f191681016001600160401b0381118282101715612b1d57612b1d612c75565b604052919050565b60008219821115612b3857612b38612c1d565b500190565b600082612b4c57612b4c612c33565b500490565b6000816000190483118215151615612b6b57612b6b612c1d565b500290565b600082821015612b8257612b82612c1d565b500390565b60005b83811015612ba2578181015183820152602001612b8a565b838111156114775750506000910152565b600181811c90821680612bc757607f821691505b60208210811415612be857634e487b7160e01b600052602260045260246000fd5b50919050565b6000600019821415612c0257612c02612c1d565b5060010190565b600082612c1857612c18612c33565b500690565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052601260045260246000fd5b634e487b7160e01b600052602160045260246000fd5b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b6001600160e01b03198116811461135357600080fdfea2646970667358221220ed182650687cf85cf26674baeee69f185a6b963c87320517cfc93026f3ff216764736f6c63430008070033

Deployed Bytecode

0x6080604052600436106102b25760003560e01c80637d8966e411610175578063a22cb465116100dc578063d5abeb0111610095578063e917a28c1161006f578063e917a28c14610807578063e985e9c51461081d578063f2fde38b14610866578063f9e237991461088657600080fd5b8063d5abeb01146107b1578063e198efdc146107c7578063e57deb39146107e757600080fd5b8063a22cb465146106ef578063ab34ee4f1461070f578063b88d4fde1461073c578063c87b56dd1461075c578063d1f919ed1461077c578063d57f82791461079c57600080fd5b8063931688cb1161012e578063931688cb1461065857806395881b551461067857806395d89b411461068e57806397d6696b146106a357806399779463146106c3578063a035b1fe146106d957600080fd5b80637d8966e41461057c5780637e6182d9146105915780638da5cb5b146105b157806391b7f5ed146105cf5780639231ab2a146105ef578063926427441461064557600080fd5b80633ccfd60b1161021957806370a08231116101d257806370a08231146104df578063714c5398146104ff578063715018a6146105145780637871e2fd146105295780637abb8efb1461053c5780637c8255db1461055c57600080fd5b80633ccfd60b1461044357806342842e0e14610458578063590d0aef146104785780636352211e1461048b57806367fe2fde146104ab5780636c0360eb146104ca57600080fd5b806318160ddd1161026b57806318160ddd146103a6578063228025e8146103bb57806323b872dd146103db57806327568e3b146103fb5780632ea96b1c1461041b5780633ae1dd9d1461042e57600080fd5b806301ffc9a7146102be57806306fdde03146102f3578063081812fc14610315578063095ea7b31461034d578063108a17141461036f57806312065fe01461039357600080fd5b366102b957005b600080fd5b3480156102ca57600080fd5b506102de6102d936600461278f565b6108a0565b60405190151581526020015b60405180910390f35b3480156102ff57600080fd5b506103086108f2565b6040516102ea9190612a27565b34801561032157600080fd5b50610335610330366004612811565b610984565b6040516001600160a01b0390911681526020016102ea565b34801561035957600080fd5b5061036d6103683660046126b2565b6109c8565b005b34801561037b57600080fd5b50610385600b5481565b6040519081526020016102ea565b34801561039f57600080fd5b5047610385565b3480156103b257600080fd5b50610385610a56565b3480156103c757600080fd5b5061036d6103d6366004612811565b610a64565b3480156103e757600080fd5b5061036d6103f63660046125d3565b610a9c565b34801561040757600080fd5b5061036d6104163660046128bf565b610aa7565b61036d610429366004612870565b610ae5565b34801561043a57600080fd5b50610308610d13565b34801561044f57600080fd5b5061036d610da1565b34801561046457600080fd5b5061036d6104733660046125d3565b610e6e565b61036d610486366004612870565b610e89565b34801561049757600080fd5b506103356104a6366004612811565b610f24565b3480156104b757600080fd5b50600e546102de90610100900460ff1681565b3480156104d657600080fd5b50610308610f36565b3480156104eb57600080fd5b506103856104fa366004612585565b610f43565b34801561050b57600080fd5b50610308610f91565b34801561052057600080fd5b5061036d610fa0565b61036d610537366004612870565b610fd6565b34801561054857600080fd5b50601454610335906001600160a01b031681565b34801561056857600080fd5b5061036d6105773660046126dc565b611071565b34801561058857600080fd5b5061036d611138565b34801561059d57600080fd5b5061036d6105ac3660046127c9565b611176565b3480156105bd57600080fd5b506000546001600160a01b0316610335565b3480156105db57600080fd5b5061036d6105ea366004612811565b6111b3565b3480156105fb57600080fd5b5061060f61060a366004612811565b6111e2565b6040805182516001600160a01b031681526020808401516001600160401b031690820152918101511515908201526060016102ea565b61036d610653366004612811565b611208565b34801561066457600080fd5b5061036d6106733660046127c9565b611356565b34801561068457600080fd5b50610385600c5481565b34801561069a57600080fd5b50610308611393565b3480156106af57600080fd5b506103856106be366004612585565b6113a2565b3480156106cf57600080fd5b50610385600a5481565b3480156106e557600080fd5b5061038560115481565b3480156106fb57600080fd5b5061036d61070a366004612676565b6113ad565b34801561071b57600080fd5b5061038561072a366004612811565b60156020526000908152604090205481565b34801561074857600080fd5b5061036d61075736600461260f565b611443565b34801561076857600080fd5b50610308610777366004612811565b61147d565b34801561078857600080fd5b5061036d6107973660046126b2565b61151e565b3480156107a857600080fd5b5061036d6115ac565b3480156107bd57600080fd5b5061038560125481565b3480156107d357600080fd5b5061036d6107e2366004612585565b6115f3565b3480156107f357600080fd5b5061033561080236600461282a565b611662565b34801561081357600080fd5b5061038560095481565b34801561082957600080fd5b506102de6108383660046125a0565b6001600160a01b03918216600090815260086020908152604080832093909416825291909152205460ff1690565b34801561087257600080fd5b5061036d610881366004612585565b611675565b34801561089257600080fd5b50600e546102de9060ff1681565b60006001600160e01b031982166380ac58cd60e01b14806108d157506001600160e01b03198216635b5e139f60e01b145b806108ec57506301ffc9a760e01b6001600160e01b03198316145b92915050565b60606003805461090190612bb3565b80601f016020809104026020016040519081016040528092919081815260200182805461092d90612bb3565b801561097a5780601f1061094f5761010080835404028352916020019161097a565b820191906000526020600020905b81548152906001019060200180831161095d57829003601f168201915b5050505050905090565b600061098f8261170d565b6109ac576040516333d1c03960e21b815260040160405180910390fd5b506000908152600760205260409020546001600160a01b031690565b60006109d382610f24565b9050806001600160a01b0316836001600160a01b03161415610a085760405163250fdee360e21b815260040160405180910390fd5b336001600160a01b03821614801590610a285750610a268133610838565b155b15610a46576040516367d9dca160e11b815260040160405180910390fd5b610a51838383611739565b505050565b600254600154036000190190565b6000546001600160a01b03163314610a975760405162461bcd60e51b8152600401610a8e90612a63565b60405180910390fd5b601255565b610a51838383611795565b6000546001600160a01b03163314610ad15760405162461bcd60e51b8152600401610a8e90612a63565b600993909355600b91909155600a55600c55565b600083118015610af75750600a548311155b610b135760405162461bcd60e51b8152600401610a8e90612a3a565b60125483610b1f610a56565b610b299190612b25565b1115610b475760405162461bcd60e51b8152600401610a8e90612ac8565b82601154610b559190612b51565b3414610b735760405162461bcd60e51b8152600401610a8e90612a98565b600a5483610b80336113a2565b610b8a9190612b25565b1115610bd45760405162461bcd60e51b8152602060048201526019602482015278115e18d95959081b585e081b5a5b9d1a5b99c8185b5bdd5b9d603a1b6044820152606401610a8e565b600e54610100900460ff16610c2b5760405162461bcd60e51b815260206004820152601d60248201527f507269766174652053616c65204e6f74205374617274656420596574210000006044820152606401610a8e565b6013546001600160a01b0316610c418383611662565b6001600160a01b031614610c975760405162461bcd60e51b815260206004820152601860248201527f596f7520617265206e6f742077686974656c69737465642e00000000000000006044820152606401610a8e565b60008281526015602052604090205415610cf35760405162461bcd60e51b815260206004820152601b60248201527f496e76616c696420566f75636865722e2054727920416761696e2e00000000006044820152606401610a8e565b610cfd33846119a9565b5060009081526015602052604090206001905550565b60108054610d2090612bb3565b80601f0160208091040260200160405190810160405280929190818152602001828054610d4c90612bb3565b8015610d995780601f10610d6e57610100808354040283529160200191610d99565b820191906000526020600020905b815481529060010190602001808311610d7c57829003601f168201915b505050505081565b6000546001600160a01b03163314610dcb5760405162461bcd60e51b8152600401610a8e90612a63565b60145447906001600160a01b03166108fc6064610de9846005612b51565b610df39190612b3d565b6040518115909202916000818181858888f19350505050158015610e1b573d6000803e3d6000fd5b506000546001600160a01b03166108fc6064610e3884605f612b51565b610e429190612b3d565b6040518115909202916000818181858888f19350505050158015610e6a573d6000803e3d6000fd5b5050565b610a5183838360405180602001604052806000815250611443565b600083118015610e9b5750600b548311155b610eb75760405162461bcd60e51b8152600401610a8e90612a3a565b60125483610ec3610a56565b610ecd9190612b25565b1115610eeb5760405162461bcd60e51b8152600401610a8e90612ac8565b82601154610ef99190612b51565b3414610f175760405162461bcd60e51b8152600401610a8e90612a98565b600b5483610b80336113a2565b6000610f2f826119c3565b5192915050565b600f8054610d2090612bb3565b60006001600160a01b038216610f6c576040516323d3ad8160e21b815260040160405180910390fd5b506001600160a01b03166000908152600660205260409020546001600160401b031690565b6060600f805461090190612bb3565b6000546001600160a01b03163314610fca5760405162461bcd60e51b8152600401610a8e90612a63565b610fd46000611ade565b565b600083118015610fe85750600c548311155b6110045760405162461bcd60e51b8152600401610a8e90612a3a565b60125483611010610a56565b61101a9190612b25565b11156110385760405162461bcd60e51b8152600401610a8e90612ac8565b826011546110469190612b51565b34146110645760405162461bcd60e51b8152600401610a8e90612a98565b600c5483610b80336113a2565b6000546001600160a01b0316331461109b5760405162461bcd60e51b8152600401610a8e90612a63565b60125481516110a8610a56565b6110b29190612b25565b11156110f65760405162461bcd60e51b815260206004820152601360248201527226b0bc1029bab838363c902932b0b1b432b21760691b6044820152606401610a8e565b60005b8151811015610e6a5761112682828151811061111757611117612c5f565b602002602001015160016119a9565b8061113081612bee565b9150506110f9565b6000546001600160a01b031633146111625760405162461bcd60e51b8152600401610a8e90612a63565b600e805460ff19811660ff90911615179055565b6000546001600160a01b031633146111a05760405162461bcd60e51b8152600401610a8e90612a63565b8051610e6a906010906020840190612459565b6000546001600160a01b031633146111dd5760405162461bcd60e51b8152600401610a8e90612a63565b601155565b60408051606081018252600080825260208201819052918101919091526108ec826119c3565b60008111801561121a57506009548111155b6112365760405162461bcd60e51b8152600401610a8e90612a3a565b60125481611242610a56565b61124c9190612b25565b111561126a5760405162461bcd60e51b8152600401610a8e90612ac8565b806011546112789190612b51565b34146112965760405162461bcd60e51b8152600401610a8e90612a98565b600954816112a3336113a2565b6112ad9190612b25565b11156112f75760405162461bcd60e51b8152602060048201526019602482015278115e18d95959081b585e081b5a5b9d1a5b99c8185b5bdd5b9d603a1b6044820152606401610a8e565b600e5460ff166113495760405162461bcd60e51b815260206004820152601c60248201527f5075626c69632053616c65204e6f7420537461727465642059657421000000006044820152606401610a8e565b61135333826119a9565b50565b6000546001600160a01b031633146113805760405162461bcd60e51b8152600401610a8e90612a63565b8051610e6a90600f906020840190612459565b60606004805461090190612bb3565b60006108ec82611b2e565b6001600160a01b0382163314156113d75760405163b06307db60e01b815260040160405180910390fd5b3360008181526008602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b61144e848484611795565b61145a84848484611b83565b611477576040516368d2bf6b60e11b815260040160405180910390fd5b50505050565b60606114888261170d565b6114e95760405162461bcd60e51b815260206004820152602c60248201527f4552433732314d657461646174613a2055524920736574206f66206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b6064820152608401610a8e565b600f6114f483611c92565b6010604051602001611508939291906129b7565b6040516020818303038152906040529050919050565b6000546001600160a01b031633146115485760405162461bcd60e51b8152600401610a8e90612a63565b60125481611554610a56565b61155e9190612b25565b11156115a25760405162461bcd60e51b815260206004820152601360248201527226b0bc1029bab838363c902932b0b1b432b21760691b6044820152606401610a8e565b610e6a82826119a9565b6000546001600160a01b031633146115d65760405162461bcd60e51b8152600401610a8e90612a63565b600e805461ff001981166101009182900460ff1615909102179055565b6014546001600160a01b031633146116405760405162461bcd60e51b815260206004820152601060248201526f2cb7ba9030b932903737ba103232bb1760811b6044820152606401610a8e565b601480546001600160a01b0319166001600160a01b0392909216919091179055565b600061166e8383611d8f565b9392505050565b6000546001600160a01b0316331461169f5760405162461bcd60e51b8152600401610a8e90612a63565b6001600160a01b0381166117045760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610a8e565b61135381611ade565b6000600154821080156108ec575050600090815260056020526040902054600160e01b900460ff161590565b60008281526007602052604080822080546001600160a01b0319166001600160a01b0387811691821790925591518593918516917f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591a4505050565b60006117a0826119c3565b80519091506000906001600160a01b0316336001600160a01b031614806117ce575081516117ce9033610838565b806117e95750336117de84610984565b6001600160a01b0316145b90508061180957604051632ce44b5f60e11b815260040160405180910390fd5b846001600160a01b031682600001516001600160a01b03161461183e5760405162a1148160e81b815260040160405180910390fd5b6001600160a01b03841661186557604051633a954ecd60e21b815260040160405180910390fd5b6118756000848460000151611739565b6001600160a01b038581166000908152600660209081526040808320805467ffffffffffffffff198082166001600160401b0392831660001901831617909255898616808652838620805493841693831660019081018416949094179055898652600590945282852080546001600160e01b031916909417600160a01b42909216919091021790925590860180835291205490911661195f5760015481101561195f57825160008281526005602090815260409091208054918601516001600160401b0316600160a01b026001600160e01b03199092166001600160a01b03909316929092171790555b5082846001600160a01b0316866001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45b5050505050565b610e6a828260405180602001604052806000815250611da7565b60408051606081018252600080825260208201819052918101919091526001548290811015611ac557600081815260056020908152604091829020825160608101845290546001600160a01b0381168252600160a01b81046001600160401b031692820192909252600160e01b90910460ff16151591810182905290611ac35780516001600160a01b031615611a5a579392505050565b5060001901600081815260056020908152604091829020825160608101845290546001600160a01b038116808352600160a01b82046001600160401b031693830193909352600160e01b900460ff1615159281019290925215611abe579392505050565b611a5a565b505b604051636f96cda160e11b815260040160405180910390fd5b600080546001600160a01b038381166001600160a01b0319831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b60006001600160a01b038216611b57576040516335ebb31960e01b815260040160405180910390fd5b506001600160a01b0316600090815260066020526040902054600160401b90046001600160401b031690565b60006001600160a01b0384163b15611c8657604051630a85bd0160e11b81526001600160a01b0385169063150b7a0290611bc79033908990889088906004016129ea565b602060405180830381600087803b158015611be157600080fd5b505af1925050508015611c11575060408051601f3d908101601f19168201909252611c0e918101906127ac565b60015b611c6c573d808015611c3f576040519150601f19603f3d011682016040523d82523d6000602084013e611c44565b606091505b508051611c64576040516368d2bf6b60e11b815260040160405180910390fd5b805181602001fd5b6001600160e01b031916630a85bd0160e11b149050611c8a565b5060015b949350505050565b606081611cb65750506040805180820190915260018152600360fc1b602082015290565b8160005b8115611ce05780611cca81612bee565b9150611cd99050600a83612b3d565b9150611cba565b6000816001600160401b03811115611cfa57611cfa612c75565b6040519080825280601f01601f191660200182016040528015611d24576020820181803683370190505b5090505b8415611c8a57611d39600183612b70565b9150611d46600a86612c09565b611d51906030612b25565b60f81b818381518110611d6657611d66612c5f565b60200101906001600160f81b031916908160001a905350611d88600a86612b3d565b9450611d28565b600080611d9b84611db4565b9050611c8a8184611e09565b610a518383836001611e2d565b604080517f092b584b565f9711d79732cb738ace6cf7a206eb6277470732d92d8cc83ad27560208201529081018290526000906108ec9060600160405160208183030381529060405280519060200120611f93565b6000806000611e188585611fe1565b91509150611e2581612051565b509392505050565b6001546001600160a01b038516611e5657604051622e076360e81b815260040160405180910390fd5b83611e745760405163b562e8dd60e01b815260040160405180910390fd5b6001600160a01b038516600081815260066020908152604080832080546fffffffffffffffffffffffffffffffff1981166001600160401b038083168c018116918217600160401b67ffffffffffffffff1990941690921783900481168c018116909202179091558584526005909252822080546001600160e01b031916909317600160a01b42909216919091021790915581905b85811015611f8a5760405182906001600160a01b038916906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a4838015611f605750611f5e6000888488611b83565b155b15611f7e576040516368d2bf6b60e11b815260040160405180910390fd5b60019182019101611f09565b506001556119a2565b60006108ec611fa061220c565b8360405161190160f01b6020820152602281018390526042810182905260009060620160405160208183030381529060405280519060200120905092915050565b6000808251604114156120185760208301516040840151606085015160001a61200c87828585612333565b9450945050505061204a565b8251604014156120425760208301516040840151612037868383612420565b93509350505061204a565b506000905060025b9250929050565b600081600481111561206557612065612c49565b141561206e5750565b600181600481111561208257612082612c49565b14156120d05760405162461bcd60e51b815260206004820152601860248201527f45434453413a20696e76616c6964207369676e617475726500000000000000006044820152606401610a8e565b60028160048111156120e4576120e4612c49565b14156121325760405162461bcd60e51b815260206004820152601f60248201527f45434453413a20696e76616c6964207369676e6174757265206c656e677468006044820152606401610a8e565b600381600481111561214657612146612c49565b141561219f5760405162461bcd60e51b815260206004820152602260248201527f45434453413a20696e76616c6964207369676e6174757265202773272076616c604482015261756560f01b6064820152608401610a8e565b60048160048111156121b3576121b3612c49565b14156113535760405162461bcd60e51b815260206004820152602260248201527f45434453413a20696e76616c6964207369676e6174757265202776272076616c604482015261756560f01b6064820152608401610a8e565b6000306001600160a01b037f000000000000000000000000626acf48a59d5dee6e4e7eb07386ad2851bcb5ce1614801561226557507f000000000000000000000000000000000000000000000000000000000000000146145b1561228f57507fb11ff36ec5943c292045ee134cb1d5652d3145a19623118651d8300d7a14e06b90565b50604080517f8b73c3c69bb8fe3d512ecc4cf759cc79239f7b179b0ffacaa9a75d522b39400f6020808301919091527f7465fde7fb0420a03855c8bac7d7dd705d61d0241d0d293890335916e0da8ea2828401527fc89efdaa54c0f20c7adf612882df0950f5a951637e0307cdcb4c672f298b8bc660608301524660808301523060a0808401919091528351808403909101815260c0909201909252805191012090565b6000807f7fffffffffffffffffffffffffffffff5d576e7357a4501ddfe92f46681b20a083111561236a5750600090506003612417565b8460ff16601b1415801561238257508460ff16601c14155b156123935750600090506004612417565b6040805160008082526020820180845289905260ff881692820192909252606081018690526080810185905260019060a0016020604051602081039080840390855afa1580156123e7573d6000803e3d6000fd5b5050604051601f1901519150506001600160a01b03811661241057600060019250925050612417565b9150600090505b94509492505050565b6000806001600160ff1b0383168161243d60ff86901c601b612b25565b905061244b87828885612333565b935093505050935093915050565b82805461246590612bb3565b90600052602060002090601f01602090048101928261248757600085556124cd565b82601f106124a057805160ff19168380011785556124cd565b828001600101855582156124cd579182015b828111156124cd5782518255916020019190600101906124b2565b506124d99291506124dd565b5090565b5b808211156124d957600081556001016124de565b60006001600160401b0383111561250b5761250b612c75565b61251e601f8401601f1916602001612af5565b905082815283838301111561253257600080fd5b828260208301376000602084830101529392505050565b80356001600160a01b038116811461256057600080fd5b919050565b600082601f83011261257657600080fd5b61166e838335602085016124f2565b60006020828403121561259757600080fd5b61166e82612549565b600080604083850312156125b357600080fd5b6125bc83612549565b91506125ca60208401612549565b90509250929050565b6000806000606084860312156125e857600080fd5b6125f184612549565b92506125ff60208501612549565b9150604084013590509250925092565b6000806000806080858703121561262557600080fd5b61262e85612549565b935061263c60208601612549565b92506040850135915060608501356001600160401b0381111561265e57600080fd5b61266a87828801612565565b91505092959194509250565b6000806040838503121561268957600080fd5b61269283612549565b9150602083013580151581146126a757600080fd5b809150509250929050565b600080604083850312156126c557600080fd5b6126ce83612549565b946020939093013593505050565b600060208083850312156126ef57600080fd5b82356001600160401b038082111561270657600080fd5b818501915085601f83011261271a57600080fd5b81358181111561272c5761272c612c75565b8060051b915061273d848301612af5565b8181528481019084860184860187018a101561275857600080fd5b600095505b838610156127825761276e81612549565b83526001959095019491860191860161275d565b5098975050505050505050565b6000602082840312156127a157600080fd5b813561166e81612c8b565b6000602082840312156127be57600080fd5b815161166e81612c8b565b6000602082840312156127db57600080fd5b81356001600160401b038111156127f157600080fd5b8201601f8101841361280257600080fd5b611c8a848235602084016124f2565b60006020828403121561282357600080fd5b5035919050565b6000806040838503121561283d57600080fd5b8235915060208301356001600160401b0381111561285a57600080fd5b61286685828601612565565b9150509250929050565b60008060006060848603121561288557600080fd5b833592506020840135915060408401356001600160401b038111156128a957600080fd5b6128b586828701612565565b9150509250925092565b600080600080608085870312156128d557600080fd5b5050823594602084013594506040840135936060013592509050565b60008151808452612909816020860160208601612b87565b601f01601f19169290920160200192915050565b8054600090600181811c908083168061293757607f831692505b602080841082141561295957634e487b7160e01b600052602260045260246000fd5b81801561296d576001811461297e576129ab565b60ff198616895284890196506129ab565b60008881526020902060005b868110156129a35781548b82015290850190830161298a565b505084890196505b50505050505092915050565b60006129c3828661291d565b84516129d3818360208901612b87565b6129df8183018661291d565b979650505050505050565b6001600160a01b0385811682528416602082015260408101839052608060608201819052600090612a1d908301846128f1565b9695505050505050565b60208152600061166e60208301846128f1565b6020808252600f908201526e2bb937b7339028bab0b73a34ba3c9760891b604082015260600190565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b60208082526016908201527509ccacac8e640e8de40e6cadcc840dadee4ca40cae8d60531b604082015260600190565b6020808252601390820152725265616368696e67206d617820737570706c7960681b604082015260600190565b604051601f8201601f191681016001600160401b0381118282101715612b1d57612b1d612c75565b604052919050565b60008219821115612b3857612b38612c1d565b500190565b600082612b4c57612b4c612c33565b500490565b6000816000190483118215151615612b6b57612b6b612c1d565b500290565b600082821015612b8257612b82612c1d565b500390565b60005b83811015612ba2578181015183820152602001612b8a565b838111156114775750506000910152565b600181811c90821680612bc757607f821691505b60208210811415612be857634e487b7160e01b600052602260045260246000fd5b50919050565b6000600019821415612c0257612c02612c1d565b5060010190565b600082612c1857612c18612c33565b500690565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052601260045260246000fd5b634e487b7160e01b600052602160045260246000fd5b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b6001600160e01b03198116811461135357600080fdfea2646970667358221220ed182650687cf85cf26674baeee69f185a6b963c87320517cfc93026f3ff216764736f6c63430008070033

Deployed Bytecode Sourcemap

55097:6936:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;25461:305;;;;;;;;;;-1:-1:-1;25461:305:0;;;;;:::i;:::-;;:::i;:::-;;;9090:14:1;;9083:22;9065:41;;9053:2;9038:18;25461:305:0;;;;;;;;28821:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;30324:204::-;;;;;;;;;;-1:-1:-1;30324:204:0;;;;;:::i;:::-;;:::i;:::-;;;-1:-1:-1;;;;;8388:32:1;;;8370:51;;8358:2;8343:18;30324:204:0;8224:203:1;29887:371:0;;;;;;;;;;-1:-1:-1;29887:371:0;;;;;:::i;:::-;;:::i;:::-;;55341:34;;;;;;;;;;;;;;;;;;;17295:25:1;;;17283:2;17268:18;55341:34:0;17149:177:1;61226:95:0;;;;;;;;;;-1:-1:-1;61292:21:0;61226:95;;25112:277;;;;;;;;;;;;;:::i;60920:96::-;;;;;;;;;;-1:-1:-1;60920:96:0;;;;;:::i;:::-;;:::i;31181:170::-;;;;;;;;;;-1:-1:-1;31181:170:0;;;;;:::i;:::-;;:::i;60571:341::-;;;;;;;;;;-1:-1:-1;60571:341:0;;;;;:::i;:::-;;:::i;56576:748::-;;;;;;:::i;:::-;;:::i;55628:29::-;;;;;;;;;;;;;:::i;61610:226::-;;;;;;;;;;;;;:::i;31422:185::-;;;;;;;;;;-1:-1:-1;31422:185:0;;;;;:::i;:::-;;:::i;57332:748::-;;;;;;:::i;:::-;;:::i;28630:124::-;;;;;;;;;;-1:-1:-1;28630:124:0;;;;;:::i;:::-;;:::i;55553:35::-;;;;;;;;;;-1:-1:-1;55553:35:0;;;;;;;;;;;55595:26;;;;;;;;;;;;;:::i;25830:206::-;;;;;;;;;;-1:-1:-1;25830:206:0;;;;;:::i;:::-;;:::i;60379:92::-;;;;;;;;;;;;;:::i;14227:94::-;;;;;;;;;;;;;:::i;58088:757::-;;;;;;:::i;:::-;;:::i;55826:71::-;;;;;;;;;;-1:-1:-1;55826:71:0;;;;-1:-1:-1;;;;;55826:71:0;;;58855:252;;;;;;;;;;-1:-1:-1;58855:252:0;;;;;:::i;:::-;;:::i;61024:92::-;;;;;;;;;;;;;:::i;60271:100::-;;;;;;;;;;-1:-1:-1;60271:100:0;;;;;:::i;:::-;;:::i;13576:87::-;;;;;;;;;;-1:-1:-1;13622:7:0;13649:6;-1:-1:-1;;;;;13649:6:0;13576:87;;60479:86;;;;;;;;;;-1:-1:-1;60479:86:0;;;;;:::i;:::-;;:::i;61844:147::-;;;;;;;;;;-1:-1:-1;61844:147:0;;;;;:::i;:::-;;:::i;:::-;;;;16935:13:1;;-1:-1:-1;;;;;16931:39:1;16913:58;;17031:4;17019:17;;;17013:24;-1:-1:-1;;;;;17009:49:1;16987:20;;;16980:79;17117:17;;;17111:24;17104:32;17097:40;17075:20;;;17068:70;16901:2;16886:18;61844:147:0;16705:439:1;56053:515:0;;;;;;:::i;:::-;;:::i;60158:107::-;;;;;;;;;;-1:-1:-1;60158:107:0;;;;;:::i;:::-;;:::i;55382:37::-;;;;;;;;;;;;;;;;28990:104;;;;;;;;;;;;;:::i;61329:109::-;;;;;;;;;;-1:-1:-1;61329:109:0;;;;;:::i;:::-;;:::i;55300:34::-;;;;;;;;;;;;;;;;55664:33;;;;;;;;;;;;;;;;30600:279;;;;;;;;;;-1:-1:-1;30600:279:0;;;;;:::i;:::-;;:::i;55910:42::-;;;;;;;;;;-1:-1:-1;55910:42:0;;;;;:::i;:::-;;;;;;;;;;;;;;31678:342;;;;;;;;;;-1:-1:-1;31678:342:0;;;;;:::i;:::-;;:::i;59845:305::-;;;;;;;;;;-1:-1:-1;59845:305:0;;;;;:::i;:::-;;:::i;59112:206::-;;;;;;;;;;-1:-1:-1;59112:206:0;;;;;:::i;:::-;;:::i;61122:96::-;;;;;;;;;;;;;:::i;55704:30::-;;;;;;;;;;;;;;;;61446:155;;;;;;;;;;-1:-1:-1;61446:155:0;;;;;:::i;:::-;;:::i;59326:124::-;;;;;;;;;;-1:-1:-1;59326:124:0;;;;;:::i;:::-;;:::i;55261:32::-;;;;;;;;;;;;;;;;30950:164;;;;;;;;;;-1:-1:-1;30950:164:0;;;;;:::i;:::-;-1:-1:-1;;;;;31071:25:0;;;31047:4;31071:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;;;;30950:164;14476:192;;;;;;;;;;-1:-1:-1;14476:192:0;;;;;:::i;:::-;;:::i;55512:34::-;;;;;;;;;;-1:-1:-1;55512:34:0;;;;;;;;25461:305;25563:4;-1:-1:-1;;;;;;25600:40:0;;-1:-1:-1;;;25600:40:0;;:105;;-1:-1:-1;;;;;;;25657:48:0;;-1:-1:-1;;;25657:48:0;25600:105;:158;;;-1:-1:-1;;;;;;;;;;15690:40:0;;;25722:36;25580:178;25461:305;-1:-1:-1;;25461:305:0:o;28821:100::-;28875:13;28908:5;28901:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;28821:100;:::o;30324:204::-;30392:7;30417:16;30425:7;30417;:16::i;:::-;30412:64;;30442:34;;-1:-1:-1;;;30442:34:0;;;;;;;;;;;30412:64;-1:-1:-1;30496:24:0;;;;:15;:24;;;;;;-1:-1:-1;;;;;30496:24:0;;30324:204::o;29887:371::-;29960:13;29976:24;29992:7;29976:15;:24::i;:::-;29960:40;;30021:5;-1:-1:-1;;;;;30015:11:0;:2;-1:-1:-1;;;;;30015:11:0;;30011:48;;;30035:24;;-1:-1:-1;;;30035:24:0;;;;;;;;;;;30011:48;796:10;-1:-1:-1;;;;;30076:21:0;;;;;;:63;;-1:-1:-1;30102:37:0;30119:5;796:10;30950:164;:::i;30102:37::-;30101:38;30076:63;30072:138;;;30163:35;;-1:-1:-1;;;30163:35:0;;;;;;;;;;;30072:138;30222:28;30231:2;30235:7;30244:5;30222:8;:28::i;:::-;29949:309;29887:371;;:::o;25112:277::-;25349:12;;25365:1;25333:13;:28;-1:-1:-1;;25332:34:0;;25112:277::o;60920:96::-;13622:7;13649:6;-1:-1:-1;;;;;13649:6:0;796:10;13796:23;13788:68;;;;-1:-1:-1;;;13788:68:0;;;;;;;:::i;:::-;;;;;;;;;60989:9:::1;:19:::0;60920:96::o;31181:170::-;31315:28;31325:4;31331:2;31335:7;31315:9;:28::i;60571:341::-;13622:7;13649:6;-1:-1:-1;;;;;13649:6:0;796:10;13796:23;13788:68;;;;-1:-1:-1;;;13788:68:0;;;;;;;:::i;:::-;60733:13:::1;:30:::0;;;;60774:15:::1;:34:::0;;;;60819:15:::1;:34:::0;60864:18:::1;:40:::0;60571:341::o;56576:748::-;56700:1;56688:9;:13;:45;;;;;56718:15;;56705:9;:28;;56688:45;56680:73;;;;-1:-1:-1;;;56680:73:0;;;;;;;:::i;:::-;56801:9;;56788;56772:13;:11;:13::i;:::-;:25;;;;:::i;:::-;:38;;56764:70;;;;-1:-1:-1;;;56764:70:0;;;;;;;:::i;:::-;56874:9;56866:5;;:17;;;;:::i;:::-;56853:9;:30;56845:65;;;;-1:-1:-1;;;56845:65:0;;;;;;;:::i;:::-;56971:15;;56958:9;56929:26;56944:10;56929:14;:26::i;:::-;:38;;;;:::i;:::-;:57;;56921:95;;;;-1:-1:-1;;;56921:95:0;;13263:2:1;56921:95:0;;;13245:21:1;13302:2;13282:18;;;13275:30;-1:-1:-1;;;13321:18:1;;;13314:55;13386:18;;56921:95:0;13061:349:1;56921:95:0;57035:15;;;;;;;57027:57;;;;-1:-1:-1;;;57027:57:0;;12561:2:1;57027:57:0;;;12543:21:1;12600:2;12580:18;;;12573:30;12639:31;12619:18;;;12612:59;12688:18;;57027:57:0;12359:353:1;57027:57:0;57126:15;;-1:-1:-1;;;;;57126:15:0;57103:19;57109:2;57112:9;57103:5;:19::i;:::-;-1:-1:-1;;;;;57103:38:0;;57095:75;;;;-1:-1:-1;;;57095:75:0;;15150:2:1;57095:75:0;;;15132:21:1;15189:2;15169:18;;;15162:30;15228:26;15208:18;;;15201:54;15272:18;;57095:75:0;14948:348:1;57095:75:0;57189:14;;;;:10;:14;;;;;;:19;57181:59;;;;-1:-1:-1;;;57181:59:0;;14794:2:1;57181:59:0;;;14776:21:1;14833:2;14813:18;;;14806:30;14872:29;14852:18;;;14845:57;14919:18;;57181:59:0;14592:351:1;57181:59:0;57253:32;57263:10;57275:9;57253;:32::i;:::-;-1:-1:-1;57296:14:0;;;;:10;:14;;;;;57313:1;57296:18;;-1:-1:-1;56576:748:0:o;55628:29::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;61610:226::-;13622:7;13649:6;-1:-1:-1;;;;;13649:6:0;796:10;13796:23;13788:68;;;;-1:-1:-1;;;13788:68:0;;;;;;;:::i;:::-;61716:11:::1;::::0;61676:21:::1;::::0;-1:-1:-1;;;;;61716:11:0::1;61708:49;61753:3;61738:12;61676:21:::0;61749:1:::1;61738:12;:::i;:::-;:18;;;;:::i;:::-;61708:49;::::0;;::::1;::::0;;::::1;::::0;::::1;::::0;;;;;;::::1;;;;;;;;;;;;;::::0;::::1;;;;;-1:-1:-1::0;13622:7:0;13649:6;-1:-1:-1;;;;;13649:6:0;61774:46:::1;61816:3;61800:13;:8:::0;61811:2:::1;61800:13;:::i;:::-;:19;;;;:::i;:::-;61774:46;::::0;;::::1;::::0;;::::1;::::0;::::1;::::0;;;;;;::::1;;;;;;;;;;;;;::::0;::::1;;;;;;61649:187;61610:226::o:0;31422:185::-;31560:39;31577:4;31583:2;31587:7;31560:39;;;;;;;;;;;;:16;:39::i;57332:748::-;57456:1;57444:9;:13;:45;;;;;57474:15;;57461:9;:28;;57444:45;57436:73;;;;-1:-1:-1;;;57436:73:0;;;;;;;:::i;:::-;57557:9;;57544;57528:13;:11;:13::i;:::-;:25;;;;:::i;:::-;:38;;57520:70;;;;-1:-1:-1;;;57520:70:0;;;;;;;:::i;:::-;57630:9;57622:5;;:17;;;;:::i;:::-;57609:9;:30;57601:65;;;;-1:-1:-1;;;57601:65:0;;;;;;;:::i;:::-;57727:15;;57714:9;57685:26;57700:10;57685:14;:26::i;28630:124::-;28694:7;28721:20;28733:7;28721:11;:20::i;:::-;:25;;28630:124;-1:-1:-1;;28630:124:0:o;55595:26::-;;;;;;;:::i;25830:206::-;25894:7;-1:-1:-1;;;;;25918:19:0;;25914:60;;25946:28;;-1:-1:-1;;;25946:28:0;;;;;;;;;;;25914:60;-1:-1:-1;;;;;;26000:19:0;;;;;:12;:19;;;;;:27;-1:-1:-1;;;;;26000:27:0;;25830:206::o;60379:92::-;60423:13;60456:7;60449:14;;;;;:::i;14227:94::-;13622:7;13649:6;-1:-1:-1;;;;;13649:6:0;796:10;13796:23;13788:68;;;;-1:-1:-1;;;13788:68:0;;;;;;;:::i;:::-;14292:21:::1;14310:1;14292:9;:21::i;:::-;14227:94::o:0;58088:757::-;58215:1;58203:9;:13;:48;;;;;58233:18;;58220:9;:31;;58203:48;58195:76;;;;-1:-1:-1;;;58195:76:0;;;;;;;:::i;:::-;58319:9;;58306;58290:13;:11;:13::i;:::-;:25;;;;:::i;:::-;:38;;58282:70;;;;-1:-1:-1;;;58282:70:0;;;;;;;:::i;:::-;58392:9;58384:5;;:17;;;;:::i;:::-;58371:9;:30;58363:65;;;;-1:-1:-1;;;58363:65:0;;;;;;;:::i;:::-;58489:18;;58476:9;58447:26;58462:10;58447:14;:26::i;58855:252::-;13622:7;13649:6;-1:-1:-1;;;;;13649:6:0;796:10;13796:23;13788:68;;;;-1:-1:-1;;;13788:68:0;;;;;;;:::i;:::-;58973:9:::1;;58954:8;:15;58938:13;:11;:13::i;:::-;:31;;;;:::i;:::-;:44;;58930:76;;;::::0;-1:-1:-1;;;58930:76:0;;16211:2:1;58930:76:0::1;::::0;::::1;16193:21:1::0;16250:2;16230:18;;;16223:30;-1:-1:-1;;;16269:18:1;;;16262:49;16328:18;;58930:76:0::1;16009:343:1::0;58930:76:0::1;59021:6;59017:80;59037:8;:15;59033:1;:19;59017:80;;;59072:25;59082:8;59091:1;59082:11;;;;;;;;:::i;:::-;;;;;;;59095:1;59072:9;:25::i;:::-;59054:3:::0;::::1;::::0;::::1;:::i;:::-;;;;59017:80;;61024:92:::0;13622:7;13649:6;-1:-1:-1;;;;;13649:6:0;796:10;13796:23;13788:68;;;;-1:-1:-1;;;13788:68:0;;;;;;;:::i;:::-;61094:14:::1;::::0;;-1:-1:-1;;61076:32:0;::::1;61094:14;::::0;;::::1;61093:15;61076:32;::::0;;61024:92::o;60271:100::-;13622:7;13649:6;-1:-1:-1;;;;;13649:6:0;796:10;13796:23;13788:68;;;;-1:-1:-1;;;13788:68:0;;;;;;;:::i;:::-;60345:18;;::::1;::::0;:10:::1;::::0;:18:::1;::::0;::::1;::::0;::::1;:::i;60479:86::-:0;13622:7;13649:6;-1:-1:-1;;;;;13649:6:0;796:10;13796:23;13788:68;;;;-1:-1:-1;;;13788:68:0;;;;;;;:::i;:::-;60543:5:::1;:14:::0;60479:86::o;61844:147::-;-1:-1:-1;;;;;;;;;;;;;;;;;;;;;;;;;61965:20:0;61977:7;61965:11;:20::i;56053:515::-;56135:1;56123:9;:13;:43;;;;;56153:13;;56140:9;:26;;56123:43;56115:71;;;;-1:-1:-1;;;56115:71:0;;;;;;;:::i;:::-;56234:9;;56221;56205:13;:11;:13::i;:::-;:25;;;;:::i;:::-;:38;;56197:70;;;;-1:-1:-1;;;56197:70:0;;;;;;;:::i;:::-;56307:9;56299:5;;:17;;;;:::i;:::-;56286:9;:30;56278:65;;;;-1:-1:-1;;;56278:65:0;;;;;;;:::i;:::-;56404:13;;56391:9;56362:26;56377:10;56362:14;:26::i;:::-;:38;;;;:::i;:::-;:55;;56354:93;;;;-1:-1:-1;;;56354:93:0;;13263:2:1;56354:93:0;;;13245:21:1;13302:2;13282:18;;;13275:30;-1:-1:-1;;;13321:18:1;;;13314:55;13386:18;;56354:93:0;13061:349:1;56354:93:0;56466:14;;;;56458:55;;;;-1:-1:-1;;;56458:55:0;;15854:2:1;56458:55:0;;;15836:21:1;15893:2;15873:18;;;15866:30;15932;15912:18;;;15905:58;15980:18;;56458:55:0;15652:352:1;56458:55:0;56526:32;56536:10;56548:9;56526;:32::i;:::-;56053:515;:::o;60158:107::-;13622:7;13649:6;-1:-1:-1;;;;;13649:6:0;796:10;13796:23;13788:68;;;;-1:-1:-1;;;13788:68:0;;;;;;;:::i;:::-;60236:21;;::::1;::::0;:7:::1;::::0;:21:::1;::::0;::::1;::::0;::::1;:::i;28990:104::-:0;29046:13;29079:7;29072:14;;;;;:::i;61329:109::-;61389:7;61412:20;61426:5;61412:13;:20::i;30600:279::-;-1:-1:-1;;;;;30691:24:0;;796:10;30691:24;30687:54;;;30724:17;;-1:-1:-1;;;30724:17:0;;;;;;;;;;;30687:54;796:10;30754:32;;;;:18;:32;;;;;;;;-1:-1:-1;;;;;30754:42:0;;;;;;;;;;;;:53;;-1:-1:-1;;30754:53:0;;;;;;;;;;30823:48;;9065:41:1;;;30754:42:0;;796:10;30823:48;;9038:18:1;30823:48:0;;;;;;;30600:279;;:::o;31678:342::-;31845:28;31855:4;31861:2;31865:7;31845:9;:28::i;:::-;31889:48;31912:4;31918:2;31922:7;31931:5;31889:22;:48::i;:::-;31884:129;;31961:40;;-1:-1:-1;;;31961:40:0;;;;;;;;;;;31884:129;31678:342;;;;:::o;59845:305::-;59919:13;59967:17;59975:8;59967:7;:17::i;:::-;59945:111;;;;-1:-1:-1;;;59945:111:0;;14020:2:1;59945:111:0;;;14002:21:1;14059:2;14039:18;;;14032:30;14098:34;14078:18;;;14071:62;-1:-1:-1;;;14149:18:1;;;14142:42;14201:19;;59945:111:0;13818:408:1;59945:111:0;60100:7;60109:19;:8;:17;:19::i;:::-;60130:10;60083:58;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;60069:73;;59845:305;;;:::o;59112:206::-;13622:7;13649:6;-1:-1:-1;;;;;13649:6:0;796:10;13796:23;13788:68;;;;-1:-1:-1;;;13788:68:0;;;;;;;:::i;:::-;59238:9:::1;;59230:4;59214:13;:11;:13::i;:::-;:20;;;;:::i;:::-;:33;;59206:65;;;::::0;-1:-1:-1;;;59206:65:0;;16211:2:1;59206:65:0::1;::::0;::::1;16193:21:1::0;16250:2;16230:18;;;16223:30;-1:-1:-1;;;16269:18:1;;;16262:49;16328:18;;59206:65:0::1;16009:343:1::0;59206:65:0::1;59286:24;59296:7;59305:4;59286:9;:24::i;61122:96::-:0;13622:7;13649:6;-1:-1:-1;;;;;13649:6:0;796:10;13796:23;13788:68;;;;-1:-1:-1;;;13788:68:0;;;;;;;:::i;:::-;61195:15:::1;::::0;;-1:-1:-1;;61176:34:0;::::1;61195:15;::::0;;;::::1;;;61194:16;61176:34:::0;;::::1;;::::0;;61122:96::o;61446:155::-;61531:11;;-1:-1:-1;;;;;61531:11:0;61517:10;:25;61509:54;;;;-1:-1:-1;;;61509:54:0;;11813:2:1;61509:54:0;;;11795:21:1;11852:2;11832:18;;;11825:30;-1:-1:-1;;;11871:18:1;;;11864:46;11927:18;;61509:54:0;11611:340:1;61509:54:0;61574:11;:19;;-1:-1:-1;;;;;;61574:19:0;-1:-1:-1;;;;;61574:19:0;;;;;;;;;;61446:155::o;59326:124::-;59394:7;59420:22;59428:2;59432:9;59420:7;:22::i;:::-;59413:29;59326:124;-1:-1:-1;;;59326:124:0:o;14476:192::-;13622:7;13649:6;-1:-1:-1;;;;;13649:6:0;796:10;13796:23;13788:68;;;;-1:-1:-1;;;13788:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;14565:22:0;::::1;14557:73;;;::::0;-1:-1:-1;;;14557:73:0;;11406:2:1;14557:73:0::1;::::0;::::1;11388:21:1::0;11445:2;11425:18;;;11418:30;11484:34;11464:18;;;11457:62;-1:-1:-1;;;11535:18:1;;;11528:36;11581:19;;14557:73:0::1;11204:402:1::0;14557:73:0::1;14641:19;14651:8;14641:9;:19::i;32275:144::-:0;32332:4;32366:13;;32356:7;:23;:55;;;;-1:-1:-1;;32384:20:0;;;;:11;:20;;;;;:27;-1:-1:-1;;;32384:27:0;;;;32383:28;;32275:144::o;39481:196::-;39596:24;;;;:15;:24;;;;;;:29;;-1:-1:-1;;;;;;39596:29:0;-1:-1:-1;;;;;39596:29:0;;;;;;;;;39641:28;;39596:24;;39641:28;;;;;;;39481:196;;;:::o;34982:2112::-;35097:35;35135:20;35147:7;35135:11;:20::i;:::-;35210:18;;35097:58;;-1:-1:-1;35168:22:0;;-1:-1:-1;;;;;35194:34:0;796:10;-1:-1:-1;;;;;35194:34:0;;:101;;;-1:-1:-1;35262:18:0;;35245:50;;796:10;30950:164;:::i;35245:50::-;35194:154;;;-1:-1:-1;796:10:0;35312:20;35324:7;35312:11;:20::i;:::-;-1:-1:-1;;;;;35312:36:0;;35194:154;35168:181;;35367:17;35362:66;;35393:35;;-1:-1:-1;;;35393:35:0;;;;;;;;;;;35362:66;35465:4;-1:-1:-1;;;;;35443:26:0;:13;:18;;;-1:-1:-1;;;;;35443:26:0;;35439:67;;35478:28;;-1:-1:-1;;;35478:28:0;;;;;;;;;;;35439:67;-1:-1:-1;;;;;35521:16:0;;35517:52;;35546:23;;-1:-1:-1;;;35546:23:0;;;;;;;;;;;35517:52;35690:49;35707:1;35711:7;35720:13;:18;;;35690:8;:49::i;:::-;-1:-1:-1;;;;;36035:18:0;;;;;;;:12;:18;;;;;;;;:31;;-1:-1:-1;;36035:31:0;;;-1:-1:-1;;;;;36035:31:0;;;-1:-1:-1;;36035:31:0;;;;;;;36081:16;;;;;;;;;:29;;;;;;;;-1:-1:-1;36081:29:0;;;;;;;;;;;36127:20;;;:11;:20;;;;;;:30;;-1:-1:-1;;;;;;36172:61:0;;;;-1:-1:-1;;;36217:15:0;36172:61;;;;;;;;;;;36507:11;;;36537:24;;;;;:29;36507:11;;36537:29;36533:445;;36762:13;;36748:11;:27;36744:219;;;36832:18;;;36800:24;;;:11;:24;;;;;;;;:50;;36915:28;;;;-1:-1:-1;;;;;36873:70:0;-1:-1:-1;;;36873:70:0;-1:-1:-1;;;;;;36873:70:0;;;-1:-1:-1;;;;;36800:50:0;;;36873:70;;;;;;;36744:219;36010:979;37025:7;37021:2;-1:-1:-1;;;;;37006:27:0;37015:4;-1:-1:-1;;;;;37006:27:0;;;;;;;;;;;37044:42;35086:2008;;34982:2112;;;:::o;32427:104::-;32496:27;32506:2;32510:8;32496:27;;;;;;;;;;;;:9;:27::i;27485:1083::-;-1:-1:-1;;;;;;;;;;;;;;;;;;;;;;;;;27651:13:0;;27595:7;;27644:20;;27640:861;;;27685:31;27719:17;;;:11;:17;;;;;;;;;27685:51;;;;;;;;;-1:-1:-1;;;;;27685:51:0;;;;-1:-1:-1;;;27685:51:0;;-1:-1:-1;;;;;27685:51:0;;;;;;;;-1:-1:-1;;;27685:51:0;;;;;;;;;;;;;;27755:731;;27805:14;;-1:-1:-1;;;;;27805:28:0;;27801:101;;27869:9;27485:1083;-1:-1:-1;;;27485:1083:0:o;27801:101::-;-1:-1:-1;;;28246:6:0;28291:17;;;;:11;:17;;;;;;;;;28279:29;;;;;;;;;-1:-1:-1;;;;;28279:29:0;;;;;-1:-1:-1;;;28279:29:0;;-1:-1:-1;;;;;28279:29:0;;;;;;;;-1:-1:-1;;;28279:29:0;;;;;;;;;;;;;28339:28;28335:109;;28407:9;27485:1083;-1:-1:-1;;;27485:1083:0:o;28335:109::-;28206:261;;;27666:835;27640:861;28529:31;;-1:-1:-1;;;28529:31:0;;;;;;;;;;;14676:173;14732:16;14751:6;;-1:-1:-1;;;;;14768:17:0;;;-1:-1:-1;;;;;;14768:17:0;;;;;;14801:40;;14751:6;;;;;;;14801:40;;14732:16;14801:40;14721:128;14676:173;:::o;26118:207::-;26179:7;-1:-1:-1;;;;;26203:19:0;;26199:59;;26231:27;;-1:-1:-1;;;26231:27:0;;;;;;;;;;;26199:59;-1:-1:-1;;;;;;26284:19:0;;;;;:12;:19;;;;;:32;-1:-1:-1;;;26284:32:0;;-1:-1:-1;;;;;26284:32:0;;26118:207::o;40242:790::-;40397:4;-1:-1:-1;;;;;40418:13:0;;3969:20;4017:8;40414:611;;40454:72;;-1:-1:-1;;;40454:72:0;;-1:-1:-1;;;;;40454:36:0;;;;;:72;;796:10;;40505:4;;40511:7;;40520:5;;40454:72;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;40454:72:0;;;;;;;;-1:-1:-1;;40454:72:0;;;;;;;;;;;;:::i;:::-;;;40450:520;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;40700:13:0;;40696:259;;40750:40;;-1:-1:-1;;;40750:40:0;;;;;;;;;;;40696:259;40905:6;40899:13;40890:6;40886:2;40882:15;40875:38;40450:520;-1:-1:-1;;;;;;40577:55:0;-1:-1:-1;;;40577:55:0;;-1:-1:-1;40570:62:0;;40414:611;-1:-1:-1;41009:4:0;40414:611;40242:790;;;;;;:::o;1181:723::-;1237:13;1458:10;1454:53;;-1:-1:-1;;1485:10:0;;;;;;;;;;;;-1:-1:-1;;;1485:10:0;;;;;1181:723::o;1454:53::-;1532:5;1517:12;1573:78;1580:9;;1573:78;;1606:8;;;;:::i;:::-;;-1:-1:-1;1629:10:0;;-1:-1:-1;1637:2:0;1629:10;;:::i;:::-;;;1573:78;;;1661:19;1693:6;-1:-1:-1;;;;;1683:17:0;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;1683:17:0;;1661:39;;1711:154;1718:10;;1711:154;;1745:11;1755:1;1745:11;;:::i;:::-;;-1:-1:-1;1814:10:0;1822:2;1814:5;:10;:::i;:::-;1801:24;;:2;:24;:::i;:::-;1788:39;;1771:6;1778;1771:14;;;;;;;;:::i;:::-;;;;:56;-1:-1:-1;;;;;1771:56:0;;;;;;;;-1:-1:-1;1842:11:0;1851:2;1842:11;;:::i;:::-;;;1711:154;;59458:175;59530:7;59549:14;59566:9;59572:2;59566:5;:9::i;:::-;59549:26;;59593:32;59607:6;59615:9;59593:13;:32::i;32894:163::-;33017:32;33023:2;33027:8;33037:5;33044:4;33017:5;:32::i;59641:196::-;59740:87;;;59765:34;59740:87;;;9785:25:1;9826:18;;;9819:34;;;59687:7:0;;59713:116;;9758:18:1;;59740:87:0;;;;;;;;;;;;59730:98;;;;;;59713:16;:116::i;46690:231::-;46768:7;46789:17;46808:18;46830:27;46841:4;46847:9;46830:10;:27::i;:::-;46788:69;;;;46868:18;46880:5;46868:11;:18::i;:::-;-1:-1:-1;46904:9:0;46690:231;-1:-1:-1;;;46690:231:0:o;33316:1412::-;33478:13;;-1:-1:-1;;;;;33506:16:0;;33502:48;;33531:19;;-1:-1:-1;;;33531:19:0;;;;;;;;;;;33502:48;33565:13;33561:44;;33587:18;;-1:-1:-1;;;33587:18:0;;;;;;;;;;;33561:44;-1:-1:-1;;;;;33956:16:0;;;;;;:12;:16;;;;;;;;:44;;-1:-1:-1;;34015:49:0;;-1:-1:-1;;;;;33956:44:0;;;;;;;34015:49;;;-1:-1:-1;;;;;33956:44:0;;;;;;34015:49;;;;;;;;;;;;;;;;34081:25;;;:11;:25;;;;;:35;;-1:-1:-1;;;;;;34131:66:0;;;;-1:-1:-1;;;34181:15:0;34131:66;;;;;;;;;;;34081:25;;34266:328;34286:8;34282:1;:12;34266:328;;;34325:38;;34350:12;;-1:-1:-1;;;;;34325:38:0;;;34342:1;;34325:38;;34342:1;;34325:38;34386:4;:68;;;;;34395:59;34426:1;34430:2;34434:12;34448:5;34395:22;:59::i;:::-;34394:60;34386:68;34382:164;;;34486:40;;-1:-1:-1;;;34486:40:0;;;;;;;;;;;34382:164;34564:14;;;;;34296:3;34266:328;;;-1:-1:-1;34610:13:0;:28;34660:60;31678:342;54923:167;55000:7;55027:55;55049:20;:18;:20::i;:::-;55071:10;51734:57;;-1:-1:-1;;;51734:57:0;;;8085:27:1;8128:11;;;8121:27;;;8164:12;;;8157:28;;;51697:7:0;;8201:12:1;;51734:57:0;;;;;;;;;;;;51724:68;;;;;;51717:75;;51604:196;;;;;44580:1308;44661:7;44670:12;44895:9;:16;44915:2;44895:22;44891:990;;;45191:4;45176:20;;45170:27;45241:4;45226:20;;45220:27;45299:4;45284:20;;45278:27;44934:9;45270:36;45342:25;45353:4;45270:36;45170:27;45220;45342:10;:25::i;:::-;45335:32;;;;;;;;;44891:990;45389:9;:16;45409:2;45389:22;45385:496;;;45664:4;45649:20;;45643:27;45715:4;45700:20;;45694:27;45757:23;45768:4;45643:27;45694;45757:10;:23::i;:::-;45750:30;;;;;;;;45385:496;-1:-1:-1;45829:1:0;;-1:-1:-1;45833:35:0;45385:496;44580:1308;;;;;:::o;42851:643::-;42929:20;42920:5;:29;;;;;;;;:::i;:::-;;42916:571;;;42851:643;:::o;42916:571::-;43027:29;43018:5;:38;;;;;;;;:::i;:::-;;43014:473;;;43073:34;;-1:-1:-1;;;43073:34:0;;10693:2:1;43073:34:0;;;10675:21:1;10732:2;10712:18;;;10705:30;10771:26;10751:18;;;10744:54;10815:18;;43073:34:0;10491:348:1;43014:473:0;43138:35;43129:5;:44;;;;;;;;:::i;:::-;;43125:362;;;43190:41;;-1:-1:-1;;;43190:41:0;;11046:2:1;43190:41:0;;;11028:21:1;11085:2;11065:18;;;11058:30;11124:33;11104:18;;;11097:61;11175:18;;43190:41:0;10844:355:1;43125:362:0;43262:30;43253:5;:39;;;;;;;;:::i;:::-;;43249:238;;;43309:44;;-1:-1:-1;;;43309:44:0;;12158:2:1;43309:44:0;;;12140:21:1;12197:2;12177:18;;;12170:30;12236:34;12216:18;;;12209:62;-1:-1:-1;;;12287:18:1;;;12280:32;12329:19;;43309:44:0;11956:398:1;43249:238:0;43384:30;43375:5;:39;;;;;;;;:::i;:::-;;43371:116;;;43431:44;;-1:-1:-1;;;43431:44:0;;13617:2:1;43431:44:0;;;13599:21:1;13656:2;13636:18;;;13629:30;13695:34;13675:18;;;13668:62;-1:-1:-1;;;13746:18:1;;;13739:32;13788:19;;43431:44:0;13415:398:1;53696:314:0;53749:7;53781:4;-1:-1:-1;;;;;53790:12:0;53773:29;;:66;;;;;53823:16;53806:13;:33;53773:66;53769:234;;;-1:-1:-1;53863:24:0;;53696:314::o;53769:234::-;-1:-1:-1;54199:73:0;;;53949:10;54199:73;;;;9376:25:1;;;;53961:12:0;9417:18:1;;;9410:34;53975:15:0;9460:18:1;;;9453:34;54243:13:0;9503:18:1;;;9496:34;54266:4:0;9546:19:1;;;;9539:61;;;;54199:73:0;;;;;;;;;;9348:19:1;;;;54199:73:0;;;54189:84;;;;;;53696:314::o;48142:1632::-;48273:7;;49207:66;49194:79;;49190:163;;;-1:-1:-1;49306:1:0;;-1:-1:-1;49310:30:0;49290:51;;49190:163;49367:1;:7;;49372:2;49367:7;;:18;;;;;49378:1;:7;;49383:2;49378:7;;49367:18;49363:102;;;-1:-1:-1;49418:1:0;;-1:-1:-1;49422:30:0;49402:51;;49363:102;49579:24;;;49562:14;49579:24;;;;;;;;;10091:25:1;;;10164:4;10152:17;;10132:18;;;10125:45;;;;10186:18;;;10179:34;;;10229:18;;;10222:34;;;49579:24:0;;10063:19:1;;49579:24:0;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;49579:24:0;;-1:-1:-1;;49579:24:0;;;-1:-1:-1;;;;;;;49618:20:0;;49614:103;;49671:1;49675:29;49655:50;;;;;;;49614:103;49737:6;-1:-1:-1;49745:20:0;;-1:-1:-1;48142:1632:0;;;;;;;;:::o;47184:344::-;47298:7;;-1:-1:-1;;;;;47344:80:0;;47298:7;47451:25;47467:3;47452:18;;;47474:2;47451:25;:::i;:::-;47435:42;;47495:25;47506:4;47512:1;47515;47518;47495:10;:25::i;:::-;47488:32;;;;;;47184:344;;;;;;:::o;-1:-1:-1:-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;;;;;;;;;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:173::-;493:20;;-1:-1:-1;;;;;542:31:1;;532:42;;522:70;;588:1;585;578:12;522:70;425:173;;;:::o;603:220::-;645:5;698:3;691:4;683:6;679:17;675:27;665:55;;716:1;713;706:12;665:55;738:79;813:3;804:6;791:20;784:4;776:6;772:17;738:79;:::i;828:186::-;887:6;940:2;928:9;919:7;915:23;911:32;908:52;;;956:1;953;946:12;908:52;979:29;998:9;979:29;:::i;1019:260::-;1087:6;1095;1148:2;1136:9;1127:7;1123:23;1119:32;1116:52;;;1164:1;1161;1154:12;1116:52;1187:29;1206:9;1187:29;:::i;:::-;1177:39;;1235:38;1269:2;1258:9;1254:18;1235:38;:::i;:::-;1225:48;;1019:260;;;;;:::o;1284:328::-;1361:6;1369;1377;1430:2;1418:9;1409:7;1405:23;1401:32;1398:52;;;1446:1;1443;1436:12;1398:52;1469:29;1488:9;1469:29;:::i;:::-;1459:39;;1517:38;1551:2;1540:9;1536:18;1517:38;:::i;:::-;1507:48;;1602:2;1591:9;1587:18;1574:32;1564:42;;1284:328;;;;;:::o;1617:537::-;1712:6;1720;1728;1736;1789:3;1777:9;1768:7;1764:23;1760:33;1757:53;;;1806:1;1803;1796:12;1757:53;1829:29;1848:9;1829:29;:::i;:::-;1819:39;;1877:38;1911:2;1900:9;1896:18;1877:38;:::i;:::-;1867:48;;1962:2;1951:9;1947:18;1934:32;1924:42;;2017:2;2006:9;2002:18;1989:32;-1:-1:-1;;;;;2036:6:1;2033:30;2030:50;;;2076:1;2073;2066:12;2030:50;2099:49;2140:7;2131:6;2120:9;2116:22;2099:49;:::i;:::-;2089:59;;;1617:537;;;;;;;:::o;2159:347::-;2224:6;2232;2285:2;2273:9;2264:7;2260:23;2256:32;2253:52;;;2301:1;2298;2291:12;2253:52;2324:29;2343:9;2324:29;:::i;:::-;2314:39;;2403:2;2392:9;2388:18;2375:32;2450:5;2443:13;2436:21;2429:5;2426:32;2416:60;;2472:1;2469;2462:12;2416:60;2495:5;2485:15;;;2159:347;;;;;:::o;2511:254::-;2579:6;2587;2640:2;2628:9;2619:7;2615:23;2611:32;2608:52;;;2656:1;2653;2646:12;2608:52;2679:29;2698:9;2679:29;:::i;:::-;2669:39;2755:2;2740:18;;;;2727:32;;-1:-1:-1;;;2511:254:1:o;2770:963::-;2854:6;2885:2;2928;2916:9;2907:7;2903:23;2899:32;2896:52;;;2944:1;2941;2934:12;2896:52;2984:9;2971:23;-1:-1:-1;;;;;3054:2:1;3046:6;3043:14;3040:34;;;3070:1;3067;3060:12;3040:34;3108:6;3097:9;3093:22;3083:32;;3153:7;3146:4;3142:2;3138:13;3134:27;3124:55;;3175:1;3172;3165:12;3124:55;3211:2;3198:16;3233:2;3229;3226:10;3223:36;;;3239:18;;:::i;:::-;3285:2;3282:1;3278:10;3268:20;;3308:28;3332:2;3328;3324:11;3308:28;:::i;:::-;3370:15;;;3401:12;;;;3433:11;;;3463;;;3459:20;;3456:33;-1:-1:-1;3453:53:1;;;3502:1;3499;3492:12;3453:53;3524:1;3515:10;;3534:169;3548:2;3545:1;3542:9;3534:169;;;3605:23;3624:3;3605:23;:::i;:::-;3593:36;;3566:1;3559:9;;;;;3649:12;;;;3681;;3534:169;;;-1:-1:-1;3722:5:1;2770:963;-1:-1:-1;;;;;;;;2770:963:1:o;3738:245::-;3796:6;3849:2;3837:9;3828:7;3824:23;3820:32;3817:52;;;3865:1;3862;3855:12;3817:52;3904:9;3891:23;3923:30;3947:5;3923:30;:::i;3988:249::-;4057:6;4110:2;4098:9;4089:7;4085:23;4081:32;4078:52;;;4126:1;4123;4116:12;4078:52;4158:9;4152:16;4177:30;4201:5;4177:30;:::i;4242:450::-;4311:6;4364:2;4352:9;4343:7;4339:23;4335:32;4332:52;;;4380:1;4377;4370:12;4332:52;4420:9;4407:23;-1:-1:-1;;;;;4445:6:1;4442:30;4439:50;;;4485:1;4482;4475:12;4439:50;4508:22;;4561:4;4553:13;;4549:27;-1:-1:-1;4539:55:1;;4590:1;4587;4580:12;4539:55;4613:73;4678:7;4673:2;4660:16;4655:2;4651;4647:11;4613:73;:::i;4697:180::-;4756:6;4809:2;4797:9;4788:7;4784:23;4780:32;4777:52;;;4825:1;4822;4815:12;4777:52;-1:-1:-1;4848:23:1;;4697:180;-1:-1:-1;4697:180:1:o;4882:388::-;4959:6;4967;5020:2;5008:9;4999:7;4995:23;4991:32;4988:52;;;5036:1;5033;5026:12;4988:52;5072:9;5059:23;5049:33;;5133:2;5122:9;5118:18;5105:32;-1:-1:-1;;;;;5152:6:1;5149:30;5146:50;;;5192:1;5189;5182:12;5146:50;5215:49;5256:7;5247:6;5236:9;5232:22;5215:49;:::i;:::-;5205:59;;;4882:388;;;;;:::o;5275:456::-;5361:6;5369;5377;5430:2;5418:9;5409:7;5405:23;5401:32;5398:52;;;5446:1;5443;5436:12;5398:52;5482:9;5469:23;5459:33;;5539:2;5528:9;5524:18;5511:32;5501:42;;5594:2;5583:9;5579:18;5566:32;-1:-1:-1;;;;;5613:6:1;5610:30;5607:50;;;5653:1;5650;5643:12;5607:50;5676:49;5717:7;5708:6;5697:9;5693:22;5676:49;:::i;:::-;5666:59;;;5275:456;;;;;:::o;5736:385::-;5822:6;5830;5838;5846;5899:3;5887:9;5878:7;5874:23;5870:33;5867:53;;;5916:1;5913;5906:12;5867:53;-1:-1:-1;;5939:23:1;;;6009:2;5994:18;;5981:32;;-1:-1:-1;6060:2:1;6045:18;;6032:32;;6111:2;6096:18;6083:32;;-1:-1:-1;5736:385:1;-1:-1:-1;5736:385:1:o;6126:257::-;6167:3;6205:5;6199:12;6232:6;6227:3;6220:19;6248:63;6304:6;6297:4;6292:3;6288:14;6281:4;6274:5;6270:16;6248:63;:::i;:::-;6365:2;6344:15;-1:-1:-1;;6340:29:1;6331:39;;;;6372:4;6327:50;;6126:257;-1:-1:-1;;6126:257:1:o;6388:973::-;6473:12;;6438:3;;6528:1;6548:18;;;;6601;;;;6628:61;;6682:4;6674:6;6670:17;6660:27;;6628:61;6708:2;6756;6748:6;6745:14;6725:18;6722:38;6719:161;;;6802:10;6797:3;6793:20;6790:1;6783:31;6837:4;6834:1;6827:15;6865:4;6862:1;6855:15;6719:161;6896:18;6923:104;;;;7041:1;7036:319;;;;6889:466;;6923:104;-1:-1:-1;;6956:24:1;;6944:37;;7001:16;;;;-1:-1:-1;6923:104:1;;7036:319;17684:1;17677:14;;;17721:4;17708:18;;7130:1;7144:165;7158:6;7155:1;7152:13;7144:165;;;7236:14;;7223:11;;;7216:35;7279:16;;;;7173:10;;7144:165;;;7148:3;;7338:6;7333:3;7329:16;7322:23;;6889:466;;;;;;;6388:973;;;;:::o;7366:456::-;7587:3;7615:38;7649:3;7641:6;7615:38;:::i;:::-;7682:6;7676:13;7698:52;7743:6;7739:2;7732:4;7724:6;7720:17;7698:52;:::i;:::-;7766:50;7808:6;7804:2;7800:15;7792:6;7766:50;:::i;:::-;7759:57;7366:456;-1:-1:-1;;;;;;;7366:456:1:o;8432:488::-;-1:-1:-1;;;;;8701:15:1;;;8683:34;;8753:15;;8748:2;8733:18;;8726:43;8800:2;8785:18;;8778:34;;;8848:3;8843:2;8828:18;;8821:31;;;8626:4;;8869:45;;8894:19;;8886:6;8869:45;:::i;:::-;8861:53;8432:488;-1:-1:-1;;;;;;8432:488:1:o;10267:219::-;10416:2;10405:9;10398:21;10379:4;10436:44;10476:2;10465:9;10461:18;10453:6;10436:44;:::i;12717:339::-;12919:2;12901:21;;;12958:2;12938:18;;;12931:30;-1:-1:-1;;;12992:2:1;12977:18;;12970:45;13047:2;13032:18;;12717:339::o;14231:356::-;14433:2;14415:21;;;14452:18;;;14445:30;14511:34;14506:2;14491:18;;14484:62;14578:2;14563:18;;14231:356::o;15301:346::-;15503:2;15485:21;;;15542:2;15522:18;;;15515:30;-1:-1:-1;;;15576:2:1;15561:18;;15554:52;15638:2;15623:18;;15301:346::o;16357:343::-;16559:2;16541:21;;;16598:2;16578:18;;;16571:30;-1:-1:-1;;;16632:2:1;16617:18;;16610:49;16691:2;16676:18;;16357:343::o;17331:275::-;17402:2;17396:9;17467:2;17448:13;;-1:-1:-1;;17444:27:1;17432:40;;-1:-1:-1;;;;;17487:34:1;;17523:22;;;17484:62;17481:88;;;17549:18;;:::i;:::-;17585:2;17578:22;17331:275;;-1:-1:-1;17331:275:1:o;17737:128::-;17777:3;17808:1;17804:6;17801:1;17798:13;17795:39;;;17814:18;;:::i;:::-;-1:-1:-1;17850:9:1;;17737:128::o;17870:120::-;17910:1;17936;17926:35;;17941:18;;:::i;:::-;-1:-1:-1;17975:9:1;;17870:120::o;17995:168::-;18035:7;18101:1;18097;18093:6;18089:14;18086:1;18083:21;18078:1;18071:9;18064:17;18060:45;18057:71;;;18108:18;;:::i;:::-;-1:-1:-1;18148:9:1;;17995:168::o;18168:125::-;18208:4;18236:1;18233;18230:8;18227:34;;;18241:18;;:::i;:::-;-1:-1:-1;18278:9:1;;18168:125::o;18298:258::-;18370:1;18380:113;18394:6;18391:1;18388:13;18380:113;;;18470:11;;;18464:18;18451:11;;;18444:39;18416:2;18409:10;18380:113;;;18511:6;18508:1;18505:13;18502:48;;;-1:-1:-1;;18546:1:1;18528:16;;18521:27;18298:258::o;18561:380::-;18640:1;18636:12;;;;18683;;;18704:61;;18758:4;18750:6;18746:17;18736:27;;18704:61;18811:2;18803:6;18800:14;18780:18;18777:38;18774:161;;;18857:10;18852:3;18848:20;18845:1;18838:31;18892:4;18889:1;18882:15;18920:4;18917:1;18910:15;18774:161;;18561:380;;;:::o;18946:135::-;18985:3;-1:-1:-1;;19006:17:1;;19003:43;;;19026:18;;:::i;:::-;-1:-1:-1;19073:1:1;19062:13;;18946:135::o;19086:112::-;19118:1;19144;19134:35;;19149:18;;:::i;:::-;-1:-1:-1;19183:9:1;;19086:112::o;19203:127::-;19264:10;19259:3;19255:20;19252:1;19245:31;19295:4;19292:1;19285:15;19319:4;19316:1;19309:15;19335:127;19396:10;19391:3;19387:20;19384:1;19377:31;19427:4;19424:1;19417:15;19451:4;19448:1;19441:15;19467:127;19528:10;19523:3;19519:20;19516:1;19509:31;19559:4;19556:1;19549:15;19583:4;19580:1;19573:15;19599:127;19660:10;19655:3;19651:20;19648:1;19641:31;19691:4;19688:1;19681:15;19715:4;19712:1;19705:15;19731:127;19792:10;19787:3;19783:20;19780:1;19773:31;19823:4;19820:1;19813:15;19847:4;19844:1;19837:15;19863:131;-1:-1:-1;;;;;;19937:32:1;;19927:43;;19917:71;;19984:1;19981;19974:12

Swarm Source

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