ETH Price: $2,667.80 (-2.78%)

Lil Hissing Cats (HISS)
 

Overview

TokenID

11

Total Transfers

-

Market

Onchain Market Cap

$0.00

Circulating Supply Market Cap

-
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:
LilHissingCats

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 2021-10-02
*/

// SPDX-License-Identifier: MIT

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



pragma solidity ^0.8.0;

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

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


// File: @openzeppelin/contracts/security/Pausable.sol



pragma solidity ^0.8.0;





/**
 * @dev Contract module which allows children to implement an emergency stop
 * mechanism that can be triggered by an authorized account.
 *
 * This module is used through inheritance. It will make available the
 * modifiers `whenNotPaused` and `whenPaused`, which can be applied to
 * the functions of your contract. Note that they will not be pausable by
 * simply including this module, only once the modifiers are put in place.
 */
abstract contract Pausable is Context {
    /**
     * @dev Emitted when the pause is triggered by `account`.
     */
    event Paused(address account);

    /**
     * @dev Emitted when the pause is lifted by `account`.
     */
    event Unpaused(address account);

    bool private _paused;

    /**
     * @dev Initializes the contract in unpaused state.
     */
    constructor() {
        _paused = false;
    }

    /**
     * @dev Returns true if the contract is paused, and false otherwise.
     */
    function paused() public view virtual returns (bool) {
        return _paused;
    }

    /**
     * @dev Modifier to make a function callable only when the contract is not paused.
     *
     * Requirements:
     *
     * - The contract must not be paused.
     */
    modifier whenNotPaused() {
        require(!paused(), "Pausable: paused");
        _;
    }

    /**
     * @dev Modifier to make a function callable only when the contract is paused.
     *
     * Requirements:
     *
     * - The contract must be paused.
     */
    modifier whenPaused() {
        require(paused(), "Pausable: not paused");
        _;
    }

    /**
     * @dev Triggers stopped state.
     *
     * Requirements:
     *
     * - The contract must not be paused.
     */
    function _pause() internal virtual whenNotPaused {
        _paused = true;
        emit Paused(_msgSender());
    }

    /**
     * @dev Returns to normal state.
     *
     * Requirements:
     *
     * - The contract must be paused.
     */
    function _unpause() internal virtual whenPaused {
        _paused = false;
        emit Unpaused(_msgSender());
    }
}


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



pragma solidity ^0.8.0;

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

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

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

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

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

// File: @openzeppelin/contracts/utils/math/SafeMath.sol



pragma solidity ^0.8.0;

// CAUTION
// This version of SafeMath should only be used with Solidity 0.8 or later,
// because it relies on the compiler's built in overflow checks.

/**
 * @dev Wrappers over Solidity's arithmetic operations.
 *
 * NOTE: `SafeMath` is no longer needed starting with Solidity 0.8. The compiler
 * now has built in overflow checking.
 */
library SafeMath {
    /**
     * @dev Returns the addition of two unsigned integers, with an overflow flag.
     *
     * _Available since v3.4._
     */
    function tryAdd(uint256 a, uint256 b) internal pure returns (bool, uint256) {
        unchecked {
            uint256 c = a + b;
            if (c < a) return (false, 0);
            return (true, c);
        }
    }

    /**
     * @dev Returns the substraction of two unsigned integers, with an overflow flag.
     *
     * _Available since v3.4._
     */
    function trySub(uint256 a, uint256 b) internal pure returns (bool, uint256) {
        unchecked {
            if (b > a) return (false, 0);
            return (true, a - b);
        }
    }

    /**
     * @dev Returns the multiplication of two unsigned integers, with an overflow flag.
     *
     * _Available since v3.4._
     */
    function tryMul(uint256 a, uint256 b) internal pure returns (bool, uint256) {
        unchecked {
            // Gas optimization: this is cheaper than requiring 'a' not being zero, but the
            // benefit is lost if 'b' is also tested.
            // See: https://github.com/OpenZeppelin/openzeppelin-contracts/pull/522
            if (a == 0) return (true, 0);
            uint256 c = a * b;
            if (c / a != b) return (false, 0);
            return (true, c);
        }
    }

    /**
     * @dev Returns the division of two unsigned integers, with a division by zero flag.
     *
     * _Available since v3.4._
     */
    function tryDiv(uint256 a, uint256 b) internal pure returns (bool, uint256) {
        unchecked {
            if (b == 0) return (false, 0);
            return (true, a / b);
        }
    }

    /**
     * @dev Returns the remainder of dividing two unsigned integers, with a division by zero flag.
     *
     * _Available since v3.4._
     */
    function tryMod(uint256 a, uint256 b) internal pure returns (bool, uint256) {
        unchecked {
            if (b == 0) return (false, 0);
            return (true, a % b);
        }
    }

    /**
     * @dev Returns the addition of two unsigned integers, reverting on
     * overflow.
     *
     * Counterpart to Solidity's `+` operator.
     *
     * Requirements:
     *
     * - Addition cannot overflow.
     */
    function add(uint256 a, uint256 b) internal pure returns (uint256) {
        return a + b;
    }

    /**
     * @dev Returns the subtraction of two unsigned integers, reverting on
     * overflow (when the result is negative).
     *
     * Counterpart to Solidity's `-` operator.
     *
     * Requirements:
     *
     * - Subtraction cannot overflow.
     */
    function sub(uint256 a, uint256 b) internal pure returns (uint256) {
        return a - b;
    }

    /**
     * @dev Returns the multiplication of two unsigned integers, reverting on
     * overflow.
     *
     * Counterpart to Solidity's `*` operator.
     *
     * Requirements:
     *
     * - Multiplication cannot overflow.
     */
    function mul(uint256 a, uint256 b) internal pure returns (uint256) {
        return a * b;
    }

    /**
     * @dev Returns the integer division of two unsigned integers, reverting on
     * division by zero. The result is rounded towards zero.
     *
     * Counterpart to Solidity's `/` operator.
     *
     * Requirements:
     *
     * - The divisor cannot be zero.
     */
    function div(uint256 a, uint256 b) internal pure returns (uint256) {
        return a / b;
    }

    /**
     * @dev Returns the remainder of dividing two unsigned integers. (unsigned integer modulo),
     * reverting when dividing by zero.
     *
     * Counterpart to Solidity's `%` operator. This function uses a `revert`
     * opcode (which leaves remaining gas untouched) while Solidity uses an
     * invalid opcode to revert (consuming all remaining gas).
     *
     * Requirements:
     *
     * - The divisor cannot be zero.
     */
    function mod(uint256 a, uint256 b) internal pure returns (uint256) {
        return a % b;
    }

    /**
     * @dev Returns the subtraction of two unsigned integers, reverting with custom message on
     * overflow (when the result is negative).
     *
     * CAUTION: This function is deprecated because it requires allocating memory for the error
     * message unnecessarily. For custom revert reasons use {trySub}.
     *
     * Counterpart to Solidity's `-` operator.
     *
     * Requirements:
     *
     * - Subtraction cannot overflow.
     */
    function sub(
        uint256 a,
        uint256 b,
        string memory errorMessage
    ) internal pure returns (uint256) {
        unchecked {
            require(b <= a, errorMessage);
            return a - b;
        }
    }

    /**
     * @dev Returns the integer division of two unsigned integers, reverting with custom message on
     * division by zero. The result is rounded towards zero.
     *
     * Counterpart to Solidity's `/` operator. Note: this function uses a
     * `revert` opcode (which leaves remaining gas untouched) while Solidity
     * uses an invalid opcode to revert (consuming all remaining gas).
     *
     * Requirements:
     *
     * - The divisor cannot be zero.
     */
    function div(
        uint256 a,
        uint256 b,
        string memory errorMessage
    ) internal pure returns (uint256) {
        unchecked {
            require(b > 0, errorMessage);
            return a / b;
        }
    }

    /**
     * @dev Returns the remainder of dividing two unsigned integers. (unsigned integer modulo),
     * reverting with custom message when dividing by zero.
     *
     * CAUTION: This function is deprecated because it requires allocating memory for the error
     * message unnecessarily. For custom revert reasons use {tryMod}.
     *
     * Counterpart to Solidity's `%` operator. This function uses a `revert`
     * opcode (which leaves remaining gas untouched) while Solidity uses an
     * invalid opcode to revert (consuming all remaining gas).
     *
     * Requirements:
     *
     * - The divisor cannot be zero.
     */
    function mod(
        uint256 a,
        uint256 b,
        string memory errorMessage
    ) internal pure returns (uint256) {
        unchecked {
            require(b > 0, errorMessage);
            return a % b;
        }
    }
}

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



pragma solidity ^0.8.0;


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

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

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

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

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

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

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

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






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



pragma solidity ^0.8.0;

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

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

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

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

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


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



pragma solidity ^0.8.0;

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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


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



pragma solidity ^0.8.0;

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

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



pragma solidity ^0.8.0;


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

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

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

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

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

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

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

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

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

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

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

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


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



pragma solidity ^0.8.0;


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



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



pragma solidity ^0.8.0;


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

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

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


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



pragma solidity ^0.8.0;


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

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

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


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



pragma solidity ^0.8.0;

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

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



pragma solidity ^0.8.0;








/**
 * @dev Implementation of https://eips.ethereum.org/EIPS/eip-721[ERC721] Non-Fungible Token Standard, including
 * the Metadata extension, but not including the Enumerable extension, which is available separately as
 * {ERC721Enumerable}.
 */
contract ERC721 is Context, ERC165, IERC721, IERC721Metadata {
    using Address for address;
    using Strings for uint256;

    // Token name
    string private _name;

    // Token symbol
    string private _symbol;

    // Mapping from token ID to owner address
    mapping(uint256 => address) private _owners;

    // Mapping owner address to token count
    mapping(address => uint256) private _balances;

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

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

    /**
     * @dev Initializes the contract by setting a `name` and a `symbol` to the token collection.
     */
    constructor(string memory name_, string memory symbol_) {
        _name = name_;
        _symbol = symbol_;
    }

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

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

    /**
     * @dev See {IERC721-ownerOf}.
     */
    function ownerOf(uint256 tokenId) public view virtual override returns (address) {
        address owner = _owners[tokenId];
        require(owner != address(0), "ERC721: owner query for nonexistent token");
        return owner;
    }

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

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

    /**
     * @dev See {IERC721Metadata-tokenURI}.
     */
    function tokenURI(uint256 tokenId) public view virtual override returns (string memory) {
        require(_exists(tokenId), "ERC721Metadata: URI query for nonexistent token");

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

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

    /**
     * @dev See {IERC721-approve}.
     */
    function approve(address to, uint256 tokenId) public virtual override {
        address owner = ERC721.ownerOf(tokenId);
        require(to != owner, "ERC721: approval to current owner");

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

        _approve(to, tokenId);
    }

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

        return _tokenApprovals[tokenId];
    }

    /**
     * @dev See {IERC721-setApprovalForAll}.
     */
    function setApprovalForAll(address operator, bool approved) public virtual override {
        require(operator != _msgSender(), "ERC721: approve to caller");

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

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

    /**
     * @dev See {IERC721-transferFrom}.
     */
    function transferFrom(
        address from,
        address to,
        uint256 tokenId
    ) public virtual override {
        //solhint-disable-next-line max-line-length
        require(_isApprovedOrOwner(_msgSender(), tokenId), "ERC721: transfer caller is not owner nor approved");

        _transfer(from, to, tokenId);
    }

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

    /**
     * @dev See {IERC721-safeTransferFrom}.
     */
    function safeTransferFrom(
        address from,
        address to,
        uint256 tokenId,
        bytes memory _data
    ) public virtual override {
        require(_isApprovedOrOwner(_msgSender(), tokenId), "ERC721: transfer caller is not owner nor approved");
        _safeTransfer(from, to, tokenId, _data);
    }

    /**
     * @dev Safely transfers `tokenId` token from `from` to `to`, checking first that contract recipients
     * are aware of the ERC721 protocol to prevent tokens from being forever locked.
     *
     * `_data` is additional data, it has no specified format and it is sent in call to `to`.
     *
     * This internal function is equivalent to {safeTransferFrom}, and can be used to e.g.
     * implement alternative mechanisms to perform token transfer, such as signature-based.
     *
     * Requirements:
     *
     * - `from` cannot be the zero address.
     * - `to` cannot be the zero address.
     * - `tokenId` token must exist and be owned by `from`.
     * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer.
     *
     * Emits a {Transfer} event.
     */
    function _safeTransfer(
        address from,
        address to,
        uint256 tokenId,
        bytes memory _data
    ) internal virtual {
        _transfer(from, to, tokenId);
        require(_checkOnERC721Received(from, to, tokenId, _data), "ERC721: transfer to non ERC721Receiver implementer");
    }

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

    /**
     * @dev Returns whether `spender` is allowed to manage `tokenId`.
     *
     * Requirements:
     *
     * - `tokenId` must exist.
     */
    function _isApprovedOrOwner(address spender, uint256 tokenId) internal view virtual returns (bool) {
        require(_exists(tokenId), "ERC721: operator query for nonexistent token");
        address owner = ERC721.ownerOf(tokenId);
        return (spender == owner || getApproved(tokenId) == spender || isApprovedForAll(owner, spender));
    }

    /**
     * @dev Safely mints `tokenId` and transfers it to `to`.
     *
     * Requirements:
     *
     * - `tokenId` must not exist.
     * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer.
     *
     * Emits a {Transfer} event.
     */
    function _safeMint(address to, uint256 tokenId) internal virtual {
        _safeMint(to, tokenId, "");
    }

    /**
     * @dev Same as {xref-ERC721-_safeMint-address-uint256-}[`_safeMint`], with an additional `data` parameter which is
     * forwarded in {IERC721Receiver-onERC721Received} to contract recipients.
     */
    function _safeMint(
        address to,
        uint256 tokenId,
        bytes memory _data
    ) internal virtual {
        _mint(to, tokenId);
        require(
            _checkOnERC721Received(address(0), to, tokenId, _data),
            "ERC721: transfer to non ERC721Receiver implementer"
        );
    }

    /**
     * @dev Mints `tokenId` and transfers it to `to`.
     *
     * WARNING: Usage of this method is discouraged, use {_safeMint} whenever possible
     *
     * Requirements:
     *
     * - `tokenId` must not exist.
     * - `to` cannot be the zero address.
     *
     * Emits a {Transfer} event.
     */
    function _mint(address to, uint256 tokenId) internal virtual {
        require(to != address(0), "ERC721: mint to the zero address");
        require(!_exists(tokenId), "ERC721: token already minted");

        _beforeTokenTransfer(address(0), to, tokenId);

        _balances[to] += 1;
        _owners[tokenId] = to;

        emit Transfer(address(0), to, tokenId);
    }

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

        _beforeTokenTransfer(owner, address(0), tokenId);

        // Clear approvals
        _approve(address(0), tokenId);

        _balances[owner] -= 1;
        delete _owners[tokenId];

        emit Transfer(owner, address(0), tokenId);
    }

    /**
     * @dev Transfers `tokenId` from `from` to `to`.
     *  As opposed to {transferFrom}, this imposes no restrictions on msg.sender.
     *
     * Requirements:
     *
     * - `to` cannot be the zero address.
     * - `tokenId` token must be owned by `from`.
     *
     * Emits a {Transfer} event.
     */
    function _transfer(
        address from,
        address to,
        uint256 tokenId
    ) internal virtual {
        require(ERC721.ownerOf(tokenId) == from, "ERC721: transfer of token that is not own");
        require(to != address(0), "ERC721: transfer to the zero address");

        _beforeTokenTransfer(from, to, tokenId);

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

        _balances[from] -= 1;
        _balances[to] += 1;
        _owners[tokenId] = to;

        emit Transfer(from, to, tokenId);
    }

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

    /**
     * @dev Internal function to invoke {IERC721Receiver-onERC721Received} on a target address.
     * The call is not executed if the target address is not a contract.
     *
     * @param from address representing the previous owner of the given token ID
     * @param to target address that will receive the tokens
     * @param tokenId uint256 ID of the token to be transferred
     * @param _data bytes optional data to send along with the call
     * @return bool whether the call correctly returned the expected magic value
     */
    function _checkOnERC721Received(
        address from,
        address to,
        uint256 tokenId,
        bytes memory _data
    ) private returns (bool) {
        if (to.isContract()) {
            try IERC721Receiver(to).onERC721Received(_msgSender(), from, tokenId, _data) returns (bytes4 retval) {
                return retval == IERC721Receiver.onERC721Received.selector;
            } catch (bytes memory reason) {
                if (reason.length == 0) {
                    revert("ERC721: transfer to non ERC721Receiver implementer");
                } else {
                    assembly {
                        revert(add(32, reason), mload(reason))
                    }
                }
            }
        } else {
            return true;
        }
    }

    /**
     * @dev Hook that is called before any token transfer. This includes minting
     * and burning.
     *
     * Calling conditions:
     *
     * - When `from` and `to` are both non-zero, ``from``'s `tokenId` will be
     * transferred to `to`.
     * - When `from` is zero, `tokenId` will be minted for `to`.
     * - When `to` is zero, ``from``'s `tokenId` will be burned.
     * - `from` and `to` are never both zero.
     *
     * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks].
     */
    function _beforeTokenTransfer(
        address from,
        address to,
        uint256 tokenId
    ) internal virtual {}
}

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



