ETH Price: $3,362.82 (-1.58%)
Gas: 7 Gwei

Token

Bored Ape Punk Club (BAPC)
 

Overview

Max Total Supply

5,555 BAPC

Holders

2,177

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A

Other Info

Filtered by Token Holder
root1.eth
Balance
7 BAPC
0x978C54e840D37e0fBdbcf2E2CB241D68a92a950c
Loading...
Loading
Loading...
Loading
Loading...
Loading

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

Contract Source Code Verified (Exact Match)

Contract Name:
BAPC

Compiler Version
v0.8.11+commit.d7f03943

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion, None license

Contract Source Code (Solidity)

/**
 *Submitted for verification at Etherscan.io on 2021-12-29
*/

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


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

pragma solidity ^0.8.0;

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

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

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

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

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

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


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

pragma solidity ^0.8.0;

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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


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

pragma solidity ^0.8.0;

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

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


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

pragma solidity ^0.8.0;

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

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


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

pragma solidity ^0.8.0;


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

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


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

pragma solidity ^0.8.0;


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

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

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

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

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

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

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

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

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

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

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

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

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


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

pragma solidity ^0.8.0;


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

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

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

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


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

pragma solidity ^0.8.0;

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

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

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


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

pragma solidity ^0.8.0;








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

    // Token name
    string private _name;

    // Token symbol
    string private _symbol;

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

        _approve(to, tokenId);
    }

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

        return _tokenApprovals[tokenId];
    }

    /**
     * @dev See {IERC721-setApprovalForAll}.
     */
    function setApprovalForAll(address operator, bool approved) public virtual override {
        _setApprovalForAll(_msgSender(), operator, approved);
    }

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

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

        _transfer(from, to, tokenId);
    }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

        _beforeTokenTransfer(from, to, tokenId);

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

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

        emit Transfer(from, to, tokenId);
    }

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

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

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

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

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


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

pragma solidity ^0.8.0;


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

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

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

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

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

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

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

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

// File: contracts/BAPC.sol

//SPDX-License-Identifier: UNLICENSED
pragma solidity ^0.8.0;



// import 'hardhat/console.sol';

contract BAPC is ERC721, Ownable {
  bool public paused = true;
  bool public isPaidMint = true;
  string private _baseTokenURI;
  uint256 public totalSupply = 0;
  uint256 public constant PRICE = 0.04 ether;
  mapping(address => uint256) private freeWallets;

  constructor(string memory baseURI) ERC721('Bored Ape Punk Club', 'BAPC') {
    setBaseURI(baseURI);
  }

  function mint(uint256 num) public payable {
    uint256 supply = totalSupply;

    require(!paused, 'MINTING PAUSED');
    require(totalSupply + num < 5556, 'EXCEEDS MAX SUPPLY');

    if (totalSupply + num > 555 && isPaidMint) {
      require(num < 11, 'MAX PER TRANSACTION IS 10');
      require(msg.value >= PRICE * num, 'NOT ENOUGH ETH');
    } else {
      require(
        freeWallets[msg.sender] + num < 4,
        'MAX FREE MINTS PER WALLET IS 3'
      );

      freeWallets[msg.sender] += num;
    }

    totalSupply += num;

    for (uint256 i; i < num; i++) {
      _mint(msg.sender, supply + i);
    }
  }

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

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

  function pause(bool state) public onlyOwner {
    paused = state;
  }

  function paidMint(bool state) public onlyOwner {
    isPaidMint = state;
  }

  function withdrawAll() public onlyOwner {
    require(
      payable(owner()).send(address(this).balance),
      'WITHDRAW UNSUCCESSFUL'
    );
  }
}

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":"PRICE","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"isPaidMint","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"num","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":[{"internalType":"bool","name":"state","type":"bool"}],"name":"paidMint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"state","type":"bool"}],"name":"pause","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"paused","outputs":[{"internalType":"bool","name":"","type":"bool"}],"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":"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":"tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"withdrawAll","outputs":[],"stateMutability":"nonpayable","type":"function"}]

