ETH Price: $2,909.55 (-3.98%)
Gas: 2 Gwei

Token

BIg PP Gifts (PPG)
 

Overview

Max Total Supply

78 PPG

Holders

63

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A

Other Info

Filtered by Token Holder
nosleep.eth
Balance
1 PPG
0xB02c3a77a6631bB1598080D77CA596f1f69B3F60
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:
PPGift

Compiler Version
v0.8.6+commit.11564f7e

Optimization Enabled:
Yes with 1000 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

/**
 *Submitted for verification at Etherscan.io on 2021-08-16
*/

// Sources flattened with hardhat v2.6.0 https://hardhat.org

// File @openzeppelin/contracts/utils/introspection/[email protected]

// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

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


// File @openzeppelin/contracts/token/ERC721/[email protected]



pragma solidity ^0.8.0;

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

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

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

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

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

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

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

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

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

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

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

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


// File @openzeppelin/contracts/token/ERC721/[email protected]



pragma solidity ^0.8.0;

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


// File @openzeppelin/contracts/token/ERC721/extensions/[email protected]



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/utils/[email protected]



pragma solidity ^0.8.0;

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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


// File @openzeppelin/contracts/utils/[email protected]



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/utils/[email protected]



pragma solidity ^0.8.0;

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

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

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

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

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


// File @openzeppelin/contracts/utils/introspection/[email protected]



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/[email protected]



pragma solidity ^0.8.0;







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

    // Token name
    string private _name;

    // Token symbol
    string private _symbol;

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

        _approve(to, tokenId);
    }

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

        return _tokenApprovals[tokenId];
    }

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

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

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

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

        _transfer(from, to, tokenId);
    }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

        _beforeTokenTransfer(from, to, tokenId);

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

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

        emit Transfer(from, to, tokenId);
    }

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

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

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


// File @openzeppelin/contracts/token/ERC721/extensions/[email protected]



pragma solidity ^0.8.0;

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

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

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


// File @openzeppelin/contracts/token/ERC721/extensions/[email protected]



pragma solidity ^0.8.0;


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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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


// File @openzeppelin/contracts/token/ERC721/extensions/[email protected]



pragma solidity ^0.8.0;


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


// File @openzeppelin/contracts/security/[email protected]



pragma solidity ^0.8.0;

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

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

    bool private _paused;

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

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

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

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

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

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


// File @openzeppelin/contracts/token/ERC721/extensions/[email protected]



pragma solidity ^0.8.0;


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

        require(!paused(), "ERC721Pausable: token transfer while paused");
    }
}


// File @openzeppelin/contracts/access/[email protected]



pragma solidity ^0.8.0;



/**
 * @dev External interface of AccessControl declared to support ERC165 detection.
 */
interface IAccessControl {
    function hasRole(bytes32 role, address account) external view returns (bool);

    function getRoleAdmin(bytes32 role) external view returns (bytes32);

    function grantRole(bytes32 role, address account) external;

    function revokeRole(bytes32 role, address account) external;

    function renounceRole(bytes32 role, address account) external;
}

/**
 * @dev Contract module that allows children to implement role-based access
 * control mechanisms. This is a lightweight version that doesn't allow enumerating role
 * members except through off-chain means by accessing the contract event logs. Some
 * applications may benefit from on-chain enumerability, for those cases see
 * {AccessControlEnumerable}.
 *
 * Roles are referred to by their `bytes32` identifier. These should be exposed
 * in the external API and be unique. The best way to achieve this is by
 * using `public constant` hash digests:
 *
 * ```
 * bytes32 public constant MY_ROLE = keccak256("MY_ROLE");
 * ```
 *
 * Roles can be used to represent a set of permissions. To restrict access to a
 * function call, use {hasRole}:
 *
 * ```
 * function foo() public {
 *     require(hasRole(MY_ROLE, msg.sender));
 *     ...
 * }
 * ```
 *
 * Roles can be granted and revoked dynamically via the {grantRole} and
 * {revokeRole} functions. Each role has an associated admin role, and only
 * accounts that have a role's admin role can call {grantRole} and {revokeRole}.
 *
 * By default, the admin role for all roles is `DEFAULT_ADMIN_ROLE`, which means
 * that only accounts with this role will be able to grant or revoke other
 * roles. More complex role relationships can be created by using
 * {_setRoleAdmin}.
 *
 * WARNING: The `DEFAULT_ADMIN_ROLE` is also its own admin: it has permission to
 * grant and revoke this role. Extra precautions should be taken to secure
 * accounts that have been granted it.
 */
abstract contract AccessControl is Context, IAccessControl, ERC165 {
    struct RoleData {
        mapping(address => bool) members;
        bytes32 adminRole;
    }

    mapping(bytes32 => RoleData) private _roles;

    bytes32 public constant DEFAULT_ADMIN_ROLE = 0x00;

    /**
     * @dev Emitted when `newAdminRole` is set as ``role``'s admin role, replacing `previousAdminRole`
     *
     * `DEFAULT_ADMIN_ROLE` is the starting admin for all roles, despite
     * {RoleAdminChanged} not being emitted signaling this.
     *
     * _Available since v3.1._
     */
    event RoleAdminChanged(bytes32 indexed role, bytes32 indexed previousAdminRole, bytes32 indexed newAdminRole);

    /**
     * @dev Emitted when `account` is granted `role`.
     *
     * `sender` is the account that originated the contract call, an admin role
     * bearer except when using {_setupRole}.
     */
    event RoleGranted(bytes32 indexed role, address indexed account, address indexed sender);

    /**
     * @dev Emitted when `account` is revoked `role`.
     *
     * `sender` is the account that originated the contract call:
     *   - if using `revokeRole`, it is the admin role bearer
     *   - if using `renounceRole`, it is the role bearer (i.e. `account`)
     */
    event RoleRevoked(bytes32 indexed role, address indexed account, address indexed sender);

    /**
     * @dev Modifier that checks that an account has a specific role. Reverts
     * with a standardized message including the required role.
     *
     * The format of the revert reason is given by the following regular expression:
     *
     *  /^AccessControl: account (0x[0-9a-f]{20}) is missing role (0x[0-9a-f]{32})$/
     *
     * _Available since v4.1._
     */
    modifier onlyRole(bytes32 role) {
        _checkRole(role, _msgSender());
        _;
    }

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

    /**
     * @dev Returns `true` if `account` has been granted `role`.
     */
    function hasRole(bytes32 role, address account) public view override returns (bool) {
        return _roles[role].members[account];
    }

    /**
     * @dev Revert with a standard message if `account` is missing `role`.
     *
     * The format of the revert reason is given by the following regular expression:
     *
     *  /^AccessControl: account (0x[0-9a-f]{20}) is missing role (0x[0-9a-f]{32})$/
     */
    function _checkRole(bytes32 role, address account) internal view {
        if (!hasRole(role, account)) {
            revert(
                string(
                    abi.encodePacked(
                        "AccessControl: account ",
                        Strings.toHexString(uint160(account), 20),
                        " is missing role ",
                        Strings.toHexString(uint256(role), 32)
                    )
                )
            );
        }
    }

    /**
     * @dev Returns the admin role that controls `role`. See {grantRole} and
     * {revokeRole}.
     *
     * To change a role's admin, use {_setRoleAdmin}.
     */
    function getRoleAdmin(bytes32 role) public view override returns (bytes32) {
        return _roles[role].adminRole;
    }

    /**
     * @dev Grants `role` to `account`.
     *
     * If `account` had not been already granted `role`, emits a {RoleGranted}
     * event.
     *
     * Requirements:
     *
     * - the caller must have ``role``'s admin role.
     */
    function grantRole(bytes32 role, address account) public virtual override onlyRole(getRoleAdmin(role)) {
        _grantRole(role, account);
    }

    /**
     * @dev Revokes `role` from `account`.
     *
     * If `account` had been granted `role`, emits a {RoleRevoked} event.
     *
     * Requirements:
     *
     * - the caller must have ``role``'s admin role.
     */
    function revokeRole(bytes32 role, address account) public virtual override onlyRole(getRoleAdmin(role)) {
        _revokeRole(role, account);
    }

    /**
     * @dev Revokes `role` from the calling account.
     *
     * Roles are often managed via {grantRole} and {revokeRole}: this function's
     * purpose is to provide a mechanism for accounts to lose their privileges
     * if they are compromised (such as when a trusted device is misplaced).
     *
     * If the calling account had been granted `role`, emits a {RoleRevoked}
     * event.
     *
     * Requirements:
     *
     * - the caller must be `account`.
     */
    function renounceRole(bytes32 role, address account) public virtual override {
        require(account == _msgSender(), "AccessControl: can only renounce roles for self");

        _revokeRole(role, account);
    }

    /**
     * @dev Grants `role` to `account`.
     *
     * If `account` had not been already granted `role`, emits a {RoleGranted}
     * event. Note that unlike {grantRole}, this function doesn't perform any
     * checks on the calling account.
     *
     * [WARNING]
     * ====
     * This function should only be called from the constructor when setting
     * up the initial roles for the system.
     *
     * Using this function in any other way is effectively circumventing the admin
     * system imposed by {AccessControl}.
     * ====
     */
    function _setupRole(bytes32 role, address account) internal virtual {
        _grantRole(role, account);
    }

    /**
     * @dev Sets `adminRole` as ``role``'s admin role.
     *
     * Emits a {RoleAdminChanged} event.
     */
    function _setRoleAdmin(bytes32 role, bytes32 adminRole) internal virtual {
        emit RoleAdminChanged(role, getRoleAdmin(role), adminRole);
        _roles[role].adminRole = adminRole;
    }

    function _grantRole(bytes32 role, address account) private {
        if (!hasRole(role, account)) {
            _roles[role].members[account] = true;
            emit RoleGranted(role, account, _msgSender());
        }
    }

    function _revokeRole(bytes32 role, address account) private {
        if (hasRole(role, account)) {
            _roles[role].members[account] = false;
            emit RoleRevoked(role, account, _msgSender());
        }
    }
}


// File @openzeppelin/contracts/utils/structs/[email protected]



pragma solidity ^0.8.0;

/**
 * @dev Library for managing
 * https://en.wikipedia.org/wiki/Set_(abstract_data_type)[sets] of primitive
 * types.
 *
 * Sets have the following properties:
 *
 * - Elements are added, removed, and checked for existence in constant time
 * (O(1)).
 * - Elements are enumerated in O(n). No guarantees are made on the ordering.
 *
 * ```
 * contract Example {
 *     // Add the library methods
 *     using EnumerableSet for EnumerableSet.AddressSet;
 *
 *     // Declare a set state variable
 *     EnumerableSet.AddressSet private mySet;
 * }
 * ```
 *
 * As of v3.3.0, sets of type `bytes32` (`Bytes32Set`), `address` (`AddressSet`)
 * and `uint256` (`UintSet`) are supported.
 */
library EnumerableSet {
    // To implement this library for multiple types with as little code
    // repetition as possible, we write it in terms of a generic Set type with
    // bytes32 values.
    // The Set implementation uses private functions, and user-facing
    // implementations (such as AddressSet) are just wrappers around the
    // underlying Set.
    // This means that we can only create new EnumerableSets for types that fit
    // in bytes32.

    struct Set {
        // Storage of set values
        bytes32[] _values;
        // Position of the value in the `values` array, plus 1 because index 0
        // means a value is not in the set.
        mapping(bytes32 => uint256) _indexes;
    }

    /**
     * @dev Add a value to a set. O(1).
     *
     * Returns true if the value was added to the set, that is if it was not
     * already present.
     */
    function _add(Set storage set, bytes32 value) private returns (bool) {
        if (!_contains(set, value)) {
            set._values.push(value);
            // The value is stored at length-1, but we add 1 to all indexes
            // and use 0 as a sentinel value
            set._indexes[value] = set._values.length;
            return true;
        } else {
            return false;
        }
    }

    /**
     * @dev Removes a value from a set. O(1).
     *
     * Returns true if the value was removed from the set, that is if it was
     * present.
     */
    function _remove(Set storage set, bytes32 value) private returns (bool) {
        // We read and store the value's index to prevent multiple reads from the same storage slot
        uint256 valueIndex = set._indexes[value];

        if (valueIndex != 0) {
            // Equivalent to contains(set, value)
            // To delete an element from the _values array in O(1), we swap the element to delete with the last one in
            // the array, and then remove the last element (sometimes called as 'swap and pop').
            // This modifies the order of the array, as noted in {at}.

            uint256 toDeleteIndex = valueIndex - 1;
            uint256 lastIndex = set._values.length - 1;

            if (lastIndex != toDeleteIndex) {
                bytes32 lastvalue = set._values[lastIndex];

                // Move the last value to the index where the value to delete is
                set._values[toDeleteIndex] = lastvalue;
                // Update the index for the moved value
                set._indexes[lastvalue] = valueIndex; // Replace lastvalue's index to valueIndex
            }

            // Delete the slot where the moved value was stored
            set._values.pop();

            // Delete the index for the deleted slot
            delete set._indexes[value];

            return true;
        } else {
            return false;
        }
    }

    /**
     * @dev Returns true if the value is in the set. O(1).
     */
    function _contains(Set storage set, bytes32 value) private view returns (bool) {
        return set._indexes[value] != 0;
    }

    /**
     * @dev Returns the number of values on the set. O(1).
     */
    function _length(Set storage set) private view returns (uint256) {
        return set._values.length;
    }

    /**
     * @dev Returns the value stored at position `index` in the set. O(1).
     *
     * Note that there are no guarantees on the ordering of values inside the
     * array, and it may change when more values are added or removed.
     *
     * Requirements:
     *
     * - `index` must be strictly less than {length}.
     */
    function _at(Set storage set, uint256 index) private view returns (bytes32) {
        return set._values[index];
    }

    // Bytes32Set

    struct Bytes32Set {
        Set _inner;
    }

    /**
     * @dev Add a value to a set. O(1).
     *
     * Returns true if the value was added to the set, that is if it was not
     * already present.
     */
    function add(Bytes32Set storage set, bytes32 value) internal returns (bool) {
        return _add(set._inner, value);
    }

    /**
     * @dev Removes a value from a set. O(1).
     *
     * Returns true if the value was removed from the set, that is if it was
     * present.
     */
    function remove(Bytes32Set storage set, bytes32 value) internal returns (bool) {
        return _remove(set._inner, value);
    }

    /**
     * @dev Returns true if the value is in the set. O(1).
     */
    function contains(Bytes32Set storage set, bytes32 value) internal view returns (bool) {
        return _contains(set._inner, value);
    }

    /**
     * @dev Returns the number of values in the set. O(1).
     */
    function length(Bytes32Set storage set) internal view returns (uint256) {
        return _length(set._inner);
    }

    /**
     * @dev Returns the value stored at position `index` in the set. O(1).
     *
     * Note that there are no guarantees on the ordering of values inside the
     * array, and it may change when more values are added or removed.
     *
     * Requirements:
     *
     * - `index` must be strictly less than {length}.
     */
    function at(Bytes32Set storage set, uint256 index) internal view returns (bytes32) {
        return _at(set._inner, index);
    }

    // AddressSet

    struct AddressSet {
        Set _inner;
    }

    /**
     * @dev Add a value to a set. O(1).
     *
     * Returns true if the value was added to the set, that is if it was not
     * already present.
     */
    function add(AddressSet storage set, address value) internal returns (bool) {
        return _add(set._inner, bytes32(uint256(uint160(value))));
    }

    /**
     * @dev Removes a value from a set. O(1).
     *
     * Returns true if the value was removed from the set, that is if it was
     * present.
     */
    function remove(AddressSet storage set, address value) internal returns (bool) {
        return _remove(set._inner, bytes32(uint256(uint160(value))));
    }

    /**
     * @dev Returns true if the value is in the set. O(1).
     */
    function contains(AddressSet storage set, address value) internal view returns (bool) {
        return _contains(set._inner, bytes32(uint256(uint160(value))));
    }

    /**
     * @dev Returns the number of values in the set. O(1).
     */
    function length(AddressSet storage set) internal view returns (uint256) {
        return _length(set._inner);
    }

    /**
     * @dev Returns the value stored at position `index` in the set. O(1).
     *
     * Note that there are no guarantees on the ordering of values inside the
     * array, and it may change when more values are added or removed.
     *
     * Requirements:
     *
     * - `index` must be strictly less than {length}.
     */
    function at(AddressSet storage set, uint256 index) internal view returns (address) {
        return address(uint160(uint256(_at(set._inner, index))));
    }

    // UintSet

    struct UintSet {
        Set _inner;
    }

    /**
     * @dev Add a value to a set. O(1).
     *
     * Returns true if the value was added to the set, that is if it was not
     * already present.
     */
    function add(UintSet storage set, uint256 value) internal returns (bool) {
        return _add(set._inner, bytes32(value));
    }

    /**
     * @dev Removes a value from a set. O(1).
     *
     * Returns true if the value was removed from the set, that is if it was
     * present.
     */
    function remove(UintSet storage set, uint256 value) internal returns (bool) {
        return _remove(set._inner, bytes32(value));
    }

    /**
     * @dev Returns true if the value is in the set. O(1).
     */
    function contains(UintSet storage set, uint256 value) internal view returns (bool) {
        return _contains(set._inner, bytes32(value));
    }

    /**
     * @dev Returns the number of values on the set. O(1).
     */
    function length(UintSet storage set) internal view returns (uint256) {
        return _length(set._inner);
    }

    /**
     * @dev Returns the value stored at position `index` in the set. O(1).
     *
     * Note that there are no guarantees on the ordering of values inside the
     * array, and it may change when more values are added or removed.
     *
     * Requirements:
     *
     * - `index` must be strictly less than {length}.
     */
    function at(UintSet storage set, uint256 index) internal view returns (uint256) {
        return uint256(_at(set._inner, index));
    }
}


