ETH Price: $3,377.92 (-1.92%)
Gas: 2 Gwei

Token

Positive Pandas (PANDA)
 

Overview

Max Total Supply

6,999 PANDA

Holders

1,549

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A
Filtered by Token Holder
tlieberman22.eth
Balance
3 PANDA
0x729cfa0f61946c8a558da84103f332d310a9d26a
Loading...
Loading
Loading...
Loading
Loading...
Loading

Click here to update the token information / general information
# Exchange Pair Price  24H Volume % Volume

Contract Source Code Verified (Exact Match)

Contract Name:
PositivePandas

Compiler Version
v0.8.7+commit.e28d00a7

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

/**
 *Submitted for verification at Etherscan.io on 2022-07-09
*/

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


// OpenZeppelin Contracts v4.4.1 (utils/Counters.sol)

pragma solidity ^0.8.0;

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

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

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

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

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

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


// OpenZeppelin Contracts (last updated v4.7.0) (utils/Strings.sol)

pragma solidity ^0.8.0;

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

    /**
     * @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);
    }

    /**
     * @dev Converts an `address` with fixed length of 20 bytes to its not checksummed ASCII `string` hexadecimal representation.
     */
    function toHexString(address addr) internal pure returns (string memory) {
        return toHexString(uint256(uint160(addr)), _ADDRESS_LENGTH);
    }
}

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


// OpenZeppelin Contracts v4.4.1 (utils/Context.sol)

pragma solidity ^0.8.0;

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

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

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


// OpenZeppelin Contracts (last updated v4.7.0) (access/Ownable.sol)

pragma solidity ^0.8.0;


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

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

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

    /**
     * @dev Throws if called by any account other than the owner.
     */
    modifier onlyOwner() {
        _checkOwner();
        _;
    }

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

    /**
     * @dev Throws if the sender is not the owner.
     */
    function _checkOwner() internal view virtual {
        require(owner() == _msgSender(), "Ownable: caller is not the owner");
    }

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

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

    /**
     * @dev Transfers ownership of the contract to a new account (`newOwner`).
     * Internal function without access restriction.
     */
    function _transferOwnership(address newOwner) internal virtual {
        address oldOwner = _owner;
        _owner = newOwner;
        emit OwnershipTransferred(oldOwner, newOwner);
    }
}

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


// OpenZeppelin Contracts (last updated v4.7.0) (utils/Address.sol)

pragma solidity ^0.8.1;

/**
 * @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
     * ====
     *
     * [IMPORTANT]
     * ====
     * You shouldn't rely on `isContract` to protect against flash loan attacks!
     *
     * Preventing calls from contracts is highly discouraged. It breaks composability, breaks support for smart wallets
     * like Gnosis Safe, and does not provide security since it can be circumvented by calling from a contract
     * constructor.
     * ====
     */
    function isContract(address account) internal view returns (bool) {
        // This method relies on extcodesize/address.code.length, which returns 0
        // for contracts in construction, since the code is only stored at the end
        // of the constructor execution.

        return account.code.length > 0;
    }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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


// OpenZeppelin Contracts (last updated v4.6.0) (token/ERC721/IERC721Receiver.sol)

pragma solidity ^0.8.0;

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

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


// OpenZeppelin Contracts v4.4.1 (utils/introspection/IERC165.sol)

pragma solidity ^0.8.0;

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

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


// OpenZeppelin Contracts v4.4.1 (utils/introspection/ERC165.sol)

pragma solidity ^0.8.0;


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

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


// OpenZeppelin Contracts (last updated v4.7.0) (token/ERC721/IERC721.sol)

pragma solidity ^0.8.0;


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

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

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

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

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

    /**
     * @dev Safely transfers `tokenId` token from `from` to `to`.
     *
     * 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;

    /**
     * @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 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 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 the account approved for `tokenId` token.
     *
     * Requirements:
     *
     * - `tokenId` must exist.
     */
    function getApproved(uint256 tokenId) external view returns (address operator);

    /**
     * @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);
}

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


// OpenZeppelin Contracts v4.4.1 (token/ERC721/extensions/IERC721Metadata.sol)

pragma solidity ^0.8.0;


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

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

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

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


// OpenZeppelin Contracts (last updated v4.7.0) (token/ERC721/ERC721.sol)

pragma solidity ^0.8.0;








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

    // Token name
    string private _name;

    // Token symbol
    string private _symbol;

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

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

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

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

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

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

    /**
     * @dev See {IERC721-balanceOf}.
     */
    function balanceOf(address owner) public view virtual override returns (uint256) {
        require(owner != address(0), "ERC721: address zero is not a valid owner");
        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: invalid token ID");
        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) {
        _requireMinted(tokenId);

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

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

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

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

        _approve(to, tokenId);
    }

    /**
     * @dev See {IERC721-getApproved}.
     */
    function getApproved(uint256 tokenId) public view virtual override returns (address) {
        _requireMinted(tokenId);

        return _tokenApprovals[tokenId];
    }

    /**
     * @dev See {IERC721-setApprovalForAll}.
     */
    function setApprovalForAll(address operator, bool approved) public virtual override {
        _setApprovalForAll(_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: caller is not token 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: caller is not token 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) {
        address owner = ERC721.ownerOf(tokenId);
        return (spender == owner || isApprovedForAll(owner, spender) || getApproved(tokenId) == 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);

        _afterTokenTransfer(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);

        _afterTokenTransfer(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 from incorrect owner");
        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);

        _afterTokenTransfer(from, to, tokenId);
    }

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

    /**
     * @dev Approve `operator` to operate on all of `owner` tokens
     *
     * Emits an {ApprovalForAll} event.
     */
    function _setApprovalForAll(
        address owner,
        address operator,
        bool approved
    ) internal virtual {
        require(owner != operator, "ERC721: approve to caller");
        _operatorApprovals[owner][operator] = approved;
        emit ApprovalForAll(owner, operator, approved);
    }

    /**
     * @dev Reverts if the `tokenId` has not been minted yet.
     */
    function _requireMinted(uint256 tokenId) internal view virtual {
        require(_exists(tokenId), "ERC721: invalid token ID");
    }

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

    /**
     * @dev Hook that is called after any transfer of tokens. This includes
     * minting and burning.
     *
     * Calling conditions:
     *
     * - when `from` and `to` are both non-zero.
     * - `from` and `to` are never both zero.
     *
     * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks].
     */
    function _afterTokenTransfer(
        address from,
        address to,
        uint256 tokenId
    ) internal virtual {}
}

// File: PositivePandas.sol



pragma solidity ^0.8.0;





contract PositivePandas is ERC721, Ownable {
    using Counters for Counters.Counter;
    Counters.Counter private _nextTokenId;

    uint256 public constant supplyLimit = 6999;
    uint256 public constant mintLimit = 3;
    uint256 public mintPrice = 0.01 ether;
    string private _baseTokenURI;
    bool public saleActive;

    constructor(string memory initBaseURI) ERC721("Positive Pandas", "PANDA") {
        _nextTokenId.increment(); // start at one
        setBaseURI(initBaseURI);
        saleActive = false;
    }

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

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

    function toggleSale() public onlyOwner {
        saleActive = !saleActive;
    }

    function getSaleActive() public view returns (bool) {
        return saleActive == true;
    }

    function setMintPrice(uint256 newMintPrice) external onlyOwner {
        mintPrice = newMintPrice;
    }

    function mintPandas(uint256 numberOfTokens) external payable {
        require(saleActive, "Sale is not active");
        require(
            numberOfTokens <= mintLimit,
            "Too many tokens for one transaction"
        );
        require(
            msg.value >= mintPrice * numberOfTokens,
            "Insufficient payment"
        );
        _mintPandas(msg.sender, numberOfTokens);
    }

    function _mintPandas(address to, uint256 numberOfTokens) private {
        require(
            totalSupply() + numberOfTokens <= supplyLimit,
            "Not enough tokens left"
        );

        uint256 mintIndex;
        for (uint256 i = 0; i < numberOfTokens; i++) {
            mintIndex = _nextTokenId.current();
            _nextTokenId.increment();
            _safeMint(to, mintIndex);
        }
    }

    function totalSupply() public view returns (uint256) {
        return _nextTokenId.current() - 1;
    }

    function reserve(address to, uint256 numberOfTokens) public onlyOwner {
        _mintPandas(to, numberOfTokens);
    }

    function withdraw() public onlyOwner {
        uint256 contractBalance = address(this).balance;
        require(payable(0x6E3cCBCd2d85888C35CB6D3a7dCaA46Ed1bA594A).send((contractBalance * 100) / 100), "Withdraw failed");
    }
}