pragma solidity ^0.8.0;



/**
 * @title ERC721 Burnable Token
 * @dev ERC721 Token that can be irreversibly burned (destroyed).
 */
abstract contract ERC721Burnable is Context, ERC721 {
    /**
     * @dev Burns `tokenId`. See {ERC721-_burn}.
     *
     * Requirements:
     *
     * - The caller must own `tokenId` or be an approved operator.
     */
    function burn(uint256 tokenId) public virtual {
        //solhint-disable-next-line max-line-length
        require(_isApprovedOrOwner(_msgSender(), tokenId), "ERC721Burnable: caller is not owner nor approved");
        _burn(tokenId);
    }
}

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



pragma solidity ^0.8.0;



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

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

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

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

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

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

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

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

    /**
     * @dev Hook that is called before any token transfer. This includes minting
     * and burning.
     *
     * Calling conditions:
     *
     * - When `from` and `to` are both non-zero, ``from``'s `tokenId` will be
     * transferred to `to`.
     * - When `from` is zero, `tokenId` will be minted for `to`.
     * - When `to` is zero, ``from``'s `tokenId` will be burned.
     * - `from` cannot be the zero address.
     * - `to` cannot be the zero address.
     *
     * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks].
     */
    function _beforeTokenTransfer(
        address from,
        address to,
        uint256 tokenId
    ) internal virtual override {
        super._beforeTokenTransfer(from, to, tokenId);

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

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

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

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

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

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

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

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

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

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

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

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

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


// File: contracts/ERC721Pausable.sol



pragma solidity ^0.8.0;




/**
 * @dev ERC721 token with pausable token transfers, minting and burning.
 *
 * Useful for scenarios such as preventing trades until the end of an evaluation
 * period, or having an emergency switch for freezing all token transfers in the
 * event of a large bug.
 */
abstract contract ERC721Pausable is ERC721, Ownable, Pausable {
    /**
     * @dev See {ERC721-_beforeTokenTransfer}.
     *
     * Requirements:
     *
     * - the contract must not be paused.
     */
    function _beforeTokenTransfer(
        address from,
        address to,
        uint256 tokenId
    ) internal virtual override {
        super._beforeTokenTransfer(from, to, tokenId);
        if (_msgSender() != owner()) {
            require(!paused(), "ERC721Pausable: token transfer while paused");
        }
    }
}


// File: contracts/LilHissingCats.sol


pragma solidity ^0.8.0;









/*
    Lil Hissing Cats, 2021 OCt
*/

contract LilHissingCats is ERC721Enumerable, Ownable, ERC721Burnable, ERC721Pausable {
    using SafeMath for uint256;
    using Counters for Counters.Counter;

    Counters.Counter private _tokenIdTracker;
    
    address public constant creatorAddress = 0x8B587579cb2aD85EA46EeE41fb1e788b49A8981d;
    
    uint256 public constant MAX_PUBLIC = 8800;
    uint256 public constant MAX_ELEMENTS = 8888;
    uint256 public constant PRICE = 0.05 ether; // 0.05 ether
    uint256 public constant MAX_BY_MINT = 20;
    uint256 public constant MAX_GIFT = 88;
    
    uint256 public giftedAmount;
    uint256 public publicAmountMinted;
    
    bool public locked;
    
    string private _contractURI;
    string private _tokenBaseURI;
    


    constructor(string memory baseURI) ERC721("Lil Hissing Cats", "HISS") { 
        setBaseURI(baseURI);
        pause(true);
    }
    
    modifier notLocked {
        require(!locked, "Locked: URI and it's metadata");
        _;
    }
    

    modifier saleIsOpen {
        require(_totalSupply() <= MAX_ELEMENTS, "Sale end");
        if (_msgSender() != owner()) {
            require(!paused(), "Pausable: paused");
        }
        _;
    }
    
    function price(uint256 _count) public pure returns (uint256) {
        return PRICE.mul(_count);
    }
    
    function _totalSupply() internal view returns (uint) {
        return _tokenIdTracker.current();
    }
    function totalMint() public view returns (uint256) {
        return _totalSupply();
    }
    
     // Lock URI and it's undoable
    function lockMetadata() external onlyOwner {
        locked = true;
    }
    

    function mint(uint256 _count) public payable saleIsOpen {
        uint256 total = _totalSupply();
        require(total + _count <= MAX_ELEMENTS, "Max limit");
        require(total <= MAX_ELEMENTS, "Sale end");
        require(publicAmountMinted + _count <= MAX_PUBLIC, "Exceeds publics");
        require(_count <= MAX_BY_MINT, "Exceeds number");
        require(msg.value >= price(_count), "Value below price");

        for (uint256 i = 0; i < _count; i++) {
            publicAmountMinted++;
            _mintAnElement(msg.sender);
        }
    }
    
    function gift(address[] calldata receivers) external onlyOwner {
        require(totalSupply() + receivers.length <= MAX_ELEMENTS, "Max limit");
        require(giftedAmount + receivers.length <= MAX_GIFT, "Exceeds gift number");
        
        for (uint256 i = 0; i < receivers.length; i++) {
            giftedAmount++;
            _mintAnElement(receivers[i]);
        }
    }
    
    function _mintAnElement(address _to) private {
        uint id = _totalSupply();
        _tokenIdTracker.increment();
        _safeMint(_to, id);
    }

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

    function setBaseURI(string memory baseURI) public onlyOwner notLocked {
        _tokenBaseURI = baseURI;
    }
    
    function setContractURI(string calldata URI) external onlyOwner notLocked {
        _contractURI = URI;
    }
    
    function contractURI() public view returns (string memory) {
        return _contractURI;
    }
    
    function tokenURI(uint256 tokenId) public view override(ERC721) returns (string memory) {
        return string(abi.encodePacked(_tokenBaseURI, Strings.toString(tokenId)));
    }

    function walletOfOwner(address _owner) external view returns (uint256[] memory) {
        uint256 tokenCount = balanceOf(_owner);

        uint256[] memory tokensId = new uint256[](tokenCount);
        for (uint256 i = 0; i < tokenCount; i++) {
            tokensId[i] = tokenOfOwnerByIndex(_owner, i);
        }

        return tokensId;
    }

    function pause(bool val) public onlyOwner {
        if (val == true) {
            _pause();
            return;
        }
        _unpause();
    }

    function withdrawAll() public payable onlyOwner {
        uint256 balance = address(this).balance;
        require(balance > 0);

        _widthdraw(creatorAddress, address(this).balance);
    }

    function _widthdraw(address _address, uint256 _amount) private {
        (bool success, ) = _address.call{value: _amount}("");
        require(success, "Transfer failed.");
    }

    function _beforeTokenTransfer(
        address from,
        address to,
        uint256 tokenId
    ) internal virtual override(ERC721, ERC721Enumerable, ERC721Pausable) {
        super._beforeTokenTransfer(from, to, tokenId);
    }

    function supportsInterface(bytes4 interfaceId) public view virtual override(ERC721, ERC721Enumerable) returns (bool) {
        return super.supportsInterface(interfaceId);
    }
    
}

Contract Security Audit

Contract ABI

[{"inputs":[{"internalType":"string","name":"baseURI","type":"string"}],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"approved","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"account","type":"address"}],"name":"Paused","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"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"account","type":"address"}],"name":"Unpaused","type":"event"},{"inputs":[],"name":"MAX_BY_MINT","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"MAX_ELEMENTS","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"MAX_GIFT","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"MAX_PUBLIC","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"PRICE","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"burn","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"contractURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"creatorAddress","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":[{"internalType":"address[]","name":"receivers","type":"address[]"}],"name":"gift","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"giftedAmount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"lockMetadata","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"locked","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_count","type":"uint256"}],"name":"mint","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":[{"internalType":"bool","name":"val","type":"bool"}],"name":"pause","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"paused","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_count","type":"uint256"}],"name":"price","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"pure","type":"function"},{"inputs":[],"name":"publicAmountMinted","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"_data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"baseURI","type":"string"}],"name":"setBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"URI","type":"string"}],"name":"setContractURI","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":[{"internalType":"uint256","name":"index","type":"uint256"}],"name":"tokenByIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"uint256","name":"index","type":"uint256"}],"name":"tokenOfOwnerByIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalMint","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"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":"address","name":"_owner","type":"address"}],"name":"walletOfOwner","outputs":[{"internalType":"uint256[]","name":"","type":"uint256[]"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"withdrawAll","outputs":[],"stateMutability":"payable","type":"function"}]