// File @openzeppelin/contracts/access/[email protected]



pragma solidity ^0.8.0;


/**
 * @dev External interface of AccessControlEnumerable declared to support ERC165 detection.
 */
interface IAccessControlEnumerable {
    function getRoleMember(bytes32 role, uint256 index) external view returns (address);

    function getRoleMemberCount(bytes32 role) external view returns (uint256);
}

/**
 * @dev Extension of {AccessControl} that allows enumerating the members of each role.
 */
abstract contract AccessControlEnumerable is IAccessControlEnumerable, AccessControl {
    using EnumerableSet for EnumerableSet.AddressSet;

    mapping(bytes32 => EnumerableSet.AddressSet) private _roleMembers;

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

    /**
     * @dev Returns one of the accounts that have `role`. `index` must be a
     * value between 0 and {getRoleMemberCount}, non-inclusive.
     *
     * Role bearers are not sorted in any particular way, and their ordering may
     * change at any point.
     *
     * WARNING: When using {getRoleMember} and {getRoleMemberCount}, make sure
     * you perform all queries on the same block. See the following
     * https://forum.openzeppelin.com/t/iterating-over-elements-on-enumerableset-in-openzeppelin-contracts/2296[forum post]
     * for more information.
     */
    function getRoleMember(bytes32 role, uint256 index) public view override returns (address) {
        return _roleMembers[role].at(index);
    }

    /**
     * @dev Returns the number of accounts that have `role`. Can be used
     * together with {getRoleMember} to enumerate all bearers of a role.
     */
    function getRoleMemberCount(bytes32 role) public view override returns (uint256) {
        return _roleMembers[role].length();
    }

    /**
     * @dev Overload {grantRole} to track enumerable memberships
     */
    function grantRole(bytes32 role, address account) public virtual override {
        super.grantRole(role, account);
        _roleMembers[role].add(account);
    }

    /**
     * @dev Overload {revokeRole} to track enumerable memberships
     */
    function revokeRole(bytes32 role, address account) public virtual override {
        super.revokeRole(role, account);
        _roleMembers[role].remove(account);
    }

    /**
     * @dev Overload {renounceRole} to track enumerable memberships
     */
    function renounceRole(bytes32 role, address account) public virtual override {
        super.renounceRole(role, account);
        _roleMembers[role].remove(account);
    }

    /**
     * @dev Overload {_setupRole} to track enumerable memberships
     */
    function _setupRole(bytes32 role, address account) internal virtual override {
        super._setupRole(role, account);
        _roleMembers[role].add(account);
    }
}


// File @openzeppelin/contracts/utils/[email protected]



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/token/ERC721/presets/[email protected]



pragma solidity ^0.8.0;







/**
 * @dev {ERC721} token, including:
 *
 *  - ability for holders to burn (destroy) their tokens
 *  - a minter role that allows for token minting (creation)
 *  - a pauser role that allows to stop all token transfers
 *  - token ID and URI autogeneration
 *
 * This contract uses {AccessControl} to lock permissioned functions using the
 * different roles - head to its documentation for details.
 *
 * The account that deploys the contract will be granted the minter and pauser
 * roles, as well as the default admin role, which will let it grant both minter
 * and pauser roles to other accounts.
 */
contract ERC721PresetMinterPauserAutoId is
    Context,
    AccessControlEnumerable,
    ERC721Enumerable,
    ERC721Burnable,
    ERC721Pausable
{
    using Counters for Counters.Counter;

    bytes32 public constant MINTER_ROLE = keccak256("MINTER_ROLE");
    bytes32 public constant PAUSER_ROLE = keccak256("PAUSER_ROLE");

    Counters.Counter private _tokenIdTracker;

    string private _baseTokenURI;

    /**
     * @dev Grants `DEFAULT_ADMIN_ROLE`, `MINTER_ROLE` and `PAUSER_ROLE` to the
     * account that deploys the contract.
     *
     * Token URIs will be autogenerated based on `baseURI` and their token IDs.
     * See {ERC721-tokenURI}.
     */
    constructor(
        string memory name,
        string memory symbol,
        string memory baseTokenURI
    ) ERC721(name, symbol) {
        _baseTokenURI = baseTokenURI;

        _setupRole(DEFAULT_ADMIN_ROLE, _msgSender());

        _setupRole(MINTER_ROLE, _msgSender());
        _setupRole(PAUSER_ROLE, _msgSender());
    }

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

    /**
     * @dev Creates a new token for `to`. Its token ID will be automatically
     * assigned (and available on the emitted {IERC721-Transfer} event), and the token
     * URI autogenerated based on the base URI passed at construction.
     *
     * See {ERC721-_mint}.
     *
     * Requirements:
     *
     * - the caller must have the `MINTER_ROLE`.
     */
    function mint(address to) public virtual {
        require(hasRole(MINTER_ROLE, _msgSender()), "ERC721PresetMinterPauserAutoId: must have minter role to mint");

        // We cannot just use balanceOf to create the new tokenId because tokens
        // can be burned (destroyed), so we need a separate counter.
        _mint(to, _tokenIdTracker.current());
        _tokenIdTracker.increment();
    }

    /**
     * @dev Pauses all token transfers.
     *
     * See {ERC721Pausable} and {Pausable-_pause}.
     *
     * Requirements:
     *
     * - the caller must have the `PAUSER_ROLE`.
     */
    function pause() public virtual {
        require(hasRole(PAUSER_ROLE, _msgSender()), "ERC721PresetMinterPauserAutoId: must have pauser role to pause");
        _pause();
    }

    /**
     * @dev Unpauses all token transfers.
     *
     * See {ERC721Pausable} and {Pausable-_unpause}.
     *
     * Requirements:
     *
     * - the caller must have the `PAUSER_ROLE`.
     */
    function unpause() public virtual {
        require(hasRole(PAUSER_ROLE, _msgSender()), "ERC721PresetMinterPauserAutoId: must have pauser role to unpause");
        _unpause();
    }

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

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


// File @openzeppelin/contracts/token/ERC20/[email protected]



pragma solidity ^0.8.0;

/**
 * @dev Interface of the ERC20 standard as defined in the EIP.
 */
interface IERC20 {
    /**
     * @dev Returns the amount of tokens in existence.
     */
    function totalSupply() external view returns (uint256);

    /**
     * @dev Returns the amount of tokens owned by `account`.
     */
    function balanceOf(address account) external view returns (uint256);

    /**
     * @dev Moves `amount` tokens from the caller's account to `recipient`.
     *
     * Returns a boolean value indicating whether the operation succeeded.
     *
     * Emits a {Transfer} event.
     */
    function transfer(address recipient, uint256 amount) external returns (bool);

    /**
     * @dev Returns the remaining number of tokens that `spender` will be
     * allowed to spend on behalf of `owner` through {transferFrom}. This is
     * zero by default.
     *
     * This value changes when {approve} or {transferFrom} are called.
     */
    function allowance(address owner, address spender) external view returns (uint256);

    /**
     * @dev Sets `amount` as the allowance of `spender` over the caller's tokens.
     *
     * Returns a boolean value indicating whether the operation succeeded.
     *
     * IMPORTANT: Beware that changing an allowance with this method brings the risk
     * that someone may use both the old and the new allowance by unfortunate
     * transaction ordering. One possible solution to mitigate this race
     * condition is to first reduce the spender's allowance to 0 and set the
     * desired value afterwards:
     * https://github.com/ethereum/EIPs/issues/20#issuecomment-263524729
     *
     * Emits an {Approval} event.
     */
    function approve(address spender, uint256 amount) external returns (bool);

    /**
     * @dev Moves `amount` tokens from `sender` to `recipient` using the
     * allowance mechanism. `amount` is then deducted from the caller's
     * allowance.
     *
     * Returns a boolean value indicating whether the operation succeeded.
     *
     * Emits a {Transfer} event.
     */
    function transferFrom(
        address sender,
        address recipient,
        uint256 amount
    ) external returns (bool);

    /**
     * @dev Emitted when `value` tokens are moved from one account (`from`) to
     * another (`to`).
     *
     * Note that `value` may be zero.
     */
    event Transfer(address indexed from, address indexed to, uint256 value);

    /**
     * @dev Emitted when the allowance of a `spender` for an `owner` is set by
     * a call to {approve}. `value` is the new allowance.
     */
    event Approval(address indexed owner, address indexed spender, uint256 value);
}


// File NftGift.sol

pragma solidity ^0.8.6;



contract PPGift is ERC721PresetMinterPauserAutoId{
    
    string private _baseTokenURI;
    
    
    constructor(string memory name, string memory symbol, string memory baseTokenURI)ERC721PresetMinterPauserAutoId(name, symbol, baseTokenURI){
        _baseTokenURI = baseTokenURI;
    }
    
    bool private uriFrozen = false;
    uint private maxPerTx = 10;
    
    modifier onlyAdmin{
        require(hasRole(DEFAULT_ADMIN_ROLE, _msgSender()), "onlyAdmin: Unauthorized");
        _;
    }
    
    modifier onlyAdminOrMinter{
        require(hasRole(DEFAULT_ADMIN_ROLE, _msgSender()) || hasRole(MINTER_ROLE, _msgSender()) , "onlyAdminOrMinter: Unauthorized");
        _;
    }
    
    modifier noContract{
        require(tx.origin==msg.sender, "noContract: Only EOA");
        _;
    }
    
    
    function setBaseURI(string memory newURI) onlyAdmin public {
        require(uriFrozen==false, "setTokenURI: URI has been frozen");
        _baseTokenURI   = newURI;
    }
    
    function _baseURI() internal view override returns (string memory){
        return _baseTokenURI;
    }
    
    function burn(uint tokenId) public virtual override onlyAdminOrMinter {
        //Disables burn
        revert("burn: Burn disabled");
    }
    
    function mint(address to) public virtual override onlyAdminOrMinter{
        //mints gift
        //+1 used to avoid id 0
        _safeMint(to, totalSupply()+1);
    }
    
    function mintMulti(uint count, address to) public onlyAdminOrMinter{
        //mints multiple tokens to 1 address
        for(uint i=0; i<count; i++){
            _safeMint(to, totalSupply()+1);
        }
    }
    
    function mintMultiAddress(address[] memory addressList) public onlyAdminOrMinter{
        //mints 1 token to every input address
        for(uint i=0; i<addressList.length; i++){
            _safeMint(addressList[i], totalSupply()+1);
        }
    }
    
    function withdrawEth() external onlyAdmin{
        require(address(this).balance>0, "Insufficient balance");
        payable(msg.sender).transfer(address(this).balance);
    }
    
    function withdrawToken(IERC20 tokenAddress) external onlyAdmin{
        tokenAddress.transfer(msg.sender, tokenAddress.balanceOf(address(this)));
    }
}

Contract Security Audit

Contract ABI

[{"inputs":[{"internalType":"string","name":"name","type":"string"},{"internalType":"string","name":"symbol","type":"string"},{"internalType":"string","name":"baseTokenURI","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":false,"internalType":"address","name":"account","type":"address"}],"name":"Paused","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"bytes32","name":"role","type":"bytes32"},{"indexed":true,"internalType":"bytes32","name":"previousAdminRole","type":"bytes32"},{"indexed":true,"internalType":"bytes32","name":"newAdminRole","type":"bytes32"}],"name":"RoleAdminChanged","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"bytes32","name":"role","type":"bytes32"},{"indexed":true,"internalType":"address","name":"account","type":"address"},{"indexed":true,"internalType":"address","name":"sender","type":"address"}],"name":"RoleGranted","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"bytes32","name":"role","type":"bytes32"},{"indexed":true,"internalType":"address","name":"account","type":"address"},{"indexed":true,"internalType":"address","name":"sender","type":"address"}],"name":"RoleRevoked","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"account","type":"address"}],"name":"Unpaused","type":"event"},{"inputs":[],"name":"DEFAULT_ADMIN_ROLE","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"MINTER_ROLE","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"PAUSER_ROLE","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"burn","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bytes32","name":"role","type":"bytes32"}],"name":"getRoleAdmin","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bytes32","name":"role","type":"bytes32"},{"internalType":"uint256","name":"index","type":"uint256"}],"name":"getRoleMember","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bytes32","name":"role","type":"bytes32"}],"name":"getRoleMemberCount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bytes32","name":"role","type":"bytes32"},{"internalType":"address","name":"account","type":"address"}],"name":"grantRole","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes32","name":"role","type":"bytes32"},{"internalType":"address","name":"account","type":"address"}],"name":"hasRole","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":[{"internalType":"address","name":"to","type":"address"}],"name":"mint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"count","type":"uint256"},{"internalType":"address","name":"to","type":"address"}],"name":"mintMulti","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address[]","name":"addressList","type":"address[]"}],"name":"mintMultiAddress","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"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":"pause","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"paused","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bytes32","name":"role","type":"bytes32"},{"internalType":"address","name":"account","type":"address"}],"name":"renounceRole","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes32","name":"role","type":"bytes32"},{"internalType":"address","name":"account","type":"address"}],"name":"revokeRole","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"_data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"newURI","type":"string"}],"name":"setBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"index","type":"uint256"}],"name":"tokenByIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"uint256","name":"index","type":"uint256"}],"name":"tokenOfOwnerByIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"unpause","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"withdrawEth","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"contract IERC20","name":"tokenAddress","type":"address"}],"name":"withdrawToken","outputs":[],"stateMutability":"nonpayable","type":"function"}]