Contract Security Audit

Contract ABI

[{"inputs":[{"internalType":"string","name":"initBaseURI","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":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"getSaleActive","outputs":[{"internalType":"bool","name":"","type":"bool"}],"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":"mintLimit","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"numberOfTokens","type":"uint256"}],"name":"mintPandas","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"mintPrice","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"numberOfTokens","type":"uint256"}],"name":"reserve","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":[],"name":"saleActive","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"baseURI","type":"string"}],"name":"setBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"newMintPrice","type":"uint256"}],"name":"setMintPrice","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"supplyLimit","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"toggleSale","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"withdraw","outputs":[],"stateMutability":"nonpayable","type":"function"}]

6080604052662386f26fc100006008553480156200001c57600080fd5b5060405162001e9438038062001e948339810160408190526200003f9162000282565b604080518082018252600f81526e506f7369746976652050616e64617360881b60208083019182528351808501909452600584526450414e444160d81b9084015281519192916200009391600091620001dc565b508051620000a9906001906020840190620001dc565b505050620000c6620000c0620000f960201b60201c565b620000fd565b620000dd60076200014f60201b62000bd91760201c565b620000e88162000158565b50600a805460ff19169055620003b1565b3390565b600680546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b80546001019055565b620001626200017b565b805162000177906009906020840190620001dc565b5050565b6006546001600160a01b03163314620001da5760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604482015260640160405180910390fd5b565b828054620001ea906200035e565b90600052602060002090601f0160209004810192826200020e576000855562000259565b82601f106200022957805160ff191683800117855562000259565b8280016001018555821562000259579182015b82811115620002595782518255916020019190600101906200023c565b50620002679291506200026b565b5090565b5b808211156200026757600081556001016200026c565b600060208083850312156200029657600080fd5b82516001600160401b0380821115620002ae57600080fd5b818501915085601f830112620002c357600080fd5b815181811115620002d857620002d86200039b565b604051601f8201601f19908116603f011681019083821181831017156200030357620003036200039b565b8160405282815288868487010111156200031c57600080fd5b600093505b8284101562000340578484018601518185018701529285019262000321565b82841115620003525760008684830101525b98975050505050505050565b600181811c908216806200037357607f821691505b602082108114156200039557634e487b7160e01b600052602260045260246000fd5b50919050565b634e487b7160e01b600052604160045260246000fd5b611ad380620003c16000396000f3fe6080604052600436106101b75760003560e01c806370a08231116100ec578063a22cb4651161008a578063cc47a40b11610064578063cc47a40b1461048e578063e985e9c5146104ae578063f2fde38b146104f7578063f4a0a5281461051757600080fd5b8063a22cb4651461042e578063b88d4fde1461044e578063c87b56dd1461046e57600080fd5b80638da5cb5b116100c65780638da5cb5b146103c857806395d89b41146103e657806397db4fe3146103fb578063996517cf1461041957600080fd5b806370a082311461037e578063715018a61461039e5780637d8966e4146103b357600080fd5b80633ccfd60b116101595780635f42a006116101335780635f42a0061461031b5780636352211e1461032e5780636817c76c1461034e57806368428a1b1461036457600080fd5b80633ccfd60b146102c657806342842e0e146102db57806355f804b3146102fb57600080fd5b8063095ea7b311610195578063095ea7b31461024b57806318160ddd1461026d57806319d1997a1461029057806323b872dd146102a657600080fd5b806301ffc9a7146101bc57806306fdde03146101f1578063081812fc14610213575b600080fd5b3480156101c857600080fd5b506101dc6101d7366004611750565b610537565b60405190151581526020015b60405180910390f35b3480156101fd57600080fd5b50610206610589565b6040516101e89190611884565b34801561021f57600080fd5b5061023361022e3660046117d3565b61061b565b6040516001600160a01b0390911681526020016101e8565b34801561025757600080fd5b5061026b610266366004611726565b610642565b005b34801561027957600080fd5b5061028261075d565b6040519081526020016101e8565b34801561029c57600080fd5b50610282611b5781565b3480156102b257600080fd5b5061026b6102c1366004611632565b610779565b3480156102d257600080fd5b5061026b6107aa565b3480156102e757600080fd5b5061026b6102f6366004611632565b610839565b34801561030757600080fd5b5061026b61031636600461178a565b610854565b61026b6103293660046117d3565b610873565b34801561033a57600080fd5b506102336103493660046117d3565b610975565b34801561035a57600080fd5b5061028260085481565b34801561037057600080fd5b50600a546101dc9060ff1681565b34801561038a57600080fd5b506102826103993660046115e4565b6109d5565b3480156103aa57600080fd5b5061026b610a5b565b3480156103bf57600080fd5b5061026b610a6f565b3480156103d457600080fd5b506006546001600160a01b0316610233565b3480156103f257600080fd5b50610206610a8b565b34801561040757600080fd5b506101dc600a5460ff16151560011490565b34801561042557600080fd5b50610282600381565b34801561043a57600080fd5b5061026b6104493660046116ea565b610a9a565b34801561045a57600080fd5b5061026b61046936600461166e565b610aa5565b34801561047a57600080fd5b506102066104893660046117d3565b610add565b34801561049a57600080fd5b5061026b6104a9366004611726565b610b44565b3480156104ba57600080fd5b506101dc6104c93660046115ff565b6001600160a01b03918216600090815260056020908152604080832093909416825291909152205460ff1690565b34801561050357600080fd5b5061026b6105123660046115e4565b610b56565b34801561052357600080fd5b5061026b6105323660046117d3565b610bcc565b60006001600160e01b031982166380ac58cd60e01b148061056857506001600160e01b03198216635b5e139f60e01b145b8061058357506301ffc9a760e01b6001600160e01b03198316145b92915050565b606060008054610598906119c5565b80601f01602080910402602001604051908101604052809291908181526020018280546105c4906119c5565b80156106115780601f106105e657610100808354040283529160200191610611565b820191906000526020600020905b8154815290600101906020018083116105f457829003601f168201915b5050505050905090565b600061062682610be2565b506000908152600460205260409020546001600160a01b031690565b600061064d82610975565b9050806001600160a01b0316836001600160a01b031614156106c05760405162461bcd60e51b815260206004820152602160248201527f4552433732313a20617070726f76616c20746f2063757272656e74206f776e656044820152603960f91b60648201526084015b60405180910390fd5b336001600160a01b03821614806106dc57506106dc81336104c9565b61074e5760405162461bcd60e51b815260206004820152603e60248201527f4552433732313a20617070726f76652063616c6c6572206973206e6f7420746f60448201527f6b656e206f776e6572206e6f7220617070726f76656420666f7220616c6c000060648201526084016106b7565b6107588383610c41565b505050565b6000600161076a60075490565b6107749190611982565b905090565b6107833382610caf565b61079f5760405162461bcd60e51b81526004016106b7906118e9565b610758838383610d2e565b6107b2610eca565b47736e3ccbcd2d85888c35cb6d3a7dcaa46ed1ba594a6108fc60646107d78482611963565b6107e1919061194f565b6040518115909202916000818181858888f193505050506108365760405162461bcd60e51b815260206004820152600f60248201526e15da5d1a191c985dc819985a5b1959608a1b60448201526064016106b7565b50565b61075883838360405180602001604052806000815250610aa5565b61085c610eca565b805161086f9060099060208401906114b9565b5050565b600a5460ff166108ba5760405162461bcd60e51b815260206004820152601260248201527153616c65206973206e6f742061637469766560701b60448201526064016106b7565b60038111156109175760405162461bcd60e51b815260206004820152602360248201527f546f6f206d616e7920746f6b656e7320666f72206f6e65207472616e7361637460448201526234b7b760e91b60648201526084016106b7565b806008546109259190611963565b34101561096b5760405162461bcd60e51b8152602060048201526014602482015273125b9cdd59999a58da595b9d081c185e5b595b9d60621b60448201526064016106b7565b6108363382610f24565b6000818152600260205260408120546001600160a01b0316806105835760405162461bcd60e51b8152602060048201526018602482015277115490cdcc8c4e881a5b9d985b1a59081d1bdad95b88125160421b60448201526064016106b7565b60006001600160a01b038216610a3f5760405162461bcd60e51b815260206004820152602960248201527f4552433732313a2061646472657373207a65726f206973206e6f7420612076616044820152683634b21037bbb732b960b91b60648201526084016106b7565b506001600160a01b031660009081526003602052604090205490565b610a63610eca565b610a6d6000610fbc565b565b610a77610eca565b600a805460ff19811660ff90911615179055565b606060018054610598906119c5565b61086f33838361100e565b610aaf3383610caf565b610acb5760405162461bcd60e51b81526004016106b7906118e9565b610ad7848484846110dd565b50505050565b6060610ae882610be2565b6000610af2611110565b90506000815111610b125760405180602001604052806000815250610b3d565b80610b1c8461111f565b604051602001610b2d929190611818565b6040516020818303038152906040525b9392505050565b610b4c610eca565b61086f8282610f24565b610b5e610eca565b6001600160a01b038116610bc35760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b60648201526084016106b7565b61083681610fbc565b610bd4610eca565b600855565b80546001019055565b6000818152600260205260409020546001600160a01b03166108365760405162461bcd60e51b8152602060048201526018602482015277115490cdcc8c4e881a5b9d985b1a59081d1bdad95b88125160421b60448201526064016106b7565b600081815260046020526040902080546001600160a01b0319166001600160a01b0384169081179091558190610c7682610975565b6001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b600080610cbb83610975565b9050806001600160a01b0316846001600160a01b03161480610d0257506001600160a01b0380821660009081526005602090815260408083209388168352929052205460ff165b80610d265750836001600160a01b0316610d1b8461061b565b6001600160a01b0316145b949350505050565b826001600160a01b0316610d4182610975565b6001600160a01b031614610da55760405162461bcd60e51b815260206004820152602560248201527f4552433732313a207472616e736665722066726f6d20696e636f72726563742060448201526437bbb732b960d91b60648201526084016106b7565b6001600160a01b038216610e075760405162461bcd60e51b8152602060048201526024808201527f4552433732313a207472616e7366657220746f20746865207a65726f206164646044820152637265737360e01b60648201526084016106b7565b610e12600082610c41565b6001600160a01b0383166000908152600360205260408120805460019290610e3b908490611982565b90915550506001600160a01b0382166000908152600360205260408120805460019290610e69908490611937565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b0386811691821790925591518493918716917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef91a4505050565b6006546001600160a01b03163314610a6d5760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657260448201526064016106b7565b611b5781610f3061075d565b610f3a9190611937565b1115610f815760405162461bcd60e51b8152602060048201526016602482015275139bdd08195b9bdd59da081d1bdad95b9cc81b19599d60521b60448201526064016106b7565b6000805b82811015610ad7576007549150610fa0600780546001019055565b610faa848361121d565b80610fb481611a00565b915050610f85565b600680546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b816001600160a01b0316836001600160a01b031614156110705760405162461bcd60e51b815260206004820152601960248201527f4552433732313a20617070726f766520746f2063616c6c65720000000000000060448201526064016106b7565b6001600160a01b03838116600081815260056020908152604080832094871680845294825291829020805460ff191686151590811790915591519182527f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a3505050565b6110e8848484610d2e565b6110f484848484611237565b610ad75760405162461bcd60e51b81526004016106b790611897565b606060098054610598906119c5565b6060816111435750506040805180820190915260018152600360fc1b602082015290565b8160005b811561116d578061115781611a00565b91506111669050600a8361194f565b9150611147565b60008167ffffffffffffffff81111561118857611188611a71565b6040519080825280601f01601f1916602001820160405280156111b2576020820181803683370190505b5090505b8415610d26576111c7600183611982565b91506111d4600a86611a1b565b6111df906030611937565b60f81b8183815181106111f4576111f4611a5b565b60200101906001600160f81b031916908160001a905350611216600a8661194f565b94506111b6565b61086f828260405180602001604052806000815250611344565b60006001600160a01b0384163b1561133957604051630a85bd0160e11b81526001600160a01b0385169063150b7a029061127b903390899088908890600401611847565b602060405180830381600087803b15801561129557600080fd5b505af19250505080156112c5575060408051601f3d908101601f191682019092526112c29181019061176d565b60015b61131f573d8080156112f3576040519150601f19603f3d011682016040523d82523d6000602084013e6112f8565b606091505b5080516113175760405162461bcd60e51b81526004016106b790611897565b805181602001fd5b6001600160e01b031916630a85bd0160e11b149050610d26565b506001949350505050565b61134e8383611377565b61135b6000848484611237565b6107585760405162461bcd60e51b81526004016106b790611897565b6001600160a01b0382166113cd5760405162461bcd60e51b815260206004820181905260248201527f4552433732313a206d696e7420746f20746865207a65726f206164647265737360448201526064016106b7565b6000818152600260205260409020546001600160a01b0316156114325760405162461bcd60e51b815260206004820152601c60248201527f4552433732313a20746f6b656e20616c7265616479206d696e7465640000000060448201526064016106b7565b6001600160a01b038216600090815260036020526040812080546001929061145b908490611937565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b03861690811790915590518392907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a45050565b8280546114c5906119c5565b90600052602060002090601f0160209004810192826114e7576000855561152d565b82601f1061150057805160ff191683800117855561152d565b8280016001018555821561152d579182015b8281111561152d578251825591602001919060010190611512565b5061153992915061153d565b5090565b5b80821115611539576000815560010161153e565b600067ffffffffffffffff8084111561156d5761156d611a71565b604051601f8501601f19908116603f0116810190828211818310171561159557611595611a71565b816040528093508581528686860111156115ae57600080fd5b858560208301376000602087830101525050509392505050565b80356001600160a01b03811681146115df57600080fd5b919050565b6000602082840312156115f657600080fd5b610b3d826115c8565b6000806040838503121561161257600080fd5b61161b836115c8565b9150611629602084016115c8565b90509250929050565b60008060006060848603121561164757600080fd5b611650846115c8565b925061165e602085016115c8565b9150604084013590509250925092565b6000806000806080858703121561168457600080fd5b61168d856115c8565b935061169b602086016115c8565b925060408501359150606085013567ffffffffffffffff8111156116be57600080fd5b8501601f810187136116cf57600080fd5b6116de87823560208401611552565b91505092959194509250565b600080604083850312156116fd57600080fd5b611706836115c8565b91506020830135801515811461171b57600080fd5b809150509250929050565b6000806040838503121561173957600080fd5b611742836115c8565b946020939093013593505050565b60006020828403121561176257600080fd5b8135610b3d81611a87565b60006020828403121561177f57600080fd5b8151610b3d81611a87565b60006020828403121561179c57600080fd5b813567ffffffffffffffff8111156117b357600080fd5b8201601f810184136117c457600080fd5b610d2684823560208401611552565b6000602082840312156117e557600080fd5b5035919050565b60008151808452611804816020860160208601611999565b601f01601f19169290920160200192915050565b6000835161182a818460208801611999565b83519083019061183e818360208801611999565b01949350505050565b6001600160a01b038581168252841660208201526040810183905260806060820181905260009061187a908301846117ec565b9695505050505050565b602081526000610b3d60208301846117ec565b60208082526032908201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560408201527131b2b4bb32b91034b6b83632b6b2b73a32b960711b606082015260800190565b6020808252602e908201527f4552433732313a2063616c6c6572206973206e6f7420746f6b656e206f776e6560408201526d1c881b9bdc88185c1c1c9bdd995960921b606082015260800190565b6000821982111561194a5761194a611a2f565b500190565b60008261195e5761195e611a45565b500490565b600081600019048311821515161561197d5761197d611a2f565b500290565b60008282101561199457611994611a2f565b500390565b60005b838110156119b457818101518382015260200161199c565b83811115610ad75750506000910152565b600181811c908216806119d957607f821691505b602082108114156119fa57634e487b7160e01b600052602260045260246000fd5b50919050565b6000600019821415611a1457611a14611a2f565b5060010190565b600082611a2a57611a2a611a45565b500690565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052601260045260246000fd5b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b6001600160e01b03198116811461083657600080fdfea2646970667358221220f8c3cc257b97548495c952158a39f5d0b79fae5577a1b49fb5122b2bc71ae90464736f6c6343000807003300000000000000000000000000000000000000000000000000000000000000200000000000000000000000000000000000000000000000000000000000000000

