ETH Price: $2,637.42 (+2.01%)

Token

SpaceWaterBears (SWB)
 

Overview

Max Total Supply

82 SWB

Holders

42

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A
Filtered by Token Holder
0ddjob.eth
Balance
12 SWB
0x6b0e4ea76f522cc337e4683e01d5b5779ab67f7b
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:
SpaceWaterBears

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-03-19
*/

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

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

    /**
     * @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 SpaceWaterBears is EIP712, Ownable, ERC721A {
    string private constant SIGNING_DOMAIN = "WEB3CLUB";
    string private constant SIGNATURE_VERSION = "1";

    uint256 public adoptionLimit = 15;
    uint256 public adoptionLimitPresale = 10;

    using Strings for uint256;

    mapping(uint256 => string) private _tokenURIs;
    bool public publicSaleOpen = false;
    bool public privateSaleOpen = false;
    string private baseURI = "";
    string public _extension = "";
    uint256 public price = 0.08 ether;
    uint256 public WL_Price = 0.05 ether;
    uint256 public maxSupply = 5600;

    address private whitelistVerify = 0xbF3e689B25F460F695FC5a6715aA9c74de79e52F;
    address public dev_address = 0x0350227289D7352020A70fCeE33f6014A778d54f;
    
    mapping(uint => uint256) public voucherIds;
    constructor() ERC721A("SpaceWaterBears", "SWB") EIP712(SIGNING_DOMAIN, SIGNATURE_VERSION){}
    

    function mintNFT(uint256 _quantity) public payable {
        require(_quantity > 0 && _quantity <= 15, "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 adoption amount");
        require(publicSaleOpen, "Public Sale Not Started Yet!");

        _safeMint(msg.sender, _quantity);

    }
    function mintPresale(uint256 _quantity, uint256 id, bytes memory signature) public payable {
        require(_quantity > 0 && _quantity <= 10, "Wrong Quantity.");
        require(totalSupply() + _quantity < maxSupply, "Reaching max supply");
        require(msg.value == WL_Price * _quantity, "Needs to send more eth");
        require(getMintedCount(msg.sender) + _quantity <= adoptionLimitPresale, "Exceed max adoption 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{

        for(uint i = 0; i < _wallets.length; i++)
            _safeMint(_wallets[i], 1);

    }
    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 setAdoptionlimit(uint256 _temp) public onlyOwner() {
        adoptionLimit = _temp;
    }
    function setAdoptionlimitPresale(uint256 _temp) public onlyOwner() {
        adoptionLimitPresale = _temp;
    }

    function setmaxSupply(uint256 _supply) public onlyOwner() {
        require(_supply > maxSupply, "Provide a valid supply i.e. greater than current supply and less than/equal to max supply");
        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 * 10 / 100); //dev
        payable(owner()).transfer(_balance * 90 / 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":"WL_Price","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"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":"adoptionLimitPresale","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":[{"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":"mintPresale","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":"uint256","name":"_temp","type":"uint256"}],"name":"setAdoptionlimit","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_temp","type":"uint256"}],"name":"setAdoptionlimitPresale","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"}]

600f600955600a8055600c805461ffff19169055610160604081905260006101408190526200003191600d916200028e565b506040805160208101918290526000908190526200005291600e916200028e565b5067011c37937e080000600f5566b1a2bc2ec500006010556115e0601155601280546001600160a01b031990811673bf3e689b25f460f695fc5a6715aa9c74de79e52f1790915560138054909116730350227289d7352020a70fcee33f6014a778d54f179055348015620000c557600080fd5b50604080518082018252600f81526e53706163655761746572426561727360881b60208083019190915282518084018452600381526229aba160e91b818301528351808501855260088152672ba2a119a1a62aa160c11b818401908152855180870190965260018652603160f81b93860193909352805190922060e08190527fc89efdaa54c0f20c7adf612882df0950f5a951637e0307cdcb4c672f298b8bc66101008190524660a052939491937f8b73c3c69bb8fe3d512ecc4cf759cc79239f7b179b0ffacaa9a75d522b39400f620001e48184846040805160208101859052908101839052606081018290524660808201523060a082015260009060c0016040516020818303038152906040528051906020012090509392505050565b6080523060601b60c05261012052506200020a9250620002049150503390565b6200023e565b81516200021f9060039060208501906200028e565b508051620002359060049060208401906200028e565b50505062000371565b600080546001600160a01b038381166001600160a01b0319831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b8280546200029c9062000334565b90600052602060002090601f016020900481019282620002c057600085556200030b565b82601f10620002db57805160ff19168380011785556200030b565b828001600101855582156200030b579182015b828111156200030b578251825591602001919060010190620002ee565b50620003199291506200031d565b5090565b5b808211156200031957600081556001016200031e565b600181811c908216806200034957607f821691505b602082108114156200036b57634e487b7160e01b600052602260045260246000fd5b50919050565b60805160a05160c05160601c60e0516101005161012051612b05620003c4600039600061217c015260006121cb015260006121a6015260006120ff01526000612129015260006121530152612b056000f3fe6080604052600436106102765760003560e01c80638da5cb5b1161014f578063b88d4fde116100c1578063e198efdc1161007a578063e198efdc1461073a578063e57deb391461075a578063e917a28c1461077a578063e985e9c514610790578063f2fde38b146107d9578063f9e23799146107f957600080fd5b8063b88d4fde1461069c578063bc6cb080146106bc578063c3d9e261146106cf578063c87b56dd146106ef578063d57f82791461070f578063d5abeb011461072457600080fd5b806395d89b411161011357806395d89b41146105ee57806397d6696b14610603578063a035b1fe14610623578063a22cb46514610639578063ab34ee4f14610659578063aeb4c2991461068657600080fd5b80638da5cb5b1461052757806391b7f5ed146105455780639231ab2a1461056557806392642744146105bb578063931688cb146105ce57600080fd5b806342842e0e116101e8578063715018a6116101ac578063715018a61461047d5780637abb8efb146104925780637c8255db146104b25780637d8966e4146104d25780637e6182d9146104e7578063876f23901461050757600080fd5b806342842e0e146103e95780636352211e1461040957806367fe2fde1461042957806370a0823114610448578063714c53981461046857600080fd5b806318160ddd1161023a57806318160ddd14610350578063228025e81461036957806323b872dd146103895780632760370d146103a95780633ae1dd9d146103bf5780633ccfd60b146103d457600080fd5b806301ffc9a71461028257806306fdde03146102b7578063081812fc146102d9578063095ea7b31461031157806312065fe01461033357600080fd5b3661027d57005b600080fd5b34801561028e57600080fd5b506102a261029d366004612675565b610813565b60405190151581526020015b60405180910390f35b3480156102c357600080fd5b506102cc610865565b6040516102ae91906128db565b3480156102e557600080fd5b506102f96102f43660046126f7565b6108f7565b6040516001600160a01b0390911681526020016102ae565b34801561031d57600080fd5b5061033161032c366004612598565b61093b565b005b34801561033f57600080fd5b50475b6040519081526020016102ae565b34801561035c57600080fd5b5060025460015403610342565b34801561037557600080fd5b506103316103843660046126f7565b6109c9565b34801561039557600080fd5b506103316103a43660046124b9565b610a9e565b3480156103b557600080fd5b5061034260105481565b3480156103cb57600080fd5b506102cc610aa9565b3480156103e057600080fd5b50610331610b37565b3480156103f557600080fd5b506103316104043660046124b9565b610c04565b34801561041557600080fd5b506102f96104243660046126f7565b610c1f565b34801561043557600080fd5b50600c546102a290610100900460ff1681565b34801561045457600080fd5b5061034261046336600461246b565b610c31565b34801561047457600080fd5b506102cc610c7f565b34801561048957600080fd5b50610331610c8e565b34801561049e57600080fd5b506013546102f9906001600160a01b031681565b3480156104be57600080fd5b506103316104cd3660046125c2565b610cc4565b3480156104de57600080fd5b50610331610d30565b3480156104f357600080fd5b506103316105023660046126af565b610d6e565b34801561051357600080fd5b506103316105223660046126f7565b610dab565b34801561053357600080fd5b506000546001600160a01b03166102f9565b34801561055157600080fd5b506103316105603660046126f7565b610dda565b34801561057157600080fd5b506105856105803660046126f7565b610e09565b6040805182516001600160a01b031681526020808401516001600160401b031690820152918101511515908201526060016102ae565b6103316105c93660046126f7565b610e2f565b3480156105da57600080fd5b506103316105e93660046126af565b610ff5565b3480156105fa57600080fd5b506102cc611032565b34801561060f57600080fd5b5061034261061e36600461246b565b611041565b34801561062f57600080fd5b50610342600f5481565b34801561064557600080fd5b5061033161065436600461255c565b61104c565b34801561066557600080fd5b506103426106743660046126f7565b60146020526000908152604090205481565b34801561069257600080fd5b50610342600a5481565b3480156106a857600080fd5b506103316106b73660046124f5565b6110e2565b6103316106ca366004612756565b61111c565b3480156106db57600080fd5b506103316106ea3660046126f7565b6113c2565b3480156106fb57600080fd5b506102cc61070a3660046126f7565b6113f1565b34801561071b57600080fd5b50610331611492565b34801561073057600080fd5b5061034260115481565b34801561074657600080fd5b5061033161075536600461246b565b6114d9565b34801561076657600080fd5b506102f9610775366004612710565b611548565b34801561078657600080fd5b5061034260095481565b34801561079c57600080fd5b506102a26107ab366004612486565b6001600160a01b03918216600090815260086020908152604080832093909416825291909152205460ff1690565b3480156107e557600080fd5b506103316107f436600461246b565b61155b565b34801561080557600080fd5b50600c546102a29060ff1681565b60006001600160e01b031982166380ac58cd60e01b148061084457506001600160e01b03198216635b5e139f60e01b145b8061085f57506301ffc9a760e01b6001600160e01b03198316145b92915050565b606060038054610874906129e1565b80601f01602080910402602001604051908101604052809291908181526020018280546108a0906129e1565b80156108ed5780601f106108c2576101008083540402835291602001916108ed565b820191906000526020600020905b8154815290600101906020018083116108d057829003601f168201915b5050505050905090565b6000610902826115f3565b61091f576040516333d1c03960e21b815260040160405180910390fd5b506000908152600760205260409020546001600160a01b031690565b600061094682610c1f565b9050806001600160a01b0316836001600160a01b0316141561097b5760405163250fdee360e21b815260040160405180910390fd5b336001600160a01b0382161480159061099b575061099981336107ab565b155b156109b9576040516367d9dca160e11b815260040160405180910390fd5b6109c483838361161f565b505050565b6000546001600160a01b031633146109fc5760405162461bcd60e51b81526004016109f3906128ee565b60405180910390fd5b6011548111610a995760405162461bcd60e51b815260206004820152605960248201527f50726f7669646520612076616c696420737570706c7920692e652e206772656160448201527f746572207468616e2063757272656e7420737570706c7920616e64206c65737360648201527f207468616e2f657175616c20746f206d617820737570706c7900000000000000608482015260a4016109f3565b601155565b6109c483838361167b565b600e8054610ab6906129e1565b80601f0160208091040260200160405190810160405280929190818152602001828054610ae2906129e1565b8015610b2f5780601f10610b0457610100808354040283529160200191610b2f565b820191906000526020600020905b815481529060010190602001808311610b1257829003601f168201915b505050505081565b6000546001600160a01b03163314610b615760405162461bcd60e51b81526004016109f3906128ee565b60135447906001600160a01b03166108fc6064610b7f84600a61297f565b610b89919061296b565b6040518115909202916000818181858888f19350505050158015610bb1573d6000803e3d6000fd5b506000546001600160a01b03166108fc6064610bce84605a61297f565b610bd8919061296b565b6040518115909202916000818181858888f19350505050158015610c00573d6000803e3d6000fd5b5050565b6109c4838383604051806020016040528060008152506110e2565b6000610c2a8261188f565b5192915050565b60006001600160a01b038216610c5a576040516323d3ad8160e21b815260040160405180910390fd5b506001600160a01b03166000908152600660205260409020546001600160401b031690565b6060600d8054610874906129e1565b6000546001600160a01b03163314610cb85760405162461bcd60e51b81526004016109f3906128ee565b610cc260006119aa565b565b6000546001600160a01b03163314610cee5760405162461bcd60e51b81526004016109f3906128ee565b60005b8151811015610c0057610d1e828281518110610d0f57610d0f612a8d565b602002602001015160016119fa565b80610d2881612a1c565b915050610cf1565b6000546001600160a01b03163314610d5a5760405162461bcd60e51b81526004016109f3906128ee565b600c805460ff19811660ff90911615179055565b6000546001600160a01b03163314610d985760405162461bcd60e51b81526004016109f3906128ee565b8051610c0090600e90602084019061233f565b6000546001600160a01b03163314610dd55760405162461bcd60e51b81526004016109f3906128ee565b600955565b6000546001600160a01b03163314610e045760405162461bcd60e51b81526004016109f3906128ee565b600f55565b604080516060810182526000808252602082018190529181019190915261085f8261188f565b600081118015610e405750600f8111155b610e7e5760405162461bcd60e51b815260206004820152600f60248201526e2bb937b7339028bab0b73a34ba3c9760891b60448201526064016109f3565b60115481610e8f6002546001540390565b610e999190612953565b10610edc5760405162461bcd60e51b81526020600482015260136024820152725265616368696e67206d617820737570706c7960681b60448201526064016109f3565b80600f54610eea919061297f565b3414610f315760405162461bcd60e51b815260206004820152601660248201527509ccacac8e640e8de40e6cadcc840dadee4ca40cae8d60531b60448201526064016109f3565b60095481610f3e33611041565b610f489190612953565b1115610f965760405162461bcd60e51b815260206004820152601a60248201527f457863656564206d61782061646f7074696f6e20616d6f756e7400000000000060448201526064016109f3565b600c5460ff16610fe85760405162461bcd60e51b815260206004820152601c60248201527f5075626c69632053616c65204e6f74205374617274656420596574210000000060448201526064016109f3565b610ff233826119fa565b50565b6000546001600160a01b0316331461101f5760405162461bcd60e51b81526004016109f3906128ee565b8051610c0090600d90602084019061233f565b606060048054610874906129e1565b600061085f82611a14565b6001600160a01b0382163314156110765760405163b06307db60e01b815260040160405180910390fd5b3360008181526008602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b6110ed84848461167b565b6110f984848484611a69565b611116576040516368d2bf6b60e11b815260040160405180910390fd5b50505050565b60008311801561112d5750600a8311155b61116b5760405162461bcd60e51b815260206004820152600f60248201526e2bb937b7339028bab0b73a34ba3c9760891b60448201526064016109f3565b6011548361117c6002546001540390565b6111869190612953565b106111c95760405162461bcd60e51b81526020600482015260136024820152725265616368696e67206d617820737570706c7960681b60448201526064016109f3565b826010546111d7919061297f565b341461121e5760405162461bcd60e51b815260206004820152601660248201527509ccacac8e640e8de40e6cadcc840dadee4ca40cae8d60531b60448201526064016109f3565b600a548361122b33611041565b6112359190612953565b11156112835760405162461bcd60e51b815260206004820152601a60248201527f457863656564206d61782061646f7074696f6e20616d6f756e7400000000000060448201526064016109f3565b600c54610100900460ff166112da5760405162461bcd60e51b815260206004820152601d60248201527f507269766174652053616c65204e6f742053746172746564205965742100000060448201526064016109f3565b6012546001600160a01b03166112f08383611548565b6001600160a01b0316146113465760405162461bcd60e51b815260206004820152601860248201527f596f7520617265206e6f742077686974656c69737465642e000000000000000060448201526064016109f3565b600082815260146020526040902054156113a25760405162461bcd60e51b815260206004820152601b60248201527f496e76616c696420566f75636865722e2054727920416761696e2e000000000060448201526064016109f3565b6113ac33846119fa565b5060009081526014602052604090206001905550565b6000546001600160a01b031633146113ec5760405162461bcd60e51b81526004016109f3906128ee565b600a55565b60606113fc826115f3565b61145d5760405162461bcd60e51b815260206004820152602c60248201527f4552433732314d657461646174613a2055524920736574206f66206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b60648201526084016109f3565b600d61146883611b78565b600e60405160200161147c9392919061286b565b6040516020818303038152906040529050919050565b6000546001600160a01b031633146114bc5760405162461bcd60e51b81526004016109f3906128ee565b600c805461ff001981166101009182900460ff1615909102179055565b6013546001600160a01b031633146115265760405162461bcd60e51b815260206004820152601060248201526f2cb7ba9030b932903737ba103232bb1760811b60448201526064016109f3565b601380546001600160a01b0319166001600160a01b0392909216919091179055565b60006115548383611c75565b9392505050565b6000546001600160a01b031633146115855760405162461bcd60e51b81526004016109f3906128ee565b6001600160a01b0381166115ea5760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b60648201526084016109f3565b610ff2816119aa565b60006001548210801561085f575050600090815260056020526040902054600160e01b900460ff161590565b60008281526007602052604080822080546001600160a01b0319166001600160a01b0387811691821790925591518593918516917f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591a4505050565b60006116868261188f565b80519091506000906001600160a01b0316336001600160a01b031614806116b4575081516116b490336107ab565b806116cf5750336116c4846108f7565b6001600160a01b0316145b9050806116ef57604051632ce44b5f60e11b815260040160405180910390fd5b846001600160a01b031682600001516001600160a01b0316146117245760405162a1148160e81b815260040160405180910390fd5b6001600160a01b03841661174b57604051633a954ecd60e21b815260040160405180910390fd5b61175b600084846000015161161f565b6001600160a01b038581166000908152600660209081526040808320805467ffffffffffffffff198082166001600160401b0392831660001901831617909255898616808652838620805493841693831660019081018416949094179055898652600590945282852080546001600160e01b031916909417600160a01b4290921691909102179092559086018083529120549091166118455760015481101561184557825160008281526005602090815260409091208054918601516001600160401b0316600160a01b026001600160e01b03199092166001600160a01b03909316929092171790555b5082846001600160a01b0316866001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45b5050505050565b6040805160608101825260008082526020820181905291810191909152600154829081101561199157600081815260056020908152604091829020825160608101845290546001600160a01b0381168252600160a01b81046001600160401b031692820192909252600160e01b90910460ff1615159181018290529061198f5780516001600160a01b031615611926579392505050565b5060001901600081815260056020908152604091829020825160608101845290546001600160a01b038116808352600160a01b82046001600160401b031693830193909352600160e01b900460ff161515928101929092521561198a579392505050565b611926565b505b604051636f96cda160e11b815260040160405180910390fd5b600080546001600160a01b038381166001600160a01b0319831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b610c00828260405180602001604052806000815250611c8d565b60006001600160a01b038216611a3d576040516335ebb31960e01b815260040160405180910390fd5b506001600160a01b0316600090815260066020526040902054600160401b90046001600160401b031690565b60006001600160a01b0384163b15611b6c57604051630a85bd0160e11b81526001600160a01b0385169063150b7a0290611aad90339089908890889060040161289e565b602060405180830381600087803b158015611ac757600080fd5b505af1925050508015611af7575060408051601f3d908101601f19168201909252611af491810190612692565b60015b611b52573d808015611b25576040519150601f19603f3d011682016040523d82523d6000602084013e611b2a565b606091505b508051611b4a576040516368d2bf6b60e11b815260040160405180910390fd5b805181602001fd5b6001600160e01b031916630a85bd0160e11b149050611b70565b5060015b949350505050565b606081611b9c5750506040805180820190915260018152600360fc1b602082015290565b8160005b8115611bc65780611bb081612a1c565b9150611bbf9050600a8361296b565b9150611ba0565b6000816001600160401b03811115611be057611be0612aa3565b6040519080825280601f01601f191660200182016040528015611c0a576020820181803683370190505b5090505b8415611b7057611c1f60018361299e565b9150611c2c600a86612a37565b611c37906030612953565b60f81b818381518110611c4c57611c4c612a8d565b60200101906001600160f81b031916908160001a905350611c6e600a8661296b565b9450611c0e565b600080611c8184611c9a565b9050611b708184611cef565b6109c48383836001611d13565b604080517f092b584b565f9711d79732cb738ace6cf7a206eb6277470732d92d8cc83ad275602082015290810182905260009061085f9060600160405160208183030381529060405280519060200120611e79565b6000806000611cfe8585611ec7565b91509150611d0b81611f37565b509392505050565b6001546001600160a01b038516611d3c57604051622e076360e81b815260040160405180910390fd5b83611d5a5760405163b562e8dd60e01b815260040160405180910390fd5b6001600160a01b038516600081815260066020908152604080832080546fffffffffffffffffffffffffffffffff1981166001600160401b038083168c018116918217600160401b67ffffffffffffffff1990941690921783900481168c018116909202179091558584526005909252822080546001600160e01b031916909317600160a01b42909216919091021790915581905b85811015611e705760405182906001600160a01b038916906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a4838015611e465750611e446000888488611a69565b155b15611e64576040516368d2bf6b60e11b815260040160405180910390fd5b60019182019101611def565b50600155611888565b600061085f611e866120f2565b8360405161190160f01b6020820152602281018390526042810182905260009060620160405160208183030381529060405280519060200120905092915050565b600080825160411415611efe5760208301516040840151606085015160001a611ef287828585612219565b94509450505050611f30565b825160401415611f285760208301516040840151611f1d868383612306565b935093505050611f30565b506000905060025b9250929050565b6000816004811115611f4b57611f4b612a77565b1415611f545750565b6001816004811115611f6857611f68612a77565b1415611fb65760405162461bcd60e51b815260206004820152601860248201527f45434453413a20696e76616c6964207369676e6174757265000000000000000060448201526064016109f3565b6002816004811115611fca57611fca612a77565b14156120185760405162461bcd60e51b815260206004820152601f60248201527f45434453413a20696e76616c6964207369676e6174757265206c656e6774680060448201526064016109f3565b600381600481111561202c5761202c612a77565b14156120855760405162461bcd60e51b815260206004820152602260248201527f45434453413a20696e76616c6964207369676e6174757265202773272076616c604482015261756560f01b60648201526084016109f3565b600481600481111561209957612099612a77565b1415610ff25760405162461bcd60e51b815260206004820152602260248201527f45434453413a20696e76616c6964207369676e6174757265202776272076616c604482015261756560f01b60648201526084016109f3565b6000306001600160a01b037f00000000000000000000000000000000000000000000000000000000000000001614801561214b57507f000000000000000000000000000000000000000000000000000000000000000046145b1561217557507f000000000000000000000000000000000000000000000000000000000000000090565b50604080517f00000000000000000000000000000000000000000000000000000000000000006020808301919091527f0000000000000000000000000000000000000000000000000000000000000000828401527f000000000000000000000000000000000000000000000000000000000000000060608301524660808301523060a0808401919091528351808403909101815260c0909201909252805191012090565b6000807f7fffffffffffffffffffffffffffffff5d576e7357a4501ddfe92f46681b20a083111561225057506000905060036122fd565b8460ff16601b1415801561226857508460ff16601c14155b1561227957506000905060046122fd565b6040805160008082526020820180845289905260ff881692820192909252606081018690526080810185905260019060a0016020604051602081039080840390855afa1580156122cd573d6000803e3d6000fd5b5050604051601f1901519150506001600160a01b0381166122f6576000600192509250506122fd565b9150600090505b94509492505050565b6000806001600160ff1b0383168161232360ff86901c601b612953565b905061233187828885612219565b935093505050935093915050565b82805461234b906129e1565b90600052602060002090601f01602090048101928261236d57600085556123b3565b82601f1061238657805160ff19168380011785556123b3565b828001600101855582156123b3579182015b828111156123b3578251825591602001919060010190612398565b506123bf9291506123c3565b5090565b5b808211156123bf57600081556001016123c4565b60006001600160401b038311156123f1576123f1612aa3565b612404601f8401601f1916602001612923565b905082815283838301111561241857600080fd5b828260208301376000602084830101529392505050565b80356001600160a01b038116811461244657600080fd5b919050565b600082601f83011261245c57600080fd5b611554838335602085016123d8565b60006020828403121561247d57600080fd5b6115548261242f565b6000806040838503121561249957600080fd5b6124a28361242f565b91506124b06020840161242f565b90509250929050565b6000806000606084860312156124ce57600080fd5b6124d78461242f565b92506124e56020850161242f565b9150604084013590509250925092565b6000806000806080858703121561250b57600080fd5b6125148561242f565b93506125226020860161242f565b92506040850135915060608501356001600160401b0381111561254457600080fd5b6125508782880161244b565b91505092959194509250565b6000806040838503121561256f57600080fd5b6125788361242f565b91506020830135801515811461258d57600080fd5b809150509250929050565b600080604083850312156125ab57600080fd5b6125b48361242f565b946020939093013593505050565b600060208083850312156125d557600080fd5b82356001600160401b03808211156125ec57600080fd5b818501915085601f83011261260057600080fd5b81358181111561261257612612612aa3565b8060051b9150612623848301612923565b8181528481019084860184860187018a101561263e57600080fd5b600095505b83861015612668576126548161242f565b835260019590950194918601918601612643565b5098975050505050505050565b60006020828403121561268757600080fd5b813561155481612ab9565b6000602082840312156126a457600080fd5b815161155481612ab9565b6000602082840312156126c157600080fd5b81356001600160401b038111156126d757600080fd5b8201601f810184136126e857600080fd5b611b70848235602084016123d8565b60006020828403121561270957600080fd5b5035919050565b6000806040838503121561272357600080fd5b8235915060208301356001600160401b0381111561274057600080fd5b61274c8582860161244b565b9150509250929050565b60008060006060848603121561276b57600080fd5b833592506020840135915060408401356001600160401b0381111561278f57600080fd5b61279b8682870161244b565b9150509250925092565b600081518084526127bd8160208601602086016129b5565b601f01601f19169290920160200192915050565b8054600090600181811c90808316806127eb57607f831692505b602080841082141561280d57634e487b7160e01b600052602260045260246000fd5b81801561282157600181146128325761285f565b60ff1986168952848901965061285f565b60008881526020902060005b868110156128575781548b82015290850190830161283e565b505084890196505b50505050505092915050565b600061287782866127d1565b84516128878183602089016129b5565b612893818301866127d1565b979650505050505050565b6001600160a01b03858116825284166020820152604081018390526080606082018190526000906128d1908301846127a5565b9695505050505050565b60208152600061155460208301846127a5565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b604051601f8201601f191681016001600160401b038111828210171561294b5761294b612aa3565b604052919050565b6000821982111561296657612966612a4b565b500190565b60008261297a5761297a612a61565b500490565b600081600019048311821515161561299957612999612a4b565b500290565b6000828210156129b0576129b0612a4b565b500390565b60005b838110156129d05781810151838201526020016129b8565b838111156111165750506000910152565b600181811c908216806129f557607f821691505b60208210811415612a1657634e487b7160e01b600052602260045260246000fd5b50919050565b6000600019821415612a3057612a30612a4b565b5060010190565b600082612a4657612a46612a61565b500690565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052601260045260246000fd5b634e487b7160e01b600052602160045260246000fd5b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b6001600160e01b031981168114610ff257600080fdfea26469706673582212204e2177e4748baac3c19348a669ec668c920fcebbd93d0b256a526d7d1e17f63c64736f6c63430008070033

Deployed Bytecode

0x6080604052600436106102765760003560e01c80638da5cb5b1161014f578063b88d4fde116100c1578063e198efdc1161007a578063e198efdc1461073a578063e57deb391461075a578063e917a28c1461077a578063e985e9c514610790578063f2fde38b146107d9578063f9e23799146107f957600080fd5b8063b88d4fde1461069c578063bc6cb080146106bc578063c3d9e261146106cf578063c87b56dd146106ef578063d57f82791461070f578063d5abeb011461072457600080fd5b806395d89b411161011357806395d89b41146105ee57806397d6696b14610603578063a035b1fe14610623578063a22cb46514610639578063ab34ee4f14610659578063aeb4c2991461068657600080fd5b80638da5cb5b1461052757806391b7f5ed146105455780639231ab2a1461056557806392642744146105bb578063931688cb146105ce57600080fd5b806342842e0e116101e8578063715018a6116101ac578063715018a61461047d5780637abb8efb146104925780637c8255db146104b25780637d8966e4146104d25780637e6182d9146104e7578063876f23901461050757600080fd5b806342842e0e146103e95780636352211e1461040957806367fe2fde1461042957806370a0823114610448578063714c53981461046857600080fd5b806318160ddd1161023a57806318160ddd14610350578063228025e81461036957806323b872dd146103895780632760370d146103a95780633ae1dd9d146103bf5780633ccfd60b146103d457600080fd5b806301ffc9a71461028257806306fdde03146102b7578063081812fc146102d9578063095ea7b31461031157806312065fe01461033357600080fd5b3661027d57005b600080fd5b34801561028e57600080fd5b506102a261029d366004612675565b610813565b60405190151581526020015b60405180910390f35b3480156102c357600080fd5b506102cc610865565b6040516102ae91906128db565b3480156102e557600080fd5b506102f96102f43660046126f7565b6108f7565b6040516001600160a01b0390911681526020016102ae565b34801561031d57600080fd5b5061033161032c366004612598565b61093b565b005b34801561033f57600080fd5b50475b6040519081526020016102ae565b34801561035c57600080fd5b5060025460015403610342565b34801561037557600080fd5b506103316103843660046126f7565b6109c9565b34801561039557600080fd5b506103316103a43660046124b9565b610a9e565b3480156103b557600080fd5b5061034260105481565b3480156103cb57600080fd5b506102cc610aa9565b3480156103e057600080fd5b50610331610b37565b3480156103f557600080fd5b506103316104043660046124b9565b610c04565b34801561041557600080fd5b506102f96104243660046126f7565b610c1f565b34801561043557600080fd5b50600c546102a290610100900460ff1681565b34801561045457600080fd5b5061034261046336600461246b565b610c31565b34801561047457600080fd5b506102cc610c7f565b34801561048957600080fd5b50610331610c8e565b34801561049e57600080fd5b506013546102f9906001600160a01b031681565b3480156104be57600080fd5b506103316104cd3660046125c2565b610cc4565b3480156104de57600080fd5b50610331610d30565b3480156104f357600080fd5b506103316105023660046126af565b610d6e565b34801561051357600080fd5b506103316105223660046126f7565b610dab565b34801561053357600080fd5b506000546001600160a01b03166102f9565b34801561055157600080fd5b506103316105603660046126f7565b610dda565b34801561057157600080fd5b506105856105803660046126f7565b610e09565b6040805182516001600160a01b031681526020808401516001600160401b031690820152918101511515908201526060016102ae565b6103316105c93660046126f7565b610e2f565b3480156105da57600080fd5b506103316105e93660046126af565b610ff5565b3480156105fa57600080fd5b506102cc611032565b34801561060f57600080fd5b5061034261061e36600461246b565b611041565b34801561062f57600080fd5b50610342600f5481565b34801561064557600080fd5b5061033161065436600461255c565b61104c565b34801561066557600080fd5b506103426106743660046126f7565b60146020526000908152604090205481565b34801561069257600080fd5b50610342600a5481565b3480156106a857600080fd5b506103316106b73660046124f5565b6110e2565b6103316106ca366004612756565b61111c565b3480156106db57600080fd5b506103316106ea3660046126f7565b6113c2565b3480156106fb57600080fd5b506102cc61070a3660046126f7565b6113f1565b34801561071b57600080fd5b50610331611492565b34801561073057600080fd5b5061034260115481565b34801561074657600080fd5b5061033161075536600461246b565b6114d9565b34801561076657600080fd5b506102f9610775366004612710565b611548565b34801561078657600080fd5b5061034260095481565b34801561079c57600080fd5b506102a26107ab366004612486565b6001600160a01b03918216600090815260086020908152604080832093909416825291909152205460ff1690565b3480156107e557600080fd5b506103316107f436600461246b565b61155b565b34801561080557600080fd5b50600c546102a29060ff1681565b60006001600160e01b031982166380ac58cd60e01b148061084457506001600160e01b03198216635b5e139f60e01b145b8061085f57506301ffc9a760e01b6001600160e01b03198316145b92915050565b606060038054610874906129e1565b80601f01602080910402602001604051908101604052809291908181526020018280546108a0906129e1565b80156108ed5780601f106108c2576101008083540402835291602001916108ed565b820191906000526020600020905b8154815290600101906020018083116108d057829003601f168201915b5050505050905090565b6000610902826115f3565b61091f576040516333d1c03960e21b815260040160405180910390fd5b506000908152600760205260409020546001600160a01b031690565b600061094682610c1f565b9050806001600160a01b0316836001600160a01b0316141561097b5760405163250fdee360e21b815260040160405180910390fd5b336001600160a01b0382161480159061099b575061099981336107ab565b155b156109b9576040516367d9dca160e11b815260040160405180910390fd5b6109c483838361161f565b505050565b6000546001600160a01b031633146109fc5760405162461bcd60e51b81526004016109f3906128ee565b60405180910390fd5b6011548111610a995760405162461bcd60e51b815260206004820152605960248201527f50726f7669646520612076616c696420737570706c7920692e652e206772656160448201527f746572207468616e2063757272656e7420737570706c7920616e64206c65737360648201527f207468616e2f657175616c20746f206d617820737570706c7900000000000000608482015260a4016109f3565b601155565b6109c483838361167b565b600e8054610ab6906129e1565b80601f0160208091040260200160405190810160405280929190818152602001828054610ae2906129e1565b8015610b2f5780601f10610b0457610100808354040283529160200191610b2f565b820191906000526020600020905b815481529060010190602001808311610b1257829003601f168201915b505050505081565b6000546001600160a01b03163314610b615760405162461bcd60e51b81526004016109f3906128ee565b60135447906001600160a01b03166108fc6064610b7f84600a61297f565b610b89919061296b565b6040518115909202916000818181858888f19350505050158015610bb1573d6000803e3d6000fd5b506000546001600160a01b03166108fc6064610bce84605a61297f565b610bd8919061296b565b6040518115909202916000818181858888f19350505050158015610c00573d6000803e3d6000fd5b5050565b6109c4838383604051806020016040528060008152506110e2565b6000610c2a8261188f565b5192915050565b60006001600160a01b038216610c5a576040516323d3ad8160e21b815260040160405180910390fd5b506001600160a01b03166000908152600660205260409020546001600160401b031690565b6060600d8054610874906129e1565b6000546001600160a01b03163314610cb85760405162461bcd60e51b81526004016109f3906128ee565b610cc260006119aa565b565b6000546001600160a01b03163314610cee5760405162461bcd60e51b81526004016109f3906128ee565b60005b8151811015610c0057610d1e828281518110610d0f57610d0f612a8d565b602002602001015160016119fa565b80610d2881612a1c565b915050610cf1565b6000546001600160a01b03163314610d5a5760405162461bcd60e51b81526004016109f3906128ee565b600c805460ff19811660ff90911615179055565b6000546001600160a01b03163314610d985760405162461bcd60e51b81526004016109f3906128ee565b8051610c0090600e90602084019061233f565b6000546001600160a01b03163314610dd55760405162461bcd60e51b81526004016109f3906128ee565b600955565b6000546001600160a01b03163314610e045760405162461bcd60e51b81526004016109f3906128ee565b600f55565b604080516060810182526000808252602082018190529181019190915261085f8261188f565b600081118015610e405750600f8111155b610e7e5760405162461bcd60e51b815260206004820152600f60248201526e2bb937b7339028bab0b73a34ba3c9760891b60448201526064016109f3565b60115481610e8f6002546001540390565b610e999190612953565b10610edc5760405162461bcd60e51b81526020600482015260136024820152725265616368696e67206d617820737570706c7960681b60448201526064016109f3565b80600f54610eea919061297f565b3414610f315760405162461bcd60e51b815260206004820152601660248201527509ccacac8e640e8de40e6cadcc840dadee4ca40cae8d60531b60448201526064016109f3565b60095481610f3e33611041565b610f489190612953565b1115610f965760405162461bcd60e51b815260206004820152601a60248201527f457863656564206d61782061646f7074696f6e20616d6f756e7400000000000060448201526064016109f3565b600c5460ff16610fe85760405162461bcd60e51b815260206004820152601c60248201527f5075626c69632053616c65204e6f74205374617274656420596574210000000060448201526064016109f3565b610ff233826119fa565b50565b6000546001600160a01b0316331461101f5760405162461bcd60e51b81526004016109f3906128ee565b8051610c0090600d90602084019061233f565b606060048054610874906129e1565b600061085f82611a14565b6001600160a01b0382163314156110765760405163b06307db60e01b815260040160405180910390fd5b3360008181526008602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b6110ed84848461167b565b6110f984848484611a69565b611116576040516368d2bf6b60e11b815260040160405180910390fd5b50505050565b60008311801561112d5750600a8311155b61116b5760405162461bcd60e51b815260206004820152600f60248201526e2bb937b7339028bab0b73a34ba3c9760891b60448201526064016109f3565b6011548361117c6002546001540390565b6111869190612953565b106111c95760405162461bcd60e51b81526020600482015260136024820152725265616368696e67206d617820737570706c7960681b60448201526064016109f3565b826010546111d7919061297f565b341461121e5760405162461bcd60e51b815260206004820152601660248201527509ccacac8e640e8de40e6cadcc840dadee4ca40cae8d60531b60448201526064016109f3565b600a548361122b33611041565b6112359190612953565b11156112835760405162461bcd60e51b815260206004820152601a60248201527f457863656564206d61782061646f7074696f6e20616d6f756e7400000000000060448201526064016109f3565b600c54610100900460ff166112da5760405162461bcd60e51b815260206004820152601d60248201527f507269766174652053616c65204e6f742053746172746564205965742100000060448201526064016109f3565b6012546001600160a01b03166112f08383611548565b6001600160a01b0316146113465760405162461bcd60e51b815260206004820152601860248201527f596f7520617265206e6f742077686974656c69737465642e000000000000000060448201526064016109f3565b600082815260146020526040902054156113a25760405162461bcd60e51b815260206004820152601b60248201527f496e76616c696420566f75636865722e2054727920416761696e2e000000000060448201526064016109f3565b6113ac33846119fa565b5060009081526014602052604090206001905550565b6000546001600160a01b031633146113ec5760405162461bcd60e51b81526004016109f3906128ee565b600a55565b60606113fc826115f3565b61145d5760405162461bcd60e51b815260206004820152602c60248201527f4552433732314d657461646174613a2055524920736574206f66206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b60648201526084016109f3565b600d61146883611b78565b600e60405160200161147c9392919061286b565b6040516020818303038152906040529050919050565b6000546001600160a01b031633146114bc5760405162461bcd60e51b81526004016109f3906128ee565b600c805461ff001981166101009182900460ff1615909102179055565b6013546001600160a01b031633146115265760405162461bcd60e51b815260206004820152601060248201526f2cb7ba9030b932903737ba103232bb1760811b60448201526064016109f3565b601380546001600160a01b0319166001600160a01b0392909216919091179055565b60006115548383611c75565b9392505050565b6000546001600160a01b031633146115855760405162461bcd60e51b81526004016109f3906128ee565b6001600160a01b0381166115ea5760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b60648201526084016109f3565b610ff2816119aa565b60006001548210801561085f575050600090815260056020526040902054600160e01b900460ff161590565b60008281526007602052604080822080546001600160a01b0319166001600160a01b0387811691821790925591518593918516917f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591a4505050565b60006116868261188f565b80519091506000906001600160a01b0316336001600160a01b031614806116b4575081516116b490336107ab565b806116cf5750336116c4846108f7565b6001600160a01b0316145b9050806116ef57604051632ce44b5f60e11b815260040160405180910390fd5b846001600160a01b031682600001516001600160a01b0316146117245760405162a1148160e81b815260040160405180910390fd5b6001600160a01b03841661174b57604051633a954ecd60e21b815260040160405180910390fd5b61175b600084846000015161161f565b6001600160a01b038581166000908152600660209081526040808320805467ffffffffffffffff198082166001600160401b0392831660001901831617909255898616808652838620805493841693831660019081018416949094179055898652600590945282852080546001600160e01b031916909417600160a01b4290921691909102179092559086018083529120549091166118455760015481101561184557825160008281526005602090815260409091208054918601516001600160401b0316600160a01b026001600160e01b03199092166001600160a01b03909316929092171790555b5082846001600160a01b0316866001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45b5050505050565b6040805160608101825260008082526020820181905291810191909152600154829081101561199157600081815260056020908152604091829020825160608101845290546001600160a01b0381168252600160a01b81046001600160401b031692820192909252600160e01b90910460ff1615159181018290529061198f5780516001600160a01b031615611926579392505050565b5060001901600081815260056020908152604091829020825160608101845290546001600160a01b038116808352600160a01b82046001600160401b031693830193909352600160e01b900460ff161515928101929092521561198a579392505050565b611926565b505b604051636f96cda160e11b815260040160405180910390fd5b600080546001600160a01b038381166001600160a01b0319831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b610c00828260405180602001604052806000815250611c8d565b60006001600160a01b038216611a3d576040516335ebb31960e01b815260040160405180910390fd5b506001600160a01b0316600090815260066020526040902054600160401b90046001600160401b031690565b60006001600160a01b0384163b15611b6c57604051630a85bd0160e11b81526001600160a01b0385169063150b7a0290611aad90339089908890889060040161289e565b602060405180830381600087803b158015611ac757600080fd5b505af1925050508015611af7575060408051601f3d908101601f19168201909252611af491810190612692565b60015b611b52573d808015611b25576040519150601f19603f3d011682016040523d82523d6000602084013e611b2a565b606091505b508051611b4a576040516368d2bf6b60e11b815260040160405180910390fd5b805181602001fd5b6001600160e01b031916630a85bd0160e11b149050611b70565b5060015b949350505050565b606081611b9c5750506040805180820190915260018152600360fc1b602082015290565b8160005b8115611bc65780611bb081612a1c565b9150611bbf9050600a8361296b565b9150611ba0565b6000816001600160401b03811115611be057611be0612aa3565b6040519080825280601f01601f191660200182016040528015611c0a576020820181803683370190505b5090505b8415611b7057611c1f60018361299e565b9150611c2c600a86612a37565b611c37906030612953565b60f81b818381518110611c4c57611c4c612a8d565b60200101906001600160f81b031916908160001a905350611c6e600a8661296b565b9450611c0e565b600080611c8184611c9a565b9050611b708184611cef565b6109c48383836001611d13565b604080517f092b584b565f9711d79732cb738ace6cf7a206eb6277470732d92d8cc83ad275602082015290810182905260009061085f9060600160405160208183030381529060405280519060200120611e79565b6000806000611cfe8585611ec7565b91509150611d0b81611f37565b509392505050565b6001546001600160a01b038516611d3c57604051622e076360e81b815260040160405180910390fd5b83611d5a5760405163b562e8dd60e01b815260040160405180910390fd5b6001600160a01b038516600081815260066020908152604080832080546fffffffffffffffffffffffffffffffff1981166001600160401b038083168c018116918217600160401b67ffffffffffffffff1990941690921783900481168c018116909202179091558584526005909252822080546001600160e01b031916909317600160a01b42909216919091021790915581905b85811015611e705760405182906001600160a01b038916906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a4838015611e465750611e446000888488611a69565b155b15611e64576040516368d2bf6b60e11b815260040160405180910390fd5b60019182019101611def565b50600155611888565b600061085f611e866120f2565b8360405161190160f01b6020820152602281018390526042810182905260009060620160405160208183030381529060405280519060200120905092915050565b600080825160411415611efe5760208301516040840151606085015160001a611ef287828585612219565b94509450505050611f30565b825160401415611f285760208301516040840151611f1d868383612306565b935093505050611f30565b506000905060025b9250929050565b6000816004811115611f4b57611f4b612a77565b1415611f545750565b6001816004811115611f6857611f68612a77565b1415611fb65760405162461bcd60e51b815260206004820152601860248201527f45434453413a20696e76616c6964207369676e6174757265000000000000000060448201526064016109f3565b6002816004811115611fca57611fca612a77565b14156120185760405162461bcd60e51b815260206004820152601f60248201527f45434453413a20696e76616c6964207369676e6174757265206c656e6774680060448201526064016109f3565b600381600481111561202c5761202c612a77565b14156120855760405162461bcd60e51b815260206004820152602260248201527f45434453413a20696e76616c6964207369676e6174757265202773272076616c604482015261756560f01b60648201526084016109f3565b600481600481111561209957612099612a77565b1415610ff25760405162461bcd60e51b815260206004820152602260248201527f45434453413a20696e76616c6964207369676e6174757265202776272076616c604482015261756560f01b60648201526084016109f3565b6000306001600160a01b037f00000000000000000000000035c70f0499bf6c2cf6778ece250cfb6c37eb1eda1614801561214b57507f000000000000000000000000000000000000000000000000000000000000000146145b1561217557507f1e020a5d1f17438c1955e776f38a0264e9162480831375f125b3d560f94984eb90565b50604080517f8b73c3c69bb8fe3d512ecc4cf759cc79239f7b179b0ffacaa9a75d522b39400f6020808301919091527f7465fde7fb0420a03855c8bac7d7dd705d61d0241d0d293890335916e0da8ea2828401527fc89efdaa54c0f20c7adf612882df0950f5a951637e0307cdcb4c672f298b8bc660608301524660808301523060a0808401919091528351808403909101815260c0909201909252805191012090565b6000807f7fffffffffffffffffffffffffffffff5d576e7357a4501ddfe92f46681b20a083111561225057506000905060036122fd565b8460ff16601b1415801561226857508460ff16601c14155b1561227957506000905060046122fd565b6040805160008082526020820180845289905260ff881692820192909252606081018690526080810185905260019060a0016020604051602081039080840390855afa1580156122cd573d6000803e3d6000fd5b5050604051601f1901519150506001600160a01b0381166122f6576000600192509250506122fd565b9150600090505b94509492505050565b6000806001600160ff1b0383168161232360ff86901c601b612953565b905061233187828885612219565b935093505050935093915050565b82805461234b906129e1565b90600052602060002090601f01602090048101928261236d57600085556123b3565b82601f1061238657805160ff19168380011785556123b3565b828001600101855582156123b3579182015b828111156123b3578251825591602001919060010190612398565b506123bf9291506123c3565b5090565b5b808211156123bf57600081556001016123c4565b60006001600160401b038311156123f1576123f1612aa3565b612404601f8401601f1916602001612923565b905082815283838301111561241857600080fd5b828260208301376000602084830101529392505050565b80356001600160a01b038116811461244657600080fd5b919050565b600082601f83011261245c57600080fd5b611554838335602085016123d8565b60006020828403121561247d57600080fd5b6115548261242f565b6000806040838503121561249957600080fd5b6124a28361242f565b91506124b06020840161242f565b90509250929050565b6000806000606084860312156124ce57600080fd5b6124d78461242f565b92506124e56020850161242f565b9150604084013590509250925092565b6000806000806080858703121561250b57600080fd5b6125148561242f565b93506125226020860161242f565b92506040850135915060608501356001600160401b0381111561254457600080fd5b6125508782880161244b565b91505092959194509250565b6000806040838503121561256f57600080fd5b6125788361242f565b91506020830135801515811461258d57600080fd5b809150509250929050565b600080604083850312156125ab57600080fd5b6125b48361242f565b946020939093013593505050565b600060208083850312156125d557600080fd5b82356001600160401b03808211156125ec57600080fd5b818501915085601f83011261260057600080fd5b81358181111561261257612612612aa3565b8060051b9150612623848301612923565b8181528481019084860184860187018a101561263e57600080fd5b600095505b83861015612668576126548161242f565b835260019590950194918601918601612643565b5098975050505050505050565b60006020828403121561268757600080fd5b813561155481612ab9565b6000602082840312156126a457600080fd5b815161155481612ab9565b6000602082840312156126c157600080fd5b81356001600160401b038111156126d757600080fd5b8201601f810184136126e857600080fd5b611b70848235602084016123d8565b60006020828403121561270957600080fd5b5035919050565b6000806040838503121561272357600080fd5b8235915060208301356001600160401b0381111561274057600080fd5b61274c8582860161244b565b9150509250929050565b60008060006060848603121561276b57600080fd5b833592506020840135915060408401356001600160401b0381111561278f57600080fd5b61279b8682870161244b565b9150509250925092565b600081518084526127bd8160208601602086016129b5565b601f01601f19169290920160200192915050565b8054600090600181811c90808316806127eb57607f831692505b602080841082141561280d57634e487b7160e01b600052602260045260246000fd5b81801561282157600181146128325761285f565b60ff1986168952848901965061285f565b60008881526020902060005b868110156128575781548b82015290850190830161283e565b505084890196505b50505050505092915050565b600061287782866127d1565b84516128878183602089016129b5565b612893818301866127d1565b979650505050505050565b6001600160a01b03858116825284166020820152604081018390526080606082018190526000906128d1908301846127a5565b9695505050505050565b60208152600061155460208301846127a5565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b604051601f8201601f191681016001600160401b038111828210171561294b5761294b612aa3565b604052919050565b6000821982111561296657612966612a4b565b500190565b60008261297a5761297a612a61565b500490565b600081600019048311821515161561299957612999612a4b565b500290565b6000828210156129b0576129b0612a4b565b500390565b60005b838110156129d05781810151838201526020016129b8565b838111156111165750506000910152565b600181811c908216806129f557607f821691505b60208210811415612a1657634e487b7160e01b600052602260045260246000fd5b50919050565b6000600019821415612a3057612a30612a4b565b5060010190565b600082612a4657612a46612a61565b500690565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052601260045260246000fd5b634e487b7160e01b600052602160045260246000fd5b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b6001600160e01b031981168114610ff257600080fdfea26469706673582212204e2177e4748baac3c19348a669ec668c920fcebbd93d0b256a526d7d1e17f63c64736f6c63430008070033

Deployed Bytecode Sourcemap

55087:5099:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;25451:305;;;;;;;;;;-1:-1:-1;25451:305:0;;;;;:::i;:::-;;:::i;:::-;;;8700:14:1;;8693:22;8675:41;;8663:2;8648:18;25451:305:0;;;;;;;;28811:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;30314:204::-;;;;;;;;;;-1:-1:-1;30314:204:0;;;;;:::i;:::-;;:::i;:::-;;;-1:-1:-1;;;;;7998:32:1;;;7980:51;;7968:2;7953:18;30314:204:0;7834:203:1;29877:371:0;;;;;;;;;;-1:-1:-1;29877:371:0;;;;;:::i;:::-;;:::i;:::-;;59378:95;;;;;;;;;;-1:-1:-1;59444:21:0;59378:95;;;17056:25:1;;;17044:2;17029:18;59378:95:0;16910:177:1;25108:271:0;;;;;;;;;;-1:-1:-1;25344:12:0;;25328:13;;:28;25108:271;;58940:228;;;;;;;;;;-1:-1:-1;58940:228:0;;;;;:::i;:::-;;:::i;31171:170::-;;;;;;;;;;-1:-1:-1;31171:170:0;;;;;:::i;:::-;;:::i;55629:36::-;;;;;;;;;;;;;;;;55553:29;;;;;;;;;;;;;:::i;59762:227::-;;;;;;;;;;;;;:::i;31412:185::-;;;;;;;;;;-1:-1:-1;31412:185:0;;;;;:::i;:::-;;:::i;28620:124::-;;;;;;;;;;-1:-1:-1;28620:124:0;;;;;:::i;:::-;;:::i;55477:35::-;;;;;;;;;;-1:-1:-1;55477:35:0;;;;;;;;;;;25820:206;;;;;;;;;;-1:-1:-1;25820:206:0;;;;;:::i;:::-;;:::i;58520:92::-;;;;;;;;;;;;;:::i;14227:94::-;;;;;;;;;;;;;:::i;55795:71::-;;;;;;;;;;-1:-1:-1;55795:71:0;;;;-1:-1:-1;;;;;55795:71:0;;;57290:167;;;;;;;;;;-1:-1:-1;57290:167:0;;;;;:::i;:::-;;:::i;59176:92::-;;;;;;;;;;;;;:::i;58412:100::-;;;;;;;;;;-1:-1:-1;58412:100:0;;;;;:::i;:::-;;:::i;58712:::-;;;;;;;;;;-1:-1:-1;58712:100:0;;;;;:::i;:::-;;:::i;13576:87::-;;;;;;;;;;-1:-1:-1;13622:7:0;13649:6;-1:-1:-1;;;;;13649:6:0;13576:87;;58620:86;;;;;;;;;;-1:-1:-1;58620:86:0;;;;;:::i;:::-;;:::i;59997:147::-;;;;;;;;;;-1:-1:-1;59997:147:0;;;;;:::i;:::-;;:::i;:::-;;;;16696:13:1;;-1:-1:-1;;;;;16692:39:1;16674:58;;16792:4;16780:17;;;16774:24;-1:-1:-1;;;;;16770:49:1;16748:20;;;16741:79;16878:17;;;16872:24;16865:32;16858:40;16836:20;;;16829:70;16662:2;16647:18;59997:147:0;16466:439:1;56033:504:0;;;;;;:::i;:::-;;:::i;58299:107::-;;;;;;;;;;-1:-1:-1;58299:107:0;;;;;:::i;:::-;;:::i;28980:104::-;;;;;;;;;;;;;:::i;59481:109::-;;;;;;;;;;-1:-1:-1;59481:109:0;;;;;:::i;:::-;;:::i;55589:33::-;;;;;;;;;;;;;;;;30590:279;;;;;;;;;;-1:-1:-1;30590:279:0;;;;;:::i;:::-;;:::i;55879:42::-;;;;;;;;;;-1:-1:-1;55879:42:0;;;;;:::i;:::-;;;;;;;;;;;;;;55301:40;;;;;;;;;;;;;;;;31668:342;;;;;;;;;;-1:-1:-1;31668:342:0;;;;;:::i;:::-;;:::i;56543:741::-;;;;;;:::i;:::-;;:::i;58818:114::-;;;;;;;;;;-1:-1:-1;58818:114:0;;;;;:::i;:::-;;:::i;57982:307::-;;;;;;;;;;-1:-1:-1;57982:307:0;;;;;:::i;:::-;;:::i;59274:96::-;;;;;;;;;;;;;:::i;55672:31::-;;;;;;;;;;;;;;;;59598:155;;;;;;;;;;-1:-1:-1;59598:155:0;;;;;:::i;:::-;;:::i;57463:124::-;;;;;;;;;;-1:-1:-1;57463:124:0;;;;;:::i;:::-;;:::i;55261:33::-;;;;;;;;;;;;;;;;30940:164;;;;;;;;;;-1:-1:-1;30940:164:0;;;;;:::i;:::-;-1:-1:-1;;;;;31061:25:0;;;31037:4;31061:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;;;;30940:164;14476:192;;;;;;;;;;-1:-1:-1;14476:192:0;;;;;:::i;:::-;;:::i;55436:34::-;;;;;;;;;;-1:-1:-1;55436:34:0;;;;;;;;25451:305;25553:4;-1:-1:-1;;;;;;25590:40:0;;-1:-1:-1;;;25590:40:0;;:105;;-1:-1:-1;;;;;;;25647:48:0;;-1:-1:-1;;;25647:48:0;25590:105;:158;;;-1:-1:-1;;;;;;;;;;15690:40:0;;;25712:36;25570:178;25451:305;-1:-1:-1;;25451:305:0:o;28811:100::-;28865:13;28898:5;28891:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;28811:100;:::o;30314:204::-;30382:7;30407:16;30415:7;30407;:16::i;:::-;30402:64;;30432:34;;-1:-1:-1;;;30432:34:0;;;;;;;;;;;30402:64;-1:-1:-1;30486:24:0;;;;:15;:24;;;;;;-1:-1:-1;;;;;30486:24:0;;30314:204::o;29877:371::-;29950:13;29966:24;29982:7;29966:15;:24::i;:::-;29950:40;;30011:5;-1:-1:-1;;;;;30005:11:0;:2;-1:-1:-1;;;;;30005:11:0;;30001:48;;;30025:24;;-1:-1:-1;;;30025:24:0;;;;;;;;;;;30001:48;796:10;-1:-1:-1;;;;;30066:21:0;;;;;;:63;;-1:-1:-1;30092:37:0;30109:5;796:10;30940:164;:::i;30092:37::-;30091:38;30066:63;30062:138;;;30153:35;;-1:-1:-1;;;30153:35:0;;;;;;;;;;;30062:138;30212:28;30221:2;30225:7;30234:5;30212:8;:28::i;:::-;29939:309;29877:371;;:::o;58940:228::-;13622:7;13649:6;-1:-1:-1;;;;;13649:6:0;796:10;13796:23;13788:68;;;;-1:-1:-1;;;13788:68:0;;;;;;;:::i;:::-;;;;;;;;;59027:9:::1;;59017:7;:19;59009:121;;;::::0;-1:-1:-1;;;59009:121:0;;10656:2:1;59009:121:0::1;::::0;::::1;10638:21:1::0;10695:2;10675:18;;;10668:30;10734:34;10714:18;;;10707:62;10805:34;10785:18;;;10778:62;10877:27;10856:19;;;10849:56;10922:19;;59009:121:0::1;10454:493:1::0;59009:121:0::1;59141:9;:19:::0;58940:228::o;31171:170::-;31305:28;31315:4;31321:2;31325:7;31305:9;:28::i;55553:29::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;59762:227::-;13622:7;13649:6;-1:-1:-1;;;;;13649:6:0;796:10;13796:23;13788:68;;;;-1:-1:-1;;;13788:68:0;;;;;;;:::i;:::-;59868:11:::1;::::0;59828:21:::1;::::0;-1:-1:-1;;;;;59868:11:0::1;59860:50;59906:3;59890:13;59828:21:::0;59901:2:::1;59890:13;:::i;:::-;:19;;;;:::i;:::-;59860:50;::::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;59927:46:::1;59969:3;59953:13;:8:::0;59964:2:::1;59953:13;:::i;:::-;:19;;;;:::i;:::-;59927:46;::::0;;::::1;::::0;;::::1;::::0;::::1;::::0;;;;;;::::1;;;;;;;;;;;;;::::0;::::1;;;;;;59801:188;59762:227::o:0;31412:185::-;31550:39;31567:4;31573:2;31577:7;31550:39;;;;;;;;;;;;:16;:39::i;28620:124::-;28684:7;28711:20;28723:7;28711:11;:20::i;:::-;:25;;28620:124;-1:-1:-1;;28620:124:0:o;25820:206::-;25884:7;-1:-1:-1;;;;;25908:19:0;;25904:60;;25936:28;;-1:-1:-1;;;25936:28:0;;;;;;;;;;;25904:60;-1:-1:-1;;;;;;25990:19:0;;;;;:12;:19;;;;;:27;-1:-1:-1;;;;;25990:27:0;;25820:206::o;58520:92::-;58564:13;58597:7;58590: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;57290:167::-;13622:7;13649:6;-1:-1:-1;;;;;13649:6:0;796:10;13796:23;13788:68;;;;-1:-1:-1;;;13788:68:0;;;;;;;:::i;:::-;57371:6:::1;57367:80;57387:8;:15;57383:1;:19;57367:80;;;57422:25;57432:8;57441:1;57432:11;;;;;;;;:::i;:::-;;;;;;;57445:1;57422:9;:25::i;:::-;57404:3:::0;::::1;::::0;::::1;:::i;:::-;;;;57367:80;;59176: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;:::-;59246:14:::1;::::0;;-1:-1:-1;;59228:32:0;::::1;59246:14;::::0;;::::1;59245:15;59228:32;::::0;;59176:92::o;58412:100::-;13622:7;13649:6;-1:-1:-1;;;;;13649:6:0;796:10;13796:23;13788:68;;;;-1:-1:-1;;;13788:68:0;;;;;;;:::i;:::-;58486:18;;::::1;::::0;:10:::1;::::0;:18:::1;::::0;::::1;::::0;::::1;:::i;58712:100::-:0;13622:7;13649:6;-1:-1:-1;;;;;13649:6:0;796:10;13796:23;13788:68;;;;-1:-1:-1;;;13788:68:0;;;;;;;:::i;:::-;58783:13:::1;:21:::0;58712:100::o;58620:86::-;13622:7;13649:6;-1:-1:-1;;;;;13649:6:0;796:10;13796:23;13788:68;;;;-1:-1:-1;;;13788:68:0;;;;;;;:::i;:::-;58684:5:::1;:14:::0;58620:86::o;59997:147::-;-1:-1:-1;;;;;;;;;;;;;;;;;;;;;;;;;60118:20:0;60130:7;60118:11;:20::i;56033:504::-;56115:1;56103:9;:13;:32;;;;;56133:2;56120:9;:15;;56103:32;56095:60;;;;-1:-1:-1;;;56095:60:0;;13027:2:1;56095:60:0;;;13009:21:1;13066:2;13046:18;;;13039:30;-1:-1:-1;;;13085:18:1;;;13078:45;13140:18;;56095:60:0;12825:339:1;56095:60:0;56202:9;;56190;56174:13;25344:12;;25328:13;;:28;;25108:271;56174:13;:25;;;;:::i;:::-;:37;56166:69;;;;-1:-1:-1;;;56166:69:0;;16320:2:1;56166:69:0;;;16302:21:1;16359:2;16339:18;;;16332:30;-1:-1:-1;;;16378:18:1;;;16371:49;16437:18;;56166:69:0;16118:343:1;56166:69:0;56275:9;56267:5;;:17;;;;:::i;:::-;56254:9;:30;56246:65;;;;-1:-1:-1;;;56246:65:0;;15612:2:1;56246:65:0;;;15594:21:1;15651:2;15631:18;;;15624:30;-1:-1:-1;;;15670:18:1;;;15663:52;15732:18;;56246:65:0;15410:346:1;56246:65:0;56372:13;;56359:9;56330:26;56345:10;56330:14;:26::i;:::-;:38;;;;:::i;:::-;:55;;56322:94;;;;-1:-1:-1;;;56322:94:0;;13371:2:1;56322:94:0;;;13353:21:1;13410:2;13390:18;;;13383:30;13449:28;13429:18;;;13422:56;13495:18;;56322:94:0;13169:350:1;56322:94:0;56435:14;;;;56427:55;;;;-1:-1:-1;;;56427:55:0;;15963:2:1;56427:55:0;;;15945:21:1;16002:2;15982:18;;;15975:30;16041;16021:18;;;16014:58;16089:18;;56427:55:0;15761:352:1;56427:55:0;56495:32;56505:10;56517:9;56495;:32::i;:::-;56033:504;:::o;58299:107::-;13622:7;13649:6;-1:-1:-1;;;;;13649:6:0;796:10;13796:23;13788:68;;;;-1:-1:-1;;;13788:68:0;;;;;;;:::i;:::-;58377:21;;::::1;::::0;:7:::1;::::0;:21:::1;::::0;::::1;::::0;::::1;:::i;28980:104::-:0;29036:13;29069:7;29062:14;;;;;:::i;59481:109::-;59541:7;59564:20;59578:5;59564:13;:20::i;30590:279::-;-1:-1:-1;;;;;30681:24:0;;796:10;30681:24;30677:54;;;30714:17;;-1:-1:-1;;;30714:17:0;;;;;;;;;;;30677:54;796:10;30744:32;;;;:18;:32;;;;;;;;-1:-1:-1;;;;;30744:42:0;;;;;;;;;;;;:53;;-1:-1:-1;;30744:53:0;;;;;;;;;;30813:48;;8675:41:1;;;30744:42:0;;796:10;30813:48;;8648:18:1;30813:48:0;;;;;;;30590:279;;:::o;31668:342::-;31835:28;31845:4;31851:2;31855:7;31835:9;:28::i;:::-;31879:48;31902:4;31908:2;31912:7;31921:5;31879:22;:48::i;:::-;31874:129;;31951:40;;-1:-1:-1;;;31951:40:0;;;;;;;;;;;31874:129;31668:342;;;;:::o;56543:741::-;56665:1;56653:9;:13;:32;;;;;56683:2;56670:9;:15;;56653:32;56645:60;;;;-1:-1:-1;;;56645:60:0;;13027:2:1;56645:60:0;;;13009:21:1;13066:2;13046:18;;;13039:30;-1:-1:-1;;;13085:18:1;;;13078:45;13140:18;;56645:60:0;12825:339:1;56645:60:0;56752:9;;56740;56724:13;25344:12;;25328:13;;:28;;25108:271;56724:13;:25;;;;:::i;:::-;:37;56716:69;;;;-1:-1:-1;;;56716:69:0;;16320:2:1;56716:69:0;;;16302:21:1;16359:2;16339:18;;;16332:30;-1:-1:-1;;;16378:18:1;;;16371:49;16437:18;;56716:69:0;16118:343:1;56716:69:0;56828:9;56817:8;;:20;;;;:::i;:::-;56804:9;:33;56796:68;;;;-1:-1:-1;;;56796:68:0;;15612:2:1;56796:68:0;;;15594:21:1;15651:2;15631:18;;;15624:30;-1:-1:-1;;;15670:18:1;;;15663:52;15732:18;;56796:68:0;15410:346:1;56796:68:0;56925:20;;56912:9;56883:26;56898:10;56883:14;:26::i;:::-;:38;;;;:::i;:::-;:62;;56875:101;;;;-1:-1:-1;;;56875:101:0;;13371:2:1;56875:101:0;;;13353:21:1;13410:2;13390:18;;;13383:30;13449:28;13429:18;;;13422:56;13495:18;;56875:101:0;13169:350:1;56875:101:0;56995:15;;;;;;;56987:57;;;;-1:-1:-1;;;56987:57:0;;12669:2:1;56987:57:0;;;12651:21:1;12708:2;12688:18;;;12681:30;12747:31;12727:18;;;12720:59;12796:18;;56987:57:0;12467:353:1;56987:57:0;57086:15;;-1:-1:-1;;;;;57086:15:0;57063:19;57069:2;57072:9;57063:5;:19::i;:::-;-1:-1:-1;;;;;57063:38:0;;57055:75;;;;-1:-1:-1;;;57055:75:0;;15259:2:1;57055:75:0;;;15241:21:1;15298:2;15278:18;;;15271:30;15337:26;15317:18;;;15310:54;15381:18;;57055:75:0;15057:348:1;57055:75:0;57149:14;;;;:10;:14;;;;;;:19;57141:59;;;;-1:-1:-1;;;57141:59:0;;14903:2:1;57141:59:0;;;14885:21:1;14942:2;14922:18;;;14915:30;14981:29;14961:18;;;14954:57;15028:18;;57141:59:0;14701:351:1;57141:59:0;57213:32;57223:10;57235:9;57213;:32::i;:::-;-1:-1:-1;57256:14:0;;;;:10;:14;;;;;57273:1;57256:18;;-1:-1:-1;56543:741:0:o;58818:114::-;13622:7;13649:6;-1:-1:-1;;;;;13649:6:0;796:10;13796:23;13788:68;;;;-1:-1:-1;;;13788:68:0;;;;;;;:::i;:::-;58896:20:::1;:28:::0;58818:114::o;57982:307::-;58056:13;58104:17;58112:8;58104:7;:17::i;:::-;58082:111;;;;-1:-1:-1;;;58082:111:0;;14129:2:1;58082:111:0;;;14111:21:1;14168:2;14148:18;;;14141:30;14207:34;14187:18;;;14180:62;-1:-1:-1;;;14258:18:1;;;14251:42;14310:19;;58082:111:0;13927:408:1;58082:111:0;58237:7;58246:19;:8;:17;:19::i;:::-;58267:10;58220:58;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;58206:73;;57982:307;;;:::o;59274:96::-;13622:7;13649:6;-1:-1:-1;;;;;13649:6:0;796:10;13796:23;13788:68;;;;-1:-1:-1;;;13788:68:0;;;;;;;:::i;:::-;59347:15:::1;::::0;;-1:-1:-1;;59328:34:0;::::1;59347:15;::::0;;;::::1;;;59346:16;59328:34:::0;;::::1;;::::0;;59274:96::o;59598:155::-;59683:11;;-1:-1:-1;;;;;59683:11:0;59669:10;:25;59661:54;;;;-1:-1:-1;;;59661:54:0;;11921:2:1;59661:54:0;;;11903:21:1;11960:2;11940:18;;;11933:30;-1:-1:-1;;;11979:18:1;;;11972:46;12035:18;;59661:54:0;11719:340:1;59661:54:0;59726:11;:19;;-1:-1:-1;;;;;;59726:19:0;-1:-1:-1;;;;;59726:19:0;;;;;;;;;;59598:155::o;57463:124::-;57531:7;57557:22;57565:2;57569:9;57557:7;:22::i;:::-;57550:29;57463:124;-1:-1:-1;;;57463: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;;11514:2:1;14557:73:0::1;::::0;::::1;11496:21:1::0;11553:2;11533:18;;;11526:30;11592:34;11572:18;;;11565:62;-1:-1:-1;;;11643:18:1;;;11636:36;11689:19;;14557:73:0::1;11312:402:1::0;14557:73:0::1;14641:19;14651:8;14641:9;:19::i;32265:144::-:0;32322:4;32356:13;;32346:7;:23;:55;;;;-1:-1:-1;;32374:20:0;;;;:11;:20;;;;;:27;-1:-1:-1;;;32374:27:0;;;;32373:28;;32265:144::o;39471:196::-;39586:24;;;;:15;:24;;;;;;:29;;-1:-1:-1;;;;;;39586:29:0;-1:-1:-1;;;;;39586:29:0;;;;;;;;;39631:28;;39586:24;;39631:28;;;;;;;39471:196;;;:::o;34972:2112::-;35087:35;35125:20;35137:7;35125:11;:20::i;:::-;35200:18;;35087:58;;-1:-1:-1;35158:22:0;;-1:-1:-1;;;;;35184:34:0;796:10;-1:-1:-1;;;;;35184:34:0;;:101;;;-1:-1:-1;35252:18:0;;35235:50;;796:10;30940:164;:::i;35235:50::-;35184:154;;;-1:-1:-1;796:10:0;35302:20;35314:7;35302:11;:20::i;:::-;-1:-1:-1;;;;;35302:36:0;;35184:154;35158:181;;35357:17;35352:66;;35383:35;;-1:-1:-1;;;35383:35:0;;;;;;;;;;;35352:66;35455:4;-1:-1:-1;;;;;35433:26:0;:13;:18;;;-1:-1:-1;;;;;35433:26:0;;35429:67;;35468:28;;-1:-1:-1;;;35468:28:0;;;;;;;;;;;35429:67;-1:-1:-1;;;;;35511:16:0;;35507:52;;35536:23;;-1:-1:-1;;;35536:23:0;;;;;;;;;;;35507:52;35680:49;35697:1;35701:7;35710:13;:18;;;35680:8;:49::i;:::-;-1:-1:-1;;;;;36025:18:0;;;;;;;:12;:18;;;;;;;;:31;;-1:-1:-1;;36025:31:0;;;-1:-1:-1;;;;;36025:31:0;;;-1:-1:-1;;36025:31:0;;;;;;;36071:16;;;;;;;;;:29;;;;;;;;-1:-1:-1;36071:29:0;;;;;;;;;;;36117:20;;;:11;:20;;;;;;:30;;-1:-1:-1;;;;;;36162:61:0;;;;-1:-1:-1;;;36207:15:0;36162:61;;;;;;;;;;;36497:11;;;36527:24;;;;;:29;36497:11;;36527:29;36523:445;;36752:13;;36738:11;:27;36734:219;;;36822:18;;;36790:24;;;:11;:24;;;;;;;;:50;;36905:28;;;;-1:-1:-1;;;;;36863:70:0;-1:-1:-1;;;36863:70:0;-1:-1:-1;;;;;;36863:70:0;;;-1:-1:-1;;;;;36790:50:0;;;36863:70;;;;;;;36734:219;36000:979;37015:7;37011:2;-1:-1:-1;;;;;36996:27:0;37005:4;-1:-1:-1;;;;;36996:27:0;;;;;;;;;;;37034:42;35076:2008;;34972:2112;;;:::o;27475:1083::-;-1:-1:-1;;;;;;;;;;;;;;;;;;;;;;;;;27641:13:0;;27585:7;;27634:20;;27630:861;;;27675:31;27709:17;;;:11;:17;;;;;;;;;27675:51;;;;;;;;;-1:-1:-1;;;;;27675:51:0;;;;-1:-1:-1;;;27675:51:0;;-1:-1:-1;;;;;27675:51:0;;;;;;;;-1:-1:-1;;;27675:51:0;;;;;;;;;;;;;;27745:731;;27795:14;;-1:-1:-1;;;;;27795:28:0;;27791:101;;27859:9;27475:1083;-1:-1:-1;;;27475:1083:0:o;27791:101::-;-1:-1:-1;;;28236:6:0;28281:17;;;;:11;:17;;;;;;;;;28269:29;;;;;;;;;-1:-1:-1;;;;;28269:29:0;;;;;-1:-1:-1;;;28269:29:0;;-1:-1:-1;;;;;28269:29:0;;;;;;;;-1:-1:-1;;;28269:29:0;;;;;;;;;;;;;28329:28;28325:109;;28397:9;27475:1083;-1:-1:-1;;;27475:1083:0:o;28325:109::-;28196:261;;;27656:835;27630:861;28519:31;;-1:-1:-1;;;28519: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;32417:104::-;32486:27;32496:2;32500:8;32486:27;;;;;;;;;;;;:9;:27::i;26108:207::-;26169:7;-1:-1:-1;;;;;26193:19:0;;26189:59;;26221:27;;-1:-1:-1;;;26221:27:0;;;;;;;;;;;26189:59;-1:-1:-1;;;;;;26274:19:0;;;;;:12;:19;;;;;:32;-1:-1:-1;;;26274:32:0;;-1:-1:-1;;;;;26274:32:0;;26108:207::o;40232:790::-;40387:4;-1:-1:-1;;;;;40408:13:0;;3969:20;4017:8;40404:611;;40444:72;;-1:-1:-1;;;40444:72:0;;-1:-1:-1;;;;;40444:36:0;;;;;:72;;796:10;;40495:4;;40501:7;;40510:5;;40444:72;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;40444:72:0;;;;;;;;-1:-1:-1;;40444:72:0;;;;;;;;;;;;:::i;:::-;;;40440:520;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;40690:13:0;;40686:259;;40740:40;;-1:-1:-1;;;40740:40:0;;;;;;;;;;;40686:259;40895:6;40889:13;40880:6;40876:2;40872:15;40865:38;40440:520;-1:-1:-1;;;;;;40567:55:0;-1:-1:-1;;;40567:55:0;;-1:-1:-1;40560:62:0;;40404:611;-1:-1:-1;40999:4:0;40404:611;40232: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;;57595:175;57667:7;57686:14;57703:9;57709:2;57703:5;:9::i;:::-;57686:26;;57730:32;57744:6;57752:9;57730:13;:32::i;32884:163::-;33007:32;33013:2;33017:8;33027:5;33034:4;33007:5;:32::i;57778:196::-;57877:87;;;57902:34;57877:87;;;9395:25:1;9436:18;;;9429:34;;;57824:7:0;;57850:116;;9368:18:1;;57877:87:0;;;;;;;;;;;;57867:98;;;;;;57850:16;:116::i;46680:231::-;46758:7;46779:17;46798:18;46820:27;46831:4;46837:9;46820:10;:27::i;:::-;46778:69;;;;46858:18;46870:5;46858:11;:18::i;:::-;-1:-1:-1;46894:9:0;46680:231;-1:-1:-1;;;46680:231:0:o;33306:1412::-;33468:13;;-1:-1:-1;;;;;33496:16:0;;33492:48;;33521:19;;-1:-1:-1;;;33521:19:0;;;;;;;;;;;33492:48;33555:13;33551:44;;33577:18;;-1:-1:-1;;;33577:18:0;;;;;;;;;;;33551:44;-1:-1:-1;;;;;33946:16:0;;;;;;:12;:16;;;;;;;;:44;;-1:-1:-1;;34005:49:0;;-1:-1:-1;;;;;33946:44:0;;;;;;;34005:49;;;-1:-1:-1;;;;;33946:44:0;;;;;;34005:49;;;;;;;;;;;;;;;;34071:25;;;:11;:25;;;;;:35;;-1:-1:-1;;;;;;34121:66:0;;;;-1:-1:-1;;;34171:15:0;34121:66;;;;;;;;;;;34071:25;;34256:328;34276:8;34272:1;:12;34256:328;;;34315:38;;34340:12;;-1:-1:-1;;;;;34315:38:0;;;34332:1;;34315:38;;34332:1;;34315:38;34376:4;:68;;;;;34385:59;34416:1;34420:2;34424:12;34438:5;34385:22;:59::i;:::-;34384:60;34376:68;34372:164;;;34476:40;;-1:-1:-1;;;34476:40:0;;;;;;;;;;;34372:164;34554:14;;;;;34286:3;34256:328;;;-1:-1:-1;34600:13:0;:28;34650:60;31668:342;54913:167;54990:7;55017:55;55039:20;:18;:20::i;:::-;55061:10;51724:57;;-1:-1:-1;;;51724:57:0;;;7695:27:1;7738:11;;;7731:27;;;7774:12;;;7767:28;;;51687:7:0;;7811:12:1;;51724:57:0;;;;;;;;;;;;51714:68;;;;;;51707:75;;51594:196;;;;;44570:1308;44651:7;44660:12;44885:9;:16;44905:2;44885:22;44881:990;;;45181:4;45166:20;;45160:27;45231:4;45216:20;;45210:27;45289:4;45274:20;;45268:27;44924:9;45260:36;45332:25;45343:4;45260:36;45160:27;45210;45332:10;:25::i;:::-;45325:32;;;;;;;;;44881:990;45379:9;:16;45399:2;45379:22;45375:496;;;45654:4;45639:20;;45633:27;45705:4;45690:20;;45684:27;45747:23;45758:4;45633:27;45684;45747:10;:23::i;:::-;45740:30;;;;;;;;45375:496;-1:-1:-1;45819:1:0;;-1:-1:-1;45823:35:0;45375:496;44570:1308;;;;;:::o;42841:643::-;42919:20;42910:5;:29;;;;;;;;:::i;:::-;;42906:571;;;42841:643;:::o;42906:571::-;43017:29;43008:5;:38;;;;;;;;:::i;:::-;;43004:473;;;43063:34;;-1:-1:-1;;;43063:34:0;;10303:2:1;43063:34:0;;;10285:21:1;10342:2;10322:18;;;10315:30;10381:26;10361:18;;;10354:54;10425:18;;43063:34:0;10101:348:1;43004:473:0;43128:35;43119:5;:44;;;;;;;;:::i;:::-;;43115:362;;;43180:41;;-1:-1:-1;;;43180:41:0;;11154:2:1;43180:41:0;;;11136:21:1;11193:2;11173:18;;;11166:30;11232:33;11212:18;;;11205:61;11283:18;;43180:41:0;10952:355:1;43115:362:0;43252:30;43243:5;:39;;;;;;;;:::i;:::-;;43239:238;;;43299:44;;-1:-1:-1;;;43299:44:0;;12266:2:1;43299:44:0;;;12248:21:1;12305:2;12285:18;;;12278:30;12344:34;12324:18;;;12317:62;-1:-1:-1;;;12395:18:1;;;12388:32;12437:19;;43299:44:0;12064:398:1;43239:238:0;43374:30;43365:5;:39;;;;;;;;:::i;:::-;;43361:116;;;43421:44;;-1:-1:-1;;;43421:44:0;;13726:2:1;43421:44:0;;;13708:21:1;13765:2;13745:18;;;13738:30;13804:34;13784:18;;;13777:62;-1:-1:-1;;;13855:18:1;;;13848:32;13897:19;;43421:44:0;13524:398:1;53686:314:0;53739:7;53771:4;-1:-1:-1;;;;;53780:12:0;53763:29;;:66;;;;;53813:16;53796:13;:33;53763:66;53759:234;;;-1:-1:-1;53853:24:0;;53686:314::o;53759:234::-;-1:-1:-1;54189:73:0;;;53939:10;54189:73;;;;8986:25:1;;;;53951:12:0;9027:18:1;;;9020:34;53965:15:0;9070:18:1;;;9063:34;54233:13:0;9113:18:1;;;9106:34;54256:4:0;9156:19:1;;;;9149:61;;;;54189:73:0;;;;;;;;;;8958:19:1;;;;54189:73:0;;;54179:84;;;;;;53686:314::o;48132:1632::-;48263:7;;49197:66;49184:79;;49180:163;;;-1:-1:-1;49296:1:0;;-1:-1:-1;49300:30:0;49280:51;;49180:163;49357:1;:7;;49362:2;49357:7;;:18;;;;;49368:1;:7;;49373:2;49368:7;;49357:18;49353:102;;;-1:-1:-1;49408:1:0;;-1:-1:-1;49412:30:0;49392:51;;49353:102;49569:24;;;49552:14;49569:24;;;;;;;;;9701:25:1;;;9774:4;9762:17;;9742:18;;;9735:45;;;;9796:18;;;9789:34;;;9839:18;;;9832:34;;;49569:24:0;;9673:19:1;;49569:24:0;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;49569:24:0;;-1:-1:-1;;49569:24:0;;;-1:-1:-1;;;;;;;49608:20:0;;49604:103;;49661:1;49665:29;49645:50;;;;;;;49604:103;49727:6;-1:-1:-1;49735:20:0;;-1:-1:-1;48132:1632:0;;;;;;;;:::o;47174:344::-;47288:7;;-1:-1:-1;;;;;47334:80:0;;47288:7;47441:25;47457:3;47442:18;;;47464:2;47441:25;:::i;:::-;47425:42;;47485:25;47496:4;47502:1;47505;47508;47485:10;:25::i;:::-;47478:32;;;;;;47174: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:257::-;5777:3;5815:5;5809:12;5842:6;5837:3;5830:19;5858:63;5914:6;5907:4;5902:3;5898:14;5891:4;5884:5;5880:16;5858:63;:::i;:::-;5975:2;5954:15;-1:-1:-1;;5950:29:1;5941:39;;;;5982:4;5937:50;;5736:257;-1:-1:-1;;5736:257:1:o;5998:973::-;6083:12;;6048:3;;6138:1;6158:18;;;;6211;;;;6238:61;;6292:4;6284:6;6280:17;6270:27;;6238:61;6318:2;6366;6358:6;6355:14;6335:18;6332:38;6329:161;;;6412:10;6407:3;6403:20;6400:1;6393:31;6447:4;6444:1;6437:15;6475:4;6472:1;6465:15;6329:161;6506:18;6533:104;;;;6651:1;6646:319;;;;6499:466;;6533:104;-1:-1:-1;;6566:24:1;;6554:37;;6611:16;;;;-1:-1:-1;6533:104:1;;6646:319;17445:1;17438:14;;;17482:4;17469:18;;6740:1;6754:165;6768:6;6765:1;6762:13;6754:165;;;6846:14;;6833:11;;;6826:35;6889:16;;;;6783:10;;6754:165;;;6758:3;;6948:6;6943:3;6939:16;6932:23;;6499:466;;;;;;;5998:973;;;;:::o;6976:456::-;7197:3;7225:38;7259:3;7251:6;7225:38;:::i;:::-;7292:6;7286:13;7308:52;7353:6;7349:2;7342:4;7334:6;7330:17;7308:52;:::i;:::-;7376:50;7418:6;7414:2;7410:15;7402:6;7376:50;:::i;:::-;7369:57;6976:456;-1:-1:-1;;;;;;;6976:456:1:o;8042:488::-;-1:-1:-1;;;;;8311:15:1;;;8293:34;;8363:15;;8358:2;8343:18;;8336:43;8410:2;8395:18;;8388:34;;;8458:3;8453:2;8438:18;;8431:31;;;8236:4;;8479:45;;8504:19;;8496:6;8479:45;:::i;:::-;8471:53;8042:488;-1:-1:-1;;;;;;8042:488:1:o;9877:219::-;10026:2;10015:9;10008:21;9989:4;10046:44;10086:2;10075:9;10071:18;10063:6;10046:44;:::i;14340:356::-;14542:2;14524:21;;;14561:18;;;14554:30;14620:34;14615:2;14600:18;;14593:62;14687:2;14672:18;;14340:356::o;17092:275::-;17163:2;17157:9;17228:2;17209:13;;-1:-1:-1;;17205:27:1;17193:40;;-1:-1:-1;;;;;17248:34:1;;17284:22;;;17245:62;17242:88;;;17310:18;;:::i;:::-;17346:2;17339:22;17092:275;;-1:-1:-1;17092:275:1:o;17498:128::-;17538:3;17569:1;17565:6;17562:1;17559:13;17556:39;;;17575:18;;:::i;:::-;-1:-1:-1;17611:9:1;;17498:128::o;17631:120::-;17671:1;17697;17687:35;;17702:18;;:::i;:::-;-1:-1:-1;17736:9:1;;17631:120::o;17756:168::-;17796:7;17862:1;17858;17854:6;17850:14;17847:1;17844:21;17839:1;17832:9;17825:17;17821:45;17818:71;;;17869:18;;:::i;:::-;-1:-1:-1;17909:9:1;;17756:168::o;17929:125::-;17969:4;17997:1;17994;17991:8;17988:34;;;18002:18;;:::i;:::-;-1:-1:-1;18039:9:1;;17929:125::o;18059:258::-;18131:1;18141:113;18155:6;18152:1;18149:13;18141:113;;;18231:11;;;18225:18;18212:11;;;18205:39;18177:2;18170:10;18141:113;;;18272:6;18269:1;18266:13;18263:48;;;-1:-1:-1;;18307:1:1;18289:16;;18282:27;18059:258::o;18322:380::-;18401:1;18397:12;;;;18444;;;18465:61;;18519:4;18511:6;18507:17;18497:27;;18465:61;18572:2;18564:6;18561:14;18541:18;18538:38;18535:161;;;18618:10;18613:3;18609:20;18606:1;18599:31;18653:4;18650:1;18643:15;18681:4;18678:1;18671:15;18535:161;;18322:380;;;:::o;18707:135::-;18746:3;-1:-1:-1;;18767:17:1;;18764:43;;;18787:18;;:::i;:::-;-1:-1:-1;18834:1:1;18823:13;;18707:135::o;18847:112::-;18879:1;18905;18895:35;;18910:18;;:::i;:::-;-1:-1:-1;18944:9:1;;18847:112::o;18964:127::-;19025:10;19020:3;19016:20;19013:1;19006:31;19056:4;19053:1;19046:15;19080:4;19077:1;19070:15;19096:127;19157:10;19152:3;19148:20;19145:1;19138:31;19188:4;19185:1;19178:15;19212:4;19209:1;19202:15;19228:127;19289:10;19284:3;19280:20;19277:1;19270:31;19320:4;19317:1;19310:15;19344:4;19341:1;19334:15;19360:127;19421:10;19416:3;19412:20;19409:1;19402:31;19452:4;19449:1;19442:15;19476:4;19473:1;19466:15;19492:127;19553:10;19548:3;19544:20;19541:1;19534:31;19584:4;19581:1;19574:15;19608:4;19605:1;19598:15;19624:131;-1:-1:-1;;;;;;19698:32:1;;19688:43;;19678:71;;19745:1;19742;19735:12

Swarm Source

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