ETH Price: $2,512.95 (+0.87%)

Token

Pad Club (PC)
 

Overview

Max Total Supply

3,334 PC

Holders

541

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A
Balance
1 PC
0x2083f7549de8d0c6ab7a357916b1bf6def5e66f0
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:
PadClubContract

Compiler Version
v0.8.9+commit.e5eed63a

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

/**
 *Submitted for verification at Etherscan.io on 2022-03-26
*/

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


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

pragma solidity ^0.8.0;

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

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

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

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

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

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


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

pragma solidity ^0.8.0;

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

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

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

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

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

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


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

pragma solidity ^0.8.0;

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

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

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


// OpenZeppelin Contracts v4.4.1 (access/Ownable.sol)

pragma solidity ^0.8.0;


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

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

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

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

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

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

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

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

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


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

pragma solidity ^0.8.1;

/**
 * @dev Collection of functions related to the address type
 */
library Address {
    /**
     * @dev Returns true if `account` is a contract.
     *
     * [IMPORTANT]
     * ====
     * It is unsafe to assume that an address for which this function returns
     * false is an externally-owned account (EOA) and not a contract.
     *
     * Among others, `isContract` will return false for the following
     * types of addresses:
     *
     *  - an externally-owned account
     *  - a contract in construction
     *  - an address where a contract will be created
     *  - an address where a contract lived, but was destroyed
     * ====
     *
     * [IMPORTANT]
     * ====
     * You shouldn't rely on `isContract` to protect against flash loan attacks!
     *
     * Preventing calls from contracts is highly discouraged. It breaks composability, breaks support for smart wallets
     * like Gnosis Safe, and does not provide security since it can be circumvented by calling from a contract
     * constructor.
     * ====
     */
    function isContract(address account) internal view returns (bool) {
        // This method relies on extcodesize/address.code.length, which returns 0
        // for contracts in construction, since the code is only stored at the end
        // of the constructor execution.

        return account.code.length > 0;
    }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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


// OpenZeppelin Contracts v4.4.1 (token/ERC721/IERC721Receiver.sol)

pragma solidity ^0.8.0;

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

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


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

pragma solidity ^0.8.0;

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

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


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

pragma solidity ^0.8.0;


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

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


// OpenZeppelin Contracts v4.4.1 (token/ERC721/IERC721.sol)

pragma solidity ^0.8.0;


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

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

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

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

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

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

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

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

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

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

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

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

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


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

pragma solidity ^0.8.0;


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

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

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

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


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

pragma solidity ^0.8.0;








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

    // Token name
    string private _name;

    // Token symbol
    string private _symbol;

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

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

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

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

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

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

    /**
     * @dev See {IERC721-balanceOf}.
     */
    function balanceOf(address owner) public view virtual override returns (uint256) {
        require(owner != address(0), "ERC721: 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 {
        _setApprovalForAll(_msgSender(), operator, approved);
    }

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

    /**
     * @dev See {IERC721-transferFrom}.
     */
    function transferFrom(
        address from,
        address to,
        uint256 tokenId
    ) public virtual override {
        //solhint-disable-next-line max-line-length
        require(_isApprovedOrOwner(_msgSender(), tokenId), "ERC721: 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);

        _afterTokenTransfer(address(0), to, tokenId);
    }

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

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

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

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

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

        _afterTokenTransfer(owner, address(0), tokenId);
    }

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

        _beforeTokenTransfer(from, to, tokenId);

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

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

        emit Transfer(from, to, tokenId);

        _afterTokenTransfer(from, to, tokenId);
    }

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

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

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

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

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

// File: contracts/PadClub_final.sol


pragma solidity ^0.8.8;

//0xd41b3C70aBf4F2BC1272f4F0Bd09844e7e546B38





contract PadClubContract is ERC721, Ownable {
    using Strings for uint256;
    using Counters for Counters.Counter;

    Counters.Counter private supply;
    Counters.Counter private supplyGifted;

    string public _tokenURI = "";
    string public hiddenMetadataUri;
    
    //NFT Stuff
    uint256 public presalePrice = 0.135 ether;  
    uint256 public publicPrice = 0.08 ether;   
    uint256 public maxPublicSupply = 6000;    
    uint256 public maxGiftSupply = 66;        
    uint256 public maxPresaleSupply = 600;   
    uint256 public maxMintAmountPresale = 5;    
    uint256 public maxMintAmountPublic = 10;   
    bool public revealed = false;

    // Sale Stuff
    bool public publicSaleOpen = false;      
    bool public presaleOpen = false;        
    bool public contract_LOCK = false;        
    mapping(address => uint256) public AddressPurchases;
    
    address public _launchpadAddress = 0x32ecb32b0Ec68F058EbC21243540644a8F4984cF; // HW ledger 1
    address public _fundsAddress = 0xD678f1716d807A59F88da8Eb7f0F6c01456790df;// HW ledger 2
    address public _teamAddress = 0x3BD646555740A25c466047A9a304cfA94e38A31f; //HW Ledger 3
    
    string private uriSuffix = ".json";
   

    constructor() ERC721("Pad Club", "PC") {
        setHiddenMetadataUri("ipfs://QmPPZKHUirffJhK9PYsAG3ERXvJFePGFHPbekPTxqiFrAz/");
        }

   

    function totalSupply() public view returns (uint256) {    return supply.current();  }

    function mintPreSale(uint256 _mintAmount) public payable  {
        require(!contract_LOCK);
        require(presaleOpen, "Presale is not open"); // 
        require(msg.value >= presalePrice * _mintAmount, "Insufficient funds!");
        require(_mintAmount>0,"NFT amount error");
        require(_mintAmount <= maxMintAmountPresale ,"Too many NFTs Minted");
        require(AddressPurchases[msg.sender]+_mintAmount <= maxMintAmountPresale, "EXCEED_NFTS_PER_WALLET");// no more mints for address // max nfts mintable
        require(supply.current() + _mintAmount <= maxPresaleSupply, "Max Presale supply exceeded!");     // on est Sold out?
        for (uint256 i = 0; i < _mintAmount; i++) {
            AddressPurchases[msg.sender]++;
            supply.increment();
            _safeMint(msg.sender, supply.current());
        }
    }
    
    function mintPublic(uint256 _mintAmount) public payable {
        require(!contract_LOCK);
        require(publicSaleOpen, "Public Sale not open"); // 
        require(_mintAmount>0,"NFT amount error");
        require(msg.value >= publicPrice * _mintAmount, "Insufficient funds!");
        require(_mintAmount <= maxMintAmountPublic ,"Too many NFTs Minted");
        require(AddressPurchases[msg.sender]+_mintAmount <= maxMintAmountPublic, "EXCEED_NFTS_PER_WALLET");// no more mints for address // max nfts mintable
        require(supply.current() + _mintAmount <= maxPublicSupply+maxGiftSupply+maxPresaleSupply, "Max supply exceeded!");     // on est Sold out?
        for (uint256 i = 0; i < _mintAmount; i++) {
            AddressPurchases[msg.sender]++;
            supply.increment();
            _safeMint(msg.sender, supply.current());
        }
    }

    function mintForAddress(uint256 _mintAmount, address _receiver) public onlyOwner {
        require(!contract_LOCK);
        require(supplyGifted.current()+_mintAmount <= maxGiftSupply, "Max Gift Reached"); // infe au max
        require(publicSaleOpen || presaleOpen,"No Sale is Open"); // vente ouv
        require(supply.current() + _mintAmount <= maxPublicSupply+maxGiftSupply+maxPresaleSupply, "Max supply exceeded!");     // on est Sold out?
        for (uint256 i = 0; i < _mintAmount; i++) {
            supply.increment();
            _safeMint(_receiver, supply.current());
        }
    }
    
    function tokenURI(uint256 _tokenId)  public view virtual override returns (string memory)
    {
        require(_exists(_tokenId),"TOKEN_DOES_NOT_EXIST" );
        string memory currentBaseURI = _tokenURI;
        if (revealed == false) {  
            return bytes(hiddenMetadataUri).length > 0 ? string(abi.encodePacked(hiddenMetadataUri, _tokenId.toString(), uriSuffix)): "";
        }
        return bytes(currentBaseURI).length > 0 ? string(abi.encodePacked(currentBaseURI, _tokenId.toString(), uriSuffix)): "";
    }

    function setRevealed() external onlyOwner {
        require(!contract_LOCK);
        revealed = !revealed;
    }

    function setPublicPrice(uint256 _cost) external onlyOwner {
        require(!contract_LOCK);
        publicPrice = _cost;
    }
    function setPresalePrice(uint256 _cost) external onlyOwner {
        require(!contract_LOCK);
        presalePrice = _cost;
    }

    function setHiddenMetadataUri(string memory _hiddenMetadataUri) internal onlyOwner {
        require(!contract_LOCK);
        hiddenMetadataUri = _hiddenMetadataUri;
    }

    function set_HiddenTokenURI(string memory _hiddenMetadataUri) external onlyOwner {
        require(!contract_LOCK);
        hiddenMetadataUri = _hiddenMetadataUri;
    }

    function set_tokenURI(string memory __tokenURI) public onlyOwner {
        require(!contract_LOCK);
        _tokenURI = __tokenURI;
    }

    function togglePublicSale() external onlyOwner {
        require(!contract_LOCK);
        publicSaleOpen = !publicSaleOpen;
        presaleOpen = false; // we shutdown Pre Sale when we lunch normal sale
    }

    function togglePreSale() external onlyOwner {
        require(!contract_LOCK);
        presaleOpen = !presaleOpen;
        publicSaleOpen = false; // Public should be closed
    }
    //withdraw amounts
    function withdraw() external onlyOwner {
            payable(_teamAddress).transfer(address(this).balance *  5 /100);
            payable(_fundsAddress).transfer(address(this).balance * 3 / 100);
            payable(_launchpadAddress).transfer(address(this).balance);
        }
    
    function _baseURI() internal view virtual override returns (string memory) {
        return _tokenURI;
    }
    function contractLock() external onlyOwner {
        contract_LOCK = true; 
    }
}

Contract Security Audit

Contract ABI

[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"approved","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"AddressPurchases","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"_fundsAddress","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"_launchpadAddress","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"_teamAddress","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"_tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"contractLock","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"contract_LOCK","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"hiddenMetadataUri","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxGiftSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxMintAmountPresale","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxMintAmountPublic","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxPresaleSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxPublicSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_mintAmount","type":"uint256"},{"internalType":"address","name":"_receiver","type":"address"}],"name":"mintForAddress","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_mintAmount","type":"uint256"}],"name":"mintPreSale","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_mintAmount","type":"uint256"}],"name":"mintPublic","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"presaleOpen","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"presalePrice","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"publicPrice","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"publicSaleOpen","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"revealed","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"_data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_cost","type":"uint256"}],"name":"setPresalePrice","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_cost","type":"uint256"}],"name":"setPublicPrice","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"setRevealed","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_hiddenMetadataUri","type":"string"}],"name":"set_HiddenTokenURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"__tokenURI","type":"string"}],"name":"set_tokenURI","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":[],"name":"togglePreSale","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"togglePublicSale","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"withdraw","outputs":[],"stateMutability":"nonpayable","type":"function"}]