60806040526010805460ff19169055600a6011553480156200002057600080fd5b50604051620034cd380380620034cd8339810160408190526200004391620003e2565b828282828281600290805190602001906200006092919062000285565b5080516200007690600390602084019062000285565b5050600c805460ff191690555080516200009890600e90602084019062000285565b50620000a660003362000120565b620000d27f9f2df0fed2c77648de5860a4cc508cd0818c85b8b8a1ab4ceeef8d981c8956a63362000120565b620000fe7f65d7a28e3265b37a6474929f336521b332c1681b933f6cb9f3376673440d862a3362000120565b50508151620001169150600f90602084019062000285565b50505050620004c6565b6200013782826200016360201b620015141760201c565b60008281526001602090815260409091206200015e9183906200151e62000173821b17901c565b505050565b6200016f828262000193565b5050565b60006200018a836001600160a01b03841662000233565b90505b92915050565b6000828152602081815260408083206001600160a01b038516845290915290205460ff166200016f576000828152602081815260408083206001600160a01b03851684529091529020805460ff19166001179055620001ef3390565b6001600160a01b0316816001600160a01b0316837f2f8788117e7eff1d82e926ec794901d17c78024a50270940304540a733656f0d60405160405180910390a45050565b60008181526001830160205260408120546200027c575081546001818101845560008481526020808220909301849055845484825282860190935260409020919091556200018d565b5060006200018d565b828054620002939062000473565b90600052602060002090601f016020900481019282620002b7576000855562000302565b82601f10620002d257805160ff191683800117855562000302565b8280016001018555821562000302579182015b8281111562000302578251825591602001919060010190620002e5565b506200031092915062000314565b5090565b5b8082111562000310576000815560010162000315565b600082601f8301126200033d57600080fd5b81516001600160401b03808211156200035a576200035a620004b0565b604051601f8301601f19908116603f01168101908282118183101715620003855762000385620004b0565b81604052838152602092508683858801011115620003a257600080fd5b600091505b83821015620003c65785820183015181830184015290820190620003a7565b83821115620003d85760008385830101525b9695505050505050565b600080600060608486031215620003f857600080fd5b83516001600160401b03808211156200041057600080fd5b6200041e878388016200032b565b945060208601519150808211156200043557600080fd5b62000443878388016200032b565b935060408601519150808211156200045a57600080fd5b5062000469868287016200032b565b9150509250925092565b600181811c908216806200048857607f821691505b60208210811415620004aa57634e487b7160e01b600052602260045260246000fd5b50919050565b634e487b7160e01b600052604160045260246000fd5b612ff780620004d66000396000f3fe608060405234801561001057600080fd5b506004361061025c5760003560e01c80636a62784211610145578063a217fddf116100bd578063ca15c8731161008c578063d547741f11610071578063d547741f1461050d578063e63ab1e914610520578063e985e9c51461054757600080fd5b8063ca15c873146104d3578063d5391393146104e657600080fd5b8063a217fddf14610492578063a22cb4651461049a578063b88d4fde146104ad578063c87b56dd146104c057600080fd5b80638cc9f5161161011457806391d14854116100f957806391d148541461044b57806395d89b4114610482578063a0ef91df1461048a57600080fd5b80638cc9f516146104255780639010d07c1461043857600080fd5b80636a627842146103e457806370a08231146103f75780638456cb591461040a578063894760691461041257600080fd5b806336568abe116101d857806343c2f45f116101a757806355f804b31161018c57806355f804b3146103b35780635c975abb146103c65780636352211e146103d157600080fd5b806343c2f45f1461038d5780634f6ccce7146103a057600080fd5b806336568abe1461034c5780633f4ba83a1461035f57806342842e0e1461036757806342966c681461037a57600080fd5b806318160ddd1161022f578063248a9ca311610214578063248a9ca3146103035780632f2ff15d146103265780632f745c591461033957600080fd5b806318160ddd146102de57806323b872dd146102f057600080fd5b806301ffc9a71461026157806306fdde0314610289578063081812fc1461029e578063095ea7b3146102c9575b600080fd5b61027461026f366004612c13565b610583565b60405190151581526020015b60405180910390f35b610291610594565b6040516102809190612dc7565b6102b16102ac366004612bb3565b610626565b6040516001600160a01b039091168152602001610280565b6102dc6102d7366004612ab1565b6106c0565b005b600a545b604051908152602001610280565b6102dc6102fe3660046129c2565b6107f2565b6102e2610311366004612bb3565b60009081526020819052604090206001015490565b6102dc610334366004612bcc565b610879565b6102e2610347366004612ab1565b61089b565b6102dc61035a366004612bcc565b610943565b6102dc610965565b6102dc6103753660046129c2565b610a0d565b6102dc610388366004612bb3565b610a28565b6102dc61039b366004612bcc565b610af7565b6102e26103ae366004612bb3565b610bb8565b6102dc6103c1366004612c4d565b610c5c565b600c5460ff16610274565b6102b16103df366004612bb3565b610d1d565b6102dc6103f236600461296c565b610da8565b6102e261040536600461296c565b610e3f565b6102dc610ed9565b6102dc61042036600461296c565b610f7d565b6102dc610433366004612add565b6110ec565b6102b1610446366004612bf1565b6111b7565b610274610459366004612bcc565b6000918252602082815260408084206001600160a01b0393909316845291905290205460ff1690565b6102916111d6565b6102dc6111e5565b6102e2600081565b6102dc6104a8366004612a83565b6112b8565b6102dc6104bb366004612a03565b61137d565b6102916104ce366004612bb3565b61140b565b6102e26104e1366004612bb3565b6114f3565b6102e27f9f2df0fed2c77648de5860a4cc508cd0818c85b8b8a1ab4ceeef8d981c8956a681565b6102dc61051b366004612bcc565b61150a565b6102e27f65d7a28e3265b37a6474929f336521b332c1681b933f6cb9f3376673440d862a81565b610274610555366004612989565b6001600160a01b03918216600090815260076020908152604080832093909416825291909152205460ff1690565b600061058e82611533565b92915050565b6060600280546105a390612eb0565b80601f01602080910402602001604051908101604052809291908181526020018280546105cf90612eb0565b801561061c5780601f106105f15761010080835404028352916020019161061c565b820191906000526020600020905b8154815290600101906020018083116105ff57829003601f168201915b5050505050905090565b6000818152600460205260408120546001600160a01b03166106a45760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b60648201526084015b60405180910390fd5b506000908152600660205260409020546001600160a01b031690565b60006106cb82610d1d565b9050806001600160a01b0316836001600160a01b031614156107555760405162461bcd60e51b815260206004820152602160248201527f4552433732313a20617070726f76616c20746f2063757272656e74206f776e6560448201527f7200000000000000000000000000000000000000000000000000000000000000606482015260840161069b565b336001600160a01b038216148061077157506107718133610555565b6107e35760405162461bcd60e51b815260206004820152603860248201527f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760448201527f6e6572206e6f7220617070726f76656420666f7220616c6c0000000000000000606482015260840161069b565b6107ed8383611571565b505050565b6107fc33826115ec565b61086e5760405162461bcd60e51b815260206004820152603160248201527f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f60448201527f776e6572206e6f7220617070726f766564000000000000000000000000000000606482015260840161069b565b6107ed8383836116e3565b61088382826118c8565b60008281526001602052604090206107ed908261151e565b60006108a683610e3f565b821061091a5760405162461bcd60e51b815260206004820152602b60248201527f455243373231456e756d657261626c653a206f776e657220696e646578206f7560448201527f74206f6620626f756e6473000000000000000000000000000000000000000000606482015260840161069b565b506001600160a01b03919091166000908152600860209081526040808320938352929052205490565b61094d82826118ee565b60008281526001602052604090206107ed9082611976565b61098f7f65d7a28e3265b37a6474929f336521b332c1681b933f6cb9f3376673440d862a33610459565b610a03576040805162461bcd60e51b81526020600482015260248101919091527f4552433732315072657365744d696e7465725061757365724175746f49643a2060448201527f6d75737420686176652070617573657220726f6c6520746f20756e7061757365606482015260840161069b565b610a0b61198b565b565b6107ed8383836040518060200160405280600081525061137d565b610a33600033610459565b80610a635750610a637f9f2df0fed2c77648de5860a4cc508cd0818c85b8b8a1ab4ceeef8d981c8956a633610459565b610aaf5760405162461bcd60e51b815260206004820152601f60248201527f6f6e6c7941646d696e4f724d696e7465723a20556e617574686f72697a656400604482015260640161069b565b60405162461bcd60e51b815260206004820152601360248201527f6275726e3a204275726e2064697361626c656400000000000000000000000000604482015260640161069b565b610b02600033610459565b80610b325750610b327f9f2df0fed2c77648de5860a4cc508cd0818c85b8b8a1ab4ceeef8d981c8956a633610459565b610b7e5760405162461bcd60e51b815260206004820152601f60248201527f6f6e6c7941646d696e4f724d696e7465723a20556e617574686f72697a656400604482015260640161069b565b60005b828110156107ed57610ba682610b96600a5490565b610ba1906001612e0b565b611a27565b80610bb081612eeb565b915050610b81565b6000610bc3600a5490565b8210610c375760405162461bcd60e51b815260206004820152602c60248201527f455243373231456e756d657261626c653a20676c6f62616c20696e646578206f60448201527f7574206f6620626f756e64730000000000000000000000000000000000000000606482015260840161069b565b600a8281548110610c4a57610c4a612f5c565b90600052602060002001549050919050565b610c67600033610459565b610cb35760405162461bcd60e51b815260206004820152601760248201527f6f6e6c7941646d696e3a20556e617574686f72697a6564000000000000000000604482015260640161069b565b60105460ff1615610d065760405162461bcd60e51b815260206004820181905260248201527f736574546f6b656e5552493a2055524920686173206265656e2066726f7a656e604482015260640161069b565b8051610d1990600f90602084019061287b565b5050565b6000818152600460205260408120546001600160a01b03168061058e5760405162461bcd60e51b815260206004820152602960248201527f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460448201527f656e7420746f6b656e0000000000000000000000000000000000000000000000606482015260840161069b565b610db3600033610459565b80610de35750610de37f9f2df0fed2c77648de5860a4cc508cd0818c85b8b8a1ab4ceeef8d981c8956a633610459565b610e2f5760405162461bcd60e51b815260206004820152601f60248201527f6f6e6c7941646d696e4f724d696e7465723a20556e617574686f72697a656400604482015260640161069b565b610e3c81610b96600a5490565b50565b60006001600160a01b038216610ebd5760405162461bcd60e51b815260206004820152602a60248201527f4552433732313a2062616c616e636520717565727920666f7220746865207a6560448201527f726f206164647265737300000000000000000000000000000000000000000000606482015260840161069b565b506001600160a01b031660009081526005602052604090205490565b610f037f65d7a28e3265b37a6474929f336521b332c1681b933f6cb9f3376673440d862a33610459565b610f755760405162461bcd60e51b815260206004820152603e60248201527f4552433732315072657365744d696e7465725061757365724175746f49643a2060448201527f6d75737420686176652070617573657220726f6c6520746f2070617573650000606482015260840161069b565b610a0b611a41565b610f88600033610459565b610fd45760405162461bcd60e51b815260206004820152601760248201527f6f6e6c7941646d696e3a20556e617574686f72697a6564000000000000000000604482015260640161069b565b6040517f70a082310000000000000000000000000000000000000000000000000000000081523060048201526001600160a01b0382169063a9059cbb90339083906370a082319060240160206040518083038186803b15801561103657600080fd5b505afa15801561104a573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061106e9190612c96565b6040516001600160e01b031960e085901b1681526001600160a01b0390921660048301526024820152604401602060405180830381600087803b1580156110b457600080fd5b505af11580156110c8573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610d199190612b96565b6110f7600033610459565b8061112757506111277f9f2df0fed2c77648de5860a4cc508cd0818c85b8b8a1ab4ceeef8d981c8956a633610459565b6111735760405162461bcd60e51b815260206004820152601f60248201527f6f6e6c7941646d696e4f724d696e7465723a20556e617574686f72697a656400604482015260640161069b565b60005b8151811015610d19576111a582828151811061119457611194612f5c565b6020026020010151610b96600a5490565b806111af81612eeb565b915050611176565b60008281526001602052604081206111cf9083611ac9565b9392505050565b6060600380546105a390612eb0565b6111f0600033610459565b61123c5760405162461bcd60e51b815260206004820152601760248201527f6f6e6c7941646d696e3a20556e617574686f72697a6564000000000000000000604482015260640161069b565b6000471161128c5760405162461bcd60e51b815260206004820152601460248201527f496e73756666696369656e742062616c616e6365000000000000000000000000604482015260640161069b565b60405133904780156108fc02916000818181858888f19350505050158015610e3c573d6000803e3d6000fd5b6001600160a01b0382163314156113115760405162461bcd60e51b815260206004820152601960248201527f4552433732313a20617070726f766520746f2063616c6c657200000000000000604482015260640161069b565b3360008181526007602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b61138733836115ec565b6113f95760405162461bcd60e51b815260206004820152603160248201527f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f60448201527f776e6572206e6f7220617070726f766564000000000000000000000000000000606482015260840161069b565b61140584848484611ad5565b50505050565b6000818152600460205260409020546060906001600160a01b03166114985760405162461bcd60e51b815260206004820152602f60248201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60448201527f6e6578697374656e7420746f6b656e0000000000000000000000000000000000606482015260840161069b565b60006114a2611b53565b905060008151116114c257604051806020016040528060008152506111cf565b806114cc84611b62565b6040516020016114dd929190612cdb565b6040516020818303038152906040529392505050565b600081815260016020526040812061058e90611c60565b61094d8282611c6a565b610d198282611c90565b60006111cf836001600160a01b038416611d2e565b60006001600160e01b031982167f780e9d6300000000000000000000000000000000000000000000000000000000148061058e575061058e82611d7d565b6000818152600660205260409020805473ffffffffffffffffffffffffffffffffffffffff19166001600160a01b03841690811790915581906115b382610d1d565b6001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b6000818152600460205260408120546001600160a01b03166116655760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b606482015260840161069b565b600061167083610d1d565b9050806001600160a01b0316846001600160a01b031614806116ab5750836001600160a01b03166116a084610626565b6001600160a01b0316145b806116db57506001600160a01b0380821660009081526007602090815260408083209388168352929052205460ff165b949350505050565b826001600160a01b03166116f682610d1d565b6001600160a01b0316146117725760405162461bcd60e51b815260206004820152602960248201527f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960448201527f73206e6f74206f776e0000000000000000000000000000000000000000000000606482015260840161069b565b6001600160a01b0382166117ed5760405162461bcd60e51b8152602060048201526024808201527f4552433732313a207472616e7366657220746f20746865207a65726f2061646460448201527f7265737300000000000000000000000000000000000000000000000000000000606482015260840161069b565b6117f8838383611def565b611803600082611571565b6001600160a01b038316600090815260056020526040812080546001929061182c908490612e56565b90915550506001600160a01b038216600090815260056020526040812080546001929061185a908490612e0b565b9091555050600081815260046020526040808220805473ffffffffffffffffffffffffffffffffffffffff19166001600160a01b0386811691821790925591518493918716917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef91a4505050565b6000828152602081905260409020600101546118e48133611dfa565b6107ed8383611c90565b6001600160a01b038116331461196c5760405162461bcd60e51b815260206004820152602f60248201527f416363657373436f6e74726f6c3a2063616e206f6e6c792072656e6f756e636560448201527f20726f6c657320666f722073656c660000000000000000000000000000000000606482015260840161069b565b610d198282611e78565b60006111cf836001600160a01b038416611ef7565b600c5460ff166119dd5760405162461bcd60e51b815260206004820152601460248201527f5061757361626c653a206e6f7420706175736564000000000000000000000000604482015260640161069b565b600c805460ff191690557f5db9ee0a495bf2e6ff9c91a7834c1ba4fdd244a5e8aa4e537bd38aeae4b073aa335b6040516001600160a01b03909116815260200160405180910390a1565b610d19828260405180602001604052806000815250611fea565b600c5460ff1615611a945760405162461bcd60e51b815260206004820152601060248201527f5061757361626c653a2070617573656400000000000000000000000000000000604482015260640161069b565b600c805460ff191660011790557f62e78cea01bee320cd4e420270b5ea74000d11b0c9f74754ebdbfc544b05a258611a0a3390565b60006111cf8383612068565b611ae08484846116e3565b611aec84848484612092565b6114055760405162461bcd60e51b815260206004820152603260248201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560448201527131b2b4bb32b91034b6b83632b6b2b73a32b960711b606482015260840161069b565b6060600f80546105a390612eb0565b606081611b865750506040805180820190915260018152600360fc1b602082015290565b8160005b8115611bb05780611b9a81612eeb565b9150611ba99050600a83612e23565b9150611b8a565b60008167ffffffffffffffff811115611bcb57611bcb612f72565b6040519080825280601f01601f191660200182016040528015611bf5576020820181803683370190505b5090505b84156116db57611c0a600183612e56565b9150611c17600a86612f06565b611c22906030612e0b565b60f81b818381518110611c3757611c37612f5c565b60200101906001600160f81b031916908160001a905350611c59600a86612e23565b9450611bf9565b600061058e825490565b600082815260208190526040902060010154611c868133611dfa565b6107ed8383611e78565b6000828152602081815260408083206001600160a01b038516845290915290205460ff16610d19576000828152602081815260408083206001600160a01b03851684529091529020805460ff19166001179055611cea3390565b6001600160a01b0316816001600160a01b0316837f2f8788117e7eff1d82e926ec794901d17c78024a50270940304540a733656f0d60405160405180910390a45050565b6000818152600183016020526040812054611d755750815460018181018455600084815260208082209093018490558454848252828601909352604090209190915561058e565b50600061058e565b60006001600160e01b031982167f80ac58cd000000000000000000000000000000000000000000000000000000001480611de057506001600160e01b031982167f5b5e139f00000000000000000000000000000000000000000000000000000000145b8061058e575061058e826121ea565b6107ed838383612228565b6000828152602081815260408083206001600160a01b038516845290915290205460ff16610d1957611e36816001600160a01b031660146122ac565b611e418360206122ac565b604051602001611e52929190612d0a565b60408051601f198184030181529082905262461bcd60e51b825261069b91600401612dc7565b6000828152602081815260408083206001600160a01b038516845290915290205460ff1615610d19576000828152602081815260408083206001600160a01b0385168085529252808320805460ff1916905551339285917ff6391f5c32d9c69d2a47ea670b442974b53935d1edc7fd64eb21e047a839171b9190a45050565b60008181526001830160205260408120548015611fe0576000611f1b600183612e56565b8554909150600090611f2f90600190612e56565b9050818114611f94576000866000018281548110611f4f57611f4f612f5c565b9060005260206000200154905080876000018481548110611f7257611f72612f5c565b6000918252602080832090910192909255918252600188019052604090208390555b8554869080611fa557611fa5612f46565b60019003818190600052602060002001600090559055856001016000868152602001908152602001600020600090556001935050505061058e565b600091505061058e565b611ff48383612471565b6120016000848484612092565b6107ed5760405162461bcd60e51b815260206004820152603260248201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560448201527131b2b4bb32b91034b6b83632b6b2b73a32b960711b606482015260840161069b565b600082600001828154811061207f5761207f612f5c565b9060005260206000200154905092915050565b60006001600160a01b0384163b156121df57604051630a85bd0160e11b81526001600160a01b0385169063150b7a02906120d6903390899088908890600401612d8b565b602060405180830381600087803b1580156120f057600080fd5b505af1925050508015612120575060408051601f3d908101601f1916820190925261211d91810190612c30565b60015b6121c5573d80801561214e576040519150601f19603f3d011682016040523d82523d6000602084013e612153565b606091505b5080516121bd5760405162461bcd60e51b815260206004820152603260248201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560448201527131b2b4bb32b91034b6b83632b6b2b73a32b960711b606482015260840161069b565b805181602001fd5b6001600160e01b031916630a85bd0160e11b1490506116db565b506001949350505050565b60006001600160e01b031982167f5a05180f00000000000000000000000000000000000000000000000000000000148061058e575061058e826125cc565b612233838383612633565b600c5460ff16156107ed5760405162461bcd60e51b815260206004820152602b60248201527f4552433732315061757361626c653a20746f6b656e207472616e73666572207760448201527f68696c6520706175736564000000000000000000000000000000000000000000606482015260840161069b565b606060006122bb836002612e37565b6122c6906002612e0b565b67ffffffffffffffff8111156122de576122de612f72565b6040519080825280601f01601f191660200182016040528015612308576020820181803683370190505b509050600360fc1b8160008151811061232357612323612f5c565b60200101906001600160f81b031916908160001a9053507f78000000000000000000000000000000000000000000000000000000000000008160018151811061236e5761236e612f5c565b60200101906001600160f81b031916908160001a9053506000612392846002612e37565b61239d906001612e0b565b90505b6001811115612422577f303132333435363738396162636465660000000000000000000000000000000085600f16601081106123de576123de612f5c565b1a60f81b8282815181106123f4576123f4612f5c565b60200101906001600160f81b031916908160001a90535060049490941c9361241b81612e99565b90506123a0565b5083156111cf5760405162461bcd60e51b815260206004820181905260248201527f537472696e67733a20686578206c656e67746820696e73756666696369656e74604482015260640161069b565b6001600160a01b0382166124c75760405162461bcd60e51b815260206004820181905260248201527f4552433732313a206d696e7420746f20746865207a65726f2061646472657373604482015260640161069b565b6000818152600460205260409020546001600160a01b03161561252c5760405162461bcd60e51b815260206004820152601c60248201527f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000604482015260640161069b565b61253860008383611def565b6001600160a01b0382166000908152600560205260408120805460019290612561908490612e0b565b9091555050600081815260046020526040808220805473ffffffffffffffffffffffffffffffffffffffff19166001600160a01b03861690811790915590518392907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a45050565b60006001600160e01b031982167f7965db0b00000000000000000000000000000000000000000000000000000000148061058e57507f01ffc9a7000000000000000000000000000000000000000000000000000000006001600160e01b031983161461058e565b6001600160a01b03831661268e5761268981600a80546000838152600b60205260408120829055600182018355919091527fc65a7bb8d6351c1cf70c95a316cc6a92839c986682d98bc35f958f4883f9d2a80155565b6126b1565b816001600160a01b0316836001600160a01b0316146126b1576126b183826126eb565b6001600160a01b0382166126c8576107ed81612788565b826001600160a01b0316826001600160a01b0316146107ed576107ed8282612837565b600060016126f884610e3f565b6127029190612e56565b600083815260096020526040902054909150808214612755576001600160a01b03841660009081526008602090815260408083208584528252808320548484528184208190558352600990915290208190555b5060009182526009602090815260408084208490556001600160a01b039094168352600881528383209183525290812055565b600a5460009061279a90600190612e56565b6000838152600b6020526040812054600a80549394509092849081106127c2576127c2612f5c565b9060005260206000200154905080600a83815481106127e3576127e3612f5c565b6000918252602080832090910192909255828152600b9091526040808220849055858252812055600a80548061281b5761281b612f46565b6001900381819060005260206000200160009055905550505050565b600061284283610e3f565b6001600160a01b039093166000908152600860209081526040808320868452825280832085905593825260099052919091209190915550565b82805461288790612eb0565b90600052602060002090601f0160209004810192826128a957600085556128ef565b82601f106128c257805160ff19168380011785556128ef565b828001600101855582156128ef579182015b828111156128ef5782518255916020019190600101906128d4565b506128fb9291506128ff565b5090565b5b808211156128fb5760008155600101612900565b600067ffffffffffffffff83111561292e5761292e612f72565b612941601f8401601f1916602001612dda565b905082815283838301111561295557600080fd5b828260208301376000602084830101529392505050565b60006020828403121561297e57600080fd5b81356111cf81612f88565b6000806040838503121561299c57600080fd5b82356129a781612f88565b915060208301356129b781612f88565b809150509250929050565b6000806000606084860312156129d757600080fd5b83356129e281612f88565b925060208401356129f281612f88565b929592945050506040919091013590565b60008060008060808587031215612a1957600080fd5b8435612a2481612f88565b93506020850135612a3481612f88565b925060408501359150606085013567ffffffffffffffff811115612a5757600080fd5b8501601f81018713612a6857600080fd5b612a7787823560208401612914565b91505092959194509250565b60008060408385031215612a9657600080fd5b8235612aa181612f88565b915060208301356129b781612f9d565b60008060408385031215612ac457600080fd5b8235612acf81612f88565b946020939093013593505050565b60006020808385031215612af057600080fd5b823567ffffffffffffffff80821115612b0857600080fd5b818501915085601f830112612b1c57600080fd5b813581811115612b2e57612b2e612f72565b8060051b9150612b3f848301612dda565b8181528481019084860184860187018a1015612b5a57600080fd5b600095505b83861015612b895780359450612b7485612f88565b84835260019590950194918601918601612b5f565b5098975050505050505050565b600060208284031215612ba857600080fd5b81516111cf81612f9d565b600060208284031215612bc557600080fd5b5035919050565b60008060408385031215612bdf57600080fd5b8235915060208301356129b781612f88565b60008060408385031215612c0457600080fd5b50508035926020909101359150565b600060208284031215612c2557600080fd5b81356111cf81612fab565b600060208284031215612c4257600080fd5b81516111cf81612fab565b600060208284031215612c5f57600080fd5b813567ffffffffffffffff811115612c7657600080fd5b8201601f81018413612c8757600080fd5b6116db84823560208401612914565b600060208284031215612ca857600080fd5b5051919050565b60008151808452612cc7816020860160208601612e6d565b601f01601f19169290920160200192915050565b60008351612ced818460208801612e6d565b835190830190612d01818360208801612e6d565b01949350505050565b7f416363657373436f6e74726f6c3a206163636f756e7420000000000000000000815260008351612d42816017850160208801612e6d565b7f206973206d697373696e6720726f6c65200000000000000000000000000000006017918401918201528351612d7f816028840160208801612e6d565b01602801949350505050565b60006001600160a01b03808716835280861660208401525083604083015260806060830152612dbd6080830184612caf565b9695505050505050565b6020815260006111cf6020830184612caf565b604051601f8201601f1916810167ffffffffffffffff81118282101715612e0357612e03612f72565b604052919050565b60008219821115612e1e57612e1e612f1a565b500190565b600082612e3257612e32612f30565b500490565b6000816000190483118215151615612e5157612e51612f1a565b500290565b600082821015612e6857612e68612f1a565b500390565b60005b83811015612e88578181015183820152602001612e70565b838111156114055750506000910152565b600081612ea857612ea8612f1a565b506000190190565b600181811c90821680612ec457607f821691505b60208210811415612ee557634e487b7160e01b600052602260045260246000fd5b50919050565b6000600019821415612eff57612eff612f1a565b5060010190565b600082612f1557612f15612f30565b500690565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052601260045260246000fd5b634e487b7160e01b600052603160045260246000fd5b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b6001600160a01b0381168114610e3c57600080fd5b8015158114610e3c57600080fd5b6001600160e01b031981168114610e3c57600080fdfea264697066735822122017e0a743642339a0b5f71b671602cb1b1d5ea7cfb181a7fc4540866783349b5f64736f6c63430008060033000000000000000000000000000000000000000000000000000000000000006000000000000000000000000000000000000000000000000000000000000000a000000000000000000000000000000000000000000000000000000000000000e0000000000000000000000000000000000000000000000000000000000000000c4249672050502047696674730000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000350504700000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000036697066733a2f2f516d4e77526a6351447069694a32616d735056736e503274325057555563724a53394e4438686e797a70684d47342f00000000000000000000

