ETH Price: $2,671.65 (+1.95%)

Token

Punk Kitties (PKKT)
 

Overview

Max Total Supply

965 PKKT

Holders

852

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A
Balance
1 PKKT
0xedc55ddf7bef15aead2e107fd6c9515b3f24abbc
Loading...
Loading
Loading...
Loading
Loading...
Loading

OVERVIEW

9,999 distinct Punk Kitties are landing on the metaverse. Fair-to-all distribution, with 50% supply FREE for ANYONE.

# Exchange Pair Price  24H Volume % Volume

Contract Source Code Verified (Exact Match)

Contract Name:
PKKT

Compiler Version
v0.8.4+commit.c7e474f2

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

/**
 *Submitted for verification at Etherscan.io on 2021-11-01
*/

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

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

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

// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

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


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


pragma solidity ^0.8.0;

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

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

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

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

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

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

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

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

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

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

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

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


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


pragma solidity ^0.8.0;

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


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


pragma solidity ^0.8.0;

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

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

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


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


pragma solidity ^0.8.0;

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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


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


pragma solidity ^0.8.0;

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

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


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


pragma solidity ^0.8.0;

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

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

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

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

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


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


pragma solidity ^0.8.0;

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


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


pragma solidity ^0.8.0;







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

    // Token name
    string private _name;

    // Token symbol
    string private _symbol;

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

        _approve(to, tokenId);
    }

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

        return _tokenApprovals[tokenId];
    }

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

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

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

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

        _transfer(from, to, tokenId);
    }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

        _beforeTokenTransfer(from, to, tokenId);

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

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

        emit Transfer(from, to, tokenId);
    }

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

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

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


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


pragma solidity ^0.8.0;

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

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

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


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


pragma solidity ^0.8.0;


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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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


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


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() {
        _setOwner(_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 {
        _setOwner(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");
        _setOwner(newOwner);
    }

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


// File contracts/PKKT.sol

pragma solidity ^0.8.0;

contract PKKT is ERC721Enumerable, Ownable {
    uint256 public constant MAX_KITTIES = 9999;
    uint256 public constant FreeSupply  = 4999;
    uint256 public constant PaidSupply  = 5000;
    address private receiver = 0x5b27fe710c05841bd2b74D5cee5CD65a642dc339;

    mapping(address => bool) private ClaimedFree;
    uint256 private _maxPerTx = 11; // Set to one higher than actual, to save gas on lte/gte checks.
    uint256 private _price = 0.05 ether; // .01 ETH
    uint256 private _saleTime = 1636804800;
    uint256 private _freeMinted = 0;
    uint256 private _paidMinted = 0;

    string private _baseTokenURI;

    constructor(string memory baseURI)
        ERC721("Punk Kitties", "PKKT")
    {
        setBaseURI(baseURI);
    }

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

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

    function getBaseURI() public view returns (string memory) {
        return _baseTokenURI;
    }

    function IsClaimedFree(address user) public view returns (bool) {
        return ClaimedFree[user];
    }

    function getFreeMinted() public view returns (uint256) {
        return _freeMinted;
    }

    function getPaidMinted() public view returns (uint256) {
        return _paidMinted;
    }

    function setSaleTime(uint256 _time) public onlyOwner {
        _saleTime = _time;
    }

    function getSaleTime() public view returns (uint256) {
        return _saleTime;
    }

    function setPrice(uint256 _newWEIPrice) public onlyOwner {
        _price = _newWEIPrice;
    }

    function getPrice() public view returns (uint256) {
        return _price;
    }

    function claim() public {
        uint256 totalSupply = totalSupply();
        require(block.timestamp >= _saleTime, "Sale is not yet open.");
        require(_freeMinted < FreeSupply, "All free kitties are already claimed.");
        require(ClaimedFree[msg.sender] == false, "You have already claimed");
        _freeMinted += 1;
        ClaimedFree[msg.sender] = true;
        _safeMint(msg.sender, totalSupply);
    }

    function mint(uint256 _count) public payable {
        uint256 totalSupply = totalSupply();
        require(block.timestamp >= _saleTime, "Sale is not yet open.");
        require(
            _count < _maxPerTx,
            "Woah, Nelly. That's way too many kitties to mint!"
        );
        
        require(
            _count + _paidMinted <= PaidSupply,
            "This amount of kitties will exceed max paid kitties."
        );

        require(_price * _count <= msg.value, "Transaction value too low.");

        for (uint256 i; i < _count; i++) {
            _safeMint(msg.sender, totalSupply + i);
        }
        _paidMinted += _count;
    }

    function walletOfOwner(address _owner)
        public
        view
        returns (uint256[] memory)
    {
        uint256 tokenCount = balanceOf(_owner);
        if (tokenCount == 0) {
            return new uint256[](0);
        }

        uint256[] memory tokensId = new uint256[](tokenCount);
        for (uint256 i; i < tokenCount; i++) {
            tokensId[i] = tokenOfOwnerByIndex(_owner, i);
        }
        return tokensId;
    }

    function withdrawAll() public {
        require(payable(receiver).send(address(this).balance));
    }
}

Contract Security Audit

Contract ABI

[{"inputs":[{"internalType":"string","name":"baseURI","type":"string"}],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"approved","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[],"name":"FreeSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"user","type":"address"}],"name":"IsClaimedFree","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"MAX_KITTIES","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"PaidSupply","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":[],"name":"claim","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"getBaseURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"getFreeMinted","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"getPaidMinted","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"getPrice","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"getSaleTime","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"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":"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":"_newWEIPrice","type":"uint256"}],"name":"setPrice","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_time","type":"uint256"}],"name":"setSaleTime","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"index","type":"uint256"}],"name":"tokenByIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"uint256","name":"index","type":"uint256"}],"name":"tokenOfOwnerByIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_owner","type":"address"}],"name":"walletOfOwner","outputs":[{"internalType":"uint256[]","name":"","type":"uint256[]"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"withdrawAll","outputs":[],"stateMutability":"nonpayable","type":"function"}]