60806040526006805461ffff60a01b191661010160a01b17905560006008553480156200002b57600080fd5b5060405162002000380380620020008339810160408190526200004e916200027e565b604080518082018252601381527f426f726564204170652050756e6b20436c7562000000000000000000000000006020808301918252835180850190945260048452634241504360e01b908401528151919291620000af91600091620001c2565b508051620000c5906001906020840190620001c2565b505050620000e2620000dc620000f460201b60201c565b620000f8565b620000ed816200014a565b5062000397565b3390565b600680546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6006546001600160a01b03163314620001a95760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604482015260640160405180910390fd5b8051620001be906007906020840190620001c2565b5050565b828054620001d0906200035a565b90600052602060002090601f016020900481019282620001f457600085556200023f565b82601f106200020f57805160ff19168380011785556200023f565b828001600101855582156200023f579182015b828111156200023f57825182559160200191906001019062000222565b506200024d92915062000251565b5090565b5b808211156200024d576000815560010162000252565b634e487b7160e01b600052604160045260246000fd5b600060208083850312156200029257600080fd5b82516001600160401b0380821115620002aa57600080fd5b818501915085601f830112620002bf57600080fd5b815181811115620002d457620002d462000268565b604051601f8201601f19908116603f01168101908382118183101715620002ff57620002ff62000268565b8160405282815288868487010111156200031857600080fd5b600093505b828410156200033c57848401860151818501870152928501926200031d565b828411156200034e5760008684830101525b98975050505050505050565b600181811c908216806200036f57607f821691505b602082108114156200039157634e487b7160e01b600052602260045260246000fd5b50919050565b611c5980620003a76000396000f3fe6080604052600436106101665760003560e01c80636352211e116100d157806395d89b411161008a578063b88d4fde11610064578063b88d4fde1461040d578063c87b56dd1461042d578063e985e9c51461044d578063f2fde38b1461049657600080fd5b806395d89b41146103c5578063a0712d68146103da578063a22cb465146103ed57600080fd5b80636352211e1461032257806370a0823114610342578063715018a614610362578063853828b6146103775780638d859f3e1461038c5780638da5cb5b146103a757600080fd5b806323b872dd1161012357806323b872dd1461026057806327d2a39e146102805780633b13be40146102a157806342842e0e146102c157806355f804b3146102e15780635c975abb1461030157600080fd5b806301ffc9a71461016b57806302329a29146101a057806306fdde03146101c2578063081812fc146101e4578063095ea7b31461021c57806318160ddd1461023c575b600080fd5b34801561017757600080fd5b5061018b61018636600461169d565b6104b6565b60405190151581526020015b60405180910390f35b3480156101ac57600080fd5b506101c06101bb3660046116cf565b610508565b005b3480156101ce57600080fd5b506101d7610559565b6040516101979190611742565b3480156101f057600080fd5b506102046101ff366004611755565b6105eb565b6040516001600160a01b039091168152602001610197565b34801561022857600080fd5b506101c0610237366004611785565b610680565b34801561024857600080fd5b5061025260085481565b604051908152602001610197565b34801561026c57600080fd5b506101c061027b3660046117af565b610796565b34801561028c57600080fd5b5060065461018b90600160a81b900460ff1681565b3480156102ad57600080fd5b506101c06102bc3660046116cf565b6107c7565b3480156102cd57600080fd5b506101c06102dc3660046117af565b61080f565b3480156102ed57600080fd5b506101c06102fc366004611877565b61082a565b34801561030d57600080fd5b5060065461018b90600160a01b900460ff1681565b34801561032e57600080fd5b5061020461033d366004611755565b61086b565b34801561034e57600080fd5b5061025261035d3660046118c0565b6108e2565b34801561036e57600080fd5b506101c0610969565b34801561038357600080fd5b506101c061099f565b34801561039857600080fd5b50610252668e1bc9bf04000081565b3480156103b357600080fd5b506006546001600160a01b0316610204565b3480156103d157600080fd5b506101d7610a35565b6101c06103e8366004611755565b610a44565b3480156103f957600080fd5b506101c06104083660046118db565b610c8f565b34801561041957600080fd5b506101c061042836600461190e565b610c9a565b34801561043957600080fd5b506101d7610448366004611755565b610cd2565b34801561045957600080fd5b5061018b61046836600461198a565b6001600160a01b03918216600090815260056020908152604080832093909416825291909152205460ff1690565b3480156104a257600080fd5b506101c06104b13660046118c0565b610dad565b60006001600160e01b031982166380ac58cd60e01b14806104e757506001600160e01b03198216635b5e139f60e01b145b8061050257506301ffc9a760e01b6001600160e01b03198316145b92915050565b6006546001600160a01b0316331461053b5760405162461bcd60e51b8152600401610532906119b4565b60405180910390fd5b60068054911515600160a01b0260ff60a01b19909216919091179055565b606060008054610568906119e9565b80601f0160208091040260200160405190810160405280929190818152602001828054610594906119e9565b80156105e15780601f106105b6576101008083540402835291602001916105e1565b820191906000526020600020905b8154815290600101906020018083116105c457829003601f168201915b5050505050905090565b6000818152600260205260408120546001600160a01b03166106645760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b6064820152608401610532565b506000908152600460205260409020546001600160a01b031690565b600061068b8261086b565b9050806001600160a01b0316836001600160a01b031614156106f95760405162461bcd60e51b815260206004820152602160248201527f4552433732313a20617070726f76616c20746f2063757272656e74206f776e656044820152603960f91b6064820152608401610532565b336001600160a01b038216148061071557506107158133610468565b6107875760405162461bcd60e51b815260206004820152603860248201527f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760448201527f6e6572206e6f7220617070726f76656420666f7220616c6c00000000000000006064820152608401610532565b6107918383610e48565b505050565b6107a03382610eb6565b6107bc5760405162461bcd60e51b815260040161053290611a24565b610791838383610fad565b6006546001600160a01b031633146107f15760405162461bcd60e51b8152600401610532906119b4565b60068054911515600160a81b0260ff60a81b19909216919091179055565b61079183838360405180602001604052806000815250610c9a565b6006546001600160a01b031633146108545760405162461bcd60e51b8152600401610532906119b4565b80516108679060079060208401906115ee565b5050565b6000818152600260205260408120546001600160a01b0316806105025760405162461bcd60e51b815260206004820152602960248201527f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460448201526832b73a103a37b5b2b760b91b6064820152608401610532565b60006001600160a01b03821661094d5760405162461bcd60e51b815260206004820152602a60248201527f4552433732313a2062616c616e636520717565727920666f7220746865207a65604482015269726f206164647265737360b01b6064820152608401610532565b506001600160a01b031660009081526003602052604090205490565b6006546001600160a01b031633146109935760405162461bcd60e51b8152600401610532906119b4565b61099d600061114d565b565b6006546001600160a01b031633146109c95760405162461bcd60e51b8152600401610532906119b4565b6006546040516001600160a01b03909116904780156108fc02916000818181858888f1935050505061099d5760405162461bcd60e51b815260206004820152601560248201527415d2551211149055c8155394d550d0d154d4d19553605a1b6044820152606401610532565b606060018054610568906119e9565b600854600654600160a01b900460ff1615610a925760405162461bcd60e51b815260206004820152600e60248201526d13525395125391c814105554d15160921b6044820152606401610532565b6115b482600854610aa39190611a8b565b10610ae55760405162461bcd60e51b815260206004820152601260248201527145584345454453204d415820535550504c5960701b6044820152606401610532565b61022b82600854610af69190611a8b565b118015610b0c5750600654600160a81b900460ff165b15610bb757600b8210610b615760405162461bcd60e51b815260206004820152601960248201527f4d415820504552205452414e53414354494f4e204953203130000000000000006044820152606401610532565b610b7282668e1bc9bf040000611aa3565b341015610bb25760405162461bcd60e51b815260206004820152600e60248201526d09c9ea8408a9c9eaa8e90408aa8960931b6044820152606401610532565b610c47565b33600090815260096020526040902054600490610bd5908490611a8b565b10610c225760405162461bcd60e51b815260206004820152601e60248201527f4d41582046524545204d494e5453205045522057414c4c4554204953203300006044820152606401610532565b3360009081526009602052604081208054849290610c41908490611a8b565b90915550505b8160086000828254610c599190611a8b565b90915550600090505b8281101561079157610c7d33610c788385611a8b565b61119f565b80610c8781611ac2565b915050610c62565b6108673383836112e1565b610ca43383610eb6565b610cc05760405162461bcd60e51b815260040161053290611a24565b610ccc848484846113b0565b50505050565b6000818152600260205260409020546060906001600160a01b0316610d515760405162461bcd60e51b815260206004820152602f60248201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60448201526e3732bc34b9ba32b73a103a37b5b2b760891b6064820152608401610532565b6000610d5b6113e3565b90506000815111610d7b5760405180602001604052806000815250610da6565b80610d85846113f2565b604051602001610d96929190611add565b6040516020818303038152906040525b9392505050565b6006546001600160a01b03163314610dd75760405162461bcd60e51b8152600401610532906119b4565b6001600160a01b038116610e3c5760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610532565b610e458161114d565b50565b600081815260046020526040902080546001600160a01b0319166001600160a01b0384169081179091558190610e7d8261086b565b6001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b6000818152600260205260408120546001600160a01b0316610f2f5760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b6064820152608401610532565b6000610f3a8361086b565b9050806001600160a01b0316846001600160a01b03161480610f755750836001600160a01b0316610f6a846105eb565b6001600160a01b0316145b80610fa557506001600160a01b0380821660009081526005602090815260408083209388168352929052205460ff165b949350505050565b826001600160a01b0316610fc08261086b565b6001600160a01b0316146110285760405162461bcd60e51b815260206004820152602960248201527f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960448201526839903737ba1037bbb760b91b6064820152608401610532565b6001600160a01b03821661108a5760405162461bcd60e51b8152602060048201526024808201527f4552433732313a207472616e7366657220746f20746865207a65726f206164646044820152637265737360e01b6064820152608401610532565b611095600082610e48565b6001600160a01b03831660009081526003602052604081208054600192906110be908490611b0c565b90915550506001600160a01b03821660009081526003602052604081208054600192906110ec908490611a8b565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b0386811691821790925591518493918716917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef91a4505050565b600680546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6001600160a01b0382166111f55760405162461bcd60e51b815260206004820181905260248201527f4552433732313a206d696e7420746f20746865207a65726f20616464726573736044820152606401610532565b6000818152600260205260409020546001600160a01b03161561125a5760405162461bcd60e51b815260206004820152601c60248201527f4552433732313a20746f6b656e20616c7265616479206d696e746564000000006044820152606401610532565b6001600160a01b0382166000908152600360205260408120805460019290611283908490611a8b565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b03861690811790915590518392907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a45050565b816001600160a01b0316836001600160a01b031614156113435760405162461bcd60e51b815260206004820152601960248201527f4552433732313a20617070726f766520746f2063616c6c6572000000000000006044820152606401610532565b6001600160a01b03838116600081815260056020908152604080832094871680845294825291829020805460ff191686151590811790915591519182527f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a3505050565b6113bb848484610fad565b6113c7848484846114f0565b610ccc5760405162461bcd60e51b815260040161053290611b23565b606060078054610568906119e9565b6060816114165750506040805180820190915260018152600360fc1b602082015290565b8160005b8115611440578061142a81611ac2565b91506114399050600a83611b8b565b915061141a565b60008167ffffffffffffffff81111561145b5761145b6117eb565b6040519080825280601f01601f191660200182016040528015611485576020820181803683370190505b5090505b8415610fa55761149a600183611b0c565b91506114a7600a86611b9f565b6114b2906030611a8b565b60f81b8183815181106114c7576114c7611bb3565b60200101906001600160f81b031916908160001a9053506114e9600a86611b8b565b9450611489565b60006001600160a01b0384163b156115e357604051630a85bd0160e11b81526001600160a01b0385169063150b7a0290611534903390899088908890600401611bc9565b6020604051808303816000875af192505050801561156f575060408051601f3d908101601f1916820190925261156c91810190611c06565b60015b6115c9573d80801561159d576040519150601f19603f3d011682016040523d82523d6000602084013e6115a2565b606091505b5080516115c15760405162461bcd60e51b815260040161053290611b23565b805181602001fd5b6001600160e01b031916630a85bd0160e11b149050610fa5565b506001949350505050565b8280546115fa906119e9565b90600052602060002090601f01602090048101928261161c5760008555611662565b82601f1061163557805160ff1916838001178555611662565b82800160010185558215611662579182015b82811115611662578251825591602001919060010190611647565b5061166e929150611672565b5090565b5b8082111561166e5760008155600101611673565b6001600160e01b031981168114610e4557600080fd5b6000602082840312156116af57600080fd5b8135610da681611687565b803580151581146116ca57600080fd5b919050565b6000602082840312156116e157600080fd5b610da6826116ba565b60005b838110156117055781810151838201526020016116ed565b83811115610ccc5750506000910152565b6000815180845261172e8160208601602086016116ea565b601f01601f19169290920160200192915050565b602081526000610da66020830184611716565b60006020828403121561176757600080fd5b5035919050565b80356001600160a01b03811681146116ca57600080fd5b6000806040838503121561179857600080fd5b6117a18361176e565b946020939093013593505050565b6000806000606084860312156117c457600080fd5b6117cd8461176e565b92506117db6020850161176e565b9150604084013590509250925092565b634e487b7160e01b600052604160045260246000fd5b600067ffffffffffffffff8084111561181c5761181c6117eb565b604051601f8501601f19908116603f01168101908282118183101715611844576118446117eb565b8160405280935085815286868601111561185d57600080fd5b858560208301376000602087830101525050509392505050565b60006020828403121561188957600080fd5b813567ffffffffffffffff8111156118a057600080fd5b8201601f810184136118b157600080fd5b610fa584823560208401611801565b6000602082840312156118d257600080fd5b610da68261176e565b600080604083850312156118ee57600080fd5b6118f78361176e565b9150611905602084016116ba565b90509250929050565b6000806000806080858703121561192457600080fd5b61192d8561176e565b935061193b6020860161176e565b925060408501359150606085013567ffffffffffffffff81111561195e57600080fd5b8501601f8101871361196f57600080fd5b61197e87823560208401611801565b91505092959194509250565b6000806040838503121561199d57600080fd5b6119a68361176e565b91506119056020840161176e565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b600181811c908216806119fd57607f821691505b60208210811415611a1e57634e487b7160e01b600052602260045260246000fd5b50919050565b60208082526031908201527f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f6040820152701ddb995c881b9bdc88185c1c1c9bdd9959607a1b606082015260800190565b634e487b7160e01b600052601160045260246000fd5b60008219821115611a9e57611a9e611a75565b500190565b6000816000190483118215151615611abd57611abd611a75565b500290565b6000600019821415611ad657611ad6611a75565b5060010190565b60008351611aef8184602088016116ea565b835190830190611b038183602088016116ea565b01949350505050565b600082821015611b1e57611b1e611a75565b500390565b60208082526032908201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560408201527131b2b4bb32b91034b6b83632b6b2b73a32b960711b606082015260800190565b634e487b7160e01b600052601260045260246000fd5b600082611b9a57611b9a611b75565b500490565b600082611bae57611bae611b75565b500690565b634e487b7160e01b600052603260045260246000fd5b6001600160a01b0385811682528416602082015260408101839052608060608201819052600090611bfc90830184611716565b9695505050505050565b600060208284031215611c1857600080fd5b8151610da68161168756fea2646970667358221220f24f6e006c087fc5707f587a7c45caa68b095897612d5689e25bd09cfc22e18064736f6c634300080b00330000000000000000000000000000000000000000000000000000000000000020000000000000000000000000000000000000000000000000000000000000004468747470733a2f2f697066732e696f2f697066732f516d503965583253684443467a533976513734734e544b3244795a31414534644e634b4b464a426e374e674567642f00000000000000000000000000000000000000000000000000000000