Deployed Bytecode

0x608060405234801561001057600080fd5b506004361061025c5760003560e01c80636a62784211610145578063a217fddf116100bd578063ca15c8731161008c578063d547741f11610071578063d547741f1461050d578063e63ab1e914610520578063e985e9c51461054757600080fd5b8063ca15c873146104d3578063d5391393146104e657600080fd5b8063a217fddf14610492578063a22cb4651461049a578063b88d4fde146104ad578063c87b56dd146104c057600080fd5b80638cc9f5161161011457806391d14854116100f957806391d148541461044b57806395d89b4114610482578063a0ef91df1461048a57600080fd5b80638cc9f516146104255780639010d07c1461043857600080fd5b80636a627842146103e457806370a08231146103f75780638456cb591461040a578063894760691461041257600080fd5b806336568abe116101d857806343c2f45f116101a757806355f804b31161018c57806355f804b3146103b35780635c975abb146103c65780636352211e146103d157600080fd5b806343c2f45f1461038d5780634f6ccce7146103a057600080fd5b806336568abe1461034c5780633f4ba83a1461035f57806342842e0e1461036757806342966c681461037a57600080fd5b806318160ddd1161022f578063248a9ca311610214578063248a9ca3146103035780632f2ff15d146103265780632f745c591461033957600080fd5b806318160ddd146102de57806323b872dd146102f057600080fd5b806301ffc9a71461026157806306fdde0314610289578063081812fc1461029e578063095ea7b3146102c9575b600080fd5b61027461026f366004612c13565b610583565b60405190151581526020015b60405180910390f35b610291610594565b6040516102809190612dc7565b6102b16102ac366004612bb3565b610626565b6040516001600160a01b039091168152602001610280565b6102dc6102d7366004612ab1565b6106c0565b005b600a545b604051908152602001610280565b6102dc6102fe3660046129c2565b6107f2565b6102e2610311366004612bb3565b60009081526020819052604090206001015490565b6102dc610334366004612bcc565b610879565b6102e2610347366004612ab1565b61089b565b6102dc61035a366004612bcc565b610943565b6102dc610965565b6102dc6103753660046129c2565b610a0d565b6102dc610388366004612bb3565b610a28565b6102dc61039b366004612bcc565b610af7565b6102e26103ae366004612bb3565b610bb8565b6102dc6103c1366004612c4d565b610c5c565b600c5460ff16610274565b6102b16103df366004612bb3565b610d1d565b6102dc6103f236600461296c565b610da8565b6102e261040536600461296c565b610e3f565b6102dc610ed9565b6102dc61042036600461296c565b610f7d565b6102dc610433366004612add565b6110ec565b6102b1610446366004612bf1565b6111b7565b610274610459366004612bcc565b6000918252602082815260408084206001600160a01b0393909316845291905290205460ff1690565b6102916111d6565b6102dc6111e5565b6102e2600081565b6102dc6104a8366004612a83565b6112b8565b6102dc6104bb366004612a03565b61137d565b6102916104ce366004612bb3565b61140b565b6102e26104e1366004612bb3565b6114f3565b6102e27f9f2df0fed2c77648de5860a4cc508cd0818c85b8b8a1ab4ceeef8d981c8956a681565b6102dc61051b366004612bcc565b61150a565b6102e27f65d7a28e3265b37a6474929f336521b332c1681b933f6cb9f3376673440d862a81565b610274610555366004612989565b6001600160a01b03918216600090815260076020908152604080832093909416825291909152205460ff1690565b600061058e82611533565b92915050565b6060600280546105a390612eb0565b80601f01602080910402602001604051908101604052809291908181526020018280546105cf90612eb0565b801561061c5780601f106105f15761010080835404028352916020019161061c565b820191906000526020600020905b8154815290600101906020018083116105ff57829003601f168201915b5050505050905090565b6000818152600460205260408120546001600160a01b03166106a45760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b60648201526084015b60405180910390fd5b506000908152600660205260409020546001600160a01b031690565b60006106cb82610d1d565b9050806001600160a01b0316836001600160a01b031614156107555760405162461bcd60e51b815260206004820152602160248201527f4552433732313a20617070726f76616c20746f2063757272656e74206f776e6560448201527f7200000000000000000000000000000000000000000000000000000000000000606482015260840161069b565b336001600160a01b038216148061077157506107718133610555565b6107e35760405162461bcd60e51b815260206004820152603860248201527f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760448201527f6e6572206e6f7220617070726f76656420666f7220616c6c0000000000000000606482015260840161069b565b6107ed8383611571565b505050565b6107fc33826115ec565b61086e5760405162461bcd60e51b815260206004820152603160248201527f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f60448201527f776e6572206e6f7220617070726f766564000000000000000000000000000000606482015260840161069b565b6107ed8383836116e3565b61088382826118c8565b60008281526001602052604090206107ed908261151e565b60006108a683610e3f565b821061091a5760405162461bcd60e51b815260206004820152602b60248201527f455243373231456e756d657261626c653a206f776e657220696e646578206f7560448201527f74206f6620626f756e6473000000000000000000000000000000000000000000606482015260840161069b565b506001600160a01b03919091166000908152600860209081526040808320938352929052205490565b61094d82826118ee565b60008281526001602052604090206107ed9082611976565b61098f7f65d7a28e3265b37a6474929f336521b332c1681b933f6cb9f3376673440d862a33610459565b610a03576040805162461bcd60e51b81526020600482015260248101919091527f4552433732315072657365744d696e7465725061757365724175746f49643a2060448201527f6d75737420686176652070617573657220726f6c6520746f20756e7061757365606482015260840161069b565b610a0b61198b565b565b6107ed8383836040518060200160405280600081525061137d565b610a33600033610459565b80610a635750610a637f9f2df0fed2c77648de5860a4cc508cd0818c85b8b8a1ab4ceeef8d981c8956a633610459565b610aaf5760405162461bcd60e51b815260206004820152601f60248201527f6f6e6c7941646d696e4f724d696e7465723a20556e617574686f72697a656400604482015260640161069b565b60405162461bcd60e51b815260206004820152601360248201527f6275726e3a204275726e2064697361626c656400000000000000000000000000604482015260640161069b565b610b02600033610459565b80610b325750610b327f9f2df0fed2c77648de5860a4cc508cd0818c85b8b8a1ab4ceeef8d981c8956a633610459565b610b7e5760405162461bcd60e51b815260206004820152601f60248201527f6f6e6c7941646d696e4f724d696e7465723a20556e617574686f72697a656400604482015260640161069b565b60005b828110156107ed57610ba682610b96600a5490565b610ba1906001612e0b565b611a27565b80610bb081612eeb565b915050610b81565b6000610bc3600a5490565b8210610c375760405162461bcd60e51b815260206004820152602c60248201527f455243373231456e756d657261626c653a20676c6f62616c20696e646578206f60448201527f7574206f6620626f756e64730000000000000000000000000000000000000000606482015260840161069b565b600a8281548110610c4a57610c4a612f5c565b90600052602060002001549050919050565b610c67600033610459565b610cb35760405162461bcd60e51b815260206004820152601760248201527f6f6e6c7941646d696e3a20556e617574686f72697a6564000000000000000000604482015260640161069b565b60105460ff1615610d065760405162461bcd60e51b815260206004820181905260248201527f736574546f6b656e5552493a2055524920686173206265656e2066726f7a656e604482015260640161069b565b8051610d1990600f90602084019061287b565b5050565b6000818152600460205260408120546001600160a01b03168061058e5760405162461bcd60e51b815260206004820152602960248201527f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460448201527f656e7420746f6b656e0000000000000000000000000000000000000000000000606482015260840161069b565b610db3600033610459565b80610de35750610de37f9f2df0fed2c77648de5860a4cc508cd0818c85b8b8a1ab4ceeef8d981c8956a633610459565b610e2f5760405162461bcd60e51b815260206004820152601f60248201527f6f6e6c7941646d696e4f724d696e7465723a20556e617574686f72697a656400604482015260640161069b565b610e3c81610b96600a5490565b50565b60006001600160a01b038216610ebd5760405162461bcd60e51b815260206004820152602a60248201527f4552433732313a2062616c616e636520717565727920666f7220746865207a6560448201527f726f206164647265737300000000000000000000000000000000000000000000606482015260840161069b565b506001600160a01b031660009081526005602052604090205490565b610f037f65d7a28e3265b37a6474929f336521b332c1681b933f6cb9f3376673440d862a33610459565b610f755760405162461bcd60e51b815260206004820152603e60248201527f4552433732315072657365744d696e7465725061757365724175746f49643a2060448201527f6d75737420686176652070617573657220726f6c6520746f2070617573650000606482015260840161069b565b610a0b611a41565b610f88600033610459565b610fd45760405162461bcd60e51b815260206004820152601760248201527f6f6e6c7941646d696e3a20556e617574686f72697a6564000000000000000000604482015260640161069b565b6040517f70a082310000000000000000000000000000000000000000000000000000000081523060048201526001600160a01b0382169063a9059cbb90339083906370a082319060240160206040518083038186803b15801561103657600080fd5b505afa15801561104a573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061106e9190612c96565b6040516001600160e01b031960e085901b1681526001600160a01b0390921660048301526024820152604401602060405180830381600087803b1580156110b457600080fd5b505af11580156110c8573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610d199190612b96565b6110f7600033610459565b8061112757506111277f9f2df0fed2c77648de5860a4cc508cd0818c85b8b8a1ab4ceeef8d981c8956a633610459565b6111735760405162461bcd60e51b815260206004820152601f60248201527f6f6e6c7941646d696e4f724d696e7465723a20556e617574686f72697a656400604482015260640161069b565b60005b8151811015610d19576111a582828151811061119457611194612f5c565b6020026020010151610b96600a5490565b806111af81612eeb565b915050611176565b60008281526001602052604081206111cf9083611ac9565b9392505050565b6060600380546105a390612eb0565b6111f0600033610459565b61123c5760405162461bcd60e51b815260206004820152601760248201527f6f6e6c7941646d696e3a20556e617574686f72697a6564000000000000000000604482015260640161069b565b6000471161128c5760405162461bcd60e51b815260206004820152601460248201527f496e73756666696369656e742062616c616e6365000000000000000000000000604482015260640161069b565b60405133904780156108fc02916000818181858888f19350505050158015610e3c573d6000803e3d6000fd5b6001600160a01b0382163314156113115760405162461bcd60e51b815260206004820152601960248201527f4552433732313a20617070726f766520746f2063616c6c657200000000000000604482015260640161069b565b3360008181526007602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b61138733836115ec565b6113f95760405162461bcd60e51b815260206004820152603160248201527f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f60448201527f776e6572206e6f7220617070726f766564000000000000000000000000000000606482015260840161069b565b61140584848484611ad5565b50505050565b6000818152600460205260409020546060906001600160a01b03166114985760405162461bcd60e51b815260206004820152602f60248201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60448201527f6e6578697374656e7420746f6b656e0000000000000000000000000000000000606482015260840161069b565b60006114a2611b53565b905060008151116114c257604051806020016040528060008152506111cf565b806114cc84611b62565b6040516020016114dd929190612cdb565b6040516020818303038152906040529392505050565b600081815260016020526040812061058e90611c60565b61094d8282611c6a565b610d198282611c90565b60006111cf836001600160a01b038416611d2e565b60006001600160e01b031982167f780e9d6300000000000000000000000000000000000000000000000000000000148061058e575061058e82611d7d565b6000818152600660205260409020805473ffffffffffffffffffffffffffffffffffffffff19166001600160a01b03841690811790915581906115b382610d1d565b6001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b6000818152600460205260408120546001600160a01b03166116655760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b606482015260840161069b565b600061167083610d1d565b9050806001600160a01b0316846001600160a01b031614806116ab5750836001600160a01b03166116a084610626565b6001600160a01b0316145b806116db57506001600160a01b0380821660009081526007602090815260408083209388168352929052205460ff165b949350505050565b826001600160a01b03166116f682610d1d565b6001600160a01b0316146117725760405162461bcd60e51b815260206004820152602960248201527f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960448201527f73206e6f74206f776e0000000000000000000000000000000000000000000000606482015260840161069b565b6001600160a01b0382166117ed5760405162461bcd60e51b8152602060048201526024808201527f4552433732313a207472616e7366657220746f20746865207a65726f2061646460448201527f7265737300000000000000000000000000000000000000000000000000000000606482015260840161069b565b6117f8838383611def565b611803600082611571565b6001600160a01b038316600090815260056020526040812080546001929061182c908490612e56565b90915550506001600160a01b038216600090815260056020526040812080546001929061185a908490612e0b565b9091555050600081815260046020526040808220805473ffffffffffffffffffffffffffffffffffffffff19166001600160a01b0386811691821790925591518493918716917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef91a4505050565b6000828152602081905260409020600101546118e48133611dfa565b6107ed8383611c90565b6001600160a01b038116331461196c5760405162461bcd60e51b815260206004820152602f60248201527f416363657373436f6e74726f6c3a2063616e206f6e6c792072656e6f756e636560448201527f20726f6c657320666f722073656c660000000000000000000000000000000000606482015260840161069b565b610d198282611e78565b60006111cf836001600160a01b038416611ef7565b600c5460ff166119dd5760405162461bcd60e51b815260206004820152601460248201527f5061757361626c653a206e6f7420706175736564000000000000000000000000604482015260640161069b565b600c805460ff191690557f5db9ee0a495bf2e6ff9c91a7834c1ba4fdd244a5e8aa4e537bd38aeae4b073aa335b6040516001600160a01b03909116815260200160405180910390a1565b610d19828260405180602001604052806000815250611fea565b600c5460ff1615611a945760405162461bcd60e51b815260206004820152601060248201527f5061757361626c653a2070617573656400000000000000000000000000000000604482015260640161069b565b600c805460ff191660011790557f62e78cea01bee320cd4e420270b5ea74000d11b0c9f74754ebdbfc544b05a258611a0a3390565b60006111cf8383612068565b611ae08484846116e3565b611aec84848484612092565b6114055760405162461bcd60e51b815260206004820152603260248201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560448201527131b2b4bb32b91034b6b83632b6b2b73a32b960711b606482015260840161069b565b6060600f80546105a390612eb0565b606081611b865750506040805180820190915260018152600360fc1b602082015290565b8160005b8115611bb05780611b9a81612eeb565b9150611ba99050600a83612e23565b9150611b8a565b60008167ffffffffffffffff811115611bcb57611bcb612f72565b6040519080825280601f01601f191660200182016040528015611bf5576020820181803683370190505b5090505b84156116db57611c0a600183612e56565b9150611c17600a86612f06565b611c22906030612e0b565b60f81b818381518110611c3757611c37612f5c565b60200101906001600160f81b031916908160001a905350611c59600a86612e23565b9450611bf9565b600061058e825490565b600082815260208190526040902060010154611c868133611dfa565b6107ed8383611e78565b6000828152602081815260408083206001600160a01b038516845290915290205460ff16610d19576000828152602081815260408083206001600160a01b03851684529091529020805460ff19166001179055611cea3390565b6001600160a01b0316816001600160a01b0316837f2f8788117e7eff1d82e926ec794901d17c78024a50270940304540a733656f0d60405160405180910390a45050565b6000818152600183016020526040812054611d755750815460018181018455600084815260208082209093018490558454848252828601909352604090209190915561058e565b50600061058e565b60006001600160e01b031982167f80ac58cd000000000000000000000000000000000000000000000000000000001480611de057506001600160e01b031982167f5b5e139f00000000000000000000000000000000000000000000000000000000145b8061058e575061058e826121ea565b6107ed838383612228565b6000828152602081815260408083206001600160a01b038516845290915290205460ff16610d1957611e36816001600160a01b031660146122ac565b611e418360206122ac565b604051602001611e52929190612d0a565b60408051601f198184030181529082905262461bcd60e51b825261069b91600401612dc7565b6000828152602081815260408083206001600160a01b038516845290915290205460ff1615610d19576000828152602081815260408083206001600160a01b0385168085529252808320805460ff1916905551339285917ff6391f5c32d9c69d2a47ea670b442974b53935d1edc7fd64eb21e047a839171b9190a45050565b60008181526001830160205260408120548015611fe0576000611f1b600183612e56565b8554909150600090611f2f90600190612e56565b9050818114611f94576000866000018281548110611f4f57611f4f612f5c565b9060005260206000200154905080876000018481548110611f7257611f72612f5c565b6000918252602080832090910192909255918252600188019052604090208390555b8554869080611fa557611fa5612f46565b60019003818190600052602060002001600090559055856001016000868152602001908152602001600020600090556001935050505061058e565b600091505061058e565b611ff48383612471565b6120016000848484612092565b6107ed5760405162461bcd60e51b815260206004820152603260248201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560448201527131b2b4bb32b91034b6b83632b6b2b73a32b960711b606482015260840161069b565b600082600001828154811061207f5761207f612f5c565b9060005260206000200154905092915050565b60006001600160a01b0384163b156121df57604051630a85bd0160e11b81526001600160a01b0385169063150b7a02906120d6903390899088908890600401612d8b565b602060405180830381600087803b1580156120f057600080fd5b505af1925050508015612120575060408051601f3d908101601f1916820190925261211d91810190612c30565b60015b6121c5573d80801561214e576040519150601f19603f3d011682016040523d82523d6000602084013e612153565b606091505b5080516121bd5760405162461bcd60e51b815260206004820152603260248201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560448201527131b2b4bb32b91034b6b83632b6b2b73a32b960711b606482015260840161069b565b805181602001fd5b6001600160e01b031916630a85bd0160e11b1490506116db565b506001949350505050565b60006001600160e01b031982167f5a05180f00000000000000000000000000000000000000000000000000000000148061058e575061058e826125cc565b612233838383612633565b600c5460ff16156107ed5760405162461bcd60e51b815260206004820152602b60248201527f4552433732315061757361626c653a20746f6b656e207472616e73666572207760448201527f68696c6520706175736564000000000000000000000000000000000000000000606482015260840161069b565b606060006122bb836002612e37565b6122c6906002612e0b565b67ffffffffffffffff8111156122de576122de612f72565b6040519080825280601f01601f191660200182016040528015612308576020820181803683370190505b509050600360fc1b8160008151811061232357612323612f5c565b60200101906001600160f81b031916908160001a9053507f78000000000000000000000000000000000000000000000000000000000000008160018151811061236e5761236e612f5c565b60200101906001600160f81b031916908160001a9053506000612392846002612e37565b61239d906001612e0b565b90505b6001811115612422577f303132333435363738396162636465660000000000000000000000000000000085600f16601081106123de576123de612f5c565b1a60f81b8282815181106123f4576123f4612f5c565b60200101906001600160f81b031916908160001a90535060049490941c9361241b81612e99565b90506123a0565b5083156111cf5760405162461bcd60e51b815260206004820181905260248201527f537472696e67733a20686578206c656e67746820696e73756666696369656e74604482015260640161069b565b6001600160a01b0382166124c75760405162461bcd60e51b815260206004820181905260248201527f4552433732313a206d696e7420746f20746865207a65726f2061646472657373604482015260640161069b565b6000818152600460205260409020546001600160a01b03161561252c5760405162461bcd60e51b815260206004820152601c60248201527f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000604482015260640161069b565b61253860008383611def565b6001600160a01b0382166000908152600560205260408120805460019290612561908490612e0b565b9091555050600081815260046020526040808220805473ffffffffffffffffffffffffffffffffffffffff19166001600160a01b03861690811790915590518392907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a45050565b60006001600160e01b031982167f7965db0b00000000000000000000000000000000000000000000000000000000148061058e57507f01ffc9a7000000000000000000000000000000000000000000000000000000006001600160e01b031983161461058e565b6001600160a01b03831661268e5761268981600a80546000838152600b60205260408120829055600182018355919091527fc65a7bb8d6351c1cf70c95a316cc6a92839c986682d98bc35f958f4883f9d2a80155565b6126b1565b816001600160a01b0316836001600160a01b0316146126b1576126b183826126eb565b6001600160a01b0382166126c8576107ed81612788565b826001600160a01b0316826001600160a01b0316146107ed576107ed8282612837565b600060016126f884610e3f565b6127029190612e56565b600083815260096020526040902054909150808214612755576001600160a01b03841660009081526008602090815260408083208584528252808320548484528184208190558352600990915290208190555b5060009182526009602090815260408084208490556001600160a01b039094168352600881528383209183525290812055565b600a5460009061279a90600190612e56565b6000838152600b6020526040812054600a80549394509092849081106127c2576127c2612f5c565b9060005260206000200154905080600a83815481106127e3576127e3612f5c565b6000918252602080832090910192909255828152600b9091526040808220849055858252812055600a80548061281b5761281b612f46565b6001900381819060005260206000200160009055905550505050565b600061284283610e3f565b6001600160a01b039093166000908152600860209081526040808320868452825280832085905593825260099052919091209190915550565b82805461288790612eb0565b90600052602060002090601f0160209004810192826128a957600085556128ef565b82601f106128c257805160ff19168380011785556128ef565b828001600101855582156128ef579182015b828111156128ef5782518255916020019190600101906128d4565b506128fb9291506128ff565b5090565b5b808211156128fb5760008155600101612900565b600067ffffffffffffffff83111561292e5761292e612f72565b612941601f8401601f1916602001612dda565b905082815283838301111561295557600080fd5b828260208301376000602084830101529392505050565b60006020828403121561297e57600080fd5b81356111cf81612f88565b6000806040838503121561299c57600080fd5b82356129a781612f88565b915060208301356129b781612f88565b809150509250929050565b6000806000606084860312156129d757600080fd5b83356129e281612f88565b925060208401356129f281612f88565b929592945050506040919091013590565b60008060008060808587031215612a1957600080fd5b8435612a2481612f88565b93506020850135612a3481612f88565b925060408501359150606085013567ffffffffffffffff811115612a5757600080fd5b8501601f81018713612a6857600080fd5b612a7787823560208401612914565b91505092959194509250565b60008060408385031215612a9657600080fd5b8235612aa181612f88565b915060208301356129b781612f9d565b60008060408385031215612ac457600080fd5b8235612acf81612f88565b946020939093013593505050565b60006020808385031215612af057600080fd5b823567ffffffffffffffff80821115612b0857600080fd5b818501915085601f830112612b1c57600080fd5b813581811115612b2e57612b2e612f72565b8060051b9150612b3f848301612dda565b8181528481019084860184860187018a1015612b5a57600080fd5b600095505b83861015612b895780359450612b7485612f88565b84835260019590950194918601918601612b5f565b5098975050505050505050565b600060208284031215612ba857600080fd5b81516111cf81612f9d565b600060208284031215612bc557600080fd5b5035919050565b60008060408385031215612bdf57600080fd5b8235915060208301356129b781612f88565b60008060408385031215612c0457600080fd5b50508035926020909101359150565b600060208284031215612c2557600080fd5b81356111cf81612fab565b600060208284031215612c4257600080fd5b81516111cf81612fab565b600060208284031215612c5f57600080fd5b813567ffffffffffffffff811115612c7657600080fd5b8201601f81018413612c8757600080fd5b6116db84823560208401612914565b600060208284031215612ca857600080fd5b5051919050565b60008151808452612cc7816020860160208601612e6d565b601f01601f19169290920160200192915050565b60008351612ced818460208801612e6d565b835190830190612d01818360208801612e6d565b01949350505050565b7f416363657373436f6e74726f6c3a206163636f756e7420000000000000000000815260008351612d42816017850160208801612e6d565b7f206973206d697373696e6720726f6c65200000000000000000000000000000006017918401918201528351612d7f816028840160208801612e6d565b01602801949350505050565b60006001600160a01b03808716835280861660208401525083604083015260806060830152612dbd6080830184612caf565b9695505050505050565b6020815260006111cf6020830184612caf565b604051601f8201601f1916810167ffffffffffffffff81118282101715612e0357612e03612f72565b604052919050565b60008219821115612e1e57612e1e612f1a565b500190565b600082612e3257612e32612f30565b500490565b6000816000190483118215151615612e5157612e51612f1a565b500290565b600082821015612e6857612e68612f1a565b500390565b60005b83811015612e88578181015183820152602001612e70565b838111156114055750506000910152565b600081612ea857612ea8612f1a565b506000190190565b600181811c90821680612ec457607f821691505b60208210811415612ee557634e487b7160e01b600052602260045260246000fd5b50919050565b6000600019821415612eff57612eff612f1a565b5060010190565b600082612f1557612f15612f30565b500690565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052601260045260246000fd5b634e487b7160e01b600052603160045260246000fd5b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b6001600160a01b0381168114610e3c57600080fd5b8015158114610e3c57600080fd5b6001600160e01b031981168114610e3c57600080fdfea264697066735822122017e0a743642339a0b5f71b671602cb1b1d5ea7cfb181a7fc4540866783349b5f64736f6c63430008060033

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