60a06040819052600060808190526200001b916009916200028d565b506701df9dc8e4ad8000600b5567011c37937e080000600c55611770600d556042600e55610258600f5560056010819055600a6011556012805463ffffffff19169055601480546001600160a01b03199081167332ecb32b0ec68f058ebc21243540644a8f4984cf1790915560158054821673d678f1716d807a59f88da8eb7f0f6c01456790df17905560168054909116733bd646555740a25c466047a9a304cfa94e38a31f1790556040805180820190915281815264173539b7b760d91b6020909101908152620000f191601791906200028d565b50348015620000ff57600080fd5b5060408051808201825260088152672830b21021b63ab160c11b602080830191825283518085019094526002845261504360f01b9084015281519192916200014a916000916200028d565b508051620001609060019060208401906200028d565b5050506200017d62000177620001a760201b60201c565b620001ab565b620001a160405180606001604052806036815260200162002be560369139620001fd565b62000370565b3390565b600680546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6006546001600160a01b031633146200025c5760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604482015260640160405180910390fd5b6012546301000000900460ff16156200027457600080fd5b80516200028990600a9060208401906200028d565b5050565b8280546200029b9062000333565b90600052602060002090601f016020900481019282620002bf57600085556200030a565b82601f10620002da57805160ff19168380011785556200030a565b828001600101855582156200030a579182015b828111156200030a578251825591602001919060010190620002ed565b50620003189291506200031c565b5090565b5b808211156200031857600081556001016200031d565b600181811c908216806200034857607f821691505b602082108114156200036a57634e487b7160e01b600052602260045260246000fd5b50919050565b61286580620003806000396000f3fe60806040526004361061027c5760003560e01c80637effc0321161014f578063bee6348a116100c1578063e222c7f91161007a578063e222c7f914610710578063e985e9c514610725578063efbd73f41461076e578063efd0cbf91461078e578063f2fde38b146107a1578063f9e23799146107c157600080fd5b8063bee6348a14610665578063c627525514610685578063c87b56dd146106a5578063ca3cb522146106c5578063cf837fad146106da578063dadf1c76146106ef57600080fd5b8063a45ba8e711610113578063a45ba8e7146105d2578063a945bf80146105e7578063b4ce37d2146105fd578063b88d4fde14610612578063b988477214610632578063be632fb41461064557600080fd5b80637effc032146105495780638c97ca761461055f5780638da5cb5b1461057f57806395d89b411461059d578063a22cb465146105b257600080fd5b80633549345e116101f35780635edbc28c116101ac5780635edbc28c1461049e5780636352211e146104b457806368540920146104d45780637023ee2b146104f457806370a0823114610514578063715018a61461053457600080fd5b80633549345e146103ed5780633bd649681461040d5780633ccfd60b1461042257806342842e0e146104375780635183022714610457578063573e261a1461047157600080fd5b806315e0beb71161024557806315e0beb71461035657806317f7bece1461037657806318160ddd1461038c57806321bdb26e146103a157806323b872dd146103b757806326a74d8e146103d757600080fd5b80620e7fa81461028157806301ffc9a7146102aa57806306fdde03146102da578063081812fc146102fc578063095ea7b314610334575b600080fd5b34801561028d57600080fd5b50610297600b5481565b6040519081526020015b60405180910390f35b3480156102b657600080fd5b506102ca6102c53660046121db565b6107e0565b60405190151581526020016102a1565b3480156102e657600080fd5b506102ef610832565b6040516102a19190612250565b34801561030857600080fd5b5061031c610317366004612263565b6108c4565b6040516001600160a01b0390911681526020016102a1565b34801561034057600080fd5b5061035461034f366004612298565b61095e565b005b34801561036257600080fd5b5060155461031c906001600160a01b031681565b34801561038257600080fd5b5061029760115481565b34801561039857600080fd5b50610297610a74565b3480156103ad57600080fd5b50610297600f5481565b3480156103c357600080fd5b506103546103d23660046122c2565b610a84565b3480156103e357600080fd5b50610297600d5481565b3480156103f957600080fd5b50610354610408366004612263565b610ab5565b34801561041957600080fd5b50610354610afb565b34801561042e57600080fd5b50610354610b50565b34801561044357600080fd5b506103546104523660046122c2565b610c54565b34801561046357600080fd5b506012546102ca9060ff1681565b34801561047d57600080fd5b5061029761048c3660046122fe565b60136020526000908152604090205481565b3480156104aa57600080fd5b50610297600e5481565b3480156104c057600080fd5b5061031c6104cf366004612263565b610c6f565b3480156104e057600080fd5b506103546104ef3660046123a5565b610ce6565b34801561050057600080fd5b5060145461031c906001600160a01b031681565b34801561052057600080fd5b5061029761052f3660046122fe565b610d3e565b34801561054057600080fd5b50610354610dc5565b34801561055557600080fd5b5061029760105481565b34801561056b57600080fd5b5060165461031c906001600160a01b031681565b34801561058b57600080fd5b506006546001600160a01b031661031c565b3480156105a957600080fd5b506102ef610dfb565b3480156105be57600080fd5b506103546105cd3660046123ee565b610e0a565b3480156105de57600080fd5b506102ef610e15565b3480156105f357600080fd5b50610297600c5481565b34801561060957600080fd5b506102ef610ea3565b34801561061e57600080fd5b5061035461062d36600461242a565b610eb0565b610354610640366004612263565b610ee8565b34801561065157600080fd5b506103546106603660046123a5565b611153565b34801561067157600080fd5b506012546102ca9062010000900460ff1681565b34801561069157600080fd5b506103546106a0366004612263565b6111a7565b3480156106b157600080fd5b506102ef6106c0366004612263565b6111ed565b3480156106d157600080fd5b50610354611382565b3480156106e657600080fd5b506103546113e7565b3480156106fb57600080fd5b506012546102ca906301000000900460ff1681565b34801561071c57600080fd5b50610354611426565b34801561073157600080fd5b506102ca6107403660046124a6565b6001600160a01b03918216600090815260056020908152604080832093909416825291909152205460ff1690565b34801561077a57600080fd5b506103546107893660046124d9565b61148b565b61035461079c366004612263565b61162e565b3480156107ad57600080fd5b506103546107bc3660046122fe565b6118a5565b3480156107cd57600080fd5b506012546102ca90610100900460ff1681565b60006001600160e01b031982166380ac58cd60e01b148061081157506001600160e01b03198216635b5e139f60e01b145b8061082c57506301ffc9a760e01b6001600160e01b03198316145b92915050565b606060008054610841906124fc565b80601f016020809104026020016040519081016040528092919081815260200182805461086d906124fc565b80156108ba5780601f1061088f576101008083540402835291602001916108ba565b820191906000526020600020905b81548152906001019060200180831161089d57829003601f168201915b5050505050905090565b6000818152600260205260408120546001600160a01b03166109425760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b60648201526084015b60405180910390fd5b506000908152600460205260409020546001600160a01b031690565b600061096982610c6f565b9050806001600160a01b0316836001600160a01b031614156109d75760405162461bcd60e51b815260206004820152602160248201527f4552433732313a20617070726f76616c20746f2063757272656e74206f776e656044820152603960f91b6064820152608401610939565b336001600160a01b03821614806109f357506109f38133610740565b610a655760405162461bcd60e51b815260206004820152603860248201527f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760448201527f6e6572206e6f7220617070726f76656420666f7220616c6c00000000000000006064820152608401610939565b610a6f838361193d565b505050565b6000610a7f60075490565b905090565b610a8e33826119ab565b610aaa5760405162461bcd60e51b815260040161093990612537565b610a6f838383611aa2565b6006546001600160a01b03163314610adf5760405162461bcd60e51b815260040161093990612588565b6012546301000000900460ff1615610af657600080fd5b600b55565b6006546001600160a01b03163314610b255760405162461bcd60e51b815260040161093990612588565b6012546301000000900460ff1615610b3c57600080fd5b6012805460ff19811660ff90911615179055565b6006546001600160a01b03163314610b7a5760405162461bcd60e51b815260040161093990612588565b6016546001600160a01b03166108fc6064610b964760056125d3565b610ba09190612608565b6040518115909202916000818181858888f19350505050158015610bc8573d6000803e3d6000fd5b506015546001600160a01b03166108fc6064610be54760036125d3565b610bef9190612608565b6040518115909202916000818181858888f19350505050158015610c17573d6000803e3d6000fd5b506014546040516001600160a01b03909116904780156108fc02916000818181858888f19350505050158015610c51573d6000803e3d6000fd5b50565b610a6f83838360405180602001604052806000815250610eb0565b6000818152600260205260408120546001600160a01b03168061082c5760405162461bcd60e51b815260206004820152602960248201527f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460448201526832b73a103a37b5b2b760b91b6064820152608401610939565b6006546001600160a01b03163314610d105760405162461bcd60e51b815260040161093990612588565b6012546301000000900460ff1615610d2757600080fd5b8051610d3a90600a90602084019061212c565b5050565b60006001600160a01b038216610da95760405162461bcd60e51b815260206004820152602a60248201527f4552433732313a2062616c616e636520717565727920666f7220746865207a65604482015269726f206164647265737360b01b6064820152608401610939565b506001600160a01b031660009081526003602052604090205490565b6006546001600160a01b03163314610def5760405162461bcd60e51b815260040161093990612588565b610df96000611c3e565b565b606060018054610841906124fc565b610d3a338383611c90565b600a8054610e22906124fc565b80601f0160208091040260200160405190810160405280929190818152602001828054610e4e906124fc565b8015610e9b5780601f10610e7057610100808354040283529160200191610e9b565b820191906000526020600020905b815481529060010190602001808311610e7e57829003601f168201915b505050505081565b60098054610e22906124fc565b610eba33836119ab565b610ed65760405162461bcd60e51b815260040161093990612537565b610ee284848484611d5f565b50505050565b6012546301000000900460ff1615610eff57600080fd5b60125462010000900460ff16610f4d5760405162461bcd60e51b8152602060048201526013602482015272283932b9b0b6329034b9903737ba1037b832b760691b6044820152606401610939565b80600b54610f5b91906125d3565b341015610fa05760405162461bcd60e51b8152602060048201526013602482015272496e73756666696369656e742066756e64732160681b6044820152606401610939565b60008111610fe35760405162461bcd60e51b815260206004820152601060248201526f27232a1030b6b7bab73a1032b93937b960811b6044820152606401610939565b60105481111561102c5760405162461bcd60e51b8152602060048201526014602482015273151bdbc81b585b9e481391951cc8135a5b9d195960621b6044820152606401610939565b6010543360009081526013602052604090205461104a90839061261c565b11156110915760405162461bcd60e51b8152602060048201526016602482015275115610d1515117d3919514d7d4115497d5d05313115560521b6044820152606401610939565b600f548161109e60075490565b6110a8919061261c565b11156110f65760405162461bcd60e51b815260206004820152601c60248201527f4d61782050726573616c6520737570706c7920657863656564656421000000006044820152606401610939565b60005b81811015610d3a5733600090815260136020526040812080549161111c83612634565b919050555061112f600780546001019055565b6111413361113c60075490565b611d92565b8061114b81612634565b9150506110f9565b6006546001600160a01b0316331461117d5760405162461bcd60e51b815260040161093990612588565b6012546301000000900460ff161561119457600080fd5b8051610d3a90600990602084019061212c565b6006546001600160a01b031633146111d15760405162461bcd60e51b815260040161093990612588565b6012546301000000900460ff16156111e857600080fd5b600c55565b6000818152600260205260409020546060906001600160a01b031661124b5760405162461bcd60e51b81526020600482015260146024820152731513d2d15397d113d154d7d393d517d1561254d560621b6044820152606401610939565b60006009805461125a906124fc565b80601f0160208091040260200160405190810160405280929190818152602001828054611286906124fc565b80156112d35780601f106112a8576101008083540402835291602001916112d3565b820191906000526020600020905b8154815290600101906020018083116112b657829003601f168201915b505060125493945050505060ff16611346576000600a80546112f4906124fc565b905011611310576040518060200160405280600081525061133f565b600a61131b84611dac565b601760405160200161132f939291906126e9565b6040516020818303038152906040525b9392505050565b6000815111611364576040518060200160405280600081525061133f565b8061136e84611dac565b601760405160200161132f9392919061271c565b6006546001600160a01b031633146113ac5760405162461bcd60e51b815260040161093990612588565b6012546301000000900460ff16156113c357600080fd5b6012805462ffff00198116620100009182900460ff161590910261ff001916179055565b6006546001600160a01b031633146114115760405162461bcd60e51b815260040161093990612588565b6012805463ff00000019166301000000179055565b6006546001600160a01b031633146114505760405162461bcd60e51b815260040161093990612588565b6012546301000000900460ff161561146757600080fd5b6012805462ffff001981166101009182900460ff161590910262ff00001916179055565b6006546001600160a01b031633146114b55760405162461bcd60e51b815260040161093990612588565b6012546301000000900460ff16156114cc57600080fd5b600e54826114d960085490565b6114e3919061261c565b11156115245760405162461bcd60e51b815260206004820152601060248201526f13585e0811da599d0814995858da195960821b6044820152606401610939565b601254610100900460ff1680611542575060125462010000900460ff165b6115805760405162461bcd60e51b815260206004820152600f60248201526e27379029b0b6329034b99027b832b760891b6044820152606401610939565b600f54600e54600d54611593919061261c565b61159d919061261c565b826115a760075490565b6115b1919061261c565b11156115f65760405162461bcd60e51b81526020600482015260146024820152734d617820737570706c792065786365656465642160601b6044820152606401610939565b60005b82811015610a6f5761160f600780546001019055565b61161c8261113c60075490565b8061162681612634565b9150506115f9565b6012546301000000900460ff161561164557600080fd5b601254610100900460ff166116935760405162461bcd60e51b8152602060048201526014602482015273283ab13634b19029b0b632903737ba1037b832b760611b6044820152606401610939565b600081116116d65760405162461bcd60e51b815260206004820152601060248201526f27232a1030b6b7bab73a1032b93937b960811b6044820152606401610939565b80600c546116e491906125d3565b3410156117295760405162461bcd60e51b8152602060048201526013602482015272496e73756666696369656e742066756e64732160681b6044820152606401610939565b6011548111156117725760405162461bcd60e51b8152602060048201526014602482015273151bdbc81b585b9e481391951cc8135a5b9d195960621b6044820152606401610939565b6011543360009081526013602052604090205461179090839061261c565b11156117d75760405162461bcd60e51b8152602060048201526016602482015275115610d1515117d3919514d7d4115497d5d05313115560521b6044820152606401610939565b600f54600e54600d546117ea919061261c565b6117f4919061261c565b816117fe60075490565b611808919061261c565b111561184d5760405162461bcd60e51b81526020600482015260146024820152734d617820737570706c792065786365656465642160601b6044820152606401610939565b60005b81811015610d3a5733600090815260136020526040812080549161187383612634565b9190505550611886600780546001019055565b6118933361113c60075490565b8061189d81612634565b915050611850565b6006546001600160a01b031633146118cf5760405162461bcd60e51b815260040161093990612588565b6001600160a01b0381166119345760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610939565b610c5181611c3e565b600081815260046020526040902080546001600160a01b0319166001600160a01b038416908117909155819061197282610c6f565b6001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b6000818152600260205260408120546001600160a01b0316611a245760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b6064820152608401610939565b6000611a2f83610c6f565b9050806001600160a01b0316846001600160a01b03161480611a6a5750836001600160a01b0316611a5f846108c4565b6001600160a01b0316145b80611a9a57506001600160a01b0380821660009081526005602090815260408083209388168352929052205460ff165b949350505050565b826001600160a01b0316611ab582610c6f565b6001600160a01b031614611b195760405162461bcd60e51b815260206004820152602560248201527f4552433732313a207472616e736665722066726f6d20696e636f72726563742060448201526437bbb732b960d91b6064820152608401610939565b6001600160a01b038216611b7b5760405162461bcd60e51b8152602060048201526024808201527f4552433732313a207472616e7366657220746f20746865207a65726f206164646044820152637265737360e01b6064820152608401610939565b611b8660008261193d565b6001600160a01b0383166000908152600360205260408120805460019290611baf908490612742565b90915550506001600160a01b0382166000908152600360205260408120805460019290611bdd90849061261c565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b0386811691821790925591518493918716917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef91a4505050565b600680546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b816001600160a01b0316836001600160a01b03161415611cf25760405162461bcd60e51b815260206004820152601960248201527f4552433732313a20617070726f766520746f2063616c6c6572000000000000006044820152606401610939565b6001600160a01b03838116600081815260056020908152604080832094871680845294825291829020805460ff191686151590811790915591519182527f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a3505050565b611d6a848484611aa2565b611d7684848484611eaa565b610ee25760405162461bcd60e51b815260040161093990612759565b610d3a828260405180602001604052806000815250611fb7565b606081611dd05750506040805180820190915260018152600360fc1b602082015290565b8160005b8115611dfa5780611de481612634565b9150611df39050600a83612608565b9150611dd4565b60008167ffffffffffffffff811115611e1557611e15612319565b6040519080825280601f01601f191660200182016040528015611e3f576020820181803683370190505b5090505b8415611a9a57611e54600183612742565b9150611e61600a866127ab565b611e6c90603061261c565b60f81b818381518110611e8157611e816127bf565b60200101906001600160f81b031916908160001a905350611ea3600a86612608565b9450611e43565b60006001600160a01b0384163b15611fac57604051630a85bd0160e11b81526001600160a01b0385169063150b7a0290611eee9033908990889088906004016127d5565b602060405180830381600087803b158015611f0857600080fd5b505af1925050508015611f38575060408051601f3d908101601f19168201909252611f3591810190612812565b60015b611f92573d808015611f66576040519150601f19603f3d011682016040523d82523d6000602084013e611f6b565b606091505b508051611f8a5760405162461bcd60e51b815260040161093990612759565b805181602001fd5b6001600160e01b031916630a85bd0160e11b149050611a9a565b506001949350505050565b611fc18383611fea565b611fce6000848484611eaa565b610a6f5760405162461bcd60e51b815260040161093990612759565b6001600160a01b0382166120405760405162461bcd60e51b815260206004820181905260248201527f4552433732313a206d696e7420746f20746865207a65726f20616464726573736044820152606401610939565b6000818152600260205260409020546001600160a01b0316156120a55760405162461bcd60e51b815260206004820152601c60248201527f4552433732313a20746f6b656e20616c7265616479206d696e746564000000006044820152606401610939565b6001600160a01b03821660009081526003602052604081208054600192906120ce90849061261c565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b03861690811790915590518392907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a45050565b828054612138906124fc565b90600052602060002090601f01602090048101928261215a57600085556121a0565b82601f1061217357805160ff19168380011785556121a0565b828001600101855582156121a0579182015b828111156121a0578251825591602001919060010190612185565b506121ac9291506121b0565b5090565b5b808211156121ac57600081556001016121b1565b6001600160e01b031981168114610c5157600080fd5b6000602082840312156121ed57600080fd5b813561133f816121c5565b60005b838110156122135781810151838201526020016121fb565b83811115610ee25750506000910152565b6000815180845261223c8160208601602086016121f8565b601f01601f19169290920160200192915050565b60208152600061133f6020830184612224565b60006020828403121561227557600080fd5b5035919050565b80356001600160a01b038116811461229357600080fd5b919050565b600080604083850312156122ab57600080fd5b6122b48361227c565b946020939093013593505050565b6000806000606084860312156122d757600080fd5b6122e08461227c565b92506122ee6020850161227c565b9150604084013590509250925092565b60006020828403121561231057600080fd5b61133f8261227c565b634e487b7160e01b600052604160045260246000fd5b600067ffffffffffffffff8084111561234a5761234a612319565b604051601f8501601f19908116603f0116810190828211818310171561237257612372612319565b8160405280935085815286868601111561238b57600080fd5b858560208301376000602087830101525050509392505050565b6000602082840312156123b757600080fd5b813567ffffffffffffffff8111156123ce57600080fd5b8201601f810184136123df57600080fd5b611a9a8482356020840161232f565b6000806040838503121561240157600080fd5b61240a8361227c565b91506020830135801515811461241f57600080fd5b809150509250929050565b6000806000806080858703121561244057600080fd5b6124498561227c565b93506124576020860161227c565b925060408501359150606085013567ffffffffffffffff81111561247a57600080fd5b8501601f8101871361248b57600080fd5b61249a8782356020840161232f565b91505092959194509250565b600080604083850312156124b957600080fd5b6124c28361227c565b91506124d06020840161227c565b90509250929050565b600080604083850312156124ec57600080fd5b823591506124d06020840161227c565b600181811c9082168061251057607f821691505b6020821081141561253157634e487b7160e01b600052602260045260246000fd5b50919050565b60208082526031908201527f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f6040820152701ddb995c881b9bdc88185c1c1c9bdd9959607a1b606082015260800190565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b634e487b7160e01b600052601160045260246000fd5b60008160001904831182151516156125ed576125ed6125bd565b500290565b634e487b7160e01b600052601260045260246000fd5b600082612617576126176125f2565b500490565b6000821982111561262f5761262f6125bd565b500190565b6000600019821415612648576126486125bd565b5060010190565b8054600090600181811c908083168061266957607f831692505b602080841082141561268b57634e487b7160e01b600052602260045260246000fd5b81801561269f57600181146126b0576126dd565b60ff198616895284890196506126dd565b60008881526020902060005b868110156126d55781548b8201529085019083016126bc565b505084890196505b50505050505092915050565b60006126f5828661264f565b84516127058183602089016121f8565b6127118183018661264f565b979650505050505050565b6000845161272e8184602089016121f8565b8451908301906127058183602089016121f8565b600082821015612754576127546125bd565b500390565b60208082526032908201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560408201527131b2b4bb32b91034b6b83632b6b2b73a32b960711b606082015260800190565b6000826127ba576127ba6125f2565b500690565b634e487b7160e01b600052603260045260246000fd5b6001600160a01b038581168252841660208201526040810183905260806060820181905260009061280890830184612224565b9695505050505050565b60006020828403121561282457600080fd5b815161133f816121c556fea26469706673582212205bd053393d74b0a64702a912648396409082c439ca7ce230f87d9cbbd3d2cffa64736f6c63430008090033697066733a2f2f516d50505a4b4855697266664a684b39505973414733455258764a4665504746485062656b50547871694672417a2f

