ETH Price: $3,409.65 (+6.81%)
Gas: 36 Gwei

Token

Wubba Lubba (DUB)
 

Overview

Max Total Supply

429 DUB

Holders

178

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A

Other Info

Balance
1 DUB
0xa719aaf604499b253cb05bc6e2b59c1de5e66699
Loading...
Loading
Loading...
Loading
Loading...
Loading

OVERVIEW

A collection of 10,000 generative avatars.

# Exchange Pair Price  24H Volume % Volume

Contract Source Code Verified (Exact Match)

Contract Name:
WubbaLubba

Compiler Version
v0.8.6+commit.11564f7e

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

/**
 *Submitted for verification at Etherscan.io on 2021-07-27
*/

// SPDX-License-Identifier: MIT

// File: contracts/SafeMath.sol
pragma solidity ^0.8.6;
// 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: contracts/Strings.sol
pragma solidity ^0.8.6;
/**
 * @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: contracts/Context.sol
pragma solidity ^0.8.6;
/**
 * @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: contracts/Address.sol
pragma solidity ^0.8.6;
/**
 * @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: contracts/Ownable.sol
pragma solidity ^0.8.6;
/**
 * @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: contracts/IERC165.sol
pragma solidity ^0.8.6;
/**
 * @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: contracts/IERC721.sol
pragma solidity ^0.8.6;
/**
 * @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: contracts/IERC721Enumerable.sol
pragma solidity ^0.8.6;
/**
 * @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: contracts/IERC721Metadata.sol
pragma solidity ^0.8.6;
/**
 * @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: contracts/IERC721Receiver.sol
pragma solidity ^0.8.6;
/**
 * @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: contracts/ERC165.sol
pragma solidity ^0.8.6;
/**
 * @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: contracts/ERC721.sol
pragma solidity ^0.8.6;
/**
 * @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: contracts/ERC721Enumerable.sol
pragma solidity ^0.8.6;
/**
 * @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/WubbaLubba.sol
pragma solidity ^0.8.6;
contract WubbaLubba is ERC721, ERC721Enumerable, Ownable {
    using Strings for uint;
    
    address public CREATOR = 0x064e92486a39Ca396d7827d5182e1BB78A5A0d76;

    uint public buySupply = 9900;
    uint public reserveSupply = 100;

    bool public saleState = false;
    uint public price = 0.06 ether;
    uint public maxBuy = 20;
    uint public maxGive = 10;

    string public baseTokenURI;

    uint private nextIndexToAssign;
    bool public allAssigned = false;

    mapping (uint => bool) assignedTokenIds;

    uint[] public reservedIds = [
        0,
        1,
        9,
        13,
        420,
        666,
        777,
        888,
        4269,
        6942
    ];

    modifier isMinteable() {
        _;
        require(
            !allAssigned,
            "Cannot mint more"
        );
    }

    modifier isBuyeable(uint quantity) {
        _;

        require(
            saleState,
            "Sale closed"
        );

        require(
            quantity > 0 && quantity <= maxBuy,
            "Mini 1 and {maxBuy} DUBs per Tx"
        );

        require(
            buySupply >= 0,
            "Out of tokens"
        );

        require(
            msg.value == price * quantity,
            "Should be 0.06 ETH * QTY"
        );
    }

    modifier isGiveable(address to, uint quantity) {
        _;

        require(
            to != msg.sender,
            "Cannot send to contract owner"
        );

        require(
            to != CREATOR,
            "Cannot send to creator"
        );

        require(
            quantity > 0 && quantity <= maxGive,
            "Mini 1 and {maxGive} DUBs per Tx"
        );

        require(
            reserveSupply >= 0,
            "Out of tokens"
        );
    }

    constructor()
    ERC721("Wubba Lubba", "DUB") {
        // On deploy mint {reservedIds[]} to {CREATOR} (only those are)
        uint i = 0;
        while (i < reservedIds.length) {
            reserveSupply--;
            assignedTokenIds[reservedIds[i]] = true;
            _safeMint(CREATOR, reservedIds[i]);
            i++;
        }

        // Set DUB index to 1
        nextIndexToAssign = 1;
    }

    // Set the sale ON/OFF
    function setSaleState()
    external onlyOwner {
        saleState = (!saleState ? true : false);
    }

    // Get DUB
    function _mintDUB(bool isGift, uint quantity, address to) private {
        uint i = 0;

        while (i < quantity) {
            uint tokenId = nextIndexToAssign;
            
            // if it is last {tokenID} then close minting by assigning
            // {allAssigned} to true
            if (tokenId == 9999) {
                isGift ? reserveSupply-- : buySupply --;
                allAssigned = true;
                _safeMint(to, tokenId);
                break;
            }
            
            // if {tokenId} is already assigned increment to next id
            if (assignedTokenIds[tokenId] == true) {
                nextIndexToAssign++;
                tokenId++;
            }
            
            isGift ? reserveSupply-- : buySupply --;
            nextIndexToAssign++;
            assignedTokenIds[tokenId] = true;
            _safeMint(to, tokenId);
            i++;
        }
    }

    // Buy DUB from {buySupply}
    function buyDUB(uint quantity)
    external payable isMinteable isBuyeable(quantity) {
        _mintDUB(false, quantity, msg.sender);
    }

    // Give DUB from {reserveSupply}, beside of
    // the 10 chosen and minting on deploy, the only way to mint
    // ReservedSupply is through this function and newly minted cannot
    // be sent to contract owner
    function giftDUB(address to, uint quantity)
    external onlyOwner isMinteable isGiveable(to, quantity) {
        _mintDUB(true, quantity, to);
    }

    // Withdraw ETH balance of the contract
    function withdrawEquity()
    external onlyOwner {
        uint balance = address(this).balance;
        require(payable(msg.sender).send(balance));
    }

    // Expose all token Ids held by the address parameter {owner}
    function exposeHeldIds(address owner)
    public view returns(uint[] memory) {
        uint tokenCount = balanceOf(owner);
        uint[] memory tokensId = new uint[](tokenCount);

        uint i = 0;
        while (i < tokenCount) { 
            tokensId[i] = tokenOfOwnerByIndex(owner, i);
            i++;
        }
        return tokensId;
    }

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

    function setBaseURI(string memory baseURI) public onlyOwner {
        baseTokenURI = baseURI;
    }

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

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

Contract Security Audit

Contract ABI

[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"approved","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[],"name":"CREATOR","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"allAssigned","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"baseTokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"quantity","type":"uint256"}],"name":"buyDUB","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"buySupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"exposeHeldIds","outputs":[{"internalType":"uint256[]","name":"","type":"uint256[]"}],"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":"to","type":"address"},{"internalType":"uint256","name":"quantity","type":"uint256"}],"name":"giftDUB","outputs":[],"stateMutability":"nonpayable","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":"maxBuy","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxGive","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"price","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"reserveSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"","type":"uint256"}],"name":"reservedIds","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":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"_data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"saleState","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"baseURI","type":"string"}],"name":"setBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"setSaleState","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":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"withdrawEquity","outputs":[],"stateMutability":"nonpayable","type":"function"}]

600b80546001600160a01b03191673064e92486a39ca396d7827d5182e1bb78a5a0d761790556126ac600c556064600d908155600e805460ff1990811690915566d529ae9e860000600f5560146010819055600a6011819055815490921690556101c060405260006080908152600160a052600960c05260e0929092526101a46101005261029a6101205261030961014052610378610160526110ad61018052611b1e6101a052620000b49160169162000904565b50348015620000c257600080fd5b50604080518082018252600b81526a5775626261204c7562626160a81b602080830191825283518085019094526003845262222aa160e91b90840152815191929162000111916000916200095a565b508051620001279060019060208401906200095a565b505050620001446200013e6200021260201b60201c565b62000216565b60005b6016548110156200020657600d8054906000620001648362000ad1565b91905055506001601560006016848154811062000185576200018562000b72565b60009182526020808320919091015483528201929092526040019020805460ff1916911515919091179055600b5460168054620001f1926001600160a01b0316919084908110620001da57620001da62000b72565b90600052602060002001546200026860201b60201c565b80620001fd8162000b28565b91505062000147565b50600160135562000b88565b3390565b600a80546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6200028a8282604051806020016040528060008152506200028e60201b60201c565b5050565b6200029a83836200030a565b620002a9600084848462000460565b620003055760405162461bcd60e51b815260206004820152603260248201526000805160206200307983398151915260448201527131b2b4bb32b91034b6b83632b6b2b73a32b960711b60648201526084015b60405180910390fd5b505050565b6001600160a01b038216620003625760405162461bcd60e51b815260206004820181905260248201527f4552433732313a206d696e7420746f20746865207a65726f20616464726573736044820152606401620002fc565b6000818152600260205260409020546001600160a01b031615620003c95760405162461bcd60e51b815260206004820152601c60248201527f4552433732313a20746f6b656e20616c7265616479206d696e746564000000006044820152606401620002fc565b620003d760008383620005c9565b6001600160a01b03821660009081526003602052604081208054600192906200040290849062000a9c565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b03861690811790915590518392907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a45050565b600062000481846001600160a01b0316620005e160201b620012de1760201c565b15620005bd57604051630a85bd0160e11b81526001600160a01b0385169063150b7a0290620004bb90339089908890889060040162000a21565b602060405180830381600087803b158015620004d657600080fd5b505af192505050801562000509575060408051601f3d908101601f191682019092526200050691810190620009ee565b60015b620005a2573d8080156200053a576040519150601f19603f3d011682016040523d82523d6000602084013e6200053f565b606091505b5080516200059a5760405162461bcd60e51b815260206004820152603260248201526000805160206200307983398151915260448201527131b2b4bb32b91034b6b83632b6b2b73a32b960711b6064820152608401620002fc565b805181602001fd5b6001600160e01b031916630a85bd0160e11b149050620005c1565b5060015b949350505050565b62000305838383620005e760201b620012e41760201c565b3b151590565b620005ff8383836200030560201b6200089d1760201c565b6001600160a01b0383166200065d576200065781600880546000838152600960205260408120829055600182018355919091527ff3f7a9fe364faab93b216da50a3214154f22a0a2b415b23a84c8169e8b636ee30155565b62000683565b816001600160a01b0316836001600160a01b0316146200068357620006838382620006c3565b6001600160a01b0382166200069d57620003058162000770565b826001600160a01b0316826001600160a01b03161462000305576200030582826200082a565b60006001620006dd846200087b60201b62000f141760201c565b620006e9919062000ab7565b6000838152600760205260409020549091508082146200073d576001600160a01b03841660009081526006602090815260408083208584528252808320548484528184208190558352600790915290208190555b5060009182526007602090815260408084208490556001600160a01b039094168352600681528383209183525290812055565b600854600090620007849060019062000ab7565b60008381526009602052604081205460088054939450909284908110620007af57620007af62000b72565b906000526020600020015490508060088381548110620007d357620007d362000b72565b60009182526020808320909101929092558281526009909152604080822084905585825281205560088054806200080e576200080e62000b5c565b6001900381819060005260206000200160009055905550505050565b600062000842836200087b60201b62000f141760201c565b6001600160a01b039093166000908152600660209081526040808320868452825280832085905593825260079052919091209190915550565b60006001600160a01b038216620008e85760405162461bcd60e51b815260206004820152602a60248201527f4552433732313a2062616c616e636520717565727920666f7220746865207a65604482015269726f206164647265737360b01b6064820152608401620002fc565b506001600160a01b031660009081526003602052604090205490565b82805482825590600052602060002090810192821562000948579160200282015b8281111562000948578251829061ffff1690559160200191906001019062000925565b5062000956929150620009d7565b5090565b828054620009689062000aeb565b90600052602060002090601f0160209004810192826200098c576000855562000948565b82601f10620009a757805160ff191683800117855562000948565b8280016001018555821562000948579182015b8281111562000948578251825591602001919060010190620009ba565b5b80821115620009565760008155600101620009d8565b60006020828403121562000a0157600080fd5b81516001600160e01b03198116811462000a1a57600080fd5b9392505050565b600060018060a01b038087168352602081871681850152856040850152608060608501528451915081608085015260005b8281101562000a705785810182015185820160a00152810162000a52565b8281111562000a8357600060a084870101525b5050601f01601f19169190910160a00195945050505050565b6000821982111562000ab25762000ab262000b46565b500190565b60008282101562000acc5762000acc62000b46565b500390565b60008162000ae35762000ae362000b46565b506000190190565b600181811c9082168062000b0057607f821691505b6020821081141562000b2257634e487b7160e01b600052602260045260246000fd5b50919050565b600060001982141562000b3f5762000b3f62000b46565b5060010190565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052603160045260246000fd5b634e487b7160e01b600052603260045260246000fd5b6124e18062000b986000396000f3fe6080604052600436106102045760003560e01c80636352211e11610118578063a4a4bf53116100a0578063c87b56dd1161006f578063c87b56dd14610591578063d547cfb7146105b1578063e4fbb609146105c6578063e985e9c5146105e6578063f2fde38b1461062f57600080fd5b8063a4a4bf531461052b578063afbf6b4b14610545578063b51dfa9d1461055b578063b88d4fde1461057157600080fd5b8063715018a6116100e7578063715018a6146104ad5780638da5cb5b146104c257806395d89b41146104e0578063a035b1fe146104f5578063a22cb4651461050b57600080fd5b80636352211e1461042a57806369013efa1461044a57806370a082311461047757806370db69d61461049757600080fd5b80631ed405591161019b57806342842e0e1161016a57806342842e0e1461039b5780634b423d02146103bb5780634f6ccce7146103d057806355f804b3146103f0578063603f4d521461041057600080fd5b80631ed405591461032657806323b872dd1461033b5780632f745c591461035b57806333fcf3ec1461037b57600080fd5b8063095ea7b3116101d7578063095ea7b3146102bc5780630fd89dfd146102de57806318160ddd146102fe5780631c0b28c01461031357600080fd5b806301ffc9a71461020957806303d41eb61461023e57806306fdde0314610262578063081812fc14610284575b600080fd5b34801561021557600080fd5b506102296102243660046120b5565b61064f565b60405190151581526020015b60405180910390f35b34801561024a57600080fd5b50610254600d5481565b604051908152602001610235565b34801561026e57600080fd5b50610277610660565b604051610235919061222d565b34801561029057600080fd5b506102a461029f366004612138565b6106f2565b6040516001600160a01b039091168152602001610235565b3480156102c857600080fd5b506102dc6102d736600461208b565b61078c565b005b3480156102ea57600080fd5b506102dc6102f936600461208b565b6108a2565b34801561030a57600080fd5b50600854610254565b6102dc610321366004612138565b610a34565b34801561033257600080fd5b506102dc610b85565b34801561034757600080fd5b506102dc610356366004611f97565b610bd7565b34801561036757600080fd5b5061025461037636600461208b565b610c08565b34801561038757600080fd5b50610254610396366004612138565b610c9e565b3480156103a757600080fd5b506102dc6103b6366004611f97565b610cbf565b3480156103c757600080fd5b506102dc610cda565b3480156103dc57600080fd5b506102546103eb366004612138565b610d2b565b3480156103fc57600080fd5b506102dc61040b3660046120ef565b610dbe565b34801561041c57600080fd5b50600e546102299060ff1681565b34801561043657600080fd5b506102a4610445366004612138565b610dfb565b34801561045657600080fd5b5061046a610465366004611f49565b610e72565b60405161023591906121e9565b34801561048357600080fd5b50610254610492366004611f49565b610f14565b3480156104a357600080fd5b5061025460105481565b3480156104b957600080fd5b506102dc610f9b565b3480156104ce57600080fd5b50600a546001600160a01b03166102a4565b3480156104ec57600080fd5b50610277610fd1565b34801561050157600080fd5b50610254600f5481565b34801561051757600080fd5b506102dc61052636600461204f565b610fe0565b34801561053757600080fd5b506014546102299060ff1681565b34801561055157600080fd5b5061025460115481565b34801561056757600080fd5b50610254600c5481565b34801561057d57600080fd5b506102dc61058c366004611fd3565b6110a5565b34801561059d57600080fd5b506102776105ac366004612138565b6110dd565b3480156105bd57600080fd5b506102776111b8565b3480156105d257600080fd5b50600b546102a4906001600160a01b031681565b3480156105f257600080fd5b50610229610601366004611f64565b6001600160a01b03918216600090815260056020908152604080832093909416825291909152205460ff1690565b34801561063b57600080fd5b506102dc61064a366004611f49565b611246565b600061065a8261139c565b92915050565b60606000805461066f906123bd565b80601f016020809104026020016040519081016040528092919081815260200182805461069b906123bd565b80156106e85780601f106106bd576101008083540402835291602001916106e8565b820191906000526020600020905b8154815290600101906020018083116106cb57829003601f168201915b5050505050905090565b6000818152600260205260408120546001600160a01b03166107705760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b60648201526084015b60405180910390fd5b506000908152600460205260409020546001600160a01b031690565b600061079782610dfb565b9050806001600160a01b0316836001600160a01b031614156108055760405162461bcd60e51b815260206004820152602160248201527f4552433732313a20617070726f76616c20746f2063757272656e74206f776e656044820152603960f91b6064820152608401610767565b336001600160a01b038216148061082157506108218133610601565b6108935760405162461bcd60e51b815260206004820152603860248201527f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760448201527f6e6572206e6f7220617070726f76656420666f7220616c6c00000000000000006064820152608401610767565b61089d83836113c1565b505050565b600a546001600160a01b031633146108cc5760405162461bcd60e51b815260040161076790612292565b81816108da6001848661142f565b6001600160a01b0382163314156109335760405162461bcd60e51b815260206004820152601d60248201527f43616e6e6f742073656e6420746f20636f6e7472616374206f776e65720000006044820152606401610767565b600b546001600160a01b038381169116141561098a5760405162461bcd60e51b815260206004820152601660248201527521b0b73737ba1039b2b732103a379031b932b0ba37b960511b6044820152606401610767565b60008111801561099c57506011548111155b6109e85760405162461bcd60e51b815260206004820181905260248201527f4d696e69203120616e64207b6d6178476976657d2044554273207065722054786044820152606401610767565b505060145460ff1615610a305760405162461bcd60e51b815260206004820152601060248201526f43616e6e6f74206d696e74206d6f726560801b6044820152606401610767565b5050565b80610a416000833361142f565b600e5460ff16610a815760405162461bcd60e51b815260206004820152600b60248201526a14d85b194818db1bdcd95960aa1b6044820152606401610767565b600081118015610a9357506010548111155b610adf5760405162461bcd60e51b815260206004820152601f60248201527f4d696e69203120616e64207b6d61784275797d204455427320706572205478006044820152606401610767565b80600f54610aed9190612344565b3414610b3b5760405162461bcd60e51b815260206004820152601860248201527f53686f756c6420626520302e303620455448202a2051545900000000000000006044820152606401610767565b5060145460ff1615610b825760405162461bcd60e51b815260206004820152601060248201526f43616e6e6f74206d696e74206d6f726560801b6044820152606401610767565b50565b600a546001600160a01b03163314610baf5760405162461bcd60e51b815260040161076790612292565b600e5460ff1615610bc1576000610bc4565b60015b600e805460ff1916911515919091179055565b610be13382611557565b610bfd5760405162461bcd60e51b8152600401610767906122c7565b61089d83838361164e565b6000610c1383610f14565b8210610c755760405162461bcd60e51b815260206004820152602b60248201527f455243373231456e756d657261626c653a206f776e657220696e646578206f7560448201526a74206f6620626f756e647360a81b6064820152608401610767565b506001600160a01b03919091166000908152600660209081526040808320938352929052205490565b60168181548110610cae57600080fd5b600091825260209091200154905081565b61089d838383604051806020016040528060008152506110a5565b600a546001600160a01b03163314610d045760405162461bcd60e51b815260040161076790612292565b6040514790339082156108fc029083906000818181858888f19350505050610b8257600080fd5b6000610d3660085490565b8210610d995760405162461bcd60e51b815260206004820152602c60248201527f455243373231456e756d657261626c653a20676c6f62616c20696e646578206f60448201526b7574206f6620626f756e647360a01b6064820152608401610767565b60088281548110610dac57610dac612469565b90600052602060002001549050919050565b600a546001600160a01b03163314610de85760405162461bcd60e51b815260040161076790612292565b8051610a30906012906020840190611e1e565b6000818152600260205260408120546001600160a01b03168061065a5760405162461bcd60e51b815260206004820152602960248201527f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460448201526832b73a103a37b5b2b760b91b6064820152608401610767565b60606000610e7f83610f14565b905060008167ffffffffffffffff811115610e9c57610e9c61247f565b604051908082528060200260200182016040528015610ec5578160200160208202803683370190505b50905060005b82811015610f0c57610edd8582610c08565b828281518110610eef57610eef612469565b602090810291909101015280610f04816123f8565b915050610ecb565b509392505050565b60006001600160a01b038216610f7f5760405162461bcd60e51b815260206004820152602a60248201527f4552433732313a2062616c616e636520717565727920666f7220746865207a65604482015269726f206164647265737360b01b6064820152608401610767565b506001600160a01b031660009081526003602052604090205490565b600a546001600160a01b03163314610fc55760405162461bcd60e51b815260040161076790612292565b610fcf60006117f9565b565b60606001805461066f906123bd565b6001600160a01b0382163314156110395760405162461bcd60e51b815260206004820152601960248201527f4552433732313a20617070726f766520746f2063616c6c6572000000000000006044820152606401610767565b3360008181526005602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b6110af3383611557565b6110cb5760405162461bcd60e51b8152600401610767906122c7565b6110d78484848461184b565b50505050565b6000818152600260205260409020546060906001600160a01b031661115c5760405162461bcd60e51b815260206004820152602f60248201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60448201526e3732bc34b9ba32b73a103a37b5b2b760891b6064820152608401610767565b600061116661187e565b9050600081511161118657604051806020016040528060008152506111b1565b806111908461188d565b6040516020016111a192919061217d565b6040516020818303038152906040525b9392505050565b601280546111c5906123bd565b80601f01602080910402602001604051908101604052809291908181526020018280546111f1906123bd565b801561123e5780601f106112135761010080835404028352916020019161123e565b820191906000526020600020905b81548152906001019060200180831161122157829003601f168201915b505050505081565b600a546001600160a01b031633146112705760405162461bcd60e51b815260040161076790612292565b6001600160a01b0381166112d55760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610767565b610b82816117f9565b3b151590565b6001600160a01b03831661133f5761133a81600880546000838152600960205260408120829055600182018355919091527ff3f7a9fe364faab93b216da50a3214154f22a0a2b415b23a84c8169e8b636ee30155565b611362565b816001600160a01b0316836001600160a01b03161461136257611362838261198b565b6001600160a01b0382166113795761089d81611a28565b826001600160a01b0316826001600160a01b03161461089d5761089d8282611ad7565b60006001600160e01b0319821663780e9d6360e01b148061065a575061065a82611b1b565b600081815260046020526040902080546001600160a01b0319166001600160a01b03841690811790915581906113f682610dfb565b6001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b60005b828110156110d75760135461270f811415611498578461146557600c805490600061145c836123a6565b9190505561147a565b600d8054906000611475836123a6565b919050555b506014805460ff191660011790556114928382611b6b565b506110d7565b60008181526015602052604090205460ff161515600114156114d857601380549060006114c4836123f8565b919050555080806114d4906123f8565b9150505b846114f657600c80549060006114ed836123a6565b9190505561150b565b600d8054906000611506836123a6565b919050555b506013805490600061151c836123f8565b90915550506000818152601560205260409020805460ff191660011790556115448382611b6b565b8161154e816123f8565b92505050611432565b6000818152600260205260408120546001600160a01b03166115d05760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b6064820152608401610767565b60006115db83610dfb565b9050806001600160a01b0316846001600160a01b031614806116165750836001600160a01b031661160b846106f2565b6001600160a01b0316145b8061164657506001600160a01b0380821660009081526005602090815260408083209388168352929052205460ff165b949350505050565b826001600160a01b031661166182610dfb565b6001600160a01b0316146116c95760405162461bcd60e51b815260206004820152602960248201527f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960448201526839903737ba1037bbb760b91b6064820152608401610767565b6001600160a01b03821661172b5760405162461bcd60e51b8152602060048201526024808201527f4552433732313a207472616e7366657220746f20746865207a65726f206164646044820152637265737360e01b6064820152608401610767565b611736838383611b85565b6117416000826113c1565b6001600160a01b038316600090815260036020526040812080546001929061176a908490612363565b90915550506001600160a01b0382166000908152600360205260408120805460019290611798908490612318565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b0386811691821790925591518493918716917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef91a4505050565b600a80546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b61185684848461164e565b61186284848484611b90565b6110d75760405162461bcd60e51b815260040161076790612240565b60606012805461066f906123bd565b6060816118b15750506040805180820190915260018152600360fc1b602082015290565b8160005b81156118db57806118c5816123f8565b91506118d49050600a83612330565b91506118b5565b60008167ffffffffffffffff8111156118f6576118f661247f565b6040519080825280601f01601f191660200182016040528015611920576020820181803683370190505b5090505b841561164657611935600183612363565b9150611942600a86612413565b61194d906030612318565b60f81b81838151811061196257611962612469565b60200101906001600160f81b031916908160001a905350611984600a86612330565b9450611924565b6000600161199884610f14565b6119a29190612363565b6000838152600760205260409020549091508082146119f5576001600160a01b03841660009081526006602090815260408083208584528252808320548484528184208190558352600790915290208190555b5060009182526007602090815260408084208490556001600160a01b039094168352600681528383209183525290812055565b600854600090611a3a90600190612363565b60008381526009602052604081205460088054939450909284908110611a6257611a62612469565b906000526020600020015490508060088381548110611a8357611a83612469565b6000918252602080832090910192909255828152600990915260408082208490558582528120556008805480611abb57611abb612453565b6001900381819060005260206000200160009055905550505050565b6000611ae283610f14565b6001600160a01b039093166000908152600660209081526040808320868452825280832085905593825260079052919091209190915550565b60006001600160e01b031982166380ac58cd60e01b1480611b4c57506001600160e01b03198216635b5e139f60e01b145b8061065a57506301ffc9a760e01b6001600160e01b031983161461065a565b610a30828260405180602001604052806000815250611c9d565b61089d8383836112e4565b60006001600160a01b0384163b15611c9257604051630a85bd0160e11b81526001600160a01b0385169063150b7a0290611bd49033908990889088906004016121ac565b602060405180830381600087803b158015611bee57600080fd5b505af1925050508015611c1e575060408051601f3d908101601f19168201909252611c1b918101906120d2565b60015b611c78573d808015611c4c576040519150601f19603f3d011682016040523d82523d6000602084013e611c51565b606091505b508051611c705760405162461bcd60e51b815260040161076790612240565b805181602001fd5b6001600160e01b031916630a85bd0160e11b149050611646565b506001949350505050565b611ca78383611cd0565b611cb46000848484611b90565b61089d5760405162461bcd60e51b815260040161076790612240565b6001600160a01b038216611d265760405162461bcd60e51b815260206004820181905260248201527f4552433732313a206d696e7420746f20746865207a65726f20616464726573736044820152606401610767565b6000818152600260205260409020546001600160a01b031615611d8b5760405162461bcd60e51b815260206004820152601c60248201527f4552433732313a20746f6b656e20616c7265616479206d696e746564000000006044820152606401610767565b611d9760008383611b85565b6001600160a01b0382166000908152600360205260408120805460019290611dc0908490612318565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b03861690811790915590518392907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a45050565b828054611e2a906123bd565b90600052602060002090601f016020900481019282611e4c5760008555611e92565b82601f10611e6557805160ff1916838001178555611e92565b82800160010185558215611e92579182015b82811115611e92578251825591602001919060010190611e77565b50611e9e929150611ea2565b5090565b5b80821115611e9e5760008155600101611ea3565b600067ffffffffffffffff80841115611ed257611ed261247f565b604051601f8501601f19908116603f01168101908282118183101715611efa57611efa61247f565b81604052809350858152868686011115611f1357600080fd5b858560208301376000602087830101525050509392505050565b80356001600160a01b0381168114611f4457600080fd5b919050565b600060208284031215611f5b57600080fd5b6111b182611f2d565b60008060408385031215611f7757600080fd5b611f8083611f2d565b9150611f8e60208401611f2d565b90509250929050565b600080600060608486031215611fac57600080fd5b611fb584611f2d565b9250611fc360208501611f2d565b9150604084013590509250925092565b60008060008060808587031215611fe957600080fd5b611ff285611f2d565b935061200060208601611f2d565b925060408501359150606085013567ffffffffffffffff81111561202357600080fd5b8501601f8101871361203457600080fd5b61204387823560208401611eb7565b91505092959194509250565b6000806040838503121561206257600080fd5b61206b83611f2d565b91506020830135801515811461208057600080fd5b809150509250929050565b6000806040838503121561209e57600080fd5b6120a783611f2d565b946020939093013593505050565b6000602082840312156120c757600080fd5b81356111b181612495565b6000602082840312156120e457600080fd5b81516111b181612495565b60006020828403121561210157600080fd5b813567ffffffffffffffff81111561211857600080fd5b8201601f8101841361212957600080fd5b61164684823560208401611eb7565b60006020828403121561214a57600080fd5b5035919050565b6000815180845261216981602086016020860161237a565b601f01601f19169290920160200192915050565b6000835161218f81846020880161237a565b8351908301906121a381836020880161237a565b01949350505050565b6001600160a01b03858116825284166020820152604081018390526080606082018190526000906121df90830184612151565b9695505050505050565b6020808252825182820181905260009190848201906040850190845b8181101561222157835183529284019291840191600101612205565b50909695505050505050565b6020815260006111b16020830184612151565b60208082526032908201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560408201527131b2b4bb32b91034b6b83632b6b2b73a32b960711b606082015260800190565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b60208082526031908201527f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f6040820152701ddb995c881b9bdc88185c1c1c9bdd9959607a1b606082015260800190565b6000821982111561232b5761232b612427565b500190565b60008261233f5761233f61243d565b500490565b600081600019048311821515161561235e5761235e612427565b500290565b60008282101561237557612375612427565b500390565b60005b8381101561239557818101518382015260200161237d565b838111156110d75750506000910152565b6000816123b5576123b5612427565b506000190190565b600181811c908216806123d157607f821691505b602082108114156123f257634e487b7160e01b600052602260045260246000fd5b50919050565b600060001982141561240c5761240c612427565b5060010190565b6000826124225761242261243d565b500690565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052601260045260246000fd5b634e487b7160e01b600052603160045260246000fd5b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b6001600160e01b031981168114610b8257600080fdfea26469706673582212209d1e07d0c6d1d718478afed56c313716e684f203e6ae9ae0ffc80eff07c6fe3c64736f6c634300080600334552433732313a207472616e7366657220746f206e6f6e204552433732315265

Deployed Bytecode

0x6080604052600436106102045760003560e01c80636352211e11610118578063a4a4bf53116100a0578063c87b56dd1161006f578063c87b56dd14610591578063d547cfb7146105b1578063e4fbb609146105c6578063e985e9c5146105e6578063f2fde38b1461062f57600080fd5b8063a4a4bf531461052b578063afbf6b4b14610545578063b51dfa9d1461055b578063b88d4fde1461057157600080fd5b8063715018a6116100e7578063715018a6146104ad5780638da5cb5b146104c257806395d89b41146104e0578063a035b1fe146104f5578063a22cb4651461050b57600080fd5b80636352211e1461042a57806369013efa1461044a57806370a082311461047757806370db69d61461049757600080fd5b80631ed405591161019b57806342842e0e1161016a57806342842e0e1461039b5780634b423d02146103bb5780634f6ccce7146103d057806355f804b3146103f0578063603f4d521461041057600080fd5b80631ed405591461032657806323b872dd1461033b5780632f745c591461035b57806333fcf3ec1461037b57600080fd5b8063095ea7b3116101d7578063095ea7b3146102bc5780630fd89dfd146102de57806318160ddd146102fe5780631c0b28c01461031357600080fd5b806301ffc9a71461020957806303d41eb61461023e57806306fdde0314610262578063081812fc14610284575b600080fd5b34801561021557600080fd5b506102296102243660046120b5565b61064f565b60405190151581526020015b60405180910390f35b34801561024a57600080fd5b50610254600d5481565b604051908152602001610235565b34801561026e57600080fd5b50610277610660565b604051610235919061222d565b34801561029057600080fd5b506102a461029f366004612138565b6106f2565b6040516001600160a01b039091168152602001610235565b3480156102c857600080fd5b506102dc6102d736600461208b565b61078c565b005b3480156102ea57600080fd5b506102dc6102f936600461208b565b6108a2565b34801561030a57600080fd5b50600854610254565b6102dc610321366004612138565b610a34565b34801561033257600080fd5b506102dc610b85565b34801561034757600080fd5b506102dc610356366004611f97565b610bd7565b34801561036757600080fd5b5061025461037636600461208b565b610c08565b34801561038757600080fd5b50610254610396366004612138565b610c9e565b3480156103a757600080fd5b506102dc6103b6366004611f97565b610cbf565b3480156103c757600080fd5b506102dc610cda565b3480156103dc57600080fd5b506102546103eb366004612138565b610d2b565b3480156103fc57600080fd5b506102dc61040b3660046120ef565b610dbe565b34801561041c57600080fd5b50600e546102299060ff1681565b34801561043657600080fd5b506102a4610445366004612138565b610dfb565b34801561045657600080fd5b5061046a610465366004611f49565b610e72565b60405161023591906121e9565b34801561048357600080fd5b50610254610492366004611f49565b610f14565b3480156104a357600080fd5b5061025460105481565b3480156104b957600080fd5b506102dc610f9b565b3480156104ce57600080fd5b50600a546001600160a01b03166102a4565b3480156104ec57600080fd5b50610277610fd1565b34801561050157600080fd5b50610254600f5481565b34801561051757600080fd5b506102dc61052636600461204f565b610fe0565b34801561053757600080fd5b506014546102299060ff1681565b34801561055157600080fd5b5061025460115481565b34801561056757600080fd5b50610254600c5481565b34801561057d57600080fd5b506102dc61058c366004611fd3565b6110a5565b34801561059d57600080fd5b506102776105ac366004612138565b6110dd565b3480156105bd57600080fd5b506102776111b8565b3480156105d257600080fd5b50600b546102a4906001600160a01b031681565b3480156105f257600080fd5b50610229610601366004611f64565b6001600160a01b03918216600090815260056020908152604080832093909416825291909152205460ff1690565b34801561063b57600080fd5b506102dc61064a366004611f49565b611246565b600061065a8261139c565b92915050565b60606000805461066f906123bd565b80601f016020809104026020016040519081016040528092919081815260200182805461069b906123bd565b80156106e85780601f106106bd576101008083540402835291602001916106e8565b820191906000526020600020905b8154815290600101906020018083116106cb57829003601f168201915b5050505050905090565b6000818152600260205260408120546001600160a01b03166107705760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b60648201526084015b60405180910390fd5b506000908152600460205260409020546001600160a01b031690565b600061079782610dfb565b9050806001600160a01b0316836001600160a01b031614156108055760405162461bcd60e51b815260206004820152602160248201527f4552433732313a20617070726f76616c20746f2063757272656e74206f776e656044820152603960f91b6064820152608401610767565b336001600160a01b038216148061082157506108218133610601565b6108935760405162461bcd60e51b815260206004820152603860248201527f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760448201527f6e6572206e6f7220617070726f76656420666f7220616c6c00000000000000006064820152608401610767565b61089d83836113c1565b505050565b600a546001600160a01b031633146108cc5760405162461bcd60e51b815260040161076790612292565b81816108da6001848661142f565b6001600160a01b0382163314156109335760405162461bcd60e51b815260206004820152601d60248201527f43616e6e6f742073656e6420746f20636f6e7472616374206f776e65720000006044820152606401610767565b600b546001600160a01b038381169116141561098a5760405162461bcd60e51b815260206004820152601660248201527521b0b73737ba1039b2b732103a379031b932b0ba37b960511b6044820152606401610767565b60008111801561099c57506011548111155b6109e85760405162461bcd60e51b815260206004820181905260248201527f4d696e69203120616e64207b6d6178476976657d2044554273207065722054786044820152606401610767565b505060145460ff1615610a305760405162461bcd60e51b815260206004820152601060248201526f43616e6e6f74206d696e74206d6f726560801b6044820152606401610767565b5050565b80610a416000833361142f565b600e5460ff16610a815760405162461bcd60e51b815260206004820152600b60248201526a14d85b194818db1bdcd95960aa1b6044820152606401610767565b600081118015610a9357506010548111155b610adf5760405162461bcd60e51b815260206004820152601f60248201527f4d696e69203120616e64207b6d61784275797d204455427320706572205478006044820152606401610767565b80600f54610aed9190612344565b3414610b3b5760405162461bcd60e51b815260206004820152601860248201527f53686f756c6420626520302e303620455448202a2051545900000000000000006044820152606401610767565b5060145460ff1615610b825760405162461bcd60e51b815260206004820152601060248201526f43616e6e6f74206d696e74206d6f726560801b6044820152606401610767565b50565b600a546001600160a01b03163314610baf5760405162461bcd60e51b815260040161076790612292565b600e5460ff1615610bc1576000610bc4565b60015b600e805460ff1916911515919091179055565b610be13382611557565b610bfd5760405162461bcd60e51b8152600401610767906122c7565b61089d83838361164e565b6000610c1383610f14565b8210610c755760405162461bcd60e51b815260206004820152602b60248201527f455243373231456e756d657261626c653a206f776e657220696e646578206f7560448201526a74206f6620626f756e647360a81b6064820152608401610767565b506001600160a01b03919091166000908152600660209081526040808320938352929052205490565b60168181548110610cae57600080fd5b600091825260209091200154905081565b61089d838383604051806020016040528060008152506110a5565b600a546001600160a01b03163314610d045760405162461bcd60e51b815260040161076790612292565b6040514790339082156108fc029083906000818181858888f19350505050610b8257600080fd5b6000610d3660085490565b8210610d995760405162461bcd60e51b815260206004820152602c60248201527f455243373231456e756d657261626c653a20676c6f62616c20696e646578206f60448201526b7574206f6620626f756e647360a01b6064820152608401610767565b60088281548110610dac57610dac612469565b90600052602060002001549050919050565b600a546001600160a01b03163314610de85760405162461bcd60e51b815260040161076790612292565b8051610a30906012906020840190611e1e565b6000818152600260205260408120546001600160a01b03168061065a5760405162461bcd60e51b815260206004820152602960248201527f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460448201526832b73a103a37b5b2b760b91b6064820152608401610767565b60606000610e7f83610f14565b905060008167ffffffffffffffff811115610e9c57610e9c61247f565b604051908082528060200260200182016040528015610ec5578160200160208202803683370190505b50905060005b82811015610f0c57610edd8582610c08565b828281518110610eef57610eef612469565b602090810291909101015280610f04816123f8565b915050610ecb565b509392505050565b60006001600160a01b038216610f7f5760405162461bcd60e51b815260206004820152602a60248201527f4552433732313a2062616c616e636520717565727920666f7220746865207a65604482015269726f206164647265737360b01b6064820152608401610767565b506001600160a01b031660009081526003602052604090205490565b600a546001600160a01b03163314610fc55760405162461bcd60e51b815260040161076790612292565b610fcf60006117f9565b565b60606001805461066f906123bd565b6001600160a01b0382163314156110395760405162461bcd60e51b815260206004820152601960248201527f4552433732313a20617070726f766520746f2063616c6c6572000000000000006044820152606401610767565b3360008181526005602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b6110af3383611557565b6110cb5760405162461bcd60e51b8152600401610767906122c7565b6110d78484848461184b565b50505050565b6000818152600260205260409020546060906001600160a01b031661115c5760405162461bcd60e51b815260206004820152602f60248201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60448201526e3732bc34b9ba32b73a103a37b5b2b760891b6064820152608401610767565b600061116661187e565b9050600081511161118657604051806020016040528060008152506111b1565b806111908461188d565b6040516020016111a192919061217d565b6040516020818303038152906040525b9392505050565b601280546111c5906123bd565b80601f01602080910402602001604051908101604052809291908181526020018280546111f1906123bd565b801561123e5780601f106112135761010080835404028352916020019161123e565b820191906000526020600020905b81548152906001019060200180831161122157829003601f168201915b505050505081565b600a546001600160a01b031633146112705760405162461bcd60e51b815260040161076790612292565b6001600160a01b0381166112d55760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610767565b610b82816117f9565b3b151590565b6001600160a01b03831661133f5761133a81600880546000838152600960205260408120829055600182018355919091527ff3f7a9fe364faab93b216da50a3214154f22a0a2b415b23a84c8169e8b636ee30155565b611362565b816001600160a01b0316836001600160a01b03161461136257611362838261198b565b6001600160a01b0382166113795761089d81611a28565b826001600160a01b0316826001600160a01b03161461089d5761089d8282611ad7565b60006001600160e01b0319821663780e9d6360e01b148061065a575061065a82611b1b565b600081815260046020526040902080546001600160a01b0319166001600160a01b03841690811790915581906113f682610dfb565b6001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b60005b828110156110d75760135461270f811415611498578461146557600c805490600061145c836123a6565b9190505561147a565b600d8054906000611475836123a6565b919050555b506014805460ff191660011790556114928382611b6b565b506110d7565b60008181526015602052604090205460ff161515600114156114d857601380549060006114c4836123f8565b919050555080806114d4906123f8565b9150505b846114f657600c80549060006114ed836123a6565b9190505561150b565b600d8054906000611506836123a6565b919050555b506013805490600061151c836123f8565b90915550506000818152601560205260409020805460ff191660011790556115448382611b6b565b8161154e816123f8565b92505050611432565b6000818152600260205260408120546001600160a01b03166115d05760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b6064820152608401610767565b60006115db83610dfb565b9050806001600160a01b0316846001600160a01b031614806116165750836001600160a01b031661160b846106f2565b6001600160a01b0316145b8061164657506001600160a01b0380821660009081526005602090815260408083209388168352929052205460ff165b949350505050565b826001600160a01b031661166182610dfb565b6001600160a01b0316146116c95760405162461bcd60e51b815260206004820152602960248201527f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960448201526839903737ba1037bbb760b91b6064820152608401610767565b6001600160a01b03821661172b5760405162461bcd60e51b8152602060048201526024808201527f4552433732313a207472616e7366657220746f20746865207a65726f206164646044820152637265737360e01b6064820152608401610767565b611736838383611b85565b6117416000826113c1565b6001600160a01b038316600090815260036020526040812080546001929061176a908490612363565b90915550506001600160a01b0382166000908152600360205260408120805460019290611798908490612318565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b0386811691821790925591518493918716917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef91a4505050565b600a80546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b61185684848461164e565b61186284848484611b90565b6110d75760405162461bcd60e51b815260040161076790612240565b60606012805461066f906123bd565b6060816118b15750506040805180820190915260018152600360fc1b602082015290565b8160005b81156118db57806118c5816123f8565b91506118d49050600a83612330565b91506118b5565b60008167ffffffffffffffff8111156118f6576118f661247f565b6040519080825280601f01601f191660200182016040528015611920576020820181803683370190505b5090505b841561164657611935600183612363565b9150611942600a86612413565b61194d906030612318565b60f81b81838151811061196257611962612469565b60200101906001600160f81b031916908160001a905350611984600a86612330565b9450611924565b6000600161199884610f14565b6119a29190612363565b6000838152600760205260409020549091508082146119f5576001600160a01b03841660009081526006602090815260408083208584528252808320548484528184208190558352600790915290208190555b5060009182526007602090815260408084208490556001600160a01b039094168352600681528383209183525290812055565b600854600090611a3a90600190612363565b60008381526009602052604081205460088054939450909284908110611a6257611a62612469565b906000526020600020015490508060088381548110611a8357611a83612469565b6000918252602080832090910192909255828152600990915260408082208490558582528120556008805480611abb57611abb612453565b6001900381819060005260206000200160009055905550505050565b6000611ae283610f14565b6001600160a01b039093166000908152600660209081526040808320868452825280832085905593825260079052919091209190915550565b60006001600160e01b031982166380ac58cd60e01b1480611b4c57506001600160e01b03198216635b5e139f60e01b145b8061065a57506301ffc9a760e01b6001600160e01b031983161461065a565b610a30828260405180602001604052806000815250611c9d565b61089d8383836112e4565b60006001600160a01b0384163b15611c9257604051630a85bd0160e11b81526001600160a01b0385169063150b7a0290611bd49033908990889088906004016121ac565b602060405180830381600087803b158015611bee57600080fd5b505af1925050508015611c1e575060408051601f3d908101601f19168201909252611c1b918101906120d2565b60015b611c78573d808015611c4c576040519150601f19603f3d011682016040523d82523d6000602084013e611c51565b606091505b508051611c705760405162461bcd60e51b815260040161076790612240565b805181602001fd5b6001600160e01b031916630a85bd0160e11b149050611646565b506001949350505050565b611ca78383611cd0565b611cb46000848484611b90565b61089d5760405162461bcd60e51b815260040161076790612240565b6001600160a01b038216611d265760405162461bcd60e51b815260206004820181905260248201527f4552433732313a206d696e7420746f20746865207a65726f20616464726573736044820152606401610767565b6000818152600260205260409020546001600160a01b031615611d8b5760405162461bcd60e51b815260206004820152601c60248201527f4552433732313a20746f6b656e20616c7265616479206d696e746564000000006044820152606401610767565b611d9760008383611b85565b6001600160a01b0382166000908152600360205260408120805460019290611dc0908490612318565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b03861690811790915590518392907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a45050565b828054611e2a906123bd565b90600052602060002090601f016020900481019282611e4c5760008555611e92565b82601f10611e6557805160ff1916838001178555611e92565b82800160010185558215611e92579182015b82811115611e92578251825591602001919060010190611e77565b50611e9e929150611ea2565b5090565b5b80821115611e9e5760008155600101611ea3565b600067ffffffffffffffff80841115611ed257611ed261247f565b604051601f8501601f19908116603f01168101908282118183101715611efa57611efa61247f565b81604052809350858152868686011115611f1357600080fd5b858560208301376000602087830101525050509392505050565b80356001600160a01b0381168114611f4457600080fd5b919050565b600060208284031215611f5b57600080fd5b6111b182611f2d565b60008060408385031215611f7757600080fd5b611f8083611f2d565b9150611f8e60208401611f2d565b90509250929050565b600080600060608486031215611fac57600080fd5b611fb584611f2d565b9250611fc360208501611f2d565b9150604084013590509250925092565b60008060008060808587031215611fe957600080fd5b611ff285611f2d565b935061200060208601611f2d565b925060408501359150606085013567ffffffffffffffff81111561202357600080fd5b8501601f8101871361203457600080fd5b61204387823560208401611eb7565b91505092959194509250565b6000806040838503121561206257600080fd5b61206b83611f2d565b91506020830135801515811461208057600080fd5b809150509250929050565b6000806040838503121561209e57600080fd5b6120a783611f2d565b946020939093013593505050565b6000602082840312156120c757600080fd5b81356111b181612495565b6000602082840312156120e457600080fd5b81516111b181612495565b60006020828403121561210157600080fd5b813567ffffffffffffffff81111561211857600080fd5b8201601f8101841361212957600080fd5b61164684823560208401611eb7565b60006020828403121561214a57600080fd5b5035919050565b6000815180845261216981602086016020860161237a565b601f01601f19169290920160200192915050565b6000835161218f81846020880161237a565b8351908301906121a381836020880161237a565b01949350505050565b6001600160a01b03858116825284166020820152604081018390526080606082018190526000906121df90830184612151565b9695505050505050565b6020808252825182820181905260009190848201906040850190845b8181101561222157835183529284019291840191600101612205565b50909695505050505050565b6020815260006111b16020830184612151565b60208082526032908201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560408201527131b2b4bb32b91034b6b83632b6b2b73a32b960711b606082015260800190565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b60208082526031908201527f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f6040820152701ddb995c881b9bdc88185c1c1c9bdd9959607a1b606082015260800190565b6000821982111561232b5761232b612427565b500190565b60008261233f5761233f61243d565b500490565b600081600019048311821515161561235e5761235e612427565b500290565b60008282101561237557612375612427565b500390565b60005b8381101561239557818101518382015260200161237d565b838111156110d75750506000910152565b6000816123b5576123b5612427565b506000190190565b600181811c908216806123d157607f821691505b602082108114156123f257634e487b7160e01b600052602260045260246000fd5b50919050565b600060001982141561240c5761240c612427565b5060010190565b6000826124225761242261243d565b500690565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052601260045260246000fd5b634e487b7160e01b600052603160045260246000fd5b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b6001600160e01b031981168114610b8257600080fdfea26469706673582212209d1e07d0c6d1d718478afed56c313716e684f203e6ae9ae0ffc80eff07c6fe3c64736f6c63430008060033

Deployed Bytecode Sourcemap

49671:5219:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;54706:181;;;;;;;;;;-1:-1:-1;54706:181:0;;;;;:::i;:::-;;:::i;:::-;;;6283:14:1;;6276:22;6258:41;;6246:2;6231:18;54706:181:0;;;;;;;;49881:31;;;;;;;;;;;;;;;;;;;16697:25:1;;;16685:2;16670:18;49881:31:0;16652:76:1;31422:100:0;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;32981:221::-;;;;;;;;;;-1:-1:-1;32981:221:0;;;;;:::i;:::-;;:::i;:::-;;;-1:-1:-1;;;;;4944:32:1;;;4926:51;;4914:2;4899:18;32981:221:0;4881:102:1;32504:411:0;;;;;;;;;;-1:-1:-1;32504:411:0;;;;;:::i;:::-;;:::i;:::-;;53463:152;;;;;;;;;;-1:-1:-1;53463:152:0;;;;;:::i;:::-;;:::i;44135:113::-;;;;;;;;;;-1:-1:-1;44223:10:0;:17;44135:113;;53092:142;;;;;;:::i;:::-;;:::i;51976:106::-;;;;;;;;;;;;;:::i;33871:339::-;;;;;;;;;;-1:-1:-1;33871:339:0;;;;;:::i;:::-;;:::i;43803:256::-;;;;;;;;;;-1:-1:-1;43803:256:0;;;;;:::i;:::-;;:::i;50217:170::-;;;;;;;;;;-1:-1:-1;50217:170:0;;;;;:::i;:::-;;:::i;34281:185::-;;;;;;;;;;-1:-1:-1;34281:185:0;;;;;:::i;:::-;;:::i;53668:158::-;;;;;;;;;;;;;:::i;44325:233::-;;;;;;;;;;-1:-1:-1;44325:233:0;;;;;:::i;:::-;;:::i;54395:101::-;;;;;;;;;;-1:-1:-1;54395:101:0;;;;;:::i;:::-;;:::i;49921:29::-;;;;;;;;;;-1:-1:-1;49921:29:0;;;;;;;;31116:239;;;;;;;;;;-1:-1:-1;31116:239:0;;;;;:::i;:::-;;:::i;53901:360::-;;;;;;;;;;-1:-1:-1;53901:360:0;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;30846:208::-;;;;;;;;;;-1:-1:-1;30846:208:0;;;;;:::i;:::-;;:::i;49994:23::-;;;;;;;;;;;;;;;;19505:94;;;;;;;;;;;;;:::i;18854:87::-;;;;;;;;;;-1:-1:-1;18927:6:0;;-1:-1:-1;;;;;18927:6:0;18854:87;;31591:104;;;;;;;;;;;;;:::i;49957:30::-;;;;;;;;;;;;;;;;33274:295;;;;;;;;;;-1:-1:-1;33274:295:0;;;;;:::i;:::-;;:::i;50129:31::-;;;;;;;;;;-1:-1:-1;50129:31:0;;;;;;;;50024:24;;;;;;;;;;;;;;;;49846:28;;;;;;;;;;;;;;;;34537:328;;;;;;;;;;-1:-1:-1;34537:328:0;;;;;:::i;:::-;;:::i;31766:334::-;;;;;;;;;;-1:-1:-1;31766:334:0;;;;;:::i;:::-;;:::i;50057:26::-;;;;;;;;;;;;;:::i;49770:67::-;;;;;;;;;;-1:-1:-1;49770:67:0;;;;-1:-1:-1;;;;;49770:67:0;;;33640:164;;;;;;;;;;-1:-1:-1;33640:164:0;;;;;:::i;:::-;-1:-1:-1;;;;;33761:25:0;;;33737:4;33761:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;;;;33640:164;19754:192;;;;;;;;;;-1:-1:-1;19754:192:0;;;;;:::i;:::-;;:::i;54706:181::-;54819:4;54843:36;54867:11;54843:23;:36::i;:::-;54836:43;54706:181;-1:-1:-1;;54706:181:0:o;31422:100::-;31476:13;31509:5;31502:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;31422:100;:::o;32981:221::-;33057:7;36464:16;;;:7;:16;;;;;;-1:-1:-1;;;;;36464:16:0;33077:73;;;;-1:-1:-1;;;33077:73:0;;12857:2:1;33077:73:0;;;12839:21:1;12896:2;12876:18;;;12869:30;12935:34;12915:18;;;12908:62;-1:-1:-1;;;12986:18:1;;;12979:42;13038:19;;33077:73:0;;;;;;;;;-1:-1:-1;33170:24:0;;;;:15;:24;;;;;;-1:-1:-1;;;;;33170:24:0;;32981:221::o;32504:411::-;32585:13;32601:23;32616:7;32601:14;:23::i;:::-;32585:39;;32649:5;-1:-1:-1;;;;;32643:11:0;:2;-1:-1:-1;;;;;32643:11:0;;;32635:57;;;;-1:-1:-1;;;32635:57:0;;14457:2:1;32635:57:0;;;14439:21:1;14496:2;14476:18;;;14469:30;14535:34;14515:18;;;14508:62;-1:-1:-1;;;14586:18:1;;;14579:31;14627:19;;32635:57:0;14429:223:1;32635:57:0;9680:10;-1:-1:-1;;;;;32727:21:0;;;;:62;;-1:-1:-1;32752:37:0;32769:5;9680:10;33640:164;:::i;32752:37::-;32705:168;;;;-1:-1:-1;;;32705:168:0;;10559:2:1;32705:168:0;;;10541:21:1;10598:2;10578:18;;;10571:30;10637:34;10617:18;;;10610:62;10708:26;10688:18;;;10681:54;10752:19;;32705:168:0;10531:246:1;32705:168:0;32886:21;32895:2;32899:7;32886:8;:21::i;:::-;32574:341;32504:411;;:::o;53463:152::-;18927:6;;-1:-1:-1;;;;;18927:6:0;9680:10;19074:23;19066:68;;;;-1:-1:-1;;;19066:68:0;;;;;;;:::i;:::-;53554:2:::2;53558:8;53579:28:::3;53588:4;53594:8;53604:2;53579:8;:28::i;:::-;-1:-1:-1::0;;;;;51110:16:0;::::2;51116:10;51110:16;;51088:95;;;::::0;-1:-1:-1;;;51088:95:0;;9029:2:1;51088:95:0::2;::::0;::::2;9011:21:1::0;9068:2;9048:18;;;9041:30;9107:31;9087:18;;;9080:59;9156:18;;51088:95:0::2;9001:179:1::0;51088:95:0::2;51224:7;::::0;-1:-1:-1;;;;;51218:13:0;;::::2;51224:7:::0;::::2;51218:13;;51196:85;;;::::0;-1:-1:-1;;;51196:85:0;;12145:2:1;51196:85:0::2;::::0;::::2;12127:21:1::0;12184:2;12164:18;;;12157:30;-1:-1:-1;;;12203:18:1;;;12196:52;12265:18;;51196:85:0::2;12117:172:1::0;51196:85:0::2;51327:1;51316:8;:12;:35;;;;;51344:7;;51332:8;:19;;51316:35;51294:117;;;::::0;-1:-1:-1;;;51294:117:0;;16392:2:1;51294:117:0::2;::::0;::::2;16374:21:1::0;;;16411:18;;;16404:30;16470:34;16450:18;;;16443:62;16522:18;;51294:117:0::2;16364:182:1::0;51294:117:0::2;-1:-1:-1::0;;50465:11:0::1;::::0;::::1;;50464:12;50442:78;;;::::0;-1:-1:-1;;;50442:78:0;;6736:2:1;50442:78:0::1;::::0;::::1;6718:21:1::0;6775:2;6755:18;;;6748:30;-1:-1:-1;;;6794:18:1;;;6787:46;6850:18;;50442:78:0::1;6708:166:1::0;50442:78:0::1;53463:152:::0;;:::o;53092:142::-;53168:8:::1;53189:37:::2;53198:5;53205:8;53215:10;53189:8;:37::i;:::-;50618:9:::1;::::0;::::1;;50596:70;;;::::0;-1:-1:-1;;;50596:70:0;;11805:2:1;50596:70:0::1;::::0;::::1;11787:21:1::0;11844:2;11824:18;;;11817:30;-1:-1:-1;;;11863:18:1;;;11856:41;11914:18;;50596:70:0::1;11777:161:1::0;50596:70:0::1;50712:1;50701:8;:12;:34;;;;;50729:6;;50717:8;:18;;50701:34;50679:115;;;::::0;-1:-1:-1;;;50679:115:0;;14859:2:1;50679:115:0::1;::::0;::::1;14841:21:1::0;14898:2;14878:18;;;14871:30;14937:33;14917:18;;;14910:61;14988:18;;50679:115:0::1;14831:181:1::0;50679:115:0::1;50940:8;50932:5;;:16;;;;:::i;:::-;50919:9;:29;50897:103;;;::::0;-1:-1:-1;;;50897:103:0;;7081:2:1;50897:103:0::1;::::0;::::1;7063:21:1::0;7120:2;7100:18;;;7093:30;7159:26;7139:18;;;7132:54;7203:18;;50897:103:0::1;7053:174:1::0;50897:103:0::1;-1:-1:-1::0;50465:11:0;;;;50464:12;50442:78;;;;-1:-1:-1;;;50442:78:0;;6736:2:1;50442:78:0;;;6718:21:1;6775:2;6755:18;;;6748:30;-1:-1:-1;;;6794:18:1;;;6787:46;6850:18;;50442:78:0;6708:166:1;50442:78:0;53092:142;:::o;51976:106::-;18927:6;;-1:-1:-1;;;;;18927:6:0;9680:10;19074:23;19066:68;;;;-1:-1:-1;;;19066:68:0;;;;;;;:::i;:::-;52049:9:::1;::::0;::::1;;52048:10;:25;;52068:5;52048:25;;;52061:4;52048:25;52035:9;:39:::0;;-1:-1:-1;;52035:39:0::1;::::0;::::1;;::::0;;;::::1;::::0;;51976:106::o;33871:339::-;34066:41;9680:10;34099:7;34066:18;:41::i;:::-;34058:103;;;;-1:-1:-1;;;34058:103:0;;;;;;;:::i;:::-;34174:28;34184:4;34190:2;34194:7;34174:9;:28::i;43803:256::-;43900:7;43936:23;43953:5;43936:16;:23::i;:::-;43928:5;:31;43920:87;;;;-1:-1:-1;;;43920:87:0;;7434:2:1;43920:87:0;;;7416:21:1;7473:2;7453:18;;;7446:30;7512:34;7492:18;;;7485:62;-1:-1:-1;;;7563:18:1;;;7556:41;7614:19;;43920:87:0;7406:233:1;43920:87:0;-1:-1:-1;;;;;;44025:19:0;;;;;;;;:12;:19;;;;;;;;:26;;;;;;;;;43803:256::o;50217:170::-;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;50217:170:0;:::o;34281:185::-;34419:39;34436:4;34442:2;34446:7;34419:39;;;;;;;;;;;;:16;:39::i;53668:158::-;18927:6;;-1:-1:-1;;;;;18927:6:0;9680:10;19074:23;19066:68;;;;-1:-1:-1;;;19066:68:0;;;;;;;:::i;:::-;53784:33:::1;::::0;53744:21:::1;::::0;53792:10:::1;::::0;53784:33;::::1;;;::::0;53744:21;;53729:12:::1;53784:33:::0;53729:12;53784:33;53744:21;53792:10;53784:33;::::1;;;;;;53776:42;;;::::0;::::1;44325:233:::0;44400:7;44436:30;44223:10;:17;;44135:113;44436:30;44428:5;:38;44420:95;;;;-1:-1:-1;;;44420:95:0;;15979:2:1;44420:95:0;;;15961:21:1;16018:2;15998:18;;;15991:30;16057:34;16037:18;;;16030:62;-1:-1:-1;;;16108:18:1;;;16101:42;16160:19;;44420:95:0;15951:234:1;44420:95:0;44533:10;44544:5;44533:17;;;;;;;;:::i;:::-;;;;;;;;;44526:24;;44325:233;;;:::o;54395:101::-;18927:6;;-1:-1:-1;;;;;18927:6:0;9680:10;19074:23;19066:68;;;;-1:-1:-1;;;19066:68:0;;;;;;;:::i;:::-;54466:22;;::::1;::::0;:12:::1;::::0;:22:::1;::::0;::::1;::::0;::::1;:::i;31116:239::-:0;31188:7;31224:16;;;:7;:16;;;;;;-1:-1:-1;;;;;31224:16:0;31259:19;31251:73;;;;-1:-1:-1;;;31251:73:0;;11395:2:1;31251:73:0;;;11377:21:1;11434:2;11414:18;;;11407:30;11473:34;11453:18;;;11446:62;-1:-1:-1;;;11524:18:1;;;11517:39;11573:19;;31251:73:0;11367:231:1;53901:360:0;53964:13;53990:15;54008:16;54018:5;54008:9;:16::i;:::-;53990:34;;54035:22;54071:10;54060:22;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;54060:22:0;;54035:47;;54095:6;54116:112;54127:10;54123:1;:14;54116:112;;;54169:29;54189:5;54196:1;54169:19;:29::i;:::-;54155:8;54164:1;54155:11;;;;;;;;:::i;:::-;;;;;;;;;;:43;54213:3;;;;:::i;:::-;;;;54116:112;;;-1:-1:-1;54245:8:0;53901:360;-1:-1:-1;;;53901:360:0:o;30846:208::-;30918:7;-1:-1:-1;;;;;30946:19:0;;30938:74;;;;-1:-1:-1;;;30938:74:0;;10984:2:1;30938:74:0;;;10966:21:1;11023:2;11003:18;;;10996:30;11062:34;11042:18;;;11035:62;-1:-1:-1;;;11113:18:1;;;11106:40;11163:19;;30938:74:0;10956:232:1;30938:74:0;-1:-1:-1;;;;;;31030:16:0;;;;;:9;:16;;;;;;;30846:208::o;19505:94::-;18927:6;;-1:-1:-1;;;;;18927:6:0;9680:10;19074:23;19066:68;;;;-1:-1:-1;;;19066:68:0;;;;;;;:::i;:::-;19570:21:::1;19588:1;19570:9;:21::i;:::-;19505:94::o:0;31591:104::-;31647:13;31680:7;31673:14;;;;;:::i;33274:295::-;-1:-1:-1;;;;;33377:24:0;;9680:10;33377:24;;33369:62;;;;-1:-1:-1;;;33369:62:0;;9792:2:1;33369:62:0;;;9774:21:1;9831:2;9811:18;;;9804:30;9870:27;9850:18;;;9843:55;9915:18;;33369:62:0;9764:175:1;33369:62:0;9680:10;33444:32;;;;:18;:32;;;;;;;;-1:-1:-1;;;;;33444:42:0;;;;;;;;;;;;:53;;-1:-1:-1;;33444:53:0;;;;;;;;;;33513:48;;6258:41:1;;;33444:42:0;;9680:10;33513:48;;6231:18:1;33513:48:0;;;;;;;33274:295;;:::o;34537:328::-;34712:41;9680:10;34745:7;34712:18;:41::i;:::-;34704:103;;;;-1:-1:-1;;;34704:103:0;;;;;;;:::i;:::-;34818:39;34832:4;34838:2;34842:7;34851:5;34818:13;:39::i;:::-;34537:328;;;;:::o;31766:334::-;36440:4;36464:16;;;:7;:16;;;;;;31839:13;;-1:-1:-1;;;;;36464:16:0;31865:76;;;;-1:-1:-1;;;31865:76:0;;14041:2:1;31865:76:0;;;14023:21:1;14080:2;14060:18;;;14053:30;14119:34;14099:18;;;14092:62;-1:-1:-1;;;14170:18:1;;;14163:45;14225:19;;31865:76:0;14013:237:1;31865:76:0;31954:21;31978:10;:8;:10::i;:::-;31954:34;;32030:1;32012:7;32006:21;:25;:86;;;;;;;;;;;;;;;;;32058:7;32067:18;:7;:16;:18::i;:::-;32041:45;;;;;;;;;:::i;:::-;;;;;;;;;;;;;32006:86;31999:93;31766:334;-1:-1:-1;;;31766:334:0:o;50057:26::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;19754:192::-;18927:6;;-1:-1:-1;;;;;18927:6:0;9680:10;19074:23;19066:68;;;;-1:-1:-1;;;19066:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;19843:22:0;::::1;19835:73;;;::::0;-1:-1:-1;;;19835:73:0;;8265:2:1;19835:73:0::1;::::0;::::1;8247:21:1::0;8304:2;8284:18;;;8277:30;8343:34;8323:18;;;8316:62;-1:-1:-1;;;8394:18:1;;;8387:36;8440:19;;19835:73:0::1;8237:228:1::0;19835:73:0::1;19919:19;19929:8;19919:9;:19::i;10554:387::-:0;10877:20;10925:8;;;10554:387::o;45171:555::-;-1:-1:-1;;;;;45343:18:0;;45339:187;;45378:40;45410:7;46553:10;:17;;46526:24;;;;:15;:24;;;;;:44;;;46581:24;;;;;;;;;;;;46449:164;45378:40;45339:187;;;45448:2;-1:-1:-1;;;;;45440:10:0;:4;-1:-1:-1;;;;;45440:10:0;;45436:90;;45467:47;45500:4;45506:7;45467:32;:47::i;:::-;-1:-1:-1;;;;;45540:16:0;;45536:183;;45573:45;45610:7;45573:36;:45::i;45536:183::-;45646:4;-1:-1:-1;;;;;45640:10:0;:2;-1:-1:-1;;;;;45640:10:0;;45636:83;;45667:40;45695:2;45699:7;45667:27;:40::i;43482:237::-;43584:4;-1:-1:-1;;;;;;43608:50:0;;-1:-1:-1;;;43608:50:0;;:103;;;43675:36;43699:11;43675:23;:36::i;40357:174::-;40432:24;;;;:15;:24;;;;;:29;;-1:-1:-1;;;;;;40432:29:0;-1:-1:-1;;;;;40432:29:0;;;;;;;;:24;;40486:23;40432:24;40486:14;:23::i;:::-;-1:-1:-1;;;;;40477:46:0;;;;;;;;;;;40357:174;;:::o;52106:945::-;52183:6;52206:838;52217:8;52213:1;:12;52206:838;;;52257:17;;52428:4;52417:15;;52413:197;;;52453:6;:39;;52480:9;:12;;;:9;:12;;;:::i;:::-;;;;;52453:39;;;52462:13;:15;;;:13;:15;;;:::i;:::-;;;;;52453:39;-1:-1:-1;52511:11:0;:18;;-1:-1:-1;;52511:18:0;52525:4;52511:18;;;52548:22;52558:2;52562:7;52548:9;:22::i;:::-;52589:5;;;52413:197;52712:25;;;;:16;:25;;;;;;;;:33;;:25;:33;52708:121;;;52766:17;:19;;;:17;:19;;;:::i;:::-;;;;;;52804:9;;;;;:::i;:::-;;;;52708:121;52857:6;:39;;52884:9;:12;;;:9;:12;;;:::i;:::-;;;;;52857:39;;;52866:13;:15;;;:13;:15;;;:::i;:::-;;;;;52857:39;-1:-1:-1;52911:17:0;:19;;;:17;:19;;;:::i;:::-;;;;-1:-1:-1;;52945:25:0;;;;:16;:25;;;;;:32;;-1:-1:-1;;52945:32:0;52973:4;52945:32;;;52992:22;53002:2;52962:7;52992:9;:22::i;:::-;53029:3;;;;:::i;:::-;;;;52227:817;52206:838;;36669:348;36762:4;36464:16;;;:7;:16;;;;;;-1:-1:-1;;;;;36464:16:0;36779:73;;;;-1:-1:-1;;;36779:73:0;;10146:2:1;36779:73:0;;;10128:21:1;10185:2;10165:18;;;10158:30;10224:34;10204:18;;;10197:62;-1:-1:-1;;;10275:18:1;;;10268:42;10327:19;;36779:73:0;10118:234:1;36779:73:0;36863:13;36879:23;36894:7;36879:14;:23::i;:::-;36863:39;;36932:5;-1:-1:-1;;;;;36921:16:0;:7;-1:-1:-1;;;;;36921:16:0;;:51;;;;36965:7;-1:-1:-1;;;;;36941:31:0;:20;36953:7;36941:11;:20::i;:::-;-1:-1:-1;;;;;36941:31:0;;36921:51;:87;;;-1:-1:-1;;;;;;33761:25:0;;;33737:4;33761:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;36976:32;36913:96;36669:348;-1:-1:-1;;;;36669:348:0:o;39661:578::-;39820:4;-1:-1:-1;;;;;39793:31:0;:23;39808:7;39793:14;:23::i;:::-;-1:-1:-1;;;;;39793:31:0;;39785:85;;;;-1:-1:-1;;;39785:85:0;;13631:2:1;39785:85:0;;;13613:21:1;13670:2;13650:18;;;13643:30;13709:34;13689:18;;;13682:62;-1:-1:-1;;;13760:18:1;;;13753:39;13809:19;;39785:85:0;13603:231:1;39785:85:0;-1:-1:-1;;;;;39889:16:0;;39881:65;;;;-1:-1:-1;;;39881:65:0;;9387:2:1;39881:65:0;;;9369:21:1;9426:2;9406:18;;;9399:30;9465:34;9445:18;;;9438:62;-1:-1:-1;;;9516:18:1;;;9509:34;9560:19;;39881:65:0;9359:226:1;39881:65:0;39959:39;39980:4;39986:2;39990:7;39959:20;:39::i;:::-;40063:29;40080:1;40084:7;40063:8;:29::i;:::-;-1:-1:-1;;;;;40105:15:0;;;;;;:9;:15;;;;;:20;;40124:1;;40105:15;:20;;40124:1;;40105:20;:::i;:::-;;;;-1:-1:-1;;;;;;;40136:13:0;;;;;;:9;:13;;;;;:18;;40153:1;;40136:13;:18;;40153:1;;40136:18;:::i;:::-;;;;-1:-1:-1;;40165:16:0;;;;:7;:16;;;;;;:21;;-1:-1:-1;;;;;;40165:21:0;-1:-1:-1;;;;;40165:21:0;;;;;;;;;40204:27;;40165:16;;40204:27;;;;;;;39661:578;;;:::o;19954:173::-;20029:6;;;-1:-1:-1;;;;;20046:17:0;;;-1:-1:-1;;;;;;20046:17:0;;;;;;;20079:40;;20029:6;;;20046:17;20029:6;;20079:40;;20010:16;;20079:40;19999:128;19954:173;:::o;35747:315::-;35904:28;35914:4;35920:2;35924:7;35904:9;:28::i;:::-;35951:48;35974:4;35980:2;35984:7;35993:5;35951:22;:48::i;:::-;35943:111;;;;-1:-1:-1;;;35943:111:0;;;;;;;:::i;54269:118::-;54334:13;54367:12;54360:19;;;;;:::i;7242:723::-;7298:13;7519:10;7515:53;;-1:-1:-1;;7546:10:0;;;;;;;;;;;;-1:-1:-1;;;7546:10:0;;;;;7242:723::o;7515:53::-;7593:5;7578:12;7634:78;7641:9;;7634:78;;7667:8;;;;:::i;:::-;;-1:-1:-1;7690:10:0;;-1:-1:-1;7698:2:0;7690:10;;:::i;:::-;;;7634:78;;;7722:19;7754:6;7744:17;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;7744:17:0;;7722:39;;7772:154;7779:10;;7772:154;;7806:11;7816:1;7806:11;;:::i;:::-;;-1:-1:-1;7875:10:0;7883:2;7875:5;:10;:::i;:::-;7862:24;;:2;:24;:::i;:::-;7849:39;;7832:6;7839;7832:14;;;;;;;;:::i;:::-;;;;:56;-1:-1:-1;;;;;7832:56:0;;;;;;;;-1:-1:-1;7903:11:0;7912:2;7903:11;;:::i;:::-;;;7772:154;;47240:988;47506:22;47556:1;47531:22;47548:4;47531:16;:22::i;:::-;:26;;;;:::i;:::-;47568:18;47589:26;;;:17;:26;;;;;;47506:51;;-1:-1:-1;47722:28:0;;;47718:328;;-1:-1:-1;;;;;47789:18:0;;47767:19;47789:18;;;:12;:18;;;;;;;;:34;;;;;;;;;47840:30;;;;;;:44;;;47957:30;;:17;:30;;;;;:43;;;47718:328;-1:-1:-1;48142:26:0;;;;:17;:26;;;;;;;;48135:33;;;-1:-1:-1;;;;;48186:18:0;;;;;:12;:18;;;;;:34;;;;;;;48179:41;47240:988::o;48523:1079::-;48801:10;:17;48776:22;;48801:21;;48821:1;;48801:21;:::i;:::-;48833:18;48854:24;;;:15;:24;;;;;;49227:10;:26;;48776:46;;-1:-1:-1;48854:24:0;;48776:46;;49227:26;;;;;;:::i;:::-;;;;;;;;;49205:48;;49291:11;49266:10;49277;49266:22;;;;;;;;:::i;:::-;;;;;;;;;;;;:36;;;;49371:28;;;:15;:28;;;;;;;:41;;;49543:24;;;;;49536:31;49578:10;:16;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;48594:1008;;;48523:1079;:::o;46027:221::-;46112:14;46129:20;46146:2;46129:16;:20::i;:::-;-1:-1:-1;;;;;46160:16:0;;;;;;;:12;:16;;;;;;;;:24;;;;;;;;:34;;;46205:26;;;:17;:26;;;;;;:35;;;;-1:-1:-1;46027:221:0:o;30477:305::-;30579:4;-1:-1:-1;;;;;;30616:40:0;;-1:-1:-1;;;30616:40:0;;:105;;-1:-1:-1;;;;;;;30673:48:0;;-1:-1:-1;;;30673:48:0;30616:105;:158;;;-1:-1:-1;;;;;;;;;;29137:40:0;;;30738:36;29028:157;37359:110;37435:26;37445:2;37449:7;37435:26;;;;;;;;;;;;:9;:26::i;54504:194::-;54645:45;54672:4;54678:2;54682:7;54645:26;:45::i;41096:799::-;41251:4;-1:-1:-1;;;;;41272:13:0;;10877:20;10925:8;41268:620;;41308:72;;-1:-1:-1;;;41308:72:0;;-1:-1:-1;;;;;41308:36:0;;;;;:72;;9680:10;;41359:4;;41365:7;;41374:5;;41308:72;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;41308:72:0;;;;;;;;-1:-1:-1;;41308:72:0;;;;;;;;;;;;:::i;:::-;;;41304:529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;41550:13:0;;41546:272;;41593:60;;-1:-1:-1;;;41593:60:0;;;;;;;:::i;41546:272::-;41768:6;41762:13;41753:6;41749:2;41745:15;41738:38;41304:529;-1:-1:-1;;;;;;41431:51:0;-1:-1:-1;;;41431:51:0;;-1:-1:-1;41424:58:0;;41268:620;-1:-1:-1;41872:4:0;41096:799;;;;;;:::o;37696:321::-;37826:18;37832:2;37836:7;37826:5;:18::i;:::-;37877:54;37908:1;37912:2;37916:7;37925:5;37877:22;:54::i;:::-;37855:154;;;;-1:-1:-1;;;37855:154:0;;;;;;;:::i;38353:382::-;-1:-1:-1;;;;;38433:16:0;;38425:61;;;;-1:-1:-1;;;38425:61:0;;12496:2:1;38425:61:0;;;12478:21:1;;;12515:18;;;12508:30;12574:34;12554:18;;;12547:62;12626:18;;38425:61:0;12468:182:1;38425:61:0;36440:4;36464:16;;;:7;:16;;;;;;-1:-1:-1;;;;;36464:16:0;:30;38497:58;;;;-1:-1:-1;;;38497:58:0;;8672:2:1;38497:58:0;;;8654:21:1;8711:2;8691:18;;;8684:30;8750;8730:18;;;8723:58;8798:18;;38497:58:0;8644:178:1;38497:58:0;38568:45;38597:1;38601:2;38605:7;38568:20;:45::i;:::-;-1:-1:-1;;;;;38626:13:0;;;;;;:9;:13;;;;;:18;;38643:1;;38626:13;:18;;38643:1;;38626:18;:::i;:::-;;;;-1:-1:-1;;38655:16:0;;;;:7;:16;;;;;;:21;;-1:-1:-1;;;;;;38655:21:0;-1:-1:-1;;;;;38655:21:0;;;;;;;;38694:33;;38655:16;;;38694:33;;38655:16;;38694:33;38353:382;;:::o;-1:-1:-1:-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;;;;;;;;;14:631:1;78:5;108:18;149:2;141:6;138:14;135:2;;;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:2;;;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:2;;;532:1;529;522:12;491:2;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;;;;88:557;;;;;:::o;650:173::-;718:20;;-1:-1:-1;;;;;767:31:1;;757:42;;747:2;;813:1;810;803:12;747:2;699:124;;;:::o;828:186::-;887:6;940:2;928:9;919:7;915:23;911:32;908:2;;;956:1;953;946:12;908:2;979:29;998:9;979:29;:::i;1019:260::-;1087:6;1095;1148:2;1136:9;1127:7;1123:23;1119:32;1116:2;;;1164:1;1161;1154:12;1116:2;1187:29;1206:9;1187:29;:::i;:::-;1177:39;;1235:38;1269:2;1258:9;1254:18;1235:38;:::i;:::-;1225:48;;1106:173;;;;;:::o;1284:328::-;1361:6;1369;1377;1430:2;1418:9;1409:7;1405:23;1401:32;1398:2;;;1446:1;1443;1436:12;1398:2;1469:29;1488:9;1469:29;:::i;:::-;1459:39;;1517:38;1551:2;1540:9;1536:18;1517:38;:::i;:::-;1507:48;;1602:2;1591:9;1587:18;1574:32;1564:42;;1388:224;;;;;:::o;1617:666::-;1712:6;1720;1728;1736;1789:3;1777:9;1768:7;1764:23;1760:33;1757:2;;;1806:1;1803;1796:12;1757:2;1829:29;1848:9;1829:29;:::i;:::-;1819:39;;1877:38;1911:2;1900:9;1896:18;1877:38;:::i;:::-;1867:48;;1962:2;1951:9;1947:18;1934:32;1924:42;;2017:2;2006:9;2002:18;1989:32;2044:18;2036:6;2033:30;2030:2;;;2076:1;2073;2066:12;2030:2;2099:22;;2152:4;2144:13;;2140:27;-1:-1:-1;2130:2:1;;2181:1;2178;2171:12;2130:2;2204:73;2269:7;2264:2;2251:16;2246:2;2242;2238:11;2204:73;:::i;:::-;2194:83;;;1747:536;;;;;;;:::o;2288:347::-;2353:6;2361;2414:2;2402:9;2393:7;2389:23;2385:32;2382:2;;;2430:1;2427;2420:12;2382:2;2453:29;2472:9;2453:29;:::i;:::-;2443:39;;2532:2;2521:9;2517:18;2504:32;2579:5;2572:13;2565:21;2558:5;2555:32;2545:2;;2601:1;2598;2591:12;2545:2;2624:5;2614:15;;;2372:263;;;;;:::o;2640:254::-;2708:6;2716;2769:2;2757:9;2748:7;2744:23;2740:32;2737:2;;;2785:1;2782;2775:12;2737:2;2808:29;2827:9;2808:29;:::i;:::-;2798:39;2884:2;2869:18;;;;2856:32;;-1:-1:-1;;;2727:167:1:o;2899:245::-;2957:6;3010:2;2998:9;2989:7;2985:23;2981:32;2978:2;;;3026:1;3023;3016:12;2978:2;3065:9;3052:23;3084:30;3108:5;3084:30;:::i;3149:249::-;3218:6;3271:2;3259:9;3250:7;3246:23;3242:32;3239:2;;;3287:1;3284;3277:12;3239:2;3319:9;3313:16;3338:30;3362:5;3338:30;:::i;3403:450::-;3472:6;3525:2;3513:9;3504:7;3500:23;3496:32;3493:2;;;3541:1;3538;3531:12;3493:2;3581:9;3568:23;3614:18;3606:6;3603:30;3600:2;;;3646:1;3643;3636:12;3600:2;3669:22;;3722:4;3714:13;;3710:27;-1:-1:-1;3700:2:1;;3751:1;3748;3741:12;3700:2;3774:73;3839:7;3834:2;3821:16;3816:2;3812;3808:11;3774:73;:::i;3858:180::-;3917:6;3970:2;3958:9;3949:7;3945:23;3941:32;3938:2;;;3986:1;3983;3976:12;3938:2;-1:-1:-1;4009:23:1;;3928:110;-1:-1:-1;3928:110:1:o;4043:257::-;4084:3;4122:5;4116:12;4149:6;4144:3;4137:19;4165:63;4221:6;4214:4;4209:3;4205:14;4198:4;4191:5;4187:16;4165:63;:::i;:::-;4282:2;4261:15;-1:-1:-1;;4257:29:1;4248:39;;;;4289:4;4244:50;;4092:208;-1:-1:-1;;4092:208:1:o;4305:470::-;4484:3;4522:6;4516:13;4538:53;4584:6;4579:3;4572:4;4564:6;4560:17;4538:53;:::i;:::-;4654:13;;4613:16;;;;4676:57;4654:13;4613:16;4710:4;4698:17;;4676:57;:::i;:::-;4749:20;;4492:283;-1:-1:-1;;;;4492:283:1:o;4988:488::-;-1:-1:-1;;;;;5257:15:1;;;5239:34;;5309:15;;5304:2;5289:18;;5282:43;5356:2;5341:18;;5334:34;;;5404:3;5399:2;5384:18;;5377:31;;;5182:4;;5425:45;;5450:19;;5442:6;5425:45;:::i;:::-;5417:53;5191:285;-1:-1:-1;;;;;;5191:285:1:o;5481:632::-;5652:2;5704:21;;;5774:13;;5677:18;;;5796:22;;;5623:4;;5652:2;5875:15;;;;5849:2;5834:18;;;5623:4;5918:169;5932:6;5929:1;5926:13;5918:169;;;5993:13;;5981:26;;6062:15;;;;6027:12;;;;5954:1;5947:9;5918:169;;;-1:-1:-1;6104:3:1;;5632:481;-1:-1:-1;;;;;;5632:481:1:o;6310:219::-;6459:2;6448:9;6441:21;6422:4;6479:44;6519:2;6508:9;6504:18;6496:6;6479:44;:::i;7644:414::-;7846:2;7828:21;;;7885:2;7865:18;;;7858:30;7924:34;7919:2;7904:18;;7897:62;-1:-1:-1;;;7990:2:1;7975:18;;7968:48;8048:3;8033:19;;7818:240::o;13068:356::-;13270:2;13252:21;;;13289:18;;;13282:30;13348:34;13343:2;13328:18;;13321:62;13415:2;13400:18;;13242:182::o;15017:413::-;15219:2;15201:21;;;15258:2;15238:18;;;15231:30;15297:34;15292:2;15277:18;;15270:62;-1:-1:-1;;;15363:2:1;15348:18;;15341:47;15420:3;15405:19;;15191:239::o;16733:128::-;16773:3;16804:1;16800:6;16797:1;16794:13;16791:2;;;16810:18;;:::i;:::-;-1:-1:-1;16846:9:1;;16781:80::o;16866:120::-;16906:1;16932;16922:2;;16937:18;;:::i;:::-;-1:-1:-1;16971:9:1;;16912:74::o;16991:168::-;17031:7;17097:1;17093;17089:6;17085:14;17082:1;17079:21;17074:1;17067:9;17060:17;17056:45;17053:2;;;17104:18;;:::i;:::-;-1:-1:-1;17144:9:1;;17043:116::o;17164:125::-;17204:4;17232:1;17229;17226:8;17223:2;;;17237:18;;:::i;:::-;-1:-1:-1;17274:9:1;;17213:76::o;17294:258::-;17366:1;17376:113;17390:6;17387:1;17384:13;17376:113;;;17466:11;;;17460:18;17447:11;;;17440:39;17412:2;17405:10;17376:113;;;17507:6;17504:1;17501:13;17498:2;;;-1:-1:-1;;17542:1:1;17524:16;;17517:27;17347:205::o;17557:136::-;17596:3;17624:5;17614:2;;17633:18;;:::i;:::-;-1:-1:-1;;;17669:18:1;;17604:89::o;17698:380::-;17777:1;17773:12;;;;17820;;;17841:2;;17895:4;17887:6;17883:17;17873:27;;17841:2;17948;17940:6;17937:14;17917:18;17914:38;17911:2;;;17994:10;17989:3;17985:20;17982:1;17975:31;18029:4;18026:1;18019:15;18057:4;18054:1;18047:15;17911:2;;17753:325;;;:::o;18083:135::-;18122:3;-1:-1:-1;;18143:17:1;;18140:2;;;18163:18;;:::i;:::-;-1:-1:-1;18210:1:1;18199:13;;18130:88::o;18223:112::-;18255:1;18281;18271:2;;18286:18;;:::i;:::-;-1:-1:-1;18320:9:1;;18261:74::o;18340:127::-;18401:10;18396:3;18392:20;18389:1;18382:31;18432:4;18429:1;18422:15;18456:4;18453:1;18446:15;18472:127;18533:10;18528:3;18524:20;18521:1;18514:31;18564:4;18561:1;18554:15;18588:4;18585:1;18578:15;18604:127;18665:10;18660:3;18656:20;18653:1;18646:31;18696:4;18693:1;18686:15;18720:4;18717:1;18710:15;18736:127;18797:10;18792:3;18788:20;18785:1;18778:31;18828:4;18825:1;18818:15;18852:4;18849:1;18842:15;18868:127;18929:10;18924:3;18920:20;18917:1;18910:31;18960:4;18957:1;18950:15;18984:4;18981:1;18974:15;19000:131;-1:-1:-1;;;;;;19074:32:1;;19064:43;;19054:2;;19121:1;19118;19111:12

Swarm Source

ipfs://9d1e07d0c6d1d718478afed56c313716e684f203e6ae9ae0ffc80eff07c6fe3c
Loading...
Loading
Loading...
Loading
[ Download: CSV Export  ]
[ Download: CSV Export  ]

A token is a representation of an on-chain or off-chain asset. The token page shows information such as price, total supply, holders, transfers and social links. Learn more about this page in our Knowledge Base.