000000000000000000000000000000000000000000000000000000000000006000000000000000000000000000000000000000000000000000000000000000a000000000000000000000000000000000000000000000000000000000000000e0000000000000000000000000000000000000000000000000000000000000000c4249672050502047696674730000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000350504700000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000036697066733a2f2f516d4e77526a6351447069694a32616d735056736e503274325057555563724a53394e4438686e797a70684d47342f00000000000000000000

-----Decoded View---------------
Arg [0] : name (string): BIg PP Gifts
Arg [1] : symbol (string): PPG
Arg [2] : baseTokenURI (string): ipfs://QmNwRjcQDpiiJ2amsPVsnP2t2PWUUcrJS9ND8hnyzphMG4/

-----Encoded View---------------
10 Constructor Arguments found :
Arg [0] : 0000000000000000000000000000000000000000000000000000000000000060
Arg [1] : 00000000000000000000000000000000000000000000000000000000000000a0
Arg [2] : 00000000000000000000000000000000000000000000000000000000000000e0
Arg [3] : 000000000000000000000000000000000000000000000000000000000000000c
Arg [4] : 4249672050502047696674730000000000000000000000000000000000000000
Arg [5] : 0000000000000000000000000000000000000000000000000000000000000003
Arg [6] : 5050470000000000000000000000000000000000000000000000000000000000
Arg [7] : 0000000000000000000000000000000000000000000000000000000000000036
Arg [8] : 697066733a2f2f516d4e77526a6351447069694a32616d735056736e50327432
Arg [9] : 5057555563724a53394e4438686e797a70684d47342f00000000000000000000