60806040523480156200001157600080fd5b506040516200304d3803806200304d833981016040819052620000349162000453565b604080518082018252601081526f4c696c2048697373696e67204361747360801b6020808301918252835180850190945260048452634849535360e01b9084015281519192916200008891600091620003ad565b5080516200009e906001906020840190620003ad565b505050620000bb620000b5620000e660201b60201c565b620000ea565b600a805460ff60a01b19169055620000d3816200013c565b620000df6001620001f9565b5062000582565b3390565b600a80546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b600a546001600160a01b031633146200018b5760405162461bcd60e51b815260206004820181905260248201526000805160206200302d83398151915260448201526064015b60405180910390fd5b600e5460ff1615620001e05760405162461bcd60e51b815260206004820152601d60248201527f4c6f636b65643a2055524920616e642069742773206d65746164617461000000604482015260640162000182565b8051620001f5906010906020840190620003ad565b5050565b600a546001600160a01b03163314620002445760405162461bcd60e51b815260206004820181905260248201526000805160206200302d833981519152604482015260640162000182565b600181151514156200025d576200025a62000267565b50565b6200025a62000316565b6200027b600a54600160a01b900460ff1690565b15620002bd5760405162461bcd60e51b815260206004820152601060248201526f14185d5cd8589b194e881c185d5cd95960821b604482015260640162000182565b600a805460ff60a01b1916600160a01b1790557f62e78cea01bee320cd4e420270b5ea74000d11b0c9f74754ebdbfc544b05a258620002f93390565b6040516001600160a01b03909116815260200160405180910390a1565b6200032a600a54600160a01b900460ff1690565b620003785760405162461bcd60e51b815260206004820152601460248201527f5061757361626c653a206e6f7420706175736564000000000000000000000000604482015260640162000182565b600a805460ff60a01b191690557f5db9ee0a495bf2e6ff9c91a7834c1ba4fdd244a5e8aa4e537bd38aeae4b073aa33620002f9565b828054620003bb906200052f565b90600052602060002090601f016020900481019282620003df57600085556200042a565b82601f10620003fa57805160ff19168380011785556200042a565b828001600101855582156200042a579182015b828111156200042a5782518255916020019190600101906200040d565b50620004389291506200043c565b5090565b5b808211156200043857600081556001016200043d565b600060208083850312156200046757600080fd5b82516001600160401b03808211156200047f57600080fd5b818501915085601f8301126200049457600080fd5b815181811115620004a957620004a96200056c565b604051601f8201601f19908116603f01168101908382118183101715620004d457620004d46200056c565b816040528281528886848701011115620004ed57600080fd5b600093505b82841015620005115784840186015181850187015292850192620004f2565b82841115620005235760008684830101525b98975050505050505050565b600181811c908216806200054457607f821691505b602082108114156200056657634e487b7160e01b600052602260045260246000fd5b50919050565b634e487b7160e01b600052604160045260246000fd5b612a9b80620005926000396000f3fe6080604052600436106102465760003560e01c806370a0823111610139578063989bdbb6116100b6578063cf3090121161007a578063cf3090121461065c578063d6c29b4e14610676578063e8a3d4851461068b578063e927fc5c146106a0578063e985e9c5146106c8578063f2fde38b1461071157600080fd5b8063989bdbb6146105d4578063a0712d68146105e9578063a22cb465146105fc578063b88d4fde1461061c578063c87b56dd1461063c57600080fd5b80638da5cb5b116100fd5780638da5cb5b14610555578063938e3d7b14610573578063940f1ada1461059357806395d89b41146105a95780639753eac0146105be57600080fd5b806370a08231146104e8578063715018a614610508578063853828b61461051d5780638ad5de28146105255780638d859f3e1461053a57600080fd5b80632f745c59116101c75780634f6ccce71161018b5780634f6ccce71461045457806355f804b31461047457806359a7715a146104945780635c975abb146104a95780636352211e146104c857600080fd5b80632f745c59146103b15780633502a716146103d157806342842e0e146103e757806342966c6814610407578063438b63001461042757600080fd5b8063163e1e611161020e578063163e1e611461031c57806318160ddd1461033c5780631b57190e1461035b57806323b872dd1461037157806326a49e371461039157600080fd5b806301ffc9a71461024b57806302329a291461028057806306fdde03146102a2578063081812fc146102c4578063095ea7b3146102fc575b600080fd5b34801561025757600080fd5b5061026b610266366004612592565b610731565b60405190151581526020015b60405180910390f35b34801561028c57600080fd5b506102a061029b366004612577565b610742565b005b3480156102ae57600080fd5b506102b7610793565b60405161027791906127fe565b3480156102d057600080fd5b506102e46102df366004612675565b610825565b6040516001600160a01b039091168152602001610277565b34801561030857600080fd5b506102a06103173660046124d8565b6108ba565b34801561032857600080fd5b506102a0610337366004612502565b6109d0565b34801561034857600080fd5b506008545b604051908152602001610277565b34801561036757600080fd5b5061034d600c5481565b34801561037d57600080fd5b506102a061038c3660046123f6565b610b01565b34801561039d57600080fd5b5061034d6103ac366004612675565b610b33565b3480156103bd57600080fd5b5061034d6103cc3660046124d8565b610b46565b3480156103dd57600080fd5b5061034d6122b881565b3480156103f357600080fd5b506102a06104023660046123f6565b610bdc565b34801561041357600080fd5b506102a0610422366004612675565b610bf7565b34801561043357600080fd5b506104476104423660046123a8565b610c6e565b60405161027791906127ba565b34801561046057600080fd5b5061034d61046f366004612675565b610d10565b34801561048057600080fd5b506102a061048f36600461262c565b610da3565b3480156104a057600080fd5b5061034d610e37565b3480156104b557600080fd5b50600a54600160a01b900460ff1661026b565b3480156104d457600080fd5b506102e46104e3366004612675565b610e46565b3480156104f457600080fd5b5061034d6105033660046123a8565b610ebd565b34801561051457600080fd5b506102a0610f44565b6102a0610f7a565b34801561053157600080fd5b5061034d601481565b34801561054657600080fd5b5061034d66b1a2bc2ec5000081565b34801561056157600080fd5b50600a546001600160a01b03166102e4565b34801561057f57600080fd5b506102a061058e3660046125cc565b610fcd565b34801561059f57600080fd5b5061034d600d5481565b3480156105b557600080fd5b506102b7611056565b3480156105ca57600080fd5b5061034d61226081565b3480156105e057600080fd5b506102a0611065565b6102a06105f7366004612675565b61109e565b34801561060857600080fd5b506102a06106173660046124ae565b6112eb565b34801561062857600080fd5b506102a0610637366004612432565b6113b0565b34801561064857600080fd5b506102b7610657366004612675565b6113e8565b34801561066857600080fd5b50600e5461026b9060ff1681565b34801561068257600080fd5b5061034d605881565b34801561069757600080fd5b506102b761141c565b3480156106ac57600080fd5b506102e4738b587579cb2ad85ea46eee41fb1e788b49a8981d81565b3480156106d457600080fd5b5061026b6106e33660046123c3565b6001600160a01b03918216600090815260056020908152604080832093909416825291909152205460ff1690565b34801561071d57600080fd5b506102a061072c3660046123a8565b61142b565b600061073c826114c3565b92915050565b600a546001600160a01b031633146107755760405162461bcd60e51b815260040161076c90612863565b60405180910390fd5b6001811515141561078b576107886114e8565b50565b61078861158d565b6060600080546107a290612977565b80601f01602080910402602001604051908101604052809291908181526020018280546107ce90612977565b801561081b5780601f106107f05761010080835404028352916020019161081b565b820191906000526020600020905b8154815290600101906020018083116107fe57829003601f168201915b5050505050905090565b6000818152600260205260408120546001600160a01b031661089e5760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b606482015260840161076c565b506000908152600460205260409020546001600160a01b031690565b60006108c582610e46565b9050806001600160a01b0316836001600160a01b031614156109335760405162461bcd60e51b815260206004820152602160248201527f4552433732313a20617070726f76616c20746f2063757272656e74206f776e656044820152603960f91b606482015260840161076c565b336001600160a01b038216148061094f575061094f81336106e3565b6109c15760405162461bcd60e51b815260206004820152603860248201527f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760448201527f6e6572206e6f7220617070726f76656420666f7220616c6c0000000000000000606482015260840161076c565b6109cb8383611611565b505050565b600a546001600160a01b031633146109fa5760405162461bcd60e51b815260040161076c90612863565b6122b881610a0760085490565b610a1191906128e9565b1115610a4b5760405162461bcd60e51b815260206004820152600960248201526813585e081b1a5b5a5d60ba1b604482015260640161076c565b600c54605890610a5c9083906128e9565b1115610aa05760405162461bcd60e51b815260206004820152601360248201527222bc31b2b2b2399033b4b33a10373ab6b132b960691b604482015260640161076c565b60005b818110156109cb57600c8054906000610abb836129b2565b9190505550610aef838383818110610ad557610ad5612a23565b9050602002016020810190610aea91906123a8565b61167f565b80610af9816129b2565b915050610aa3565b610b0c335b826116a3565b610b285760405162461bcd60e51b815260040161076c90612898565b6109cb83838361179a565b600061073c66b1a2bc2ec5000083611945565b6000610b5183610ebd565b8210610bb35760405162461bcd60e51b815260206004820152602b60248201527f455243373231456e756d657261626c653a206f776e657220696e646578206f7560448201526a74206f6620626f756e647360a81b606482015260840161076c565b506001600160a01b03919091166000908152600660209081526040808320938352929052205490565b6109cb838383604051806020016040528060008152506113b0565b610c0033610b06565b610c655760405162461bcd60e51b815260206004820152603060248201527f4552433732314275726e61626c653a2063616c6c6572206973206e6f74206f7760448201526f1b995c881b9bdc88185c1c1c9bdd995960821b606482015260840161076c565b61078881611958565b60606000610c7b83610ebd565b905060008167ffffffffffffffff811115610c9857610c98612a39565b604051908082528060200260200182016040528015610cc1578160200160208202803683370190505b50905060005b82811015610d0857610cd98582610b46565b828281518110610ceb57610ceb612a23565b602090810291909101015280610d00816129b2565b915050610cc7565b509392505050565b6000610d1b60085490565b8210610d7e5760405162461bcd60e51b815260206004820152602c60248201527f455243373231456e756d657261626c653a20676c6f62616c20696e646578206f60448201526b7574206f6620626f756e647360a01b606482015260840161076c565b60088281548110610d9157610d91612a23565b90600052602060002001549050919050565b600a546001600160a01b03163314610dcd5760405162461bcd60e51b815260040161076c90612863565b600e5460ff1615610e205760405162461bcd60e51b815260206004820152601d60248201527f4c6f636b65643a2055524920616e642069742773206d65746164617461000000604482015260640161076c565b8051610e339060109060208401906121f9565b5050565b6000610e416119ff565b905090565b6000818152600260205260408120546001600160a01b03168061073c5760405162461bcd60e51b815260206004820152602960248201527f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460448201526832b73a103a37b5b2b760b91b606482015260840161076c565b60006001600160a01b038216610f285760405162461bcd60e51b815260206004820152602a60248201527f4552433732313a2062616c616e636520717565727920666f7220746865207a65604482015269726f206164647265737360b01b606482015260840161076c565b506001600160a01b031660009081526003602052604090205490565b600a546001600160a01b03163314610f6e5760405162461bcd60e51b815260040161076c90612863565b610f786000611a0a565b565b600a546001600160a01b03163314610fa45760405162461bcd60e51b815260040161076c90612863565b4780610faf57600080fd5b610788738b587579cb2ad85ea46eee41fb1e788b49a8981d47611a5c565b600a546001600160a01b03163314610ff75760405162461bcd60e51b815260040161076c90612863565b600e5460ff161561104a5760405162461bcd60e51b815260206004820152601d60248201527f4c6f636b65643a2055524920616e642069742773206d65746164617461000000604482015260640161076c565b6109cb600f838361227d565b6060600180546107a290612977565b600a546001600160a01b0316331461108f5760405162461bcd60e51b815260040161076c90612863565b600e805460ff19166001179055565b6122b86110a96119ff565b11156110e25760405162461bcd60e51b815260206004820152600860248201526714d85b1948195b9960c21b604482015260640161076c565b600a546001600160a01b0316331461114157600a54600160a01b900460ff16156111415760405162461bcd60e51b815260206004820152601060248201526f14185d5cd8589b194e881c185d5cd95960821b604482015260640161076c565b600061114b6119ff565b90506122b861115a83836128e9565b11156111945760405162461bcd60e51b815260206004820152600960248201526813585e081b1a5b5a5d60ba1b604482015260640161076c565b6122b88111156111d15760405162461bcd60e51b815260206004820152600860248201526714d85b1948195b9960c21b604482015260640161076c565b61226082600d546111e291906128e9565b11156112225760405162461bcd60e51b815260206004820152600f60248201526e45786365656473207075626c69637360881b604482015260640161076c565b60148211156112645760405162461bcd60e51b815260206004820152600e60248201526d22bc31b2b2b23990373ab6b132b960911b604482015260640161076c565b61126d82610b33565b3410156112b05760405162461bcd60e51b815260206004820152601160248201527056616c75652062656c6f7720707269636560781b604482015260640161076c565b60005b828110156109cb57600d80549060006112cb836129b2565b91905055506112d93361167f565b806112e3816129b2565b9150506112b3565b6001600160a01b0382163314156113445760405162461bcd60e51b815260206004820152601960248201527f4552433732313a20617070726f766520746f2063616c6c657200000000000000604482015260640161076c565b3360008181526005602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b6113ba33836116a3565b6113d65760405162461bcd60e51b815260040161076c90612898565b6113e284848484611af2565b50505050565b606060106113f583611b25565b6040516020016114069291906126d6565b6040516020818303038152906040529050919050565b6060600f80546107a290612977565b600a546001600160a01b031633146114555760405162461bcd60e51b815260040161076c90612863565b6001600160a01b0381166114ba5760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b606482015260840161076c565b61078881611a0a565b60006001600160e01b0319821663780e9d6360e01b148061073c575061073c82611c23565b600a54600160a01b900460ff16156115355760405162461bcd60e51b815260206004820152601060248201526f14185d5cd8589b194e881c185d5cd95960821b604482015260640161076c565b600a805460ff60a01b1916600160a01b1790557f62e78cea01bee320cd4e420270b5ea74000d11b0c9f74754ebdbfc544b05a2586115703390565b6040516001600160a01b03909116815260200160405180910390a1565b600a54600160a01b900460ff166115dd5760405162461bcd60e51b815260206004820152601460248201527314185d5cd8589b194e881b9bdd081c185d5cd95960621b604482015260640161076c565b600a805460ff60a01b191690557f5db9ee0a495bf2e6ff9c91a7834c1ba4fdd244a5e8aa4e537bd38aeae4b073aa33611570565b600081815260046020526040902080546001600160a01b0319166001600160a01b038416908117909155819061164682610e46565b6001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b60006116896119ff565b9050611699600b80546001019055565b610e338282611c73565b6000818152600260205260408120546001600160a01b031661171c5760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b606482015260840161076c565b600061172783610e46565b9050806001600160a01b0316846001600160a01b031614806117625750836001600160a01b031661175784610825565b6001600160a01b0316145b8061179257506001600160a01b0380821660009081526005602090815260408083209388168352929052205460ff165b949350505050565b826001600160a01b03166117ad82610e46565b6001600160a01b0316146118155760405162461bcd60e51b815260206004820152602960248201527f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960448201526839903737ba1037bbb760b91b606482015260840161076c565b6001600160a01b0382166118775760405162461bcd60e51b8152602060048201526024808201527f4552433732313a207472616e7366657220746f20746865207a65726f206164646044820152637265737360e01b606482015260840161076c565b611882838383611c8d565b61188d600082611611565b6001600160a01b03831660009081526003602052604081208054600192906118b6908490612934565b90915550506001600160a01b03821660009081526003602052604081208054600192906118e49084906128e9565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b0386811691821790925591518493918716917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef91a4505050565b60006119518284612915565b9392505050565b600061196382610e46565b905061197181600084611c8d565b61197c600083611611565b6001600160a01b03811660009081526003602052604081208054600192906119a5908490612934565b909155505060008281526002602052604080822080546001600160a01b0319169055518391906001600160a01b038416907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908390a45050565b6000610e41600b5490565b600a80546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6000826001600160a01b03168260405160006040518083038185875af1925050503d8060008114611aa9576040519150601f19603f3d011682016040523d82523d6000602084013e611aae565b606091505b50509050806109cb5760405162461bcd60e51b815260206004820152601060248201526f2a3930b739b332b9103330b4b632b21760811b604482015260640161076c565b611afd84848461179a565b611b0984848484611c98565b6113e25760405162461bcd60e51b815260040161076c90612811565b606081611b495750506040805180820190915260018152600360fc1b602082015290565b8160005b8115611b735780611b5d816129b2565b9150611b6c9050600a83612901565b9150611b4d565b60008167ffffffffffffffff811115611b8e57611b8e612a39565b6040519080825280601f01601f191660200182016040528015611bb8576020820181803683370190505b5090505b841561179257611bcd600183612934565b9150611bda600a866129cd565b611be59060306128e9565b60f81b818381518110611bfa57611bfa612a23565b60200101906001600160f81b031916908160001a905350611c1c600a86612901565b9450611bbc565b60006001600160e01b031982166380ac58cd60e01b1480611c5457506001600160e01b03198216635b5e139f60e01b145b8061073c57506301ffc9a760e01b6001600160e01b031983161461073c565b610e33828260405180602001604052806000815250611da5565b6109cb838383611dd8565b60006001600160a01b0384163b15611d9a57604051630a85bd0160e11b81526001600160a01b0385169063150b7a0290611cdc90339089908890889060040161277d565b602060405180830381600087803b158015611cf657600080fd5b505af1925050508015611d26575060408051601f3d908101601f19168201909252611d23918101906125af565b60015b611d80573d808015611d54576040519150601f19603f3d011682016040523d82523d6000602084013e611d59565b606091505b508051611d785760405162461bcd60e51b815260040161076c90612811565b805181602001fd5b6001600160e01b031916630a85bd0160e11b149050611792565b506001949350505050565b611daf8383611e63565b611dbc6000848484611c98565b6109cb5760405162461bcd60e51b815260040161076c90612811565b611de3838383611fb1565b600a546001600160a01b031633146109cb57600a54600160a01b900460ff16156109cb5760405162461bcd60e51b815260206004820152602b60248201527f4552433732315061757361626c653a20746f6b656e207472616e73666572207760448201526a1a1a5b19481c185d5cd95960aa1b606482015260840161076c565b6001600160a01b038216611eb95760405162461bcd60e51b815260206004820181905260248201527f4552433732313a206d696e7420746f20746865207a65726f2061646472657373604482015260640161076c565b6000818152600260205260409020546001600160a01b031615611f1e5760405162461bcd60e51b815260206004820152601c60248201527f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000604482015260640161076c565b611f2a60008383611c8d565b6001600160a01b0382166000908152600360205260408120805460019290611f539084906128e9565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b03861690811790915590518392907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a45050565b6001600160a01b03831661200c5761200781600880546000838152600960205260408120829055600182018355919091527ff3f7a9fe364faab93b216da50a3214154f22a0a2b415b23a84c8169e8b636ee30155565b61202f565b816001600160a01b0316836001600160a01b03161461202f5761202f8382612069565b6001600160a01b038216612046576109cb81612106565b826001600160a01b0316826001600160a01b0316146109cb576109cb82826121b5565b6000600161207684610ebd565b6120809190612934565b6000838152600760205260409020549091508082146120d3576001600160a01b03841660009081526006602090815260408083208584528252808320548484528184208190558352600790915290208190555b5060009182526007602090815260408084208490556001600160a01b039094168352600681528383209183525290812055565b60085460009061211890600190612934565b6000838152600960205260408120546008805493945090928490811061214057612140612a23565b90600052602060002001549050806008838154811061216157612161612a23565b600091825260208083209091019290925582815260099091526040808220849055858252812055600880548061219957612199612a0d565b6001900381819060005260206000200160009055905550505050565b60006121c083610ebd565b6001600160a01b039093166000908152600660209081526040808320868452825280832085905593825260079052919091209190915550565b82805461220590612977565b90600052602060002090601f016020900481019282612227576000855561226d565b82601f1061224057805160ff191683800117855561226d565b8280016001018555821561226d579182015b8281111561226d578251825591602001919060010190612252565b506122799291506122f1565b5090565b82805461228990612977565b90600052602060002090601f0160209004810192826122ab576000855561226d565b82601f106122c45782800160ff1982351617855561226d565b8280016001018555821561226d579182015b8281111561226d5782358255916020019190600101906122d6565b5b8082111561227957600081556001016122f2565b600067ffffffffffffffff8084111561232157612321612a39565b604051601f8501601f19908116603f0116810190828211818310171561234957612349612a39565b8160405280935085815286868601111561236257600080fd5b858560208301376000602087830101525050509392505050565b80356001600160a01b038116811461239357600080fd5b919050565b8035801515811461239357600080fd5b6000602082840312156123ba57600080fd5b6119518261237c565b600080604083850312156123d657600080fd5b6123df8361237c565b91506123ed6020840161237c565b90509250929050565b60008060006060848603121561240b57600080fd5b6124148461237c565b92506124226020850161237c565b9150604084013590509250925092565b6000806000806080858703121561244857600080fd5b6124518561237c565b935061245f6020860161237c565b925060408501359150606085013567ffffffffffffffff81111561248257600080fd5b8501601f8101871361249357600080fd5b6124a287823560208401612306565b91505092959194509250565b600080604083850312156124c157600080fd5b6124ca8361237c565b91506123ed60208401612398565b600080604083850312156124eb57600080fd5b6124f48361237c565b946020939093013593505050565b6000806020838503121561251557600080fd5b823567ffffffffffffffff8082111561252d57600080fd5b818501915085601f83011261254157600080fd5b81358181111561255057600080fd5b8660208260051b850101111561256557600080fd5b60209290920196919550909350505050565b60006020828403121561258957600080fd5b61195182612398565b6000602082840312156125a457600080fd5b813561195181612a4f565b6000602082840312156125c157600080fd5b815161195181612a4f565b600080602083850312156125df57600080fd5b823567ffffffffffffffff808211156125f757600080fd5b818501915085601f83011261260b57600080fd5b81358181111561261a57600080fd5b86602082850101111561256557600080fd5b60006020828403121561263e57600080fd5b813567ffffffffffffffff81111561265557600080fd5b8201601f8101841361266657600080fd5b61179284823560208401612306565b60006020828403121561268757600080fd5b5035919050565b600081518084526126a681602086016020860161294b565b601f01601f19169290920160200192915050565b600081516126cc81856020860161294b565b9290920192915050565b600080845481600182811c9150808316806126f257607f831692505b602080841082141561271257634e487b7160e01b86526022600452602486fd5b818015612726576001811461273757612764565b60ff19861689528489019650612764565b60008b81526020902060005b8681101561275c5781548b820152908501908301612743565b505084890196505b50505050505061277481856126ba565b95945050505050565b6001600160a01b03858116825284166020820152604081018390526080606082018190526000906127b09083018461268e565b9695505050505050565b6020808252825182820181905260009190848201906040850190845b818110156127f2578351835292840192918401916001016127d6565b50909695505050505050565b602081526000611951602083018461268e565b60208082526032908201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560408201527131b2b4bb32b91034b6b83632b6b2b73a32b960711b606082015260800190565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b60208082526031908201527f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f6040820152701ddb995c881b9bdc88185c1c1c9bdd9959607a1b606082015260800190565b600082198211156128fc576128fc6129e1565b500190565b600082612910576129106129f7565b500490565b600081600019048311821515161561292f5761292f6129e1565b500290565b600082821015612946576129466129e1565b500390565b60005b8381101561296657818101518382015260200161294e565b838111156113e25750506000910152565b600181811c9082168061298b57607f821691505b602082108114156129ac57634e487b7160e01b600052602260045260246000fd5b50919050565b60006000198214156129c6576129c66129e1565b5060010190565b6000826129dc576129dc6129f7565b500690565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052601260045260246000fd5b634e487b7160e01b600052603160045260246000fd5b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b6001600160e01b03198116811461078857600080fdfea264697066735822122035a087bc05a93280283837200797b547414b64db6a289d5a4523f2de01d2dcc864736f6c634300080700334f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657200000000000000000000000000000000000000000000000000000000000000200000000000000000000000000000000000000000000000000000000000000036697066733a2f2f516d5a6d34345174333574506d6139765066433538477946736e70716557505666797869754c54414561466b766b2f00000000000000000000

