ETH Price: $3,159.66 (+0.52%)
Gas: 2 Gwei

Token

Cummie Punks (CP)
 

Overview

Max Total Supply

0 CP

Holders

26

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A
Filtered by Token Holder
FOMOTown: Deployer
Balance
2 CP
0x1b3fea07590e63ce68cb21951f3c133a35032473
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:
CummiePunks

Compiler Version
v0.8.7+commit.e28d00a7

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion
File 1 of 1 : CummiePunks_flat.sol
// File: @openzeppelin/contracts/utils/Strings.sol


// OpenZeppelin Contracts v4.4.0 (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.0 (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.0 (access/Ownable.sol)

pragma solidity ^0.8.0;


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

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

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

    /**
     * @dev 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 v4.4.0 (utils/Address.sol)

pragma solidity ^0.8.0;

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

    /**
     * @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.0 (token/ERC721/IERC721Receiver.sol)

pragma solidity ^0.8.0;

/**
 * @title ERC721 token receiver interface
 * @dev Interface for any contract that wants to support safeTransfers
 * from ERC721 asset contracts.
 */
interface IERC721Receiver {
    /**
     * @dev Whenever an {IERC721} `tokenId` token is transferred to this contract via {IERC721-safeTransferFrom}
     * by `operator` from `from`, this function is called.
     *
     * It must return its Solidity selector to confirm the token transfer.
     * If any other value is returned or the interface is not implemented by the recipient, the transfer will be reverted.
     *
     * The selector can be obtained in Solidity with `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.0 (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.0 (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.0 (token/ERC721/IERC721.sol)

pragma solidity ^0.8.0;


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

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

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

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

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

    /**
     * @dev Safely transfers `tokenId` token from `from` to `to`, 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.0 (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 v4.4.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);
    }

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

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

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

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

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

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

        _beforeTokenTransfer(from, to, tokenId);

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

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

        emit Transfer(from, to, tokenId);
    }

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

    /**
     * @dev 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 {}
}

// File: contracts/CummiePunks.sol

//"SPDX-License-Identifier: UNLICENSED"
pragma solidity ^0.8.7;



contract CummiePunks is ERC721, Ownable {
    uint256 public tokenCounter;

    uint256 private _salePrice = 16900000000000000; // .0169 ETH

    uint256 private _maxPerTx = 21; 

    uint256 public _totalSupply = 10000; 

    string private _baseTokenURI;
    uint private _saleState; // 0 - No sale. 1 - Main Sale.

    constructor () ERC721 ("Cummie Punks","CP")  {
        tokenCounter = 0;
        _saleState = 1;
         setBaseURI("https://gateway.pinata.cloud/ipfs/QmT4LNKxu1UHgHwEmGVTQYZWyJyhsD9t3bvye49iLrxjcS/");
         ownerMint(5);
         
    }

    function mint(uint256 _count) public payable {
        require(isSaleOpen(), "Sale is not yet open");
        require(_count < _maxPerTx, "Cant mint more than mintMax");
        require((_count + tokenCounter) <= _totalSupply, "Ran out of NFTs for sale! Sry!");
        require(msg.value >= (_salePrice * _count), "Ether value sent is not correct");

        createCollectibles(_count);
    }

    function ownerMint(uint256 _count) public onlyOwner {
        require((_count + tokenCounter) <= _totalSupply, "Ran out of NFTs for presale! Sry!");

        createCollectibles(_count);
    }
    function createCollectibles(uint256 _count) private {
        for(uint i = 0; i < _count; i++) {
            createCollectible();
        }
    }

    function createCollectible() private {
            _safeMint(msg.sender, tokenCounter);
            tokenCounter = tokenCounter + 1;
    }
    
    function maxMintsPerTransaction() public view returns (uint) {
        return _maxPerTx - 1; //_maxPerTx is off by 1 for require checks in HOF Mint. Allows use of < instead of <=, less gas
    }

    function tokenURI(uint256 tokenId) public view virtual override returns (string memory) {
        require(_exists(tokenId), "ERC721Metadata: URI query for nonexistent token");


        return string(abi.encodePacked(getBaseURI(), Strings.toString(tokenId)));
    }
    function wenSale() public view returns (string memory) {
        if(!isSaleOpen()) return "#soon";
        return isSaleComplete() ? "complete" : "now!";
    }

    function isSaleOpen() public view returns (bool) {
        return _saleState == 1;
    }

    function isSaleComplete() public view returns (bool) {
        return tokenCounter == _totalSupply;
    }
    
    function getSaleState() private view returns (uint){
        return _saleState;
    }
    
    function setSaleState(uint saleState) public onlyOwner {
        _saleState = saleState;
    }
    
    function getSalePrice() private view returns (uint){
        return _salePrice;
    }
    
    function setSalePrice(uint256 salePrice) public onlyOwner {
        _salePrice = salePrice;
    }
    
    function setBaseURI(string memory baseURI) public onlyOwner {
        _baseTokenURI = baseURI;
    }

    function getBaseURI() public view returns (string memory){
        return _baseTokenURI;
    }
    function withdrawAll() public payable onlyOwner {
        require(payable(msg.sender).send(address(this).balance));
    }
}

Settings
{
  "optimizer": {
    "enabled": false,
    "runs": 200
  },
  "outputSelection": {
    "*": {
      "*": [
        "evm.bytecode",
        "evm.deployedBytecode",
        "devdoc",
        "userdoc",
        "metadata",
        "abi"
      ]
    }
  }
}

Contract Security Audit

Contract ABI

[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"approved","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[],"name":"_totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"getBaseURI","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":"isSaleComplete","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"isSaleOpen","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxMintsPerTransaction","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_count","type":"uint256"}],"name":"mint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_count","type":"uint256"}],"name":"ownerMint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"_data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"baseURI","type":"string"}],"name":"setBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"salePrice","type":"uint256"}],"name":"setSalePrice","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"saleState","type":"uint256"}],"name":"setSaleState","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"tokenCounter","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"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":"wenSale","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"withdrawAll","outputs":[],"stateMutability":"payable","type":"function"}]

6080604052663c0a75e0b440006008556015600955612710600a553480156200002757600080fd5b506040518060400160405280600c81526020017f43756d6d69652050756e6b7300000000000000000000000000000000000000008152506040518060400160405280600281526020017f43500000000000000000000000000000000000000000000000000000000000008152508160009080519060200190620000ac929190620008f2565b508060019080519060200190620000c5929190620008f2565b505050620000e8620000dc6200013a60201b60201c565b6200014260201b60201c565b60006007819055506001600c819055506200012260405180608001604052806051815260200162004816605191396200020860201b60201c565b620001346005620002b360201b60201c565b62000f64565b600033905090565b6000600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600660006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b620002186200013a60201b60201c565b73ffffffffffffffffffffffffffffffffffffffff166200023e620003ad60201b60201c565b73ffffffffffffffffffffffffffffffffffffffff161462000297576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016200028e9062000bcb565b60405180910390fd5b80600b9080519060200190620002af929190620008f2565b5050565b620002c36200013a60201b60201c565b73ffffffffffffffffffffffffffffffffffffffff16620002e9620003ad60201b60201c565b73ffffffffffffffffffffffffffffffffffffffff161462000342576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620003399062000bcb565b60405180910390fd5b600a546007548262000355919062000c3c565b111562000399576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620003909062000bed565b60405180910390fd5b620003aa81620003d760201b60201c565b50565b6000600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b60005b818110156200040957620003f36200040d60201b60201c565b8080620004009062000d6f565b915050620003da565b5050565b62000421336007546200043a60201b60201c565b600160075462000432919062000c3c565b600781905550565b6200045c8282604051806020016040528060008152506200046060201b60201c565b5050565b620004728383620004ce60201b60201c565b620004876000848484620006b460201b60201c565b620004c9576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620004c09062000b65565b60405180910390fd5b505050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141562000541576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620005389062000ba9565b60405180910390fd5b62000552816200086e60201b60201c565b1562000595576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016200058c9062000b87565b60405180910390fd5b620005a960008383620008da60201b60201c565b6001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254620005fb919062000c3c565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45050565b6000620006e28473ffffffffffffffffffffffffffffffffffffffff16620008df60201b6200158e1760201c565b1562000861578373ffffffffffffffffffffffffffffffffffffffff1663150b7a02620007146200013a60201b60201c565b8786866040518563ffffffff1660e01b815260040162000738949392919062000b11565b602060405180830381600087803b1580156200075357600080fd5b505af19250505080156200078757506040513d601f19601f82011682018060405250810190620007849190620009b9565b60015b62000810573d8060008114620007ba576040519150601f19603f3d011682016040523d82523d6000602084013e620007bf565b606091505b5060008151141562000808576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620007ff9062000b65565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161491505062000866565b600190505b949350505050565b60008073ffffffffffffffffffffffffffffffffffffffff166002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614159050919050565b505050565b600080823b905060008111915050919050565b828054620009009062000d39565b90600052602060002090601f01602090048101928262000924576000855562000970565b82601f106200093f57805160ff191683800117855562000970565b8280016001018555821562000970579182015b828111156200096f57825182559160200191906001019062000952565b5b5090506200097f919062000983565b5090565b5b808211156200099e57600081600090555060010162000984565b5090565b600081519050620009b38162000f4a565b92915050565b600060208284031215620009d257620009d162000e1b565b5b6000620009e284828501620009a2565b91505092915050565b620009f68162000c99565b82525050565b600062000a098262000c0f565b62000a15818562000c1a565b935062000a2781856020860162000d03565b62000a328162000e20565b840191505092915050565b600062000a4c60328362000c2b565b915062000a598262000e31565b604082019050919050565b600062000a73601c8362000c2b565b915062000a808262000e80565b602082019050919050565b600062000a9a60208362000c2b565b915062000aa78262000ea9565b602082019050919050565b600062000ac160208362000c2b565b915062000ace8262000ed2565b602082019050919050565b600062000ae860218362000c2b565b915062000af58262000efb565b604082019050919050565b62000b0b8162000cf9565b82525050565b600060808201905062000b286000830187620009eb565b62000b376020830186620009eb565b62000b46604083018562000b00565b818103606083015262000b5a8184620009fc565b905095945050505050565b6000602082019050818103600083015262000b808162000a3d565b9050919050565b6000602082019050818103600083015262000ba28162000a64565b9050919050565b6000602082019050818103600083015262000bc48162000a8b565b9050919050565b6000602082019050818103600083015262000be68162000ab2565b9050919050565b6000602082019050818103600083015262000c088162000ad9565b9050919050565b600081519050919050565b600082825260208201905092915050565b600082825260208201905092915050565b600062000c498262000cf9565b915062000c568362000cf9565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0382111562000c8e5762000c8d62000dbd565b5b828201905092915050565b600062000ca68262000cd9565b9050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b60005b8381101562000d2357808201518184015260208101905062000d06565b8381111562000d33576000848401525b50505050565b6000600282049050600182168062000d5257607f821691505b6020821081141562000d695762000d6862000dec565b5b50919050565b600062000d7c8262000cf9565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82141562000db25762000db162000dbd565b5b600182019050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b600080fd5b6000601f19601f8301169050919050565b7f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560008201527f63656976657220696d706c656d656e7465720000000000000000000000000000602082015250565b7f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000600082015250565b7f4552433732313a206d696e7420746f20746865207a65726f2061646472657373600082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f52616e206f7574206f66204e46547320666f722070726573616c65212053727960008201527f2100000000000000000000000000000000000000000000000000000000000000602082015250565b62000f558162000cad565b811462000f6157600080fd5b50565b6138a28062000f746000396000f3fe6080604052600436106101c25760003560e01c806370a08231116100f7578063a22cb46511610095578063d082e38111610064578063d082e38114610600578063e985e9c51461062b578063f19e75d414610668578063f2fde38b14610691576101c2565b8063a22cb46514610546578063b88d4fde1461056f578063c31c0b6214610598578063c87b56dd146105c3576101c2565b8063853828b6116100d1578063853828b6146104ca5780638da5cb5b146104d457806395d89b41146104ff578063a0712d681461052a576101c2565b806370a082311461044b578063714c539814610488578063715018a6146104b3576101c2565b806323b872dd11610164578063444512941161013e578063444512941461038f57806355f804b3146103ba5780636352211e146103e357806364aa0c7914610420576101c2565b806323b872dd146103125780633eaaf86b1461033b57806342842e0e14610366576101c2565b8063084c4088116101a0578063084c40881461026c578063095ea7b3146102955780631919fed7146102be5780631a081330146102e7576101c2565b806301ffc9a7146101c757806306fdde0314610204578063081812fc1461022f575b600080fd5b3480156101d357600080fd5b506101ee60048036038101906101e99190612641565b6106ba565b6040516101fb9190612b4b565b60405180910390f35b34801561021057600080fd5b5061021961079c565b6040516102269190612b66565b60405180910390f35b34801561023b57600080fd5b50610256600480360381019061025191906126e4565b61082e565b6040516102639190612ae4565b60405180910390f35b34801561027857600080fd5b50610293600480360381019061028e91906126e4565b6108b3565b005b3480156102a157600080fd5b506102bc60048036038101906102b79190612601565b610939565b005b3480156102ca57600080fd5b506102e560048036038101906102e091906126e4565b610a51565b005b3480156102f357600080fd5b506102fc610ad7565b6040516103099190612b4b565b60405180910390f35b34801561031e57600080fd5b50610339600480360381019061033491906124eb565b610ae4565b005b34801561034757600080fd5b50610350610b44565b60405161035d9190612e28565b60405180910390f35b34801561037257600080fd5b5061038d600480360381019061038891906124eb565b610b4a565b005b34801561039b57600080fd5b506103a4610b6a565b6040516103b19190612b66565b60405180910390f35b3480156103c657600080fd5b506103e160048036038101906103dc919061269b565b610c39565b005b3480156103ef57600080fd5b5061040a600480360381019061040591906126e4565b610ccf565b6040516104179190612ae4565b60405180910390f35b34801561042c57600080fd5b50610435610d81565b6040516104429190612e28565b60405180910390f35b34801561045757600080fd5b50610472600480360381019061046d919061247e565b610d97565b60405161047f9190612e28565b60405180910390f35b34801561049457600080fd5b5061049d610e4f565b6040516104aa9190612b66565b60405180910390f35b3480156104bf57600080fd5b506104c8610ee1565b005b6104d2610f69565b005b3480156104e057600080fd5b506104e9611025565b6040516104f69190612ae4565b60405180910390f35b34801561050b57600080fd5b5061051461104f565b6040516105219190612b66565b60405180910390f35b610544600480360381019061053f91906126e4565b6110e1565b005b34801561055257600080fd5b5061056d600480360381019061056891906125c1565b61121a565b005b34801561057b57600080fd5b506105966004803603810190610591919061253e565b611230565b005b3480156105a457600080fd5b506105ad611292565b6040516105ba9190612b4b565b60405180910390f35b3480156105cf57600080fd5b506105ea60048036038101906105e591906126e4565b6112a0565b6040516105f79190612b66565b60405180910390f35b34801561060c57600080fd5b50610615611322565b6040516106229190612e28565b60405180910390f35b34801561063757600080fd5b50610652600480360381019061064d91906124ab565b611328565b60405161065f9190612b4b565b60405180910390f35b34801561067457600080fd5b5061068f600480360381019061068a91906126e4565b6113bc565b005b34801561069d57600080fd5b506106b860048036038101906106b3919061247e565b611496565b005b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916148061078557507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b806107955750610794826115a1565b5b9050919050565b6060600080546107ab906130d8565b80601f01602080910402602001604051908101604052809291908181526020018280546107d7906130d8565b80156108245780601f106107f957610100808354040283529160200191610824565b820191906000526020600020905b81548152906001019060200180831161080757829003601f168201915b5050505050905090565b60006108398261160b565b610878576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161086f90612d48565b60405180910390fd5b6004600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b6108bb611677565b73ffffffffffffffffffffffffffffffffffffffff166108d9611025565b73ffffffffffffffffffffffffffffffffffffffff161461092f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161092690612d68565b60405180910390fd5b80600c8190555050565b600061094482610ccf565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614156109b5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016109ac90612de8565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff166109d4611677565b73ffffffffffffffffffffffffffffffffffffffff161480610a035750610a02816109fd611677565b611328565b5b610a42576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a3990612c88565b60405180910390fd5b610a4c838361167f565b505050565b610a59611677565b73ffffffffffffffffffffffffffffffffffffffff16610a77611025565b73ffffffffffffffffffffffffffffffffffffffff1614610acd576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ac490612d68565b60405180910390fd5b8060088190555050565b60006001600c5414905090565b610af5610aef611677565b82611738565b610b34576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b2b90612e08565b60405180910390fd5b610b3f838383611816565b505050565b600a5481565b610b6583838360405180602001604052806000815250611230565b505050565b6060610b74610ad7565b610bb5576040518060400160405280600581526020017f23736f6f6e0000000000000000000000000000000000000000000000000000008152509050610c36565b610bbd611292565b610bfc576040518060400160405280600481526020017f6e6f772100000000000000000000000000000000000000000000000000000000815250610c33565b6040518060400160405280600881526020017f636f6d706c6574650000000000000000000000000000000000000000000000008152505b90505b90565b610c41611677565b73ffffffffffffffffffffffffffffffffffffffff16610c5f611025565b73ffffffffffffffffffffffffffffffffffffffff1614610cb5576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610cac90612d68565b60405180910390fd5b80600b9080519060200190610ccb929190612292565b5050565b6000806002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415610d78576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d6f90612cc8565b60405180910390fd5b80915050919050565b60006001600954610d929190612fee565b905090565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415610e08576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610dff90612ca8565b60405180910390fd5b600360008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b6060600b8054610e5e906130d8565b80601f0160208091040260200160405190810160405280929190818152602001828054610e8a906130d8565b8015610ed75780601f10610eac57610100808354040283529160200191610ed7565b820191906000526020600020905b815481529060010190602001808311610eba57829003601f168201915b5050505050905090565b610ee9611677565b73ffffffffffffffffffffffffffffffffffffffff16610f07611025565b73ffffffffffffffffffffffffffffffffffffffff1614610f5d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f5490612d68565b60405180910390fd5b610f676000611a72565b565b610f71611677565b73ffffffffffffffffffffffffffffffffffffffff16610f8f611025565b73ffffffffffffffffffffffffffffffffffffffff1614610fe5576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610fdc90612d68565b60405180910390fd5b3373ffffffffffffffffffffffffffffffffffffffff166108fc479081150290604051600060405180830381858888f1935050505061102357600080fd5b565b6000600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b60606001805461105e906130d8565b80601f016020809104026020016040519081016040528092919081815260200182805461108a906130d8565b80156110d75780601f106110ac576101008083540402835291602001916110d7565b820191906000526020600020905b8154815290600101906020018083116110ba57829003601f168201915b5050505050905090565b6110e9610ad7565b611128576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161111f90612be8565b60405180910390fd5b600954811061116c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161116390612d08565b60405180910390fd5b600a546007548261117d9190612f0d565b11156111be576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111b590612d28565b60405180910390fd5b806008546111cc9190612f94565b34101561120e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161120590612c48565b60405180910390fd5b61121781611b38565b50565b61122c611225611677565b8383611b62565b5050565b61124161123b611677565b83611738565b611280576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161127790612e08565b60405180910390fd5b61128c84848484611ccf565b50505050565b6000600a5460075414905090565b60606112ab8261160b565b6112ea576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112e190612da8565b60405180910390fd5b6112f2610e4f565b6112fb83611d2b565b60405160200161130c929190612ac0565b6040516020818303038152906040529050919050565b60075481565b6000600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b6113c4611677565b73ffffffffffffffffffffffffffffffffffffffff166113e2611025565b73ffffffffffffffffffffffffffffffffffffffff1614611438576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161142f90612d68565b60405180910390fd5b600a54600754826114499190612f0d565b111561148a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161148190612dc8565b60405180910390fd5b61149381611b38565b50565b61149e611677565b73ffffffffffffffffffffffffffffffffffffffff166114bc611025565b73ffffffffffffffffffffffffffffffffffffffff1614611512576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161150990612d68565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415611582576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161157990612ba8565b60405180910390fd5b61158b81611a72565b50565b600080823b905060008111915050919050565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b60008073ffffffffffffffffffffffffffffffffffffffff166002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614159050919050565b600033905090565b816004600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff166116f283610ccf565b73ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b60006117438261160b565b611782576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161177990612c68565b60405180910390fd5b600061178d83610ccf565b90508073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1614806117fc57508373ffffffffffffffffffffffffffffffffffffffff166117e48461082e565b73ffffffffffffffffffffffffffffffffffffffff16145b8061180d575061180c8185611328565b5b91505092915050565b8273ffffffffffffffffffffffffffffffffffffffff1661183682610ccf565b73ffffffffffffffffffffffffffffffffffffffff161461188c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161188390612d88565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156118fc576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118f390612c08565b60405180910390fd5b611907838383611e8c565b61191260008261167f565b6001600360008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546119629190612fee565b925050819055506001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546119b99190612f0d565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4505050565b6000600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600660006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b60005b81811015611b5e57611b4b611e91565b8080611b569061313b565b915050611b3b565b5050565b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415611bd1576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611bc890612c28565b60405180910390fd5b80600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c3183604051611cc29190612b4b565b60405180910390a3505050565b611cda848484611816565b611ce684848484611eb4565b611d25576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d1c90612b88565b60405180910390fd5b50505050565b60606000821415611d73576040518060400160405280600181526020017f30000000000000000000000000000000000000000000000000000000000000008152509050611e87565b600082905060005b60008214611da5578080611d8e9061313b565b915050600a82611d9e9190612f63565b9150611d7b565b60008167ffffffffffffffff811115611dc157611dc0613271565b5b6040519080825280601f01601f191660200182016040528015611df35781602001600182028036833780820191505090505b5090505b60008514611e8057600182611e0c9190612fee565b9150600a85611e1b9190613184565b6030611e279190612f0d565b60f81b818381518110611e3d57611e3c613242565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a85611e799190612f63565b9450611df7565b8093505050505b919050565b505050565b611e9d3360075461204b565b6001600754611eac9190612f0d565b600781905550565b6000611ed58473ffffffffffffffffffffffffffffffffffffffff1661158e565b1561203e578373ffffffffffffffffffffffffffffffffffffffff1663150b7a02611efe611677565b8786866040518563ffffffff1660e01b8152600401611f209493929190612aff565b602060405180830381600087803b158015611f3a57600080fd5b505af1925050508015611f6b57506040513d601f19601f82011682018060405250810190611f68919061266e565b60015b611fee573d8060008114611f9b576040519150601f19603f3d011682016040523d82523d6000602084013e611fa0565b606091505b50600081511415611fe6576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611fdd90612b88565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050612043565b600190505b949350505050565b612065828260405180602001604052806000815250612069565b5050565b61207383836120c4565b6120806000848484611eb4565b6120bf576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016120b690612b88565b60405180910390fd5b505050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415612134576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161212b90612ce8565b60405180910390fd5b61213d8161160b565b1561217d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161217490612bc8565b60405180910390fd5b61218960008383611e8c565b6001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546121d99190612f0d565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45050565b82805461229e906130d8565b90600052602060002090601f0160209004810192826122c05760008555612307565b82601f106122d957805160ff1916838001178555612307565b82800160010185558215612307579182015b828111156123065782518255916020019190600101906122eb565b5b5090506123149190612318565b5090565b5b80821115612331576000816000905550600101612319565b5090565b600061234861234384612e68565b612e43565b905082815260208101848484011115612364576123636132a5565b5b61236f848285613096565b509392505050565b600061238a61238584612e99565b612e43565b9050828152602081018484840111156123a6576123a56132a5565b5b6123b1848285613096565b509392505050565b6000813590506123c881613810565b92915050565b6000813590506123dd81613827565b92915050565b6000813590506123f28161383e565b92915050565b6000815190506124078161383e565b92915050565b600082601f830112612422576124216132a0565b5b8135612432848260208601612335565b91505092915050565b600082601f8301126124505761244f6132a0565b5b8135612460848260208601612377565b91505092915050565b60008135905061247881613855565b92915050565b600060208284031215612494576124936132af565b5b60006124a2848285016123b9565b91505092915050565b600080604083850312156124c2576124c16132af565b5b60006124d0858286016123b9565b92505060206124e1858286016123b9565b9150509250929050565b600080600060608486031215612504576125036132af565b5b6000612512868287016123b9565b9350506020612523868287016123b9565b925050604061253486828701612469565b9150509250925092565b60008060008060808587031215612558576125576132af565b5b6000612566878288016123b9565b9450506020612577878288016123b9565b935050604061258887828801612469565b925050606085013567ffffffffffffffff8111156125a9576125a86132aa565b5b6125b58782880161240d565b91505092959194509250565b600080604083850312156125d8576125d76132af565b5b60006125e6858286016123b9565b92505060206125f7858286016123ce565b9150509250929050565b60008060408385031215612618576126176132af565b5b6000612626858286016123b9565b925050602061263785828601612469565b9150509250929050565b600060208284031215612657576126566132af565b5b6000612665848285016123e3565b91505092915050565b600060208284031215612684576126836132af565b5b6000612692848285016123f8565b91505092915050565b6000602082840312156126b1576126b06132af565b5b600082013567ffffffffffffffff8111156126cf576126ce6132aa565b5b6126db8482850161243b565b91505092915050565b6000602082840312156126fa576126f96132af565b5b600061270884828501612469565b91505092915050565b61271a81613022565b82525050565b61272981613034565b82525050565b600061273a82612eca565b6127448185612ee0565b93506127548185602086016130a5565b61275d816132b4565b840191505092915050565b600061277382612ed5565b61277d8185612ef1565b935061278d8185602086016130a5565b612796816132b4565b840191505092915050565b60006127ac82612ed5565b6127b68185612f02565b93506127c68185602086016130a5565b80840191505092915050565b60006127df603283612ef1565b91506127ea826132c5565b604082019050919050565b6000612802602683612ef1565b915061280d82613314565b604082019050919050565b6000612825601c83612ef1565b915061283082613363565b602082019050919050565b6000612848601483612ef1565b91506128538261338c565b602082019050919050565b600061286b602483612ef1565b9150612876826133b5565b604082019050919050565b600061288e601983612ef1565b915061289982613404565b602082019050919050565b60006128b1601f83612ef1565b91506128bc8261342d565b602082019050919050565b60006128d4602c83612ef1565b91506128df82613456565b604082019050919050565b60006128f7603883612ef1565b9150612902826134a5565b604082019050919050565b600061291a602a83612ef1565b9150612925826134f4565b604082019050919050565b600061293d602983612ef1565b915061294882613543565b604082019050919050565b6000612960602083612ef1565b915061296b82613592565b602082019050919050565b6000612983601b83612ef1565b915061298e826135bb565b602082019050919050565b60006129a6601e83612ef1565b91506129b1826135e4565b602082019050919050565b60006129c9602c83612ef1565b91506129d48261360d565b604082019050919050565b60006129ec602083612ef1565b91506129f78261365c565b602082019050919050565b6000612a0f602983612ef1565b9150612a1a82613685565b604082019050919050565b6000612a32602f83612ef1565b9150612a3d826136d4565b604082019050919050565b6000612a55602183612ef1565b9150612a6082613723565b604082019050919050565b6000612a78602183612ef1565b9150612a8382613772565b604082019050919050565b6000612a9b603183612ef1565b9150612aa6826137c1565b604082019050919050565b612aba8161308c565b82525050565b6000612acc82856127a1565b9150612ad882846127a1565b91508190509392505050565b6000602082019050612af96000830184612711565b92915050565b6000608082019050612b146000830187612711565b612b216020830186612711565b612b2e6040830185612ab1565b8181036060830152612b40818461272f565b905095945050505050565b6000602082019050612b606000830184612720565b92915050565b60006020820190508181036000830152612b808184612768565b905092915050565b60006020820190508181036000830152612ba1816127d2565b9050919050565b60006020820190508181036000830152612bc1816127f5565b9050919050565b60006020820190508181036000830152612be181612818565b9050919050565b60006020820190508181036000830152612c018161283b565b9050919050565b60006020820190508181036000830152612c218161285e565b9050919050565b60006020820190508181036000830152612c4181612881565b9050919050565b60006020820190508181036000830152612c61816128a4565b9050919050565b60006020820190508181036000830152612c81816128c7565b9050919050565b60006020820190508181036000830152612ca1816128ea565b9050919050565b60006020820190508181036000830152612cc18161290d565b9050919050565b60006020820190508181036000830152612ce181612930565b9050919050565b60006020820190508181036000830152612d0181612953565b9050919050565b60006020820190508181036000830152612d2181612976565b9050919050565b60006020820190508181036000830152612d4181612999565b9050919050565b60006020820190508181036000830152612d61816129bc565b9050919050565b60006020820190508181036000830152612d81816129df565b9050919050565b60006020820190508181036000830152612da181612a02565b9050919050565b60006020820190508181036000830152612dc181612a25565b9050919050565b60006020820190508181036000830152612de181612a48565b9050919050565b60006020820190508181036000830152612e0181612a6b565b9050919050565b60006020820190508181036000830152612e2181612a8e565b9050919050565b6000602082019050612e3d6000830184612ab1565b92915050565b6000612e4d612e5e565b9050612e59828261310a565b919050565b6000604051905090565b600067ffffffffffffffff821115612e8357612e82613271565b5b612e8c826132b4565b9050602081019050919050565b600067ffffffffffffffff821115612eb457612eb3613271565b5b612ebd826132b4565b9050602081019050919050565b600081519050919050565b600081519050919050565b600082825260208201905092915050565b600082825260208201905092915050565b600081905092915050565b6000612f188261308c565b9150612f238361308c565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115612f5857612f576131b5565b5b828201905092915050565b6000612f6e8261308c565b9150612f798361308c565b925082612f8957612f886131e4565b5b828204905092915050565b6000612f9f8261308c565b9150612faa8361308c565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0483118215151615612fe357612fe26131b5565b5b828202905092915050565b6000612ff98261308c565b91506130048361308c565b925082821015613017576130166131b5565b5b828203905092915050565b600061302d8261306c565b9050919050565b60008115159050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b82818337600083830152505050565b60005b838110156130c35780820151818401526020810190506130a8565b838111156130d2576000848401525b50505050565b600060028204905060018216806130f057607f821691505b6020821081141561310457613103613213565b5b50919050565b613113826132b4565b810181811067ffffffffffffffff8211171561313257613131613271565b5b80604052505050565b60006131468261308c565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff821415613179576131786131b5565b5b600182019050919050565b600061318f8261308c565b915061319a8361308c565b9250826131aa576131a96131e4565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b7f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560008201527f63656976657220696d706c656d656e7465720000000000000000000000000000602082015250565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000600082015250565b7f53616c65206973206e6f7420796574206f70656e000000000000000000000000600082015250565b7f4552433732313a207472616e7366657220746f20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f766520746f2063616c6c657200000000000000600082015250565b7f45746865722076616c75652073656e74206973206e6f7420636f727265637400600082015250565b7f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760008201527f6e6572206e6f7220617070726f76656420666f7220616c6c0000000000000000602082015250565b7f4552433732313a2062616c616e636520717565727920666f7220746865207a6560008201527f726f206164647265737300000000000000000000000000000000000000000000602082015250565b7f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460008201527f656e7420746f6b656e0000000000000000000000000000000000000000000000602082015250565b7f4552433732313a206d696e7420746f20746865207a65726f2061646472657373600082015250565b7f43616e74206d696e74206d6f7265207468616e206d696e744d61780000000000600082015250565b7f52616e206f7574206f66204e46547320666f722073616c652120537279210000600082015250565b7f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960008201527f73206e6f74206f776e0000000000000000000000000000000000000000000000602082015250565b7f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008201527f6e6578697374656e7420746f6b656e0000000000000000000000000000000000602082015250565b7f52616e206f7574206f66204e46547320666f722070726573616c65212053727960008201527f2100000000000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f76616c20746f2063757272656e74206f776e6560008201527f7200000000000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f60008201527f776e6572206e6f7220617070726f766564000000000000000000000000000000602082015250565b61381981613022565b811461382457600080fd5b50565b61383081613034565b811461383b57600080fd5b50565b61384781613040565b811461385257600080fd5b50565b61385e8161308c565b811461386957600080fd5b5056fea26469706673582212205a8ebdc235d060b9af7e4674f56d06e39686ab944a4999ec784c5411bd3b6b5d64736f6c6343000807003368747470733a2f2f676174657761792e70696e6174612e636c6f75642f697066732f516d54344c4e4b7875315548674877456d47565451595a57794a79687344397433627679653439694c72786a63532f

Deployed Bytecode

0x6080604052600436106101c25760003560e01c806370a08231116100f7578063a22cb46511610095578063d082e38111610064578063d082e38114610600578063e985e9c51461062b578063f19e75d414610668578063f2fde38b14610691576101c2565b8063a22cb46514610546578063b88d4fde1461056f578063c31c0b6214610598578063c87b56dd146105c3576101c2565b8063853828b6116100d1578063853828b6146104ca5780638da5cb5b146104d457806395d89b41146104ff578063a0712d681461052a576101c2565b806370a082311461044b578063714c539814610488578063715018a6146104b3576101c2565b806323b872dd11610164578063444512941161013e578063444512941461038f57806355f804b3146103ba5780636352211e146103e357806364aa0c7914610420576101c2565b806323b872dd146103125780633eaaf86b1461033b57806342842e0e14610366576101c2565b8063084c4088116101a0578063084c40881461026c578063095ea7b3146102955780631919fed7146102be5780631a081330146102e7576101c2565b806301ffc9a7146101c757806306fdde0314610204578063081812fc1461022f575b600080fd5b3480156101d357600080fd5b506101ee60048036038101906101e99190612641565b6106ba565b6040516101fb9190612b4b565b60405180910390f35b34801561021057600080fd5b5061021961079c565b6040516102269190612b66565b60405180910390f35b34801561023b57600080fd5b50610256600480360381019061025191906126e4565b61082e565b6040516102639190612ae4565b60405180910390f35b34801561027857600080fd5b50610293600480360381019061028e91906126e4565b6108b3565b005b3480156102a157600080fd5b506102bc60048036038101906102b79190612601565b610939565b005b3480156102ca57600080fd5b506102e560048036038101906102e091906126e4565b610a51565b005b3480156102f357600080fd5b506102fc610ad7565b6040516103099190612b4b565b60405180910390f35b34801561031e57600080fd5b50610339600480360381019061033491906124eb565b610ae4565b005b34801561034757600080fd5b50610350610b44565b60405161035d9190612e28565b60405180910390f35b34801561037257600080fd5b5061038d600480360381019061038891906124eb565b610b4a565b005b34801561039b57600080fd5b506103a4610b6a565b6040516103b19190612b66565b60405180910390f35b3480156103c657600080fd5b506103e160048036038101906103dc919061269b565b610c39565b005b3480156103ef57600080fd5b5061040a600480360381019061040591906126e4565b610ccf565b6040516104179190612ae4565b60405180910390f35b34801561042c57600080fd5b50610435610d81565b6040516104429190612e28565b60405180910390f35b34801561045757600080fd5b50610472600480360381019061046d919061247e565b610d97565b60405161047f9190612e28565b60405180910390f35b34801561049457600080fd5b5061049d610e4f565b6040516104aa9190612b66565b60405180910390f35b3480156104bf57600080fd5b506104c8610ee1565b005b6104d2610f69565b005b3480156104e057600080fd5b506104e9611025565b6040516104f69190612ae4565b60405180910390f35b34801561050b57600080fd5b5061051461104f565b6040516105219190612b66565b60405180910390f35b610544600480360381019061053f91906126e4565b6110e1565b005b34801561055257600080fd5b5061056d600480360381019061056891906125c1565b61121a565b005b34801561057b57600080fd5b506105966004803603810190610591919061253e565b611230565b005b3480156105a457600080fd5b506105ad611292565b6040516105ba9190612b4b565b60405180910390f35b3480156105cf57600080fd5b506105ea60048036038101906105e591906126e4565b6112a0565b6040516105f79190612b66565b60405180910390f35b34801561060c57600080fd5b50610615611322565b6040516106229190612e28565b60405180910390f35b34801561063757600080fd5b50610652600480360381019061064d91906124ab565b611328565b60405161065f9190612b4b565b60405180910390f35b34801561067457600080fd5b5061068f600480360381019061068a91906126e4565b6113bc565b005b34801561069d57600080fd5b506106b860048036038101906106b3919061247e565b611496565b005b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916148061078557507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b806107955750610794826115a1565b5b9050919050565b6060600080546107ab906130d8565b80601f01602080910402602001604051908101604052809291908181526020018280546107d7906130d8565b80156108245780601f106107f957610100808354040283529160200191610824565b820191906000526020600020905b81548152906001019060200180831161080757829003601f168201915b5050505050905090565b60006108398261160b565b610878576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161086f90612d48565b60405180910390fd5b6004600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b6108bb611677565b73ffffffffffffffffffffffffffffffffffffffff166108d9611025565b73ffffffffffffffffffffffffffffffffffffffff161461092f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161092690612d68565b60405180910390fd5b80600c8190555050565b600061094482610ccf565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614156109b5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016109ac90612de8565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff166109d4611677565b73ffffffffffffffffffffffffffffffffffffffff161480610a035750610a02816109fd611677565b611328565b5b610a42576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a3990612c88565b60405180910390fd5b610a4c838361167f565b505050565b610a59611677565b73ffffffffffffffffffffffffffffffffffffffff16610a77611025565b73ffffffffffffffffffffffffffffffffffffffff1614610acd576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ac490612d68565b60405180910390fd5b8060088190555050565b60006001600c5414905090565b610af5610aef611677565b82611738565b610b34576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b2b90612e08565b60405180910390fd5b610b3f838383611816565b505050565b600a5481565b610b6583838360405180602001604052806000815250611230565b505050565b6060610b74610ad7565b610bb5576040518060400160405280600581526020017f23736f6f6e0000000000000000000000000000000000000000000000000000008152509050610c36565b610bbd611292565b610bfc576040518060400160405280600481526020017f6e6f772100000000000000000000000000000000000000000000000000000000815250610c33565b6040518060400160405280600881526020017f636f6d706c6574650000000000000000000000000000000000000000000000008152505b90505b90565b610c41611677565b73ffffffffffffffffffffffffffffffffffffffff16610c5f611025565b73ffffffffffffffffffffffffffffffffffffffff1614610cb5576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610cac90612d68565b60405180910390fd5b80600b9080519060200190610ccb929190612292565b5050565b6000806002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415610d78576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d6f90612cc8565b60405180910390fd5b80915050919050565b60006001600954610d929190612fee565b905090565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415610e08576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610dff90612ca8565b60405180910390fd5b600360008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b6060600b8054610e5e906130d8565b80601f0160208091040260200160405190810160405280929190818152602001828054610e8a906130d8565b8015610ed75780601f10610eac57610100808354040283529160200191610ed7565b820191906000526020600020905b815481529060010190602001808311610eba57829003601f168201915b5050505050905090565b610ee9611677565b73ffffffffffffffffffffffffffffffffffffffff16610f07611025565b73ffffffffffffffffffffffffffffffffffffffff1614610f5d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f5490612d68565b60405180910390fd5b610f676000611a72565b565b610f71611677565b73ffffffffffffffffffffffffffffffffffffffff16610f8f611025565b73ffffffffffffffffffffffffffffffffffffffff1614610fe5576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610fdc90612d68565b60405180910390fd5b3373ffffffffffffffffffffffffffffffffffffffff166108fc479081150290604051600060405180830381858888f1935050505061102357600080fd5b565b6000600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b60606001805461105e906130d8565b80601f016020809104026020016040519081016040528092919081815260200182805461108a906130d8565b80156110d75780601f106110ac576101008083540402835291602001916110d7565b820191906000526020600020905b8154815290600101906020018083116110ba57829003601f168201915b5050505050905090565b6110e9610ad7565b611128576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161111f90612be8565b60405180910390fd5b600954811061116c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161116390612d08565b60405180910390fd5b600a546007548261117d9190612f0d565b11156111be576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111b590612d28565b60405180910390fd5b806008546111cc9190612f94565b34101561120e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161120590612c48565b60405180910390fd5b61121781611b38565b50565b61122c611225611677565b8383611b62565b5050565b61124161123b611677565b83611738565b611280576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161127790612e08565b60405180910390fd5b61128c84848484611ccf565b50505050565b6000600a5460075414905090565b60606112ab8261160b565b6112ea576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112e190612da8565b60405180910390fd5b6112f2610e4f565b6112fb83611d2b565b60405160200161130c929190612ac0565b6040516020818303038152906040529050919050565b60075481565b6000600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b6113c4611677565b73ffffffffffffffffffffffffffffffffffffffff166113e2611025565b73ffffffffffffffffffffffffffffffffffffffff1614611438576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161142f90612d68565b60405180910390fd5b600a54600754826114499190612f0d565b111561148a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161148190612dc8565b60405180910390fd5b61149381611b38565b50565b61149e611677565b73ffffffffffffffffffffffffffffffffffffffff166114bc611025565b73ffffffffffffffffffffffffffffffffffffffff1614611512576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161150990612d68565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415611582576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161157990612ba8565b60405180910390fd5b61158b81611a72565b50565b600080823b905060008111915050919050565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b60008073ffffffffffffffffffffffffffffffffffffffff166002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614159050919050565b600033905090565b816004600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff166116f283610ccf565b73ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b60006117438261160b565b611782576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161177990612c68565b60405180910390fd5b600061178d83610ccf565b90508073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1614806117fc57508373ffffffffffffffffffffffffffffffffffffffff166117e48461082e565b73ffffffffffffffffffffffffffffffffffffffff16145b8061180d575061180c8185611328565b5b91505092915050565b8273ffffffffffffffffffffffffffffffffffffffff1661183682610ccf565b73ffffffffffffffffffffffffffffffffffffffff161461188c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161188390612d88565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156118fc576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118f390612c08565b60405180910390fd5b611907838383611e8c565b61191260008261167f565b6001600360008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546119629190612fee565b925050819055506001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546119b99190612f0d565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4505050565b6000600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600660006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b60005b81811015611b5e57611b4b611e91565b8080611b569061313b565b915050611b3b565b5050565b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415611bd1576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611bc890612c28565b60405180910390fd5b80600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c3183604051611cc29190612b4b565b60405180910390a3505050565b611cda848484611816565b611ce684848484611eb4565b611d25576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d1c90612b88565b60405180910390fd5b50505050565b60606000821415611d73576040518060400160405280600181526020017f30000000000000000000000000000000000000000000000000000000000000008152509050611e87565b600082905060005b60008214611da5578080611d8e9061313b565b915050600a82611d9e9190612f63565b9150611d7b565b60008167ffffffffffffffff811115611dc157611dc0613271565b5b6040519080825280601f01601f191660200182016040528015611df35781602001600182028036833780820191505090505b5090505b60008514611e8057600182611e0c9190612fee565b9150600a85611e1b9190613184565b6030611e279190612f0d565b60f81b818381518110611e3d57611e3c613242565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a85611e799190612f63565b9450611df7565b8093505050505b919050565b505050565b611e9d3360075461204b565b6001600754611eac9190612f0d565b600781905550565b6000611ed58473ffffffffffffffffffffffffffffffffffffffff1661158e565b1561203e578373ffffffffffffffffffffffffffffffffffffffff1663150b7a02611efe611677565b8786866040518563ffffffff1660e01b8152600401611f209493929190612aff565b602060405180830381600087803b158015611f3a57600080fd5b505af1925050508015611f6b57506040513d601f19601f82011682018060405250810190611f68919061266e565b60015b611fee573d8060008114611f9b576040519150601f19603f3d011682016040523d82523d6000602084013e611fa0565b606091505b50600081511415611fe6576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611fdd90612b88565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050612043565b600190505b949350505050565b612065828260405180602001604052806000815250612069565b5050565b61207383836120c4565b6120806000848484611eb4565b6120bf576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016120b690612b88565b60405180910390fd5b505050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415612134576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161212b90612ce8565b60405180910390fd5b61213d8161160b565b1561217d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161217490612bc8565b60405180910390fd5b61218960008383611e8c565b6001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546121d99190612f0d565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45050565b82805461229e906130d8565b90600052602060002090601f0160209004810192826122c05760008555612307565b82601f106122d957805160ff1916838001178555612307565b82800160010185558215612307579182015b828111156123065782518255916020019190600101906122eb565b5b5090506123149190612318565b5090565b5b80821115612331576000816000905550600101612319565b5090565b600061234861234384612e68565b612e43565b905082815260208101848484011115612364576123636132a5565b5b61236f848285613096565b509392505050565b600061238a61238584612e99565b612e43565b9050828152602081018484840111156123a6576123a56132a5565b5b6123b1848285613096565b509392505050565b6000813590506123c881613810565b92915050565b6000813590506123dd81613827565b92915050565b6000813590506123f28161383e565b92915050565b6000815190506124078161383e565b92915050565b600082601f830112612422576124216132a0565b5b8135612432848260208601612335565b91505092915050565b600082601f8301126124505761244f6132a0565b5b8135612460848260208601612377565b91505092915050565b60008135905061247881613855565b92915050565b600060208284031215612494576124936132af565b5b60006124a2848285016123b9565b91505092915050565b600080604083850312156124c2576124c16132af565b5b60006124d0858286016123b9565b92505060206124e1858286016123b9565b9150509250929050565b600080600060608486031215612504576125036132af565b5b6000612512868287016123b9565b9350506020612523868287016123b9565b925050604061253486828701612469565b9150509250925092565b60008060008060808587031215612558576125576132af565b5b6000612566878288016123b9565b9450506020612577878288016123b9565b935050604061258887828801612469565b925050606085013567ffffffffffffffff8111156125a9576125a86132aa565b5b6125b58782880161240d565b91505092959194509250565b600080604083850312156125d8576125d76132af565b5b60006125e6858286016123b9565b92505060206125f7858286016123ce565b9150509250929050565b60008060408385031215612618576126176132af565b5b6000612626858286016123b9565b925050602061263785828601612469565b9150509250929050565b600060208284031215612657576126566132af565b5b6000612665848285016123e3565b91505092915050565b600060208284031215612684576126836132af565b5b6000612692848285016123f8565b91505092915050565b6000602082840312156126b1576126b06132af565b5b600082013567ffffffffffffffff8111156126cf576126ce6132aa565b5b6126db8482850161243b565b91505092915050565b6000602082840312156126fa576126f96132af565b5b600061270884828501612469565b91505092915050565b61271a81613022565b82525050565b61272981613034565b82525050565b600061273a82612eca565b6127448185612ee0565b93506127548185602086016130a5565b61275d816132b4565b840191505092915050565b600061277382612ed5565b61277d8185612ef1565b935061278d8185602086016130a5565b612796816132b4565b840191505092915050565b60006127ac82612ed5565b6127b68185612f02565b93506127c68185602086016130a5565b80840191505092915050565b60006127df603283612ef1565b91506127ea826132c5565b604082019050919050565b6000612802602683612ef1565b915061280d82613314565b604082019050919050565b6000612825601c83612ef1565b915061283082613363565b602082019050919050565b6000612848601483612ef1565b91506128538261338c565b602082019050919050565b600061286b602483612ef1565b9150612876826133b5565b604082019050919050565b600061288e601983612ef1565b915061289982613404565b602082019050919050565b60006128b1601f83612ef1565b91506128bc8261342d565b602082019050919050565b60006128d4602c83612ef1565b91506128df82613456565b604082019050919050565b60006128f7603883612ef1565b9150612902826134a5565b604082019050919050565b600061291a602a83612ef1565b9150612925826134f4565b604082019050919050565b600061293d602983612ef1565b915061294882613543565b604082019050919050565b6000612960602083612ef1565b915061296b82613592565b602082019050919050565b6000612983601b83612ef1565b915061298e826135bb565b602082019050919050565b60006129a6601e83612ef1565b91506129b1826135e4565b602082019050919050565b60006129c9602c83612ef1565b91506129d48261360d565b604082019050919050565b60006129ec602083612ef1565b91506129f78261365c565b602082019050919050565b6000612a0f602983612ef1565b9150612a1a82613685565b604082019050919050565b6000612a32602f83612ef1565b9150612a3d826136d4565b604082019050919050565b6000612a55602183612ef1565b9150612a6082613723565b604082019050919050565b6000612a78602183612ef1565b9150612a8382613772565b604082019050919050565b6000612a9b603183612ef1565b9150612aa6826137c1565b604082019050919050565b612aba8161308c565b82525050565b6000612acc82856127a1565b9150612ad882846127a1565b91508190509392505050565b6000602082019050612af96000830184612711565b92915050565b6000608082019050612b146000830187612711565b612b216020830186612711565b612b2e6040830185612ab1565b8181036060830152612b40818461272f565b905095945050505050565b6000602082019050612b606000830184612720565b92915050565b60006020820190508181036000830152612b808184612768565b905092915050565b60006020820190508181036000830152612ba1816127d2565b9050919050565b60006020820190508181036000830152612bc1816127f5565b9050919050565b60006020820190508181036000830152612be181612818565b9050919050565b60006020820190508181036000830152612c018161283b565b9050919050565b60006020820190508181036000830152612c218161285e565b9050919050565b60006020820190508181036000830152612c4181612881565b9050919050565b60006020820190508181036000830152612c61816128a4565b9050919050565b60006020820190508181036000830152612c81816128c7565b9050919050565b60006020820190508181036000830152612ca1816128ea565b9050919050565b60006020820190508181036000830152612cc18161290d565b9050919050565b60006020820190508181036000830152612ce181612930565b9050919050565b60006020820190508181036000830152612d0181612953565b9050919050565b60006020820190508181036000830152612d2181612976565b9050919050565b60006020820190508181036000830152612d4181612999565b9050919050565b60006020820190508181036000830152612d61816129bc565b9050919050565b60006020820190508181036000830152612d81816129df565b9050919050565b60006020820190508181036000830152612da181612a02565b9050919050565b60006020820190508181036000830152612dc181612a25565b9050919050565b60006020820190508181036000830152612de181612a48565b9050919050565b60006020820190508181036000830152612e0181612a6b565b9050919050565b60006020820190508181036000830152612e2181612a8e565b9050919050565b6000602082019050612e3d6000830184612ab1565b92915050565b6000612e4d612e5e565b9050612e59828261310a565b919050565b6000604051905090565b600067ffffffffffffffff821115612e8357612e82613271565b5b612e8c826132b4565b9050602081019050919050565b600067ffffffffffffffff821115612eb457612eb3613271565b5b612ebd826132b4565b9050602081019050919050565b600081519050919050565b600081519050919050565b600082825260208201905092915050565b600082825260208201905092915050565b600081905092915050565b6000612f188261308c565b9150612f238361308c565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115612f5857612f576131b5565b5b828201905092915050565b6000612f6e8261308c565b9150612f798361308c565b925082612f8957612f886131e4565b5b828204905092915050565b6000612f9f8261308c565b9150612faa8361308c565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0483118215151615612fe357612fe26131b5565b5b828202905092915050565b6000612ff98261308c565b91506130048361308c565b925082821015613017576130166131b5565b5b828203905092915050565b600061302d8261306c565b9050919050565b60008115159050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b82818337600083830152505050565b60005b838110156130c35780820151818401526020810190506130a8565b838111156130d2576000848401525b50505050565b600060028204905060018216806130f057607f821691505b6020821081141561310457613103613213565b5b50919050565b613113826132b4565b810181811067ffffffffffffffff8211171561313257613131613271565b5b80604052505050565b60006131468261308c565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff821415613179576131786131b5565b5b600182019050919050565b600061318f8261308c565b915061319a8361308c565b9250826131aa576131a96131e4565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b7f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560008201527f63656976657220696d706c656d656e7465720000000000000000000000000000602082015250565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000600082015250565b7f53616c65206973206e6f7420796574206f70656e000000000000000000000000600082015250565b7f4552433732313a207472616e7366657220746f20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f766520746f2063616c6c657200000000000000600082015250565b7f45746865722076616c75652073656e74206973206e6f7420636f727265637400600082015250565b7f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760008201527f6e6572206e6f7220617070726f76656420666f7220616c6c0000000000000000602082015250565b7f4552433732313a2062616c616e636520717565727920666f7220746865207a6560008201527f726f206164647265737300000000000000000000000000000000000000000000602082015250565b7f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460008201527f656e7420746f6b656e0000000000000000000000000000000000000000000000602082015250565b7f4552433732313a206d696e7420746f20746865207a65726f2061646472657373600082015250565b7f43616e74206d696e74206d6f7265207468616e206d696e744d61780000000000600082015250565b7f52616e206f7574206f66204e46547320666f722073616c652120537279210000600082015250565b7f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960008201527f73206e6f74206f776e0000000000000000000000000000000000000000000000602082015250565b7f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008201527f6e6578697374656e7420746f6b656e0000000000000000000000000000000000602082015250565b7f52616e206f7574206f66204e46547320666f722070726573616c65212053727960008201527f2100000000000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f76616c20746f2063757272656e74206f776e6560008201527f7200000000000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f60008201527f776e6572206e6f7220617070726f766564000000000000000000000000000000602082015250565b61381981613022565b811461382457600080fd5b50565b61383081613034565b811461383b57600080fd5b50565b61384781613040565b811461385257600080fd5b50565b61385e8161308c565b811461386957600080fd5b5056fea26469706673582212205a8ebdc235d060b9af7e4674f56d06e39686ab944a4999ec784c5411bd3b6b5d64736f6c63430008070033

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.