Deployed Bytecode Sourcemap

74446:2317:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;71284:254;;;;;;:::i;:::-;;:::i;:::-;;;9744:14:1;;9737:22;9719:41;;9707:2;9692:18;71284:254:0;;;;;;;;21529:100;;;:::i;:::-;;;;;;;:::i;23088:221::-;;;;;;:::i;:::-;;:::i;:::-;;;-1:-1:-1;;;;;8694:55:1;;;8676:74;;8664:2;8649:18;23088:221:0;8631:125:1;22611:411:0;;;;;;:::i;:::-;;:::i;:::-;;35284:113;35372:10;:17;35284:113;;;9917:25:1;;;9905:2;9890:18;35284:113:0;9872:76:1;23978:339:0;;;;;;:::i;:::-;;:::i;50193:123::-;;;;;;:::i;:::-;50259:7;50286:12;;;;;;;;;;:22;;;;50193:123;65072:165;;;;;;:::i;:::-;;:::i;34952:256::-;;;;;;:::i;:::-;;:::i;65595:174::-;;;;;;:::i;:::-;;:::i;70780:185::-;;;:::i;24388:::-;;;;;;:::i;:::-;;:::i;75585:143::-;;;;;;:::i;:::-;;:::i;75923:215::-;;;;;;:::i;:::-;;:::i;35474:233::-;;;;;;:::i;:::-;;:::i;75282:174::-;;;;;;:::i;:::-;;:::i;42587:86::-;42658:7;;;;42587:86;;21223:239;;;;;;:::i;:::-;;:::i;75740:171::-;;;;;;:::i;:::-;;:::i;20953:208::-;;;;;;:::i;:::-;;:::i;70382:179::-;;;:::i;76607:153::-;;;;;;:::i;:::-;;:::i;76150:255::-;;;;;;:::i;:::-;;:::i;64527:145::-;;;;;;:::i;:::-;;:::i;49078:139::-;;;;;;:::i;:::-;49156:4;49180:12;;;;;;;;;;;-1:-1:-1;;;;;49180:29:0;;;;;;;;;;;;;;;49078:139;21698:104;;;:::i;76417:178::-;;;:::i;47056:49::-;;47101:4;47056:49;;23381:295;;;;;;:::i;:::-;;:::i;24644:328::-;;;;;;:::i;:::-;;:::i;21873:334::-;;;;;;:::i;:::-;;:::i;64846:134::-;;;;;;:::i;:::-;;:::i;68423:62::-;;68461:24;68423:62;;65330:170;;;;;;:::i;:::-;;:::i;68492:62::-;;68530:24;68492:62;;23747:164;;;;;;:::i;:::-;-1:-1:-1;;;;;23868:25:0;;;23844:4;23868:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;;;;23747:164;71284:254;71465:4;71494:36;71518:11;71494:23;:36::i;:::-;71487:43;71284:254;-1:-1:-1;;71284:254:0:o;21529:100::-;21583:13;21616:5;21609:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;21529:100;:::o;23088:221::-;23164:7;26571:16;;;:7;:16;;;;;;-1:-1:-1;;;;;26571:16:0;23184:73;;;;-1:-1:-1;;;23184:73:0;;17653:2:1;23184:73:0;;;17635:21:1;17692:2;17672:18;;;17665:30;17731:34;17711:18;;;17704:62;-1:-1:-1;;;17782:18:1;;;17775:42;17834:19;;23184:73:0;;;;;;;;;-1:-1:-1;23277:24:0;;;;:15;:24;;;;;;-1:-1:-1;;;;;23277:24:0;;23088:221::o;22611:411::-;22692:13;22708:23;22723:7;22708:14;:23::i;:::-;22692:39;;22756:5;-1:-1:-1;;;;;22750:11:0;:2;-1:-1:-1;;;;;22750:11:0;;;22742:57;;;;-1:-1:-1;;;22742:57:0;;18892:2:1;22742:57:0;;;18874:21:1;18931:2;18911:18;;;18904:30;18970:34;18950:18;;;18943:62;19041:3;19021:18;;;19014:31;19062:19;;22742:57:0;18864:223:1;22742:57:0;16066:10;-1:-1:-1;;;;;22834:21:0;;;;:62;;-1:-1:-1;22859:37:0;22876:5;16066:10;23747:164;:::i;22859:37::-;22812:168;;;;-1:-1:-1;;;22812:168:0;;15686:2:1;22812:168:0;;;15668:21:1;15725:2;15705:18;;;15698:30;15764:34;15744:18;;;15737:62;15835:26;15815:18;;;15808:54;15879:19;;22812:168:0;15658:246:1;22812:168:0;22993:21;23002:2;23006:7;22993:8;:21::i;:::-;22681:341;22611:411;;:::o;23978:339::-;24173:41;16066:10;24206:7;24173:18;:41::i;:::-;24165:103;;;;-1:-1:-1;;;24165:103:0;;19294:2:1;24165:103:0;;;19276:21:1;19333:2;19313:18;;;19306:30;19372:34;19352:18;;;19345:62;19443:19;19423:18;;;19416:47;19480:19;;24165:103:0;19266:239:1;24165:103:0;24281:28;24291:4;24297:2;24301:7;24281:9;:28::i;65072:165::-;65157:30;65173:4;65179:7;65157:15;:30::i;:::-;65198:18;;;;:12;:18;;;;;:31;;65221:7;65198:22;:31::i;34952:256::-;35049:7;35085:23;35102:5;35085:16;:23::i;:::-;35077:5;:31;35069:87;;;;-1:-1:-1;;;35069:87:0;;11501:2:1;35069:87:0;;;11483:21:1;11540:2;11520:18;;;11513:30;11579:34;11559:18;;;11552:62;11650:13;11630:18;;;11623:41;11681:19;;35069:87:0;11473:233:1;35069:87:0;-1:-1:-1;;;;;;35174:19:0;;;;;;;;:12;:19;;;;;;;;:26;;;;;;;;;34952:256::o;65595:174::-;65683:33;65702:4;65708:7;65683:18;:33::i;:::-;65727:18;;;;:12;:18;;;;;:34;;65753:7;65727:25;:34::i;70780:185::-;70833:34;68530:24;16066:10;49078:139;:::i;70833:34::-;70825:111;;;;;-1:-1:-1;;;70825:111:0;;20125:2:1;70825:111:0;;;20107:21:1;20144:18;;;20137:30;;;;20203:34;20183:18;;;20176:62;20274:34;20254:18;;;20247:62;20326:19;;70825:111:0;20097:254:1;70825:111:0;70947:10;:8;:10::i;:::-;70780:185::o;24388:::-;24526:39;24543:4;24549:2;24553:7;24526:39;;;;;;;;;;;;:16;:39::i;75585:143::-;75012:41;47101:4;16066:10;49078:139;:::i;75012:41::-;:79;;;-1:-1:-1;75057:34:0;68461:24;16066:10;49078:139;:::i;75057:34::-;75004:124;;;;-1:-1:-1;;;75004:124:0;;17293:2:1;75004:124:0;;;17275:21:1;17332:2;17312:18;;;17305:30;17371:33;17351:18;;;17344:61;17422:18;;75004:124:0;17265:181:1;75004:124:0;75691:29:::1;::::0;-1:-1:-1;;;75691:29:0;;13041:2:1;75691:29:0::1;::::0;::::1;13023:21:1::0;13080:2;13060:18;;;13053:30;13119:21;13099:18;;;13092:49;13158:18;;75691:29:0::1;13013:169:1::0;75923:215:0;75012:41;47101:4;16066:10;49078:139;:::i;75012:41::-;:79;;;-1:-1:-1;75057:34:0;68461:24;16066:10;49078:139;:::i;75057:34::-;75004:124;;;;-1:-1:-1;;;75004:124:0;;17293:2:1;75004:124:0;;;17275:21:1;17332:2;17312:18;;;17305:30;17371:33;17351:18;;;17344:61;17422:18;;75004:124:0;17265:181:1;75004:124:0;76051:6:::1;76047:84;76063:5;76061:1;:7;76047:84;;;76089:30;76099:2;76103:13;35372:10:::0;:17;;35284:113;76103:13:::1;:15;::::0;76117:1:::1;76103:15;:::i;:::-;76089:9;:30::i;:::-;76070:3:::0;::::1;::::0;::::1;:::i;:::-;;;;76047:84;;35474:233:::0;35549:7;35585:30;35372:10;:17;;35284:113;35585:30;35577:5;:38;35569:95;;;;-1:-1:-1;;;35569:95:0;;19712:2:1;35569:95:0;;;19694:21:1;19751:2;19731:18;;;19724:30;19790:34;19770:18;;;19763:62;19861:14;19841:18;;;19834:42;19893:19;;35569:95:0;19684:234:1;35569:95:0;35682:10;35693:5;35682:17;;;;;;;;:::i;:::-;;;;;;;;;35675:24;;35474:233;;;:::o;75282:174::-;74866:41;47101:4;16066:10;49078:139;:::i;74866:41::-;74858:77;;;;-1:-1:-1;;;74858:77:0;;12689:2:1;74858:77:0;;;12671:21:1;12728:2;12708:18;;;12701:30;12767:25;12747:18;;;12740:53;12810:18;;74858:77:0;12661:173:1;74858:77:0;75360:9:::1;::::0;::::1;;:16;75352:61;;;::::0;-1:-1:-1;;;75352:61:0;;20558:2:1;75352:61:0::1;::::0;::::1;20540:21:1::0;;;20577:18;;;20570:30;20636:34;20616:18;;;20609:62;20688:18;;75352:61:0::1;20530:182:1::0;75352:61:0::1;75424:24:::0;;::::1;::::0;:13:::1;::::0;:24:::1;::::0;::::1;::::0;::::1;:::i;:::-;;75282:174:::0;:::o;21223:239::-;21295:7;21331:16;;;:7;:16;;;;;;-1:-1:-1;;;;;21331:16:0;21366:19;21358:73;;;;-1:-1:-1;;;21358:73:0;;16522:2:1;21358:73:0;;;16504:21:1;16561:2;16541:18;;;16534:30;16600:34;16580:18;;;16573:62;16671:11;16651:18;;;16644:39;16700:19;;21358:73:0;16494:231:1;75740:171:0;75012:41;47101:4;16066:10;49078:139;:::i;75012:41::-;:79;;;-1:-1:-1;75057:34:0;68461:24;16066:10;49078:139;:::i;75057:34::-;75004:124;;;;-1:-1:-1;;;75004:124:0;;17293:2:1;75004:124:0;;;17275:21:1;17332:2;17312:18;;;17305:30;17371:33;17351:18;;;17344:61;17422:18;;75004:124:0;17265:181:1;75004:124:0;75873:30:::1;75883:2;75887:13;35372:10:::0;:17;;35284:113;75873:30:::1;75740:171:::0;:::o;20953:208::-;21025:7;-1:-1:-1;;;;;21053:19:0;;21045:74;;;;-1:-1:-1;;;21045:74:0;;16111:2:1;21045:74:0;;;16093:21:1;16150:2;16130:18;;;16123:30;16189:34;16169:18;;;16162:62;16260:12;16240:18;;;16233:40;16290:19;;21045:74:0;16083:232:1;21045:74:0;-1:-1:-1;;;;;;21137:16:0;;;;;:9;:16;;;;;;;20953:208::o;70382:179::-;70433:34;68530:24;16066:10;49078:139;:::i;70433:34::-;70425:109;;;;-1:-1:-1;;;70425:109:0;;13389:2:1;70425:109:0;;;13371:21:1;13428:2;13408:18;;;13401:30;13467:34;13447:18;;;13440:62;13538:32;13518:18;;;13511:60;13588:19;;70425:109:0;13361:252:1;70425:109:0;70545:8;:6;:8::i;76607:153::-;74866:41;47101:4;16066:10;49078:139;:::i;74866:41::-;74858:77;;;;-1:-1:-1;;;74858:77:0;;12689:2:1;74858:77:0;;;12671:21:1;12728:2;12708:18;;;12701:30;12767:25;12747:18;;;12740:53;12810:18;;74858:77:0;12661:173:1;74858:77:0;76714:37:::1;::::0;;;;76745:4:::1;76714:37;::::0;::::1;8676:74:1::0;-1:-1:-1;;;;;76680:21:0;::::1;::::0;::::1;::::0;76702:10:::1;::::0;76680:21;;76714:22:::1;::::0;8649:18:1;;76714:37:0::1;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;76680:72;::::0;-1:-1:-1;;;;;;76680:72:0::1;::::0;;;;;;-1:-1:-1;;;;;9469:55:1;;;76680:72:0::1;::::0;::::1;9451:74:1::0;9541:18;;;9534:34;9424:18;;76680:72:0::1;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;76150:255::-:0;75012:41;47101:4;16066:10;49078:139;:::i;75012:41::-;:79;;;-1:-1:-1;75057:34:0;68461:24;16066:10;49078:139;:::i;75057:34::-;75004:124;;;;-1:-1:-1;;;75004:124:0;;17293:2:1;75004:124:0;;;17275:21:1;17332:2;17312:18;;;17305:30;17371:33;17351:18;;;17344:61;17422:18;;75004:124:0;17265:181:1;75004:124:0;76293:6:::1;76289:109;76305:11;:18;76303:1;:20;76289:109;;;76344:42;76354:11;76366:1;76354:14;;;;;;;;:::i;:::-;;;;;;;76370:13;35372:10:::0;:17;;35284:113;76344:42:::1;76325:3:::0;::::1;::::0;::::1;:::i;:::-;;;;76289:109;;64527:145:::0;64609:7;64636:18;;;:12;:18;;;;;:28;;64658:5;64636:21;:28::i;:::-;64629:35;64527:145;-1:-1:-1;;;64527:145:0:o;21698:104::-;21754:13;21787:7;21780:14;;;;;:::i;76417:178::-;74866:41;47101:4;16066:10;49078:139;:::i;74866:41::-;74858:77;;;;-1:-1:-1;;;74858:77:0;;12689:2:1;74858:77:0;;;12671:21:1;12728:2;12708:18;;;12701:30;12767:25;12747:18;;;12740:53;12810:18;;74858:77:0;12661:173:1;74858:77:0;76499:1:::1;76477:21;:23;76469:56;;;::::0;-1:-1:-1;;;76469:56:0;;14579:2:1;76469:56:0::1;::::0;::::1;14561:21:1::0;14618:2;14598:18;;;14591:30;14657:22;14637:18;;;14630:50;14697:18;;76469:56:0::1;14551:170:1::0;76469:56:0::1;76536:51;::::0;76544:10:::1;::::0;76565:21:::1;76536:51:::0;::::1;;;::::0;::::1;::::0;;;76565:21;76544:10;76536:51;::::1;;;;;;;;;;;;;::::0;::::1;;;;23381:295:::0;-1:-1:-1;;;;;23484:24:0;;16066:10;23484:24;;23476:62;;;;-1:-1:-1;;;23476:62:0;;14225:2:1;23476:62:0;;;14207:21:1;14264:2;14244:18;;;14237:30;14303:27;14283:18;;;14276:55;14348:18;;23476:62:0;14197:175:1;23476:62:0;16066:10;23551:32;;;;:18;:32;;;;;;;;-1:-1:-1;;;;;23551:42:0;;;;;;;;;;;;:53;;-1:-1:-1;;23551:53:0;;;;;;;;;;23620:48;;9719:41:1;;;23551:42:0;;16066:10;23620:48;;9692:18:1;23620:48:0;;;;;;;23381:295;;:::o;24644:328::-;24819:41;16066:10;24852:7;24819:18;:41::i;:::-;24811:103;;;;-1:-1:-1;;;24811:103:0;;19294:2:1;24811:103:0;;;19276:21:1;19333:2;19313:18;;;19306:30;19372:34;19352:18;;;19345:62;19443:19;19423:18;;;19416:47;19480:19;;24811:103:0;19266:239:1;24811:103:0;24925:39;24939:4;24945:2;24949:7;24958:5;24925:13;:39::i;:::-;24644:328;;;;:::o;21873:334::-;26547:4;26571:16;;;:7;:16;;;;;;21946:13;;-1:-1:-1;;;;;26571:16:0;21972:76;;;;-1:-1:-1;;;21972:76:0;;18476:2:1;21972:76:0;;;18458:21:1;18515:2;18495:18;;;18488:30;18554:34;18534:18;;;18527:62;18625:17;18605:18;;;18598:45;18660:19;;21972:76:0;18448:237:1;21972:76:0;22061:21;22085:10;:8;:10::i;:::-;22061:34;;22137:1;22119:7;22113:21;:25;:86;;;;;;;;;;;;;;;;;22165:7;22174:18;:7;:16;:18::i;:::-;22148:45;;;;;;;;;:::i;:::-;;;;;;;;;;;;;22106:93;21873:334;-1:-1:-1;;;21873:334:0:o;64846:134::-;64918:7;64945:18;;;:12;:18;;;;;:27;;:25;:27::i;65330:170::-;65416:31;65433:4;65439:7;65416:16;:31::i;52427:112::-;52506:25;52517:4;52523:7;52506:10;:25::i;59823:152::-;59893:4;59917:50;59922:3;-1:-1:-1;;;;;59942:23:0;;59917:4;:50::i;34644:224::-;34746:4;-1:-1:-1;;;;;;34770:50:0;;34785:35;34770:50;;:90;;;34824:36;34848:11;34824:23;:36::i;30464:174::-;30539:24;;;;:15;:24;;;;;:29;;-1:-1:-1;;30539:29:0;-1:-1:-1;;;;;30539:29:0;;;;;;;;:24;;30593:23;30539:24;30593:14;:23::i;:::-;-1:-1:-1;;;;;30584:46:0;;;;;;;;;;;30464:174;;:::o;26776:348::-;26869:4;26571:16;;;:7;:16;;;;;;-1:-1:-1;;;;;26571:16:0;26886:73;;;;-1:-1:-1;;;26886:73:0;;14928:2:1;26886:73:0;;;14910:21:1;14967:2;14947:18;;;14940:30;15006:34;14986:18;;;14979:62;-1:-1:-1;;;15057:18:1;;;15050:42;15109:19;;26886:73:0;14900:234:1;26886:73:0;26970:13;26986:23;27001:7;26986:14;:23::i;:::-;26970:39;;27039:5;-1:-1:-1;;;;;27028:16:0;:7;-1:-1:-1;;;;;27028:16:0;;:51;;;;27072:7;-1:-1:-1;;;;;27048:31:0;:20;27060:7;27048:11;:20::i;:::-;-1:-1:-1;;;;;27048:31:0;;27028:51;:87;;;-1:-1:-1;;;;;;23868:25:0;;;23844:4;23868:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;27083:32;27020:96;26776:348;-1:-1:-1;;;;26776:348:0:o;29768:578::-;29927:4;-1:-1:-1;;;;;29900:31:0;:23;29915:7;29900:14;:23::i;:::-;-1:-1:-1;;;;;29900:31:0;;29892:85;;;;-1:-1:-1;;;29892:85:0;;18066:2:1;29892:85:0;;;18048:21:1;18105:2;18085:18;;;18078:30;18144:34;18124:18;;;18117:62;18215:11;18195:18;;;18188:39;18244:19;;29892:85:0;18038:231:1;29892:85:0;-1:-1:-1;;;;;29996:16:0;;29988:65;;;;-1:-1:-1;;;29988:65:0;;13820:2:1;29988:65:0;;;13802:21:1;13859:2;13839:18;;;13832:30;13898:34;13878:18;;;13871:62;13969:6;13949:18;;;13942:34;13993:19;;29988:65:0;13792:226:1;29988:65:0;30066:39;30087:4;30093:2;30097:7;30066:20;:39::i;:::-;30170:29;30187:1;30191:7;30170:8;:29::i;:::-;-1:-1:-1;;;;;30212:15:0;;;;;;:9;:15;;;;;:20;;30231:1;;30212:15;:20;;30231:1;;30212:20;:::i;:::-;;;;-1:-1:-1;;;;;;;30243:13:0;;;;;;:9;:13;;;;;:18;;30260:1;;30243:13;:18;;30260:1;;30243:18;:::i;:::-;;;;-1:-1:-1;;30272:16:0;;;;:7;:16;;;;;;:21;;-1:-1:-1;;30272:21:0;-1:-1:-1;;;;;30272:21:0;;;;;;;;;30311:27;;30272:16;;30311:27;;;;;;;29768:578;;;:::o;50578:147::-;50259:7;50286:12;;;;;;;;;;:22;;;48660:30;48671:4;16066:10;48660;:30::i;:::-;50692:25:::1;50703:4;50709:7;50692:10;:25::i;51626:218::-:0;-1:-1:-1;;;;;51722:23:0;;16066:10;51722:23;51714:83;;;;-1:-1:-1;;;51714:83:0;;20919:2:1;51714:83:0;;;20901:21:1;20958:2;20938:18;;;20931:30;20997:34;20977:18;;;20970:62;21068:17;21048:18;;;21041:45;21103:19;;51714:83:0;20891:237:1;51714:83:0;51810:26;51822:4;51828:7;51810:11;:26::i;60151:158::-;60224:4;60248:53;60256:3;-1:-1:-1;;;;;60276:23:0;;60248:7;:53::i;43646:120::-;42658:7;;;;43182:41;;;;-1:-1:-1;;;43182:41:0;;11152:2:1;43182:41:0;;;11134:21:1;11191:2;11171:18;;;11164:30;11230:22;11210:18;;;11203:50;11270:18;;43182:41:0;11124:170:1;43182:41:0;43705:7:::1;:15:::0;;-1:-1:-1;;43705:15:0::1;::::0;;43736:22:::1;16066:10:::0;43745:12:::1;43736:22;::::0;-1:-1:-1;;;;;8694:55:1;;;8676:74;;8664:2;8649:18;43736:22:0::1;;;;;;;43646:120::o:0;27466:110::-;27542:26;27552:2;27556:7;27542:26;;;;;;;;;;;;:9;:26::i;43387:118::-;42658:7;;;;42912:9;42904:38;;;;-1:-1:-1;;;42904:38:0;;15341:2:1;42904:38:0;;;15323:21:1;15380:2;15360:18;;;15353:30;15419:18;15399;;;15392:46;15455:18;;42904:38:0;15313:166:1;42904:38:0;43447:7:::1;:14:::0;;-1:-1:-1;;43447:14:0::1;43457:4;43447:14;::::0;;43477:20:::1;43484:12;16066:10:::0;;15986:98;61119:158;61193:7;61244:22;61248:3;61260:5;61244:3;:22::i;25854:315::-;26011:28;26021:4;26027:2;26031:7;26011:9;:28::i;:::-;26058:48;26081:4;26087:2;26091:7;26100:5;26058:22;:48::i;:::-;26050:111;;;;-1:-1:-1;;;26050:111:0;;11913:2:1;26050:111:0;;;11895:21:1;11952:2;11932:18;;;11925:30;11991:34;11971:18;;;11964:62;-1:-1:-1;;;12042:18:1;;;12035:48;12100:19;;26050:111:0;11885:240:1;75468:105:0;75520:13;75552;75545:20;;;;;:::i;16519:723::-;16575:13;16796:10;16792:53;;-1:-1:-1;;16823:10:0;;;;;;;;;;;;-1:-1:-1;;;16823:10:0;;;;;16519:723::o;16792:53::-;16870:5;16855:12;16911:78;16918:9;;16911:78;;16944:8;;;;:::i;:::-;;-1:-1:-1;16967:10:0;;-1:-1:-1;16975:2:0;16967:10;;:::i;:::-;;;16911:78;;;16999:19;17031:6;17021:17;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;17021:17:0;;16999:39;;17049:154;17056:10;;17049:154;;17083:11;17093:1;17083:11;;:::i;:::-;;-1:-1:-1;17152:10:0;17160:2;17152:5;:10;:::i;:::-;17139:24;;:2;:24;:::i;:::-;17126:39;;17109:6;17116;17109:14;;;;;;;;:::i;:::-;;;;:56;-1:-1:-1;;;;;17109:56:0;;;;;;;;-1:-1:-1;17180:11:0;17189:2;17180:11;;:::i;:::-;;;17049:154;;60648:117;60711:7;60738:19;60746:3;57469:18;;57386:109;50970:149;50259:7;50286:12;;;;;;;;;;:22;;;48660:30;48671:4;16066:10;48660;:30::i;:::-;51085:26:::1;51097:4;51103:7;51085:11;:26::i;52874:229::-:0;49156:4;49180:12;;;;;;;;;;;-1:-1:-1;;;;;49180:29:0;;;;;;;;;;;;52944:152;;52988:6;:12;;;;;;;;;;;-1:-1:-1;;;;;52988:29:0;;;;;;;;;:36;;-1:-1:-1;;52988:36:0;53020:4;52988:36;;;53071:12;16066:10;;15986:98;53071:12;-1:-1:-1;;;;;53044:40:0;53062:7;-1:-1:-1;;;;;53044:40:0;53056:4;53044:40;;;;;;;;;;52874:229;;:::o;55075:414::-;55138:4;57268:19;;;:12;;;:19;;;;;;55155:327;;-1:-1:-1;55198:23:0;;;;;;;;:11;:23;;;;;;;;;;;;;55381:18;;55359:19;;;:12;;;:19;;;;;;:40;;;;55414:11;;55155:327;-1:-1:-1;55465:5:0;55458:12;;20584:305;20686:4;-1:-1:-1;;;;;;20723:40:0;;20738:25;20723:40;;:105;;-1:-1:-1;;;;;;;20780:48:0;;20795:33;20780:48;20723:105;:158;;;;20845:36;20869:11;20845:23;:36::i;70973:239::-;71159:45;71186:4;71192:2;71196:7;71159:26;:45::i;49507:497::-;49156:4;49180:12;;;;;;;;;;;-1:-1:-1;;;;;49180:29:0;;;;;;;;;;;;49583:414;;49776:41;49804:7;-1:-1:-1;;;;;49776:41:0;49814:2;49776:19;:41::i;:::-;49890:38;49918:4;49925:2;49890:19;:38::i;:::-;49681:270;;;;;;;;;:::i;:::-;;;;-1:-1:-1;;49681:270:0;;;;;;;;;;-1:-1:-1;;;49627:358:0;;;;;;;:::i;53111:230::-;49156:4;49180:12;;;;;;;;;;;-1:-1:-1;;;;;49180:29:0;;;;;;;;;;;;53182:152;;;53257:5;53225:12;;;;;;;;;;;-1:-1:-1;;;;;53225:29:0;;;;;;;;;;:37;;-1:-1:-1;;53225:37:0;;;53282:40;16066:10;;53225:12;;53282:40;;53257:5;53282:40;53111:230;;:::o;55665:1420::-;55731:4;55870:19;;;:12;;;:19;;;;;;55906:15;;55902:1176;;56281:21;56305:14;56318:1;56305:10;:14;:::i;:::-;56354:18;;56281:38;;-1:-1:-1;56334:17:0;;56354:22;;56375:1;;56354:22;:::i;:::-;56334:42;;56410:13;56397:9;:26;56393:405;;56444:17;56464:3;:11;;56476:9;56464:22;;;;;;;;:::i;:::-;;;;;;;;;56444:42;;56618:9;56589:3;:11;;56601:13;56589:26;;;;;;;;:::i;:::-;;;;;;;;;;;;:38;;;;56703:23;;;:12;;;:23;;;;;:36;;;56393:405;56879:17;;:3;;:17;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;56974:3;:12;;:19;56987:5;56974:19;;;;;;;;;;;56967:26;;;57017:4;57010:11;;;;;;;55902:1176;57061:5;57054:12;;;;;27803:321;27933:18;27939:2;27943:7;27933:5;:18::i;:::-;27984:54;28015:1;28019:2;28023:7;28032:5;27984:22;:54::i;:::-;27962:154;;;;-1:-1:-1;;;27962:154:0;;11913:2:1;27962:154:0;;;11895:21:1;11952:2;11932:18;;;11925:30;11991:34;11971:18;;;11964:62;-1:-1:-1;;;12042:18:1;;;12035:48;12100:19;;27962:154:0;11885:240:1;57849:120:0;57916:7;57943:3;:11;;57955:5;57943:18;;;;;;;;:::i;:::-;;;;;;;;;57936:25;;57849:120;;;;:::o;31203:803::-;31358:4;-1:-1:-1;;;;;31379:13:0;;8563:20;8611:8;31375:624;;31415:72;;-1:-1:-1;;;31415:72:0;;-1:-1:-1;;;;;31415:36:0;;;;;:72;;16066:10;;31466:4;;31472:7;;31481:5;;31415:72;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;31415:72:0;;;;;;;;-1:-1:-1;;31415:72:0;;;;;;;;;;;;:::i;:::-;;;31411:533;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;31661:13:0;;31657:272;;31704:60;;-1:-1:-1;;;31704:60:0;;11913:2:1;31704:60:0;;;11895:21:1;11952:2;11932:18;;;11925:30;11991:34;11971:18;;;11964:62;-1:-1:-1;;;12042:18:1;;;12035:48;12100:19;;31704:60:0;11885:240:1;31657:272:0;31879:6;31873:13;31864:6;31860:2;31856:15;31849:38;31411:533;-1:-1:-1;;;;;;31538:55:0;-1:-1:-1;;;31538:55:0;;-1:-1:-1;31531:62:0;;31375:624;-1:-1:-1;31983:4:0;31203:803;;;;;;:::o;63714:214::-;63799:4;-1:-1:-1;;;;;;63823:57:0;;63838:42;63823:57;;:97;;;63884:36;63908:11;63884:23;:36::i;44378:275::-;44522:45;44549:4;44555:2;44559:7;44522:26;:45::i;:::-;42658:7;;;;44588:9;44580:65;;;;-1:-1:-1;;;44580:65:0;;10740:2:1;44580:65:0;;;10722:21:1;10779:2;10759:18;;;10752:30;10818:34;10798:18;;;10791:62;10889:13;10869:18;;;10862:41;10920:19;;44580:65:0;10712:233:1;17820:451:0;17895:13;17921:19;17953:10;17957:6;17953:1;:10;:::i;:::-;:14;;17966:1;17953:14;:::i;:::-;17943:25;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;17943:25:0;;17921:47;;-1:-1:-1;;;17979:6:0;17986:1;17979:9;;;;;;;;:::i;:::-;;;;:15;-1:-1:-1;;;;;17979:15:0;;;;;;;;;18005;:6;18012:1;18005:9;;;;;;;;:::i;:::-;;;;:15;-1:-1:-1;;;;;18005:15:0;;;;;;;;-1:-1:-1;18036:9:0;18048:10;18052:6;18048:1;:10;:::i;:::-;:14;;18061:1;18048:14;:::i;:::-;18036:26;;18031:135;18068:1;18064;:5;18031:135;;;18103:12;18116:5;18124:3;18116:11;18103:25;;;;;;;:::i;:::-;;;;18091:6;18098:1;18091:9;;;;;;;;:::i;:::-;;;;:37;-1:-1:-1;;;;;18091:37:0;;;;;;;;-1:-1:-1;18153:1:0;18143:11;;;;;18071:3;;;:::i;:::-;;;18031:135;;;-1:-1:-1;18184:10:0;;18176:55;;;;-1:-1:-1;;;18176:55:0;;10379:2:1;18176:55:0;;;10361:21:1;;;10398:18;;;10391:30;10457:34;10437:18;;;10430:62;10509:18;;18176:55:0;10351:182:1;28460:382:0;-1:-1:-1;;;;;28540:16:0;;28532:61;;;;-1:-1:-1;;;28532:61:0;;16932:2:1;28532:61:0;;;16914:21:1;;;16951:18;;;16944:30;17010:34;16990:18;;;16983:62;17062:18;;28532:61:0;16904:182:1;28532:61:0;26547:4;26571:16;;;:7;:16;;;;;;-1:-1:-1;;;;;26571:16:0;:30;28604:58;;;;-1:-1:-1;;;28604:58:0;;12332:2:1;28604:58:0;;;12314:21:1;12371:2;12351:18;;;12344:30;12410;12390:18;;;12383:58;12458:18;;28604:58:0;12304:178:1;28604:58:0;28675:45;28704:1;28708:2;28712:7;28675:20;:45::i;:::-;-1:-1:-1;;;;;28733:13:0;;;;;;:9;:13;;;;;:18;;28750:1;;28733:13;:18;;28750:1;;28733:18;:::i;:::-;;;;-1:-1:-1;;28762:16:0;;;;:7;:16;;;;;;:21;;-1:-1:-1;;28762:21:0;-1:-1:-1;;;;;28762:21:0;;;;;;;;28801:33;;28762:16;;;28801:33;;28762:16;;28801:33;28460:382;;:::o;48782:204::-;48867:4;-1:-1:-1;;;;;;48891:47:0;;48906:32;48891:47;;:87;;-1:-1:-1;19206:25:0;-1:-1:-1;;;;;;19191:40:0;;;48942:36;19082:157;36320:589;-1:-1:-1;;;;;36526:18:0;;36522:187;;36561:40;36593:7;37736:10;:17;;37709:24;;;;:15;:24;;;;;:44;;;37764:24;;;;;;;;;;;;37632:164;36561:40;36522:187;;;36631:2;-1:-1:-1;;;;;36623:10:0;:4;-1:-1:-1;;;;;36623:10:0;;36619:90;;36650:47;36683:4;36689:7;36650:32;:47::i;:::-;-1:-1:-1;;;;;36723:16:0;;36719:183;;36756:45;36793:7;36756:36;:45::i;36719:183::-;36829:4;-1:-1:-1;;;;;36823:10:0;:2;-1:-1:-1;;;;;36823:10:0;;36819:83;;36850:40;36878:2;36882:7;36850:27;:40::i;38423:988::-;38689:22;38739:1;38714:22;38731:4;38714:16;:22::i;:::-;:26;;;;:::i;:::-;38751:18;38772:26;;;:17;:26;;;;;;38689:51;;-1:-1:-1;38905:28:0;;;38901:328;;-1:-1:-1;;;;;38972:18:0;;38950:19;38972:18;;;:12;:18;;;;;;;;:34;;;;;;;;;39023:30;;;;;;:44;;;39140:30;;:17;:30;;;;;:43;;;38901:328;-1:-1:-1;39325:26:0;;;;:17;:26;;;;;;;;39318:33;;;-1:-1:-1;;;;;39369:18:0;;;;;:12;:18;;;;;:34;;;;;;;39362:41;38423:988::o;39706:1079::-;39984:10;:17;39959:22;;39984:21;;40004:1;;39984:21;:::i;:::-;40016:18;40037:24;;;:15;:24;;;;;;40410:10;:26;;39959:46;;-1:-1:-1;40037:24:0;;39959:46;;40410:26;;;;;;:::i;:::-;;;;;;;;;40388:48;;40474:11;40449:10;40460;40449:22;;;;;;;;:::i;:::-;;;;;;;;;;;;:36;;;;40554:28;;;:15;:28;;;;;;;:41;;;40726:24;;;;;40719:31;40761:10;:16;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;39777:1008;;;39706:1079;:::o;37210:221::-;37295:14;37312:20;37329:2;37312:16;:20::i;:::-;-1:-1:-1;;;;;37343:16:0;;;;;;;:12;:16;;;;;;;;:24;;;;;;;;:34;;;37388:26;;;:17;:26;;;;;;:35;;;;-1:-1:-1;37210:221:0:o;-1:-1:-1:-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;;;;;;;;;14:406:1;78:5;112:18;104:6;101:30;98:2;;;134:18;;:::i;:::-;172:57;217:2;196:15;;-1:-1:-1;;192:29:1;223:4;188:40;172:57;:::i;:::-;163:66;;252:6;245:5;238:21;292:3;283:6;278:3;274:16;271:25;268:2;;;309:1;306;299:12;268:2;358:6;353:3;346:4;339:5;335:16;322:43;412:1;405:4;396:6;389:5;385:18;381:29;374:40;88:332;;;;;:::o;425:247::-;484:6;537:2;525:9;516:7;512:23;508:32;505:2;;;553:1;550;543:12;505:2;592:9;579:23;611:31;636:5;611:31;:::i;677:388::-;745:6;753;806:2;794:9;785:7;781:23;777:32;774:2;;;822:1;819;812:12;774:2;861:9;848:23;880:31;905:5;880:31;:::i;:::-;930:5;-1:-1:-1;987:2:1;972:18;;959:32;1000:33;959:32;1000:33;:::i;:::-;1052:7;1042:17;;;764:301;;;;;:::o;1070:456::-;1147:6;1155;1163;1216:2;1204:9;1195:7;1191:23;1187:32;1184:2;;;1232:1;1229;1222:12;1184:2;1271:9;1258:23;1290:31;1315:5;1290:31;:::i;:::-;1340:5;-1:-1:-1;1397:2:1;1382:18;;1369:32;1410:33;1369:32;1410:33;:::i;:::-;1174:352;;1462:7;;-1:-1:-1;;;1516:2:1;1501:18;;;;1488:32;;1174:352::o;1531:794::-;1626:6;1634;1642;1650;1703:3;1691:9;1682:7;1678:23;1674:33;1671:2;;;1720:1;1717;1710:12;1671:2;1759:9;1746:23;1778:31;1803:5;1778:31;:::i;:::-;1828:5;-1:-1:-1;1885:2:1;1870:18;;1857:32;1898:33;1857:32;1898:33;:::i;:::-;1950:7;-1:-1:-1;2004:2:1;1989:18;;1976:32;;-1:-1:-1;2059:2:1;2044:18;;2031:32;2086:18;2075:30;;2072:2;;;2118:1;2115;2108:12;2072:2;2141:22;;2194:4;2186:13;;2182:27;-1:-1:-1;2172:2:1;;2223:1;2220;2213:12;2172:2;2246:73;2311:7;2306:2;2293:16;2288:2;2284;2280:11;2246:73;:::i;:::-;2236:83;;;1661:664;;;;;;;:::o;2330:382::-;2395:6;2403;2456:2;2444:9;2435:7;2431:23;2427:32;2424:2;;;2472:1;2469;2462:12;2424:2;2511:9;2498:23;2530:31;2555:5;2530:31;:::i;:::-;2580:5;-1:-1:-1;2637:2:1;2622:18;;2609:32;2650:30;2609:32;2650:30;:::i;2717:315::-;2785:6;2793;2846:2;2834:9;2825:7;2821:23;2817:32;2814:2;;;2862:1;2859;2852:12;2814:2;2901:9;2888:23;2920:31;2945:5;2920:31;:::i;:::-;2970:5;3022:2;3007:18;;;;2994:32;;-1:-1:-1;;;2804:228:1:o;3037:1032::-;3121:6;3152:2;3195;3183:9;3174:7;3170:23;3166:32;3163:2;;;3211:1;3208;3201:12;3163:2;3251:9;3238:23;3280:18;3321:2;3313:6;3310:14;3307:2;;;3337:1;3334;3327:12;3307:2;3375:6;3364:9;3360:22;3350:32;;3420:7;3413:4;3409:2;3405:13;3401:27;3391:2;;3442:1;3439;3432:12;3391:2;3478;3465:16;3500:2;3496;3493:10;3490:2;;;3506:18;;:::i;:::-;3552:2;3549:1;3545:10;3535:20;;3575:28;3599:2;3595;3591:11;3575:28;:::i;:::-;3637:15;;;3668:12;;;;3700:11;;;3730;;;3726:20;;3723:33;-1:-1:-1;3720:2:1;;;3769:1;3766;3759:12;3720:2;3791:1;3782:10;;3801:238;3815:2;3812:1;3809:9;3801:238;;;3886:3;3873:17;3860:30;;3903:31;3928:5;3903:31;:::i;:::-;3947:18;;;3833:1;3826:9;;;;;3985:12;;;;4017;;3801:238;;;-1:-1:-1;4058:5:1;3132:937;-1:-1:-1;;;;;;;;3132:937:1:o;4074:245::-;4141:6;4194:2;4182:9;4173:7;4169:23;4165:32;4162:2;;;4210:1;4207;4200:12;4162:2;4242:9;4236:16;4261:28;4283:5;4261:28;:::i;4324:180::-;4383:6;4436:2;4424:9;4415:7;4411:23;4407:32;4404:2;;;4452:1;4449;4442:12;4404:2;-1:-1:-1;4475:23:1;;4394:110;-1:-1:-1;4394:110:1:o;4509:315::-;4577:6;4585;4638:2;4626:9;4617:7;4613:23;4609:32;4606:2;;;4654:1;4651;4644:12;4606:2;4690:9;4677:23;4667:33;;4750:2;4739:9;4735:18;4722:32;4763:31;4788:5;4763:31;:::i;4829:248::-;4897:6;4905;4958:2;4946:9;4937:7;4933:23;4929:32;4926:2;;;4974:1;4971;4964:12;4926:2;-1:-1:-1;;4997:23:1;;;5067:2;5052:18;;;5039:32;;-1:-1:-1;4916:161:1:o;5082:245::-;5140:6;5193:2;5181:9;5172:7;5168:23;5164:32;5161:2;;;5209:1;5206;5199:12;5161:2;5248:9;5235:23;5267:30;5291:5;5267:30;:::i;5332:249::-;5401:6;5454:2;5442:9;5433:7;5429:23;5425:32;5422:2;;;5470:1;5467;5460:12;5422:2;5502:9;5496:16;5521:30;5545:5;5521:30;:::i;5853:450::-;5922:6;5975:2;5963:9;5954:7;5950:23;5946:32;5943:2;;;5991:1;5988;5981:12;5943:2;6031:9;6018:23;6064:18;6056:6;6053:30;6050:2;;;6096:1;6093;6086:12;6050:2;6119:22;;6172:4;6164:13;;6160:27;-1:-1:-1;6150:2:1;;6201:1;6198;6191:12;6150:2;6224:73;6289:7;6284:2;6271:16;6266:2;6262;6258:11;6224:73;:::i;6493:184::-;6563:6;6616:2;6604:9;6595:7;6591:23;6587:32;6584:2;;;6632:1;6629;6622:12;6584:2;-1:-1:-1;6655:16:1;;6574:103;-1:-1:-1;6574:103:1:o;7002:257::-;7043:3;7081:5;7075:12;7108:6;7103:3;7096:19;7124:63;7180:6;7173:4;7168:3;7164:14;7157:4;7150:5;7146:16;7124:63;:::i;:::-;7241:2;7220:15;-1:-1:-1;;7216:29:1;7207:39;;;;7248:4;7203:50;;7051:208;-1:-1:-1;;7051:208:1:o;7264:470::-;7443:3;7481:6;7475:13;7497:53;7543:6;7538:3;7531:4;7523:6;7519:17;7497:53;:::i;:::-;7613:13;;7572:16;;;;7635:57;7613:13;7572:16;7669:4;7657:17;;7635:57;:::i;:::-;7708:20;;7451:283;-1:-1:-1;;;;7451:283:1:o;7739:786::-;8150:25;8145:3;8138:38;8120:3;8205:6;8199:13;8221:62;8276:6;8271:2;8266:3;8262:12;8255:4;8247:6;8243:17;8221:62;:::i;:::-;8347:19;8342:2;8302:16;;;8334:11;;;8327:40;8392:13;;8414:63;8392:13;8463:2;8455:11;;8448:4;8436:17;;8414:63;:::i;:::-;8497:17;8516:2;8493:26;;8128:397;-1:-1:-1;;;;8128:397:1:o;8761:511::-;8955:4;-1:-1:-1;;;;;9065:2:1;9057:6;9053:15;9042:9;9035:34;9117:2;9109:6;9105:15;9100:2;9089:9;9085:18;9078:43;;9157:6;9152:2;9141:9;9137:18;9130:34;9200:3;9195:2;9184:9;9180:18;9173:31;9221:45;9261:3;9250:9;9246:19;9238:6;9221:45;:::i;:::-;9213:53;8964:308;-1:-1:-1;;;;;;8964:308:1:o;9953:219::-;10102:2;10091:9;10084:21;10065:4;10122:44;10162:2;10151:9;10147:18;10139:6;10122:44;:::i;21315:275::-;21386:2;21380:9;21451:2;21432:13;;-1:-1:-1;;21428:27:1;21416:40;;21486:18;21471:34;;21507:22;;;21468:62;21465:2;;;21533:18;;:::i;:::-;21569:2;21562:22;21360:230;;-1:-1:-1;21360:230:1:o;21595:128::-;21635:3;21666:1;21662:6;21659:1;21656:13;21653:2;;;21672:18;;:::i;:::-;-1:-1:-1;21708:9:1;;21643:80::o;21728:120::-;21768:1;21794;21784:2;;21799:18;;:::i;:::-;-1:-1:-1;21833:9:1;;21774:74::o;21853:168::-;21893:7;21959:1;21955;21951:6;21947:14;21944:1;21941:21;21936:1;21929:9;21922:17;21918:45;21915:2;;;21966:18;;:::i;:::-;-1:-1:-1;22006:9:1;;21905:116::o;22026:125::-;22066:4;22094:1;22091;22088:8;22085:2;;;22099:18;;:::i;:::-;-1:-1:-1;22136:9:1;;22075:76::o;22156:258::-;22228:1;22238:113;22252:6;22249:1;22246:13;22238:113;;;22328:11;;;22322:18;22309:11;;;22302:39;22274:2;22267:10;22238:113;;;22369:6;22366:1;22363:13;22360:2;;;-1:-1:-1;;22404:1:1;22386:16;;22379:27;22209:205::o;22419:136::-;22458:3;22486:5;22476:2;;22495:18;;:::i;:::-;-1:-1:-1;;;22531:18:1;;22466:89::o;22560:437::-;22639:1;22635:12;;;;22682;;;22703:2;;22757:4;22749:6;22745:17;22735:27;;22703:2;22810;22802:6;22799:14;22779:18;22776:38;22773:2;;;-1:-1:-1;;;22844:1:1;22837:88;22948:4;22945:1;22938:15;22976:4;22973:1;22966:15;22773:2;;22615:382;;;:::o;23002:135::-;23041:3;-1:-1:-1;;23062:17:1;;23059:2;;;23082:18;;:::i;:::-;-1:-1:-1;23129:1:1;23118:13;;23049:88::o;23142:112::-;23174:1;23200;23190:2;;23205:18;;:::i;:::-;-1:-1:-1;23239:9:1;;23180:74::o;23259:184::-;-1:-1:-1;;;23308:1:1;23301:88;23408:4;23405:1;23398:15;23432:4;23429:1;23422:15;23448:184;-1:-1:-1;;;23497:1:1;23490:88;23597:4;23594:1;23587:15;23621:4;23618:1;23611:15;23637:184;-1:-1:-1;;;23686:1:1;23679:88;23786:4;23783:1;23776:15;23810:4;23807:1;23800:15;23826:184;-1:-1:-1;;;23875:1:1;23868:88;23975:4;23972:1;23965:15;23999:4;23996:1;23989:15;24015:184;-1:-1:-1;;;24064:1:1;24057:88;24164:4;24161:1;24154:15;24188:4;24185:1;24178:15;24204:154;-1:-1:-1;;;;;24283:5:1;24279:54;24272:5;24269:65;24259:2;;24348:1;24345;24338:12;24363:118;24449:5;24442:13;24435:21;24428:5;24425:32;24415:2;;24471:1;24468;24461:12;24486:177;-1:-1:-1;;;;;;24564:5:1;24560:78;24553:5;24550:89;24540:2;;24653:1;24650;24643:12

Swarm Source

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