Deployed Bytecode

0x6080604052600436106101665760003560e01c80636352211e116100d157806395d89b411161008a578063b88d4fde11610064578063b88d4fde1461040d578063c87b56dd1461042d578063e985e9c51461044d578063f2fde38b1461049657600080fd5b806395d89b41146103c5578063a0712d68146103da578063a22cb465146103ed57600080fd5b80636352211e1461032257806370a0823114610342578063715018a614610362578063853828b6146103775780638d859f3e1461038c5780638da5cb5b146103a757600080fd5b806323b872dd1161012357806323b872dd1461026057806327d2a39e146102805780633b13be40146102a157806342842e0e146102c157806355f804b3146102e15780635c975abb1461030157600080fd5b806301ffc9a71461016b57806302329a29146101a057806306fdde03146101c2578063081812fc146101e4578063095ea7b31461021c57806318160ddd1461023c575b600080fd5b34801561017757600080fd5b5061018b61018636600461169d565b6104b6565b60405190151581526020015b60405180910390f35b3480156101ac57600080fd5b506101c06101bb3660046116cf565b610508565b005b3480156101ce57600080fd5b506101d7610559565b6040516101979190611742565b3480156101f057600080fd5b506102046101ff366004611755565b6105eb565b6040516001600160a01b039091168152602001610197565b34801561022857600080fd5b506101c0610237366004611785565b610680565b34801561024857600080fd5b5061025260085481565b604051908152602001610197565b34801561026c57600080fd5b506101c061027b3660046117af565b610796565b34801561028c57600080fd5b5060065461018b90600160a81b900460ff1681565b3480156102ad57600080fd5b506101c06102bc3660046116cf565b6107c7565b3480156102cd57600080fd5b506101c06102dc3660046117af565b61080f565b3480156102ed57600080fd5b506101c06102fc366004611877565b61082a565b34801561030d57600080fd5b5060065461018b90600160a01b900460ff1681565b34801561032e57600080fd5b5061020461033d366004611755565b61086b565b34801561034e57600080fd5b5061025261035d3660046118c0565b6108e2565b34801561036e57600080fd5b506101c0610969565b34801561038357600080fd5b506101c061099f565b34801561039857600080fd5b50610252668e1bc9bf04000081565b3480156103b357600080fd5b506006546001600160a01b0316610204565b3480156103d157600080fd5b506101d7610a35565b6101c06103e8366004611755565b610a44565b3480156103f957600080fd5b506101c06104083660046118db565b610c8f565b34801561041957600080fd5b506101c061042836600461190e565b610c9a565b34801561043957600080fd5b506101d7610448366004611755565b610cd2565b34801561045957600080fd5b5061018b61046836600461198a565b6001600160a01b03918216600090815260056020908152604080832093909416825291909152205460ff1690565b3480156104a257600080fd5b506101c06104b13660046118c0565b610dad565b60006001600160e01b031982166380ac58cd60e01b14806104e757506001600160e01b03198216635b5e139f60e01b145b8061050257506301ffc9a760e01b6001600160e01b03198316145b92915050565b6006546001600160a01b0316331461053b5760405162461bcd60e51b8152600401610532906119b4565b60405180910390fd5b60068054911515600160a01b0260ff60a01b19909216919091179055565b606060008054610568906119e9565b80601f0160208091040260200160405190810160405280929190818152602001828054610594906119e9565b80156105e15780601f106105b6576101008083540402835291602001916105e1565b820191906000526020600020905b8154815290600101906020018083116105c457829003601f168201915b5050505050905090565b6000818152600260205260408120546001600160a01b03166106645760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b6064820152608401610532565b506000908152600460205260409020546001600160a01b031690565b600061068b8261086b565b9050806001600160a01b0316836001600160a01b031614156106f95760405162461bcd60e51b815260206004820152602160248201527f4552433732313a20617070726f76616c20746f2063757272656e74206f776e656044820152603960f91b6064820152608401610532565b336001600160a01b038216148061071557506107158133610468565b6107875760405162461bcd60e51b815260206004820152603860248201527f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760448201527f6e6572206e6f7220617070726f76656420666f7220616c6c00000000000000006064820152608401610532565b6107918383610e48565b505050565b6107a03382610eb6565b6107bc5760405162461bcd60e51b815260040161053290611a24565b610791838383610fad565b6006546001600160a01b031633146107f15760405162461bcd60e51b8152600401610532906119b4565b60068054911515600160a81b0260ff60a81b19909216919091179055565b61079183838360405180602001604052806000815250610c9a565b6006546001600160a01b031633146108545760405162461bcd60e51b8152600401610532906119b4565b80516108679060079060208401906115ee565b5050565b6000818152600260205260408120546001600160a01b0316806105025760405162461bcd60e51b815260206004820152602960248201527f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460448201526832b73a103a37b5b2b760b91b6064820152608401610532565b60006001600160a01b03821661094d5760405162461bcd60e51b815260206004820152602a60248201527f4552433732313a2062616c616e636520717565727920666f7220746865207a65604482015269726f206164647265737360b01b6064820152608401610532565b506001600160a01b031660009081526003602052604090205490565b6006546001600160a01b031633146109935760405162461bcd60e51b8152600401610532906119b4565b61099d600061114d565b565b6006546001600160a01b031633146109c95760405162461bcd60e51b8152600401610532906119b4565b6006546040516001600160a01b03909116904780156108fc02916000818181858888f1935050505061099d5760405162461bcd60e51b815260206004820152601560248201527415d2551211149055c8155394d550d0d154d4d19553605a1b6044820152606401610532565b606060018054610568906119e9565b600854600654600160a01b900460ff1615610a925760405162461bcd60e51b815260206004820152600e60248201526d13525395125391c814105554d15160921b6044820152606401610532565b6115b482600854610aa39190611a8b565b10610ae55760405162461bcd60e51b815260206004820152601260248201527145584345454453204d415820535550504c5960701b6044820152606401610532565b61022b82600854610af69190611a8b565b118015610b0c5750600654600160a81b900460ff165b15610bb757600b8210610b615760405162461bcd60e51b815260206004820152601960248201527f4d415820504552205452414e53414354494f4e204953203130000000000000006044820152606401610532565b610b7282668e1bc9bf040000611aa3565b341015610bb25760405162461bcd60e51b815260206004820152600e60248201526d09c9ea8408a9c9eaa8e90408aa8960931b6044820152606401610532565b610c47565b33600090815260096020526040902054600490610bd5908490611a8b565b10610c225760405162461bcd60e51b815260206004820152601e60248201527f4d41582046524545204d494e5453205045522057414c4c4554204953203300006044820152606401610532565b3360009081526009602052604081208054849290610c41908490611a8b565b90915550505b8160086000828254610c599190611a8b565b90915550600090505b8281101561079157610c7d33610c788385611a8b565b61119f565b80610c8781611ac2565b915050610c62565b6108673383836112e1565b610ca43383610eb6565b610cc05760405162461bcd60e51b815260040161053290611a24565b610ccc848484846113b0565b50505050565b6000818152600260205260409020546060906001600160a01b0316610d515760405162461bcd60e51b815260206004820152602f60248201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60448201526e3732bc34b9ba32b73a103a37b5b2b760891b6064820152608401610532565b6000610d5b6113e3565b90506000815111610d7b5760405180602001604052806000815250610da6565b80610d85846113f2565b604051602001610d96929190611add565b6040516020818303038152906040525b9392505050565b6006546001600160a01b03163314610dd75760405162461bcd60e51b8152600401610532906119b4565b6001600160a01b038116610e3c5760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610532565b610e458161114d565b50565b600081815260046020526040902080546001600160a01b0319166001600160a01b0384169081179091558190610e7d8261086b565b6001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b6000818152600260205260408120546001600160a01b0316610f2f5760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b6064820152608401610532565b6000610f3a8361086b565b9050806001600160a01b0316846001600160a01b03161480610f755750836001600160a01b0316610f6a846105eb565b6001600160a01b0316145b80610fa557506001600160a01b0380821660009081526005602090815260408083209388168352929052205460ff165b949350505050565b826001600160a01b0316610fc08261086b565b6001600160a01b0316146110285760405162461bcd60e51b815260206004820152602960248201527f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960448201526839903737ba1037bbb760b91b6064820152608401610532565b6001600160a01b03821661108a5760405162461bcd60e51b8152602060048201526024808201527f4552433732313a207472616e7366657220746f20746865207a65726f206164646044820152637265737360e01b6064820152608401610532565b611095600082610e48565b6001600160a01b03831660009081526003602052604081208054600192906110be908490611b0c565b90915550506001600160a01b03821660009081526003602052604081208054600192906110ec908490611a8b565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b0386811691821790925591518493918716917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef91a4505050565b600680546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6001600160a01b0382166111f55760405162461bcd60e51b815260206004820181905260248201527f4552433732313a206d696e7420746f20746865207a65726f20616464726573736044820152606401610532565b6000818152600260205260409020546001600160a01b03161561125a5760405162461bcd60e51b815260206004820152601c60248201527f4552433732313a20746f6b656e20616c7265616479206d696e746564000000006044820152606401610532565b6001600160a01b0382166000908152600360205260408120805460019290611283908490611a8b565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b03861690811790915590518392907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a45050565b816001600160a01b0316836001600160a01b031614156113435760405162461bcd60e51b815260206004820152601960248201527f4552433732313a20617070726f766520746f2063616c6c6572000000000000006044820152606401610532565b6001600160a01b03838116600081815260056020908152604080832094871680845294825291829020805460ff191686151590811790915591519182527f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a3505050565b6113bb848484610fad565b6113c7848484846114f0565b610ccc5760405162461bcd60e51b815260040161053290611b23565b606060078054610568906119e9565b6060816114165750506040805180820190915260018152600360fc1b602082015290565b8160005b8115611440578061142a81611ac2565b91506114399050600a83611b8b565b915061141a565b60008167ffffffffffffffff81111561145b5761145b6117eb565b6040519080825280601f01601f191660200182016040528015611485576020820181803683370190505b5090505b8415610fa55761149a600183611b0c565b91506114a7600a86611b9f565b6114b2906030611a8b565b60f81b8183815181106114c7576114c7611bb3565b60200101906001600160f81b031916908160001a9053506114e9600a86611b8b565b9450611489565b60006001600160a01b0384163b156115e357604051630a85bd0160e11b81526001600160a01b0385169063150b7a0290611534903390899088908890600401611bc9565b6020604051808303816000875af192505050801561156f575060408051601f3d908101601f1916820190925261156c91810190611c06565b60015b6115c9573d80801561159d576040519150601f19603f3d011682016040523d82523d6000602084013e6115a2565b606091505b5080516115c15760405162461bcd60e51b815260040161053290611b23565b805181602001fd5b6001600160e01b031916630a85bd0160e11b149050610fa5565b506001949350505050565b8280546115fa906119e9565b90600052602060002090601f01602090048101928261161c5760008555611662565b82601f1061163557805160ff1916838001178555611662565b82800160010185558215611662579182015b82811115611662578251825591602001919060010190611647565b5061166e929150611672565b5090565b5b8082111561166e5760008155600101611673565b6001600160e01b031981168114610e4557600080fd5b6000602082840312156116af57600080fd5b8135610da681611687565b803580151581146116ca57600080fd5b919050565b6000602082840312156116e157600080fd5b610da6826116ba565b60005b838110156117055781810151838201526020016116ed565b83811115610ccc5750506000910152565b6000815180845261172e8160208601602086016116ea565b601f01601f19169290920160200192915050565b602081526000610da66020830184611716565b60006020828403121561176757600080fd5b5035919050565b80356001600160a01b03811681146116ca57600080fd5b6000806040838503121561179857600080fd5b6117a18361176e565b946020939093013593505050565b6000806000606084860312156117c457600080fd5b6117cd8461176e565b92506117db6020850161176e565b9150604084013590509250925092565b634e487b7160e01b600052604160045260246000fd5b600067ffffffffffffffff8084111561181c5761181c6117eb565b604051601f8501601f19908116603f01168101908282118183101715611844576118446117eb565b8160405280935085815286868601111561185d57600080fd5b858560208301376000602087830101525050509392505050565b60006020828403121561188957600080fd5b813567ffffffffffffffff8111156118a057600080fd5b8201601f810184136118b157600080fd5b610fa584823560208401611801565b6000602082840312156118d257600080fd5b610da68261176e565b600080604083850312156118ee57600080fd5b6118f78361176e565b9150611905602084016116ba565b90509250929050565b6000806000806080858703121561192457600080fd5b61192d8561176e565b935061193b6020860161176e565b925060408501359150606085013567ffffffffffffffff81111561195e57600080fd5b8501601f8101871361196f57600080fd5b61197e87823560208401611801565b91505092959194509250565b6000806040838503121561199d57600080fd5b6119a68361176e565b91506119056020840161176e565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b600181811c908216806119fd57607f821691505b60208210811415611a1e57634e487b7160e01b600052602260045260246000fd5b50919050565b60208082526031908201527f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f6040820152701ddb995c881b9bdc88185c1c1c9bdd9959607a1b606082015260800190565b634e487b7160e01b600052601160045260246000fd5b60008219821115611a9e57611a9e611a75565b500190565b6000816000190483118215151615611abd57611abd611a75565b500290565b6000600019821415611ad657611ad6611a75565b5060010190565b60008351611aef8184602088016116ea565b835190830190611b038183602088016116ea565b01949350505050565b600082821015611b1e57611b1e611a75565b500390565b60208082526032908201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560408201527131b2b4bb32b91034b6b83632b6b2b73a32b960711b606082015260800190565b634e487b7160e01b600052601260045260246000fd5b600082611b9a57611b9a611b75565b500490565b600082611bae57611bae611b75565b500690565b634e487b7160e01b600052603260045260246000fd5b6001600160a01b0385811682528416602082015260408101839052608060608201819052600090611bfc90830184611716565b9695505050505050565b600060208284031215611c1857600080fd5b8151610da68161168756fea2646970667358221220f24f6e006c087fc5707f587a7c45caa68b095897612d5689e25bd09cfc22e18064736f6c634300080b0033

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