Deployed Bytecode

0x6080604052600436106102465760003560e01c806370a0823111610139578063989bdbb6116100b6578063cf3090121161007a578063cf3090121461065c578063d6c29b4e14610676578063e8a3d4851461068b578063e927fc5c146106a0578063e985e9c5146106c8578063f2fde38b1461071157600080fd5b8063989bdbb6146105d4578063a0712d68146105e9578063a22cb465146105fc578063b88d4fde1461061c578063c87b56dd1461063c57600080fd5b80638da5cb5b116100fd5780638da5cb5b14610555578063938e3d7b14610573578063940f1ada1461059357806395d89b41146105a95780639753eac0146105be57600080fd5b806370a08231146104e8578063715018a614610508578063853828b61461051d5780638ad5de28146105255780638d859f3e1461053a57600080fd5b80632f745c59116101c75780634f6ccce71161018b5780634f6ccce71461045457806355f804b31461047457806359a7715a146104945780635c975abb146104a95780636352211e146104c857600080fd5b80632f745c59146103b15780633502a716146103d157806342842e0e146103e757806342966c6814610407578063438b63001461042757600080fd5b8063163e1e611161020e578063163e1e611461031c57806318160ddd1461033c5780631b57190e1461035b57806323b872dd1461037157806326a49e371461039157600080fd5b806301ffc9a71461024b57806302329a291461028057806306fdde03146102a2578063081812fc146102c4578063095ea7b3146102fc575b600080fd5b34801561025757600080fd5b5061026b610266366004612592565b610731565b60405190151581526020015b60405180910390f35b34801561028c57600080fd5b506102a061029b366004612577565b610742565b005b3480156102ae57600080fd5b506102b7610793565b60405161027791906127fe565b3480156102d057600080fd5b506102e46102df366004612675565b610825565b6040516001600160a01b039091168152602001610277565b34801561030857600080fd5b506102a06103173660046124d8565b6108ba565b34801561032857600080fd5b506102a0610337366004612502565b6109d0565b34801561034857600080fd5b506008545b604051908152602001610277565b34801561036757600080fd5b5061034d600c5481565b34801561037d57600080fd5b506102a061038c3660046123f6565b610b01565b34801561039d57600080fd5b5061034d6103ac366004612675565b610b33565b3480156103bd57600080fd5b5061034d6103cc3660046124d8565b610b46565b3480156103dd57600080fd5b5061034d6122b881565b3480156103f357600080fd5b506102a06104023660046123f6565b610bdc565b34801561041357600080fd5b506102a0610422366004612675565b610bf7565b34801561043357600080fd5b506104476104423660046123a8565b610c6e565b60405161027791906127ba565b34801561046057600080fd5b5061034d61046f366004612675565b610d10565b34801561048057600080fd5b506102a061048f36600461262c565b610da3565b3480156104a057600080fd5b5061034d610e37565b3480156104b557600080fd5b50600a54600160a01b900460ff1661026b565b3480156104d457600080fd5b506102e46104e3366004612675565b610e46565b3480156104f457600080fd5b5061034d6105033660046123a8565b610ebd565b34801561051457600080fd5b506102a0610f44565b6102a0610f7a565b34801561053157600080fd5b5061034d601481565b34801561054657600080fd5b5061034d66b1a2bc2ec5000081565b34801561056157600080fd5b50600a546001600160a01b03166102e4565b34801561057f57600080fd5b506102a061058e3660046125cc565b610fcd565b34801561059f57600080fd5b5061034d600d5481565b3480156105b557600080fd5b506102b7611056565b3480156105ca57600080fd5b5061034d61226081565b3480156105e057600080fd5b506102a0611065565b6102a06105f7366004612675565b61109e565b34801561060857600080fd5b506102a06106173660046124ae565b6112eb565b34801561062857600080fd5b506102a0610637366004612432565b6113b0565b34801561064857600080fd5b506102b7610657366004612675565b6113e8565b34801561066857600080fd5b50600e5461026b9060ff1681565b34801561068257600080fd5b5061034d605881565b34801561069757600080fd5b506102b761141c565b3480156106ac57600080fd5b506102e4738b587579cb2ad85ea46eee41fb1e788b49a8981d81565b3480156106d457600080fd5b5061026b6106e33660046123c3565b6001600160a01b03918216600090815260056020908152604080832093909416825291909152205460ff1690565b34801561071d57600080fd5b506102a061072c3660046123a8565b61142b565b600061073c826114c3565b92915050565b600a546001600160a01b031633146107755760405162461bcd60e51b815260040161076c90612863565b60405180910390fd5b6001811515141561078b576107886114e8565b50565b61078861158d565b6060600080546107a290612977565b80601f01602080910402602001604051908101604052809291908181526020018280546107ce90612977565b801561081b5780601f106107f05761010080835404028352916020019161081b565b820191906000526020600020905b8154815290600101906020018083116107fe57829003601f168201915b5050505050905090565b6000818152600260205260408120546001600160a01b031661089e5760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b606482015260840161076c565b506000908152600460205260409020546001600160a01b031690565b60006108c582610e46565b9050806001600160a01b0316836001600160a01b031614156109335760405162461bcd60e51b815260206004820152602160248201527f4552433732313a20617070726f76616c20746f2063757272656e74206f776e656044820152603960f91b606482015260840161076c565b336001600160a01b038216148061094f575061094f81336106e3565b6109c15760405162461bcd60e51b815260206004820152603860248201527f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760448201527f6e6572206e6f7220617070726f76656420666f7220616c6c0000000000000000606482015260840161076c565b6109cb8383611611565b505050565b600a546001600160a01b031633146109fa5760405162461bcd60e51b815260040161076c90612863565b6122b881610a0760085490565b610a1191906128e9565b1115610a4b5760405162461bcd60e51b815260206004820152600960248201526813585e081b1a5b5a5d60ba1b604482015260640161076c565b600c54605890610a5c9083906128e9565b1115610aa05760405162461bcd60e51b815260206004820152601360248201527222bc31b2b2b2399033b4b33a10373ab6b132b960691b604482015260640161076c565b60005b818110156109cb57600c8054906000610abb836129b2565b9190505550610aef838383818110610ad557610ad5612a23565b9050602002016020810190610aea91906123a8565b61167f565b80610af9816129b2565b915050610aa3565b610b0c335b826116a3565b610b285760405162461bcd60e51b815260040161076c90612898565b6109cb83838361179a565b600061073c66b1a2bc2ec5000083611945565b6000610b5183610ebd565b8210610bb35760405162461bcd60e51b815260206004820152602b60248201527f455243373231456e756d657261626c653a206f776e657220696e646578206f7560448201526a74206f6620626f756e647360a81b606482015260840161076c565b506001600160a01b03919091166000908152600660209081526040808320938352929052205490565b6109cb838383604051806020016040528060008152506113b0565b610c0033610b06565b610c655760405162461bcd60e51b815260206004820152603060248201527f4552433732314275726e61626c653a2063616c6c6572206973206e6f74206f7760448201526f1b995c881b9bdc88185c1c1c9bdd995960821b606482015260840161076c565b61078881611958565b60606000610c7b83610ebd565b905060008167ffffffffffffffff811115610c9857610c98612a39565b604051908082528060200260200182016040528015610cc1578160200160208202803683370190505b50905060005b82811015610d0857610cd98582610b46565b828281518110610ceb57610ceb612a23565b602090810291909101015280610d00816129b2565b915050610cc7565b509392505050565b6000610d1b60085490565b8210610d7e5760405162461bcd60e51b815260206004820152602c60248201527f455243373231456e756d657261626c653a20676c6f62616c20696e646578206f60448201526b7574206f6620626f756e647360a01b606482015260840161076c565b60088281548110610d9157610d91612a23565b90600052602060002001549050919050565b600a546001600160a01b03163314610dcd5760405162461bcd60e51b815260040161076c90612863565b600e5460ff1615610e205760405162461bcd60e51b815260206004820152601d60248201527f4c6f636b65643a2055524920616e642069742773206d65746164617461000000604482015260640161076c565b8051610e339060109060208401906121f9565b5050565b6000610e416119ff565b905090565b6000818152600260205260408120546001600160a01b03168061073c5760405162461bcd60e51b815260206004820152602960248201527f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460448201526832b73a103a37b5b2b760b91b606482015260840161076c565b60006001600160a01b038216610f285760405162461bcd60e51b815260206004820152602a60248201527f4552433732313a2062616c616e636520717565727920666f7220746865207a65604482015269726f206164647265737360b01b606482015260840161076c565b506001600160a01b031660009081526003602052604090205490565b600a546001600160a01b03163314610f6e5760405162461bcd60e51b815260040161076c90612863565b610f786000611a0a565b565b600a546001600160a01b03163314610fa45760405162461bcd60e51b815260040161076c90612863565b4780610faf57600080fd5b610788738b587579cb2ad85ea46eee41fb1e788b49a8981d47611a5c565b600a546001600160a01b03163314610ff75760405162461bcd60e51b815260040161076c90612863565b600e5460ff161561104a5760405162461bcd60e51b815260206004820152601d60248201527f4c6f636b65643a2055524920616e642069742773206d65746164617461000000604482015260640161076c565b6109cb600f838361227d565b6060600180546107a290612977565b600a546001600160a01b0316331461108f5760405162461bcd60e51b815260040161076c90612863565b600e805460ff19166001179055565b6122b86110a96119ff565b11156110e25760405162461bcd60e51b815260206004820152600860248201526714d85b1948195b9960c21b604482015260640161076c565b600a546001600160a01b0316331461114157600a54600160a01b900460ff16156111415760405162461bcd60e51b815260206004820152601060248201526f14185d5cd8589b194e881c185d5cd95960821b604482015260640161076c565b600061114b6119ff565b90506122b861115a83836128e9565b11156111945760405162461bcd60e51b815260206004820152600960248201526813585e081b1a5b5a5d60ba1b604482015260640161076c565b6122b88111156111d15760405162461bcd60e51b815260206004820152600860248201526714d85b1948195b9960c21b604482015260640161076c565b61226082600d546111e291906128e9565b11156112225760405162461bcd60e51b815260206004820152600f60248201526e45786365656473207075626c69637360881b604482015260640161076c565b60148211156112645760405162461bcd60e51b815260206004820152600e60248201526d22bc31b2b2b23990373ab6b132b960911b604482015260640161076c565b61126d82610b33565b3410156112b05760405162461bcd60e51b815260206004820152601160248201527056616c75652062656c6f7720707269636560781b604482015260640161076c565b60005b828110156109cb57600d80549060006112cb836129b2565b91905055506112d93361167f565b806112e3816129b2565b9150506112b3565b6001600160a01b0382163314156113445760405162461bcd60e51b815260206004820152601960248201527f4552433732313a20617070726f766520746f2063616c6c657200000000000000604482015260640161076c565b3360008181526005602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b6113ba33836116a3565b6113d65760405162461bcd60e51b815260040161076c90612898565b6113e284848484611af2565b50505050565b606060106113f583611b25565b6040516020016114069291906126d6565b6040516020818303038152906040529050919050565b6060600f80546107a290612977565b600a546001600160a01b031633146114555760405162461bcd60e51b815260040161076c90612863565b6001600160a01b0381166114ba5760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b606482015260840161076c565b61078881611a0a565b60006001600160e01b0319821663780e9d6360e01b148061073c575061073c82611c23565b600a54600160a01b900460ff16156115355760405162461bcd60e51b815260206004820152601060248201526f14185d5cd8589b194e881c185d5cd95960821b604482015260640161076c565b600a805460ff60a01b1916600160a01b1790557f62e78cea01bee320cd4e420270b5ea74000d11b0c9f74754ebdbfc544b05a2586115703390565b6040516001600160a01b03909116815260200160405180910390a1565b600a54600160a01b900460ff166115dd5760405162461bcd60e51b815260206004820152601460248201527314185d5cd8589b194e881b9bdd081c185d5cd95960621b604482015260640161076c565b600a805460ff60a01b191690557f5db9ee0a495bf2e6ff9c91a7834c1ba4fdd244a5e8aa4e537bd38aeae4b073aa33611570565b600081815260046020526040902080546001600160a01b0319166001600160a01b038416908117909155819061164682610e46565b6001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b60006116896119ff565b9050611699600b80546001019055565b610e338282611c73565b6000818152600260205260408120546001600160a01b031661171c5760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b606482015260840161076c565b600061172783610e46565b9050806001600160a01b0316846001600160a01b031614806117625750836001600160a01b031661175784610825565b6001600160a01b0316145b8061179257506001600160a01b0380821660009081526005602090815260408083209388168352929052205460ff165b949350505050565b826001600160a01b03166117ad82610e46565b6001600160a01b0316146118155760405162461bcd60e51b815260206004820152602960248201527f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960448201526839903737ba1037bbb760b91b606482015260840161076c565b6001600160a01b0382166118775760405162461bcd60e51b8152602060048201526024808201527f4552433732313a207472616e7366657220746f20746865207a65726f206164646044820152637265737360e01b606482015260840161076c565b611882838383611c8d565b61188d600082611611565b6001600160a01b03831660009081526003602052604081208054600192906118b6908490612934565b90915550506001600160a01b03821660009081526003602052604081208054600192906118e49084906128e9565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b0386811691821790925591518493918716917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef91a4505050565b60006119518284612915565b9392505050565b600061196382610e46565b905061197181600084611c8d565b61197c600083611611565b6001600160a01b03811660009081526003602052604081208054600192906119a5908490612934565b909155505060008281526002602052604080822080546001600160a01b0319169055518391906001600160a01b038416907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908390a45050565b6000610e41600b5490565b600a80546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6000826001600160a01b03168260405160006040518083038185875af1925050503d8060008114611aa9576040519150601f19603f3d011682016040523d82523d6000602084013e611aae565b606091505b50509050806109cb5760405162461bcd60e51b815260206004820152601060248201526f2a3930b739b332b9103330b4b632b21760811b604482015260640161076c565b611afd84848461179a565b611b0984848484611c98565b6113e25760405162461bcd60e51b815260040161076c90612811565b606081611b495750506040805180820190915260018152600360fc1b602082015290565b8160005b8115611b735780611b5d816129b2565b9150611b6c9050600a83612901565b9150611b4d565b60008167ffffffffffffffff811115611b8e57611b8e612a39565b6040519080825280601f01601f191660200182016040528015611bb8576020820181803683370190505b5090505b841561179257611bcd600183612934565b9150611bda600a866129cd565b611be59060306128e9565b60f81b818381518110611bfa57611bfa612a23565b60200101906001600160f81b031916908160001a905350611c1c600a86612901565b9450611bbc565b60006001600160e01b031982166380ac58cd60e01b1480611c5457506001600160e01b03198216635b5e139f60e01b145b8061073c57506301ffc9a760e01b6001600160e01b031983161461073c565b610e33828260405180602001604052806000815250611da5565b6109cb838383611dd8565b60006001600160a01b0384163b15611d9a57604051630a85bd0160e11b81526001600160a01b0385169063150b7a0290611cdc90339089908890889060040161277d565b602060405180830381600087803b158015611cf657600080fd5b505af1925050508015611d26575060408051601f3d908101601f19168201909252611d23918101906125af565b60015b611d80573d808015611d54576040519150601f19603f3d011682016040523d82523d6000602084013e611d59565b606091505b508051611d785760405162461bcd60e51b815260040161076c90612811565b805181602001fd5b6001600160e01b031916630a85bd0160e11b149050611792565b506001949350505050565b611daf8383611e63565b611dbc6000848484611c98565b6109cb5760405162461bcd60e51b815260040161076c90612811565b611de3838383611fb1565b600a546001600160a01b031633146109cb57600a54600160a01b900460ff16156109cb5760405162461bcd60e51b815260206004820152602b60248201527f4552433732315061757361626c653a20746f6b656e207472616e73666572207760448201526a1a1a5b19481c185d5cd95960aa1b606482015260840161076c565b6001600160a01b038216611eb95760405162461bcd60e51b815260206004820181905260248201527f4552433732313a206d696e7420746f20746865207a65726f2061646472657373604482015260640161076c565b6000818152600260205260409020546001600160a01b031615611f1e5760405162461bcd60e51b815260206004820152601c60248201527f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000604482015260640161076c565b611f2a60008383611c8d565b6001600160a01b0382166000908152600360205260408120805460019290611f539084906128e9565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b03861690811790915590518392907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a45050565b6001600160a01b03831661200c5761200781600880546000838152600960205260408120829055600182018355919091527ff3f7a9fe364faab93b216da50a3214154f22a0a2b415b23a84c8169e8b636ee30155565b61202f565b816001600160a01b0316836001600160a01b03161461202f5761202f8382612069565b6001600160a01b038216612046576109cb81612106565b826001600160a01b0316826001600160a01b0316146109cb576109cb82826121b5565b6000600161207684610ebd565b6120809190612934565b6000838152600760205260409020549091508082146120d3576001600160a01b03841660009081526006602090815260408083208584528252808320548484528184208190558352600790915290208190555b5060009182526007602090815260408084208490556001600160a01b039094168352600681528383209183525290812055565b60085460009061211890600190612934565b6000838152600960205260408120546008805493945090928490811061214057612140612a23565b90600052602060002001549050806008838154811061216157612161612a23565b600091825260208083209091019290925582815260099091526040808220849055858252812055600880548061219957612199612a0d565b6001900381819060005260206000200160009055905550505050565b60006121c083610ebd565b6001600160a01b039093166000908152600660209081526040808320868452825280832085905593825260079052919091209190915550565b82805461220590612977565b90600052602060002090601f016020900481019282612227576000855561226d565b82601f1061224057805160ff191683800117855561226d565b8280016001018555821561226d579182015b8281111561226d578251825591602001919060010190612252565b506122799291506122f1565b5090565b82805461228990612977565b90600052602060002090601f0160209004810192826122ab576000855561226d565b82601f106122c45782800160ff1982351617855561226d565b8280016001018555821561226d579182015b8281111561226d5782358255916020019190600101906122d6565b5b8082111561227957600081556001016122f2565b600067ffffffffffffffff8084111561232157612321612a39565b604051601f8501601f19908116603f0116810190828211818310171561234957612349612a39565b8160405280935085815286868601111561236257600080fd5b858560208301376000602087830101525050509392505050565b80356001600160a01b038116811461239357600080fd5b919050565b8035801515811461239357600080fd5b6000602082840312156123ba57600080fd5b6119518261237c565b600080604083850312156123d657600080fd5b6123df8361237c565b91506123ed6020840161237c565b90509250929050565b60008060006060848603121561240b57600080fd5b6124148461237c565b92506124226020850161237c565b9150604084013590509250925092565b6000806000806080858703121561244857600080fd5b6124518561237c565b935061245f6020860161237c565b925060408501359150606085013567ffffffffffffffff81111561248257600080fd5b8501601f8101871361249357600080fd5b6124a287823560208401612306565b91505092959194509250565b600080604083850312156124c157600080fd5b6124ca8361237c565b91506123ed60208401612398565b600080604083850312156124eb57600080fd5b6124f48361237c565b946020939093013593505050565b6000806020838503121561251557600080fd5b823567ffffffffffffffff8082111561252d57600080fd5b818501915085601f83011261254157600080fd5b81358181111561255057600080fd5b8660208260051b850101111561256557600080fd5b60209290920196919550909350505050565b60006020828403121561258957600080fd5b61195182612398565b6000602082840312156125a457600080fd5b813561195181612a4f565b6000602082840312156125c157600080fd5b815161195181612a4f565b600080602083850312156125df57600080fd5b823567ffffffffffffffff808211156125f757600080fd5b818501915085601f83011261260b57600080fd5b81358181111561261a57600080fd5b86602082850101111561256557600080fd5b60006020828403121561263e57600080fd5b813567ffffffffffffffff81111561265557600080fd5b8201601f8101841361266657600080fd5b61179284823560208401612306565b60006020828403121561268757600080fd5b5035919050565b600081518084526126a681602086016020860161294b565b601f01601f19169290920160200192915050565b600081516126cc81856020860161294b565b9290920192915050565b600080845481600182811c9150808316806126f257607f831692505b602080841082141561271257634e487b7160e01b86526022600452602486fd5b818015612726576001811461273757612764565b60ff19861689528489019650612764565b60008b81526020902060005b8681101561275c5781548b820152908501908301612743565b505084890196505b50505050505061277481856126ba565b95945050505050565b6001600160a01b03858116825284166020820152604081018390526080606082018190526000906127b09083018461268e565b9695505050505050565b6020808252825182820181905260009190848201906040850190845b818110156127f2578351835292840192918401916001016127d6565b50909695505050505050565b602081526000611951602083018461268e565b60208082526032908201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560408201527131b2b4bb32b91034b6b83632b6b2b73a32b960711b606082015260800190565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b60208082526031908201527f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f6040820152701ddb995c881b9bdc88185c1c1c9bdd9959607a1b606082015260800190565b600082198211156128fc576128fc6129e1565b500190565b600082612910576129106129f7565b500490565b600081600019048311821515161561292f5761292f6129e1565b500290565b600082821015612946576129466129e1565b500390565b60005b8381101561296657818101518382015260200161294e565b838111156113e25750506000910152565b600181811c9082168061298b57607f821691505b602082108114156129ac57634e487b7160e01b600052602260045260246000fd5b50919050565b60006000198214156129c6576129c66129e1565b5060010190565b6000826129dc576129dc6129f7565b500690565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052601260045260246000fd5b634e487b7160e01b600052603160045260246000fd5b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b6001600160e01b03198116811461078857600080fdfea264697066735822122035a087bc05a93280283837200797b547414b64db6a289d5a4523f2de01d2dcc864736f6c63430008070033

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

