ETH Price: $3,305.12 (-3.13%)
Gas: 16 Gwei

Token

Doge Tribe Pup (Dogetp)
 

Overview

Max Total Supply

3,392 Dogetp

Holders

1,048

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A
Filtered by Token Holder
jahon.eth
Balance
1 Dogetp
0xe3a0e7d0d320ecb66b936a7d3b00f6a9ee18dabd
Loading...
Loading
Loading...
Loading
Loading...
Loading

OVERVIEW

Doge Tribe aims to bring 10,000 unique, cute, awesome Doge Tribe Pup artwork NFT collection itsour amazing Doge Tribe Metaverse.

# Exchange Pair Price  24H Volume % Volume

Contract Source Code Verified (Exact Match)

Contract Name:
DOGETRIBEPUP

Compiler Version
v0.8.9+commit.e5eed63a

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

/**
 *Submitted for verification at Etherscan.io on 2021-10-22
*/

/**
 *Submitted for verification at Etherscan.io on 2021-10-22
*/

/**
 *Submitted for verification at Etherscan.io on 2021-10-15
*/

/**
 *Submitted for verification at Etherscan.io on 2021-10-14
*/

// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

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

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

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

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

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

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

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

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

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

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

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

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

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

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

pragma solidity ^0.8.0;

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

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

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

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

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