0000000000000000000000000000000000000000000000000000000000000020000000000000000000000000000000000000000000000000000000000000004468747470733a2f2f697066732e696f2f697066732f516d503965583253684443467a533976513734734e544b3244795a31414534644e634b4b464a426e374e674567642f00000000000000000000000000000000000000000000000000000000

-----Decoded View---------------
Arg [0] : baseURI (string): https://ipfs.io/ipfs/QmP9eX2ShDCFzS9vQ74sNTK2DyZ1AE4dNcKKFJBn7NgEgd/

-----Encoded View---------------
5 Constructor Arguments found :
Arg [0] : 0000000000000000000000000000000000000000000000000000000000000020
Arg [1] : 0000000000000000000000000000000000000000000000000000000000000044
Arg [2] : 68747470733a2f2f697066732e696f2f697066732f516d503965583253684443
Arg [3] : 467a533976513734734e544b3244795a31414534644e634b4b464a426e374e67
Arg [4] : 4567642f00000000000000000000000000000000000000000000000000000000


Deployed Bytecode Sourcemap

36319:1560:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;21212:305;;;;;;;;;;-1:-1:-1;21212:305:0;;;;;:::i;:::-;;:::i;:::-;;;565:14:1;;558:22;540:41;;528:2;513:18;21212:305:0;;;;;;;;37563:71;;;;;;;;;;-1:-1:-1;37563:71:0;;;;;:::i;:::-;;:::i;:::-;;22157:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;23716:221::-;;;;;;;;;;-1:-1:-1;23716:221:0;;;;;:::i;:::-;;:::i;:::-;;;-1:-1:-1;;;;;2042:32:1;;;2024:51;;2012:2;1997:18;23716:221:0;1878:203:1;23239:411:0;;;;;;;;;;-1:-1:-1;23239:411:0;;;;;:::i;:::-;;:::i;36454:30::-;;;;;;;;;;;;;;;;;;;2669:25:1;;;2657:2;2642:18;36454:30:0;2523:177:1;24466:339:0;;;;;;;;;;-1:-1:-1;24466:339:0;;;;;:::i;:::-;;:::i;36387:29::-;;;;;;;;;;-1:-1:-1;36387:29:0;;;;-1:-1:-1;;;36387:29:0;;;;;;37640:78;;;;;;;;;;-1:-1:-1;37640:78:0;;;;;:::i;:::-;;:::i;24876:185::-;;;;;;;;;;-1:-1:-1;24876:185:0;;;;;:::i;:::-;;:::i;37461:96::-;;;;;;;;;;-1:-1:-1;37461:96:0;;;;;:::i;:::-;;:::i;36357:25::-;;;;;;;;;;-1:-1:-1;36357:25:0;;;;-1:-1:-1;;;36357:25:0;;;;;;21851:239;;;;;;;;;;-1:-1:-1;21851:239:0;;;;;:::i;:::-;;:::i;21581:208::-;;;;;;;;;;-1:-1:-1;21581:208:0;;;;;:::i;:::-;;:::i;35365:103::-;;;;;;;;;;;;;:::i;37724:152::-;;;;;;;;;;;;;:::i;36489:42::-;;;;;;;;;;;;36521:10;36489:42;;34714:87;;;;;;;;;;-1:-1:-1;34787:6:0;;-1:-1:-1;;;;;34787:6:0;34714:87;;22326:104;;;;;;;;;;;;;:::i;36701:640::-;;;;;;:::i;:::-;;:::i;24009:155::-;;;;;;;;;;-1:-1:-1;24009:155:0;;;;;:::i;:::-;;:::i;25132:328::-;;;;;;;;;;-1:-1:-1;25132:328:0;;;;;:::i;:::-;;:::i;22501:334::-;;;;;;;;;;-1:-1:-1;22501:334:0;;;;;:::i;:::-;;:::i;24235:164::-;;;;;;;;;;-1:-1:-1;24235:164:0;;;;;:::i;:::-;-1:-1:-1;;;;;24356:25:0;;;24332:4;24356:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;;;;24235:164;35623:201;;;;;;;;;;-1:-1:-1;35623:201:0;;;;;:::i;:::-;;:::i;21212:305::-;21314:4;-1:-1:-1;;;;;;21351:40:0;;-1:-1:-1;;;21351:40:0;;:105;;-1:-1:-1;;;;;;;21408:48:0;;-1:-1:-1;;;21408:48:0;21351:105;:158;;;-1:-1:-1;;;;;;;;;;13197:40:0;;;21473:36;21331:178;21212:305;-1:-1:-1;;21212:305:0:o;37563:71::-;34787:6;;-1:-1:-1;;;;;34787:6:0;19686:10;34934:23;34926:68;;;;-1:-1:-1;;;34926:68:0;;;;;;;:::i;:::-;;;;;;;;;37614:6:::1;:14:::0;;;::::1;;-1:-1:-1::0;;;37614:14:0::1;-1:-1:-1::0;;;;37614:14:0;;::::1;::::0;;;::::1;::::0;;37563:71::o;22157:100::-;22211:13;22244:5;22237:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;22157:100;:::o;23716:221::-;23792:7;27059:16;;;:7;:16;;;;;;-1:-1:-1;;;;;27059:16:0;23812:73;;;;-1:-1:-1;;;23812:73:0;;6598:2:1;23812:73:0;;;6580:21:1;6637:2;6617:18;;;6610:30;6676:34;6656:18;;;6649:62;-1:-1:-1;;;6727:18:1;;;6720:42;6779:19;;23812:73:0;6396:408:1;23812:73:0;-1:-1:-1;23905:24:0;;;;:15;:24;;;;;;-1:-1:-1;;;;;23905:24:0;;23716:221::o;23239:411::-;23320:13;23336:23;23351:7;23336:14;:23::i;:::-;23320:39;;23384:5;-1:-1:-1;;;;;23378:11:0;:2;-1:-1:-1;;;;;23378:11:0;;;23370:57;;;;-1:-1:-1;;;23370:57:0;;7011:2:1;23370:57:0;;;6993:21:1;7050:2;7030:18;;;7023:30;7089:34;7069:18;;;7062:62;-1:-1:-1;;;7140:18:1;;;7133:31;7181:19;;23370:57:0;6809:397:1;23370:57:0;19686:10;-1:-1:-1;;;;;23462:21:0;;;;:62;;-1:-1:-1;23487:37:0;23504:5;19686:10;24235:164;:::i;23487:37::-;23440:168;;;;-1:-1:-1;;;23440:168:0;;7413:2:1;23440:168:0;;;7395:21:1;7452:2;7432:18;;;7425:30;7491:34;7471:18;;;7464:62;7562:26;7542:18;;;7535:54;7606:19;;23440:168:0;7211:420:1;23440:168:0;23621:21;23630:2;23634:7;23621:8;:21::i;:::-;23309:341;23239:411;;:::o;24466:339::-;24661:41;19686:10;24694:7;24661:18;:41::i;:::-;24653:103;;;;-1:-1:-1;;;24653:103:0;;;;;;;:::i;:::-;24769:28;24779:4;24785:2;24789:7;24769:9;:28::i;37640:78::-;34787:6;;-1:-1:-1;;;;;34787:6:0;19686:10;34934:23;34926:68;;;;-1:-1:-1;;;34926:68:0;;;;;;;:::i;:::-;37694:10:::1;:18:::0;;;::::1;;-1:-1:-1::0;;;37694:18:0::1;-1:-1:-1::0;;;;37694:18:0;;::::1;::::0;;;::::1;::::0;;37640:78::o;24876:185::-;25014:39;25031:4;25037:2;25041:7;25014:39;;;;;;;;;;;;:16;:39::i;37461:96::-;34787:6;;-1:-1:-1;;;;;34787:6:0;19686:10;34934:23;34926:68;;;;-1:-1:-1;;;34926:68:0;;;;;;;:::i;:::-;37528:23;;::::1;::::0;:13:::1;::::0;:23:::1;::::0;::::1;::::0;::::1;:::i;:::-;;37461:96:::0;:::o;21851:239::-;21923:7;21959:16;;;:7;:16;;;;;;-1:-1:-1;;;;;21959:16:0;21994:19;21986:73;;;;-1:-1:-1;;;21986:73:0;;8256:2:1;21986:73:0;;;8238:21:1;8295:2;8275:18;;;8268:30;8334:34;8314:18;;;8307:62;-1:-1:-1;;;8385:18:1;;;8378:39;8434:19;;21986:73:0;8054:405:1;21581:208:0;21653:7;-1:-1:-1;;;;;21681:19:0;;21673:74;;;;-1:-1:-1;;;21673:74:0;;8666:2:1;21673:74:0;;;8648:21:1;8705:2;8685:18;;;8678:30;8744:34;8724:18;;;8717:62;-1:-1:-1;;;8795:18:1;;;8788:40;8845:19;;21673:74:0;8464:406:1;21673:74:0;-1:-1:-1;;;;;;21765:16:0;;;;;:9;:16;;;;;;;21581:208::o;35365:103::-;34787:6;;-1:-1:-1;;;;;34787:6:0;19686:10;34934:23;34926:68;;;;-1:-1:-1;;;34926:68:0;;;;;;;:::i;:::-;35430:30:::1;35457:1;35430:18;:30::i;:::-;35365:103::o:0;37724:152::-;34787:6;;-1:-1:-1;;;;;34787:6:0;19686:10;34934:23;34926:68;;;;-1:-1:-1;;;34926:68:0;;;;;;;:::i;:::-;34787:6;;37787:44:::1;::::0;-1:-1:-1;;;;;34787:6:0;;;;37809:21:::1;37787:44:::0;::::1;;;::::0;::::1;::::0;;;37809:21;34787:6;37787:44;::::1;;;;;;37771:99;;;::::0;-1:-1:-1;;;37771:99:0;;9077:2:1;37771:99:0::1;::::0;::::1;9059:21:1::0;9116:2;9096:18;;;9089:30;-1:-1:-1;;;9135:18:1;;;9128:51;9196:18;;37771:99:0::1;8875:345:1::0;22326:104:0;22382:13;22415:7;22408:14;;;;;:::i;36701:640::-;36767:11;;36796:6;;-1:-1:-1;;;36796:6:0;;;;36795:7;36787:34;;;;-1:-1:-1;;;36787:34:0;;9427:2:1;36787:34:0;;;9409:21:1;9466:2;9446:18;;;9439:30;-1:-1:-1;;;9485:18:1;;;9478:44;9539:18;;36787:34:0;9225:338:1;36787:34:0;36856:4;36850:3;36836:11;;:17;;;;:::i;:::-;:24;36828:55;;;;-1:-1:-1;;;36828:55:0;;10035:2:1;36828:55:0;;;10017:21:1;10074:2;10054:18;;;10047:30;-1:-1:-1;;;10093:18:1;;;10086:48;10151:18;;36828:55:0;9833:342:1;36828:55:0;36916:3;36910;36896:11;;:17;;;;:::i;:::-;:23;:37;;;;-1:-1:-1;36923:10:0;;-1:-1:-1;;;36923:10:0;;;;36896:37;36892:333;;;36958:2;36952:3;:8;36944:46;;;;-1:-1:-1;;;36944:46:0;;10382:2:1;36944:46:0;;;10364:21:1;10421:2;10401:18;;;10394:30;10460:27;10440:18;;;10433:55;10505:18;;36944:46:0;10180:349:1;36944:46:0;37020:11;37028:3;36521:10;37020:11;:::i;:::-;37007:9;:24;;36999:51;;;;-1:-1:-1;;;36999:51:0;;10909:2:1;36999:51:0;;;10891:21:1;10948:2;10928:18;;;10921:30;-1:-1:-1;;;10967:18:1;;;10960:44;11021:18;;36999:51:0;10707:338:1;36999:51:0;36892:333;;;37103:10;37091:23;;;;:11;:23;;;;;;37123:1;;37091:29;;37117:3;;37091:29;:::i;:::-;:33;37073:103;;;;-1:-1:-1;;;37073:103:0;;11252:2:1;37073:103:0;;;11234:21:1;11291:2;11271:18;;;11264:30;11330:32;11310:18;;;11303:60;11380:18;;37073:103:0;11050:354:1;37073:103:0;37199:10;37187:23;;;;:11;:23;;;;;:30;;37214:3;;37187:23;:30;;37214:3;;37187:30;:::i;:::-;;;;-1:-1:-1;;36892:333:0;37248:3;37233:11;;:18;;;;;;;:::i;:::-;;;;-1:-1:-1;37265:9:0;;-1:-1:-1;37260:76:0;37280:3;37276:1;:7;37260:76;;;37299:29;37305:10;37317;37326:1;37317:6;:10;:::i;:::-;37299:5;:29::i;:::-;37285:3;;;;:::i;:::-;;;;37260:76;;24009:155;24104:52;19686:10;24137:8;24147;24104:18;:52::i;25132:328::-;25307:41;19686:10;25340:7;25307:18;:41::i;:::-;25299:103;;;;-1:-1:-1;;;25299:103:0;;;;;;;:::i;:::-;25413:39;25427:4;25433:2;25437:7;25446:5;25413:13;:39::i;:::-;25132:328;;;;:::o;22501:334::-;27035:4;27059:16;;;:7;:16;;;;;;22574:13;;-1:-1:-1;;;;;27059:16:0;22600:76;;;;-1:-1:-1;;;22600:76:0;;11751:2:1;22600:76:0;;;11733:21:1;11790:2;11770:18;;;11763:30;11829:34;11809:18;;;11802:62;-1:-1:-1;;;11880:18:1;;;11873:45;11935:19;;22600:76:0;11549:411:1;22600:76:0;22689:21;22713:10;:8;:10::i;:::-;22689:34;;22765:1;22747:7;22741:21;:25;:86;;;;;;;;;;;;;;;;;22793:7;22802:18;:7;:16;:18::i;:::-;22776:45;;;;;;;;;:::i;:::-;;;;;;;;;;;;;22741:86;22734:93;22501:334;-1:-1:-1;;;22501:334:0:o;35623:201::-;34787:6;;-1:-1:-1;;;;;34787:6:0;19686:10;34934:23;34926:68;;;;-1:-1:-1;;;34926:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;35712:22:0;::::1;35704:73;;;::::0;-1:-1:-1;;;35704:73:0;;12642:2:1;35704:73:0::1;::::0;::::1;12624:21:1::0;12681:2;12661:18;;;12654:30;12720:34;12700:18;;;12693:62;-1:-1:-1;;;12771:18:1;;;12764:36;12817:19;;35704:73:0::1;12440:402:1::0;35704:73:0::1;35788:28;35807:8;35788:18;:28::i;:::-;35623:201:::0;:::o;30952:174::-;31027:24;;;;:15;:24;;;;;:29;;-1:-1:-1;;;;;;31027:29:0;-1:-1:-1;;;;;31027:29:0;;;;;;;;:24;;31081:23;31027:24;31081:14;:23::i;:::-;-1:-1:-1;;;;;31072:46:0;;;;;;;;;;;30952:174;;:::o;27264:348::-;27357:4;27059:16;;;:7;:16;;;;;;-1:-1:-1;;;;;27059:16:0;27374:73;;;;-1:-1:-1;;;27374:73:0;;13049:2:1;27374:73:0;;;13031:21:1;13088:2;13068:18;;;13061:30;13127:34;13107:18;;;13100:62;-1:-1:-1;;;13178:18:1;;;13171:42;13230:19;;27374:73:0;12847:408:1;27374:73:0;27458:13;27474:23;27489:7;27474:14;:23::i;:::-;27458:39;;27527:5;-1:-1:-1;;;;;27516:16:0;:7;-1:-1:-1;;;;;27516:16:0;;:51;;;;27560:7;-1:-1:-1;;;;;27536:31:0;:20;27548:7;27536:11;:20::i;:::-;-1:-1:-1;;;;;27536:31:0;;27516:51;:87;;;-1:-1:-1;;;;;;24356:25:0;;;24332:4;24356:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;27571:32;27508:96;27264:348;-1:-1:-1;;;;27264:348:0:o;30256:578::-;30415:4;-1:-1:-1;;;;;30388:31:0;:23;30403:7;30388:14;:23::i;:::-;-1:-1:-1;;;;;30388:31:0;;30380:85;;;;-1:-1:-1;;;30380:85:0;;13462:2:1;30380:85:0;;;13444:21:1;13501:2;13481:18;;;13474:30;13540:34;13520:18;;;13513:62;-1:-1:-1;;;13591:18:1;;;13584:39;13640:19;;30380:85:0;13260:405:1;30380:85:0;-1:-1:-1;;;;;30484:16:0;;30476:65;;;;-1:-1:-1;;;30476:65:0;;13872:2:1;30476:65:0;;;13854:21:1;13911:2;13891:18;;;13884:30;13950:34;13930:18;;;13923:62;-1:-1:-1;;;14001:18:1;;;13994:34;14045:19;;30476:65:0;13670:400:1;30476:65:0;30658:29;30675:1;30679:7;30658:8;:29::i;:::-;-1:-1:-1;;;;;30700:15:0;;;;;;:9;:15;;;;;:20;;30719:1;;30700:15;:20;;30719:1;;30700:20;:::i;:::-;;;;-1:-1:-1;;;;;;;30731:13:0;;;;;;:9;:13;;;;;:18;;30748:1;;30731:13;:18;;30748:1;;30731:18;:::i;:::-;;;;-1:-1:-1;;30760:16:0;;;;:7;:16;;;;;;:21;;-1:-1:-1;;;;;;30760:21:0;-1:-1:-1;;;;;30760:21:0;;;;;;;;;30799:27;;30760:16;;30799:27;;;;;;;30256:578;;;:::o;35984:191::-;36077:6;;;-1:-1:-1;;;;;36094:17:0;;;-1:-1:-1;;;;;;36094:17:0;;;;;;;36127:40;;36077:6;;;36094:17;36077:6;;36127:40;;36058:16;;36127:40;36047:128;35984:191;:::o;28948:382::-;-1:-1:-1;;;;;29028:16:0;;29020:61;;;;-1:-1:-1;;;29020:61:0;;14407:2:1;29020:61:0;;;14389:21:1;;;14426:18;;;14419:30;14485:34;14465:18;;;14458:62;14537:18;;29020:61:0;14205:356:1;29020:61:0;27035:4;27059:16;;;:7;:16;;;;;;-1:-1:-1;;;;;27059:16:0;:30;29092:58;;;;-1:-1:-1;;;29092:58:0;;14768:2:1;29092:58:0;;;14750:21:1;14807:2;14787:18;;;14780:30;14846;14826:18;;;14819:58;14894:18;;29092:58:0;14566:352:1;29092:58:0;-1:-1:-1;;;;;29221:13:0;;;;;;:9;:13;;;;;:18;;29238:1;;29221:13;:18;;29238:1;;29221:18;:::i;:::-;;;;-1:-1:-1;;29250:16:0;;;;:7;:16;;;;;;:21;;-1:-1:-1;;;;;;29250:21:0;-1:-1:-1;;;;;29250:21:0;;;;;;;;29289:33;;29250:16;;;29289:33;;29250:16;;29289:33;28948:382;;:::o;31268:315::-;31423:8;-1:-1:-1;;;;;31414:17:0;:5;-1:-1:-1;;;;;31414:17:0;;;31406:55;;;;-1:-1:-1;;;31406:55:0;;15125:2:1;31406:55:0;;;15107:21:1;15164:2;15144:18;;;15137:30;15203:27;15183:18;;;15176:55;15248:18;;31406:55:0;14923:349:1;31406:55:0;-1:-1:-1;;;;;31472:25:0;;;;;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;;:46;;-1:-1:-1;;31472:46:0;;;;;;;;;;31534:41;;540::1;;;31534::0;;513:18:1;31534:41:0;;;;;;;31268:315;;;:::o;26342:::-;26499:28;26509:4;26515:2;26519:7;26499:9;:28::i;:::-;26546:48;26569:4;26575:2;26579:7;26588:5;26546:22;:48::i;:::-;26538:111;;;;-1:-1:-1;;;26538:111:0;;;;;;;:::i;37347:108::-;37407:13;37436;37429:20;;;;;:::i;365:723::-;421:13;642:10;638:53;;-1:-1:-1;;669:10:0;;;;;;;;;;;;-1:-1:-1;;;669:10:0;;;;;365:723::o;638:53::-;716:5;701:12;757:78;764:9;;757:78;;790:8;;;;:::i;:::-;;-1:-1:-1;813:10:0;;-1:-1:-1;821:2:0;813:10;;:::i;:::-;;;757:78;;;845:19;877:6;867:17;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;867:17:0;;845:39;;895:154;902:10;;895:154;;929:11;939:1;929:11;;:::i;:::-;;-1:-1:-1;998:10:0;1006:2;998:5;:10;:::i;:::-;985:24;;:2;:24;:::i;:::-;972:39;;955:6;962;955:14;;;;;;;;:::i;:::-;;;;:56;-1:-1:-1;;;;;955:56:0;;;;;;;;-1:-1:-1;1026:11:0;1035:2;1026:11;;:::i;:::-;;;895:154;;32148:799;32303:4;-1:-1:-1;;;;;32324:13:0;;3267:20;3315:8;32320:620;;32360:72;;-1:-1:-1;;;32360:72:0;;-1:-1:-1;;;;;32360:36:0;;;;;:72;;19686:10;;32411:4;;32417:7;;32426:5;;32360:72;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;-1:-1:-1;32360:72:0;;;;;;;;-1:-1:-1;;32360:72:0;;;;;;;;;;;;:::i;:::-;;;32356:529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;32602:13:0;;32598:272;;32645:60;;-1:-1:-1;;;32645:60:0;;;;;;;:::i;32598:272::-;32820:6;32814:13;32805:6;32801:2;32797:15;32790:38;32356:529;-1:-1:-1;;;;;;32483:51:0;-1:-1:-1;;;32483:51:0;;-1:-1:-1;32476:58:0;;32320:620;-1:-1:-1;32924:4:0;32148:799;;;;;;:::o;-1:-1:-1:-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;;;;;;;;;14:131:1;-1:-1:-1;;;;;;88:32:1;;78:43;;68:71;;135:1;132;125:12;150:245;208:6;261:2;249:9;240:7;236:23;232:32;229:52;;;277:1;274;267:12;229:52;316:9;303:23;335:30;359:5;335:30;:::i;592:160::-;657:20;;713:13;;706:21;696:32;;686:60;;742:1;739;732:12;686:60;592:160;;;:::o;757:180::-;813:6;866:2;854:9;845:7;841:23;837:32;834:52;;;882:1;879;872:12;834:52;905:26;921:9;905:26;:::i;942:258::-;1014:1;1024:113;1038:6;1035:1;1032:13;1024:113;;;1114:11;;;1108:18;1095:11;;;1088:39;1060:2;1053:10;1024:113;;;1155:6;1152:1;1149:13;1146:48;;;-1:-1:-1;;1190:1:1;1172:16;;1165:27;942:258::o;1205:::-;1247:3;1285:5;1279:12;1312:6;1307:3;1300:19;1328:63;1384:6;1377:4;1372:3;1368:14;1361:4;1354:5;1350:16;1328:63;:::i;:::-;1445:2;1424:15;-1:-1:-1;;1420:29:1;1411:39;;;;1452:4;1407:50;;1205:258;-1:-1:-1;;1205:258:1:o;1468:220::-;1617:2;1606:9;1599:21;1580:4;1637:45;1678:2;1667:9;1663:18;1655:6;1637:45;:::i;1693:180::-;1752:6;1805:2;1793:9;1784:7;1780:23;1776:32;1773:52;;;1821:1;1818;1811:12;1773:52;-1:-1:-1;1844:23:1;;1693:180;-1:-1:-1;1693:180:1:o;2086:173::-;2154:20;;-1:-1:-1;;;;;2203:31:1;;2193:42;;2183:70;;2249:1;2246;2239:12;2264:254;2332:6;2340;2393:2;2381:9;2372:7;2368:23;2364:32;2361:52;;;2409:1;2406;2399:12;2361:52;2432:29;2451:9;2432:29;:::i;:::-;2422:39;2508:2;2493:18;;;;2480:32;;-1:-1:-1;;;2264:254:1:o;2705:328::-;2782:6;2790;2798;2851:2;2839:9;2830:7;2826:23;2822:32;2819:52;;;2867:1;2864;2857:12;2819:52;2890:29;2909:9;2890:29;:::i;:::-;2880:39;;2938:38;2972:2;2961:9;2957:18;2938:38;:::i;:::-;2928:48;;3023:2;3012:9;3008:18;2995:32;2985:42;;2705:328;;;;;:::o;3038:127::-;3099:10;3094:3;3090:20;3087:1;3080:31;3130:4;3127:1;3120:15;3154:4;3151:1;3144:15;3170:632;3235:5;3265:18;3306:2;3298:6;3295:14;3292:40;;;3312:18;;:::i;:::-;3387:2;3381:9;3355:2;3441:15;;-1:-1:-1;;3437:24:1;;;3463:2;3433:33;3429:42;3417:55;;;3487:18;;;3507:22;;;3484:46;3481:72;;;3533:18;;:::i;:::-;3573:10;3569:2;3562:22;3602:6;3593:15;;3632:6;3624;3617:22;3672:3;3663:6;3658:3;3654:16;3651:25;3648:45;;;3689:1;3686;3679:12;3648:45;3739:6;3734:3;3727:4;3719:6;3715:17;3702:44;3794:1;3787:4;3778:6;3770;3766:19;3762:30;3755:41;;;;3170:632;;;;;:::o;3807:451::-;3876:6;3929:2;3917:9;3908:7;3904:23;3900:32;3897:52;;;3945:1;3942;3935:12;3897:52;3985:9;3972:23;4018:18;4010:6;4007:30;4004:50;;;4050:1;4047;4040:12;4004:50;4073:22;;4126:4;4118:13;;4114:27;-1:-1:-1;4104:55:1;;4155:1;4152;4145:12;4104:55;4178:74;4244:7;4239:2;4226:16;4221:2;4217;4213:11;4178:74;:::i;4263:186::-;4322:6;4375:2;4363:9;4354:7;4350:23;4346:32;4343:52;;;4391:1;4388;4381:12;4343:52;4414:29;4433:9;4414:29;:::i;4454:254::-;4519:6;4527;4580:2;4568:9;4559:7;4555:23;4551:32;4548:52;;;4596:1;4593;4586:12;4548:52;4619:29;4638:9;4619:29;:::i;:::-;4609:39;;4667:35;4698:2;4687:9;4683:18;4667:35;:::i;:::-;4657:45;;4454:254;;;;;:::o;4713:667::-;4808:6;4816;4824;4832;4885:3;4873:9;4864:7;4860:23;4856:33;4853:53;;;4902:1;4899;4892:12;4853:53;4925:29;4944:9;4925:29;:::i;:::-;4915:39;;4973:38;5007:2;4996:9;4992:18;4973:38;:::i;:::-;4963:48;;5058:2;5047:9;5043:18;5030:32;5020:42;;5113:2;5102:9;5098:18;5085:32;5140:18;5132:6;5129:30;5126:50;;;5172:1;5169;5162:12;5126:50;5195:22;;5248:4;5240:13;;5236:27;-1:-1:-1;5226:55:1;;5277:1;5274;5267:12;5226:55;5300:74;5366:7;5361:2;5348:16;5343:2;5339;5335:11;5300:74;:::i;:::-;5290:84;;;4713:667;;;;;;;:::o;5385:260::-;5453:6;5461;5514:2;5502:9;5493:7;5489:23;5485:32;5482:52;;;5530:1;5527;5520:12;5482:52;5553:29;5572:9;5553:29;:::i;:::-;5543:39;;5601:38;5635:2;5624:9;5620:18;5601:38;:::i;5650:356::-;5852:2;5834:21;;;5871:18;;;5864:30;5930:34;5925:2;5910:18;;5903:62;5997:2;5982:18;;5650:356::o;6011:380::-;6090:1;6086:12;;;;6133;;;6154:61;;6208:4;6200:6;6196:17;6186:27;;6154:61;6261:2;6253:6;6250:14;6230:18;6227:38;6224:161;;;6307:10;6302:3;6298:20;6295:1;6288:31;6342:4;6339:1;6332:15;6370:4;6367:1;6360:15;6224:161;;6011:380;;;:::o;7636:413::-;7838:2;7820:21;;;7877:2;7857:18;;;7850:30;7916:34;7911:2;7896:18;;7889:62;-1:-1:-1;;;7982:2:1;7967:18;;7960:47;8039:3;8024:19;;7636:413::o;9568:127::-;9629:10;9624:3;9620:20;9617:1;9610:31;9660:4;9657:1;9650:15;9684:4;9681:1;9674:15;9700:128;9740:3;9771:1;9767:6;9764:1;9761:13;9758:39;;;9777:18;;:::i;:::-;-1:-1:-1;9813:9:1;;9700:128::o;10534:168::-;10574:7;10640:1;10636;10632:6;10628:14;10625:1;10622:21;10617:1;10610:9;10603:17;10599:45;10596:71;;;10647:18;;:::i;:::-;-1:-1:-1;10687:9:1;;10534:168::o;11409:135::-;11448:3;-1:-1:-1;;11469:17:1;;11466:43;;;11489:18;;:::i;:::-;-1:-1:-1;11536:1:1;11525:13;;11409:135::o;11965:470::-;12144:3;12182:6;12176:13;12198:53;12244:6;12239:3;12232:4;12224:6;12220:17;12198:53;:::i;:::-;12314:13;;12273:16;;;;12336:57;12314:13;12273:16;12370:4;12358:17;;12336:57;:::i;:::-;12409:20;;11965:470;-1:-1:-1;;;;11965:470:1:o;14075:125::-;14115:4;14143:1;14140;14137:8;14134:34;;;14148:18;;:::i;:::-;-1:-1:-1;14185:9:1;;14075:125::o;15277:414::-;15479:2;15461:21;;;15518:2;15498:18;;;15491:30;15557:34;15552:2;15537:18;;15530:62;-1:-1:-1;;;15623:2:1;15608:18;;15601:48;15681:3;15666:19;;15277:414::o;15696:127::-;15757:10;15752:3;15748:20;15745:1;15738:31;15788:4;15785:1;15778:15;15812:4;15809:1;15802:15;15828:120;15868:1;15894;15884:35;;15899:18;;:::i;:::-;-1:-1:-1;15933:9:1;;15828:120::o;15953:112::-;15985:1;16011;16001:35;;16016:18;;:::i;:::-;-1:-1:-1;16050:9:1;;15953:112::o;16070:127::-;16131:10;16126:3;16122:20;16119:1;16112:31;16162:4;16159:1;16152:15;16186:4;16183:1;16176:15;16202:489;-1:-1:-1;;;;;16471:15:1;;;16453:34;;16523:15;;16518:2;16503:18;;16496:43;16570:2;16555:18;;16548:34;;;16618:3;16613:2;16598:18;;16591:31;;;16396:4;;16639:46;;16665:19;;16657:6;16639:46;:::i;:::-;16631:54;16202:489;-1:-1:-1;;;;;;16202:489:1:o;16696:249::-;16765:6;16818:2;16806:9;16797:7;16793:23;16789:32;16786:52;;;16834:1;16831;16824:12;16786:52;16866:9;16860:16;16885:30;16909:5;16885:30;:::i

Swarm Source

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