6080604052600b80546001600160a01b031916735b27fe710c05841bd2b74d5cee5cd65a642dc339178155600d5566b1a2bc2ec50000600e5563618fa8c0600f55600060108190556011553480156200005757600080fd5b5060405162002733380380620027338339810160408190526200007a9162000283565b604080518082018252600c81526b50756e6b204b69747469657360a01b6020808301918252835180850190945260048452631412d2d560e21b908401528151919291620000ca91600091620001dd565b508051620000e0906001906020840190620001dd565b505050620000fd620000f76200010f60201b60201c565b62000113565b620001088162000165565b50620003ac565b3390565b600a80546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b600a546001600160a01b03163314620001c45760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604482015260640160405180910390fd5b8051620001d9906012906020840190620001dd565b5050565b828054620001eb9062000359565b90600052602060002090601f0160209004810192826200020f57600085556200025a565b82601f106200022a57805160ff19168380011785556200025a565b828001600101855582156200025a579182015b828111156200025a5782518255916020019190600101906200023d565b50620002689291506200026c565b5090565b5b808211156200026857600081556001016200026d565b6000602080838503121562000296578182fd5b82516001600160401b0380821115620002ad578384fd5b818501915085601f830112620002c1578384fd5b815181811115620002d657620002d662000396565b604051601f8201601f19908116603f0116810190838211818310171562000301576200030162000396565b81604052828152888684870101111562000319578687fd5b8693505b828410156200033c57848401860151818501870152928501926200031d565b828411156200034d57868684830101525b98975050505050505050565b600181811c908216806200036e57607f821691505b602082108114156200039057634e487b7160e01b600052602260045260246000fd5b50919050565b634e487b7160e01b600052604160045260246000fd5b61237780620003bc6000396000f3fe6080604052600436106102045760003560e01c806370a082311161011857806398d5fdca116100a0578063c87b56dd1161006f578063c87b56dd146105a4578063cbf21fe4146105c4578063d1ddf9af146105d9578063e985e9c5146105ef578063f2fde38b1461063857600080fd5b806398d5fdca1461053c578063a0712d6814610551578063a22cb46514610564578063b88d4fde1461058457600080fd5b8063853828b6116100e7578063853828b6146104bf57806388356b92146104d45780638da5cb5b146104e957806391b7f5ed1461050757806395d89b411461052757600080fd5b806370a082311461043c578063714c53981461045c578063715018a6146104715780637a729b8a1461048657600080fd5b80633bd2b67d1161019b5780634f6ccce71161016a5780634f6ccce7146103b057806350839bef146103d057806355f804b3146103e65780636352211e146104065780636dd9a49d1461042657600080fd5b80633bd2b67d1461032e57806342842e0e1461034e578063438b63001461036e5780634e71d92d1461039b57600080fd5b8063095ea7b3116101d7578063095ea7b3146102b757806318160ddd146102d957806323b872dd146102ee5780632f745c591461030e57600080fd5b806301ffc9a714610209578063033bea201461023e57806306fdde031461025d578063081812fc1461027f575b600080fd5b34801561021557600080fd5b50610229610224366004611f94565b610658565b60405190151581526020015b60405180910390f35b34801561024a57600080fd5b506010545b604051908152602001610235565b34801561026957600080fd5b50610272610683565b6040516102359190612106565b34801561028b57600080fd5b5061029f61029a366004612012565b610715565b6040516001600160a01b039091168152602001610235565b3480156102c357600080fd5b506102d76102d2366004611f6b565b6107af565b005b3480156102e557600080fd5b5060085461024f565b3480156102fa57600080fd5b506102d7610309366004611e7d565b6108c5565b34801561031a57600080fd5b5061024f610329366004611f6b565b6108f6565b34801561033a57600080fd5b506102d7610349366004612012565b61098c565b34801561035a57600080fd5b506102d7610369366004611e7d565b6109bb565b34801561037a57600080fd5b5061038e610389366004611e31565b6109d6565b60405161023591906120c2565b3480156103a757600080fd5b506102d7610aab565b3480156103bc57600080fd5b5061024f6103cb366004612012565b610c02565b3480156103dc57600080fd5b5061024f61138781565b3480156103f257600080fd5b506102d7610401366004611fcc565b610ca3565b34801561041257600080fd5b5061029f610421366004612012565b610ce4565b34801561043257600080fd5b5061024f61270f81565b34801561044857600080fd5b5061024f610457366004611e31565b610d5b565b34801561046857600080fd5b50610272610de2565b34801561047d57600080fd5b506102d7610df1565b34801561049257600080fd5b506102296104a1366004611e31565b6001600160a01b03166000908152600c602052604090205460ff1690565b3480156104cb57600080fd5b506102d7610e27565b3480156104e057600080fd5b5060115461024f565b3480156104f557600080fd5b50600a546001600160a01b031661029f565b34801561051357600080fd5b506102d7610522366004612012565b610e58565b34801561053357600080fd5b50610272610e87565b34801561054857600080fd5b50600e5461024f565b6102d761055f366004612012565b610e96565b34801561057057600080fd5b506102d761057f366004611f31565b61107d565b34801561059057600080fd5b506102d761059f366004611eb8565b611142565b3480156105b057600080fd5b506102726105bf366004612012565b61117a565b3480156105d057600080fd5b50600f5461024f565b3480156105e557600080fd5b5061024f61138881565b3480156105fb57600080fd5b5061022961060a366004611e4b565b6001600160a01b03918216600090815260056020908152604080832093909416825291909152205460ff1690565b34801561064457600080fd5b506102d7610653366004611e31565b611255565b60006001600160e01b0319821663780e9d6360e01b148061067d575061067d826112ed565b92915050565b6060600080546106929061227f565b80601f01602080910402602001604051908101604052809291908181526020018280546106be9061227f565b801561070b5780601f106106e05761010080835404028352916020019161070b565b820191906000526020600020905b8154815290600101906020018083116106ee57829003601f168201915b5050505050905090565b6000818152600260205260408120546001600160a01b03166107935760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b60648201526084015b60405180910390fd5b506000908152600460205260409020546001600160a01b031690565b60006107ba82610ce4565b9050806001600160a01b0316836001600160a01b031614156108285760405162461bcd60e51b815260206004820152602160248201527f4552433732313a20617070726f76616c20746f2063757272656e74206f776e656044820152603960f91b606482015260840161078a565b336001600160a01b03821614806108445750610844813361060a565b6108b65760405162461bcd60e51b815260206004820152603860248201527f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760448201527f6e6572206e6f7220617070726f76656420666f7220616c6c0000000000000000606482015260840161078a565b6108c0838361133d565b505050565b6108cf33826113ab565b6108eb5760405162461bcd60e51b815260040161078a906121a0565b6108c08383836114a2565b600061090183610d5b565b82106109635760405162461bcd60e51b815260206004820152602b60248201527f455243373231456e756d657261626c653a206f776e657220696e646578206f7560448201526a74206f6620626f756e647360a81b606482015260840161078a565b506001600160a01b03919091166000908152600660209081526040808320938352929052205490565b600a546001600160a01b031633146109b65760405162461bcd60e51b815260040161078a9061216b565b600f55565b6108c083838360405180602001604052806000815250611142565b606060006109e383610d5b565b905080610a045760408051600080825260208201909252905b509392505050565b60008167ffffffffffffffff811115610a2d57634e487b7160e01b600052604160045260246000fd5b604051908082528060200260200182016040528015610a56578160200160208202803683370190505b50905060005b828110156109fc57610a6e85826108f6565b828281518110610a8e57634e487b7160e01b600052603260045260246000fd5b602090810291909101015280610aa3816122ba565b915050610a5c565b6000610ab660085490565b9050600f54421015610b025760405162461bcd60e51b815260206004820152601560248201527429b0b6329034b9903737ba103cb2ba1037b832b71760591b604482015260640161078a565b61138760105410610b635760405162461bcd60e51b815260206004820152602560248201527f416c6c2066726565206b6974746965732061726520616c726561647920636c6160448201526434b6b2b21760d91b606482015260840161078a565b336000908152600c602052604090205460ff1615610bc35760405162461bcd60e51b815260206004820152601860248201527f596f75206861766520616c726561647920636c61696d65640000000000000000604482015260640161078a565b600160106000828254610bd691906121f1565b9091555050336000818152600c60205260409020805460ff19166001179055610bff908261164d565b50565b6000610c0d60085490565b8210610c705760405162461bcd60e51b815260206004820152602c60248201527f455243373231456e756d657261626c653a20676c6f62616c20696e646578206f60448201526b7574206f6620626f756e647360a01b606482015260840161078a565b60088281548110610c9157634e487b7160e01b600052603260045260246000fd5b90600052602060002001549050919050565b600a546001600160a01b03163314610ccd5760405162461bcd60e51b815260040161078a9061216b565b8051610ce0906012906020840190611d06565b5050565b6000818152600260205260408120546001600160a01b03168061067d5760405162461bcd60e51b815260206004820152602960248201527f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460448201526832b73a103a37b5b2b760b91b606482015260840161078a565b60006001600160a01b038216610dc65760405162461bcd60e51b815260206004820152602a60248201527f4552433732313a2062616c616e636520717565727920666f7220746865207a65604482015269726f206164647265737360b01b606482015260840161078a565b506001600160a01b031660009081526003602052604090205490565b6060601280546106929061227f565b600a546001600160a01b03163314610e1b5760405162461bcd60e51b815260040161078a9061216b565b610e256000611667565b565b600b546040516001600160a01b03909116904780156108fc02916000818181858888f19350505050610e2557600080fd5b600a546001600160a01b03163314610e825760405162461bcd60e51b815260040161078a9061216b565b600e55565b6060600180546106929061227f565b6000610ea160085490565b9050600f54421015610eed5760405162461bcd60e51b815260206004820152601560248201527429b0b6329034b9903737ba103cb2ba1037b832b71760591b604482015260640161078a565b600d548210610f585760405162461bcd60e51b815260206004820152603160248201527f576f61682c204e656c6c792e205468617427732077617920746f6f206d616e79604482015270206b69747469657320746f206d696e742160781b606482015260840161078a565b61138860115483610f6991906121f1565b1115610fd45760405162461bcd60e51b815260206004820152603460248201527f5468697320616d6f756e74206f66206b6974746965732077696c6c206578636560448201527332b21036b0bc103830b4b21035b4ba3a34b2b99760611b606482015260840161078a565b3482600e54610fe3919061221d565b11156110315760405162461bcd60e51b815260206004820152601a60248201527f5472616e73616374696f6e2076616c756520746f6f206c6f772e000000000000604482015260640161078a565b60005b828110156110615761104f3361104a83856121f1565b61164d565b80611059816122ba565b915050611034565b50816011600082825461107491906121f1565b90915550505050565b6001600160a01b0382163314156110d65760405162461bcd60e51b815260206004820152601960248201527f4552433732313a20617070726f766520746f2063616c6c657200000000000000604482015260640161078a565b3360008181526005602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b61114c33836113ab565b6111685760405162461bcd60e51b815260040161078a906121a0565b611174848484846116b9565b50505050565b6000818152600260205260409020546060906001600160a01b03166111f95760405162461bcd60e51b815260206004820152602f60248201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60448201526e3732bc34b9ba32b73a103a37b5b2b760891b606482015260840161078a565b6000611203610de2565b90506000815111611223576040518060200160405280600081525061124e565b8061122d846116ec565b60405160200161123e929190612056565b6040516020818303038152906040525b9392505050565b600a546001600160a01b0316331461127f5760405162461bcd60e51b815260040161078a9061216b565b6001600160a01b0381166112e45760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b606482015260840161078a565b610bff81611667565b60006001600160e01b031982166380ac58cd60e01b148061131e57506001600160e01b03198216635b5e139f60e01b145b8061067d57506301ffc9a760e01b6001600160e01b031983161461067d565b600081815260046020526040902080546001600160a01b0319166001600160a01b038416908117909155819061137282610ce4565b6001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b6000818152600260205260408120546001600160a01b03166114245760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b606482015260840161078a565b600061142f83610ce4565b9050806001600160a01b0316846001600160a01b0316148061146a5750836001600160a01b031661145f84610715565b6001600160a01b0316145b8061149a57506001600160a01b0380821660009081526005602090815260408083209388168352929052205460ff165b949350505050565b826001600160a01b03166114b582610ce4565b6001600160a01b03161461151d5760405162461bcd60e51b815260206004820152602960248201527f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960448201526839903737ba1037bbb760b91b606482015260840161078a565b6001600160a01b03821661157f5760405162461bcd60e51b8152602060048201526024808201527f4552433732313a207472616e7366657220746f20746865207a65726f206164646044820152637265737360e01b606482015260840161078a565b61158a838383611806565b61159560008261133d565b6001600160a01b03831660009081526003602052604081208054600192906115be90849061223c565b90915550506001600160a01b03821660009081526003602052604081208054600192906115ec9084906121f1565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b0386811691821790925591518493918716917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef91a4505050565b610ce08282604051806020016040528060008152506118be565b600a80546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6116c48484846114a2565b6116d0848484846118f1565b6111745760405162461bcd60e51b815260040161078a90612119565b6060816117105750506040805180820190915260018152600360fc1b602082015290565b8160005b811561173a5780611724816122ba565b91506117339050600a83612209565b9150611714565b60008167ffffffffffffffff81111561176357634e487b7160e01b600052604160045260246000fd5b6040519080825280601f01601f19166020018201604052801561178d576020820181803683370190505b5090505b841561149a576117a260018361223c565b91506117af600a866122d5565b6117ba9060306121f1565b60f81b8183815181106117dd57634e487b7160e01b600052603260045260246000fd5b60200101906001600160f81b031916908160001a9053506117ff600a86612209565b9450611791565b6001600160a01b0383166118615761185c81600880546000838152600960205260408120829055600182018355919091527ff3f7a9fe364faab93b216da50a3214154f22a0a2b415b23a84c8169e8b636ee30155565b611884565b816001600160a01b0316836001600160a01b0316146118845761188483826119fe565b6001600160a01b03821661189b576108c081611a9b565b826001600160a01b0316826001600160a01b0316146108c0576108c08282611b74565b6118c88383611bb8565b6118d560008484846118f1565b6108c05760405162461bcd60e51b815260040161078a90612119565b60006001600160a01b0384163b156119f357604051630a85bd0160e11b81526001600160a01b0385169063150b7a0290611935903390899088908890600401612085565b602060405180830381600087803b15801561194f57600080fd5b505af192505050801561197f575060408051601f3d908101601f1916820190925261197c91810190611fb0565b60015b6119d9573d8080156119ad576040519150601f19603f3d011682016040523d82523d6000602084013e6119b2565b606091505b5080516119d15760405162461bcd60e51b815260040161078a90612119565b805181602001fd5b6001600160e01b031916630a85bd0160e11b14905061149a565b506001949350505050565b60006001611a0b84610d5b565b611a15919061223c565b600083815260076020526040902054909150808214611a68576001600160a01b03841660009081526006602090815260408083208584528252808320548484528184208190558352600790915290208190555b5060009182526007602090815260408084208490556001600160a01b039094168352600681528383209183525290812055565b600854600090611aad9060019061223c565b60008381526009602052604081205460088054939450909284908110611ae357634e487b7160e01b600052603260045260246000fd5b906000526020600020015490508060088381548110611b1257634e487b7160e01b600052603260045260246000fd5b6000918252602080832090910192909255828152600990915260408082208490558582528120556008805480611b5857634e487b7160e01b600052603160045260246000fd5b6001900381819060005260206000200160009055905550505050565b6000611b7f83610d5b565b6001600160a01b039093166000908152600660209081526040808320868452825280832085905593825260079052919091209190915550565b6001600160a01b038216611c0e5760405162461bcd60e51b815260206004820181905260248201527f4552433732313a206d696e7420746f20746865207a65726f2061646472657373604482015260640161078a565b6000818152600260205260409020546001600160a01b031615611c735760405162461bcd60e51b815260206004820152601c60248201527f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000604482015260640161078a565b611c7f60008383611806565b6001600160a01b0382166000908152600360205260408120805460019290611ca89084906121f1565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b03861690811790915590518392907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a45050565b828054611d129061227f565b90600052602060002090601f016020900481019282611d345760008555611d7a565b82601f10611d4d57805160ff1916838001178555611d7a565b82800160010185558215611d7a579182015b82811115611d7a578251825591602001919060010190611d5f565b50611d86929150611d8a565b5090565b5b80821115611d865760008155600101611d8b565b600067ffffffffffffffff80841115611dba57611dba612315565b604051601f8501601f19908116603f01168101908282118183101715611de257611de2612315565b81604052809350858152868686011115611dfb57600080fd5b858560208301376000602087830101525050509392505050565b80356001600160a01b0381168114611e2c57600080fd5b919050565b600060208284031215611e42578081fd5b61124e82611e15565b60008060408385031215611e5d578081fd5b611e6683611e15565b9150611e7460208401611e15565b90509250929050565b600080600060608486031215611e91578081fd5b611e9a84611e15565b9250611ea860208501611e15565b9150604084013590509250925092565b60008060008060808587031215611ecd578081fd5b611ed685611e15565b9350611ee460208601611e15565b925060408501359150606085013567ffffffffffffffff811115611f06578182fd5b8501601f81018713611f16578182fd5b611f2587823560208401611d9f565b91505092959194509250565b60008060408385031215611f43578182fd5b611f4c83611e15565b915060208301358015158114611f60578182fd5b809150509250929050565b60008060408385031215611f7d578182fd5b611f8683611e15565b946020939093013593505050565b600060208284031215611fa5578081fd5b813561124e8161232b565b600060208284031215611fc1578081fd5b815161124e8161232b565b600060208284031215611fdd578081fd5b813567ffffffffffffffff811115611ff3578182fd5b8201601f81018413612003578182fd5b61149a84823560208401611d9f565b600060208284031215612023578081fd5b5035919050565b60008151808452612042816020860160208601612253565b601f01601f19169290920160200192915050565b60008351612068818460208801612253565b83519083019061207c818360208801612253565b01949350505050565b6001600160a01b03858116825284166020820152604081018390526080606082018190526000906120b89083018461202a565b9695505050505050565b6020808252825182820181905260009190848201906040850190845b818110156120fa578351835292840192918401916001016120de565b50909695505050505050565b60208152600061124e602083018461202a565b60208082526032908201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560408201527131b2b4bb32b91034b6b83632b6b2b73a32b960711b606082015260800190565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b60208082526031908201527f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f6040820152701ddb995c881b9bdc88185c1c1c9bdd9959607a1b606082015260800190565b60008219821115612204576122046122e9565b500190565b600082612218576122186122ff565b500490565b6000816000190483118215151615612237576122376122e9565b500290565b60008282101561224e5761224e6122e9565b500390565b60005b8381101561226e578181015183820152602001612256565b838111156111745750506000910152565b600181811c9082168061229357607f821691505b602082108114156122b457634e487b7160e01b600052602260045260246000fd5b50919050565b60006000198214156122ce576122ce6122e9565b5060010190565b6000826122e4576122e46122ff565b500690565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052601260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b6001600160e01b031981168114610bff57600080fdfea264697066735822122090f62da36c37b63cd56948fceeab5bebeffbb63b90a7ffbb008023537e108ecb64736f6c634300080400330000000000000000000000000000000000000000000000000000000000000020000000000000000000000000000000000000000000000000000000000000002b68747470733a2f2f7777772e74686570756e6b6b6974746965732e696f2f6d657461646174612d6170692f000000000000000000000000000000000000000000