Deployed Bytecode

0x60806040526004361061027c5760003560e01c80637effc0321161014f578063bee6348a116100c1578063e222c7f91161007a578063e222c7f914610710578063e985e9c514610725578063efbd73f41461076e578063efd0cbf91461078e578063f2fde38b146107a1578063f9e23799146107c157600080fd5b8063bee6348a14610665578063c627525514610685578063c87b56dd146106a5578063ca3cb522146106c5578063cf837fad146106da578063dadf1c76146106ef57600080fd5b8063a45ba8e711610113578063a45ba8e7146105d2578063a945bf80146105e7578063b4ce37d2146105fd578063b88d4fde14610612578063b988477214610632578063be632fb41461064557600080fd5b80637effc032146105495780638c97ca761461055f5780638da5cb5b1461057f57806395d89b411461059d578063a22cb465146105b257600080fd5b80633549345e116101f35780635edbc28c116101ac5780635edbc28c1461049e5780636352211e146104b457806368540920146104d45780637023ee2b146104f457806370a0823114610514578063715018a61461053457600080fd5b80633549345e146103ed5780633bd649681461040d5780633ccfd60b1461042257806342842e0e146104375780635183022714610457578063573e261a1461047157600080fd5b806315e0beb71161024557806315e0beb71461035657806317f7bece1461037657806318160ddd1461038c57806321bdb26e146103a157806323b872dd146103b757806326a74d8e146103d757600080fd5b80620e7fa81461028157806301ffc9a7146102aa57806306fdde03146102da578063081812fc146102fc578063095ea7b314610334575b600080fd5b34801561028d57600080fd5b50610297600b5481565b6040519081526020015b60405180910390f35b3480156102b657600080fd5b506102ca6102c53660046121db565b6107e0565b60405190151581526020016102a1565b3480156102e657600080fd5b506102ef610832565b6040516102a19190612250565b34801561030857600080fd5b5061031c610317366004612263565b6108c4565b6040516001600160a01b0390911681526020016102a1565b34801561034057600080fd5b5061035461034f366004612298565b61095e565b005b34801561036257600080fd5b5060155461031c906001600160a01b031681565b34801561038257600080fd5b5061029760115481565b34801561039857600080fd5b50610297610a74565b3480156103ad57600080fd5b50610297600f5481565b3480156103c357600080fd5b506103546103d23660046122c2565b610a84565b3480156103e357600080fd5b50610297600d5481565b3480156103f957600080fd5b50610354610408366004612263565b610ab5565b34801561041957600080fd5b50610354610afb565b34801561042e57600080fd5b50610354610b50565b34801561044357600080fd5b506103546104523660046122c2565b610c54565b34801561046357600080fd5b506012546102ca9060ff1681565b34801561047d57600080fd5b5061029761048c3660046122fe565b60136020526000908152604090205481565b3480156104aa57600080fd5b50610297600e5481565b3480156104c057600080fd5b5061031c6104cf366004612263565b610c6f565b3480156104e057600080fd5b506103546104ef3660046123a5565b610ce6565b34801561050057600080fd5b5060145461031c906001600160a01b031681565b34801561052057600080fd5b5061029761052f3660046122fe565b610d3e565b34801561054057600080fd5b50610354610dc5565b34801561055557600080fd5b5061029760105481565b34801561056b57600080fd5b5060165461031c906001600160a01b031681565b34801561058b57600080fd5b506006546001600160a01b031661031c565b3480156105a957600080fd5b506102ef610dfb565b3480156105be57600080fd5b506103546105cd3660046123ee565b610e0a565b3480156105de57600080fd5b506102ef610e15565b3480156105f357600080fd5b50610297600c5481565b34801561060957600080fd5b506102ef610ea3565b34801561061e57600080fd5b5061035461062d36600461242a565b610eb0565b610354610640366004612263565b610ee8565b34801561065157600080fd5b506103546106603660046123a5565b611153565b34801561067157600080fd5b506012546102ca9062010000900460ff1681565b34801561069157600080fd5b506103546106a0366004612263565b6111a7565b3480156106b157600080fd5b506102ef6106c0366004612263565b6111ed565b3480156106d157600080fd5b50610354611382565b3480156106e657600080fd5b506103546113e7565b3480156106fb57600080fd5b506012546102ca906301000000900460ff1681565b34801561071c57600080fd5b50610354611426565b34801561073157600080fd5b506102ca6107403660046124a6565b6001600160a01b03918216600090815260056020908152604080832093909416825291909152205460ff1690565b34801561077a57600080fd5b506103546107893660046124d9565b61148b565b61035461079c366004612263565b61162e565b3480156107ad57600080fd5b506103546107bc3660046122fe565b6118a5565b3480156107cd57600080fd5b506012546102ca90610100900460ff1681565b60006001600160e01b031982166380ac58cd60e01b148061081157506001600160e01b03198216635b5e139f60e01b145b8061082c57506301ffc9a760e01b6001600160e01b03198316145b92915050565b606060008054610841906124fc565b80601f016020809104026020016040519081016040528092919081815260200182805461086d906124fc565b80156108ba5780601f1061088f576101008083540402835291602001916108ba565b820191906000526020600020905b81548152906001019060200180831161089d57829003601f168201915b5050505050905090565b6000818152600260205260408120546001600160a01b03166109425760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b60648201526084015b60405180910390fd5b506000908152600460205260409020546001600160a01b031690565b600061096982610c6f565b9050806001600160a01b0316836001600160a01b031614156109d75760405162461bcd60e51b815260206004820152602160248201527f4552433732313a20617070726f76616c20746f2063757272656e74206f776e656044820152603960f91b6064820152608401610939565b336001600160a01b03821614806109f357506109f38133610740565b610a655760405162461bcd60e51b815260206004820152603860248201527f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760448201527f6e6572206e6f7220617070726f76656420666f7220616c6c00000000000000006064820152608401610939565b610a6f838361193d565b505050565b6000610a7f60075490565b905090565b610a8e33826119ab565b610aaa5760405162461bcd60e51b815260040161093990612537565b610a6f838383611aa2565b6006546001600160a01b03163314610adf5760405162461bcd60e51b815260040161093990612588565b6012546301000000900460ff1615610af657600080fd5b600b55565b6006546001600160a01b03163314610b255760405162461bcd60e51b815260040161093990612588565b6012546301000000900460ff1615610b3c57600080fd5b6012805460ff19811660ff90911615179055565b6006546001600160a01b03163314610b7a5760405162461bcd60e51b815260040161093990612588565b6016546001600160a01b03166108fc6064610b964760056125d3565b610ba09190612608565b6040518115909202916000818181858888f19350505050158015610bc8573d6000803e3d6000fd5b506015546001600160a01b03166108fc6064610be54760036125d3565b610bef9190612608565b6040518115909202916000818181858888f19350505050158015610c17573d6000803e3d6000fd5b506014546040516001600160a01b03909116904780156108fc02916000818181858888f19350505050158015610c51573d6000803e3d6000fd5b50565b610a6f83838360405180602001604052806000815250610eb0565b6000818152600260205260408120546001600160a01b03168061082c5760405162461bcd60e51b815260206004820152602960248201527f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460448201526832b73a103a37b5b2b760b91b6064820152608401610939565b6006546001600160a01b03163314610d105760405162461bcd60e51b815260040161093990612588565b6012546301000000900460ff1615610d2757600080fd5b8051610d3a90600a90602084019061212c565b5050565b60006001600160a01b038216610da95760405162461bcd60e51b815260206004820152602a60248201527f4552433732313a2062616c616e636520717565727920666f7220746865207a65604482015269726f206164647265737360b01b6064820152608401610939565b506001600160a01b031660009081526003602052604090205490565b6006546001600160a01b03163314610def5760405162461bcd60e51b815260040161093990612588565b610df96000611c3e565b565b606060018054610841906124fc565b610d3a338383611c90565b600a8054610e22906124fc565b80601f0160208091040260200160405190810160405280929190818152602001828054610e4e906124fc565b8015610e9b5780601f10610e7057610100808354040283529160200191610e9b565b820191906000526020600020905b815481529060010190602001808311610e7e57829003601f168201915b505050505081565b60098054610e22906124fc565b610eba33836119ab565b610ed65760405162461bcd60e51b815260040161093990612537565b610ee284848484611d5f565b50505050565b6012546301000000900460ff1615610eff57600080fd5b60125462010000900460ff16610f4d5760405162461bcd60e51b8152602060048201526013602482015272283932b9b0b6329034b9903737ba1037b832b760691b6044820152606401610939565b80600b54610f5b91906125d3565b341015610fa05760405162461bcd60e51b8152602060048201526013602482015272496e73756666696369656e742066756e64732160681b6044820152606401610939565b60008111610fe35760405162461bcd60e51b815260206004820152601060248201526f27232a1030b6b7bab73a1032b93937b960811b6044820152606401610939565b60105481111561102c5760405162461bcd60e51b8152602060048201526014602482015273151bdbc81b585b9e481391951cc8135a5b9d195960621b6044820152606401610939565b6010543360009081526013602052604090205461104a90839061261c565b11156110915760405162461bcd60e51b8152602060048201526016602482015275115610d1515117d3919514d7d4115497d5d05313115560521b6044820152606401610939565b600f548161109e60075490565b6110a8919061261c565b11156110f65760405162461bcd60e51b815260206004820152601c60248201527f4d61782050726573616c6520737570706c7920657863656564656421000000006044820152606401610939565b60005b81811015610d3a5733600090815260136020526040812080549161111c83612634565b919050555061112f600780546001019055565b6111413361113c60075490565b611d92565b8061114b81612634565b9150506110f9565b6006546001600160a01b0316331461117d5760405162461bcd60e51b815260040161093990612588565b6012546301000000900460ff161561119457600080fd5b8051610d3a90600990602084019061212c565b6006546001600160a01b031633146111d15760405162461bcd60e51b815260040161093990612588565b6012546301000000900460ff16156111e857600080fd5b600c55565b6000818152600260205260409020546060906001600160a01b031661124b5760405162461bcd60e51b81526020600482015260146024820152731513d2d15397d113d154d7d393d517d1561254d560621b6044820152606401610939565b60006009805461125a906124fc565b80601f0160208091040260200160405190810160405280929190818152602001828054611286906124fc565b80156112d35780601f106112a8576101008083540402835291602001916112d3565b820191906000526020600020905b8154815290600101906020018083116112b657829003601f168201915b505060125493945050505060ff16611346576000600a80546112f4906124fc565b905011611310576040518060200160405280600081525061133f565b600a61131b84611dac565b601760405160200161132f939291906126e9565b6040516020818303038152906040525b9392505050565b6000815111611364576040518060200160405280600081525061133f565b8061136e84611dac565b601760405160200161132f9392919061271c565b6006546001600160a01b031633146113ac5760405162461bcd60e51b815260040161093990612588565b6012546301000000900460ff16156113c357600080fd5b6012805462ffff00198116620100009182900460ff161590910261ff001916179055565b6006546001600160a01b031633146114115760405162461bcd60e51b815260040161093990612588565b6012805463ff00000019166301000000179055565b6006546001600160a01b031633146114505760405162461bcd60e51b815260040161093990612588565b6012546301000000900460ff161561146757600080fd5b6012805462ffff001981166101009182900460ff161590910262ff00001916179055565b6006546001600160a01b031633146114b55760405162461bcd60e51b815260040161093990612588565b6012546301000000900460ff16156114cc57600080fd5b600e54826114d960085490565b6114e3919061261c565b11156115245760405162461bcd60e51b815260206004820152601060248201526f13585e0811da599d0814995858da195960821b6044820152606401610939565b601254610100900460ff1680611542575060125462010000900460ff165b6115805760405162461bcd60e51b815260206004820152600f60248201526e27379029b0b6329034b99027b832b760891b6044820152606401610939565b600f54600e54600d54611593919061261c565b61159d919061261c565b826115a760075490565b6115b1919061261c565b11156115f65760405162461bcd60e51b81526020600482015260146024820152734d617820737570706c792065786365656465642160601b6044820152606401610939565b60005b82811015610a6f5761160f600780546001019055565b61161c8261113c60075490565b8061162681612634565b9150506115f9565b6012546301000000900460ff161561164557600080fd5b601254610100900460ff166116935760405162461bcd60e51b8152602060048201526014602482015273283ab13634b19029b0b632903737ba1037b832b760611b6044820152606401610939565b600081116116d65760405162461bcd60e51b815260206004820152601060248201526f27232a1030b6b7bab73a1032b93937b960811b6044820152606401610939565b80600c546116e491906125d3565b3410156117295760405162461bcd60e51b8152602060048201526013602482015272496e73756666696369656e742066756e64732160681b6044820152606401610939565b6011548111156117725760405162461bcd60e51b8152602060048201526014602482015273151bdbc81b585b9e481391951cc8135a5b9d195960621b6044820152606401610939565b6011543360009081526013602052604090205461179090839061261c565b11156117d75760405162461bcd60e51b8152602060048201526016602482015275115610d1515117d3919514d7d4115497d5d05313115560521b6044820152606401610939565b600f54600e54600d546117ea919061261c565b6117f4919061261c565b816117fe60075490565b611808919061261c565b111561184d5760405162461bcd60e51b81526020600482015260146024820152734d617820737570706c792065786365656465642160601b6044820152606401610939565b60005b81811015610d3a5733600090815260136020526040812080549161187383612634565b9190505550611886600780546001019055565b6118933361113c60075490565b8061189d81612634565b915050611850565b6006546001600160a01b031633146118cf5760405162461bcd60e51b815260040161093990612588565b6001600160a01b0381166119345760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610939565b610c5181611c3e565b600081815260046020526040902080546001600160a01b0319166001600160a01b038416908117909155819061197282610c6f565b6001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b6000818152600260205260408120546001600160a01b0316611a245760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b6064820152608401610939565b6000611a2f83610c6f565b9050806001600160a01b0316846001600160a01b03161480611a6a5750836001600160a01b0316611a5f846108c4565b6001600160a01b0316145b80611a9a57506001600160a01b0380821660009081526005602090815260408083209388168352929052205460ff165b949350505050565b826001600160a01b0316611ab582610c6f565b6001600160a01b031614611b195760405162461bcd60e51b815260206004820152602560248201527f4552433732313a207472616e736665722066726f6d20696e636f72726563742060448201526437bbb732b960d91b6064820152608401610939565b6001600160a01b038216611b7b5760405162461bcd60e51b8152602060048201526024808201527f4552433732313a207472616e7366657220746f20746865207a65726f206164646044820152637265737360e01b6064820152608401610939565b611b8660008261193d565b6001600160a01b0383166000908152600360205260408120805460019290611baf908490612742565b90915550506001600160a01b0382166000908152600360205260408120805460019290611bdd90849061261c565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b0386811691821790925591518493918716917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef91a4505050565b600680546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b816001600160a01b0316836001600160a01b03161415611cf25760405162461bcd60e51b815260206004820152601960248201527f4552433732313a20617070726f766520746f2063616c6c6572000000000000006044820152606401610939565b6001600160a01b03838116600081815260056020908152604080832094871680845294825291829020805460ff191686151590811790915591519182527f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a3505050565b611d6a848484611aa2565b611d7684848484611eaa565b610ee25760405162461bcd60e51b815260040161093990612759565b610d3a828260405180602001604052806000815250611fb7565b606081611dd05750506040805180820190915260018152600360fc1b602082015290565b8160005b8115611dfa5780611de481612634565b9150611df39050600a83612608565b9150611dd4565b60008167ffffffffffffffff811115611e1557611e15612319565b6040519080825280601f01601f191660200182016040528015611e3f576020820181803683370190505b5090505b8415611a9a57611e54600183612742565b9150611e61600a866127ab565b611e6c90603061261c565b60f81b818381518110611e8157611e816127bf565b60200101906001600160f81b031916908160001a905350611ea3600a86612608565b9450611e43565b60006001600160a01b0384163b15611fac57604051630a85bd0160e11b81526001600160a01b0385169063150b7a0290611eee9033908990889088906004016127d5565b602060405180830381600087803b158015611f0857600080fd5b505af1925050508015611f38575060408051601f3d908101601f19168201909252611f3591810190612812565b60015b611f92573d808015611f66576040519150601f19603f3d011682016040523d82523d6000602084013e611f6b565b606091505b508051611f8a5760405162461bcd60e51b815260040161093990612759565b805181602001fd5b6001600160e01b031916630a85bd0160e11b149050611a9a565b506001949350505050565b611fc18383611fea565b611fce6000848484611eaa565b610a6f5760405162461bcd60e51b815260040161093990612759565b6001600160a01b0382166120405760405162461bcd60e51b815260206004820181905260248201527f4552433732313a206d696e7420746f20746865207a65726f20616464726573736044820152606401610939565b6000818152600260205260409020546001600160a01b0316156120a55760405162461bcd60e51b815260206004820152601c60248201527f4552433732313a20746f6b656e20616c7265616479206d696e746564000000006044820152606401610939565b6001600160a01b03821660009081526003602052604081208054600192906120ce90849061261c565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b03861690811790915590518392907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a45050565b828054612138906124fc565b90600052602060002090601f01602090048101928261215a57600085556121a0565b82601f1061217357805160ff19168380011785556121a0565b828001600101855582156121a0579182015b828111156121a0578251825591602001919060010190612185565b506121ac9291506121b0565b5090565b5b808211156121ac57600081556001016121b1565b6001600160e01b031981168114610c5157600080fd5b6000602082840312156121ed57600080fd5b813561133f816121c5565b60005b838110156122135781810151838201526020016121fb565b83811115610ee25750506000910152565b6000815180845261223c8160208601602086016121f8565b601f01601f19169290920160200192915050565b60208152600061133f6020830184612224565b60006020828403121561227557600080fd5b5035919050565b80356001600160a01b038116811461229357600080fd5b919050565b600080604083850312156122ab57600080fd5b6122b48361227c565b946020939093013593505050565b6000806000606084860312156122d757600080fd5b6122e08461227c565b92506122ee6020850161227c565b9150604084013590509250925092565b60006020828403121561231057600080fd5b61133f8261227c565b634e487b7160e01b600052604160045260246000fd5b600067ffffffffffffffff8084111561234a5761234a612319565b604051601f8501601f19908116603f0116810190828211818310171561237257612372612319565b8160405280935085815286868601111561238b57600080fd5b858560208301376000602087830101525050509392505050565b6000602082840312156123b757600080fd5b813567ffffffffffffffff8111156123ce57600080fd5b8201601f810184136123df57600080fd5b611a9a8482356020840161232f565b6000806040838503121561240157600080fd5b61240a8361227c565b91506020830135801515811461241f57600080fd5b809150509250929050565b6000806000806080858703121561244057600080fd5b6124498561227c565b93506124576020860161227c565b925060408501359150606085013567ffffffffffffffff81111561247a57600080fd5b8501601f8101871361248b57600080fd5b61249a8782356020840161232f565b91505092959194509250565b600080604083850312156124b957600080fd5b6124c28361227c565b91506124d06020840161227c565b90509250929050565b600080604083850312156124ec57600080fd5b823591506124d06020840161227c565b600181811c9082168061251057607f821691505b6020821081141561253157634e487b7160e01b600052602260045260246000fd5b50919050565b60208082526031908201527f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f6040820152701ddb995c881b9bdc88185c1c1c9bdd9959607a1b606082015260800190565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b634e487b7160e01b600052601160045260246000fd5b60008160001904831182151516156125ed576125ed6125bd565b500290565b634e487b7160e01b600052601260045260246000fd5b600082612617576126176125f2565b500490565b6000821982111561262f5761262f6125bd565b500190565b6000600019821415612648576126486125bd565b5060010190565b8054600090600181811c908083168061266957607f831692505b602080841082141561268b57634e487b7160e01b600052602260045260246000fd5b81801561269f57600181146126b0576126dd565b60ff198616895284890196506126dd565b60008881526020902060005b868110156126d55781548b8201529085019083016126bc565b505084890196505b50505050505092915050565b60006126f5828661264f565b84516127058183602089016121f8565b6127118183018661264f565b979650505050505050565b6000845161272e8184602089016121f8565b8451908301906127058183602089016121f8565b600082821015612754576127546125bd565b500390565b60208082526032908201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560408201527131b2b4bb32b91034b6b83632b6b2b73a32b960711b606082015260800190565b6000826127ba576127ba6125f2565b500690565b634e487b7160e01b600052603260045260246000fd5b6001600160a01b038581168252841660208201526040810183905260806060820181905260009061280890830184612224565b9695505050505050565b60006020828403121561282457600080fd5b815161133f816121c556fea26469706673582212205bd053393d74b0a64702a912648396409082c439ca7ce230f87d9cbbd3d2cffa64736f6c63430008090033