00000000000000000000000000000000000000000000000000000000000000200000000000000000000000000000000000000000000000000000000000000036697066733a2f2f516d5a6d34345174333574506d6139765066433538477946736e70716557505666797869754c54414561466b766b2f00000000000000000000

-----Decoded View---------------
Arg [0] : baseURI (string): ipfs://QmZm44Qt35tPma9vPfC58GyFsnpqeWPVfyxiuLTAEaFkvk/

-----Encoded View---------------
4 Constructor Arguments found :
Arg [0] : 0000000000000000000000000000000000000000000000000000000000000020
Arg [1] : 0000000000000000000000000000000000000000000000000000000000000036
Arg [2] : 697066733a2f2f516d5a6d34345174333574506d613976506643353847794673
Arg [3] : 6e70716557505666797869754c54414561466b766b2f00000000000000000000


Deployed Bytecode Sourcemap

55559:4854:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;60225:179;;;;;;;;;;-1:-1:-1;60225:179:0;;;;;:::i;:::-;;:::i;:::-;;;8861:14:1;;8854:22;8836:41;;8824:2;8809:18;60225:179:0;;;;;;;;59420:154;;;;;;;;;;-1:-1:-1;59420:154:0;;;;;:::i;:::-;;:::i;:::-;;35555:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;37114:221::-;;;;;;;;;;-1:-1:-1;37114:221:0;;;;;:::i;:::-;;:::i;:::-;;;-1:-1:-1;;;;;7522:32:1;;;7504:51;;7492:2;7477:18;37114:221:0;7358:203:1;36637:411:0;;;;;;;;;;-1:-1:-1;36637:411:0;;;;;:::i;:::-;;:::i;57829:389::-;;;;;;;;;;-1:-1:-1;57829:389:0;;;;;:::i;:::-;;:::i;49012:113::-;;;;;;;;;;-1:-1:-1;49100:10:0;:17;49012:113;;;20329:25:1;;;20317:2;20302:18;49012:113:0;20183:177:1;56135:27:0;;;;;;;;;;;;;;;;38004:339;;;;;;;;;;-1:-1:-1;38004:339:0;;;;;:::i;:::-;;:::i;56799:104::-;;;;;;;;;;-1:-1:-1;56799:104:0;;;;;:::i;:::-;;:::i;48680:256::-;;;;;;;;;;-1:-1:-1;48680:256:0;;;;;:::i;:::-;;:::i;55925:43::-;;;;;;;;;;;;55964:4;55925:43;;38414:185;;;;;;;;;;-1:-1:-1;38414:185:0;;;;;:::i;:::-;;:::i;47190:245::-;;;;;;;;;;-1:-1:-1;47190:245:0;;;;;:::i;:::-;;:::i;59059:353::-;;;;;;;;;;-1:-1:-1;59059:353:0;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;49202:233::-;;;;;;;;;;-1:-1:-1;49202:233:0;;;;;:::i;:::-;;:::i;58515:112::-;;;;;;;;;;-1:-1:-1;58515:112:0;;;;;:::i;:::-;;:::i;57025:91::-;;;;;;;;;;;;;:::i;1956:86::-;;;;;;;;;;-1:-1:-1;2027:7:0;;-1:-1:-1;;;2027:7:0;;;;1956:86;;35249:239;;;;;;;;;;-1:-1:-1;35249:239:0;;;;;:::i;:::-;;:::i;34979:208::-;;;;;;;;;;-1:-1:-1;34979:208:0;;;;;:::i;:::-;;:::i;13160:94::-;;;;;;;;;;;;;:::i;59582:199::-;;;:::i;56038:40::-;;;;;;;;;;;;56076:2;56038:40;;55975:42;;;;;;;;;;;;56007:10;55975:42;;12509:87;;;;;;;;;;-1:-1:-1;12582:6:0;;-1:-1:-1;;;;;12582:6:0;12509:87;;58639:111;;;;;;;;;;-1:-1:-1;58639:111:0;;;;;:::i;:::-;;:::i;56169:33::-;;;;;;;;;;;;;;;;35724:104;;;;;;;;;;;;;:::i;55877:41::-;;;;;;;;;;;;55914:4;55877:41;;57164:75;;;;;;;;;;;;;:::i;57253:564::-;;;;;;:::i;:::-;;:::i;37407:295::-;;;;;;;;;;-1:-1:-1;37407:295:0;;;;;:::i;:::-;;:::i;38670:328::-;;;;;;;;;;-1:-1:-1;38670:328:0;;;;;:::i;:::-;;:::i;58871:180::-;;;;;;;;;;-1:-1:-1;58871:180:0;;;;;:::i;:::-;;:::i;56215:18::-;;;;;;;;;;-1:-1:-1;56215:18:0;;;;;;;;56085:37;;;;;;;;;;;;56120:2;56085:37;;58762:97;;;;;;;;;;;;;:::i;55781:83::-;;;;;;;;;;;;55822:42;55781:83;;37773:164;;;;;;;;;;-1:-1:-1;37773:164:0;;;;;:::i;:::-;-1:-1:-1;;;;;37894:25:0;;;37870:4;37894:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;;;;37773:164;13409:192;;;;;;;;;;-1:-1:-1;13409:192:0;;;;;:::i;:::-;;:::i;60225:179::-;60336:4;60360:36;60384:11;60360:23;:36::i;:::-;60353:43;60225:179;-1:-1:-1;;60225:179:0:o;59420:154::-;12582:6;;-1:-1:-1;;;;;12582:6:0;740:10;12729:23;12721:68;;;;-1:-1:-1;;;12721:68:0;;;;;;;:::i;:::-;;;;;;;;;59484:4:::1;59477:11:::0;::::1;;;59473:73;;;59505:8;:6;:8::i;:::-;59420:154:::0;:::o;59473:73::-:1;59556:10;:8;:10::i;35555:100::-:0;35609:13;35642:5;35635:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;35555:100;:::o;37114:221::-;37190:7;40597:16;;;:7;:16;;;;;;-1:-1:-1;;;;;40597:16:0;37210:73;;;;-1:-1:-1;;;37210:73:0;;16502:2:1;37210:73:0;;;16484:21:1;16541:2;16521:18;;;16514:30;16580:34;16560:18;;;16553:62;-1:-1:-1;;;16631:18:1;;;16624:42;16683:19;;37210:73:0;16300:408:1;37210:73:0;-1:-1:-1;37303:24:0;;;;:15;:24;;;;;;-1:-1:-1;;;;;37303:24:0;;37114:221::o;36637:411::-;36718:13;36734:23;36749:7;36734:14;:23::i;:::-;36718:39;;36782:5;-1:-1:-1;;;;;36776:11:0;:2;-1:-1:-1;;;;;36776:11:0;;;36768:57;;;;-1:-1:-1;;;36768:57:0;;18390:2:1;36768:57:0;;;18372:21:1;18429:2;18409:18;;;18402:30;18468:34;18448:18;;;18441:62;-1:-1:-1;;;18519:18:1;;;18512:31;18560:19;;36768:57:0;18188:397:1;36768:57:0;740:10;-1:-1:-1;;;;;36860:21:0;;;;:62;;-1:-1:-1;36885:37:0;36902:5;740:10;37773:164;:::i;36885:37::-;36838:168;;;;-1:-1:-1;;;36838:168:0;;14211:2:1;36838:168:0;;;14193:21:1;14250:2;14230:18;;;14223:30;14289:34;14269:18;;;14262:62;14360:26;14340:18;;;14333:54;14404:19;;36838:168:0;14009:420:1;36838:168:0;37019:21;37028:2;37032:7;37019:8;:21::i;:::-;36707:341;36637:411;;:::o;57829:389::-;12582:6;;-1:-1:-1;;;;;12582:6:0;740:10;12729:23;12721:68;;;;-1:-1:-1;;;12721:68:0;;;;;;;:::i;:::-;55964:4:::1;57927:9:::0;57911:13:::1;49100:10:::0;:17;;49012:113;57911:13:::1;:32;;;;:::i;:::-;:48;;57903:70;;;::::0;-1:-1:-1;;;57903:70:0;;12772:2:1;57903:70:0::1;::::0;::::1;12754:21:1::0;12811:1;12791:18;;;12784:29;-1:-1:-1;;;12829:18:1;;;12822:39;12878:18;;57903:70:0::1;12570:332:1::0;57903:70:0::1;57992:12;::::0;56120:2:::1;::::0;57992:31:::1;::::0;58007:9;;57992:31:::1;:::i;:::-;:43;;57984:75;;;::::0;-1:-1:-1;;;57984:75:0;;16154:2:1;57984:75:0::1;::::0;::::1;16136:21:1::0;16193:2;16173:18;;;16166:30;-1:-1:-1;;;16212:18:1;;;16205:49;16271:18;;57984:75:0::1;15952:343:1::0;57984:75:0::1;58085:9;58080:131;58100:20:::0;;::::1;58080:131;;;58142:12;:14:::0;;;:12:::1;:14;::::0;::::1;:::i;:::-;;;;;;58171:28;58186:9;;58196:1;58186:12;;;;;;;:::i;:::-;;;;;;;;;;;;;;:::i;:::-;58171:14;:28::i;:::-;58122:3:::0;::::1;::::0;::::1;:::i;:::-;;;;58080:131;;38004:339:::0;38199:41;740:10;38218:12;38232:7;38199:18;:41::i;:::-;38191:103;;;;-1:-1:-1;;;38191:103:0;;;;;;;:::i;:::-;38307:28;38317:4;38323:2;38327:7;38307:9;:28::i;56799:104::-;56851:7;56878:17;56007:10;56888:6;56878:9;:17::i;48680:256::-;48777:7;48813:23;48830:5;48813:16;:23::i;:::-;48805:5;:31;48797:87;;;;-1:-1:-1;;;48797:87:0;;10418:2:1;48797:87:0;;;10400:21:1;10457:2;10437:18;;;10430:30;10496:34;10476:18;;;10469:62;-1:-1:-1;;;10547:18:1;;;10540:41;10598:19;;48797:87:0;10216:407:1;48797:87:0;-1:-1:-1;;;;;;48902:19:0;;;;;;;;:12;:19;;;;;;;;:26;;;;;;;;;48680:256::o;38414:185::-;38552:39;38569:4;38575:2;38579:7;38552:39;;;;;;;;;;;;:16;:39::i;47190:245::-;47308:41;740:10;47327:12;660:98;47308:41;47300:102;;;;-1:-1:-1;;;47300:102:0;;19968:2:1;47300:102:0;;;19950:21:1;20007:2;19987:18;;;19980:30;20046:34;20026:18;;;20019:62;-1:-1:-1;;;20097:18:1;;;20090:46;20153:19;;47300:102:0;19766:412:1;47300:102:0;47413:14;47419:7;47413:5;:14::i;59059:353::-;59121:16;59150:18;59171:17;59181:6;59171:9;:17::i;:::-;59150:38;;59201:25;59243:10;59229:25;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;59229:25:0;;59201:53;;59270:9;59265:112;59289:10;59285:1;:14;59265:112;;;59335:30;59355:6;59363:1;59335:19;:30::i;:::-;59321:8;59330:1;59321:11;;;;;;;;:::i;:::-;;;;;;;;;;:44;59301:3;;;;:::i;:::-;;;;59265:112;;;-1:-1:-1;59396:8:0;59059:353;-1:-1:-1;;;59059:353:0:o;49202:233::-;49277:7;49313:30;49100:10;:17;;49012:113;49313:30;49305:5;:38;49297:95;;;;-1:-1:-1;;;49297:95:0;;19555:2:1;49297:95:0;;;19537:21:1;19594:2;19574:18;;;19567:30;19633:34;19613:18;;;19606:62;-1:-1:-1;;;19684:18:1;;;19677:42;19736:19;;49297:95:0;19353:408:1;49297:95:0;49410:10;49421:5;49410:17;;;;;;;;:::i;:::-;;;;;;;;;49403:24;;49202:233;;;:::o;58515:112::-;12582:6;;-1:-1:-1;;;;;12582:6:0;740:10;12729:23;12721:68;;;;-1:-1:-1;;;12721:68:0;;;;;;;:::i;:::-;56507:6:::1;::::0;::::1;;56506:7;56498:49;;;::::0;-1:-1:-1;;;56498:49:0;;17276:2:1;56498:49:0::1;::::0;::::1;17258:21:1::0;17315:2;17295:18;;;17288:30;17354:31;17334:18;;;17327:59;17403:18;;56498:49:0::1;17074:353:1::0;56498:49:0::1;58596:23:::0;;::::2;::::0;:13:::2;::::0;:23:::2;::::0;::::2;::::0;::::2;:::i;:::-;;58515:112:::0;:::o;57025:91::-;57067:7;57094:14;:12;:14::i;:::-;57087:21;;57025:91;:::o;35249:239::-;35321:7;35357:16;;;:7;:16;;;;;;-1:-1:-1;;;;;35357:16:0;35392:19;35384:73;;;;-1:-1:-1;;;35384:73:0;;15047:2:1;35384:73:0;;;15029:21:1;15086:2;15066:18;;;15059:30;15125:34;15105:18;;;15098:62;-1:-1:-1;;;15176:18:1;;;15169:39;15225:19;;35384:73:0;14845:405:1;34979:208:0;35051:7;-1:-1:-1;;;;;35079:19:0;;35071:74;;;;-1:-1:-1;;;35071:74:0;;14636:2:1;35071:74:0;;;14618:21:1;14675:2;14655:18;;;14648:30;14714:34;14694:18;;;14687:62;-1:-1:-1;;;14765:18:1;;;14758:40;14815:19;;35071:74:0;14434:406:1;35071:74:0;-1:-1:-1;;;;;;35163:16:0;;;;;:9;:16;;;;;;;34979:208::o;13160:94::-;12582:6;;-1:-1:-1;;;;;12582:6:0;740:10;12729:23;12721:68;;;;-1:-1:-1;;;12721:68:0;;;;;;;:::i;:::-;13225:21:::1;13243:1;13225:9;:21::i;:::-;13160:94::o:0;59582:199::-;12582:6;;-1:-1:-1;;;;;12582:6:0;740:10;12729:23;12721:68;;;;-1:-1:-1;;;12721:68:0;;;;;;;:::i;:::-;59659:21:::1;59699:11:::0;59691:20:::1;;;::::0;::::1;;59724:49;55822:42;59751:21;59724:10;:49::i;58639:111::-:0;12582:6;;-1:-1:-1;;;;;12582:6:0;740:10;12729:23;12721:68;;;;-1:-1:-1;;;12721:68:0;;;;;;;:::i;:::-;56507:6:::1;::::0;::::1;;56506:7;56498:49;;;::::0;-1:-1:-1;;;56498:49:0;;17276:2:1;56498:49:0::1;::::0;::::1;17258:21:1::0;17315:2;17295:18;;;17288:30;17354:31;17334:18;;;17327:59;17403:18;;56498:49:0::1;17074:353:1::0;56498:49:0::1;58724:18:::2;:12;58739:3:::0;;58724:18:::2;:::i;35724:104::-:0;35780:13;35813:7;35806:14;;;;;:::i;57164:75::-;12582:6;;-1:-1:-1;;;;;12582:6:0;740:10;12729:23;12721:68;;;;-1:-1:-1;;;12721:68:0;;;;;;;:::i;:::-;57218:6:::1;:13:::0;;-1:-1:-1;;57218:13:0::1;57227:4;57218:13;::::0;;57164:75::o;57253:564::-;55964:4;56620:14;:12;:14::i;:::-;:30;;56612:51;;;;-1:-1:-1;;;56612:51:0;;15818:2:1;56612:51:0;;;15800:21:1;15857:1;15837:18;;;15830:29;-1:-1:-1;;;15875:18:1;;;15868:38;15923:18;;56612:51:0;15616:331:1;56612:51:0;12582:6;;-1:-1:-1;;;;;12582:6:0;740:10;56678:23;56674:94;;2027:7;;-1:-1:-1;;;2027:7:0;;;;56726:9;56718:38;;;;-1:-1:-1;;;56718:38:0;;13522:2:1;56718:38:0;;;13504:21:1;13561:2;13541:18;;;13534:30;-1:-1:-1;;;13580:18:1;;;13573:46;13636:18;;56718:38:0;13320:340:1;56718:38:0;57320:13:::1;57336:14;:12;:14::i;:::-;57320:30:::0;-1:-1:-1;55964:4:0::1;57369:14;57377:6:::0;57320:30;57369:14:::1;:::i;:::-;:30;;57361:52;;;::::0;-1:-1:-1;;;57361:52:0;;12772:2:1;57361:52:0::1;::::0;::::1;12754:21:1::0;12811:1;12791:18;;;12784:29;-1:-1:-1;;;12829:18:1;;;12822:39;12878:18;;57361:52:0::1;12570:332:1::0;57361:52:0::1;55964:4;57432:5;:21;;57424:42;;;::::0;-1:-1:-1;;;57424:42:0;;15818:2:1;57424:42:0::1;::::0;::::1;15800:21:1::0;15857:1;15837:18;;;15830:29;-1:-1:-1;;;15875:18:1;;;15868:38;15923:18;;57424:42:0::1;15616:331:1::0;57424:42:0::1;55914:4;57506:6;57485:18;;:27;;;;:::i;:::-;:41;;57477:69;;;::::0;-1:-1:-1;;;57477:69:0;;13867:2:1;57477:69:0::1;::::0;::::1;13849:21:1::0;13906:2;13886:18;;;13879:30;-1:-1:-1;;;13925:18:1;;;13918:45;13980:18;;57477:69:0::1;13665:339:1::0;57477:69:0::1;56076:2;57565:6;:21;;57557:48;;;::::0;-1:-1:-1;;;57557:48:0;;10075:2:1;57557:48:0::1;::::0;::::1;10057:21:1::0;10114:2;10094:18;;;10087:30;-1:-1:-1;;;10133:18:1;;;10126:44;10187:18;;57557:48:0::1;9873:338:1::0;57557:48:0::1;57637:13;57643:6;57637:5;:13::i;:::-;57624:9;:26;;57616:56;;;::::0;-1:-1:-1;;;57616:56:0;;18044:2:1;57616:56:0::1;::::0;::::1;18026:21:1::0;18083:2;18063:18;;;18056:30;-1:-1:-1;;;18102:18:1;;;18095:47;18159:18;;57616:56:0::1;17842:341:1::0;57616:56:0::1;57690:9;57685:125;57709:6;57705:1;:10;57685:125;;;57737:18;:20:::0;;;:18:::1;:20;::::0;::::1;:::i;:::-;;;;;;57772:26;57787:10;57772:14;:26::i;:::-;57717:3:::0;::::1;::::0;::::1;:::i;:::-;;;;57685:125;;37407:295:::0;-1:-1:-1;;;;;37510:24:0;;740:10;37510:24;;37502:62;;;;-1:-1:-1;;;37502:62:0;;12418:2:1;37502:62:0;;;12400:21:1;12457:2;12437:18;;;12430:30;12496:27;12476:18;;;12469:55;12541:18;;37502:62:0;12216:349:1;37502:62:0;740:10;37577:32;;;;:18;:32;;;;;;;;-1:-1:-1;;;;;37577:42:0;;;;;;;;;;;;:53;;-1:-1:-1;;37577:53:0;;;;;;;;;;37646:48;;8836:41:1;;;37577:42:0;;740:10;37646:48;;8809:18:1;37646:48:0;;;;;;;37407:295;;:::o;38670:328::-;38845:41;740:10;38878:7;38845:18;:41::i;:::-;38837:103;;;;-1:-1:-1;;;38837:103:0;;;;;;;:::i;:::-;38951:39;38965:4;38971:2;38975:7;38984:5;38951:13;:39::i;:::-;38670:328;;;;:::o;58871:180::-;58944:13;59001;59016:25;59033:7;59016:16;:25::i;:::-;58984:58;;;;;;;;;:::i;:::-;;;;;;;;;;;;;58970:73;;58871:180;;;:::o;58762:97::-;58806:13;58839:12;58832:19;;;;;:::i;13409:192::-;12582:6;;-1:-1:-1;;;;;12582:6:0;740:10;12729:23;12721:68;;;;-1:-1:-1;;;12721:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;13498:22:0;::::1;13490:73;;;::::0;-1:-1:-1;;;13490:73:0;;11249:2:1;13490:73:0::1;::::0;::::1;11231:21:1::0;11288:2;11268:18;;;11261:30;11327:34;11307:18;;;11300:62;-1:-1:-1;;;11378:18:1;;;11371:36;11424:19;;13490:73:0::1;11047:402:1::0;13490:73:0::1;13574:19;13584:8;13574:9;:19::i;48372:224::-:0;48474:4;-1:-1:-1;;;;;;48498:50:0;;-1:-1:-1;;;48498:50:0;;:90;;;48552:36;48576:11;48552:23;:36::i;2756:118::-;2027:7;;-1:-1:-1;;;2027:7:0;;;;2281:9;2273:38;;;;-1:-1:-1;;;2273:38:0;;13522:2:1;2273:38:0;;;13504:21:1;13561:2;13541:18;;;13534:30;-1:-1:-1;;;13580:18:1;;;13573:46;13636:18;;2273:38:0;13320:340:1;2273:38:0;2816:7:::1;:14:::0;;-1:-1:-1;;;;2816:14:0::1;-1:-1:-1::0;;;2816:14:0::1;::::0;;2846:20:::1;2853:12;740:10:::0;;660:98;2853:12:::1;2846:20;::::0;-1:-1:-1;;;;;7522:32:1;;;7504:51;;7492:2;7477:18;2846:20:0::1;;;;;;;2756:118::o:0;3015:120::-;2027:7;;-1:-1:-1;;;2027:7:0;;;;2551:41;;;;-1:-1:-1;;;2551:41:0;;9726:2:1;2551:41:0;;;9708:21:1;9765:2;9745:18;;;9738:30;-1:-1:-1;;;9784:18:1;;;9777:50;9844:18;;2551:41:0;9524:344:1;2551:41:0;3074:7:::1;:15:::0;;-1:-1:-1;;;;3074:15:0::1;::::0;;3105:22:::1;740:10:::0;3114:12:::1;660:98:::0;44490:174;44565:24;;;;:15;:24;;;;;:29;;-1:-1:-1;;;;;;44565:29:0;-1:-1:-1;;;;;44565:29:0;;;;;;;;:24;;44619:23;44565:24;44619:14;:23::i;:::-;-1:-1:-1;;;;;44610:46:0;;;;;;;;;;;44490:174;;:::o;58230:155::-;58286:7;58296:14;:12;:14::i;:::-;58286:24;;58321:27;:15;4172:19;;4190:1;4172:19;;;4083:127;58321:27;58359:18;58369:3;58374:2;58359:9;:18::i;40802:348::-;40895:4;40597:16;;;:7;:16;;;;;;-1:-1:-1;;;;;40597:16:0;40912:73;;;;-1:-1:-1;;;40912:73:0;;13109:2:1;40912:73:0;;;13091:21:1;13148:2;13128:18;;;13121:30;13187:34;13167:18;;;13160:62;-1:-1:-1;;;13238:18:1;;;13231:42;13290:19;;40912:73:0;12907:408:1;40912:73:0;40996:13;41012:23;41027:7;41012:14;:23::i;:::-;40996:39;;41065:5;-1:-1:-1;;;;;41054:16:0;:7;-1:-1:-1;;;;;41054:16:0;;:51;;;;41098:7;-1:-1:-1;;;;;41074:31:0;:20;41086:7;41074:11;:20::i;:::-;-1:-1:-1;;;;;41074:31:0;;41054:51;:87;;;-1:-1:-1;;;;;;37894:25:0;;;37870:4;37894:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;41109:32;41046:96;40802:348;-1:-1:-1;;;;40802:348:0:o;43794:578::-;43953:4;-1:-1:-1;;;;;43926:31:0;:23;43941:7;43926:14;:23::i;:::-;-1:-1:-1;;;;;43926:31:0;;43918:85;;;;-1:-1:-1;;;43918:85:0;;17634:2:1;43918:85:0;;;17616:21:1;17673:2;17653:18;;;17646:30;17712:34;17692:18;;;17685:62;-1:-1:-1;;;17763:18:1;;;17756:39;17812:19;;43918:85:0;17432:405:1;43918:85:0;-1:-1:-1;;;;;44022:16:0;;44014:65;;;;-1:-1:-1;;;44014:65:0;;12013:2:1;44014:65:0;;;11995:21:1;12052:2;12032:18;;;12025:30;12091:34;12071:18;;;12064:62;-1:-1:-1;;;12142:18:1;;;12135:34;12186:19;;44014:65:0;11811:400:1;44014:65:0;44092:39;44113:4;44119:2;44123:7;44092:20;:39::i;:::-;44196:29;44213:1;44217:7;44196:8;:29::i;:::-;-1:-1:-1;;;;;44238:15:0;;;;;;:9;:15;;;;;:20;;44257:1;;44238:15;:20;;44257:1;;44238:20;:::i;:::-;;;;-1:-1:-1;;;;;;;44269:13:0;;;;;;:9;:13;;;;;:18;;44286:1;;44269:13;:18;;44286:1;;44269:18;:::i;:::-;;;;-1:-1:-1;;44298:16:0;;;;:7;:16;;;;;;:21;;-1:-1:-1;;;;;;44298:21:0;-1:-1:-1;;;;;44298:21:0;;;;;;;;;44337:27;;44298:16;;44337:27;;;;;;;43794:578;;;:::o;8084:98::-;8142:7;8169:5;8173:1;8169;:5;:::i;:::-;8162:12;8084:98;-1:-1:-1;;;8084:98:0:o;43097:360::-;43157:13;43173:23;43188:7;43173:14;:23::i;:::-;43157:39;;43209:48;43230:5;43245:1;43249:7;43209:20;:48::i;:::-;43298:29;43315:1;43319:7;43298:8;:29::i;:::-;-1:-1:-1;;;;;43340:16:0;;;;;;:9;:16;;;;;:21;;43360:1;;43340:16;:21;;43360:1;;43340:21;:::i;:::-;;;;-1:-1:-1;;43379:16:0;;;;:7;:16;;;;;;43372:23;;-1:-1:-1;;;;;;43372:23:0;;;43413:36;43387:7;;43379:16;-1:-1:-1;;;;;43413:36:0;;;;;43379:16;;43413:36;43146:311;43097:360;:::o;56915:104::-;56962:4;56986:25;:15;4053:14;;3961:114;13609:173;13684:6;;;-1:-1:-1;;;;;13701:17:0;;;-1:-1:-1;;;;;;13701:17:0;;;;;;;13734:40;;13684:6;;;13701:17;13684:6;;13734:40;;13665:16;;13734:40;13654:128;13609:173;:::o;59789:181::-;59864:12;59882:8;-1:-1:-1;;;;;59882:13:0;59903:7;59882:33;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;59863:52;;;59934:7;59926:36;;;;-1:-1:-1;;;59926:36:0;;18792:2:1;59926:36:0;;;18774:21:1;18831:2;18811:18;;;18804:30;-1:-1:-1;;;18850:18:1;;;18843:46;18906:18;;59926:36:0;18590:340:1;39880:315:0;40037:28;40047:4;40053:2;40057:7;40037:9;:28::i;:::-;40084:48;40107:4;40113:2;40117:7;40126:5;40084:22;:48::i;:::-;40076:111;;;;-1:-1:-1;;;40076:111:0;;;;;;;:::i;14110:723::-;14166:13;14387:10;14383:53;;-1:-1:-1;;14414:10:0;;;;;;;;;;;;-1:-1:-1;;;14414:10:0;;;;;14110:723::o;14383:53::-;14461:5;14446:12;14502:78;14509:9;;14502:78;;14535:8;;;;:::i;:::-;;-1:-1:-1;14558:10:0;;-1:-1:-1;14566:2:0;14558:10;;:::i;:::-;;;14502:78;;;14590:19;14622:6;14612:17;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;14612:17:0;;14590:39;;14640:154;14647:10;;14640:154;;14674:11;14684:1;14674:11;;:::i;:::-;;-1:-1:-1;14743:10:0;14751:2;14743:5;:10;:::i;:::-;14730:24;;:2;:24;:::i;:::-;14717:39;;14700:6;14707;14700:14;;;;;;;;:::i;:::-;;;;:56;-1:-1:-1;;;;;14700:56:0;;;;;;;;-1:-1:-1;14771:11:0;14780:2;14771:11;;:::i;:::-;;;14640:154;;34610:305;34712:4;-1:-1:-1;;;;;;34749:40:0;;-1:-1:-1;;;34749:40:0;;:105;;-1:-1:-1;;;;;;;34806:48:0;;-1:-1:-1;;;34806:48:0;34749:105;:158;;;-1:-1:-1;;;;;;;;;;30529:40:0;;;34871:36;30420:157;41492:110;41568:26;41578:2;41582:7;41568:26;;;;;;;;;;;;:9;:26::i;59978:239::-;60164:45;60191:4;60197:2;60201:7;60164:26;:45::i;45229:799::-;45384:4;-1:-1:-1;;;;;45405:13:0;;16960:20;17008:8;45401:620;;45441:72;;-1:-1:-1;;;45441:72:0;;-1:-1:-1;;;;;45441:36:0;;;;;:72;;740:10;;45492:4;;45498:7;;45507:5;;45441:72;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;45441:72:0;;;;;;;;-1:-1:-1;;45441:72:0;;;;;;;;;;;;:::i;:::-;;;45437:529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;45683:13:0;;45679:272;;45726:60;;-1:-1:-1;;;45726:60:0;;;;;;;:::i;45679:272::-;45901:6;45895:13;45886:6;45882:2;45878:15;45871:38;45437:529;-1:-1:-1;;;;;;45564:51:0;-1:-1:-1;;;45564:51:0;;-1:-1:-1;45557:58:0;;45401:620;-1:-1:-1;46005:4:0;45229:799;;;;;;:::o;41829:321::-;41959:18;41965:2;41969:7;41959:5;:18::i;:::-;42010:54;42041:1;42045:2;42049:7;42058:5;42010:22;:54::i;:::-;41988:154;;;;-1:-1:-1;;;41988:154:0;;;;;;;:::i;55094:328::-;55238:45;55265:4;55271:2;55275:7;55238:26;:45::i;:::-;12582:6;;-1:-1:-1;;;;;12582:6:0;740:10;55298:23;55294:121;;2027:7;;-1:-1:-1;;;2027:7:0;;;;55346:9;55338:65;;;;-1:-1:-1;;;55338:65:0;;9314:2:1;55338:65:0;;;9296:21:1;9353:2;9333:18;;;9326:30;9392:34;9372:18;;;9365:62;-1:-1:-1;;;9443:18:1;;;9436:41;9494:19;;55338:65:0;9112:407:1;42486:382:0;-1:-1:-1;;;;;42566:16:0;;42558:61;;;;-1:-1:-1;;;42558:61:0;;15457:2:1;42558:61:0;;;15439:21:1;;;15476:18;;;15469:30;15535:34;15515:18;;;15508:62;15587:18;;42558:61:0;15255:356:1;42558:61:0;40573:4;40597:16;;;:7;:16;;;;;;-1:-1:-1;;;;;40597:16:0;:30;42630:58;;;;-1:-1:-1;;;42630:58:0;;11656:2:1;42630:58:0;;;11638:21:1;11695:2;11675:18;;;11668:30;11734;11714:18;;;11707:58;11782:18;;42630:58:0;11454:352:1;42630:58:0;42701:45;42730:1;42734:2;42738:7;42701:20;:45::i;:::-;-1:-1:-1;;;;;42759:13:0;;;;;;:9;:13;;;;;:18;;42776:1;;42759:13;:18;;42776:1;;42759:18;:::i;:::-;;;;-1:-1:-1;;42788:16:0;;;;:7;:16;;;;;;:21;;-1:-1:-1;;;;;;42788:21:0;-1:-1:-1;;;;;42788:21:0;;;;;;;;42827:33;;42788:16;;;42827:33;;42788:16;;42827:33;42486:382;;:::o;50048:589::-;-1:-1:-1;;;;;50254:18:0;;50250:187;;50289:40;50321:7;51464:10;:17;;51437:24;;;;:15;:24;;;;;:44;;;51492:24;;;;;;;;;;;;51360:164;50289:40;50250:187;;;50359:2;-1:-1:-1;;;;;50351:10:0;:4;-1:-1:-1;;;;;50351:10:0;;50347:90;;50378:47;50411:4;50417:7;50378:32;:47::i;:::-;-1:-1:-1;;;;;50451:16:0;;50447:183;;50484:45;50521:7;50484:36;:45::i;50447:183::-;50557:4;-1:-1:-1;;;;;50551:10:0;:2;-1:-1:-1;;;;;50551:10:0;;50547:83;;50578:40;50606:2;50610:7;50578:27;:40::i;52151:988::-;52417:22;52467:1;52442:22;52459:4;52442:16;:22::i;:::-;:26;;;;:::i;:::-;52479:18;52500:26;;;:17;:26;;;;;;52417:51;;-1:-1:-1;52633:28:0;;;52629:328;;-1:-1:-1;;;;;52700:18:0;;52678:19;52700:18;;;:12;:18;;;;;;;;:34;;;;;;;;;52751:30;;;;;;:44;;;52868:30;;:17;:30;;;;;:43;;;52629:328;-1:-1:-1;53053:26:0;;;;:17;:26;;;;;;;;53046:33;;;-1:-1:-1;;;;;53097:18:0;;;;;:12;:18;;;;;:34;;;;;;;53090:41;52151:988::o;53434:1079::-;53712:10;:17;53687:22;;53712:21;;53732:1;;53712:21;:::i;:::-;53744:18;53765:24;;;:15;:24;;;;;;54138:10;:26;;53687:46;;-1:-1:-1;53765:24:0;;53687:46;;54138:26;;;;;;:::i;:::-;;;;;;;;;54116:48;;54202:11;54177:10;54188;54177:22;;;;;;;;:::i;:::-;;;;;;;;;;;;:36;;;;54282:28;;;:15;:28;;;;;;;:41;;;54454:24;;;;;54447:31;54489:10;:16;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;53505:1008;;;53434:1079;:::o;50938:221::-;51023:14;51040:20;51057:2;51040:16;:20::i;:::-;-1:-1:-1;;;;;51071:16:0;;;;;;;:12;:16;;;;;;;;:24;;;;;;;;:34;;;51116:26;;;:17;:26;;;;;;:35;;;;-1:-1:-1;50938:221:0:o;-1:-1:-1:-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;14:631:1;78:5;108:18;149:2;141:6;138:14;135:40;;;155:18;;:::i;:::-;230:2;224:9;198:2;284:15;;-1:-1:-1;;280:24:1;;;306:2;276:33;272:42;260:55;;;330:18;;;350:22;;;327:46;324:72;;;376:18;;:::i;:::-;416:10;412:2;405:22;445:6;436:15;;475:6;467;460:22;515:3;506:6;501:3;497:16;494:25;491:45;;;532:1;529;522:12;491:45;582:6;577:3;570:4;562:6;558:17;545:44;637:1;630:4;621:6;613;609:19;605:30;598:41;;;;14:631;;;;;:::o;650:173::-;718:20;;-1:-1:-1;;;;;767:31:1;;757:42;;747:70;;813:1;810;803:12;747:70;650:173;;;:::o;828:160::-;893:20;;949:13;;942:21;932:32;;922:60;;978:1;975;968:12;993:186;1052:6;1105:2;1093:9;1084:7;1080:23;1076:32;1073:52;;;1121:1;1118;1111:12;1073:52;1144:29;1163:9;1144:29;:::i;1184:260::-;1252:6;1260;1313:2;1301:9;1292:7;1288:23;1284:32;1281:52;;;1329:1;1326;1319:12;1281:52;1352:29;1371:9;1352:29;:::i;:::-;1342:39;;1400:38;1434:2;1423:9;1419:18;1400:38;:::i;:::-;1390:48;;1184:260;;;;;:::o;1449:328::-;1526:6;1534;1542;1595:2;1583:9;1574:7;1570:23;1566:32;1563:52;;;1611:1;1608;1601:12;1563:52;1634:29;1653:9;1634:29;:::i;:::-;1624:39;;1682:38;1716:2;1705:9;1701:18;1682:38;:::i;:::-;1672:48;;1767:2;1756:9;1752:18;1739:32;1729:42;;1449:328;;;;;:::o;1782:666::-;1877:6;1885;1893;1901;1954:3;1942:9;1933:7;1929:23;1925:33;1922:53;;;1971:1;1968;1961:12;1922:53;1994:29;2013:9;1994:29;:::i;:::-;1984:39;;2042:38;2076:2;2065:9;2061:18;2042:38;:::i;:::-;2032:48;;2127:2;2116:9;2112:18;2099:32;2089:42;;2182:2;2171:9;2167:18;2154:32;2209:18;2201:6;2198:30;2195:50;;;2241:1;2238;2231:12;2195:50;2264:22;;2317:4;2309:13;;2305:27;-1:-1:-1;2295:55:1;;2346:1;2343;2336:12;2295:55;2369:73;2434:7;2429:2;2416:16;2411:2;2407;2403:11;2369:73;:::i;:::-;2359:83;;;1782:666;;;;;;;:::o;2453:254::-;2518:6;2526;2579:2;2567:9;2558:7;2554:23;2550:32;2547:52;;;2595:1;2592;2585:12;2547:52;2618:29;2637:9;2618:29;:::i;:::-;2608:39;;2666:35;2697:2;2686:9;2682:18;2666:35;:::i;2712:254::-;2780:6;2788;2841:2;2829:9;2820:7;2816:23;2812:32;2809:52;;;2857:1;2854;2847:12;2809:52;2880:29;2899:9;2880:29;:::i;:::-;2870:39;2956:2;2941:18;;;;2928:32;;-1:-1:-1;;;2712:254:1:o;2971:615::-;3057:6;3065;3118:2;3106:9;3097:7;3093:23;3089:32;3086:52;;;3134:1;3131;3124:12;3086:52;3174:9;3161:23;3203:18;3244:2;3236:6;3233:14;3230:34;;;3260:1;3257;3250:12;3230:34;3298:6;3287:9;3283:22;3273:32;;3343:7;3336:4;3332:2;3328:13;3324:27;3314:55;;3365:1;3362;3355:12;3314:55;3405:2;3392:16;3431:2;3423:6;3420:14;3417:34;;;3447:1;3444;3437:12;3417:34;3500:7;3495:2;3485:6;3482:1;3478:14;3474:2;3470:23;3466:32;3463:45;3460:65;;;3521:1;3518;3511:12;3460:65;3552:2;3544:11;;;;;3574:6;;-1:-1:-1;2971:615:1;;-1:-1:-1;;;;2971:615:1:o;3591:180::-;3647:6;3700:2;3688:9;3679:7;3675:23;3671:32;3668:52;;;3716:1;3713;3706:12;3668:52;3739:26;3755:9;3739:26;:::i;3776:245::-;3834:6;3887:2;3875:9;3866:7;3862:23;3858:32;3855:52;;;3903:1;3900;3893:12;3855:52;3942:9;3929:23;3961:30;3985:5;3961:30;:::i;4026:249::-;4095:6;4148:2;4136:9;4127:7;4123:23;4119:32;4116:52;;;4164:1;4161;4154:12;4116:52;4196:9;4190:16;4215:30;4239:5;4215:30;:::i;4280:592::-;4351:6;4359;4412:2;4400:9;4391:7;4387:23;4383:32;4380:52;;;4428:1;4425;4418:12;4380:52;4468:9;4455:23;4497:18;4538:2;4530:6;4527:14;4524:34;;;4554:1;4551;4544:12;4524:34;4592:6;4581:9;4577:22;4567:32;;4637:7;4630:4;4626:2;4622:13;4618:27;4608:55;;4659:1;4656;4649:12;4608:55;4699:2;4686:16;4725:2;4717:6;4714:14;4711:34;;;4741:1;4738;4731:12;4711:34;4786:7;4781:2;4772:6;4768:2;4764:15;4760:24;4757:37;4754:57;;;4807:1;4804;4797:12;4877:450;4946:6;4999:2;4987:9;4978:7;4974:23;4970:32;4967:52;;;5015:1;5012;5005:12;4967:52;5055:9;5042:23;5088:18;5080:6;5077:30;5074:50;;;5120:1;5117;5110:12;5074:50;5143:22;;5196:4;5188:13;;5184:27;-1:-1:-1;5174:55:1;;5225:1;5222;5215:12;5174:55;5248:73;5313:7;5308:2;5295:16;5290:2;5286;5282:11;5248:73;:::i;5332:180::-;5391:6;5444:2;5432:9;5423:7;5419:23;5415:32;5412:52;;;5460:1;5457;5450:12;5412:52;-1:-1:-1;5483:23:1;;5332:180;-1:-1:-1;5332:180:1:o;5517:257::-;5558:3;5596:5;5590:12;5623:6;5618:3;5611:19;5639:63;5695:6;5688:4;5683:3;5679:14;5672:4;5665:5;5661:16;5639:63;:::i;:::-;5756:2;5735:15;-1:-1:-1;;5731:29:1;5722:39;;;;5763:4;5718:50;;5517:257;-1:-1:-1;;5517:257:1:o;5779:185::-;5821:3;5859:5;5853:12;5874:52;5919:6;5914:3;5907:4;5900:5;5896:16;5874:52;:::i;:::-;5942:16;;;;;5779:185;-1:-1:-1;;5779:185:1:o;5969:1174::-;6145:3;6174:1;6207:6;6201:13;6237:3;6259:1;6287:9;6283:2;6279:18;6269:28;;6347:2;6336:9;6332:18;6369;6359:61;;6413:4;6405:6;6401:17;6391:27;;6359:61;6439:2;6487;6479:6;6476:14;6456:18;6453:38;6450:165;;;-1:-1:-1;;;6514:33:1;;6570:4;6567:1;6560:15;6600:4;6521:3;6588:17;6450:165;6631:18;6658:104;;;;6776:1;6771:320;;;;6624:467;;6658:104;-1:-1:-1;;6691:24:1;;6679:37;;6736:16;;;;-1:-1:-1;6658:104:1;;6771:320;20438:1;20431:14;;;20475:4;20462:18;;6866:1;6880:165;6894:6;6891:1;6888:13;6880:165;;;6972:14;;6959:11;;;6952:35;7015:16;;;;6909:10;;6880:165;;;6884:3;;7074:6;7069:3;7065:16;7058:23;;6624:467;;;;;;;7107:30;7133:3;7125:6;7107:30;:::i;:::-;7100:37;5969:1174;-1:-1:-1;;;;;5969:1174:1:o;7566:488::-;-1:-1:-1;;;;;7835:15:1;;;7817:34;;7887:15;;7882:2;7867:18;;7860:43;7934:2;7919:18;;7912:34;;;7982:3;7977:2;7962:18;;7955:31;;;7760:4;;8003:45;;8028:19;;8020:6;8003:45;:::i;:::-;7995:53;7566:488;-1:-1:-1;;;;;;7566:488:1:o;8059:632::-;8230:2;8282:21;;;8352:13;;8255:18;;;8374:22;;;8201:4;;8230:2;8453:15;;;;8427:2;8412:18;;;8201:4;8496:169;8510:6;8507:1;8504:13;8496:169;;;8571:13;;8559:26;;8640:15;;;;8605:12;;;;8532:1;8525:9;8496:169;;;-1:-1:-1;8682:3:1;;8059:632;-1:-1:-1;;;;;;8059:632:1:o;8888:219::-;9037:2;9026:9;9019:21;9000:4;9057:44;9097:2;9086:9;9082:18;9074:6;9057:44;:::i;10628:414::-;10830:2;10812:21;;;10869:2;10849:18;;;10842:30;10908:34;10903:2;10888:18;;10881:62;-1:-1:-1;;;10974:2:1;10959:18;;10952:48;11032:3;11017:19;;10628:414::o;16713:356::-;16915:2;16897:21;;;16934:18;;;16927:30;16993:34;16988:2;16973:18;;16966:62;17060:2;17045:18;;16713:356::o;18935:413::-;19137:2;19119:21;;;19176:2;19156:18;;;19149:30;19215:34;19210:2;19195:18;;19188:62;-1:-1:-1;;;19281:2:1;19266:18;;19259:47;19338:3;19323:19;;18935:413::o;20491:128::-;20531:3;20562:1;20558:6;20555:1;20552:13;20549:39;;;20568:18;;:::i;:::-;-1:-1:-1;20604:9:1;;20491:128::o;20624:120::-;20664:1;20690;20680:35;;20695:18;;:::i;:::-;-1:-1:-1;20729:9:1;;20624:120::o;20749:168::-;20789:7;20855:1;20851;20847:6;20843:14;20840:1;20837:21;20832:1;20825:9;20818:17;20814:45;20811:71;;;20862:18;;:::i;:::-;-1:-1:-1;20902:9:1;;20749:168::o;20922:125::-;20962:4;20990:1;20987;20984:8;20981:34;;;20995:18;;:::i;:::-;-1:-1:-1;21032:9:1;;20922:125::o;21052:258::-;21124:1;21134:113;21148:6;21145:1;21142:13;21134:113;;;21224:11;;;21218:18;21205:11;;;21198:39;21170:2;21163:10;21134:113;;;21265:6;21262:1;21259:13;21256:48;;;-1:-1:-1;;21300:1:1;21282:16;;21275:27;21052:258::o;21315:380::-;21394:1;21390:12;;;;21437;;;21458:61;;21512:4;21504:6;21500:17;21490:27;;21458:61;21565:2;21557:6;21554:14;21534:18;21531:38;21528:161;;;21611:10;21606:3;21602:20;21599:1;21592:31;21646:4;21643:1;21636:15;21674:4;21671:1;21664:15;21528:161;;21315:380;;;:::o;21700:135::-;21739:3;-1:-1:-1;;21760:17:1;;21757:43;;;21780:18;;:::i;:::-;-1:-1:-1;21827:1:1;21816:13;;21700:135::o;21840:112::-;21872:1;21898;21888:35;;21903:18;;:::i;:::-;-1:-1:-1;21937:9:1;;21840:112::o;21957:127::-;22018:10;22013:3;22009:20;22006:1;21999:31;22049:4;22046:1;22039:15;22073:4;22070:1;22063:15;22089:127;22150:10;22145:3;22141:20;22138:1;22131:31;22181:4;22178:1;22171:15;22205:4;22202:1;22195:15;22221:127;22282:10;22277:3;22273:20;22270:1;22263:31;22313:4;22310:1;22303:15;22337:4;22334:1;22327:15;22353:127;22414:10;22409:3;22405:20;22402:1;22395:31;22445:4;22442:1;22435:15;22469:4;22466:1;22459:15;22485:127;22546:10;22541:3;22537:20;22534:1;22527:31;22577:4;22574:1;22567:15;22601:4;22598:1;22591:15;22617:131;-1:-1:-1;;;;;;22691:32:1;;22681:43;;22671:71;;22738:1;22735;22728:12

Swarm Source

ipfs://35a087bc05a93280283837200797b547414b64db6a289d5a4523f2de01d2dcc8
Loading...
Loading
Loading...
Loading
[ 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.