Deployed Bytecode

0x6080604052600436106102045760003560e01c806370a082311161011857806398d5fdca116100a0578063c87b56dd1161006f578063c87b56dd146105a4578063cbf21fe4146105c4578063d1ddf9af146105d9578063e985e9c5146105ef578063f2fde38b1461063857600080fd5b806398d5fdca1461053c578063a0712d6814610551578063a22cb46514610564578063b88d4fde1461058457600080fd5b8063853828b6116100e7578063853828b6146104bf57806388356b92146104d45780638da5cb5b146104e957806391b7f5ed1461050757806395d89b411461052757600080fd5b806370a082311461043c578063714c53981461045c578063715018a6146104715780637a729b8a1461048657600080fd5b80633bd2b67d1161019b5780634f6ccce71161016a5780634f6ccce7146103b057806350839bef146103d057806355f804b3146103e65780636352211e146104065780636dd9a49d1461042657600080fd5b80633bd2b67d1461032e57806342842e0e1461034e578063438b63001461036e5780634e71d92d1461039b57600080fd5b8063095ea7b3116101d7578063095ea7b3146102b757806318160ddd146102d957806323b872dd146102ee5780632f745c591461030e57600080fd5b806301ffc9a714610209578063033bea201461023e57806306fdde031461025d578063081812fc1461027f575b600080fd5b34801561021557600080fd5b50610229610224366004611f94565b610658565b60405190151581526020015b60405180910390f35b34801561024a57600080fd5b506010545b604051908152602001610235565b34801561026957600080fd5b50610272610683565b6040516102359190612106565b34801561028b57600080fd5b5061029f61029a366004612012565b610715565b6040516001600160a01b039091168152602001610235565b3480156102c357600080fd5b506102d76102d2366004611f6b565b6107af565b005b3480156102e557600080fd5b5060085461024f565b3480156102fa57600080fd5b506102d7610309366004611e7d565b6108c5565b34801561031a57600080fd5b5061024f610329366004611f6b565b6108f6565b34801561033a57600080fd5b506102d7610349366004612012565b61098c565b34801561035a57600080fd5b506102d7610369366004611e7d565b6109bb565b34801561037a57600080fd5b5061038e610389366004611e31565b6109d6565b60405161023591906120c2565b3480156103a757600080fd5b506102d7610aab565b3480156103bc57600080fd5b5061024f6103cb366004612012565b610c02565b3480156103dc57600080fd5b5061024f61138781565b3480156103f257600080fd5b506102d7610401366004611fcc565b610ca3565b34801561041257600080fd5b5061029f610421366004612012565b610ce4565b34801561043257600080fd5b5061024f61270f81565b34801561044857600080fd5b5061024f610457366004611e31565b610d5b565b34801561046857600080fd5b50610272610de2565b34801561047d57600080fd5b506102d7610df1565b34801561049257600080fd5b506102296104a1366004611e31565b6001600160a01b03166000908152600c602052604090205460ff1690565b3480156104cb57600080fd5b506102d7610e27565b3480156104e057600080fd5b5060115461024f565b3480156104f557600080fd5b50600a546001600160a01b031661029f565b34801561051357600080fd5b506102d7610522366004612012565b610e58565b34801561053357600080fd5b50610272610e87565b34801561054857600080fd5b50600e5461024f565b6102d761055f366004612012565b610e96565b34801561057057600080fd5b506102d761057f366004611f31565b61107d565b34801561059057600080fd5b506102d761059f366004611eb8565b611142565b3480156105b057600080fd5b506102726105bf366004612012565b61117a565b3480156105d057600080fd5b50600f5461024f565b3480156105e557600080fd5b5061024f61138881565b3480156105fb57600080fd5b5061022961060a366004611e4b565b6001600160a01b03918216600090815260056020908152604080832093909416825291909152205460ff1690565b34801561064457600080fd5b506102d7610653366004611e31565b611255565b60006001600160e01b0319821663780e9d6360e01b148061067d575061067d826112ed565b92915050565b6060600080546106929061227f565b80601f01602080910402602001604051908101604052809291908181526020018280546106be9061227f565b801561070b5780601f106106e05761010080835404028352916020019161070b565b820191906000526020600020905b8154815290600101906020018083116106ee57829003601f168201915b5050505050905090565b6000818152600260205260408120546001600160a01b03166107935760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b60648201526084015b60405180910390fd5b506000908152600460205260409020546001600160a01b031690565b60006107ba82610ce4565b9050806001600160a01b0316836001600160a01b031614156108285760405162461bcd60e51b815260206004820152602160248201527f4552433732313a20617070726f76616c20746f2063757272656e74206f776e656044820152603960f91b606482015260840161078a565b336001600160a01b03821614806108445750610844813361060a565b6108b65760405162461bcd60e51b815260206004820152603860248201527f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760448201527f6e6572206e6f7220617070726f76656420666f7220616c6c0000000000000000606482015260840161078a565b6108c0838361133d565b505050565b6108cf33826113ab565b6108eb5760405162461bcd60e51b815260040161078a906121a0565b6108c08383836114a2565b600061090183610d5b565b82106109635760405162461bcd60e51b815260206004820152602b60248201527f455243373231456e756d657261626c653a206f776e657220696e646578206f7560448201526a74206f6620626f756e647360a81b606482015260840161078a565b506001600160a01b03919091166000908152600660209081526040808320938352929052205490565b600a546001600160a01b031633146109b65760405162461bcd60e51b815260040161078a9061216b565b600f55565b6108c083838360405180602001604052806000815250611142565b606060006109e383610d5b565b905080610a045760408051600080825260208201909252905b509392505050565b60008167ffffffffffffffff811115610a2d57634e487b7160e01b600052604160045260246000fd5b604051908082528060200260200182016040528015610a56578160200160208202803683370190505b50905060005b828110156109fc57610a6e85826108f6565b828281518110610a8e57634e487b7160e01b600052603260045260246000fd5b602090810291909101015280610aa3816122ba565b915050610a5c565b6000610ab660085490565b9050600f54421015610b025760405162461bcd60e51b815260206004820152601560248201527429b0b6329034b9903737ba103cb2ba1037b832b71760591b604482015260640161078a565b61138760105410610b635760405162461bcd60e51b815260206004820152602560248201527f416c6c2066726565206b6974746965732061726520616c726561647920636c6160448201526434b6b2b21760d91b606482015260840161078a565b336000908152600c602052604090205460ff1615610bc35760405162461bcd60e51b815260206004820152601860248201527f596f75206861766520616c726561647920636c61696d65640000000000000000604482015260640161078a565b600160106000828254610bd691906121f1565b9091555050336000818152600c60205260409020805460ff19166001179055610bff908261164d565b50565b6000610c0d60085490565b8210610c705760405162461bcd60e51b815260206004820152602c60248201527f455243373231456e756d657261626c653a20676c6f62616c20696e646578206f60448201526b7574206f6620626f756e647360a01b606482015260840161078a565b60088281548110610c9157634e487b7160e01b600052603260045260246000fd5b90600052602060002001549050919050565b600a546001600160a01b03163314610ccd5760405162461bcd60e51b815260040161078a9061216b565b8051610ce0906012906020840190611d06565b5050565b6000818152600260205260408120546001600160a01b03168061067d5760405162461bcd60e51b815260206004820152602960248201527f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460448201526832b73a103a37b5b2b760b91b606482015260840161078a565b60006001600160a01b038216610dc65760405162461bcd60e51b815260206004820152602a60248201527f4552433732313a2062616c616e636520717565727920666f7220746865207a65604482015269726f206164647265737360b01b606482015260840161078a565b506001600160a01b031660009081526003602052604090205490565b6060601280546106929061227f565b600a546001600160a01b03163314610e1b5760405162461bcd60e51b815260040161078a9061216b565b610e256000611667565b565b600b546040516001600160a01b03909116904780156108fc02916000818181858888f19350505050610e2557600080fd5b600a546001600160a01b03163314610e825760405162461bcd60e51b815260040161078a9061216b565b600e55565b6060600180546106929061227f565b6000610ea160085490565b9050600f54421015610eed5760405162461bcd60e51b815260206004820152601560248201527429b0b6329034b9903737ba103cb2ba1037b832b71760591b604482015260640161078a565b600d548210610f585760405162461bcd60e51b815260206004820152603160248201527f576f61682c204e656c6c792e205468617427732077617920746f6f206d616e79604482015270206b69747469657320746f206d696e742160781b606482015260840161078a565b61138860115483610f6991906121f1565b1115610fd45760405162461bcd60e51b815260206004820152603460248201527f5468697320616d6f756e74206f66206b6974746965732077696c6c206578636560448201527332b21036b0bc103830b4b21035b4ba3a34b2b99760611b606482015260840161078a565b3482600e54610fe3919061221d565b11156110315760405162461bcd60e51b815260206004820152601a60248201527f5472616e73616374696f6e2076616c756520746f6f206c6f772e000000000000604482015260640161078a565b60005b828110156110615761104f3361104a83856121f1565b61164d565b80611059816122ba565b915050611034565b50816011600082825461107491906121f1565b90915550505050565b6001600160a01b0382163314156110d65760405162461bcd60e51b815260206004820152601960248201527f4552433732313a20617070726f766520746f2063616c6c657200000000000000604482015260640161078a565b3360008181526005602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b61114c33836113ab565b6111685760405162461bcd60e51b815260040161078a906121a0565b611174848484846116b9565b50505050565b6000818152600260205260409020546060906001600160a01b03166111f95760405162461bcd60e51b815260206004820152602f60248201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60448201526e3732bc34b9ba32b73a103a37b5b2b760891b606482015260840161078a565b6000611203610de2565b90506000815111611223576040518060200160405280600081525061124e565b8061122d846116ec565b60405160200161123e929190612056565b6040516020818303038152906040525b9392505050565b600a546001600160a01b0316331461127f5760405162461bcd60e51b815260040161078a9061216b565b6001600160a01b0381166112e45760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b606482015260840161078a565b610bff81611667565b60006001600160e01b031982166380ac58cd60e01b148061131e57506001600160e01b03198216635b5e139f60e01b145b8061067d57506301ffc9a760e01b6001600160e01b031983161461067d565b600081815260046020526040902080546001600160a01b0319166001600160a01b038416908117909155819061137282610ce4565b6001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b6000818152600260205260408120546001600160a01b03166114245760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b606482015260840161078a565b600061142f83610ce4565b9050806001600160a01b0316846001600160a01b0316148061146a5750836001600160a01b031661145f84610715565b6001600160a01b0316145b8061149a57506001600160a01b0380821660009081526005602090815260408083209388168352929052205460ff165b949350505050565b826001600160a01b03166114b582610ce4565b6001600160a01b03161461151d5760405162461bcd60e51b815260206004820152602960248201527f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960448201526839903737ba1037bbb760b91b606482015260840161078a565b6001600160a01b03821661157f5760405162461bcd60e51b8152602060048201526024808201527f4552433732313a207472616e7366657220746f20746865207a65726f206164646044820152637265737360e01b606482015260840161078a565b61158a838383611806565b61159560008261133d565b6001600160a01b03831660009081526003602052604081208054600192906115be90849061223c565b90915550506001600160a01b03821660009081526003602052604081208054600192906115ec9084906121f1565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b0386811691821790925591518493918716917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef91a4505050565b610ce08282604051806020016040528060008152506118be565b600a80546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6116c48484846114a2565b6116d0848484846118f1565b6111745760405162461bcd60e51b815260040161078a90612119565b6060816117105750506040805180820190915260018152600360fc1b602082015290565b8160005b811561173a5780611724816122ba565b91506117339050600a83612209565b9150611714565b60008167ffffffffffffffff81111561176357634e487b7160e01b600052604160045260246000fd5b6040519080825280601f01601f19166020018201604052801561178d576020820181803683370190505b5090505b841561149a576117a260018361223c565b91506117af600a866122d5565b6117ba9060306121f1565b60f81b8183815181106117dd57634e487b7160e01b600052603260045260246000fd5b60200101906001600160f81b031916908160001a9053506117ff600a86612209565b9450611791565b6001600160a01b0383166118615761185c81600880546000838152600960205260408120829055600182018355919091527ff3f7a9fe364faab93b216da50a3214154f22a0a2b415b23a84c8169e8b636ee30155565b611884565b816001600160a01b0316836001600160a01b0316146118845761188483826119fe565b6001600160a01b03821661189b576108c081611a9b565b826001600160a01b0316826001600160a01b0316146108c0576108c08282611b74565b6118c88383611bb8565b6118d560008484846118f1565b6108c05760405162461bcd60e51b815260040161078a90612119565b60006001600160a01b0384163b156119f357604051630a85bd0160e11b81526001600160a01b0385169063150b7a0290611935903390899088908890600401612085565b602060405180830381600087803b15801561194f57600080fd5b505af192505050801561197f575060408051601f3d908101601f1916820190925261197c91810190611fb0565b60015b6119d9573d8080156119ad576040519150601f19603f3d011682016040523d82523d6000602084013e6119b2565b606091505b5080516119d15760405162461bcd60e51b815260040161078a90612119565b805181602001fd5b6001600160e01b031916630a85bd0160e11b14905061149a565b506001949350505050565b60006001611a0b84610d5b565b611a15919061223c565b600083815260076020526040902054909150808214611a68576001600160a01b03841660009081526006602090815260408083208584528252808320548484528184208190558352600790915290208190555b5060009182526007602090815260408084208490556001600160a01b039094168352600681528383209183525290812055565b600854600090611aad9060019061223c565b60008381526009602052604081205460088054939450909284908110611ae357634e487b7160e01b600052603260045260246000fd5b906000526020600020015490508060088381548110611b1257634e487b7160e01b600052603260045260246000fd5b6000918252602080832090910192909255828152600990915260408082208490558582528120556008805480611b5857634e487b7160e01b600052603160045260246000fd5b6001900381819060005260206000200160009055905550505050565b6000611b7f83610d5b565b6001600160a01b039093166000908152600660209081526040808320868452825280832085905593825260079052919091209190915550565b6001600160a01b038216611c0e5760405162461bcd60e51b815260206004820181905260248201527f4552433732313a206d696e7420746f20746865207a65726f2061646472657373604482015260640161078a565b6000818152600260205260409020546001600160a01b031615611c735760405162461bcd60e51b815260206004820152601c60248201527f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000604482015260640161078a565b611c7f60008383611806565b6001600160a01b0382166000908152600360205260408120805460019290611ca89084906121f1565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b03861690811790915590518392907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a45050565b828054611d129061227f565b90600052602060002090601f016020900481019282611d345760008555611d7a565b82601f10611d4d57805160ff1916838001178555611d7a565b82800160010185558215611d7a579182015b82811115611d7a578251825591602001919060010190611d5f565b50611d86929150611d8a565b5090565b5b80821115611d865760008155600101611d8b565b600067ffffffffffffffff80841115611dba57611dba612315565b604051601f8501601f19908116603f01168101908282118183101715611de257611de2612315565b81604052809350858152868686011115611dfb57600080fd5b858560208301376000602087830101525050509392505050565b80356001600160a01b0381168114611e2c57600080fd5b919050565b600060208284031215611e42578081fd5b61124e82611e15565b60008060408385031215611e5d578081fd5b611e6683611e15565b9150611e7460208401611e15565b90509250929050565b600080600060608486031215611e91578081fd5b611e9a84611e15565b9250611ea860208501611e15565b9150604084013590509250925092565b60008060008060808587031215611ecd578081fd5b611ed685611e15565b9350611ee460208601611e15565b925060408501359150606085013567ffffffffffffffff811115611f06578182fd5b8501601f81018713611f16578182fd5b611f2587823560208401611d9f565b91505092959194509250565b60008060408385031215611f43578182fd5b611f4c83611e15565b915060208301358015158114611f60578182fd5b809150509250929050565b60008060408385031215611f7d578182fd5b611f8683611e15565b946020939093013593505050565b600060208284031215611fa5578081fd5b813561124e8161232b565b600060208284031215611fc1578081fd5b815161124e8161232b565b600060208284031215611fdd578081fd5b813567ffffffffffffffff811115611ff3578182fd5b8201601f81018413612003578182fd5b61149a84823560208401611d9f565b600060208284031215612023578081fd5b5035919050565b60008151808452612042816020860160208601612253565b601f01601f19169290920160200192915050565b60008351612068818460208801612253565b83519083019061207c818360208801612253565b01949350505050565b6001600160a01b03858116825284166020820152604081018390526080606082018190526000906120b89083018461202a565b9695505050505050565b6020808252825182820181905260009190848201906040850190845b818110156120fa578351835292840192918401916001016120de565b50909695505050505050565b60208152600061124e602083018461202a565b60208082526032908201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560408201527131b2b4bb32b91034b6b83632b6b2b73a32b960711b606082015260800190565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b60208082526031908201527f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f6040820152701ddb995c881b9bdc88185c1c1c9bdd9959607a1b606082015260800190565b60008219821115612204576122046122e9565b500190565b600082612218576122186122ff565b500490565b6000816000190483118215151615612237576122376122e9565b500290565b60008282101561224e5761224e6122e9565b500390565b60005b8381101561226e578181015183820152602001612256565b838111156111745750506000910152565b600181811c9082168061229357607f821691505b602082108114156122b457634e487b7160e01b600052602260045260246000fd5b50919050565b60006000198214156122ce576122ce6122e9565b5060010190565b6000826122e4576122e46122ff565b500690565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052601260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b6001600160e01b031981168114610bff57600080fdfea264697066735822122090f62da36c37b63cd56948fceeab5bebeffbb63b90a7ffbb008023537e108ecb64736f6c63430008040033

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