Deployed Bytecode Sourcemap

38813:6236:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;39120:41;;;;;;;;;;;;;;;;;;;160:25:1;;;148:2;133:18;39120:41:0;;;;;;;;25574:305;;;;;;;;;;-1:-1:-1;25574:305:0;;;;;:::i;:::-;;:::i;:::-;;;747:14:1;;740:22;722:41;;710:2;695:18;25574:305:0;582:187:1;26519:100:0;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;28078:221::-;;;;;;;;;;-1:-1:-1;28078:221:0;;;;;:::i;:::-;;:::i;:::-;;;-1:-1:-1;;;;;1874:32:1;;;1856:51;;1844:2;1829:18;28078:221:0;1710:203:1;27601:411:0;;;;;;;;;;-1:-1:-1;27601:411:0;;;;;:::i;:::-;;:::i;:::-;;39821:73;;;;;;;;;;-1:-1:-1;39821:73:0;;;;-1:-1:-1;;;;;39821:73:0;;;39412:39;;;;;;;;;;;;;;;;40217:85;;;;;;;;;;;;;:::i;39315:37::-;;;;;;;;;;;;;;;;28828:339;;;;;;;;;;-1:-1:-1;28828:339:0;;;;;:::i;:::-;;:::i;39219:37::-;;;;;;;;;;;;;;;;43471:132;;;;;;;;;;-1:-1:-1;43471:132:0;;;;;:::i;:::-;;:::i;43212:115::-;;;;;;;;;;;;;:::i;44554:281::-;;;;;;;;;;;;;:::i;29238:185::-;;;;;;;;;;-1:-1:-1;29238:185:0;;;;;:::i;:::-;;:::i;39461:28::-;;;;;;;;;;-1:-1:-1;39461:28:0;;;;;;;;39658:51;;;;;;;;;;-1:-1:-1;39658:51:0;;;;;:::i;:::-;;;;;;;;;;;;;;39267:33;;;;;;;;;;;;;;;;26213:239;;;;;;;;;;-1:-1:-1;26213:239:0;;;;;:::i;:::-;;:::i;43793:172::-;;;;;;;;;;-1:-1:-1;43793:172:0;;;;;:::i;:::-;;:::i;39722:77::-;;;;;;;;;;-1:-1:-1;39722:77:0;;;;-1:-1:-1;;;;;39722:77:0;;;25943:208;;;;;;;;;;-1:-1:-1;25943:208:0;;;;;:::i;:::-;;:::i;6195:103::-;;;;;;;;;;;;;:::i;39362:39::-;;;;;;;;;;;;;;;;39915:72;;;;;;;;;;-1:-1:-1;39915:72:0;;;;-1:-1:-1;;;;;39915:72:0;;;5544:87;;;;;;;;;;-1:-1:-1;5617:6:0;;-1:-1:-1;;;;;5617:6:0;5544:87;;26688:104;;;;;;;;;;;;;:::i;28371:155::-;;;;;;;;;;-1:-1:-1;28371:155:0;;;;;:::i;:::-;;:::i;39059:31::-;;;;;;;;;;;;;:::i;39170:39::-;;;;;;;;;;;;;;;;39024:28;;;;;;;;;;;;;:::i;29494:328::-;;;;;;;;;;-1:-1:-1;29494:328:0;;;;;:::i;:::-;;:::i;40310:852::-;;;;;;:::i;:::-;;:::i;43973:140::-;;;;;;;;;;-1:-1:-1;43973:140:0;;;;;:::i;:::-;;:::i;39564:31::-;;;;;;;;;;-1:-1:-1;39564:31:0;;;;;;;;;;;43335:130;;;;;;;;;;-1:-1:-1;43335:130:0;;;;;:::i;:::-;;:::i;42674:530::-;;;;;;;;;;-1:-1:-1;42674:530:0;;;;;:::i;:::-;;:::i;44341:183::-;;;;;;;;;;;;;:::i;44963:83::-;;;;;;;;;;;;;:::i;39610:33::-;;;;;;;;;;-1:-1:-1;39610:33:0;;;;;;;;;;;44121:212;;;;;;;;;;;;;:::i;28597:164::-;;;;;;;;;;-1:-1:-1;28597:164:0;;;;;:::i;:::-;-1:-1:-1;;;;;28718:25:0;;;28694:4;28718:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;;;;28597:164;42055:607;;;;;;;;;;-1:-1:-1;42055:607:0;;;;;:::i;:::-;;:::i;41174:873::-;;;;;;:::i;:::-;;:::i;6453:201::-;;;;;;;;;;-1:-1:-1;6453:201:0;;;;;:::i;:::-;;:::i;39517:34::-;;;;;;;;;;-1:-1:-1;39517:34:0;;;;;;;;;;;25574:305;25676:4;-1:-1:-1;;;;;;25713:40:0;;-1:-1:-1;;;25713:40:0;;:105;;-1:-1:-1;;;;;;;25770:48:0;;-1:-1:-1;;;25770:48:0;25713:105;:158;;;-1:-1:-1;;;;;;;;;;18437:40:0;;;25835:36;25693:178;25574:305;-1:-1:-1;;25574:305:0:o;26519:100::-;26573:13;26606:5;26599:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;26519:100;:::o;28078:221::-;28154:7;31421:16;;;:7;:16;;;;;;-1:-1:-1;;;;;31421:16:0;28174:73;;;;-1:-1:-1;;;28174:73:0;;6239:2:1;28174:73:0;;;6221:21:1;6278:2;6258:18;;;6251:30;6317:34;6297:18;;;6290:62;-1:-1:-1;;;6368:18:1;;;6361:42;6420:19;;28174:73:0;;;;;;;;;-1:-1:-1;28267:24:0;;;;:15;:24;;;;;;-1:-1:-1;;;;;28267:24:0;;28078:221::o;27601:411::-;27682:13;27698:23;27713:7;27698:14;:23::i;:::-;27682:39;;27746:5;-1:-1:-1;;;;;27740:11:0;:2;-1:-1:-1;;;;;27740:11:0;;;27732:57;;;;-1:-1:-1;;;27732:57:0;;6652:2:1;27732:57:0;;;6634:21:1;6691:2;6671:18;;;6664:30;6730:34;6710:18;;;6703:62;-1:-1:-1;;;6781:18:1;;;6774:31;6822:19;;27732:57:0;6450:397:1;27732:57:0;4348:10;-1:-1:-1;;;;;27824:21:0;;;;:62;;-1:-1:-1;27849:37:0;27866:5;4348:10;28597:164;:::i;27849:37::-;27802:168;;;;-1:-1:-1;;;27802:168:0;;7054:2:1;27802:168:0;;;7036:21:1;7093:2;7073:18;;;7066:30;7132:34;7112:18;;;7105:62;7203:26;7183:18;;;7176:54;7247:19;;27802:168:0;6852:420:1;27802:168:0;27983:21;27992:2;27996:7;27983:8;:21::i;:::-;27671:341;27601:411;;:::o;40217:85::-;40261:7;40282:16;:6;964:14;;872:114;40282:16;40275:23;;40217:85;:::o;28828:339::-;29023:41;4348:10;29056:7;29023:18;:41::i;:::-;29015:103;;;;-1:-1:-1;;;29015:103:0;;;;;;;:::i;:::-;29131:28;29141:4;29147:2;29151:7;29131:9;:28::i;43471:132::-;5617:6;;-1:-1:-1;;;;;5617:6:0;4348:10;5764:23;5756:68;;;;-1:-1:-1;;;5756:68:0;;;;;;;:::i;:::-;43550:13:::1;::::0;;;::::1;;;43549:14;43541:23;;;::::0;::::1;;43575:12;:20:::0;43471:132::o;43212:115::-;5617:6;;-1:-1:-1;;;;;5617:6:0;4348:10;5764:23;5756:68;;;;-1:-1:-1;;;5756:68:0;;;;;;;:::i;:::-;43274:13:::1;::::0;;;::::1;;;43273:14;43265:23;;;::::0;::::1;;43311:8;::::0;;-1:-1:-1;;43299:20:0;::::1;43311:8;::::0;;::::1;43310:9;43299:20;::::0;;43212:115::o;44554:281::-;5617:6;;-1:-1:-1;;;;;5617:6:0;4348:10;5764:23;5756:68;;;;-1:-1:-1;;;5756:68:0;;;;;;;:::i;:::-;44616:12:::1;::::0;-1:-1:-1;;;;;44616:12:0::1;44608:63;44667:3;44639:26;:21;44664:1;44639:26;:::i;:::-;:31;;;;:::i;:::-;44608:63;::::0;;::::1;::::0;;::::1;::::0;::::1;::::0;;;;;;::::1;;;;;;;;;;;;;::::0;::::1;;;;;-1:-1:-1::0;44694:13:0::1;::::0;-1:-1:-1;;;;;44694:13:0::1;44686:64;44746:3;44718:25;:21;44742:1;44718:25;:::i;:::-;:31;;;;:::i;:::-;44686:64;::::0;;::::1;::::0;;::::1;::::0;::::1;::::0;;;;;;::::1;;;;;;;;;;;;;::::0;::::1;;;;;-1:-1:-1::0;44773:17:0::1;::::0;44765:58:::1;::::0;-1:-1:-1;;;;;44773:17:0;;::::1;::::0;44801:21:::1;44765:58:::0;::::1;;;::::0;44773:17:::1;44765:58:::0;44773:17;44765:58;44801:21;44773:17;44765:58;::::1;;;;;;;;;;;;;::::0;::::1;;;;;;44554:281::o:0;29238:185::-;29376:39;29393:4;29399:2;29403:7;29376:39;;;;;;;;;;;;:16;:39::i;26213:239::-;26285:7;26321:16;;;:7;:16;;;;;;-1:-1:-1;;;;;26321:16:0;26356:19;26348:73;;;;-1:-1:-1;;;26348:73:0;;8820:2:1;26348:73:0;;;8802:21:1;8859:2;8839:18;;;8832:30;8898:34;8878:18;;;8871:62;-1:-1:-1;;;8949:18:1;;;8942:39;8998:19;;26348:73:0;8618:405:1;43793:172:0;5617:6;;-1:-1:-1;;;;;5617:6:0;4348:10;5764:23;5756:68;;;;-1:-1:-1;;;5756:68:0;;;;;;;:::i;:::-;43894:13:::1;::::0;;;::::1;;;43893:14;43885:23;;;::::0;::::1;;43919:38:::0;;::::1;::::0;:17:::1;::::0;:38:::1;::::0;::::1;::::0;::::1;:::i;:::-;;43793:172:::0;:::o;25943:208::-;26015:7;-1:-1:-1;;;;;26043:19:0;;26035:74;;;;-1:-1:-1;;;26035:74:0;;9230:2:1;26035:74:0;;;9212:21:1;9269:2;9249:18;;;9242:30;9308:34;9288:18;;;9281:62;-1:-1:-1;;;9359:18:1;;;9352:40;9409:19;;26035:74:0;9028:406:1;26035:74:0;-1:-1:-1;;;;;;26127:16:0;;;;;:9;:16;;;;;;;25943:208::o;6195:103::-;5617:6;;-1:-1:-1;;;;;5617:6:0;4348:10;5764:23;5756:68;;;;-1:-1:-1;;;5756:68:0;;;;;;;:::i;:::-;6260:30:::1;6287:1;6260:18;:30::i;:::-;6195:103::o:0;26688:104::-;26744:13;26777:7;26770:14;;;;;:::i;28371:155::-;28466:52;4348:10;28499:8;28509;28466:18;:52::i;39059:31::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;39024:28::-;;;;;;;:::i;29494:328::-;29669:41;4348:10;29702:7;29669:18;:41::i;:::-;29661:103;;;;-1:-1:-1;;;29661:103:0;;;;;;;:::i;:::-;29775:39;29789:4;29795:2;29799:7;29808:5;29775:13;:39::i;:::-;29494:328;;;;:::o;40310:852::-;40388:13;;;;;;;40387:14;40379:23;;;;;;40421:11;;;;;;;40413:43;;;;-1:-1:-1;;;40413:43:0;;9641:2:1;40413:43:0;;;9623:21:1;9680:2;9660:18;;;9653:30;-1:-1:-1;;;9699:18:1;;;9692:49;9758:18;;40413:43:0;9439:343:1;40413:43:0;40507:11;40492:12;;:26;;;;:::i;:::-;40479:9;:39;;40471:71;;;;-1:-1:-1;;;40471:71:0;;9989:2:1;40471:71:0;;;9971:21:1;10028:2;10008:18;;;10001:30;-1:-1:-1;;;10047:18:1;;;10040:49;10106:18;;40471:71:0;9787:343:1;40471:71:0;40573:1;40561:11;:13;40553:41;;;;-1:-1:-1;;;40553:41:0;;10337:2:1;40553:41:0;;;10319:21:1;10376:2;10356:18;;;10349:30;-1:-1:-1;;;10395:18:1;;;10388:46;10451:18;;40553:41:0;10135:340:1;40553:41:0;40628:20;;40613:11;:35;;40605:68;;;;-1:-1:-1;;;40605:68:0;;10682:2:1;40605:68:0;;;10664:21:1;10721:2;10701:18;;;10694:30;-1:-1:-1;;;10740:18:1;;;10733:50;10800:18;;40605:68:0;10480:344:1;40605:68:0;40736:20;;40709:10;40692:28;;;;:16;:28;;;;;;:40;;40721:11;;40692:40;:::i;:::-;:64;;40684:99;;;;-1:-1:-1;;;40684:99:0;;11164:2:1;40684:99:0;;;11146:21:1;11203:2;11183:18;;;11176:30;-1:-1:-1;;;11222:18:1;;;11215:52;11284:18;;40684:99:0;10962:346:1;40684:99:0;40885:16;;40870:11;40851:16;:6;964:14;;872:114;40851:16;:30;;;;:::i;:::-;:50;;40843:91;;;;-1:-1:-1;;;40843:91:0;;11515:2:1;40843:91:0;;;11497:21:1;11554:2;11534:18;;;11527:30;11593;11573:18;;;11566:58;11641:18;;40843:91:0;11313:352:1;40843:91:0;40974:9;40969:186;40993:11;40989:1;:15;40969:186;;;41043:10;41026:28;;;;:16;:28;;;;;:30;;;;;;:::i;:::-;;;;;;41071:18;:6;1083:19;;1101:1;1083:19;;;994:127;41071:18;41104:39;41114:10;41126:16;:6;964:14;;872:114;41126:16;41104:9;:39::i;:::-;41006:3;;;;:::i;:::-;;;;40969:186;;43973:140;5617:6;;-1:-1:-1;;;;;5617:6:0;4348:10;5764:23;5756:68;;;;-1:-1:-1;;;5756:68:0;;;;;;;:::i;:::-;44058:13:::1;::::0;;;::::1;;;44057:14;44049:23;;;::::0;::::1;;44083:22:::0;;::::1;::::0;:9:::1;::::0;:22:::1;::::0;::::1;::::0;::::1;:::i;43335:130::-:0;5617:6;;-1:-1:-1;;;;;5617:6:0;4348:10;5764:23;5756:68;;;;-1:-1:-1;;;5756:68:0;;;;;;;:::i;:::-;43413:13:::1;::::0;;;::::1;;;43412:14;43404:23;;;::::0;::::1;;43438:11;:19:::0;43335:130::o;42674:530::-;31397:4;31421:16;;;:7;:16;;;;;;42749:13;;-1:-1:-1;;;;;31421:16:0;42780:50;;;;-1:-1:-1;;;42780:50:0;;12012:2:1;42780:50:0;;;11994:21:1;12051:2;12031:18;;;12024:30;-1:-1:-1;;;12070:18:1;;;12063:50;12130:18;;42780:50:0;11810:344:1;42780:50:0;42841:28;42872:9;42841:40;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;42896:8:0;;42841:40;;-1:-1:-1;;;;42896:8:0;;42892:176;;42973:1;42945:17;42939:31;;;;;:::i;:::-;;;:35;:117;;;;;;;;;;;;;;;;;43001:17;43020:19;:8;:17;:19::i;:::-;43041:9;42984:67;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;42939:117;42932:124;42674:530;-1:-1:-1;;;42674:530:0:o;42892:176::-;43116:1;43091:14;43085:28;:32;:111;;;;;;;;;;;;;;;;;43144:14;43160:19;:8;:17;:19::i;:::-;43181:9;43127:64;;;;;;;;;;:::i;44341:183::-;5617:6;;-1:-1:-1;;;;;5617:6:0;4348:10;5764:23;5756:68;;;;-1:-1:-1;;;5756:68:0;;;;;;;:::i;:::-;44405:13:::1;::::0;;;::::1;;;44404:14;44396:23;;;::::0;::::1;;44445:11;::::0;;-1:-1:-1;;44467:22:0;;44445:11;;;;::::1;;;44444:12;44430:26:::0;;::::1;-1:-1:-1::0;;44467:22:0;;;;44341:183::o;44963:83::-;5617:6;;-1:-1:-1;;;;;5617:6:0;4348:10;5764:23;5756:68;;;;-1:-1:-1;;;5756:68:0;;;;;;;:::i;:::-;45017:13:::1;:20:::0;;-1:-1:-1;;45017:20:0::1;::::0;::::1;::::0;;44963:83::o;44121:212::-;5617:6;;-1:-1:-1;;;;;5617:6:0;4348:10;5764:23;5756:68;;;;-1:-1:-1;;;5756:68:0;;;;;;;:::i;:::-;44188:13:::1;::::0;;;::::1;;;44187:14;44179:23;;;::::0;::::1;;44231:14;::::0;;-1:-1:-1;;44256:19:0;;44231:14:::1;::::0;;;::::1;;;44230:15;44213:32:::0;;::::1;-1:-1:-1::0;;44256:19:0;;;;44121:212::o;42055:607::-;5617:6;;-1:-1:-1;;;;;5617:6:0;4348:10;5764:23;5756:68;;;;-1:-1:-1;;;5756:68:0;;;;;;;:::i;:::-;42156:13:::1;::::0;;;::::1;;;42155:14;42147:23;;;::::0;::::1;;42227:13;;42212:11;42189:22;:12;964:14:::0;;872:114;42189:22:::1;:34;;;;:::i;:::-;:51;;42181:80;;;::::0;-1:-1:-1;;;42181:80:0;;14481:2:1;42181:80:0::1;::::0;::::1;14463:21:1::0;14520:2;14500:18;;;14493:30;-1:-1:-1;;;14539:18:1;;;14532:46;14595:18;;42181:80:0::1;14279:340:1::0;42181:80:0::1;42295:14;::::0;::::1;::::0;::::1;;;::::0;:29:::1;;-1:-1:-1::0;42313:11:0::1;::::0;;;::::1;;;42295:29;42287:56;;;::::0;-1:-1:-1;;;42287:56:0;;14826:2:1;42287:56:0::1;::::0;::::1;14808:21:1::0;14865:2;14845:18;;;14838:30;-1:-1:-1;;;14884:18:1;;;14877:45;14939:18;;42287:56:0::1;14624:339:1::0;42287:56:0::1;42439:16;;42425:13;;42409:15;;:29;;;;:::i;:::-;:46;;;;:::i;:::-;42394:11;42375:16;:6;964:14:::0;;872:114;42375:16:::1;:30;;;;:::i;:::-;:80;;42367:113;;;::::0;-1:-1:-1;;;42367:113:0;;15170:2:1;42367:113:0::1;::::0;::::1;15152:21:1::0;15209:2;15189:18;;;15182:30;-1:-1:-1;;;15228:18:1;;;15221:50;15288:18;;42367:113:0::1;14968:344:1::0;42367:113:0::1;42520:9;42515:140;42539:11;42535:1;:15;42515:140;;;42572:18;:6;1083:19:::0;;1101:1;1083:19;;;994:127;42572:18:::1;42605:38;42615:9;42626:16;:6;964:14:::0;;872:114;42605:38:::1;42552:3:::0;::::1;::::0;::::1;:::i;:::-;;;;42515:140;;41174:873:::0;41250:13;;;;;;;41249:14;41241:23;;;;;;41283:14;;;;;;;41275:47;;;;-1:-1:-1;;;41275:47:0;;15519:2:1;41275:47:0;;;15501:21:1;15558:2;15538:18;;;15531:30;-1:-1:-1;;;15577:18:1;;;15570:50;15637:18;;41275:47:0;15317:344:1;41275:47:0;41357:1;41345:11;:13;41337:41;;;;-1:-1:-1;;;41337:41:0;;10337:2:1;41337:41:0;;;10319:21:1;10376:2;10356:18;;;10349:30;-1:-1:-1;;;10395:18:1;;;10388:46;10451:18;;41337:41:0;10135:340:1;41337:41:0;41424:11;41410;;:25;;;;:::i;:::-;41397:9;:38;;41389:70;;;;-1:-1:-1;;;41389:70:0;;9989:2:1;41389:70:0;;;9971:21:1;10028:2;10008:18;;;10001:30;-1:-1:-1;;;10047:18:1;;;10040:49;10106:18;;41389:70:0;9787:343:1;41389:70:0;41493:19;;41478:11;:34;;41470:67;;;;-1:-1:-1;;;41470:67:0;;10682:2:1;41470:67:0;;;10664:21:1;10721:2;10701:18;;;10694:30;-1:-1:-1;;;10740:18:1;;;10733:50;10800:18;;41470:67:0;10480:344:1;41470:67:0;41600:19;;41573:10;41556:28;;;;:16;:28;;;;;;:40;;41585:11;;41556:40;:::i;:::-;:63;;41548:98;;;;-1:-1:-1;;;41548:98:0;;11164:2:1;41548:98:0;;;11146:21:1;11203:2;11183:18;;;11176:30;-1:-1:-1;;;11222:18:1;;;11215:52;11284:18;;41548:98:0;10962:346:1;41548:98:0;41778:16;;41764:13;;41748:15;;:29;;;;:::i;:::-;:46;;;;:::i;:::-;41733:11;41714:16;:6;964:14;;872:114;41714:16;:30;;;;:::i;:::-;:80;;41706:113;;;;-1:-1:-1;;;41706:113:0;;15170:2:1;41706:113:0;;;15152:21:1;15209:2;15189:18;;;15182:30;-1:-1:-1;;;15228:18:1;;;15221:50;15288:18;;41706:113:0;14968:344:1;41706:113:0;41859:9;41854:186;41878:11;41874:1;:15;41854:186;;;41928:10;41911:28;;;;:16;:28;;;;;:30;;;;;;:::i;:::-;;;;;;41956:18;:6;1083:19;;1101:1;1083:19;;;994:127;41956:18;41989:39;41999:10;42011:16;:6;964:14;;872:114;41989:39;41891:3;;;;:::i;:::-;;;;41854:186;;6453:201;5617:6;;-1:-1:-1;;;;;5617:6:0;4348:10;5764:23;5756:68;;;;-1:-1:-1;;;5756:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;6542:22:0;::::1;6534:73;;;::::0;-1:-1:-1;;;6534:73:0;;15868:2:1;6534:73:0::1;::::0;::::1;15850:21:1::0;15907:2;15887:18;;;15880:30;15946:34;15926:18;;;15919:62;-1:-1:-1;;;15997:18:1;;;15990:36;16043:19;;6534:73:0::1;15666:402:1::0;6534:73:0::1;6618:28;6637:8;6618:18;:28::i;35478:174::-:0;35553:24;;;;:15;:24;;;;;:29;;-1:-1:-1;;;;;;35553:29:0;-1:-1:-1;;;;;35553:29:0;;;;;;;;:24;;35607:23;35553:24;35607:14;:23::i;:::-;-1:-1:-1;;;;;35598:46:0;;;;;;;;;;;35478:174;;:::o;31626:348::-;31719:4;31421:16;;;:7;:16;;;;;;-1:-1:-1;;;;;31421:16:0;31736:73;;;;-1:-1:-1;;;31736:73:0;;16275:2:1;31736:73:0;;;16257:21:1;16314:2;16294:18;;;16287:30;16353:34;16333:18;;;16326:62;-1:-1:-1;;;16404:18:1;;;16397:42;16456:19;;31736:73:0;16073:408:1;31736:73:0;31820:13;31836:23;31851:7;31836:14;:23::i;:::-;31820:39;;31889:5;-1:-1:-1;;;;;31878:16:0;:7;-1:-1:-1;;;;;31878:16:0;;:51;;;;31922:7;-1:-1:-1;;;;;31898:31:0;:20;31910:7;31898:11;:20::i;:::-;-1:-1:-1;;;;;31898:31:0;;31878:51;:87;;;-1:-1:-1;;;;;;28718:25:0;;;28694:4;28718:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;31933:32;31870:96;31626:348;-1:-1:-1;;;;31626:348:0:o;34735:625::-;34894:4;-1:-1:-1;;;;;34867:31:0;:23;34882:7;34867:14;:23::i;:::-;-1:-1:-1;;;;;34867:31:0;;34859:81;;;;-1:-1:-1;;;34859:81:0;;16688:2:1;34859:81:0;;;16670:21:1;16727:2;16707:18;;;16700:30;16766:34;16746:18;;;16739:62;-1:-1:-1;;;16817:18:1;;;16810:35;16862:19;;34859:81:0;16486:401:1;34859:81:0;-1:-1:-1;;;;;34959:16:0;;34951:65;;;;-1:-1:-1;;;34951:65:0;;17094:2:1;34951:65:0;;;17076:21:1;17133:2;17113:18;;;17106:30;17172:34;17152:18;;;17145:62;-1:-1:-1;;;17223:18:1;;;17216:34;17267:19;;34951:65:0;16892:400:1;34951:65:0;35133:29;35150:1;35154:7;35133:8;:29::i;:::-;-1:-1:-1;;;;;35175:15:0;;;;;;:9;:15;;;;;:20;;35194:1;;35175:15;:20;;35194:1;;35175:20;:::i;:::-;;;;-1:-1:-1;;;;;;;35206:13:0;;;;;;:9;:13;;;;;:18;;35223:1;;35206:13;:18;;35223:1;;35206:18;:::i;:::-;;;;-1:-1:-1;;35235:16:0;;;;:7;:16;;;;;;:21;;-1:-1:-1;;;;;;35235:21:0;-1:-1:-1;;;;;35235:21:0;;;;;;;;;35274:27;;35235:16;;35274:27;;;;;;;27671:341;27601:411;;:::o;6814:191::-;6907:6;;;-1:-1:-1;;;;;6924:17:0;;;-1:-1:-1;;;;;;6924:17:0;;;;;;;6957:40;;6907:6;;;6924:17;6907:6;;6957:40;;6888:16;;6957:40;6877:128;6814:191;:::o;35794:315::-;35949:8;-1:-1:-1;;;;;35940:17:0;:5;-1:-1:-1;;;;;35940:17:0;;;35932:55;;;;-1:-1:-1;;;35932:55:0;;17629:2:1;35932:55:0;;;17611:21:1;17668:2;17648:18;;;17641:30;17707:27;17687:18;;;17680:55;17752:18;;35932:55:0;17427:349:1;35932:55:0;-1:-1:-1;;;;;35998:25:0;;;;;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;;:46;;-1:-1:-1;;35998:46:0;;;;;;;;;;36060:41;;722::1;;;36060::0;;695:18:1;36060:41:0;;;;;;;35794:315;;;:::o;30704:::-;30861:28;30871:4;30877:2;30881:7;30861:9;:28::i;:::-;30908:48;30931:4;30937:2;30941:7;30950:5;30908:22;:48::i;:::-;30900:111;;;;-1:-1:-1;;;30900:111:0;;;;;;;:::i;32316:110::-;32392:26;32402:2;32406:7;32392:26;;;;;;;;;;;;:9;:26::i;1830:723::-;1886:13;2107:10;2103:53;;-1:-1:-1;;2134:10:0;;;;;;;;;;;;-1:-1:-1;;;2134:10:0;;;;;1830:723::o;2103:53::-;2181:5;2166:12;2222:78;2229:9;;2222:78;;2255:8;;;;:::i;:::-;;-1:-1:-1;2278:10:0;;-1:-1:-1;2286:2:0;2278:10;;:::i;:::-;;;2222:78;;;2310:19;2342:6;2332:17;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;2332:17:0;;2310:39;;2360:154;2367:10;;2360:154;;2394:11;2404:1;2394:11;;:::i;:::-;;-1:-1:-1;2463:10:0;2471:2;2463:5;:10;:::i;:::-;2450:24;;:2;:24;:::i;:::-;2437:39;;2420:6;2427;2420:14;;;;;;;;:::i;:::-;;;;:56;-1:-1:-1;;;;;2420:56:0;;;;;;;;-1:-1:-1;2491:11:0;2500:2;2491:11;;:::i;:::-;;;2360:154;;36674:799;36829:4;-1:-1:-1;;;;;36850:13:0;;8540:19;:23;36846:620;;36886:72;;-1:-1:-1;;;36886:72:0;;-1:-1:-1;;;;;36886:36:0;;;;;:72;;4348:10;;36937:4;;36943:7;;36952:5;;36886:72;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;36886:72:0;;;;;;;;-1:-1:-1;;36886:72:0;;;;;;;;;;;;:::i;:::-;;;36882:529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;37128:13:0;;37124:272;;37171:60;;-1:-1:-1;;;37171:60:0;;;;;;;:::i;37124:272::-;37346:6;37340:13;37331:6;37327:2;37323:15;37316:38;36882:529;-1:-1:-1;;;;;;37009:51:0;-1:-1:-1;;;37009:51:0;;-1:-1:-1;37002:58:0;;36846:620;-1:-1:-1;37450:4:0;36674:799;;;;;;:::o;32653:321::-;32783:18;32789:2;32793:7;32783:5;:18::i;:::-;32834:54;32865:1;32869:2;32873:7;32882:5;32834:22;:54::i;:::-;32812:154;;;;-1:-1:-1;;;32812:154:0;;;;;;;:::i;33310:439::-;-1:-1:-1;;;;;33390:16:0;;33382:61;;;;-1:-1:-1;;;33382:61:0;;19399:2:1;33382:61:0;;;19381:21:1;;;19418:18;;;19411:30;19477:34;19457:18;;;19450:62;19529:18;;33382:61:0;19197:356:1;33382:61:0;31397:4;31421:16;;;:7;:16;;;;;;-1:-1:-1;;;;;31421:16:0;:30;33454:58;;;;-1:-1:-1;;;33454:58:0;;19760:2:1;33454:58:0;;;19742:21:1;19799:2;19779:18;;;19772:30;19838;19818:18;;;19811:58;19886:18;;33454:58:0;19558:352:1;33454:58:0;-1:-1:-1;;;;;33583:13:0;;;;;;:9;:13;;;;;:18;;33600:1;;33583:13;:18;;33600:1;;33583:18;:::i;:::-;;;;-1:-1:-1;;33612:16:0;;;;:7;:16;;;;;;:21;;-1:-1:-1;;;;;;33612:21:0;-1:-1:-1;;;;;33612:21:0;;;;;;;;33651:33;;33612:16;;;33651:33;;33612:16;;33651:33;43919:38:::1;43793:172:::0;:::o;-1:-1:-1:-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;;;;;;;;;196:131:1;-1:-1:-1;;;;;;270:32:1;;260:43;;250:71;;317:1;314;307:12;332:245;390:6;443:2;431:9;422:7;418:23;414:32;411:52;;;459:1;456;449:12;411:52;498:9;485:23;517:30;541:5;517:30;:::i;774:258::-;846:1;856:113;870:6;867:1;864:13;856:113;;;946:11;;;940:18;927:11;;;920:39;892:2;885:10;856:113;;;987:6;984:1;981:13;978:48;;;-1:-1:-1;;1022:1:1;1004:16;;997:27;774:258::o;1037:::-;1079:3;1117:5;1111:12;1144:6;1139:3;1132:19;1160:63;1216:6;1209:4;1204:3;1200:14;1193:4;1186:5;1182:16;1160:63;:::i;:::-;1277:2;1256:15;-1:-1:-1;;1252:29:1;1243:39;;;;1284:4;1239:50;;1037:258;-1:-1:-1;;1037:258:1:o;1300:220::-;1449:2;1438:9;1431:21;1412:4;1469:45;1510:2;1499:9;1495:18;1487:6;1469:45;:::i;1525:180::-;1584:6;1637:2;1625:9;1616:7;1612:23;1608:32;1605:52;;;1653:1;1650;1643:12;1605:52;-1:-1:-1;1676:23:1;;1525:180;-1:-1:-1;1525:180:1:o;1918:173::-;1986:20;;-1:-1:-1;;;;;2035:31:1;;2025:42;;2015:70;;2081:1;2078;2071:12;2015:70;1918:173;;;:::o;2096:254::-;2164:6;2172;2225:2;2213:9;2204:7;2200:23;2196:32;2193:52;;;2241:1;2238;2231:12;2193:52;2264:29;2283:9;2264:29;:::i;:::-;2254:39;2340:2;2325:18;;;;2312:32;;-1:-1:-1;;;2096:254:1:o;2355:328::-;2432:6;2440;2448;2501:2;2489:9;2480:7;2476:23;2472:32;2469:52;;;2517:1;2514;2507:12;2469:52;2540:29;2559:9;2540:29;:::i;:::-;2530:39;;2588:38;2622:2;2611:9;2607:18;2588:38;:::i;:::-;2578:48;;2673:2;2662:9;2658:18;2645:32;2635:42;;2355:328;;;;;:::o;2688:186::-;2747:6;2800:2;2788:9;2779:7;2775:23;2771:32;2768:52;;;2816:1;2813;2806:12;2768:52;2839:29;2858:9;2839:29;:::i;2879:127::-;2940:10;2935:3;2931:20;2928:1;2921:31;2971:4;2968:1;2961:15;2995:4;2992:1;2985:15;3011:632;3076:5;3106:18;3147:2;3139:6;3136:14;3133:40;;;3153:18;;:::i;:::-;3228:2;3222:9;3196:2;3282:15;;-1:-1:-1;;3278:24:1;;;3304:2;3274:33;3270:42;3258:55;;;3328:18;;;3348:22;;;3325:46;3322:72;;;3374:18;;:::i;:::-;3414:10;3410:2;3403:22;3443:6;3434:15;;3473:6;3465;3458:22;3513:3;3504:6;3499:3;3495:16;3492:25;3489:45;;;3530:1;3527;3520:12;3489:45;3580:6;3575:3;3568:4;3560:6;3556:17;3543:44;3635:1;3628:4;3619:6;3611;3607:19;3603:30;3596:41;;;;3011:632;;;;;:::o;3648:451::-;3717:6;3770:2;3758:9;3749:7;3745:23;3741:32;3738:52;;;3786:1;3783;3776:12;3738:52;3826:9;3813:23;3859:18;3851:6;3848:30;3845:50;;;3891:1;3888;3881:12;3845:50;3914:22;;3967:4;3959:13;;3955:27;-1:-1:-1;3945:55:1;;3996:1;3993;3986:12;3945:55;4019:74;4085:7;4080:2;4067:16;4062:2;4058;4054:11;4019:74;:::i;4104:347::-;4169:6;4177;4230:2;4218:9;4209:7;4205:23;4201:32;4198:52;;;4246:1;4243;4236:12;4198:52;4269:29;4288:9;4269:29;:::i;:::-;4259:39;;4348:2;4337:9;4333:18;4320:32;4395:5;4388:13;4381:21;4374:5;4371:32;4361:60;;4417:1;4414;4407:12;4361:60;4440:5;4430:15;;;4104:347;;;;;:::o;4456:667::-;4551:6;4559;4567;4575;4628:3;4616:9;4607:7;4603:23;4599:33;4596:53;;;4645:1;4642;4635:12;4596:53;4668:29;4687:9;4668:29;:::i;:::-;4658:39;;4716:38;4750:2;4739:9;4735:18;4716:38;:::i;:::-;4706:48;;4801:2;4790:9;4786:18;4773:32;4763:42;;4856:2;4845:9;4841:18;4828:32;4883:18;4875:6;4872:30;4869:50;;;4915:1;4912;4905:12;4869:50;4938:22;;4991:4;4983:13;;4979:27;-1:-1:-1;4969:55:1;;5020:1;5017;5010:12;4969:55;5043:74;5109:7;5104:2;5091:16;5086:2;5082;5078:11;5043:74;:::i;:::-;5033:84;;;4456:667;;;;;;;:::o;5128:260::-;5196:6;5204;5257:2;5245:9;5236:7;5232:23;5228:32;5225:52;;;5273:1;5270;5263:12;5225:52;5296:29;5315:9;5296:29;:::i;:::-;5286:39;;5344:38;5378:2;5367:9;5363:18;5344:38;:::i;:::-;5334:48;;5128:260;;;;;:::o;5393:254::-;5461:6;5469;5522:2;5510:9;5501:7;5497:23;5493:32;5490:52;;;5538:1;5535;5528:12;5490:52;5574:9;5561:23;5551:33;;5603:38;5637:2;5626:9;5622:18;5603:38;:::i;5652:380::-;5731:1;5727:12;;;;5774;;;5795:61;;5849:4;5841:6;5837:17;5827:27;;5795:61;5902:2;5894:6;5891:14;5871:18;5868:38;5865:161;;;5948:10;5943:3;5939:20;5936:1;5929:31;5983:4;5980:1;5973:15;6011:4;6008:1;6001:15;5865:161;;5652:380;;;:::o;7277:413::-;7479:2;7461:21;;;7518:2;7498:18;;;7491:30;7557:34;7552:2;7537:18;;7530:62;-1:-1:-1;;;7623:2:1;7608:18;;7601:47;7680:3;7665:19;;7277:413::o;7695:356::-;7897:2;7879:21;;;7916:18;;;7909:30;7975:34;7970:2;7955:18;;7948:62;8042:2;8027:18;;7695:356::o;8056:127::-;8117:10;8112:3;8108:20;8105:1;8098:31;8148:4;8145:1;8138:15;8172:4;8169:1;8162:15;8188:168;8228:7;8294:1;8290;8286:6;8282:14;8279:1;8276:21;8271:1;8264:9;8257:17;8253:45;8250:71;;;8301:18;;:::i;:::-;-1:-1:-1;8341:9:1;;8188:168::o;8361:127::-;8422:10;8417:3;8413:20;8410:1;8403:31;8453:4;8450:1;8443:15;8477:4;8474:1;8467:15;8493:120;8533:1;8559;8549:35;;8564:18;;:::i;:::-;-1:-1:-1;8598:9:1;;8493:120::o;10829:128::-;10869:3;10900:1;10896:6;10893:1;10890:13;10887:39;;;10906:18;;:::i;:::-;-1:-1:-1;10942:9:1;;10829:128::o;11670:135::-;11709:3;-1:-1:-1;;11730:17:1;;11727:43;;;11750:18;;:::i;:::-;-1:-1:-1;11797:1:1;11786:13;;11670:135::o;12285:973::-;12370:12;;12335:3;;12425:1;12445:18;;;;12498;;;;12525:61;;12579:4;12571:6;12567:17;12557:27;;12525:61;12605:2;12653;12645:6;12642:14;12622:18;12619:38;12616:161;;;12699:10;12694:3;12690:20;12687:1;12680:31;12734:4;12731:1;12724:15;12762:4;12759:1;12752:15;12616:161;12793:18;12820:104;;;;12938:1;12933:319;;;;12786:466;;12820:104;-1:-1:-1;;12853:24:1;;12841:37;;12898:16;;;;-1:-1:-1;12820:104:1;;12933:319;12232:1;12225:14;;;12269:4;12256:18;;13027:1;13041:165;13055:6;13052:1;13049:13;13041:165;;;13133:14;;13120:11;;;13113:35;13176:16;;;;13070:10;;13041:165;;;13045:3;;13235:6;13230:3;13226:16;13219:23;;12786:466;;;;;;;12285:973;;;;:::o;13263:456::-;13484:3;13512:38;13546:3;13538:6;13512:38;:::i;:::-;13579:6;13573:13;13595:52;13640:6;13636:2;13629:4;13621:6;13617:17;13595:52;:::i;:::-;13663:50;13705:6;13701:2;13697:15;13689:6;13663:50;:::i;:::-;13656:57;13263:456;-1:-1:-1;;;;;;;13263:456:1:o;13724:550::-;13948:3;13986:6;13980:13;14002:53;14048:6;14043:3;14036:4;14028:6;14024:17;14002:53;:::i;:::-;14118:13;;14077:16;;;;14140:57;14118:13;14077:16;14174:4;14162:17;;14140:57;:::i;17297:125::-;17337:4;17365:1;17362;17359:8;17356:34;;;17370:18;;:::i;:::-;-1:-1:-1;17407:9:1;;17297:125::o;17781:414::-;17983:2;17965:21;;;18022:2;18002:18;;;17995:30;18061:34;18056:2;18041:18;;18034:62;-1:-1:-1;;;18127:2:1;18112:18;;18105:48;18185:3;18170:19;;17781:414::o;18200:112::-;18232:1;18258;18248:35;;18263:18;;:::i;:::-;-1:-1:-1;18297:9:1;;18200:112::o;18317:127::-;18378:10;18373:3;18369:20;18366:1;18359:31;18409:4;18406:1;18399:15;18433:4;18430:1;18423:15;18449:489;-1:-1:-1;;;;;18718:15:1;;;18700:34;;18770:15;;18765:2;18750:18;;18743:43;18817:2;18802:18;;18795:34;;;18865:3;18860:2;18845:18;;18838:31;;;18643:4;;18886:46;;18912:19;;18904:6;18886:46;:::i;:::-;18878:54;18449:489;-1:-1:-1;;;;;;18449:489:1:o;18943:249::-;19012:6;19065:2;19053:9;19044:7;19040:23;19036:32;19033:52;;;19081:1;19078;19071:12;19033:52;19113:9;19107:16;19132:30;19156:5;19132:30;:::i

Swarm Source

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