pragma solidity ^0.8.0;

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

    function _verifyCallResult(
        bool success,
        bytes memory returndata,
        string memory errorMessage
    ) private pure returns (bytes memory) {
        if (success) {
            return returndata;
        } else {
            // Look for revert reason and bubble it up if present
            if (returndata.length > 0) {
                // The easiest way to bubble the revert reason is using memory via assembly

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

pragma solidity ^0.8.0;

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

pragma solidity ^0.8.0;

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

pragma solidity ^0.8.0;

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

pragma solidity ^0.8.0;

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

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

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

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

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

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

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

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

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

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

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

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

pragma solidity ^0.8.0;

/**
 * @title ERC-721 Non-Fungible Token Standard, optional 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);
}

pragma solidity ^0.8.0;

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

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

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

pragma solidity ^0.8.0;

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

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

pragma solidity ^0.8.0;

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

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

    /**
     * @dev Initializes the contract setting the deployer as the initial owner.
     */
    constructor () {
        address msgSender = _msgSender();
        _owner = msgSender;
        emit OwnershipTransferred(address(0), 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.
     */

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

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

pragma solidity ^0.8.0;

/**
 * @dev Implementation of 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;


    string public _baseURI;
    /**
     * @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 base = baseURI();
        return bytes(base).length > 0 ? string(abi.encodePacked(base, 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 _baseURI;
    }

    /**
     * @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(to).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 {}
}

pragma solidity ^0.8.0;

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

pragma solidity ^0.8.0;

contract  DOGETRIBEPUP  is ERC721Enumerable, Ownable
{
    using SafeMath for uint256;


    uint public  _TOTALSUPPLY =10000;
    uint public maxQuantity =5;
    uint256 public price = 0.05 ether; 
    uint public reserve = 1000;
    bool public isPaused = true;
    uint private tokenId=1;
       

    constructor(string memory baseURI) ERC721("Doge Tribe Pup", "Dogetp")  {
        setBaseURI(baseURI);
    }
    function setBaseURI(string memory baseURI) public onlyOwner {
        _baseURI = baseURI;
    }

    function setPrice(uint256 _newPrice) public onlyOwner() {
        price = _newPrice;
    }
    function setMaxxQtPerTx(uint256 _quantity) public onlyOwner {
        maxQuantity=_quantity;
    }
     function setReserveTokens(uint256 _quantity) public onlyOwner {
        reserve=_quantity;
    }
    function setTotalSupply(uint256 _quantity) public onlyOwner {
        _TOTALSUPPLY=_quantity;
    }
    function getPrice(uint256 _quantity) public view returns (uint256) {
       
           return _quantity*price ;
     }
    function flipPauseStatus() public onlyOwner {
        isPaused = !isPaused;
    }

    modifier isSaleOpen{
        require(totalSupply() < _TOTALSUPPLY, "Sale end");
        _;
    }

     function reserveTokens(uint quantity) public onlyOwner {
        require(quantity <= reserve, "The quantity exceeds the reserve.");
        reserve -= quantity;
        for (uint i = 0; i < quantity; i++) {
            _safeMint(msg.sender,totalsupply());
            tokenId++;
        }
    }
  


    function mint(uint chosenAmount) public payable isSaleOpen{
        require(isPaused == false, "Sale is not active at the moment");
        require(totalSupply()+chosenAmount<=_TOTALSUPPLY-reserve,"Quantity must be lesser then MaxSupply");
        require(chosenAmount > 0, "Number of tokens can not be less than or equal to 0");
        require(chosenAmount <= maxQuantity,"Chosen Amount exceeds MaxQuantity");
        require(price.mul(chosenAmount) == msg.value, "Sent ether value is incorrect");
        for (uint i = 0; i < chosenAmount; i++) {
            _safeMint(msg.sender, totalsupply());
            tokenId++;
            }
    }
 
    function tokensOfOwner(address _owner) public view returns (uint256[] memory)
    {
        uint256 count = balanceOf(_owner);
        uint256[] memory result = new uint256[](count);
        for (uint256 index = 0; index < count; index++) {
            result[index] = tokenOfOwnerByIndex(_owner, index);
        }
        return result;
    }

    function withdraw() public onlyOwner {
        uint balance = address(this).balance;
        payable(msg.sender).transfer(balance);
    }
    function totalsupply() private view returns (uint)
    {
        return tokenId;
    }
}

Contract Security Audit

Contract ABI

[{"inputs":[{"internalType":"string","name":"baseURI","type":"string"}],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"approved","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":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":"_TOTALSUPPLY","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"_baseURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"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":"flipPauseStatus","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_quantity","type":"uint256"}],"name":"getPrice","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"isPaused","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxQuantity","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"chosenAmount","type":"uint256"}],"name":"mint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"price","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"reserve","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"quantity","type":"uint256"}],"name":"reserveTokens","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"_data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"baseURI","type":"string"}],"name":"setBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_quantity","type":"uint256"}],"name":"setMaxxQtPerTx","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_newPrice","type":"uint256"}],"name":"setPrice","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_quantity","type":"uint256"}],"name":"setReserveTokens","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_quantity","type":"uint256"}],"name":"setTotalSupply","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":[{"internalType":"address","name":"_owner","type":"address"}],"name":"tokensOfOwner","outputs":[{"internalType":"uint256[]","name":"","type":"uint256[]"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"withdraw","outputs":[],"stateMutability":"nonpayable","type":"function"}]

6080604052612710600c556005600d5566b1a2bc2ec50000600e556103e8600f556010805460ff191660019081179091556011553480156200004057600080fd5b50604051620028323803806200283283398101604081905262000063916200027a565b604080518082018252600e81526d0446f6765205472696265205075760941b6020808301918252835180850190945260068452650446f676574760d41b908401528151919291620000b791600091620001be565b508051620000cd906001906020840190620001be565b5050506000620000e26200014260201b60201c565b600b80546001600160a01b0319166001600160a01b038316908117909155604051919250906000907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0908290a3506200013b8162000146565b5062000393565b3390565b600b546001600160a01b03163314620001a55760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604482015260640160405180910390fd5b8051620001ba906006906020840190620001be565b5050565b828054620001cc9062000356565b90600052602060002090601f016020900481019282620001f057600085556200023b565b82601f106200020b57805160ff19168380011785556200023b565b828001600101855582156200023b579182015b828111156200023b5782518255916020019190600101906200021e565b50620002499291506200024d565b5090565b5b808211156200024957600081556001016200024e565b634e487b7160e01b600052604160045260246000fd5b600060208083850312156200028e57600080fd5b82516001600160401b0380821115620002a657600080fd5b818501915085601f830112620002bb57600080fd5b815181811115620002d057620002d062000264565b604051601f8201601f19908116603f01168101908382118183101715620002fb57620002fb62000264565b8160405282815288868487010111156200031457600080fd5b600093505b8284101562000338578484018601518185018701529285019262000319565b828411156200034a5760008684830101525b98975050505050505050565b600181811c908216806200036b57607f821691505b602082108114156200038d57634e487b7160e01b600052602260045260246000fd5b50919050565b61248f80620003a36000396000f3fe6080604052600436106102045760003560e01c806391b7f5ed11610118578063cd3293de116100a0578063e75722301161006f578063e7572230146105a8578063e985e9c5146105c8578063f2fde38b14610611578063f7ea7a3d14610631578063fa62884c1461065157600080fd5b8063cd3293de14610546578063d031370b1461055c578063db4568e21461057c578063e640cf7d1461059257600080fd5b8063a0712d68116100e7578063a0712d68146104b9578063a22cb465146104cc578063b187bd26146104ec578063b88d4fde14610506578063c87b56dd1461052657600080fd5b806391b7f5ed1461044e57806395d89b411461046e5780639d38fd2114610483578063a035b1fe146104a357600080fd5b806342842e0e1161019b5780636a44e1731161016a5780636a44e173146103ae57806370a08231146103ce578063743976a0146103ee5780638462151c146104035780638da5cb5b1461043057600080fd5b806342842e0e1461032e5780634f6ccce71461034e57806355f804b31461036e5780636352211e1461038e57600080fd5b806318160ddd116101d757806318160ddd146102ba57806323b872dd146102d95780632f745c59146102f95780633ccfd60b1461031957600080fd5b806301ffc9a71461020957806306fdde031461023e578063081812fc14610260578063095ea7b314610298575b600080fd5b34801561021557600080fd5b50610229610224366004611e92565b610666565b60405190151581526020015b60405180910390f35b34801561024a57600080fd5b50610253610691565b6040516102359190611f07565b34801561026c57600080fd5b5061028061027b366004611f1a565b610723565b6040516001600160a01b039091168152602001610235565b3480156102a457600080fd5b506102b86102b3366004611f4f565b6107bd565b005b3480156102c657600080fd5b506009545b604051908152602001610235565b3480156102e557600080fd5b506102b86102f4366004611f79565b6108d3565b34801561030557600080fd5b506102cb610314366004611f4f565b610904565b34801561032557600080fd5b506102b861099a565b34801561033a57600080fd5b506102b8610349366004611f79565b6109f7565b34801561035a57600080fd5b506102cb610369366004611f1a565b610a12565b34801561037a57600080fd5b506102b8610389366004612041565b610aa5565b34801561039a57600080fd5b506102806103a9366004611f1a565b610ae2565b3480156103ba57600080fd5b506102b86103c9366004611f1a565b610b59565b3480156103da57600080fd5b506102cb6103e936600461208a565b610b88565b3480156103fa57600080fd5b50610253610c0f565b34801561040f57600080fd5b5061042361041e36600461208a565b610c9d565b60405161023591906120a5565b34801561043c57600080fd5b50600b546001600160a01b0316610280565b34801561045a57600080fd5b506102b8610469366004611f1a565b610d3f565b34801561047a57600080fd5b50610253610d6e565b34801561048f57600080fd5b506102b861049e366004611f1a565b610d7d565b3480156104af57600080fd5b506102cb600e5481565b6102b86104c7366004611f1a565b610dac565b3480156104d857600080fd5b506102b86104e73660046120e9565b611027565b3480156104f857600080fd5b506010546102299060ff1681565b34801561051257600080fd5b506102b8610521366004612125565b6110ec565b34801561053257600080fd5b50610253610541366004611f1a565b611124565b34801561055257600080fd5b506102cb600f5481565b34801561056857600080fd5b506102b8610577366004611f1a565b6111ff565b34801561058857600080fd5b506102cb600c5481565b34801561059e57600080fd5b506102cb600d5481565b3480156105b457600080fd5b506102cb6105c3366004611f1a565b6112dd565b3480156105d457600080fd5b506102296105e33660046121a1565b6001600160a01b03918216600090815260056020908152604080832093909416825291909152205460ff1690565b34801561061d57600080fd5b506102b861062c36600461208a565b6112ed565b34801561063d57600080fd5b506102b861064c366004611f1a565b611388565b34801561065d57600080fd5b506102b86113b7565b60006001600160e01b0319821663780e9d6360e01b148061068b575061068b826113f5565b92915050565b6060600080546106a0906121d4565b80601f01602080910402602001604051908101604052809291908181526020018280546106cc906121d4565b80156107195780601f106106ee57610100808354040283529160200191610719565b820191906000526020600020905b8154815290600101906020018083116106fc57829003601f168201915b5050505050905090565b6000818152600260205260408120546001600160a01b03166107a15760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b60648201526084015b60405180910390fd5b506000908152600460205260409020546001600160a01b031690565b60006107c882610ae2565b9050806001600160a01b0316836001600160a01b031614156108365760405162461bcd60e51b815260206004820152602160248201527f4552433732313a20617070726f76616c20746f2063757272656e74206f776e656044820152603960f91b6064820152608401610798565b336001600160a01b0382161480610852575061085281336105e3565b6108c45760405162461bcd60e51b815260206004820152603860248201527f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760448201527f6e6572206e6f7220617070726f76656420666f7220616c6c00000000000000006064820152608401610798565b6108ce8383611445565b505050565b6108dd33826114b3565b6108f95760405162461bcd60e51b81526004016107989061220f565b6108ce8383836115aa565b600061090f83610b88565b82106109715760405162461bcd60e51b815260206004820152602b60248201527f455243373231456e756d657261626c653a206f776e657220696e646578206f7560448201526a74206f6620626f756e647360a81b6064820152608401610798565b506001600160a01b03919091166000908152600760209081526040808320938352929052205490565b600b546001600160a01b031633146109c45760405162461bcd60e51b815260040161079890612260565b6040514790339082156108fc029083906000818181858888f193505050501580156109f3573d6000803e3d6000fd5b5050565b6108ce838383604051806020016040528060008152506110ec565b6000610a1d60095490565b8210610a805760405162461bcd60e51b815260206004820152602c60248201527f455243373231456e756d657261626c653a20676c6f62616c20696e646578206f60448201526b7574206f6620626f756e647360a01b6064820152608401610798565b60098281548110610a9357610a93612295565b90600052602060002001549050919050565b600b546001600160a01b03163314610acf5760405162461bcd60e51b815260040161079890612260565b80516109f3906006906020840190611de3565b6000818152600260205260408120546001600160a01b03168061068b5760405162461bcd60e51b815260206004820152602960248201527f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460448201526832b73a103a37b5b2b760b91b6064820152608401610798565b600b546001600160a01b03163314610b835760405162461bcd60e51b815260040161079890612260565b600f55565b60006001600160a01b038216610bf35760405162461bcd60e51b815260206004820152602a60248201527f4552433732313a2062616c616e636520717565727920666f7220746865207a65604482015269726f206164647265737360b01b6064820152608401610798565b506001600160a01b031660009081526003602052604090205490565b60068054610c1c906121d4565b80601f0160208091040260200160405190810160405280929190818152602001828054610c48906121d4565b8015610c955780601f10610c6a57610100808354040283529160200191610c95565b820191906000526020600020905b815481529060010190602001808311610c7857829003601f168201915b505050505081565b60606000610caa83610b88565b905060008167ffffffffffffffff811115610cc757610cc7611fb5565b604051908082528060200260200182016040528015610cf0578160200160208202803683370190505b50905060005b82811015610d3757610d088582610904565b828281518110610d1a57610d1a612295565b602090810291909101015280610d2f816122c1565b915050610cf6565b509392505050565b600b546001600160a01b03163314610d695760405162461bcd60e51b815260040161079890612260565b600e55565b6060600180546106a0906121d4565b600b546001600160a01b03163314610da75760405162461bcd60e51b815260040161079890612260565b600d55565b600c5460095410610dea5760405162461bcd60e51b815260206004820152600860248201526714d85b1948195b9960c21b6044820152606401610798565b60105460ff1615610e3d5760405162461bcd60e51b815260206004820181905260248201527f53616c65206973206e6f742061637469766520617420746865206d6f6d656e746044820152606401610798565b600f54600c54610e4d91906122dc565b81610e5760095490565b610e6191906122f3565b1115610ebe5760405162461bcd60e51b815260206004820152602660248201527f5175616e74697479206d757374206265206c6573736572207468656e204d6178604482015265537570706c7960d01b6064820152608401610798565b60008111610f2a5760405162461bcd60e51b815260206004820152603360248201527f4e756d626572206f6620746f6b656e732063616e206e6f74206265206c6573736044820152720207468616e206f7220657175616c20746f203606c1b6064820152608401610798565b600d54811115610f865760405162461bcd60e51b815260206004820152602160248201527f43686f73656e20416d6f756e742065786365656473204d61785175616e7469746044820152607960f81b6064820152608401610798565b600e543490610f959083611755565b14610fe25760405162461bcd60e51b815260206004820152601d60248201527f53656e742065746865722076616c756520697320696e636f72726563740000006044820152606401610798565b60005b818110156109f357610fff33610ffa60115490565b611761565b6011805490600061100f836122c1565b9190505550808061101f906122c1565b915050610fe5565b6001600160a01b0382163314156110805760405162461bcd60e51b815260206004820152601960248201527f4552433732313a20617070726f766520746f2063616c6c6572000000000000006044820152606401610798565b3360008181526005602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b6110f633836114b3565b6111125760405162461bcd60e51b81526004016107989061220f565b61111e8484848461177b565b50505050565b6000818152600260205260409020546060906001600160a01b03166111a35760405162461bcd60e51b815260206004820152602f60248201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60448201526e3732bc34b9ba32b73a103a37b5b2b760891b6064820152608401610798565b60006111ad6117ae565b905060008151116111cd57604051806020016040528060008152506111f8565b806111d7846117bd565b6040516020016111e892919061230b565b6040516020818303038152906040525b9392505050565b600b546001600160a01b031633146112295760405162461bcd60e51b815260040161079890612260565b600f548111156112855760405162461bcd60e51b815260206004820152602160248201527f546865207175616e7469747920657863656564732074686520726573657276656044820152601760f91b6064820152608401610798565b80600f600082825461129791906122dc565b90915550600090505b818110156109f3576112b533610ffa60115490565b601180549060006112c5836122c1565b919050555080806112d5906122c1565b9150506112a0565b6000600e548261068b919061233a565b600b546001600160a01b031633146113175760405162461bcd60e51b815260040161079890612260565b6001600160a01b03811661137c5760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610798565b611385816118bb565b50565b600b546001600160a01b031633146113b25760405162461bcd60e51b815260040161079890612260565b600c55565b600b546001600160a01b031633146113e15760405162461bcd60e51b815260040161079890612260565b6010805460ff19811660ff90911615179055565b60006001600160e01b031982166380ac58cd60e01b148061142657506001600160e01b03198216635b5e139f60e01b145b8061068b57506301ffc9a760e01b6001600160e01b031983161461068b565b600081815260046020526040902080546001600160a01b0319166001600160a01b038416908117909155819061147a82610ae2565b6001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b6000818152600260205260408120546001600160a01b031661152c5760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b6064820152608401610798565b600061153783610ae2565b9050806001600160a01b0316846001600160a01b031614806115725750836001600160a01b031661156784610723565b6001600160a01b0316145b806115a257506001600160a01b0380821660009081526005602090815260408083209388168352929052205460ff165b949350505050565b826001600160a01b03166115bd82610ae2565b6001600160a01b0316146116255760405162461bcd60e51b815260206004820152602960248201527f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960448201526839903737ba1037bbb760b91b6064820152608401610798565b6001600160a01b0382166116875760405162461bcd60e51b8152602060048201526024808201527f4552433732313a207472616e7366657220746f20746865207a65726f206164646044820152637265737360e01b6064820152608401610798565b61169283838361190d565b61169d600082611445565b6001600160a01b03831660009081526003602052604081208054600192906116c69084906122dc565b90915550506001600160a01b03821660009081526003602052604081208054600192906116f49084906122f3565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b0386811691821790925591518493918716917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef91a4505050565b60006111f8828461233a565b6109f38282604051806020016040528060008152506119c5565b6117868484846115aa565b611792848484846119f8565b61111e5760405162461bcd60e51b815260040161079890612359565b6060600680546106a0906121d4565b6060816117e15750506040805180820190915260018152600360fc1b602082015290565b8160005b811561180b57806117f5816122c1565b91506118049050600a836123c1565b91506117e5565b60008167ffffffffffffffff81111561182657611826611fb5565b6040519080825280601f01601f191660200182016040528015611850576020820181803683370190505b5090505b84156115a2576118656001836122dc565b9150611872600a866123d5565b61187d9060306122f3565b60f81b81838151811061189257611892612295565b60200101906001600160f81b031916908160001a9053506118b4600a866123c1565b9450611854565b600b80546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6001600160a01b0383166119685761196381600980546000838152600a60205260408120829055600182018355919091527f6e1540171b6c0c960b71a7020d9f60077f6af931a8bbf590da0223dacf75c7af0155565b61198b565b816001600160a01b0316836001600160a01b03161461198b5761198b8382611b05565b6001600160a01b0382166119a2576108ce81611ba2565b826001600160a01b0316826001600160a01b0316146108ce576108ce8282611c51565b6119cf8383611c95565b6119dc60008484846119f8565b6108ce5760405162461bcd60e51b815260040161079890612359565b60006001600160a01b0384163b15611afa57604051630a85bd0160e11b81526001600160a01b0385169063150b7a0290611a3c9033908990889088906004016123e9565b602060405180830381600087803b158015611a5657600080fd5b505af1925050508015611a86575060408051601f3d908101601f19168201909252611a8391810190612426565b60015b611ae0573d808015611ab4576040519150601f19603f3d011682016040523d82523d6000602084013e611ab9565b606091505b508051611ad85760405162461bcd60e51b815260040161079890612359565b805181602001fd5b6001600160e01b031916630a85bd0160e11b1490506115a2565b506001949350505050565b60006001611b1284610b88565b611b1c91906122dc565b600083815260086020526040902054909150808214611b6f576001600160a01b03841660009081526007602090815260408083208584528252808320548484528184208190558352600890915290208190555b5060009182526008602090815260408084208490556001600160a01b039094168352600781528383209183525290812055565b600954600090611bb4906001906122dc565b6000838152600a602052604081205460098054939450909284908110611bdc57611bdc612295565b906000526020600020015490508060098381548110611bfd57611bfd612295565b6000918252602080832090910192909255828152600a90915260408082208490558582528120556009805480611c3557611c35612443565b6001900381819060005260206000200160009055905550505050565b6000611c5c83610b88565b6001600160a01b039093166000908152600760209081526040808320868452825280832085905593825260089052919091209190915550565b6001600160a01b038216611ceb5760405162461bcd60e51b815260206004820181905260248201527f4552433732313a206d696e7420746f20746865207a65726f20616464726573736044820152606401610798565b6000818152600260205260409020546001600160a01b031615611d505760405162461bcd60e51b815260206004820152601c60248201527f4552433732313a20746f6b656e20616c7265616479206d696e746564000000006044820152606401610798565b611d5c6000838361190d565b6001600160a01b0382166000908152600360205260408120805460019290611d859084906122f3565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b03861690811790915590518392907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a45050565b828054611def906121d4565b90600052602060002090601f016020900481019282611e115760008555611e57565b82601f10611e2a57805160ff1916838001178555611e57565b82800160010185558215611e57579182015b82811115611e57578251825591602001919060010190611e3c565b50611e63929150611e67565b5090565b5b80821115611e635760008155600101611e68565b6001600160e01b03198116811461138557600080fd5b600060208284031215611ea457600080fd5b81356111f881611e7c565b60005b83811015611eca578181015183820152602001611eb2565b8381111561111e5750506000910152565b60008151808452611ef3816020860160208601611eaf565b601f01601f19169290920160200192915050565b6020815260006111f86020830184611edb565b600060208284031215611f2c57600080fd5b5035919050565b80356001600160a01b0381168114611f4a57600080fd5b919050565b60008060408385031215611f6257600080fd5b611f6b83611f33565b946020939093013593505050565b600080600060608486031215611f8e57600080fd5b611f9784611f33565b9250611fa560208501611f33565b9150604084013590509250925092565b634e487b7160e01b600052604160045260246000fd5b600067ffffffffffffffff80841115611fe657611fe6611fb5565b604051601f8501601f19908116603f0116810190828211818310171561200e5761200e611fb5565b8160405280935085815286868601111561202757600080fd5b858560208301376000602087830101525050509392505050565b60006020828403121561205357600080fd5b813567ffffffffffffffff81111561206a57600080fd5b8201601f8101841361207b57600080fd5b6115a284823560208401611fcb565b60006020828403121561209c57600080fd5b6111f882611f33565b6020808252825182820181905260009190848201906040850190845b818110156120dd578351835292840192918401916001016120c1565b50909695505050505050565b600080604083850312156120fc57600080fd5b61210583611f33565b91506020830135801515811461211a57600080fd5b809150509250929050565b6000806000806080858703121561213b57600080fd5b61214485611f33565b935061215260208601611f33565b925060408501359150606085013567ffffffffffffffff81111561217557600080fd5b8501601f8101871361218657600080fd5b61219587823560208401611fcb565b91505092959194509250565b600080604083850312156121b457600080fd5b6121bd83611f33565b91506121cb60208401611f33565b90509250929050565b600181811c908216806121e857607f821691505b6020821081141561220957634e487b7160e01b600052602260045260246000fd5b50919050565b60208082526031908201527f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f6040820152701ddb995c881b9bdc88185c1c1c9bdd9959607a1b606082015260800190565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052601160045260246000fd5b60006000198214156122d5576122d56122ab565b5060010190565b6000828210156122ee576122ee6122ab565b500390565b60008219821115612306576123066122ab565b500190565b6000835161231d818460208801611eaf565b835190830190612331818360208801611eaf565b01949350505050565b6000816000190483118215151615612354576123546122ab565b500290565b60208082526032908201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560408201527131b2b4bb32b91034b6b83632b6b2b73a32b960711b606082015260800190565b634e487b7160e01b600052601260045260246000fd5b6000826123d0576123d06123ab565b500490565b6000826123e4576123e46123ab565b500690565b6001600160a01b038581168252841660208201526040810183905260806060820181905260009061241c90830184611edb565b9695505050505050565b60006020828403121561243857600080fd5b81516111f881611e7c565b634e487b7160e01b600052603160045260246000fdfea26469706673582212201767d79adf3fb5ac0037f63bfd928add71876af63a3835047ae5f9b615cd63e264736f6c634300080900330000000000000000000000000000000000000000000000000000000000000020000000000000000000000000000000000000000000000000000000000000003268747470733a2f2f646f67652d74726962652d7075702e6865726f6b756170702e636f6d2f6e66742f6d657461646174612f0000000000000000000000000000

Deployed Bytecode

0x6080604052600436106102045760003560e01c806391b7f5ed11610118578063cd3293de116100a0578063e75722301161006f578063e7572230146105a8578063e985e9c5146105c8578063f2fde38b14610611578063f7ea7a3d14610631578063fa62884c1461065157600080fd5b8063cd3293de14610546578063d031370b1461055c578063db4568e21461057c578063e640cf7d1461059257600080fd5b8063a0712d68116100e7578063a0712d68146104b9578063a22cb465146104cc578063b187bd26146104ec578063b88d4fde14610506578063c87b56dd1461052657600080fd5b806391b7f5ed1461044e57806395d89b411461046e5780639d38fd2114610483578063a035b1fe146104a357600080fd5b806342842e0e1161019b5780636a44e1731161016a5780636a44e173146103ae57806370a08231146103ce578063743976a0146103ee5780638462151c146104035780638da5cb5b1461043057600080fd5b806342842e0e1461032e5780634f6ccce71461034e57806355f804b31461036e5780636352211e1461038e57600080fd5b806318160ddd116101d757806318160ddd146102ba57806323b872dd146102d95780632f745c59146102f95780633ccfd60b1461031957600080fd5b806301ffc9a71461020957806306fdde031461023e578063081812fc14610260578063095ea7b314610298575b600080fd5b34801561021557600080fd5b50610229610224366004611e92565b610666565b60405190151581526020015b60405180910390f35b34801561024a57600080fd5b50610253610691565b6040516102359190611f07565b34801561026c57600080fd5b5061028061027b366004611f1a565b610723565b6040516001600160a01b039091168152602001610235565b3480156102a457600080fd5b506102b86102b3366004611f4f565b6107bd565b005b3480156102c657600080fd5b506009545b604051908152602001610235565b3480156102e557600080fd5b506102b86102f4366004611f79565b6108d3565b34801561030557600080fd5b506102cb610314366004611f4f565b610904565b34801561032557600080fd5b506102b861099a565b34801561033a57600080fd5b506102b8610349366004611f79565b6109f7565b34801561035a57600080fd5b506102cb610369366004611f1a565b610a12565b34801561037a57600080fd5b506102b8610389366004612041565b610aa5565b34801561039a57600080fd5b506102806103a9366004611f1a565b610ae2565b3480156103ba57600080fd5b506102b86103c9366004611f1a565b610b59565b3480156103da57600080fd5b506102cb6103e936600461208a565b610b88565b3480156103fa57600080fd5b50610253610c0f565b34801561040f57600080fd5b5061042361041e36600461208a565b610c9d565b60405161023591906120a5565b34801561043c57600080fd5b50600b546001600160a01b0316610280565b34801561045a57600080fd5b506102b8610469366004611f1a565b610d3f565b34801561047a57600080fd5b50610253610d6e565b34801561048f57600080fd5b506102b861049e366004611f1a565b610d7d565b3480156104af57600080fd5b506102cb600e5481565b6102b86104c7366004611f1a565b610dac565b3480156104d857600080fd5b506102b86104e73660046120e9565b611027565b3480156104f857600080fd5b506010546102299060ff1681565b34801561051257600080fd5b506102b8610521366004612125565b6110ec565b34801561053257600080fd5b50610253610541366004611f1a565b611124565b34801561055257600080fd5b506102cb600f5481565b34801561056857600080fd5b506102b8610577366004611f1a565b6111ff565b34801561058857600080fd5b506102cb600c5481565b34801561059e57600080fd5b506102cb600d5481565b3480156105b457600080fd5b506102cb6105c3366004611f1a565b6112dd565b3480156105d457600080fd5b506102296105e33660046121a1565b6001600160a01b03918216600090815260056020908152604080832093909416825291909152205460ff1690565b34801561061d57600080fd5b506102b861062c36600461208a565b6112ed565b34801561063d57600080fd5b506102b861064c366004611f1a565b611388565b34801561065d57600080fd5b506102b86113b7565b60006001600160e01b0319821663780e9d6360e01b148061068b575061068b826113f5565b92915050565b6060600080546106a0906121d4565b80601f01602080910402602001604051908101604052809291908181526020018280546106cc906121d4565b80156107195780601f106106ee57610100808354040283529160200191610719565b820191906000526020600020905b8154815290600101906020018083116106fc57829003601f168201915b5050505050905090565b6000818152600260205260408120546001600160a01b03166107a15760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b60648201526084015b60405180910390fd5b506000908152600460205260409020546001600160a01b031690565b60006107c882610ae2565b9050806001600160a01b0316836001600160a01b031614156108365760405162461bcd60e51b815260206004820152602160248201527f4552433732313a20617070726f76616c20746f2063757272656e74206f776e656044820152603960f91b6064820152608401610798565b336001600160a01b0382161480610852575061085281336105e3565b6108c45760405162461bcd60e51b815260206004820152603860248201527f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760448201527f6e6572206e6f7220617070726f76656420666f7220616c6c00000000000000006064820152608401610798565b6108ce8383611445565b505050565b6108dd33826114b3565b6108f95760405162461bcd60e51b81526004016107989061220f565b6108ce8383836115aa565b600061090f83610b88565b82106109715760405162461bcd60e51b815260206004820152602b60248201527f455243373231456e756d657261626c653a206f776e657220696e646578206f7560448201526a74206f6620626f756e647360a81b6064820152608401610798565b506001600160a01b03919091166000908152600760209081526040808320938352929052205490565b600b546001600160a01b031633146109c45760405162461bcd60e51b815260040161079890612260565b6040514790339082156108fc029083906000818181858888f193505050501580156109f3573d6000803e3d6000fd5b5050565b6108ce838383604051806020016040528060008152506110ec565b6000610a1d60095490565b8210610a805760405162461bcd60e51b815260206004820152602c60248201527f455243373231456e756d657261626c653a20676c6f62616c20696e646578206f60448201526b7574206f6620626f756e647360a01b6064820152608401610798565b60098281548110610a9357610a93612295565b90600052602060002001549050919050565b600b546001600160a01b03163314610acf5760405162461bcd60e51b815260040161079890612260565b80516109f3906006906020840190611de3565b6000818152600260205260408120546001600160a01b03168061068b5760405162461bcd60e51b815260206004820152602960248201527f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460448201526832b73a103a37b5b2b760b91b6064820152608401610798565b600b546001600160a01b03163314610b835760405162461bcd60e51b815260040161079890612260565b600f55565b60006001600160a01b038216610bf35760405162461bcd60e51b815260206004820152602a60248201527f4552433732313a2062616c616e636520717565727920666f7220746865207a65604482015269726f206164647265737360b01b6064820152608401610798565b506001600160a01b031660009081526003602052604090205490565b60068054610c1c906121d4565b80601f0160208091040260200160405190810160405280929190818152602001828054610c48906121d4565b8015610c955780601f10610c6a57610100808354040283529160200191610c95565b820191906000526020600020905b815481529060010190602001808311610c7857829003601f168201915b505050505081565b60606000610caa83610b88565b905060008167ffffffffffffffff811115610cc757610cc7611fb5565b604051908082528060200260200182016040528015610cf0578160200160208202803683370190505b50905060005b82811015610d3757610d088582610904565b828281518110610d1a57610d1a612295565b602090810291909101015280610d2f816122c1565b915050610cf6565b509392505050565b600b546001600160a01b03163314610d695760405162461bcd60e51b815260040161079890612260565b600e55565b6060600180546106a0906121d4565b600b546001600160a01b03163314610da75760405162461bcd60e51b815260040161079890612260565b600d55565b600c5460095410610dea5760405162461bcd60e51b815260206004820152600860248201526714d85b1948195b9960c21b6044820152606401610798565b60105460ff1615610e3d5760405162461bcd60e51b815260206004820181905260248201527f53616c65206973206e6f742061637469766520617420746865206d6f6d656e746044820152606401610798565b600f54600c54610e4d91906122dc565b81610e5760095490565b610e6191906122f3565b1115610ebe5760405162461bcd60e51b815260206004820152602660248201527f5175616e74697479206d757374206265206c6573736572207468656e204d6178604482015265537570706c7960d01b6064820152608401610798565b60008111610f2a5760405162461bcd60e51b815260206004820152603360248201527f4e756d626572206f6620746f6b656e732063616e206e6f74206265206c6573736044820152720207468616e206f7220657175616c20746f203606c1b6064820152608401610798565b600d54811115610f865760405162461bcd60e51b815260206004820152602160248201527f43686f73656e20416d6f756e742065786365656473204d61785175616e7469746044820152607960f81b6064820152608401610798565b600e543490610f959083611755565b14610fe25760405162461bcd60e51b815260206004820152601d60248201527f53656e742065746865722076616c756520697320696e636f72726563740000006044820152606401610798565b60005b818110156109f357610fff33610ffa60115490565b611761565b6011805490600061100f836122c1565b9190505550808061101f906122c1565b915050610fe5565b6001600160a01b0382163314156110805760405162461bcd60e51b815260206004820152601960248201527f4552433732313a20617070726f766520746f2063616c6c6572000000000000006044820152606401610798565b3360008181526005602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b6110f633836114b3565b6111125760405162461bcd60e51b81526004016107989061220f565b61111e8484848461177b565b50505050565b6000818152600260205260409020546060906001600160a01b03166111a35760405162461bcd60e51b815260206004820152602f60248201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60448201526e3732bc34b9ba32b73a103a37b5b2b760891b6064820152608401610798565b60006111ad6117ae565b905060008151116111cd57604051806020016040528060008152506111f8565b806111d7846117bd565b6040516020016111e892919061230b565b6040516020818303038152906040525b9392505050565b600b546001600160a01b031633146112295760405162461bcd60e51b815260040161079890612260565b600f548111156112855760405162461bcd60e51b815260206004820152602160248201527f546865207175616e7469747920657863656564732074686520726573657276656044820152601760f91b6064820152608401610798565b80600f600082825461129791906122dc565b90915550600090505b818110156109f3576112b533610ffa60115490565b601180549060006112c5836122c1565b919050555080806112d5906122c1565b9150506112a0565b6000600e548261068b919061233a565b600b546001600160a01b031633146113175760405162461bcd60e51b815260040161079890612260565b6001600160a01b03811661137c5760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610798565b611385816118bb565b50565b600b546001600160a01b031633146113b25760405162461bcd60e51b815260040161079890612260565b600c55565b600b546001600160a01b031633146113e15760405162461bcd60e51b815260040161079890612260565b6010805460ff19811660ff90911615179055565b60006001600160e01b031982166380ac58cd60e01b148061142657506001600160e01b03198216635b5e139f60e01b145b8061068b57506301ffc9a760e01b6001600160e01b031983161461068b565b600081815260046020526040902080546001600160a01b0319166001600160a01b038416908117909155819061147a82610ae2565b6001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b6000818152600260205260408120546001600160a01b031661152c5760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b6064820152608401610798565b600061153783610ae2565b9050806001600160a01b0316846001600160a01b031614806115725750836001600160a01b031661156784610723565b6001600160a01b0316145b806115a257506001600160a01b0380821660009081526005602090815260408083209388168352929052205460ff165b949350505050565b826001600160a01b03166115bd82610ae2565b6001600160a01b0316146116255760405162461bcd60e51b815260206004820152602960248201527f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960448201526839903737ba1037bbb760b91b6064820152608401610798565b6001600160a01b0382166116875760405162461bcd60e51b8152602060048201526024808201527f4552433732313a207472616e7366657220746f20746865207a65726f206164646044820152637265737360e01b6064820152608401610798565b61169283838361190d565b61169d600082611445565b6001600160a01b03831660009081526003602052604081208054600192906116c69084906122dc565b90915550506001600160a01b03821660009081526003602052604081208054600192906116f49084906122f3565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b0386811691821790925591518493918716917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef91a4505050565b60006111f8828461233a565b6109f38282604051806020016040528060008152506119c5565b6117868484846115aa565b611792848484846119f8565b61111e5760405162461bcd60e51b815260040161079890612359565b6060600680546106a0906121d4565b6060816117e15750506040805180820190915260018152600360fc1b602082015290565b8160005b811561180b57806117f5816122c1565b91506118049050600a836123c1565b91506117e5565b60008167ffffffffffffffff81111561182657611826611fb5565b6040519080825280601f01601f191660200182016040528015611850576020820181803683370190505b5090505b84156115a2576118656001836122dc565b9150611872600a866123d5565b61187d9060306122f3565b60f81b81838151811061189257611892612295565b60200101906001600160f81b031916908160001a9053506118b4600a866123c1565b9450611854565b600b80546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6001600160a01b0383166119685761196381600980546000838152600a60205260408120829055600182018355919091527f6e1540171b6c0c960b71a7020d9f60077f6af931a8bbf590da0223dacf75c7af0155565b61198b565b816001600160a01b0316836001600160a01b03161461198b5761198b8382611b05565b6001600160a01b0382166119a2576108ce81611ba2565b826001600160a01b0316826001600160a01b0316146108ce576108ce8282611c51565b6119cf8383611c95565b6119dc60008484846119f8565b6108ce5760405162461bcd60e51b815260040161079890612359565b60006001600160a01b0384163b15611afa57604051630a85bd0160e11b81526001600160a01b0385169063150b7a0290611a3c9033908990889088906004016123e9565b602060405180830381600087803b158015611a5657600080fd5b505af1925050508015611a86575060408051601f3d908101601f19168201909252611a8391810190612426565b60015b611ae0573d808015611ab4576040519150601f19603f3d011682016040523d82523d6000602084013e611ab9565b606091505b508051611ad85760405162461bcd60e51b815260040161079890612359565b805181602001fd5b6001600160e01b031916630a85bd0160e11b1490506115a2565b506001949350505050565b60006001611b1284610b88565b611b1c91906122dc565b600083815260086020526040902054909150808214611b6f576001600160a01b03841660009081526007602090815260408083208584528252808320548484528184208190558352600890915290208190555b5060009182526008602090815260408084208490556001600160a01b039094168352600781528383209183525290812055565b600954600090611bb4906001906122dc565b6000838152600a602052604081205460098054939450909284908110611bdc57611bdc612295565b906000526020600020015490508060098381548110611bfd57611bfd612295565b6000918252602080832090910192909255828152600a90915260408082208490558582528120556009805480611c3557611c35612443565b6001900381819060005260206000200160009055905550505050565b6000611c5c83610b88565b6001600160a01b039093166000908152600760209081526040808320868452825280832085905593825260089052919091209190915550565b6001600160a01b038216611ceb5760405162461bcd60e51b815260206004820181905260248201527f4552433732313a206d696e7420746f20746865207a65726f20616464726573736044820152606401610798565b6000818152600260205260409020546001600160a01b031615611d505760405162461bcd60e51b815260206004820152601c60248201527f4552433732313a20746f6b656e20616c7265616479206d696e746564000000006044820152606401610798565b611d5c6000838361190d565b6001600160a01b0382166000908152600360205260408120805460019290611d859084906122f3565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b03861690811790915590518392907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a45050565b828054611def906121d4565b90600052602060002090601f016020900481019282611e115760008555611e57565b82601f10611e2a57805160ff1916838001178555611e57565b82800160010185558215611e57579182015b82811115611e57578251825591602001919060010190611e3c565b50611e63929150611e67565b5090565b5b80821115611e635760008155600101611e68565b6001600160e01b03198116811461138557600080fd5b600060208284031215611ea457600080fd5b81356111f881611e7c565b60005b83811015611eca578181015183820152602001611eb2565b8381111561111e5750506000910152565b60008151808452611ef3816020860160208601611eaf565b601f01601f19169290920160200192915050565b6020815260006111f86020830184611edb565b600060208284031215611f2c57600080fd5b5035919050565b80356001600160a01b0381168114611f4a57600080fd5b919050565b60008060408385031215611f6257600080fd5b611f6b83611f33565b946020939093013593505050565b600080600060608486031215611f8e57600080fd5b611f9784611f33565b9250611fa560208501611f33565b9150604084013590509250925092565b634e487b7160e01b600052604160045260246000fd5b600067ffffffffffffffff80841115611fe657611fe6611fb5565b604051601f8501601f19908116603f0116810190828211818310171561200e5761200e611fb5565b8160405280935085815286868601111561202757600080fd5b858560208301376000602087830101525050509392505050565b60006020828403121561205357600080fd5b813567ffffffffffffffff81111561206a57600080fd5b8201601f8101841361207b57600080fd5b6115a284823560208401611fcb565b60006020828403121561209c57600080fd5b6111f882611f33565b6020808252825182820181905260009190848201906040850190845b818110156120dd578351835292840192918401916001016120c1565b50909695505050505050565b600080604083850312156120fc57600080fd5b61210583611f33565b91506020830135801515811461211a57600080fd5b809150509250929050565b6000806000806080858703121561213b57600080fd5b61214485611f33565b935061215260208601611f33565b925060408501359150606085013567ffffffffffffffff81111561217557600080fd5b8501601f8101871361218657600080fd5b61219587823560208401611fcb565b91505092959194509250565b600080604083850312156121b457600080fd5b6121bd83611f33565b91506121cb60208401611f33565b90509250929050565b600181811c908216806121e857607f821691505b6020821081141561220957634e487b7160e01b600052602260045260246000fd5b50919050565b60208082526031908201527f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f6040820152701ddb995c881b9bdc88185c1c1c9bdd9959607a1b606082015260800190565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052601160045260246000fd5b60006000198214156122d5576122d56122ab565b5060010190565b6000828210156122ee576122ee6122ab565b500390565b60008219821115612306576123066122ab565b500190565b6000835161231d818460208801611eaf565b835190830190612331818360208801611eaf565b01949350505050565b6000816000190483118215151615612354576123546122ab565b500290565b60208082526032908201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560408201527131b2b4bb32b91034b6b83632b6b2b73a32b960711b606082015260800190565b634e487b7160e01b600052601260045260246000fd5b6000826123d0576123d06123ab565b500490565b6000826123e4576123e46123ab565b500690565b6001600160a01b038581168252841660208201526040810183905260806060820181905260009061241c90830184611edb565b9695505050505050565b60006020828403121561243857600080fd5b81516111f881611e7c565b634e487b7160e01b600052603160045260246000fdfea26469706673582212201767d79adf3fb5ac0037f63bfd928add71876af63a3835047ae5f9b615cd63e264736f6c63430008090033

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

0000000000000000000000000000000000000000000000000000000000000020000000000000000000000000000000000000000000000000000000000000003268747470733a2f2f646f67652d74726962652d7075702e6865726f6b756170702e636f6d2f6e66742f6d657461646174612f0000000000000000000000000000

-----Decoded View---------------
Arg [0] : baseURI (string): https://doge-tribe-pup.herokuapp.com/nft/metadata/

-----Encoded View---------------
4 Constructor Arguments found :
Arg [0] : 0000000000000000000000000000000000000000000000000000000000000020
Arg [1] : 0000000000000000000000000000000000000000000000000000000000000032
Arg [2] : 68747470733a2f2f646f67652d74726962652d7075702e6865726f6b75617070
Arg [3] : 2e636f6d2f6e66742f6d657461646174612f0000000000000000000000000000


Deployed Bytecode Sourcemap

49232:2854:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;43057:224;;;;;;;;;;-1:-1:-1;43057:224:0;;;;;:::i;:::-;;:::i;:::-;;;565:14:1;;558:22;540:41;;528:2;513:18;43057:224:0;;;;;;;;31039:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;32593:221::-;;;;;;;;;;-1:-1:-1;32593:221:0;;;;;:::i;:::-;;:::i;:::-;;;-1:-1:-1;;;;;1692:32:1;;;1674:51;;1662:2;1647:18;32593:221:0;1528:203:1;32116:411:0;;;;;;;;;;-1:-1:-1;32116:411:0;;;;;:::i;:::-;;:::i;:::-;;43697:113;;;;;;;;;;-1:-1:-1;43785:10:0;:17;43697:113;;;2319:25:1;;;2307:2;2292:18;43697:113:0;2173:177:1;33483:339:0;;;;;;;;;;-1:-1:-1;33483:339:0;;;;;:::i;:::-;;:::i;43365:256::-;;;;;;;;;;-1:-1:-1;43365:256:0;;;;;:::i;:::-;;:::i;51848:140::-;;;;;;;;;;;;;:::i;33893:185::-;;;;;;;;;;-1:-1:-1;33893:185:0;;;;;:::i;:::-;;:::i;43887:233::-;;;;;;;;;;-1:-1:-1;43887:233:0;;;;;:::i;:::-;;:::i;49665:97::-;;;;;;;;;;-1:-1:-1;49665:97:0;;;;;:::i;:::-;;:::i;30733:239::-;;;;;;;;;;-1:-1:-1;30733:239:0;;;;;:::i;:::-;;:::i;49975:98::-;;;;;;;;;;-1:-1:-1;49975:98:0;;;;;:::i;:::-;;:::i;30463:208::-;;;;;;;;;;-1:-1:-1;30463:208:0;;;;;:::i;:::-;;:::i;29761:22::-;;;;;;;;;;;;;:::i;51489:351::-;;;;;;;;;;-1:-1:-1;51489:351:0;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;27629:87::-;;;;;;;;;;-1:-1:-1;27702:6:0;;-1:-1:-1;;;;;27702:6:0;27629:87;;49770:92;;;;;;;;;;-1:-1:-1;49770:92:0;;;;;:::i;:::-;;:::i;31208:104::-;;;;;;;;;;;;;:::i;49868:100::-;;;;;;;;;;-1:-1:-1;49868:100:0;;;;;:::i;:::-;;:::i;49402:33::-;;;;;;;;;;;;;;;;50828:652;;;;;;:::i;:::-;;:::i;32886:295::-;;;;;;;;;;-1:-1:-1;32886:295:0;;;;;:::i;:::-;;:::i;49476:27::-;;;;;;;;;;-1:-1:-1;49476:27:0;;;;;;;;34149:328;;;;;;;;;;-1:-1:-1;34149:328:0;;;;;:::i;:::-;;:::i;31383:324::-;;;;;;;;;;-1:-1:-1;31383:324:0;;;;;:::i;:::-;;:::i;49443:26::-;;;;;;;;;;;;;;;;50513:301;;;;;;;;;;-1:-1:-1;50513:301:0;;;;;:::i;:::-;;:::i;49330:32::-;;;;;;;;;;;;;;;;49369:26;;;;;;;;;;;;;;;;50186:122;;;;;;;;;;-1:-1:-1;50186:122:0;;;;;:::i;:::-;;:::i;33252:164::-;;;;;;;;;;-1:-1:-1;33252:164:0;;;;;:::i;:::-;-1:-1:-1;;;;;33373:25:0;;;33349:4;33373:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;;;;33252:164;28429:192;;;;;;;;;;-1:-1:-1;28429:192:0;;;;;:::i;:::-;;:::i;50079:101::-;;;;;;;;;;-1:-1:-1;50079:101:0;;;;;:::i;:::-;;:::i;50314:83::-;;;;;;;;;;;;;:::i;43057:224::-;43159:4;-1:-1:-1;;;;;;43183:50:0;;-1:-1:-1;;;43183:50:0;;:90;;;43237:36;43261:11;43237:23;:36::i;:::-;43176:97;43057:224;-1:-1:-1;;43057:224:0:o;31039:100::-;31093:13;31126:5;31119:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;31039:100;:::o;32593:221::-;32669:7;36076:16;;;:7;:16;;;;;;-1:-1:-1;;;;;36076:16:0;32689:73;;;;-1:-1:-1;;;32689:73:0;;6617:2:1;32689:73:0;;;6599:21:1;6656:2;6636:18;;;6629:30;6695:34;6675:18;;;6668:62;-1:-1:-1;;;6746:18:1;;;6739:42;6798:19;;32689:73:0;;;;;;;;;-1:-1:-1;32782:24:0;;;;:15;:24;;;;;;-1:-1:-1;;;;;32782:24:0;;32593:221::o;32116:411::-;32197:13;32213:23;32228:7;32213:14;:23::i;:::-;32197:39;;32261:5;-1:-1:-1;;;;;32255:11:0;:2;-1:-1:-1;;;;;32255:11:0;;;32247:57;;;;-1:-1:-1;;;32247:57:0;;7030:2:1;32247:57:0;;;7012:21:1;7069:2;7049:18;;;7042:30;7108:34;7088:18;;;7081:62;-1:-1:-1;;;7159:18:1;;;7152:31;7200:19;;32247:57:0;6828:397:1;32247:57:0;26460:10;-1:-1:-1;;;;;32339:21:0;;;;:62;;-1:-1:-1;32364:37:0;32381:5;26460:10;33252:164;:::i;32364:37::-;32317:168;;;;-1:-1:-1;;;32317:168:0;;7432:2:1;32317:168:0;;;7414:21:1;7471:2;7451:18;;;7444:30;7510:34;7490:18;;;7483:62;7581:26;7561:18;;;7554:54;7625:19;;32317:168:0;7230:420:1;32317:168:0;32498:21;32507:2;32511:7;32498:8;:21::i;:::-;32186:341;32116:411;;:::o;33483:339::-;33678:41;26460:10;33711:7;33678:18;:41::i;:::-;33670:103;;;;-1:-1:-1;;;33670:103:0;;;;;;;:::i;:::-;33786:28;33796:4;33802:2;33806:7;33786:9;:28::i;43365:256::-;43462:7;43498:23;43515:5;43498:16;:23::i;:::-;43490:5;:31;43482:87;;;;-1:-1:-1;;;43482:87:0;;8275:2:1;43482:87:0;;;8257:21:1;8314:2;8294:18;;;8287:30;8353:34;8333:18;;;8326:62;-1:-1:-1;;;8404:18:1;;;8397:41;8455:19;;43482:87:0;8073:407:1;43482:87:0;-1:-1:-1;;;;;;43587:19:0;;;;;;;;:12;:19;;;;;;;;:26;;;;;;;;;43365:256::o;51848:140::-;27702:6;;-1:-1:-1;;;;;27702:6:0;26460:10;27849:23;27841:68;;;;-1:-1:-1;;;27841:68:0;;;;;;;:::i;:::-;51943:37:::1;::::0;51911:21:::1;::::0;51951:10:::1;::::0;51943:37;::::1;;;::::0;51911:21;;51896:12:::1;51943:37:::0;51896:12;51943:37;51911:21;51951:10;51943:37;::::1;;;;;;;;;;;;;::::0;::::1;;;;;;51885:103;51848:140::o:0;33893:185::-;34031:39;34048:4;34054:2;34058:7;34031:39;;;;;;;;;;;;:16;:39::i;43887:233::-;43962:7;43998:30;43785:10;:17;;43697:113;43998:30;43990:5;:38;43982:95;;;;-1:-1:-1;;;43982:95:0;;9048:2:1;43982:95:0;;;9030:21:1;9087:2;9067:18;;;9060:30;9126:34;9106:18;;;9099:62;-1:-1:-1;;;9177:18:1;;;9170:42;9229:19;;43982:95:0;8846:408:1;43982:95:0;44095:10;44106:5;44095:17;;;;;;;;:::i;:::-;;;;;;;;;44088:24;;43887:233;;;:::o;49665:97::-;27702:6;;-1:-1:-1;;;;;27702:6:0;26460:10;27849:23;27841:68;;;;-1:-1:-1;;;27841:68:0;;;;;;;:::i;:::-;49736:18;;::::1;::::0;:8:::1;::::0;:18:::1;::::0;::::1;::::0;::::1;:::i;30733:239::-:0;30805:7;30841:16;;;:7;:16;;;;;;-1:-1:-1;;;;;30841:16:0;30876:19;30868:73;;;;-1:-1:-1;;;30868:73:0;;9593:2:1;30868:73:0;;;9575:21:1;9632:2;9612:18;;;9605:30;9671:34;9651:18;;;9644:62;-1:-1:-1;;;9722:18:1;;;9715:39;9771:19;;30868:73:0;9391:405:1;49975:98:0;27702:6;;-1:-1:-1;;;;;27702:6:0;26460:10;27849:23;27841:68;;;;-1:-1:-1;;;27841:68:0;;;;;;;:::i;:::-;50048:7:::1;:17:::0;49975:98::o;30463:208::-;30535:7;-1:-1:-1;;;;;30563:19:0;;30555:74;;;;-1:-1:-1;;;30555:74:0;;10003:2:1;30555:74:0;;;9985:21:1;10042:2;10022:18;;;10015:30;10081:34;10061:18;;;10054:62;-1:-1:-1;;;10132:18:1;;;10125:40;10182:19;;30555:74:0;9801:406:1;30555:74:0;-1:-1:-1;;;;;;30647:16:0;;;;;:9;:16;;;;;;;30463:208::o;29761:22::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;51489:351::-;51549:16;51583:13;51599:17;51609:6;51599:9;:17::i;:::-;51583:33;;51627:23;51667:5;51653:20;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;51653:20:0;;51627:46;;51689:13;51684:125;51716:5;51708;:13;51684:125;;;51763:34;51783:6;51791:5;51763:19;:34::i;:::-;51747:6;51754:5;51747:13;;;;;;;;:::i;:::-;;;;;;;;;;:50;51723:7;;;;:::i;:::-;;;;51684:125;;;-1:-1:-1;51826:6:0;51489:351;-1:-1:-1;;;51489:351:0:o;49770:92::-;27702:6;;-1:-1:-1;;;;;27702:6:0;26460:10;27849:23;27841:68;;;;-1:-1:-1;;;27841:68:0;;;;;;;:::i;:::-;49837:5:::1;:17:::0;49770:92::o;31208:104::-;31264:13;31297:7;31290:14;;;;;:::i;49868:100::-;27702:6;;-1:-1:-1;;;;;27702:6:0;26460:10;27849:23;27841:68;;;;-1:-1:-1;;;27841:68:0;;;;;;;:::i;:::-;49939:11:::1;:21:::0;49868:100::o;50828:652::-;50459:12;;43785:10;:17;50443:28;50435:49;;;;-1:-1:-1;;;50435:49:0;;10686:2:1;50435:49:0;;;10668:21:1;10725:1;10705:18;;;10698:29;-1:-1:-1;;;10743:18:1;;;10736:38;10791:18;;50435:49:0;10484:331:1;50435:49:0;50905:8:::1;::::0;::::1;;:17;50897:62;;;::::0;-1:-1:-1;;;50897:62:0;;11022:2:1;50897:62:0::1;::::0;::::1;11004:21:1::0;;;11041:18;;;11034:30;11100:34;11080:18;;;11073:62;11152:18;;50897:62:0::1;10820:356:1::0;50897:62:0::1;51019:7;;51006:12;;:20;;;;:::i;:::-;50992:12;50978:13;43785:10:::0;:17;;43697:113;50978:13:::1;:26;;;;:::i;:::-;:48;;50970:98;;;::::0;-1:-1:-1;;;50970:98:0;;11646:2:1;50970:98:0::1;::::0;::::1;11628:21:1::0;11685:2;11665:18;;;11658:30;11724:34;11704:18;;;11697:62;-1:-1:-1;;;11775:18:1;;;11768:36;11821:19;;50970:98:0::1;11444:402:1::0;50970:98:0::1;51102:1;51087:12;:16;51079:80;;;::::0;-1:-1:-1;;;51079:80:0;;12053:2:1;51079:80:0::1;::::0;::::1;12035:21:1::0;12092:2;12072:18;;;12065:30;12131:34;12111:18;;;12104:62;-1:-1:-1;;;12182:18:1;;;12175:49;12241:19;;51079:80:0::1;11851:415:1::0;51079:80:0::1;51194:11;;51178:12;:27;;51170:72;;;::::0;-1:-1:-1;;;51170:72:0;;12473:2:1;51170:72:0::1;::::0;::::1;12455:21:1::0;12512:2;12492:18;;;12485:30;12551:34;12531:18;;;12524:62;-1:-1:-1;;;12602:18:1;;;12595:31;12643:19;;51170:72:0::1;12271:397:1::0;51170:72:0::1;51261:5;::::0;51288:9:::1;::::0;51261:23:::1;::::0;51271:12;51261:9:::1;:23::i;:::-;:36;51253:78;;;::::0;-1:-1:-1;;;51253:78:0;;12875:2:1;51253:78:0::1;::::0;::::1;12857:21:1::0;12914:2;12894:18;;;12887:30;12953:31;12933:18;;;12926:59;13002:18;;51253:78:0::1;12673:353:1::0;51253:78:0::1;51347:6;51342:131;51363:12;51359:1;:16;51342:131;;;51397:36;51407:10;51419:13;52068:7:::0;;;51994:89;51419:13:::1;51397:9;:36::i;:::-;51448:7;:9:::0;;;:7:::1;:9;::::0;::::1;:::i;:::-;;;;;;51377:3;;;;;:::i;:::-;;;;51342:131;;32886:295:::0;-1:-1:-1;;;;;32989:24:0;;26460:10;32989:24;;32981:62;;;;-1:-1:-1;;;32981:62:0;;13233:2:1;32981:62:0;;;13215:21:1;13272:2;13252:18;;;13245:30;13311:27;13291:18;;;13284:55;13356:18;;32981:62:0;13031:349:1;32981:62:0;26460:10;33056:32;;;;:18;:32;;;;;;;;-1:-1:-1;;;;;33056:42:0;;;;;;;;;;;;:53;;-1:-1:-1;;33056:53:0;;;;;;;;;;33125:48;;540:41:1;;;33056:42:0;;26460:10;33125:48;;513:18:1;33125:48:0;;;;;;;32886:295;;:::o;34149:328::-;34324:41;26460:10;34357:7;34324:18;:41::i;:::-;34316:103;;;;-1:-1:-1;;;34316:103:0;;;;;;;:::i;:::-;34430:39;34444:4;34450:2;34454:7;34463:5;34430:13;:39::i;:::-;34149:328;;;;:::o;31383:324::-;36052:4;36076:16;;;:7;:16;;;;;;31456:13;;-1:-1:-1;;;;;36076:16:0;31482:76;;;;-1:-1:-1;;;31482:76:0;;13587:2:1;31482:76:0;;;13569:21:1;13626:2;13606:18;;;13599:30;13665:34;13645:18;;;13638:62;-1:-1:-1;;;13716:18:1;;;13709:45;13771:19;;31482:76:0;13385:411:1;31482:76:0;31571:18;31592:9;:7;:9::i;:::-;31571:30;;31640:1;31625:4;31619:18;:22;:80;;;;;;;;;;;;;;;;;31668:4;31674:18;:7;:16;:18::i;:::-;31651:42;;;;;;;;;:::i;:::-;;;;;;;;;;;;;31619:80;31612:87;31383:324;-1:-1:-1;;;31383:324:0:o;50513:301::-;27702:6;;-1:-1:-1;;;;;27702:6:0;26460:10;27849:23;27841:68;;;;-1:-1:-1;;;27841:68:0;;;;;;;:::i;:::-;50599:7:::1;;50587:8;:19;;50579:65;;;::::0;-1:-1:-1;;;50579:65:0;;14478:2:1;50579:65:0::1;::::0;::::1;14460:21:1::0;14517:2;14497:18;;;14490:30;14556:34;14536:18;;;14529:62;-1:-1:-1;;;14607:18:1;;;14600:31;14648:19;;50579:65:0::1;14276:397:1::0;50579:65:0::1;50666:8;50655:7;;:19;;;;;;;:::i;:::-;::::0;;;-1:-1:-1;50690:6:0::1;::::0;-1:-1:-1;50685:122:0::1;50706:8;50702:1;:12;50685:122;;;50736:35;50746:10;50757:13;52068:7:::0;;;51994:89;50736:35:::1;50786:7;:9:::0;;;:7:::1;:9;::::0;::::1;:::i;:::-;;;;;;50716:3;;;;;:::i;:::-;;;;50685:122;;50186::::0;50244:7;50293:5;;50283:9;:15;;;;:::i;28429:192::-;27702:6;;-1:-1:-1;;;;;27702:6:0;26460:10;27849:23;27841:68;;;;-1:-1:-1;;;27841:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;28518:22:0;::::1;28510:73;;;::::0;-1:-1:-1;;;28510:73:0;;15053:2:1;28510:73:0::1;::::0;::::1;15035:21:1::0;15092:2;15072:18;;;15065:30;15131:34;15111:18;;;15104:62;-1:-1:-1;;;15182:18:1;;;15175:36;15228:19;;28510:73:0::1;14851:402:1::0;28510:73:0::1;28594:19;28604:8;28594:9;:19::i;:::-;28429:192:::0;:::o;50079:101::-;27702:6;;-1:-1:-1;;;;;27702:6:0;26460:10;27849:23;27841:68;;;;-1:-1:-1;;;27841:68:0;;;;;;;:::i;:::-;50150:12:::1;:22:::0;50079:101::o;50314:83::-;27702:6;;-1:-1:-1;;;;;27702:6:0;26460:10;27849:23;27841:68;;;;-1:-1:-1;;;27841:68:0;;;;;;;:::i;:::-;50381:8:::1;::::0;;-1:-1:-1;;50369:20:0;::::1;50381:8;::::0;;::::1;50380:9;50369:20;::::0;;50314:83::o;30094:305::-;30196:4;-1:-1:-1;;;;;;30233:40:0;;-1:-1:-1;;;30233:40:0;;:105;;-1:-1:-1;;;;;;;30290:48:0;;-1:-1:-1;;;30290:48:0;30233:105;:158;;;-1:-1:-1;;;;;;;;;;19475:40:0;;;30355:36;19366:157;39969:174;40044:24;;;;:15;:24;;;;;:29;;-1:-1:-1;;;;;;40044:29:0;-1:-1:-1;;;;;40044:29:0;;;;;;;;:24;;40098:23;40044:24;40098:14;:23::i;:::-;-1:-1:-1;;;;;40089:46:0;;;;;;;;;;;39969:174;;:::o;36281:348::-;36374:4;36076:16;;;:7;:16;;;;;;-1:-1:-1;;;;;36076:16:0;36391:73;;;;-1:-1:-1;;;36391:73:0;;15460:2:1;36391:73:0;;;15442:21:1;15499:2;15479:18;;;15472:30;15538:34;15518:18;;;15511:62;-1:-1:-1;;;15589:18:1;;;15582:42;15641:19;;36391:73:0;15258:408:1;36391:73:0;36475:13;36491:23;36506:7;36491:14;:23::i;:::-;36475:39;;36544:5;-1:-1:-1;;;;;36533:16:0;:7;-1:-1:-1;;;;;36533:16:0;;:51;;;;36577:7;-1:-1:-1;;;;;36553:31:0;:20;36565:7;36553:11;:20::i;:::-;-1:-1:-1;;;;;36553:31:0;;36533:51;:87;;;-1:-1:-1;;;;;;33373:25:0;;;33349:4;33373:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;36588:32;36525:96;36281:348;-1:-1:-1;;;;36281:348:0:o;39273:578::-;39432:4;-1:-1:-1;;;;;39405:31:0;:23;39420:7;39405:14;:23::i;:::-;-1:-1:-1;;;;;39405:31:0;;39397:85;;;;-1:-1:-1;;;39397:85:0;;15873:2:1;39397:85:0;;;15855:21:1;15912:2;15892:18;;;15885:30;15951:34;15931:18;;;15924:62;-1:-1:-1;;;16002:18:1;;;15995:39;16051:19;;39397:85:0;15671:405:1;39397:85:0;-1:-1:-1;;;;;39501:16:0;;39493:65;;;;-1:-1:-1;;;39493:65:0;;16283:2:1;39493:65:0;;;16265:21:1;16322:2;16302:18;;;16295:30;16361:34;16341:18;;;16334:62;-1:-1:-1;;;16412:18:1;;;16405:34;16456:19;;39493:65:0;16081:400:1;39493:65:0;39571:39;39592:4;39598:2;39602:7;39571:20;:39::i;:::-;39675:29;39692:1;39696:7;39675:8;:29::i;:::-;-1:-1:-1;;;;;39717:15:0;;;;;;:9;:15;;;;;:20;;39736:1;;39717:15;:20;;39736:1;;39717:20;:::i;:::-;;;;-1:-1:-1;;;;;;;39748:13:0;;;;;;:9;:13;;;;;:18;;39765:1;;39748:13;:18;;39765:1;;39748:18;:::i;:::-;;;;-1:-1:-1;;39777:16:0;;;;:7;:16;;;;;;:21;;-1:-1:-1;;;;;;39777:21:0;-1:-1:-1;;;;;39777:21:0;;;;;;;;;39816:27;;39777:16;;39816:27;;;;;;;39273:578;;;:::o;3714:98::-;3772:7;3799:5;3803:1;3799;:5;:::i;36971:110::-;37047:26;37057:2;37061:7;37047:26;;;;;;;;;;;;:9;:26::i;35359:315::-;35516:28;35526:4;35532:2;35536:7;35516:9;:28::i;:::-;35563:48;35586:4;35592:2;35596:7;35605:5;35563:22;:48::i;:::-;35555:111;;;;-1:-1:-1;;;35555:111:0;;;;;;;:::i;31955:99::-;32005:13;32038:8;32031:15;;;;;:::i;7394:723::-;7450:13;7671:10;7667:53;;-1:-1:-1;;7698:10:0;;;;;;;;;;;;-1:-1:-1;;;7698:10:0;;;;;7394:723::o;7667:53::-;7745:5;7730:12;7786:78;7793:9;;7786:78;;7819:8;;;;:::i;:::-;;-1:-1:-1;7842:10:0;;-1:-1:-1;7850:2:0;7842:10;;:::i;:::-;;;7786:78;;;7874:19;7906:6;7896:17;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;7896:17:0;;7874:39;;7924:154;7931:10;;7924:154;;7958:11;7968:1;7958:11;;:::i;:::-;;-1:-1:-1;8027:10:0;8035:2;8027:5;:10;:::i;:::-;8014:24;;:2;:24;:::i;:::-;8001:39;;7984:6;7991;7984:14;;;;;;;;:::i;:::-;;;;:56;-1:-1:-1;;;;;7984:56:0;;;;;;;;-1:-1:-1;8055:11:0;8064:2;8055:11;;:::i;:::-;;;7924:154;;28629:173;28704:6;;;-1:-1:-1;;;;;28721:17:0;;;-1:-1:-1;;;;;;28721:17:0;;;;;;;28754:40;;28704:6;;;28721:17;28704:6;;28754:40;;28685:16;;28754:40;28674:128;28629:173;:::o;44733:589::-;-1:-1:-1;;;;;44939:18:0;;44935:187;;44974:40;45006:7;46149:10;:17;;46122:24;;;;:15;:24;;;;;:44;;;46177:24;;;;;;;;;;;;46045:164;44974:40;44935:187;;;45044:2;-1:-1:-1;;;;;45036:10:0;:4;-1:-1:-1;;;;;45036:10:0;;45032:90;;45063:47;45096:4;45102:7;45063:32;:47::i;:::-;-1:-1:-1;;;;;45136:16:0;;45132:183;;45169:45;45206:7;45169:36;:45::i;45132:183::-;45242:4;-1:-1:-1;;;;;45236:10:0;:2;-1:-1:-1;;;;;45236:10:0;;45232:83;;45263:40;45291:2;45295:7;45263:27;:40::i;37308:321::-;37438:18;37444:2;37448:7;37438:5;:18::i;:::-;37489:54;37520:1;37524:2;37528:7;37537:5;37489:22;:54::i;:::-;37467:154;;;;-1:-1:-1;;;37467:154:0;;;;;;;:::i;40708:803::-;40863:4;-1:-1:-1;;;;;40884:13:0;;10184:20;10232:8;40880:624;;40920:72;;-1:-1:-1;;;40920:72:0;;-1:-1:-1;;;;;40920:36:0;;;;;:72;;26460:10;;40971:4;;40977:7;;40986:5;;40920:72;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;40920:72:0;;;;;;;;-1:-1:-1;;40920:72:0;;;;;;;;;;;;:::i;:::-;;;40916:533;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;41166:13:0;;41162:272;;41209:60;;-1:-1:-1;;;41209:60:0;;;;;;;:::i;41162:272::-;41384:6;41378:13;41369:6;41365:2;41361:15;41354:38;40916:533;-1:-1:-1;;;;;;41043:55:0;-1:-1:-1;;;41043:55:0;;-1:-1:-1;41036:62:0;;40880:624;-1:-1:-1;41488:4:0;40708:803;;;;;;:::o;46836:988::-;47102:22;47152:1;47127:22;47144:4;47127:16;:22::i;:::-;:26;;;;:::i;:::-;47164:18;47185:26;;;:17;:26;;;;;;47102:51;;-1:-1:-1;47318:28:0;;;47314:328;;-1:-1:-1;;;;;47385:18:0;;47363:19;47385:18;;;:12;:18;;;;;;;;:34;;;;;;;;;47436:30;;;;;;:44;;;47553:30;;:17;:30;;;;;:43;;;47314:328;-1:-1:-1;47738:26:0;;;;:17;:26;;;;;;;;47731:33;;;-1:-1:-1;;;;;47782:18:0;;;;;:12;:18;;;;;:34;;;;;;;47775:41;46836:988::o;48119:1079::-;48397:10;:17;48372:22;;48397:21;;48417:1;;48397:21;:::i;:::-;48429:18;48450:24;;;:15;:24;;;;;;48823:10;:26;;48372:46;;-1:-1:-1;48450:24:0;;48372:46;;48823:26;;;;;;:::i;:::-;;;;;;;;;48801:48;;48887:11;48862:10;48873;48862:22;;;;;;;;:::i;:::-;;;;;;;;;;;;:36;;;;48967:28;;;:15;:28;;;;;;;:41;;;49139:24;;;;;49132:31;49174:10;:16;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;48190:1008;;;48119:1079;:::o;45623:221::-;45708:14;45725:20;45742:2;45725:16;:20::i;:::-;-1:-1:-1;;;;;45756:16:0;;;;;;;:12;:16;;;;;;;;:24;;;;;;;;:34;;;45801:26;;;:17;:26;;;;;;:35;;;;-1:-1:-1;45623:221:0:o;37965:382::-;-1:-1:-1;;;;;38045:16:0;;38037:61;;;;-1:-1:-1;;;38037:61:0;;18361:2:1;38037:61:0;;;18343:21:1;;;18380:18;;;18373:30;18439:34;18419:18;;;18412:62;18491:18;;38037:61:0;18159:356:1;38037:61:0;36052:4;36076:16;;;:7;:16;;;;;;-1:-1:-1;;;;;36076:16:0;:30;38109:58;;;;-1:-1:-1;;;38109:58:0;;18722:2:1;38109:58:0;;;18704:21:1;18761:2;18741:18;;;18734:30;18800;18780:18;;;18773:58;18848:18;;38109:58:0;18520:352:1;38109:58:0;38180:45;38209:1;38213:2;38217:7;38180:20;:45::i;:::-;-1:-1:-1;;;;;38238:13:0;;;;;;:9;:13;;;;;:18;;38255:1;;38238:13;:18;;38255:1;;38238:18;:::i;:::-;;;;-1:-1:-1;;38267:16:0;;;;:7;:16;;;;;;:21;;-1:-1:-1;;;;;;38267:21:0;-1:-1:-1;;;;;38267:21:0;;;;;;;;38306:33;;38267:16;;;38306:33;;38267:16;;38306:33;37965:382;;:::o;-1:-1:-1:-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;;;;;;;;;14:131:1;-1:-1:-1;;;;;;88:32:1;;78:43;;68:71;;135:1;132;125:12;150:245;208:6;261:2;249:9;240:7;236:23;232:32;229:52;;;277:1;274;267:12;229:52;316:9;303:23;335:30;359:5;335:30;:::i;592:258::-;664:1;674:113;688:6;685:1;682:13;674:113;;;764:11;;;758:18;745:11;;;738:39;710:2;703:10;674:113;;;805:6;802:1;799:13;796:48;;;-1:-1:-1;;840:1:1;822:16;;815:27;592:258::o;855:::-;897:3;935:5;929:12;962:6;957:3;950:19;978:63;1034:6;1027:4;1022:3;1018:14;1011:4;1004:5;1000:16;978:63;:::i;:::-;1095:2;1074:15;-1:-1:-1;;1070:29:1;1061:39;;;;1102:4;1057:50;;855:258;-1:-1:-1;;855:258:1:o;1118:220::-;1267:2;1256:9;1249:21;1230:4;1287:45;1328:2;1317:9;1313:18;1305:6;1287:45;:::i;1343:180::-;1402:6;1455:2;1443:9;1434:7;1430:23;1426:32;1423:52;;;1471:1;1468;1461:12;1423:52;-1:-1:-1;1494:23:1;;1343:180;-1:-1:-1;1343:180:1:o;1736:173::-;1804:20;;-1:-1:-1;;;;;1853:31:1;;1843:42;;1833:70;;1899:1;1896;1889:12;1833:70;1736:173;;;:::o;1914:254::-;1982:6;1990;2043:2;2031:9;2022:7;2018:23;2014:32;2011:52;;;2059:1;2056;2049:12;2011:52;2082:29;2101:9;2082:29;:::i;:::-;2072:39;2158:2;2143:18;;;;2130:32;;-1:-1:-1;;;1914:254:1:o;2355:328::-;2432:6;2440;2448;2501:2;2489:9;2480:7;2476:23;2472:32;2469:52;;;2517:1;2514;2507:12;2469:52;2540:29;2559:9;2540:29;:::i;:::-;2530:39;;2588:38;2622:2;2611:9;2607:18;2588:38;:::i;:::-;2578:48;;2673:2;2662:9;2658:18;2645:32;2635:42;;2355:328;;;;;:::o;2688:127::-;2749:10;2744:3;2740:20;2737:1;2730:31;2780:4;2777:1;2770:15;2804:4;2801:1;2794:15;2820:632;2885:5;2915:18;2956:2;2948:6;2945:14;2942:40;;;2962:18;;:::i;:::-;3037:2;3031:9;3005:2;3091:15;;-1:-1:-1;;3087:24:1;;;3113:2;3083:33;3079:42;3067:55;;;3137:18;;;3157:22;;;3134:46;3131:72;;;3183:18;;:::i;:::-;3223:10;3219:2;3212:22;3252:6;3243:15;;3282:6;3274;3267:22;3322:3;3313:6;3308:3;3304:16;3301:25;3298:45;;;3339:1;3336;3329:12;3298:45;3389:6;3384:3;3377:4;3369:6;3365:17;3352:44;3444:1;3437:4;3428:6;3420;3416:19;3412:30;3405:41;;;;2820:632;;;;;:::o;3457:451::-;3526:6;3579:2;3567:9;3558:7;3554:23;3550:32;3547:52;;;3595:1;3592;3585:12;3547:52;3635:9;3622:23;3668:18;3660:6;3657:30;3654:50;;;3700:1;3697;3690:12;3654:50;3723:22;;3776:4;3768:13;;3764:27;-1:-1:-1;3754:55:1;;3805:1;3802;3795:12;3754:55;3828:74;3894:7;3889:2;3876:16;3871:2;3867;3863:11;3828:74;:::i;3913:186::-;3972:6;4025:2;4013:9;4004:7;4000:23;3996:32;3993:52;;;4041:1;4038;4031:12;3993:52;4064:29;4083:9;4064:29;:::i;4104:632::-;4275:2;4327:21;;;4397:13;;4300:18;;;4419:22;;;4246:4;;4275:2;4498:15;;;;4472:2;4457:18;;;4246:4;4541:169;4555:6;4552:1;4549:13;4541:169;;;4616:13;;4604:26;;4685:15;;;;4650:12;;;;4577:1;4570:9;4541:169;;;-1:-1:-1;4727:3:1;;4104:632;-1:-1:-1;;;;;;4104:632:1:o;4741:347::-;4806:6;4814;4867:2;4855:9;4846:7;4842:23;4838:32;4835:52;;;4883:1;4880;4873:12;4835:52;4906:29;4925:9;4906:29;:::i;:::-;4896:39;;4985:2;4974:9;4970:18;4957:32;5032:5;5025:13;5018:21;5011:5;5008:32;4998:60;;5054:1;5051;5044:12;4998:60;5077:5;5067:15;;;4741:347;;;;;:::o;5093:667::-;5188:6;5196;5204;5212;5265:3;5253:9;5244:7;5240:23;5236:33;5233:53;;;5282:1;5279;5272:12;5233:53;5305:29;5324:9;5305:29;:::i;:::-;5295:39;;5353:38;5387:2;5376:9;5372:18;5353:38;:::i;:::-;5343:48;;5438:2;5427:9;5423:18;5410:32;5400:42;;5493:2;5482:9;5478:18;5465:32;5520:18;5512:6;5509:30;5506:50;;;5552:1;5549;5542:12;5506:50;5575:22;;5628:4;5620:13;;5616:27;-1:-1:-1;5606:55:1;;5657:1;5654;5647:12;5606:55;5680:74;5746:7;5741:2;5728:16;5723:2;5719;5715:11;5680:74;:::i;:::-;5670:84;;;5093:667;;;;;;;:::o;5765:260::-;5833:6;5841;5894:2;5882:9;5873:7;5869:23;5865:32;5862:52;;;5910:1;5907;5900:12;5862:52;5933:29;5952:9;5933:29;:::i;:::-;5923:39;;5981:38;6015:2;6004:9;6000:18;5981:38;:::i;:::-;5971:48;;5765:260;;;;;:::o;6030:380::-;6109:1;6105:12;;;;6152;;;6173:61;;6227:4;6219:6;6215:17;6205:27;;6173:61;6280:2;6272:6;6269:14;6249:18;6246:38;6243:161;;;6326:10;6321:3;6317:20;6314:1;6307:31;6361:4;6358:1;6351:15;6389:4;6386:1;6379:15;6243:161;;6030:380;;;:::o;7655:413::-;7857:2;7839:21;;;7896:2;7876:18;;;7869:30;7935:34;7930:2;7915:18;;7908:62;-1:-1:-1;;;8001:2:1;7986:18;;7979:47;8058:3;8043:19;;7655:413::o;8485:356::-;8687:2;8669:21;;;8706:18;;;8699:30;8765:34;8760:2;8745:18;;8738:62;8832:2;8817:18;;8485:356::o;9259:127::-;9320:10;9315:3;9311:20;9308:1;9301:31;9351:4;9348:1;9341:15;9375:4;9372:1;9365:15;10212:127;10273:10;10268:3;10264:20;10261:1;10254:31;10304:4;10301:1;10294:15;10328:4;10325:1;10318:15;10344:135;10383:3;-1:-1:-1;;10404:17:1;;10401:43;;;10424:18;;:::i;:::-;-1:-1:-1;10471:1:1;10460:13;;10344:135::o;11181:125::-;11221:4;11249:1;11246;11243:8;11240:34;;;11254:18;;:::i;:::-;-1:-1:-1;11291:9:1;;11181:125::o;11311:128::-;11351:3;11382:1;11378:6;11375:1;11372:13;11369:39;;;11388:18;;:::i;:::-;-1:-1:-1;11424:9:1;;11311:128::o;13801:470::-;13980:3;14018:6;14012:13;14034:53;14080:6;14075:3;14068:4;14060:6;14056:17;14034:53;:::i;:::-;14150:13;;14109:16;;;;14172:57;14150:13;14109:16;14206:4;14194:17;;14172:57;:::i;:::-;14245:20;;13801:470;-1:-1:-1;;;;13801:470:1:o;14678:168::-;14718:7;14784:1;14780;14776:6;14772:14;14769:1;14766:21;14761:1;14754:9;14747:17;14743:45;14740:71;;;14791:18;;:::i;:::-;-1:-1:-1;14831:9:1;;14678:168::o;16486:414::-;16688:2;16670:21;;;16727:2;16707:18;;;16700:30;16766:34;16761:2;16746:18;;16739:62;-1:-1:-1;;;16832:2:1;16817:18;;16810:48;16890:3;16875:19;;16486:414::o;16905:127::-;16966:10;16961:3;16957:20;16954:1;16947:31;16997:4;16994:1;16987:15;17021:4;17018:1;17011:15;17037:120;17077:1;17103;17093:35;;17108:18;;:::i;:::-;-1:-1:-1;17142:9:1;;17037:120::o;17162:112::-;17194:1;17220;17210:35;;17225:18;;:::i;:::-;-1:-1:-1;17259:9:1;;17162:112::o;17279:489::-;-1:-1:-1;;;;;17548:15:1;;;17530:34;;17600:15;;17595:2;17580:18;;17573:43;17647:2;17632:18;;17625:34;;;17695:3;17690:2;17675:18;;17668:31;;;17473:4;;17716:46;;17742:19;;17734:6;17716:46;:::i;:::-;17708:54;17279:489;-1:-1:-1;;;;;;17279:489:1:o;17773:249::-;17842:6;17895:2;17883:9;17874:7;17870:23;17866:32;17863:52;;;17911:1;17908;17901:12;17863:52;17943:9;17937:16;17962:30;17986:5;17962:30;:::i;18027:127::-;18088:10;18083:3;18079:20;18076:1;18069:31;18119:4;18116:1;18109:15;18143:4;18140:1;18133:15

Swarm Source

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