0000000000000000000000000000000000000000000000000000000000000020000000000000000000000000000000000000000000000000000000000000002b68747470733a2f2f7777772e74686570756e6b6b6974746965732e696f2f6d657461646174612d6170692f000000000000000000000000000000000000000000

-----Decoded View---------------
Arg [0] : baseURI (string): https://www.thepunkkitties.io/metadata-api/

-----Encoded View---------------
4 Constructor Arguments found :
Arg [0] : 0000000000000000000000000000000000000000000000000000000000000020
Arg [1] : 000000000000000000000000000000000000000000000000000000000000002b
Arg [2] : 68747470733a2f2f7777772e74686570756e6b6b6974746965732e696f2f6d65
Arg [3] : 7461646174612d6170692f000000000000000000000000000000000000000000


Deployed Bytecode Sourcemap

43184:3503:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;34695:224;;;;;;;;;;-1:-1:-1;34695:224:0;;;;;:::i;:::-;;:::i;:::-;;;6436:14:1;;6429:22;6411:41;;6399:2;6384:18;34695:224:0;;;;;;;;44403:92;;;;;;;;;;-1:-1:-1;44476:11:0;;44403:92;;;16343:25:1;;;16331:2;16316:18;44403:92:0;16298:76:1;21584:100:0;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;23143:221::-;;;;;;;;;;-1:-1:-1;23143:221:0;;;;;:::i;:::-;;:::i;:::-;;;-1:-1:-1;;;;;5094:32:1;;;5076:51;;5064:2;5049:18;23143:221:0;5031:102:1;22666:411:0;;;;;;;;;;-1:-1:-1;22666:411:0;;;;;:::i;:::-;;:::i;:::-;;35335:113;;;;;;;;;;-1:-1:-1;35423:10:0;:17;35335:113;;24033:339;;;;;;;;;;-1:-1:-1;24033:339:0;;;;;:::i;:::-;;:::i;35003:256::-;;;;;;;;;;-1:-1:-1;35003:256:0;;;;;:::i;:::-;;:::i;44603:89::-;;;;;;;;;;-1:-1:-1;44603:89:0;;;;;:::i;:::-;;:::i;24443:185::-;;;;;;;;;;-1:-1:-1;24443:185:0;;;;;:::i;:::-;;:::i;46115:458::-;;;;;;;;;;-1:-1:-1;46115:458:0;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;44991:429::-;;;;;;;;;;;;;:::i;35525:233::-;;;;;;;;;;-1:-1:-1;35525:233:0;;;;;:::i;:::-;;:::i;43283:42::-;;;;;;;;;;;;43321:4;43283:42;;43951:102;;;;;;;;;;-1:-1:-1;43951:102:0;;;;;:::i;:::-;;:::i;21278:239::-;;;;;;;;;;-1:-1:-1;21278:239:0;;;;;:::i;:::-;;:::i;43234:42::-;;;;;;;;;;;;43272:4;43234:42;;21008:208;;;;;;;;;;-1:-1:-1;21008:208:0;;;;;:::i;:::-;;:::i;44183:97::-;;;;;;;;;;;;;:::i;42496:94::-;;;;;;;;;;;;;:::i;44288:107::-;;;;;;;;;;-1:-1:-1;44288:107:0;;;;;:::i;:::-;-1:-1:-1;;;;;44370:17:0;44346:4;44370:17;;;:11;:17;;;;;;;;;44288:107;46581:103;;;;;;;;;;;;;:::i;44503:92::-;;;;;;;;;;-1:-1:-1;44576:11:0;;44503:92;;41845:87;;;;;;;;;;-1:-1:-1;41918:6:0;;-1:-1:-1;;;;;41918:6:0;41845:87;;44796:97;;;;;;;;;;-1:-1:-1;44796:97:0;;;;;:::i;:::-;;:::i;21753:104::-;;;;;;;;;;;;;:::i;44901:82::-;;;;;;;;;;-1:-1:-1;44969:6:0;;44901:82;;45428:679;;;;;;:::i;:::-;;:::i;23436:295::-;;;;;;;;;;-1:-1:-1;23436:295:0;;;;;:::i;:::-;;:::i;24699:328::-;;;;;;;;;;-1:-1:-1;24699:328:0;;;;;:::i;:::-;;:::i;21928:334::-;;;;;;;;;;-1:-1:-1;21928:334:0;;;;;:::i;:::-;;:::i;44700:88::-;;;;;;;;;;-1:-1:-1;44771:9:0;;44700:88;;43332:42;;;;;;;;;;;;43370:4;43332:42;;23802:164;;;;;;;;;;-1:-1:-1;23802:164:0;;;;;:::i;:::-;-1:-1:-1;;;;;23923:25:0;;;23899:4;23923:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;;;;23802:164;42745:192;;;;;;;;;;-1:-1:-1;42745:192:0;;;;;:::i;:::-;;:::i;34695:224::-;34797:4;-1:-1:-1;;;;;;34821:50:0;;-1:-1:-1;;;34821:50:0;;:90;;;34875:36;34899:11;34875:23;:36::i;:::-;34814:97;34695:224;-1:-1:-1;;34695:224:0:o;21584:100::-;21638:13;21671:5;21664:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;21584:100;:::o;23143:221::-;23219:7;26626:16;;;:7;:16;;;;;;-1:-1:-1;;;;;26626:16:0;23239:73;;;;-1:-1:-1;;;23239:73:0;;12445:2:1;23239:73:0;;;12427:21:1;12484:2;12464:18;;;12457:30;12523:34;12503:18;;;12496:62;-1:-1:-1;;;12574:18:1;;;12567:42;12626:19;;23239:73:0;;;;;;;;;-1:-1:-1;23332:24:0;;;;:15;:24;;;;;;-1:-1:-1;;;;;23332:24:0;;23143:221::o;22666:411::-;22747:13;22763:23;22778:7;22763:14;:23::i;:::-;22747:39;;22811:5;-1:-1:-1;;;;;22805:11:0;:2;-1:-1:-1;;;;;22805:11:0;;;22797:57;;;;-1:-1:-1;;;22797:57:0;;14398:2:1;22797:57:0;;;14380:21:1;14437:2;14417:18;;;14410:30;14476:34;14456:18;;;14449:62;-1:-1:-1;;;14527:18:1;;;14520:31;14568:19;;22797:57:0;14370:223:1;22797:57:0;16127:10;-1:-1:-1;;;;;22889:21:0;;;;:62;;-1:-1:-1;22914:37:0;22931:5;16127:10;23802:164;:::i;22914:37::-;22867:168;;;;-1:-1:-1;;;22867:168:0;;10432:2:1;22867:168:0;;;10414:21:1;10471:2;10451:18;;;10444:30;10510:34;10490:18;;;10483:62;10581:26;10561:18;;;10554:54;10625:19;;22867:168:0;10404:246:1;22867:168:0;23048:21;23057:2;23061:7;23048:8;:21::i;:::-;22666:411;;;:::o;24033:339::-;24228:41;16127:10;24261:7;24228:18;:41::i;:::-;24220:103;;;;-1:-1:-1;;;24220:103:0;;;;;;;:::i;:::-;24336:28;24346:4;24352:2;24356:7;24336:9;:28::i;35003:256::-;35100:7;35136:23;35153:5;35136:16;:23::i;:::-;35128:5;:31;35120:87;;;;-1:-1:-1;;;35120:87:0;;7244:2:1;35120:87:0;;;7226:21:1;7283:2;7263:18;;;7256:30;7322:34;7302:18;;;7295:62;-1:-1:-1;;;7373:18:1;;;7366:41;7424:19;;35120:87:0;7216:233:1;35120:87:0;-1:-1:-1;;;;;;35225:19:0;;;;;;;;:12;:19;;;;;;;;:26;;;;;;;;;35003:256::o;44603:89::-;41918:6;;-1:-1:-1;;;;;41918:6:0;16127:10;42065:23;42057:68;;;;-1:-1:-1;;;42057:68:0;;;;;;;:::i;:::-;44667:9:::1;:17:::0;44603:89::o;24443:185::-;24581:39;24598:4;24604:2;24608:7;24581:39;;;;;;;;;;;;:16;:39::i;46115:458::-;46202:16;46236:18;46257:17;46267:6;46257:9;:17::i;:::-;46236:38;-1:-1:-1;46289:15:0;46285:71;;46328:16;;;46342:1;46328:16;;;;;;;;;;;-1:-1:-1;46321:23:0;46115:458;-1:-1:-1;;;46115:458:0:o;46285:71::-;46368:25;46410:10;46396:25;;;;;;-1:-1:-1;;;46396:25:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;46396:25:0;;46368:53;;46437:9;46432:108;46452:10;46448:1;:14;46432:108;;;46498:30;46518:6;46526:1;46498:19;:30::i;:::-;46484:8;46493:1;46484:11;;;;;;-1:-1:-1;;;46484:11:0;;;;;;;;;;;;;;;;;;:44;46464:3;;;;:::i;:::-;;;;46432:108;;44991:429;45026:19;45048:13;35423:10;:17;;35335:113;45048:13;45026:35;;45099:9;;45080:15;:28;;45072:62;;;;-1:-1:-1;;;45072:62:0;;16049:2:1;45072:62:0;;;16031:21:1;16088:2;16068:18;;;16061:30;-1:-1:-1;;;16107:18:1;;;16100:51;16168:18;;45072:62:0;16021:171:1;45072:62:0;43321:4;45153:11;;:24;45145:74;;;;-1:-1:-1;;;45145:74:0;;12039:2:1;45145:74:0;;;12021:21:1;12078:2;12058:18;;;12051:30;12117:34;12097:18;;;12090:62;-1:-1:-1;;;12168:18:1;;;12161:35;12213:19;;45145:74:0;12011:227:1;45145:74:0;45250:10;45238:23;;;;:11;:23;;;;;;;;:32;45230:69;;;;-1:-1:-1;;;45230:69:0;;14045:2:1;45230:69:0;;;14027:21:1;14084:2;14064:18;;;14057:30;14123:26;14103:18;;;14096:54;14167:18;;45230:69:0;14017:174:1;45230:69:0;45325:1;45310:11;;:16;;;;;;;:::i;:::-;;;;-1:-1:-1;;45349:10:0;45337:23;;;;:11;:23;;;;;:30;;-1:-1:-1;;45337:30:0;45363:4;45337:30;;;45378:34;;45400:11;45378:9;:34::i;:::-;44991:429;:::o;35525:233::-;35600:7;35636:30;35423:10;:17;;35335:113;35636:30;35628:5;:38;35620:95;;;;-1:-1:-1;;;35620:95:0;;15218:2:1;35620:95:0;;;15200:21:1;15257:2;15237:18;;;15230:30;15296:34;15276:18;;;15269:62;-1:-1:-1;;;15347:18:1;;;15340:42;15399:19;;35620:95:0;15190:234:1;35620:95:0;35733:10;35744:5;35733:17;;;;;;-1:-1:-1;;;35733:17:0;;;;;;;;;;;;;;;;;35726:24;;35525:233;;;:::o;43951:102::-;41918:6;;-1:-1:-1;;;;;41918:6:0;16127:10;42065:23;42057:68;;;;-1:-1:-1;;;42057:68:0;;;;;;;:::i;:::-;44022:23;;::::1;::::0;:13:::1;::::0;:23:::1;::::0;::::1;::::0;::::1;:::i;:::-;;43951:102:::0;:::o;21278:239::-;21350:7;21386:16;;;:7;:16;;;;;;-1:-1:-1;;;;;21386:16:0;21421:19;21413:73;;;;-1:-1:-1;;;21413:73:0;;11268:2:1;21413:73:0;;;11250:21:1;11307:2;11287:18;;;11280:30;11346:34;11326:18;;;11319:62;-1:-1:-1;;;11397:18:1;;;11390:39;11446:19;;21413:73:0;11240:231:1;21008:208:0;21080:7;-1:-1:-1;;;;;21108:19:0;;21100:74;;;;-1:-1:-1;;;21100:74:0;;10857:2:1;21100:74:0;;;10839:21:1;10896:2;10876:18;;;10869:30;10935:34;10915:18;;;10908:62;-1:-1:-1;;;10986:18:1;;;10979:40;11036:19;;21100:74:0;10829:232:1;21100:74:0;-1:-1:-1;;;;;;21192:16:0;;;;;:9;:16;;;;;;;21008:208::o;44183:97::-;44226:13;44259;44252:20;;;;;:::i;42496:94::-;41918:6;;-1:-1:-1;;;;;41918:6:0;16127:10;42065:23;42057:68;;;;-1:-1:-1;;;42057:68:0;;;;;;;:::i;:::-;42561:21:::1;42579:1;42561:9;:21::i;:::-;42496:94::o:0;46581:103::-;46638:8;;46630:45;;-1:-1:-1;;;;;46638:8:0;;;;46653:21;46630:45;;;;;46638:8;46630:45;46638:8;46630:45;46653:21;46638:8;46630:45;;;;;;;46622:54;;;;;44796:97;41918:6;;-1:-1:-1;;;;;41918:6:0;16127:10;42065:23;42057:68;;;;-1:-1:-1;;;42057:68:0;;;;;;;:::i;:::-;44864:6:::1;:21:::0;44796:97::o;21753:104::-;21809:13;21842:7;21835:14;;;;;:::i;45428:679::-;45484:19;45506:13;35423:10;:17;;35335:113;45506:13;45484:35;;45557:9;;45538:15;:28;;45530:62;;;;-1:-1:-1;;;45530:62:0;;16049:2:1;45530:62:0;;;16031:21:1;16088:2;16068:18;;;16061:30;-1:-1:-1;;;16107:18:1;;;16100:51;16168:18;;45530:62:0;16021:171:1;45530:62:0;45634:9;;45625:6;:18;45603:117;;;;-1:-1:-1;;;45603:117:0;;15631:2:1;45603:117:0;;;15613:21:1;15670:2;15650:18;;;15643:30;15709:34;15689:18;;;15682:62;-1:-1:-1;;;15760:18:1;;;15753:47;15817:19;;45603:117:0;15603:239:1;45603:117:0;43370:4;45772:11;;45763:6;:20;;;;:::i;:::-;:34;;45741:136;;;;-1:-1:-1;;;45741:136:0;;8839:2:1;45741:136:0;;;8821:21:1;8878:2;8858:18;;;8851:30;8917:34;8897:18;;;8890:62;-1:-1:-1;;;8968:18:1;;;8961:50;9028:19;;45741:136:0;8811:242:1;45741:136:0;45917:9;45907:6;45898;;:15;;;;:::i;:::-;:28;;45890:67;;;;-1:-1:-1;;;45890:67:0;;6889:2:1;45890:67:0;;;6871:21:1;6928:2;6908:18;;;6901:30;6967:28;6947:18;;;6940:56;7013:18;;45890:67:0;6861:176:1;45890:67:0;45975:9;45970:98;45990:6;45986:1;:10;45970:98;;;46018:38;46028:10;46040:15;46054:1;46040:11;:15;:::i;:::-;46018:9;:38::i;:::-;45998:3;;;;:::i;:::-;;;;45970:98;;;;46093:6;46078:11;;:21;;;;;;;:::i;:::-;;;;-1:-1:-1;;;;45428:679:0:o;23436:295::-;-1:-1:-1;;;;;23539:24:0;;16127:10;23539:24;;23531:62;;;;-1:-1:-1;;;23531:62:0;;9665:2:1;23531:62:0;;;9647:21:1;9704:2;9684:18;;;9677:30;9743:27;9723:18;;;9716:55;9788:18;;23531:62:0;9637:175:1;23531:62:0;16127:10;23606:32;;;;:18;:32;;;;;;;;-1:-1:-1;;;;;23606:42:0;;;;;;;;;;;;:53;;-1:-1:-1;;23606:53:0;;;;;;;;;;23675:48;;6411:41:1;;;23606:42:0;;16127:10;23675:48;;6384:18:1;23675:48:0;;;;;;;23436:295;;:::o;24699:328::-;24874:41;16127:10;24907:7;24874:18;:41::i;:::-;24866:103;;;;-1:-1:-1;;;24866:103:0;;;;;;;:::i;:::-;24980:39;24994:4;25000:2;25004:7;25013:5;24980:13;:39::i;:::-;24699:328;;;;:::o;21928:334::-;26602:4;26626:16;;;:7;:16;;;;;;22001:13;;-1:-1:-1;;;;;26626:16:0;22027:76;;;;-1:-1:-1;;;22027:76:0;;13629:2:1;22027:76:0;;;13611:21:1;13668:2;13648:18;;;13641:30;13707:34;13687:18;;;13680:62;-1:-1:-1;;;13758:18:1;;;13751:45;13813:19;;22027:76:0;13601:237:1;22027:76:0;22116:21;22140:10;:8;:10::i;:::-;22116:34;;22192:1;22174:7;22168:21;:25;:86;;;;;;;;;;;;;;;;;22220:7;22229:18;:7;:16;:18::i;:::-;22203:45;;;;;;;;;:::i;:::-;;;;;;;;;;;;;22168:86;22161:93;21928:334;-1:-1:-1;;;21928:334:0:o;42745:192::-;41918:6;;-1:-1:-1;;;;;41918:6:0;16127:10;42065:23;42057:68;;;;-1:-1:-1;;;42057:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;42834:22:0;::::1;42826:73;;;::::0;-1:-1:-1;;;42826:73:0;;8075:2:1;42826:73:0::1;::::0;::::1;8057:21:1::0;8114:2;8094:18;;;8087:30;8153:34;8133:18;;;8126:62;-1:-1:-1;;;8204:18:1;;;8197:36;8250:19;;42826:73:0::1;8047:228:1::0;42826:73:0::1;42910:19;42920:8;42910:9;:19::i;20639:305::-:0;20741:4;-1:-1:-1;;;;;;20778:40:0;;-1:-1:-1;;;20778:40:0;;:105;;-1:-1:-1;;;;;;;20835:48:0;;-1:-1:-1;;;20835:48:0;20778:105;:158;;;-1:-1:-1;;;;;;;;;;19248:40:0;;;20900:36;19139:157;30519:174;30594:24;;;;:15;:24;;;;;:29;;-1:-1:-1;;;;;;30594:29:0;-1:-1:-1;;;;;30594:29:0;;;;;;;;:24;;30648:23;30594:24;30648:14;:23::i;:::-;-1:-1:-1;;;;;30639:46:0;;;;;;;;;;;30519:174;;:::o;26831:348::-;26924:4;26626:16;;;:7;:16;;;;;;-1:-1:-1;;;;;26626:16:0;26941:73;;;;-1:-1:-1;;;26941:73:0;;10019:2:1;26941:73:0;;;10001:21:1;10058:2;10038:18;;;10031:30;10097:34;10077:18;;;10070:62;-1:-1:-1;;;10148:18:1;;;10141:42;10200:19;;26941:73:0;9991:234:1;26941:73:0;27025:13;27041:23;27056:7;27041:14;:23::i;:::-;27025:39;;27094:5;-1:-1:-1;;;;;27083:16:0;:7;-1:-1:-1;;;;;27083:16:0;;:51;;;;27127:7;-1:-1:-1;;;;;27103:31:0;:20;27115:7;27103:11;:20::i;:::-;-1:-1:-1;;;;;27103:31:0;;27083:51;:87;;;-1:-1:-1;;;;;;23923:25:0;;;23899:4;23923:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;27138:32;27075:96;26831:348;-1:-1:-1;;;;26831:348:0:o;29823:578::-;29982:4;-1:-1:-1;;;;;29955:31:0;:23;29970:7;29955:14;:23::i;:::-;-1:-1:-1;;;;;29955:31:0;;29947:85;;;;-1:-1:-1;;;29947:85:0;;13219:2:1;29947:85:0;;;13201:21:1;13258:2;13238:18;;;13231:30;13297:34;13277:18;;;13270:62;-1:-1:-1;;;13348:18:1;;;13341:39;13397:19;;29947:85:0;13191:231:1;29947:85:0;-1:-1:-1;;;;;30051:16:0;;30043:65;;;;-1:-1:-1;;;30043:65:0;;9260:2:1;30043:65:0;;;9242:21:1;9299:2;9279:18;;;9272:30;9338:34;9318:18;;;9311:62;-1:-1:-1;;;9389:18:1;;;9382:34;9433:19;;30043:65:0;9232:226:1;30043:65:0;30121:39;30142:4;30148:2;30152:7;30121:20;:39::i;:::-;30225:29;30242:1;30246:7;30225:8;:29::i;:::-;-1:-1:-1;;;;;30267:15:0;;;;;;:9;:15;;;;;:20;;30286:1;;30267:15;:20;;30286:1;;30267:20;:::i;:::-;;;;-1:-1:-1;;;;;;;30298:13:0;;;;;;:9;:13;;;;;:18;;30315:1;;30298:13;:18;;30315:1;;30298:18;:::i;:::-;;;;-1:-1:-1;;30327:16:0;;;;:7;:16;;;;;;:21;;-1:-1:-1;;;;;;30327:21:0;-1:-1:-1;;;;;30327:21:0;;;;;;;;;30366:27;;30327:16;;30366:27;;;;;;;29823:578;;;:::o;27521:110::-;27597:26;27607:2;27611:7;27597:26;;;;;;;;;;;;:9;:26::i;42945:173::-;43020:6;;;-1:-1:-1;;;;;43037:17:0;;;-1:-1:-1;;;;;;43037:17:0;;;;;;;43070:40;;43020:6;;;43037:17;43020:6;;43070:40;;43001:16;;43070:40;42945:173;;:::o;25909:315::-;26066:28;26076:4;26082:2;26086:7;26066:9;:28::i;:::-;26113:48;26136:4;26142:2;26146:7;26155:5;26113:22;:48::i;:::-;26105:111;;;;-1:-1:-1;;;26105:111:0;;;;;;;:::i;16578:723::-;16634:13;16855:10;16851:53;;-1:-1:-1;;16882:10:0;;;;;;;;;;;;-1:-1:-1;;;16882:10:0;;;;;16578:723::o;16851:53::-;16929:5;16914:12;16970:78;16977:9;;16970:78;;17003:8;;;;:::i;:::-;;-1:-1:-1;17026:10:0;;-1:-1:-1;17034:2:0;17026:10;;:::i;:::-;;;16970:78;;;17058:19;17090:6;17080:17;;;;;;-1:-1:-1;;;17080:17:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;17080:17:0;;17058:39;;17108:154;17115:10;;17108:154;;17142:11;17152:1;17142:11;;:::i;:::-;;-1:-1:-1;17211:10:0;17219:2;17211:5;:10;:::i;:::-;17198:24;;:2;:24;:::i;:::-;17185:39;;17168:6;17175;17168:14;;;;;;-1:-1:-1;;;17168:14:0;;;;;;;;;;;;:56;-1:-1:-1;;;;;17168:56:0;;;;;;;;-1:-1:-1;17239:11:0;17248:2;17239:11;;:::i;:::-;;;17108:154;;36371:589;-1:-1:-1;;;;;36577:18:0;;36573:187;;36612:40;36644:7;37787:10;:17;;37760:24;;;;:15;:24;;;;;:44;;;37815:24;;;;;;;;;;;;37683:164;36612:40;36573:187;;;36682:2;-1:-1:-1;;;;;36674:10:0;:4;-1:-1:-1;;;;;36674:10:0;;36670:90;;36701:47;36734:4;36740:7;36701:32;:47::i;:::-;-1:-1:-1;;;;;36774:16:0;;36770:183;;36807:45;36844:7;36807:36;:45::i;36770:183::-;36880:4;-1:-1:-1;;;;;36874:10:0;:2;-1:-1:-1;;;;;36874:10:0;;36870:83;;36901:40;36929:2;36933:7;36901:27;:40::i;27858:321::-;27988:18;27994:2;27998:7;27988:5;:18::i;:::-;28039:54;28070:1;28074:2;28078:7;28087:5;28039:22;:54::i;:::-;28017:154;;;;-1:-1:-1;;;28017:154:0;;;;;;;:::i;31258:803::-;31413:4;-1:-1:-1;;;;;31434:13:0;;8626:20;8674:8;31430:624;;31470:72;;-1:-1:-1;;;31470:72:0;;-1:-1:-1;;;;;31470:36:0;;;;;:72;;16127:10;;31521:4;;31527:7;;31536:5;;31470:72;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;31470:72:0;;;;;;;;-1:-1:-1;;31470:72:0;;;;;;;;;;;;:::i;:::-;;;31466:533;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;31716:13:0;;31712:272;;31759:60;;-1:-1:-1;;;31759:60:0;;;;;;;:::i;31712:272::-;31934:6;31928:13;31919:6;31915:2;31911:15;31904:38;31466:533;-1:-1:-1;;;;;;31593:55:0;-1:-1:-1;;;31593:55:0;;-1:-1:-1;31586:62:0;;31430:624;-1:-1:-1;32038:4:0;31258:803;;;;;;:::o;38474:988::-;38740:22;38790:1;38765:22;38782:4;38765:16;:22::i;:::-;:26;;;;:::i;:::-;38802:18;38823:26;;;:17;:26;;;;;;38740:51;;-1:-1:-1;38956:28:0;;;38952:328;;-1:-1:-1;;;;;39023:18:0;;39001:19;39023:18;;;:12;:18;;;;;;;;:34;;;;;;;;;39074:30;;;;;;:44;;;39191:30;;:17;:30;;;;;:43;;;38952:328;-1:-1:-1;39376:26:0;;;;:17;:26;;;;;;;;39369:33;;;-1:-1:-1;;;;;39420:18:0;;;;;:12;:18;;;;;:34;;;;;;;39413:41;38474:988::o;39757:1079::-;40035:10;:17;40010:22;;40035:21;;40055:1;;40035:21;:::i;:::-;40067:18;40088:24;;;:15;:24;;;;;;40461:10;:26;;40010:46;;-1:-1:-1;40088:24:0;;40010:46;;40461:26;;;;-1:-1:-1;;;40461:26:0;;;;;;;;;;;;;;;;;40439:48;;40525:11;40500:10;40511;40500:22;;;;;;-1:-1:-1;;;40500:22:0;;;;;;;;;;;;;;;;;;;;:36;;;;40605:28;;;:15;:28;;;;;;;:41;;;40777:24;;;;;40770:31;40812:10;:16;;;;;-1:-1:-1;;;40812:16:0;;;;;;;;;;;;;;;;;;;;;;;;;;39757:1079;;;;:::o;37261:221::-;37346:14;37363:20;37380:2;37363:16;:20::i;:::-;-1:-1:-1;;;;;37394:16:0;;;;;;;:12;:16;;;;;;;;:24;;;;;;;;:34;;;37439:26;;;:17;:26;;;;;;:35;;;;-1:-1:-1;37261:221:0:o;28515:382::-;-1:-1:-1;;;;;28595:16:0;;28587:61;;;;-1:-1:-1;;;28587:61:0;;11678:2:1;28587:61:0;;;11660:21:1;;;11697:18;;;11690:30;11756:34;11736:18;;;11729:62;11808:18;;28587:61:0;11650:182:1;28587:61:0;26602:4;26626:16;;;:7;:16;;;;;;-1:-1:-1;;;;;26626:16:0;:30;28659:58;;;;-1:-1:-1;;;28659:58:0;;8482:2:1;28659:58:0;;;8464:21:1;8521:2;8501:18;;;8494:30;8560;8540:18;;;8533:58;8608:18;;28659:58:0;8454:178:1;28659:58:0;28730:45;28759:1;28763:2;28767:7;28730:20;:45::i;:::-;-1:-1:-1;;;;;28788:13:0;;;;;;:9;:13;;;;;:18;;28805:1;;28788:13;:18;;28805:1;;28788:18;:::i;:::-;;;;-1:-1:-1;;28817:16:0;;;;:7;:16;;;;;;:21;;-1:-1:-1;;;;;;28817:21:0;-1:-1:-1;;;;;28817:21:0;;;;;;;;28856:33;;28817:16;;;28856:33;;28817:16;;28856:33;28515:382;;:::o;-1:-1:-1:-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;;;;;;;;;14:631:1;78:5;108:18;149:2;141:6;138:14;135:2;;;155:18;;:::i;:::-;230:2;224:9;198:2;284:15;;-1:-1:-1;;280:24:1;;;306:2;276:33;272:42;260:55;;;330:18;;;350:22;;;327:46;324:2;;;376:18;;:::i;:::-;416:10;412:2;405:22;445:6;436:15;;475:6;467;460:22;515:3;506:6;501:3;497:16;494:25;491:2;;;532:1;529;522:12;491:2;582:6;577:3;570:4;562:6;558:17;545:44;637:1;630:4;621:6;613;609:19;605:30;598:41;;;;88:557;;;;;:::o;650:173::-;718:20;;-1:-1:-1;;;;;767:31:1;;757:42;;747:2;;813:1;810;803:12;747:2;699:124;;;:::o;828:196::-;887:6;940:2;928:9;919:7;915:23;911:32;908:2;;;961:6;953;946:22;908:2;989:29;1008:9;989:29;:::i;1029:270::-;1097:6;1105;1158:2;1146:9;1137:7;1133:23;1129:32;1126:2;;;1179:6;1171;1164:22;1126:2;1207:29;1226:9;1207:29;:::i;:::-;1197:39;;1255:38;1289:2;1278:9;1274:18;1255:38;:::i;:::-;1245:48;;1116:183;;;;;:::o;1304:338::-;1381:6;1389;1397;1450:2;1438:9;1429:7;1425:23;1421:32;1418:2;;;1471:6;1463;1456:22;1418:2;1499:29;1518:9;1499:29;:::i;:::-;1489:39;;1547:38;1581:2;1570:9;1566:18;1547:38;:::i;:::-;1537:48;;1632:2;1621:9;1617:18;1604:32;1594:42;;1408:234;;;;;:::o;1647:696::-;1742:6;1750;1758;1766;1819:3;1807:9;1798:7;1794:23;1790:33;1787:2;;;1841:6;1833;1826:22;1787:2;1869:29;1888:9;1869:29;:::i;:::-;1859:39;;1917:38;1951:2;1940:9;1936:18;1917:38;:::i;:::-;1907:48;;2002:2;1991:9;1987:18;1974:32;1964:42;;2057:2;2046:9;2042:18;2029:32;2084:18;2076:6;2073:30;2070:2;;;2121:6;2113;2106:22;2070:2;2149:22;;2202:4;2194:13;;2190:27;-1:-1:-1;2180:2:1;;2236:6;2228;2221:22;2180:2;2264:73;2329:7;2324:2;2311:16;2306:2;2302;2298:11;2264:73;:::i;:::-;2254:83;;;1777:566;;;;;;;:::o;2348:367::-;2413:6;2421;2474:2;2462:9;2453:7;2449:23;2445:32;2442:2;;;2495:6;2487;2480:22;2442:2;2523:29;2542:9;2523:29;:::i;:::-;2513:39;;2602:2;2591:9;2587:18;2574:32;2649:5;2642:13;2635:21;2628:5;2625:32;2615:2;;2676:6;2668;2661:22;2615:2;2704:5;2694:15;;;2432:283;;;;;:::o;2720:264::-;2788:6;2796;2849:2;2837:9;2828:7;2824:23;2820:32;2817:2;;;2870:6;2862;2855:22;2817:2;2898:29;2917:9;2898:29;:::i;:::-;2888:39;2974:2;2959:18;;;;2946:32;;-1:-1:-1;;;2807:177:1:o;2989:255::-;3047:6;3100:2;3088:9;3079:7;3075:23;3071:32;3068:2;;;3121:6;3113;3106:22;3068:2;3165:9;3152:23;3184:30;3208:5;3184:30;:::i;3249:259::-;3318:6;3371:2;3359:9;3350:7;3346:23;3342:32;3339:2;;;3392:6;3384;3377:22;3339:2;3429:9;3423:16;3448:30;3472:5;3448:30;:::i;3513:480::-;3582:6;3635:2;3623:9;3614:7;3610:23;3606:32;3603:2;;;3656:6;3648;3641:22;3603:2;3701:9;3688:23;3734:18;3726:6;3723:30;3720:2;;;3771:6;3763;3756:22;3720:2;3799:22;;3852:4;3844:13;;3840:27;-1:-1:-1;3830:2:1;;3886:6;3878;3871:22;3830:2;3914:73;3979:7;3974:2;3961:16;3956:2;3952;3948:11;3914:73;:::i;3998:190::-;4057:6;4110:2;4098:9;4089:7;4085:23;4081:32;4078:2;;;4131:6;4123;4116:22;4078:2;-1:-1:-1;4159:23:1;;4068:120;-1:-1:-1;4068:120:1:o;4193:257::-;4234:3;4272:5;4266:12;4299:6;4294:3;4287:19;4315:63;4371:6;4364:4;4359:3;4355:14;4348:4;4341:5;4337:16;4315:63;:::i;:::-;4432:2;4411:15;-1:-1:-1;;4407:29:1;4398:39;;;;4439:4;4394:50;;4242:208;-1:-1:-1;;4242:208:1:o;4455:470::-;4634:3;4672:6;4666:13;4688:53;4734:6;4729:3;4722:4;4714:6;4710:17;4688:53;:::i;:::-;4804:13;;4763:16;;;;4826:57;4804:13;4763:16;4860:4;4848:17;;4826:57;:::i;:::-;4899:20;;4642:283;-1:-1:-1;;;;4642:283:1:o;5138:488::-;-1:-1:-1;;;;;5407:15:1;;;5389:34;;5459:15;;5454:2;5439:18;;5432:43;5506:2;5491:18;;5484:34;;;5554:3;5549:2;5534:18;;5527:31;;;5332:4;;5575:45;;5600:19;;5592:6;5575:45;:::i;:::-;5567:53;5341:285;-1:-1:-1;;;;;;5341:285:1:o;5631:635::-;5802:2;5854:21;;;5924:13;;5827:18;;;5946:22;;;5773:4;;5802:2;6025:15;;;;5999:2;5984:18;;;5773:4;6071:169;6085:6;6082:1;6079:13;6071:169;;;6146:13;;6134:26;;6215:15;;;;6180:12;;;;6107:1;6100:9;6071:169;;;-1:-1:-1;6257:3:1;;5782:484;-1:-1:-1;;;;;;5782:484:1:o;6463:219::-;6612:2;6601:9;6594:21;6575:4;6632:44;6672:2;6661:9;6657:18;6649:6;6632:44;:::i;7454:414::-;7656:2;7638:21;;;7695:2;7675:18;;;7668:30;7734:34;7729:2;7714:18;;7707:62;-1:-1:-1;;;7800:2:1;7785:18;;7778:48;7858:3;7843:19;;7628:240::o;12656:356::-;12858:2;12840:21;;;12877:18;;;12870:30;12936:34;12931:2;12916:18;;12909:62;13003:2;12988:18;;12830:182::o;14598:413::-;14800:2;14782:21;;;14839:2;14819:18;;;14812:30;14878:34;14873:2;14858:18;;14851:62;-1:-1:-1;;;14944:2:1;14929:18;;14922:47;15001:3;14986:19;;14772:239::o;16379:128::-;16419:3;16450:1;16446:6;16443:1;16440:13;16437:2;;;16456:18;;:::i;:::-;-1:-1:-1;16492:9:1;;16427:80::o;16512:120::-;16552:1;16578;16568:2;;16583:18;;:::i;:::-;-1:-1:-1;16617:9:1;;16558:74::o;16637:168::-;16677:7;16743:1;16739;16735:6;16731:14;16728:1;16725:21;16720:1;16713:9;16706:17;16702:45;16699:2;;;16750:18;;:::i;:::-;-1:-1:-1;16790:9:1;;16689:116::o;16810:125::-;16850:4;16878:1;16875;16872:8;16869:2;;;16883:18;;:::i;:::-;-1:-1:-1;16920:9:1;;16859:76::o;16940:258::-;17012:1;17022:113;17036:6;17033:1;17030:13;17022:113;;;17112:11;;;17106:18;17093:11;;;17086:39;17058:2;17051:10;17022:113;;;17153:6;17150:1;17147:13;17144:2;;;-1:-1:-1;;17188:1:1;17170:16;;17163:27;16993:205::o;17203:380::-;17282:1;17278:12;;;;17325;;;17346:2;;17400:4;17392:6;17388:17;17378:27;;17346:2;17453;17445:6;17442:14;17422:18;17419:38;17416:2;;;17499:10;17494:3;17490:20;17487:1;17480:31;17534:4;17531:1;17524:15;17562:4;17559:1;17552:15;17416:2;;17258:325;;;:::o;17588:135::-;17627:3;-1:-1:-1;;17648:17:1;;17645:2;;;17668:18;;:::i;:::-;-1:-1:-1;17715:1:1;17704:13;;17635:88::o;17728:112::-;17760:1;17786;17776:2;;17791:18;;:::i;:::-;-1:-1:-1;17825:9:1;;17766:74::o;17845:127::-;17906:10;17901:3;17897:20;17894:1;17887:31;17937:4;17934:1;17927:15;17961:4;17958:1;17951:15;17977:127;18038:10;18033:3;18029:20;18026:1;18019:31;18069:4;18066:1;18059:15;18093:4;18090:1;18083:15;18109:127;18170:10;18165:3;18161:20;18158:1;18151:31;18201:4;18198:1;18191:15;18225:4;18222:1;18215:15;18241:131;-1:-1:-1;;;;;;18315:32:1;;18305:43;;18295:2;;18362:1;18359;18352:12

Swarm Source

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