Deployed Bytecode

0x6080604052600436106101b75760003560e01c806370a08231116100ec578063a22cb4651161008a578063cc47a40b11610064578063cc47a40b1461048e578063e985e9c5146104ae578063f2fde38b146104f7578063f4a0a5281461051757600080fd5b8063a22cb4651461042e578063b88d4fde1461044e578063c87b56dd1461046e57600080fd5b80638da5cb5b116100c65780638da5cb5b146103c857806395d89b41146103e657806397db4fe3146103fb578063996517cf1461041957600080fd5b806370a082311461037e578063715018a61461039e5780637d8966e4146103b357600080fd5b80633ccfd60b116101595780635f42a006116101335780635f42a0061461031b5780636352211e1461032e5780636817c76c1461034e57806368428a1b1461036457600080fd5b80633ccfd60b146102c657806342842e0e146102db57806355f804b3146102fb57600080fd5b8063095ea7b311610195578063095ea7b31461024b57806318160ddd1461026d57806319d1997a1461029057806323b872dd146102a657600080fd5b806301ffc9a7146101bc57806306fdde03146101f1578063081812fc14610213575b600080fd5b3480156101c857600080fd5b506101dc6101d7366004611750565b610537565b60405190151581526020015b60405180910390f35b3480156101fd57600080fd5b50610206610589565b6040516101e89190611884565b34801561021f57600080fd5b5061023361022e3660046117d3565b61061b565b6040516001600160a01b0390911681526020016101e8565b34801561025757600080fd5b5061026b610266366004611726565b610642565b005b34801561027957600080fd5b5061028261075d565b6040519081526020016101e8565b34801561029c57600080fd5b50610282611b5781565b3480156102b257600080fd5b5061026b6102c1366004611632565b610779565b3480156102d257600080fd5b5061026b6107aa565b3480156102e757600080fd5b5061026b6102f6366004611632565b610839565b34801561030757600080fd5b5061026b61031636600461178a565b610854565b61026b6103293660046117d3565b610873565b34801561033a57600080fd5b506102336103493660046117d3565b610975565b34801561035a57600080fd5b5061028260085481565b34801561037057600080fd5b50600a546101dc9060ff1681565b34801561038a57600080fd5b506102826103993660046115e4565b6109d5565b3480156103aa57600080fd5b5061026b610a5b565b3480156103bf57600080fd5b5061026b610a6f565b3480156103d457600080fd5b506006546001600160a01b0316610233565b3480156103f257600080fd5b50610206610a8b565b34801561040757600080fd5b506101dc600a5460ff16151560011490565b34801561042557600080fd5b50610282600381565b34801561043a57600080fd5b5061026b6104493660046116ea565b610a9a565b34801561045a57600080fd5b5061026b61046936600461166e565b610aa5565b34801561047a57600080fd5b506102066104893660046117d3565b610add565b34801561049a57600080fd5b5061026b6104a9366004611726565b610b44565b3480156104ba57600080fd5b506101dc6104c93660046115ff565b6001600160a01b03918216600090815260056020908152604080832093909416825291909152205460ff1690565b34801561050357600080fd5b5061026b6105123660046115e4565b610b56565b34801561052357600080fd5b5061026b6105323660046117d3565b610bcc565b60006001600160e01b031982166380ac58cd60e01b148061056857506001600160e01b03198216635b5e139f60e01b145b8061058357506301ffc9a760e01b6001600160e01b03198316145b92915050565b606060008054610598906119c5565b80601f01602080910402602001604051908101604052809291908181526020018280546105c4906119c5565b80156106115780601f106105e657610100808354040283529160200191610611565b820191906000526020600020905b8154815290600101906020018083116105f457829003601f168201915b5050505050905090565b600061062682610be2565b506000908152600460205260409020546001600160a01b031690565b600061064d82610975565b9050806001600160a01b0316836001600160a01b031614156106c05760405162461bcd60e51b815260206004820152602160248201527f4552433732313a20617070726f76616c20746f2063757272656e74206f776e656044820152603960f91b60648201526084015b60405180910390fd5b336001600160a01b03821614806106dc57506106dc81336104c9565b61074e5760405162461bcd60e51b815260206004820152603e60248201527f4552433732313a20617070726f76652063616c6c6572206973206e6f7420746f60448201527f6b656e206f776e6572206e6f7220617070726f76656420666f7220616c6c000060648201526084016106b7565b6107588383610c41565b505050565b6000600161076a60075490565b6107749190611982565b905090565b6107833382610caf565b61079f5760405162461bcd60e51b81526004016106b7906118e9565b610758838383610d2e565b6107b2610eca565b47736e3ccbcd2d85888c35cb6d3a7dcaa46ed1ba594a6108fc60646107d78482611963565b6107e1919061194f565b6040518115909202916000818181858888f193505050506108365760405162461bcd60e51b815260206004820152600f60248201526e15da5d1a191c985dc819985a5b1959608a1b60448201526064016106b7565b50565b61075883838360405180602001604052806000815250610aa5565b61085c610eca565b805161086f9060099060208401906114b9565b5050565b600a5460ff166108ba5760405162461bcd60e51b815260206004820152601260248201527153616c65206973206e6f742061637469766560701b60448201526064016106b7565b60038111156109175760405162461bcd60e51b815260206004820152602360248201527f546f6f206d616e7920746f6b656e7320666f72206f6e65207472616e7361637460448201526234b7b760e91b60648201526084016106b7565b806008546109259190611963565b34101561096b5760405162461bcd60e51b8152602060048201526014602482015273125b9cdd59999a58da595b9d081c185e5b595b9d60621b60448201526064016106b7565b6108363382610f24565b6000818152600260205260408120546001600160a01b0316806105835760405162461bcd60e51b8152602060048201526018602482015277115490cdcc8c4e881a5b9d985b1a59081d1bdad95b88125160421b60448201526064016106b7565b60006001600160a01b038216610a3f5760405162461bcd60e51b815260206004820152602960248201527f4552433732313a2061646472657373207a65726f206973206e6f7420612076616044820152683634b21037bbb732b960b91b60648201526084016106b7565b506001600160a01b031660009081526003602052604090205490565b610a63610eca565b610a6d6000610fbc565b565b610a77610eca565b600a805460ff19811660ff90911615179055565b606060018054610598906119c5565b61086f33838361100e565b610aaf3383610caf565b610acb5760405162461bcd60e51b81526004016106b7906118e9565b610ad7848484846110dd565b50505050565b6060610ae882610be2565b6000610af2611110565b90506000815111610b125760405180602001604052806000815250610b3d565b80610b1c8461111f565b604051602001610b2d929190611818565b6040516020818303038152906040525b9392505050565b610b4c610eca565b61086f8282610f24565b610b5e610eca565b6001600160a01b038116610bc35760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b60648201526084016106b7565b61083681610fbc565b610bd4610eca565b600855565b80546001019055565b6000818152600260205260409020546001600160a01b03166108365760405162461bcd60e51b8152602060048201526018602482015277115490cdcc8c4e881a5b9d985b1a59081d1bdad95b88125160421b60448201526064016106b7565b600081815260046020526040902080546001600160a01b0319166001600160a01b0384169081179091558190610c7682610975565b6001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b600080610cbb83610975565b9050806001600160a01b0316846001600160a01b03161480610d0257506001600160a01b0380821660009081526005602090815260408083209388168352929052205460ff165b80610d265750836001600160a01b0316610d1b8461061b565b6001600160a01b0316145b949350505050565b826001600160a01b0316610d4182610975565b6001600160a01b031614610da55760405162461bcd60e51b815260206004820152602560248201527f4552433732313a207472616e736665722066726f6d20696e636f72726563742060448201526437bbb732b960d91b60648201526084016106b7565b6001600160a01b038216610e075760405162461bcd60e51b8152602060048201526024808201527f4552433732313a207472616e7366657220746f20746865207a65726f206164646044820152637265737360e01b60648201526084016106b7565b610e12600082610c41565b6001600160a01b0383166000908152600360205260408120805460019290610e3b908490611982565b90915550506001600160a01b0382166000908152600360205260408120805460019290610e69908490611937565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b0386811691821790925591518493918716917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef91a4505050565b6006546001600160a01b03163314610a6d5760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657260448201526064016106b7565b611b5781610f3061075d565b610f3a9190611937565b1115610f815760405162461bcd60e51b8152602060048201526016602482015275139bdd08195b9bdd59da081d1bdad95b9cc81b19599d60521b60448201526064016106b7565b6000805b82811015610ad7576007549150610fa0600780546001019055565b610faa848361121d565b80610fb481611a00565b915050610f85565b600680546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b816001600160a01b0316836001600160a01b031614156110705760405162461bcd60e51b815260206004820152601960248201527f4552433732313a20617070726f766520746f2063616c6c65720000000000000060448201526064016106b7565b6001600160a01b03838116600081815260056020908152604080832094871680845294825291829020805460ff191686151590811790915591519182527f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a3505050565b6110e8848484610d2e565b6110f484848484611237565b610ad75760405162461bcd60e51b81526004016106b790611897565b606060098054610598906119c5565b6060816111435750506040805180820190915260018152600360fc1b602082015290565b8160005b811561116d578061115781611a00565b91506111669050600a8361194f565b9150611147565b60008167ffffffffffffffff81111561118857611188611a71565b6040519080825280601f01601f1916602001820160405280156111b2576020820181803683370190505b5090505b8415610d26576111c7600183611982565b91506111d4600a86611a1b565b6111df906030611937565b60f81b8183815181106111f4576111f4611a5b565b60200101906001600160f81b031916908160001a905350611216600a8661194f565b94506111b6565b61086f828260405180602001604052806000815250611344565b60006001600160a01b0384163b1561133957604051630a85bd0160e11b81526001600160a01b0385169063150b7a029061127b903390899088908890600401611847565b602060405180830381600087803b15801561129557600080fd5b505af19250505080156112c5575060408051601f3d908101601f191682019092526112c29181019061176d565b60015b61131f573d8080156112f3576040519150601f19603f3d011682016040523d82523d6000602084013e6112f8565b606091505b5080516113175760405162461bcd60e51b81526004016106b790611897565b805181602001fd5b6001600160e01b031916630a85bd0160e11b149050610d26565b506001949350505050565b61134e8383611377565b61135b6000848484611237565b6107585760405162461bcd60e51b81526004016106b790611897565b6001600160a01b0382166113cd5760405162461bcd60e51b815260206004820181905260248201527f4552433732313a206d696e7420746f20746865207a65726f206164647265737360448201526064016106b7565b6000818152600260205260409020546001600160a01b0316156114325760405162461bcd60e51b815260206004820152601c60248201527f4552433732313a20746f6b656e20616c7265616479206d696e7465640000000060448201526064016106b7565b6001600160a01b038216600090815260036020526040812080546001929061145b908490611937565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b03861690811790915590518392907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a45050565b8280546114c5906119c5565b90600052602060002090601f0160209004810192826114e7576000855561152d565b82601f1061150057805160ff191683800117855561152d565b8280016001018555821561152d579182015b8281111561152d578251825591602001919060010190611512565b5061153992915061153d565b5090565b5b80821115611539576000815560010161153e565b600067ffffffffffffffff8084111561156d5761156d611a71565b604051601f8501601f19908116603f0116810190828211818310171561159557611595611a71565b816040528093508581528686860111156115ae57600080fd5b858560208301376000602087830101525050509392505050565b80356001600160a01b03811681146115df57600080fd5b919050565b6000602082840312156115f657600080fd5b610b3d826115c8565b6000806040838503121561161257600080fd5b61161b836115c8565b9150611629602084016115c8565b90509250929050565b60008060006060848603121561164757600080fd5b611650846115c8565b925061165e602085016115c8565b9150604084013590509250925092565b6000806000806080858703121561168457600080fd5b61168d856115c8565b935061169b602086016115c8565b925060408501359150606085013567ffffffffffffffff8111156116be57600080fd5b8501601f810187136116cf57600080fd5b6116de87823560208401611552565b91505092959194509250565b600080604083850312156116fd57600080fd5b611706836115c8565b91506020830135801515811461171b57600080fd5b809150509250929050565b6000806040838503121561173957600080fd5b611742836115c8565b946020939093013593505050565b60006020828403121561176257600080fd5b8135610b3d81611a87565b60006020828403121561177f57600080fd5b8151610b3d81611a87565b60006020828403121561179c57600080fd5b813567ffffffffffffffff8111156117b357600080fd5b8201601f810184136117c457600080fd5b610d2684823560208401611552565b6000602082840312156117e557600080fd5b5035919050565b60008151808452611804816020860160208601611999565b601f01601f19169290920160200192915050565b6000835161182a818460208801611999565b83519083019061183e818360208801611999565b01949350505050565b6001600160a01b038581168252841660208201526040810183905260806060820181905260009061187a908301846117ec565b9695505050505050565b602081526000610b3d60208301846117ec565b60208082526032908201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560408201527131b2b4bb32b91034b6b83632b6b2b73a32b960711b606082015260800190565b6020808252602e908201527f4552433732313a2063616c6c6572206973206e6f7420746f6b656e206f776e6560408201526d1c881b9bdc88185c1c1c9bdd995960921b606082015260800190565b6000821982111561194a5761194a611a2f565b500190565b60008261195e5761195e611a45565b500490565b600081600019048311821515161561197d5761197d611a2f565b500290565b60008282101561199457611994611a2f565b500390565b60005b838110156119b457818101518382015260200161199c565b83811115610ad75750506000910152565b600181811c908216806119d957607f821691505b602082108114156119fa57634e487b7160e01b600052602260045260246000fd5b50919050565b6000600019821415611a1457611a14611a2f565b5060010190565b600082611a2a57611a2a611a45565b500690565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052601260045260246000fd5b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b6001600160e01b03198116811461083657600080fdfea2646970667358221220f8c3cc257b97548495c952158a39f5d0b79fae5577a1b49fb5122b2bc71ae90464736f6c63430008070033

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

00000000000000000000000000000000000000000000000000000000000000200000000000000000000000000000000000000000000000000000000000000000

-----Decoded View---------------
Arg [0] : initBaseURI (string):

-----Encoded View---------------
2 Constructor Arguments found :
Arg [0] : 0000000000000000000000000000000000000000000000000000000000000020
Arg [1] : 0000000000000000000000000000000000000000000000000000000000000000


Deployed Bytecode Sourcemap

39454:2413:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;26202:305;;;;;;;;;;-1:-1:-1;26202:305:0;;;;;:::i;:::-;;:::i;:::-;;;5646:14:1;;5639:22;5621:41;;5609:2;5594:18;26202:305:0;;;;;;;;27129:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;28642:171::-;;;;;;;;;;-1:-1:-1;28642:171:0;;;;;:::i;:::-;;:::i;:::-;;;-1:-1:-1;;;;;4944:32:1;;;4926:51;;4914:2;4899:18;28642:171:0;4780:203:1;28159:417:0;;;;;;;;;;-1:-1:-1;28159:417:0;;;;;:::i;:::-;;:::i;:::-;;41394:105;;;;;;;;;;;;;:::i;:::-;;;12919:25:1;;;12907:2;12892:18;41394:105:0;12773:177:1;39592:42:0;;;;;;;;;;;;39630:4;39592:42;;29342:336;;;;;;;;;;-1:-1:-1;29342:336:0;;;;;:::i;:::-;;:::i;41635:229::-;;;;;;;;;;;;;:::i;29749:185::-;;;;;;;;;;-1:-1:-1;29749:185:0;;;;;:::i;:::-;;:::i;40121:102::-;;;;;;;;;;-1:-1:-1;40121:102:0;;;;;:::i;:::-;;:::i;40539:414::-;;;;;;:::i;:::-;;:::i;26840:222::-;;;;;;;;;;-1:-1:-1;26840:222:0;;;;;:::i;:::-;;:::i;39685:37::-;;;;;;;;;;;;;;;;39764:22;;;;;;;;;;-1:-1:-1;39764:22:0;;;;;;;;26571:207;;;;;;;;;;-1:-1:-1;26571:207:0;;;;;:::i;:::-;;:::i;6738:103::-;;;;;;;;;;;;;:::i;40231:82::-;;;;;;;;;;;;;:::i;6090:87::-;;;;;;;;;;-1:-1:-1;6163:6:0;;-1:-1:-1;;;;;6163:6:0;6090:87;;27298:104;;;;;;;;;;;;;:::i;40321:96::-;;;;;;;;;;;;40391:10;;;;:18;;:10;:18;;40321:96;39641:37;;;;;;;;;;;;39677:1;39641:37;;28885:155;;;;;;;;;;-1:-1:-1;28885:155:0;;;;;:::i;:::-;;:::i;30005:323::-;;;;;;;;;;-1:-1:-1;30005:323:0;;;;;:::i;:::-;;:::i;27473:281::-;;;;;;;;;;-1:-1:-1;27473:281:0;;;;;:::i;:::-;;:::i;41507:120::-;;;;;;;;;;-1:-1:-1;41507:120:0;;;;;:::i;:::-;;:::i;29111:164::-;;;;;;;;;;-1:-1:-1;29111:164:0;;;;;:::i;:::-;-1:-1:-1;;;;;29232:25:0;;;29208:4;29232:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;;;;29111:164;6996:201;;;;;;;;;;-1:-1:-1;6996:201:0;;;;;:::i;:::-;;:::i;40425:106::-;;;;;;;;;;-1:-1:-1;40425:106:0;;;;;:::i;:::-;;:::i;26202:305::-;26304:4;-1:-1:-1;;;;;;26341:40:0;;-1:-1:-1;;;26341:40:0;;:105;;-1:-1:-1;;;;;;;26398:48:0;;-1:-1:-1;;;26398:48:0;26341:105;:158;;;-1:-1:-1;;;;;;;;;;19053:40:0;;;26463:36;26321:178;26202:305;-1:-1:-1;;26202:305:0:o;27129:100::-;27183:13;27216:5;27209:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;27129:100;:::o;28642:171::-;28718:7;28738:23;28753:7;28738:14;:23::i;:::-;-1:-1:-1;28781:24:0;;;;:15;:24;;;;;;-1:-1:-1;;;;;28781:24:0;;28642:171::o;28159:417::-;28240:13;28256:23;28271:7;28256:14;:23::i;:::-;28240:39;;28304:5;-1:-1:-1;;;;;28298:11:0;:2;-1:-1:-1;;;;;28298:11:0;;;28290:57;;;;-1:-1:-1;;;28290:57:0;;12158:2:1;28290:57:0;;;12140:21:1;12197:2;12177:18;;;12170:30;12236:34;12216:18;;;12209:62;-1:-1:-1;;;12287:18:1;;;12280:31;12328:19;;28290:57:0;;;;;;;;;4721:10;-1:-1:-1;;;;;28382:21:0;;;;:62;;-1:-1:-1;28407:37:0;28424:5;4721:10;29111:164;:::i;28407:37::-;28360:174;;;;-1:-1:-1;;;28360:174:0;;10303:2:1;28360:174:0;;;10285:21:1;10342:2;10322:18;;;10315:30;10381:34;10361:18;;;10354:62;10452:32;10432:18;;;10425:60;10502:19;;28360:174:0;10101:426:1;28360:174:0;28547:21;28556:2;28560:7;28547:8;:21::i;:::-;28229:347;28159:417;;:::o;41394:105::-;41438:7;41490:1;41465:22;:12;964:14;;872:114;41465:22;:26;;;;:::i;:::-;41458:33;;41394:105;:::o;29342:336::-;29537:41;4721:10;29570:7;29537:18;:41::i;:::-;29529:100;;;;-1:-1:-1;;;29529:100:0;;;;;;;:::i;:::-;29642:28;29652:4;29658:2;29662:7;29642:9;:28::i;41635:229::-;5976:13;:11;:13::i;:::-;41709:21:::1;41757:42;41749:87;41832:3;41807:21;41709::::0;41832:3;41807:21:::1;:::i;:::-;41806:29;;;;:::i;:::-;41749:87;::::0;;::::1;::::0;;::::1;::::0;::::1;::::0;;;;;;::::1;;;;;;41741:115;;;::::0;-1:-1:-1;;;41741:115:0;;8092:2:1;41741:115:0::1;::::0;::::1;8074:21:1::0;8131:2;8111:18;;;8104:30;-1:-1:-1;;;8150:18:1;;;8143:45;8205:18;;41741:115:0::1;7890:339:1::0;41741:115:0::1;41672:192;41635:229::o:0;29749:185::-;29887:39;29904:4;29910:2;29914:7;29887:39;;;;;;;;;;;;:16;:39::i;40121:102::-;5976:13;:11;:13::i;:::-;40192:23;;::::1;::::0;:13:::1;::::0;:23:::1;::::0;::::1;::::0;::::1;:::i;:::-;;40121:102:::0;:::o;40539:414::-;40619:10;;;;40611:41;;;;-1:-1:-1;;;40611:41:0;;9195:2:1;40611:41:0;;;9177:21:1;9234:2;9214:18;;;9207:30;-1:-1:-1;;;9253:18:1;;;9246:48;9311:18;;40611:41:0;8993:342:1;40611:41:0;39677:1;40685:14;:27;;40663:112;;;;-1:-1:-1;;;40663:112:0;;6099:2:1;40663:112:0;;;6081:21:1;6138:2;6118:18;;;6111:30;6177:34;6157:18;;;6150:62;-1:-1:-1;;;6228:18:1;;;6221:33;6271:19;;40663:112:0;5897:399:1;40663:112:0;40833:14;40821:9;;:26;;;;:::i;:::-;40808:9;:39;;40786:109;;;;-1:-1:-1;;;40786:109:0;;11095:2:1;40786:109:0;;;11077:21:1;11134:2;11114:18;;;11107:30;-1:-1:-1;;;11153:18:1;;;11146:50;11213:18;;40786:109:0;10893:344:1;40786:109:0;40906:39;40918:10;40930:14;40906:11;:39::i;26840:222::-;26912:7;26948:16;;;:7;:16;;;;;;-1:-1:-1;;;;;26948:16:0;26983:19;26975:56;;;;-1:-1:-1;;;26975:56:0;;11805:2:1;26975:56:0;;;11787:21:1;11844:2;11824:18;;;11817:30;-1:-1:-1;;;11863:18:1;;;11856:54;11927:18;;26975:56:0;11603:348:1;26571:207:0;26643:7;-1:-1:-1;;;;;26671:19:0;;26663:73;;;;-1:-1:-1;;;26663:73:0;;9542:2:1;26663:73:0;;;9524:21:1;9581:2;9561:18;;;9554:30;9620:34;9600:18;;;9593:62;-1:-1:-1;;;9671:18:1;;;9664:39;9720:19;;26663:73:0;9340:405:1;26663:73:0;-1:-1:-1;;;;;;26754:16:0;;;;;:9;:16;;;;;;;26571:207::o;6738:103::-;5976:13;:11;:13::i;:::-;6803:30:::1;6830:1;6803:18;:30::i;:::-;6738:103::o:0;40231:82::-;5976:13;:11;:13::i;:::-;40295:10:::1;::::0;;-1:-1:-1;;40281:24:0;::::1;40295:10;::::0;;::::1;40294:11;40281:24;::::0;;40231:82::o;27298:104::-;27354:13;27387:7;27380:14;;;;;:::i;28885:155::-;28980:52;4721:10;29013:8;29023;28980:18;:52::i;30005:323::-;30179:41;4721:10;30212:7;30179:18;:41::i;:::-;30171:100;;;;-1:-1:-1;;;30171:100:0;;;;;;;:::i;:::-;30282:38;30296:4;30302:2;30306:7;30315:4;30282:13;:38::i;:::-;30005:323;;;;:::o;27473:281::-;27546:13;27572:23;27587:7;27572:14;:23::i;:::-;27608:21;27632:10;:8;:10::i;:::-;27608:34;;27684:1;27666:7;27660:21;:25;:86;;;;;;;;;;;;;;;;;27712:7;27721:18;:7;:16;:18::i;:::-;27695:45;;;;;;;;;:::i;:::-;;;;;;;;;;;;;27660:86;27653:93;27473:281;-1:-1:-1;;;27473:281:0:o;41507:120::-;5976:13;:11;:13::i;:::-;41588:31:::1;41600:2;41604:14;41588:11;:31::i;6996:201::-:0;5976:13;:11;:13::i;:::-;-1:-1:-1;;;;;7085:22:0;::::1;7077:73;;;::::0;-1:-1:-1;;;7077:73:0;;6922:2:1;7077:73:0::1;::::0;::::1;6904:21:1::0;6961:2;6941:18;;;6934:30;7000:34;6980:18;;;6973:62;-1:-1:-1;;;7051:18:1;;;7044:36;7097:19;;7077:73:0::1;6720:402:1::0;7077:73:0::1;7161:28;7180:8;7161:18;:28::i;40425:106::-:0;5976:13;:11;:13::i;:::-;40499:9:::1;:24:::0;40425:106::o;994:127::-;1083:19;;1101:1;1083:19;;;994:127::o;36617:135::-;31900:4;31924:16;;;:7;:16;;;;;;-1:-1:-1;;;;;31924:16:0;36691:53;;;;-1:-1:-1;;;36691:53:0;;11805:2:1;36691:53:0;;;11787:21:1;11844:2;11824:18;;;11817:30;-1:-1:-1;;;11863:18:1;;;11856:54;11927:18;;36691:53:0;11603:348:1;35896:174:0;35971:24;;;;:15;:24;;;;;:29;;-1:-1:-1;;;;;;35971:29:0;-1:-1:-1;;;;;35971:29:0;;;;;;;;:24;;36025:23;35971:24;36025:14;:23::i;:::-;-1:-1:-1;;;;;36016:46:0;;;;;;;;;;;35896:174;;:::o;32129:264::-;32222:4;32239:13;32255:23;32270:7;32255:14;:23::i;:::-;32239:39;;32308:5;-1:-1:-1;;;;;32297:16:0;:7;-1:-1:-1;;;;;32297:16:0;;:52;;;-1:-1:-1;;;;;;29232:25:0;;;29208:4;29232:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;32317:32;32297:87;;;;32377:7;-1:-1:-1;;;;;32353:31:0;:20;32365:7;32353:11;:20::i;:::-;-1:-1:-1;;;;;32353:31:0;;32297:87;32289:96;32129:264;-1:-1:-1;;;;32129:264:0:o;35152:625::-;35311:4;-1:-1:-1;;;;;35284:31:0;:23;35299:7;35284:14;:23::i;:::-;-1:-1:-1;;;;;35284:31:0;;35276:81;;;;-1:-1:-1;;;35276:81:0;;7329:2:1;35276:81:0;;;7311:21:1;7368:2;7348:18;;;7341:30;7407:34;7387:18;;;7380:62;-1:-1:-1;;;7458:18:1;;;7451:35;7503:19;;35276:81:0;7127:401:1;35276:81:0;-1:-1:-1;;;;;35376:16:0;;35368:65;;;;-1:-1:-1;;;35368:65:0;;8436:2:1;35368:65:0;;;8418:21:1;8475:2;8455:18;;;8448:30;8514:34;8494:18;;;8487:62;-1:-1:-1;;;8565:18:1;;;8558:34;8609:19;;35368:65:0;8234:400:1;35368:65:0;35550:29;35567:1;35571:7;35550:8;:29::i;:::-;-1:-1:-1;;;;;35592:15:0;;;;;;:9;:15;;;;;:20;;35611:1;;35592:15;:20;;35611:1;;35592:20;:::i;:::-;;;;-1:-1:-1;;;;;;;35623:13:0;;;;;;:9;:13;;;;;:18;;35640:1;;35623:13;:18;;35640:1;;35623:18;:::i;:::-;;;;-1:-1:-1;;35652:16:0;;;;:7;:16;;;;;;:21;;-1:-1:-1;;;;;;35652:21:0;-1:-1:-1;;;;;35652:21:0;;;;;;;;;35691:27;;35652:16;;35691:27;;;;;;;28229:347;28159:417;;:::o;6255:132::-;6163:6;;-1:-1:-1;;;;;6163:6:0;4721:10;6319:23;6311:68;;;;-1:-1:-1;;;6311:68:0;;11444:2:1;6311:68:0;;;11426:21:1;;;11463:18;;;11456:30;11522:34;11502:18;;;11495:62;11574:18;;6311:68:0;11242:356:1;40961:425:0;39630:4;41075:14;41059:13;:11;:13::i;:::-;:30;;;;:::i;:::-;:45;;41037:117;;;;-1:-1:-1;;;41037:117:0;;9952:2:1;41037:117:0;;;9934:21:1;9991:2;9971:18;;;9964:30;-1:-1:-1;;;10010:18:1;;;10003:52;10072:18;;41037:117:0;9750:346:1;41037:117:0;41167:17;;41195:184;41219:14;41215:1;:18;41195:184;;;41267:12;964:14;41255:34;;41304:24;:12;1083:19;;1101:1;1083:19;;;994:127;41304:24;41343;41353:2;41357:9;41343;:24::i;:::-;41235:3;;;;:::i;:::-;;;;41195:184;;7357:191;7450:6;;;-1:-1:-1;;;;;7467:17:0;;;-1:-1:-1;;;;;;7467:17:0;;;;;;;7500:40;;7450:6;;;7467:17;7450:6;;7500:40;;7431:16;;7500:40;7420:128;7357:191;:::o;36213:315::-;36368:8;-1:-1:-1;;;;;36359:17:0;:5;-1:-1:-1;;;;;36359:17:0;;;36351:55;;;;-1:-1:-1;;;36351:55:0;;8841:2:1;36351:55:0;;;8823:21:1;8880:2;8860:18;;;8853:30;8919:27;8899:18;;;8892:55;8964:18;;36351:55:0;8639:349:1;36351:55:0;-1:-1:-1;;;;;36417:25:0;;;;;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;;:46;;-1:-1:-1;;36417:46:0;;;;;;;;;;36479:41;;5621::1;;;36479::0;;5594:18:1;36479:41:0;;;;;;;36213:315;;;:::o;31209:313::-;31365:28;31375:4;31381:2;31385:7;31365:9;:28::i;:::-;31412:47;31435:4;31441:2;31445:7;31454:4;31412:22;:47::i;:::-;31404:110;;;;-1:-1:-1;;;31404:110:0;;;;;;;:::i;39999:114::-;40059:13;40092;40085:20;;;;;:::i;1895:723::-;1951:13;2172:10;2168:53;;-1:-1:-1;;2199:10:0;;;;;;;;;;;;-1:-1:-1;;;2199:10:0;;;;;1895:723::o;2168:53::-;2246:5;2231:12;2287:78;2294:9;;2287:78;;2320:8;;;;:::i;:::-;;-1:-1:-1;2343:10:0;;-1:-1:-1;2351:2:0;2343:10;;:::i;:::-;;;2287:78;;;2375:19;2407:6;2397:17;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;2397:17:0;;2375:39;;2425:154;2432:10;;2425:154;;2459:11;2469:1;2459:11;;:::i;:::-;;-1:-1:-1;2528:10:0;2536:2;2528:5;:10;:::i;:::-;2515:24;;:2;:24;:::i;:::-;2502:39;;2485:6;2492;2485:14;;;;;;;;:::i;:::-;;;;:56;-1:-1:-1;;;;;2485:56:0;;;;;;;;-1:-1:-1;2556:11:0;2565:2;2556:11;;:::i;:::-;;;2425:154;;32735:110;32811:26;32821:2;32825:7;32811:26;;;;;;;;;;;;:9;:26::i;37316:853::-;37470:4;-1:-1:-1;;;;;37491:13:0;;9083:19;:23;37487:675;;37527:71;;-1:-1:-1;;;37527:71:0;;-1:-1:-1;;;;;37527:36:0;;;;;:71;;4721:10;;37578:4;;37584:7;;37593:4;;37527:71;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;37527:71:0;;;;;;;;-1:-1:-1;;37527:71:0;;;;;;;;;;;;:::i;:::-;;;37523:584;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;37768:13:0;;37764:328;;37811:60;;-1:-1:-1;;;37811:60:0;;;;;;;:::i;37764:328::-;38042:6;38036:13;38027:6;38023:2;38019:15;38012:38;37523:584;-1:-1:-1;;;;;;37649:51:0;-1:-1:-1;;;37649:51:0;;-1:-1:-1;37642:58:0;;37487:675;-1:-1:-1;38146:4:0;37316:853;;;;;;:::o;33072:319::-;33201:18;33207:2;33211:7;33201:5;:18::i;:::-;33252:53;33283:1;33287:2;33291:7;33300:4;33252:22;:53::i;:::-;33230:153;;;;-1:-1:-1;;;33230:153:0;;;;;;;:::i;33727:439::-;-1:-1:-1;;;;;33807:16:0;;33799:61;;;;-1:-1:-1;;;33799:61:0;;10734:2:1;33799:61:0;;;10716:21:1;;;10753:18;;;10746:30;10812:34;10792:18;;;10785:62;10864:18;;33799:61:0;10532:356:1;33799:61:0;31900:4;31924:16;;;:7;:16;;;;;;-1:-1:-1;;;;;31924:16:0;:30;33871:58;;;;-1:-1:-1;;;33871:58:0;;7735:2:1;33871:58:0;;;7717:21:1;7774:2;7754:18;;;7747:30;7813;7793:18;;;7786:58;7861:18;;33871:58:0;7533:352:1;33871:58:0;-1:-1:-1;;;;;34000:13:0;;;;;;:9;:13;;;;;:18;;34017:1;;34000:13;:18;;34017:1;;34000:18;:::i;:::-;;;;-1:-1:-1;;34029:16:0;;;;:7;:16;;;;;;:21;;-1:-1:-1;;;;;;34029:21:0;-1:-1:-1;;;;;34029:21:0;;;;;;;;34068:33;;34029:16;;;34068:33;;34029:16;;34068:33;40192:23:::1;40121:102:::0;:::o;-1:-1:-1:-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;;;;;;;;;14:631:1;78:5;108:18;149:2;141:6;138:14;135:40;;;155:18;;:::i;:::-;230:2;224:9;198:2;284:15;;-1:-1:-1;;280:24:1;;;306:2;276:33;272:42;260:55;;;330:18;;;350:22;;;327:46;324:72;;;376:18;;:::i;:::-;416:10;412:2;405:22;445:6;436:15;;475:6;467;460:22;515:3;506:6;501:3;497:16;494:25;491:45;;;532:1;529;522:12;491:45;582:6;577:3;570:4;562:6;558:17;545:44;637:1;630:4;621:6;613;609:19;605:30;598:41;;;;14:631;;;;;:::o;650:173::-;718:20;;-1:-1:-1;;;;;767:31:1;;757:42;;747:70;;813:1;810;803:12;747:70;650:173;;;:::o;828:186::-;887:6;940:2;928:9;919:7;915:23;911:32;908:52;;;956:1;953;946:12;908:52;979:29;998:9;979:29;:::i;1019:260::-;1087:6;1095;1148:2;1136:9;1127:7;1123:23;1119:32;1116:52;;;1164:1;1161;1154:12;1116:52;1187:29;1206:9;1187:29;:::i;:::-;1177:39;;1235:38;1269:2;1258:9;1254:18;1235:38;:::i;:::-;1225:48;;1019:260;;;;;:::o;1284:328::-;1361:6;1369;1377;1430:2;1418:9;1409:7;1405:23;1401:32;1398:52;;;1446:1;1443;1436:12;1398:52;1469:29;1488:9;1469:29;:::i;:::-;1459:39;;1517:38;1551:2;1540:9;1536:18;1517:38;:::i;:::-;1507:48;;1602:2;1591:9;1587:18;1574:32;1564:42;;1284:328;;;;;:::o;1617:666::-;1712:6;1720;1728;1736;1789:3;1777:9;1768:7;1764:23;1760:33;1757:53;;;1806:1;1803;1796:12;1757:53;1829:29;1848:9;1829:29;:::i;:::-;1819:39;;1877:38;1911:2;1900:9;1896:18;1877:38;:::i;:::-;1867:48;;1962:2;1951:9;1947:18;1934:32;1924:42;;2017:2;2006:9;2002:18;1989:32;2044:18;2036:6;2033:30;2030:50;;;2076:1;2073;2066:12;2030:50;2099:22;;2152:4;2144:13;;2140:27;-1:-1:-1;2130:55:1;;2181:1;2178;2171:12;2130:55;2204:73;2269:7;2264:2;2251:16;2246:2;2242;2238:11;2204:73;:::i;:::-;2194:83;;;1617:666;;;;;;;:::o;2288:347::-;2353:6;2361;2414:2;2402:9;2393:7;2389:23;2385:32;2382:52;;;2430:1;2427;2420:12;2382:52;2453:29;2472:9;2453:29;:::i;:::-;2443:39;;2532:2;2521:9;2517:18;2504:32;2579:5;2572:13;2565:21;2558:5;2555:32;2545:60;;2601:1;2598;2591:12;2545:60;2624:5;2614:15;;;2288:347;;;;;:::o;2640:254::-;2708:6;2716;2769:2;2757:9;2748:7;2744:23;2740:32;2737:52;;;2785:1;2782;2775:12;2737:52;2808:29;2827:9;2808:29;:::i;:::-;2798:39;2884:2;2869:18;;;;2856:32;;-1:-1:-1;;;2640:254:1:o;2899:245::-;2957:6;3010:2;2998:9;2989:7;2985:23;2981:32;2978:52;;;3026:1;3023;3016:12;2978:52;3065:9;3052:23;3084:30;3108:5;3084:30;:::i;3149:249::-;3218:6;3271:2;3259:9;3250:7;3246:23;3242:32;3239:52;;;3287:1;3284;3277:12;3239:52;3319:9;3313:16;3338:30;3362:5;3338:30;:::i;3403:450::-;3472:6;3525:2;3513:9;3504:7;3500:23;3496:32;3493:52;;;3541:1;3538;3531:12;3493:52;3581:9;3568:23;3614:18;3606:6;3603:30;3600:50;;;3646:1;3643;3636:12;3600:50;3669:22;;3722:4;3714:13;;3710:27;-1:-1:-1;3700:55:1;;3751:1;3748;3741:12;3700:55;3774:73;3839:7;3834:2;3821:16;3816:2;3812;3808:11;3774:73;:::i;3858:180::-;3917:6;3970:2;3958:9;3949:7;3945:23;3941:32;3938:52;;;3986:1;3983;3976:12;3938:52;-1:-1:-1;4009:23:1;;3858:180;-1:-1:-1;3858:180:1:o;4043:257::-;4084:3;4122:5;4116:12;4149:6;4144:3;4137:19;4165:63;4221:6;4214:4;4209:3;4205:14;4198:4;4191:5;4187:16;4165:63;:::i;:::-;4282:2;4261:15;-1:-1:-1;;4257:29:1;4248:39;;;;4289:4;4244:50;;4043:257;-1:-1:-1;;4043:257:1:o;4305:470::-;4484:3;4522:6;4516:13;4538:53;4584:6;4579:3;4572:4;4564:6;4560:17;4538:53;:::i;:::-;4654:13;;4613:16;;;;4676:57;4654:13;4613:16;4710:4;4698:17;;4676:57;:::i;:::-;4749:20;;4305:470;-1:-1:-1;;;;4305:470:1:o;4988:488::-;-1:-1:-1;;;;;5257:15:1;;;5239:34;;5309:15;;5304:2;5289:18;;5282:43;5356:2;5341:18;;5334:34;;;5404:3;5399:2;5384:18;;5377:31;;;5182:4;;5425:45;;5450:19;;5442:6;5425:45;:::i;:::-;5417:53;4988:488;-1:-1:-1;;;;;;4988:488:1:o;5673:219::-;5822:2;5811:9;5804:21;5785:4;5842:44;5882:2;5871:9;5867:18;5859:6;5842:44;:::i;6301:414::-;6503:2;6485:21;;;6542:2;6522:18;;;6515:30;6581:34;6576:2;6561:18;;6554:62;-1:-1:-1;;;6647:2:1;6632:18;;6625:48;6705:3;6690:19;;6301:414::o;12358:410::-;12560:2;12542:21;;;12599:2;12579:18;;;12572:30;12638:34;12633:2;12618:18;;12611:62;-1:-1:-1;;;12704:2:1;12689:18;;12682:44;12758:3;12743:19;;12358:410::o;12955:128::-;12995:3;13026:1;13022:6;13019:1;13016:13;13013:39;;;13032:18;;:::i;:::-;-1:-1:-1;13068:9:1;;12955:128::o;13088:120::-;13128:1;13154;13144:35;;13159:18;;:::i;:::-;-1:-1:-1;13193:9:1;;13088:120::o;13213:168::-;13253:7;13319:1;13315;13311:6;13307:14;13304:1;13301:21;13296:1;13289:9;13282:17;13278:45;13275:71;;;13326:18;;:::i;:::-;-1:-1:-1;13366:9:1;;13213:168::o;13386:125::-;13426:4;13454:1;13451;13448:8;13445:34;;;13459:18;;:::i;:::-;-1:-1:-1;13496:9:1;;13386:125::o;13516:258::-;13588:1;13598:113;13612:6;13609:1;13606:13;13598:113;;;13688:11;;;13682:18;13669:11;;;13662:39;13634:2;13627:10;13598:113;;;13729:6;13726:1;13723:13;13720:48;;;-1:-1:-1;;13764:1:1;13746:16;;13739:27;13516:258::o;13779:380::-;13858:1;13854:12;;;;13901;;;13922:61;;13976:4;13968:6;13964:17;13954:27;;13922:61;14029:2;14021:6;14018:14;13998:18;13995:38;13992:161;;;14075:10;14070:3;14066:20;14063:1;14056:31;14110:4;14107:1;14100:15;14138:4;14135:1;14128:15;13992:161;;13779:380;;;:::o;14164:135::-;14203:3;-1:-1:-1;;14224:17:1;;14221:43;;;14244:18;;:::i;:::-;-1:-1:-1;14291:1:1;14280:13;;14164:135::o;14304:112::-;14336:1;14362;14352:35;;14367:18;;:::i;:::-;-1:-1:-1;14401:9:1;;14304:112::o;14421:127::-;14482:10;14477:3;14473:20;14470:1;14463:31;14513:4;14510:1;14503:15;14537:4;14534:1;14527:15;14553:127;14614:10;14609:3;14605:20;14602:1;14595:31;14645:4;14642:1;14635:15;14669:4;14666:1;14659:15;14685:127;14746:10;14741:3;14737:20;14734:1;14727:31;14777:4;14774:1;14767:15;14801:4;14798:1;14791:15;14817:127;14878:10;14873:3;14869:20;14866:1;14859:31;14909:4;14906:1;14899:15;14933:4;14930:1;14923:15;14949:131;-1:-1:-1;;;;;;15023:32:1;;15013:43;;15003:71;;15070:1;15067;15060:12

Swarm Source

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