ETH Price: $3,006.70 (+1.21%)
Gas: 6 Gwei

Token

PSS Bingo (PSSBINGO)
 

Overview

Max Total Supply

529 PSSBINGO

Holders

443

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A
Filtered by Token Holder
vcode.eth
Balance
1 PSSBINGO
0x4b8c499de5f63dd95931d69d83f8d56268fee09b
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:
PSSBingoNFT

Compiler Version
v0.8.7+commit.e28d00a7

Optimization Enabled:
Yes with 999999 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

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

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

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

// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

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

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

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

pragma solidity ^0.8.0;

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

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

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

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

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

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

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

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

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

pragma solidity ^0.8.0;

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

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

pragma solidity ^0.8.0;

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

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

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

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

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

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

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

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

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

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

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

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

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

pragma solidity ^0.8.0;

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

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

pragma solidity ^0.8.0;

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

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

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

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

pragma solidity ^0.8.0;

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

pragma solidity ^0.8.0;

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

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

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

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

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

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

pragma solidity ^0.8.0;

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

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

pragma solidity ^0.8.0;

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

    // Token name
    string private _name;

    // Token symbol
    string private _symbol;

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

        _approve(to, tokenId);
    }

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

        return _tokenApprovals[tokenId];
    }

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

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

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

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

        _transfer(from, to, tokenId);
    }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

        _beforeTokenTransfer(from, to, tokenId);

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

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

        emit Transfer(from, to, tokenId);
    }

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

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

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

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

pragma solidity ^0.8.0;

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

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

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

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

pragma solidity ^0.8.0;

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

// File contracts/OpenSeaTradableNFT.sol

pragma solidity ^0.8.0;

contract OpenSeaOwnableDelegateProxy {}

contract OpenSeaProxyRegistry {
    mapping(address => OpenSeaOwnableDelegateProxy) public proxies;
}

contract OpenSeaTradableNFT {
    address openSeaProxyRegistryAddress;

    function _setProxyRegistryAddress(address _openSeaProxyRegistryAddress)
        internal
    {
        openSeaProxyRegistryAddress = _openSeaProxyRegistryAddress;
    }

    function isApprovedForAll(address owner, address operator)
        public
        view
        virtual
        returns (bool)
    {
        // Whitelist OpenSea proxy contract for easy trading.
        OpenSeaProxyRegistry openSeaProxyRegistry = OpenSeaProxyRegistry(
            openSeaProxyRegistryAddress
        );
        if (address(openSeaProxyRegistry.proxies(owner)) == operator) {
            return true;
        }

        return false;
    }
}

// File contracts/PSSBingo.sol

pragma solidity ^0.8.0;

contract PSSBingoNFT is Ownable, ERC721Enumerable, OpenSeaTradableNFT {
    string public baseURI = '';

    uint256 public price = 0.03 ether;

    uint256 public MAX_CARD_PURCHASE = 20;

    mapping(address => bool) public claimed;

    constructor(
        string memory _initialBaseURI,
        address _openSeaProxyRegistryAddress
    ) ERC721('PSS Bingo', 'PSSBINGO') {
        baseURI = _initialBaseURI;
        OpenSeaTradableNFT._setProxyRegistryAddress(
            _openSeaProxyRegistryAddress
        );
    }

    function isApprovedForAll(address owner, address operator)
        public
        view
        override(ERC721, OpenSeaTradableNFT)
        returns (bool)
    {
        if (OpenSeaTradableNFT.isApprovedForAll(owner, operator)) {
            return true;
        }

        return ERC721.isApprovedForAll(owner, operator);
    }

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

    function mintCards(uint256 numberOfTokens) external payable {
        require(
            numberOfTokens <= MAX_CARD_PURCHASE,
            'Can only mint MAX_CARD_PURCHASE tokens at a time'
        );
        require(
            msg.value >= price * numberOfTokens,
            'Ether value sent is not correct'
        );

        for (uint256 i = 0; i < numberOfTokens; i++) {
            uint256 mintIndex = totalSupply();
            _safeMint(msg.sender, mintIndex);
        }
    }

    function setBaseURI(string memory _newBaseURI) external onlyOwner {
        baseURI = _newBaseURI;
    }

    function setPrice(uint256 _price) external onlyOwner {
        price = _price;
    }

    function mint(address[] memory addresses) external onlyOwner {
        for (uint256 i = 0; i < addresses.length; i++) {
            if (claimed[addresses[i]]) continue;

            uint256 mintIndex = totalSupply();
            _safeMint(addresses[i], mintIndex);
            claimed[addresses[i]] = true;
        }
    }

    function removeClaimedAddresses(address[] memory addresses)
        external
        onlyOwner
    {
        for (uint256 i = 0; i < addresses.length; i++) {
            claimed[addresses[i]] = false;
        }
    }

    function withdraw() external onlyOwner {
        uint256 balance = address(this).balance;
        payable(msg.sender).transfer(balance);
    }
}

Contract Security Audit

Contract ABI

[{"inputs":[{"internalType":"string","name":"_initialBaseURI","type":"string"},{"internalType":"address","name":"_openSeaProxyRegistryAddress","type":"address"}],"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":"MAX_CARD_PURCHASE","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"baseURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"claimed","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address[]","name":"addresses","type":"address[]"}],"name":"mint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"numberOfTokens","type":"uint256"}],"name":"mintCards","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"price","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address[]","name":"addresses","type":"address[]"}],"name":"removeClaimedAddresses","outputs":[],"stateMutability":"nonpayable","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":"_newBaseURI","type":"string"}],"name":"setBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_price","type":"uint256"}],"name":"setPrice","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"index","type":"uint256"}],"name":"tokenByIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"uint256","name":"index","type":"uint256"}],"name":"tokenOfOwnerByIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"withdraw","outputs":[],"stateMutability":"nonpayable","type":"function"}]

60a06040819052600060808190526200001b91600c9162000191565b50666a94d74f430000600d556014600e553480156200003957600080fd5b5060405162003343380380620033438339810160408190526200005c9162000254565b604051806040016040528060098152602001685053532042696e676f60b81b8152506040518060400160405280600881526020016750535342494e474f60c01b815250620000b9620000b36200011b60201b60201c565b6200011f565b8151620000ce90600190602085019062000191565b508051620000e490600290602084019062000191565b50508251620000fc9150600c90602085019062000191565b5062000113816200016f60201b620017c81760201c565b505062000398565b3390565b600080546001600160a01b038381166001600160a01b0319831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b600b80546001600160a01b0319166001600160a01b0392909216919091179055565b8280546200019f9062000345565b90600052602060002090601f016020900481019282620001c357600085556200020e565b82601f10620001de57805160ff19168380011785556200020e565b828001600101855582156200020e579182015b828111156200020e578251825591602001919060010190620001f1565b506200021c92915062000220565b5090565b5b808211156200021c576000815560010162000221565b80516001600160a01b03811681146200024f57600080fd5b919050565b600080604083850312156200026857600080fd5b82516001600160401b03808211156200028057600080fd5b818501915085601f8301126200029557600080fd5b815181811115620002aa57620002aa62000382565b604051601f8201601f19908116603f01168101908382118183101715620002d557620002d562000382565b81604052828152602093508884848701011115620002f257600080fd5b600091505b82821015620003165784820184015181830185015290830190620002f7565b82821115620003285760008484830101525b95506200033a91505085820162000237565b925050509250929050565b600181811c908216806200035a57607f821691505b602082108114156200037c57634e487b7160e01b600052602260045260246000fd5b50919050565b634e487b7160e01b600052604160045260246000fd5b612f9b80620003a86000396000f3fe6080604052600436106101c25760003560e01c80636c0360eb116100f7578063a035b1fe11610095578063c87b56dd11610064578063c87b56dd146104e2578063c884ef8314610502578063e985e9c514610532578063f2fde38b1461055257600080fd5b8063a035b1fe1461046c578063a22cb46514610482578063b88d4fde146104a2578063bd075b84146104c257600080fd5b80638da5cb5b116100d15780638da5cb5b146103ec57806391b7f5ed14610417578063923e24051461043757806395d89b411461045757600080fd5b80636c0360eb146103a257806370a08231146103b7578063715018a6146103d757600080fd5b80632f745c591161016457806342842e0e1161013e57806342842e0e146103225780634f6ccce71461034257806355f804b3146103625780636352211e1461038257600080fd5b80632f745c59146102da578063331d0c9a146102fa5780633ccfd60b1461030d57600080fd5b8063095ea7b3116101a0578063095ea7b31461026357806318160ddd1461028557806323b872dd146102a45780632559051e146102c457600080fd5b806301ffc9a7146101c757806306fdde03146101fc578063081812fc1461021e575b600080fd5b3480156101d357600080fd5b506101e76101e2366004612b00565b610572565b60405190151581526020015b60405180910390f35b34801561020857600080fd5b506102116105ce565b6040516101f39190612c7b565b34801561022a57600080fd5b5061023e610239366004612ba0565b610660565b60405173ffffffffffffffffffffffffffffffffffffffff90911681526020016101f3565b34801561026f57600080fd5b5061028361027e366004612a1b565b61073f565b005b34801561029157600080fd5b506009545b6040519081526020016101f3565b3480156102b057600080fd5b506102836102bf366004612927565b6108cc565b3480156102d057600080fd5b50610296600e5481565b3480156102e657600080fd5b506102966102f5366004612a1b565b61096d565b610283610308366004612ba0565b610a3c565b34801561031957600080fd5b50610283610b7e565b34801561032e57600080fd5b5061028361033d366004612927565b610c2e565b34801561034e57600080fd5b5061029661035d366004612ba0565b610c49565b34801561036e57600080fd5b5061028361037d366004612b57565b610d07565b34801561038e57600080fd5b5061023e61039d366004612ba0565b610d9b565b3480156103ae57600080fd5b50610211610e4d565b3480156103c357600080fd5b506102966103d23660046128d1565b610edb565b3480156103e357600080fd5b50610283610fa9565b3480156103f857600080fd5b5060005473ffffffffffffffffffffffffffffffffffffffff1661023e565b34801561042357600080fd5b50610283610432366004612ba0565b611036565b34801561044357600080fd5b50610283610452366004612a47565b6110bc565b34801561046357600080fd5b506102116111d0565b34801561047857600080fd5b50610296600d5481565b34801561048e57600080fd5b5061028361049d3660046129e8565b6111df565b3480156104ae57600080fd5b506102836104bd366004612968565b6112f6565b3480156104ce57600080fd5b506102836104dd366004612a47565b61139e565b3480156104ee57600080fd5b506102116104fd366004612ba0565b611534565b34801561050e57600080fd5b506101e761051d3660046128d1565b600f6020526000908152604090205460ff1681565b34801561053e57600080fd5b506101e761054d3660046128ee565b611644565b34801561055e57600080fd5b5061028361056d3660046128d1565b611698565b60007fffffffff0000000000000000000000000000000000000000000000000000000082167f780e9d630000000000000000000000000000000000000000000000000000000014806105c857506105c88261180f565b92915050565b6060600180546105dd90612d89565b80601f016020809104026020016040519081016040528092919081815260200182805461060990612d89565b80156106565780601f1061062b57610100808354040283529160200191610656565b820191906000526020600020905b81548152906001019060200180831161063957829003601f168201915b5050505050905090565b60008181526003602052604081205473ffffffffffffffffffffffffffffffffffffffff16610716576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602c60248201527f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860448201527f697374656e7420746f6b656e000000000000000000000000000000000000000060648201526084015b60405180910390fd5b5060009081526005602052604090205473ffffffffffffffffffffffffffffffffffffffff1690565b600061074a82610d9b565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610808576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602160248201527f4552433732313a20617070726f76616c20746f2063757272656e74206f776e6560448201527f7200000000000000000000000000000000000000000000000000000000000000606482015260840161070d565b3373ffffffffffffffffffffffffffffffffffffffff8216148061083157506108318133611644565b6108bd576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152603860248201527f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760448201527f6e6572206e6f7220617070726f76656420666f7220616c6c0000000000000000606482015260840161070d565b6108c783836118f2565b505050565b6108d63382611992565b610962576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152603160248201527f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f60448201527f776e6572206e6f7220617070726f766564000000000000000000000000000000606482015260840161070d565b6108c7838383611ad5565b600061097883610edb565b8210610a06576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602b60248201527f455243373231456e756d657261626c653a206f776e657220696e646578206f7560448201527f74206f6620626f756e6473000000000000000000000000000000000000000000606482015260840161070d565b5073ffffffffffffffffffffffffffffffffffffffff919091166000908152600760209081526040808320938352929052205490565b600e54811115610ace576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152603060248201527f43616e206f6e6c79206d696e74204d41585f434152445f50555243484153452060448201527f746f6b656e7320617420612074696d6500000000000000000000000000000000606482015260840161070d565b80600d54610adc9190612d09565b341015610b45576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601f60248201527f45746865722076616c75652073656e74206973206e6f7420636f727265637400604482015260640161070d565b60005b81811015610b7a576000610b5b60095490565b9050610b673382611d47565b5080610b7281612ddd565b915050610b48565b5050565b60005473ffffffffffffffffffffffffffffffffffffffff163314610bff576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604482015260640161070d565b6040514790339082156108fc029083906000818181858888f19350505050158015610b7a573d6000803e3d6000fd5b6108c7838383604051806020016040528060008152506112f6565b6000610c5460095490565b8210610ce2576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602c60248201527f455243373231456e756d657261626c653a20676c6f62616c20696e646578206f60448201527f7574206f6620626f756e64730000000000000000000000000000000000000000606482015260840161070d565b60098281548110610cf557610cf5612eb7565b90600052602060002001549050919050565b60005473ffffffffffffffffffffffffffffffffffffffff163314610d88576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604482015260640161070d565b8051610b7a90600c9060208401906127c2565b60008181526003602052604081205473ffffffffffffffffffffffffffffffffffffffff16806105c8576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602960248201527f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460448201527f656e7420746f6b656e0000000000000000000000000000000000000000000000606482015260840161070d565b600c8054610e5a90612d89565b80601f0160208091040260200160405190810160405280929190818152602001828054610e8690612d89565b8015610ed35780601f10610ea857610100808354040283529160200191610ed3565b820191906000526020600020905b815481529060010190602001808311610eb657829003601f168201915b505050505081565b600073ffffffffffffffffffffffffffffffffffffffff8216610f80576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602a60248201527f4552433732313a2062616c616e636520717565727920666f7220746865207a6560448201527f726f206164647265737300000000000000000000000000000000000000000000606482015260840161070d565b5073ffffffffffffffffffffffffffffffffffffffff1660009081526004602052604090205490565b60005473ffffffffffffffffffffffffffffffffffffffff16331461102a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604482015260640161070d565b6110346000611d61565b565b60005473ffffffffffffffffffffffffffffffffffffffff1633146110b7576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604482015260640161070d565b600d55565b60005473ffffffffffffffffffffffffffffffffffffffff16331461113d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604482015260640161070d565b60005b8151811015610b7a576000600f600084848151811061116157611161612eb7565b60209081029190910181015173ffffffffffffffffffffffffffffffffffffffff16825281019190915260400160002080547fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0016911515919091179055806111c881612ddd565b915050611140565b6060600280546105dd90612d89565b73ffffffffffffffffffffffffffffffffffffffff821633141561125f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601960248201527f4552433732313a20617070726f766520746f2063616c6c657200000000000000604482015260640161070d565b33600081815260066020908152604080832073ffffffffffffffffffffffffffffffffffffffff87168085529083529281902080547fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff001686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b6113003383611992565b61138c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152603160248201527f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f60448201527f776e6572206e6f7220617070726f766564000000000000000000000000000000606482015260840161070d565b61139884848484611dd6565b50505050565b60005473ffffffffffffffffffffffffffffffffffffffff16331461141f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604482015260640161070d565b60005b8151811015610b7a57600f600083838151811061144157611441612eb7565b60209081029190910181015173ffffffffffffffffffffffffffffffffffffffff1682528101919091526040016000205460ff161561147f57611522565b600061148a60095490565b90506114af8383815181106114a1576114a1612eb7565b602002602001015182611d47565b6001600f60008585815181106114c7576114c7612eb7565b602002602001015173ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff021916908315150217905550505b8061152c81612ddd565b915050611422565b60008181526003602052604090205460609073ffffffffffffffffffffffffffffffffffffffff166115e8576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602f60248201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60448201527f6e6578697374656e7420746f6b656e0000000000000000000000000000000000606482015260840161070d565b60006115f2611e79565b90506000815111611612576040518060200160405280600081525061163d565b8061161c84611e88565b60405160200161162d929190612c03565b6040516020818303038152906040525b9392505050565b60006116508383611fba565b1561165d575060016105c8565b73ffffffffffffffffffffffffffffffffffffffff80841660009081526006602090815260408083209386168352929052205460ff1661163d565b60005473ffffffffffffffffffffffffffffffffffffffff163314611719576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604482015260640161070d565b73ffffffffffffffffffffffffffffffffffffffff81166117bc576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201527f6464726573730000000000000000000000000000000000000000000000000000606482015260840161070d565b6117c581611d61565b50565b600b80547fffffffffffffffffffffffff00000000000000000000000000000000000000001673ffffffffffffffffffffffffffffffffffffffff92909216919091179055565b60007fffffffff0000000000000000000000000000000000000000000000000000000082167f80ac58cd0000000000000000000000000000000000000000000000000000000014806118a257507fffffffff0000000000000000000000000000000000000000000000000000000082167f5b5e139f00000000000000000000000000000000000000000000000000000000145b806105c857507f01ffc9a7000000000000000000000000000000000000000000000000000000007fffffffff000000000000000000000000000000000000000000000000000000008316146105c8565b600081815260056020526040902080547fffffffffffffffffffffffff00000000000000000000000000000000000000001673ffffffffffffffffffffffffffffffffffffffff8416908117909155819061194c82610d9b565b73ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b60008181526003602052604081205473ffffffffffffffffffffffffffffffffffffffff16611a43576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602c60248201527f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860448201527f697374656e7420746f6b656e0000000000000000000000000000000000000000606482015260840161070d565b6000611a4e83610d9b565b90508073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161480611abd57508373ffffffffffffffffffffffffffffffffffffffff16611aa584610660565b73ffffffffffffffffffffffffffffffffffffffff16145b80611acd5750611acd8185611644565b949350505050565b8273ffffffffffffffffffffffffffffffffffffffff16611af582610d9b565b73ffffffffffffffffffffffffffffffffffffffff1614611b98576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602960248201527f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960448201527f73206e6f74206f776e0000000000000000000000000000000000000000000000606482015260840161070d565b73ffffffffffffffffffffffffffffffffffffffff8216611c3a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152602060048201526024808201527f4552433732313a207472616e7366657220746f20746865207a65726f2061646460448201527f7265737300000000000000000000000000000000000000000000000000000000606482015260840161070d565b611c45838383612095565b611c506000826118f2565b73ffffffffffffffffffffffffffffffffffffffff83166000908152600460205260408120805460019290611c86908490612d46565b909155505073ffffffffffffffffffffffffffffffffffffffff82166000908152600460205260408120805460019290611cc1908490612cdd565b909155505060008181526003602052604080822080547fffffffffffffffffffffffff00000000000000000000000000000000000000001673ffffffffffffffffffffffffffffffffffffffff86811691821790925591518493918716917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef91a4505050565b610b7a82826040518060200160405280600081525061219b565b6000805473ffffffffffffffffffffffffffffffffffffffff8381167fffffffffffffffffffffffff0000000000000000000000000000000000000000831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b611de1848484611ad5565b611ded8484848461223e565b611398576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152603260248201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560448201527f63656976657220696d706c656d656e7465720000000000000000000000000000606482015260840161070d565b6060600c80546105dd90612d89565b606081611ec857505060408051808201909152600181527f3000000000000000000000000000000000000000000000000000000000000000602082015290565b8160005b8115611ef25780611edc81612ddd565b9150611eeb9050600a83612cf5565b9150611ecc565b60008167ffffffffffffffff811115611f0d57611f0d612ee6565b6040519080825280601f01601f191660200182016040528015611f37576020820181803683370190505b5090505b8415611acd57611f4c600183612d46565b9150611f59600a86612e16565b611f64906030612cdd565b60f81b818381518110611f7957611f79612eb7565b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350611fb3600a86612cf5565b9450611f3b565b600b546040517fc455279100000000000000000000000000000000000000000000000000000000815273ffffffffffffffffffffffffffffffffffffffff848116600483015260009281169190841690829063c45527919060240160206040518083038186803b15801561202d57600080fd5b505afa158015612041573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906120659190612b3a565b73ffffffffffffffffffffffffffffffffffffffff16141561208b5760019150506105c8565b5060009392505050565b73ffffffffffffffffffffffffffffffffffffffff83166120fd576120f881600980546000838152600a60205260408120829055600182018355919091527f6e1540171b6c0c960b71a7020d9f60077f6af931a8bbf590da0223dacf75c7af0155565b61213a565b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161461213a5761213a838261243d565b73ffffffffffffffffffffffffffffffffffffffff821661215e576108c7816124f4565b8273ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16146108c7576108c782826125a3565b6121a583836125f4565b6121b2600084848461223e565b6108c7576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152603260248201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560448201527f63656976657220696d706c656d656e7465720000000000000000000000000000606482015260840161070d565b600073ffffffffffffffffffffffffffffffffffffffff84163b15612432576040517f150b7a0200000000000000000000000000000000000000000000000000000000815273ffffffffffffffffffffffffffffffffffffffff85169063150b7a02906122b5903390899088908890600401612c32565b602060405180830381600087803b1580156122cf57600080fd5b505af192505050801561231d575060408051601f3d9081017fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe016820190925261231a91810190612b1d565b60015b6123e7573d80801561234b576040519150601f19603f3d011682016040523d82523d6000602084013e612350565b606091505b5080516123df576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152603260248201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560448201527f63656976657220696d706c656d656e7465720000000000000000000000000000606482015260840161070d565b805181602001fd5b7fffffffff00000000000000000000000000000000000000000000000000000000167f150b7a0200000000000000000000000000000000000000000000000000000000149050611acd565b506001949350505050565b6000600161244a84610edb565b6124549190612d46565b6000838152600860205260409020549091508082146124b45773ffffffffffffffffffffffffffffffffffffffff841660009081526007602090815260408083208584528252808320548484528184208190558352600890915290208190555b50600091825260086020908152604080842084905573ffffffffffffffffffffffffffffffffffffffff9094168352600781528383209183525290812055565b60095460009061250690600190612d46565b6000838152600a60205260408120546009805493945090928490811061252e5761252e612eb7565b90600052602060002001549050806009838154811061254f5761254f612eb7565b6000918252602080832090910192909255828152600a9091526040808220849055858252812055600980548061258757612587612e88565b6001900381819060005260206000200160009055905550505050565b60006125ae83610edb565b73ffffffffffffffffffffffffffffffffffffffff9093166000908152600760209081526040808320868452825280832085905593825260089052919091209190915550565b73ffffffffffffffffffffffffffffffffffffffff8216612671576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820181905260248201527f4552433732313a206d696e7420746f20746865207a65726f2061646472657373604482015260640161070d565b60008181526003602052604090205473ffffffffffffffffffffffffffffffffffffffff16156126fd576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601c60248201527f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000604482015260640161070d565b61270960008383612095565b73ffffffffffffffffffffffffffffffffffffffff8216600090815260046020526040812080546001929061273f908490612cdd565b909155505060008181526003602052604080822080547fffffffffffffffffffffffff00000000000000000000000000000000000000001673ffffffffffffffffffffffffffffffffffffffff861690811790915590518392907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a45050565b8280546127ce90612d89565b90600052602060002090601f0160209004810192826127f05760008555612836565b82601f1061280957805160ff1916838001178555612836565b82800160010185558215612836579182015b8281111561283657825182559160200191906001019061281b565b50612842929150612846565b5090565b5b808211156128425760008155600101612847565b600067ffffffffffffffff83111561287557612875612ee6565b6128a660207fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe0601f86011601612c8e565b90508281528383830111156128ba57600080fd5b828260208301376000602084830101529392505050565b6000602082840312156128e357600080fd5b813561163d81612f15565b6000806040838503121561290157600080fd5b823561290c81612f15565b9150602083013561291c81612f15565b809150509250929050565b60008060006060848603121561293c57600080fd5b833561294781612f15565b9250602084013561295781612f15565b929592945050506040919091013590565b6000806000806080858703121561297e57600080fd5b843561298981612f15565b9350602085013561299981612f15565b925060408501359150606085013567ffffffffffffffff8111156129bc57600080fd5b8501601f810187136129cd57600080fd5b6129dc8782356020840161285b565b91505092959194509250565b600080604083850312156129fb57600080fd5b8235612a0681612f15565b91506020830135801515811461291c57600080fd5b60008060408385031215612a2e57600080fd5b8235612a3981612f15565b946020939093013593505050565b60006020808385031215612a5a57600080fd5b823567ffffffffffffffff80821115612a7257600080fd5b818501915085601f830112612a8657600080fd5b813581811115612a9857612a98612ee6565b8060051b9150612aa9848301612c8e565b8181528481019084860184860187018a1015612ac457600080fd5b600095505b83861015612af35780359450612ade85612f15565b84835260019590950194918601918601612ac9565b5098975050505050505050565b600060208284031215612b1257600080fd5b813561163d81612f37565b600060208284031215612b2f57600080fd5b815161163d81612f37565b600060208284031215612b4c57600080fd5b815161163d81612f15565b600060208284031215612b6957600080fd5b813567ffffffffffffffff811115612b8057600080fd5b8201601f81018413612b9157600080fd5b611acd8482356020840161285b565b600060208284031215612bb257600080fd5b5035919050565b60008151808452612bd1816020860160208601612d5d565b601f017fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe0169290920160200192915050565b60008351612c15818460208801612d5d565b835190830190612c29818360208801612d5d565b01949350505050565b600073ffffffffffffffffffffffffffffffffffffffff808716835280861660208401525083604083015260806060830152612c716080830184612bb9565b9695505050505050565b60208152600061163d6020830184612bb9565b604051601f82017fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe016810167ffffffffffffffff81118282101715612cd557612cd5612ee6565b604052919050565b60008219821115612cf057612cf0612e2a565b500190565b600082612d0457612d04612e59565b500490565b6000817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0483118215151615612d4157612d41612e2a565b500290565b600082821015612d5857612d58612e2a565b500390565b60005b83811015612d78578181015183820152602001612d60565b838111156113985750506000910152565b600181811c90821680612d9d57607f821691505b60208210811415612dd7577f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b50919050565b60007fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff821415612e0f57612e0f612e2a565b5060010190565b600082612e2557612e25612e59565b500690565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b73ffffffffffffffffffffffffffffffffffffffff811681146117c557600080fd5b7fffffffff00000000000000000000000000000000000000000000000000000000811681146117c557600080fdfea2646970667358221220c4947fc3b6ca91a87442af899098fcf4fe20777cbb410fc6055e1c4faf2cc43a64736f6c634300080700330000000000000000000000000000000000000000000000000000000000000040000000000000000000000000a5409ec958c83c3f309868babaca7c86dcb077c1000000000000000000000000000000000000000000000000000000000000004268747470733a2f2f336e787a617a7534396a2e657865637574652d6170692e75732d776573742d322e616d617a6f6e6177732e636f6d2f6465762f746f6b656e732f000000000000000000000000000000000000000000000000000000000000

Deployed Bytecode

0x6080604052600436106101c25760003560e01c80636c0360eb116100f7578063a035b1fe11610095578063c87b56dd11610064578063c87b56dd146104e2578063c884ef8314610502578063e985e9c514610532578063f2fde38b1461055257600080fd5b8063a035b1fe1461046c578063a22cb46514610482578063b88d4fde146104a2578063bd075b84146104c257600080fd5b80638da5cb5b116100d15780638da5cb5b146103ec57806391b7f5ed14610417578063923e24051461043757806395d89b411461045757600080fd5b80636c0360eb146103a257806370a08231146103b7578063715018a6146103d757600080fd5b80632f745c591161016457806342842e0e1161013e57806342842e0e146103225780634f6ccce71461034257806355f804b3146103625780636352211e1461038257600080fd5b80632f745c59146102da578063331d0c9a146102fa5780633ccfd60b1461030d57600080fd5b8063095ea7b3116101a0578063095ea7b31461026357806318160ddd1461028557806323b872dd146102a45780632559051e146102c457600080fd5b806301ffc9a7146101c757806306fdde03146101fc578063081812fc1461021e575b600080fd5b3480156101d357600080fd5b506101e76101e2366004612b00565b610572565b60405190151581526020015b60405180910390f35b34801561020857600080fd5b506102116105ce565b6040516101f39190612c7b565b34801561022a57600080fd5b5061023e610239366004612ba0565b610660565b60405173ffffffffffffffffffffffffffffffffffffffff90911681526020016101f3565b34801561026f57600080fd5b5061028361027e366004612a1b565b61073f565b005b34801561029157600080fd5b506009545b6040519081526020016101f3565b3480156102b057600080fd5b506102836102bf366004612927565b6108cc565b3480156102d057600080fd5b50610296600e5481565b3480156102e657600080fd5b506102966102f5366004612a1b565b61096d565b610283610308366004612ba0565b610a3c565b34801561031957600080fd5b50610283610b7e565b34801561032e57600080fd5b5061028361033d366004612927565b610c2e565b34801561034e57600080fd5b5061029661035d366004612ba0565b610c49565b34801561036e57600080fd5b5061028361037d366004612b57565b610d07565b34801561038e57600080fd5b5061023e61039d366004612ba0565b610d9b565b3480156103ae57600080fd5b50610211610e4d565b3480156103c357600080fd5b506102966103d23660046128d1565b610edb565b3480156103e357600080fd5b50610283610fa9565b3480156103f857600080fd5b5060005473ffffffffffffffffffffffffffffffffffffffff1661023e565b34801561042357600080fd5b50610283610432366004612ba0565b611036565b34801561044357600080fd5b50610283610452366004612a47565b6110bc565b34801561046357600080fd5b506102116111d0565b34801561047857600080fd5b50610296600d5481565b34801561048e57600080fd5b5061028361049d3660046129e8565b6111df565b3480156104ae57600080fd5b506102836104bd366004612968565b6112f6565b3480156104ce57600080fd5b506102836104dd366004612a47565b61139e565b3480156104ee57600080fd5b506102116104fd366004612ba0565b611534565b34801561050e57600080fd5b506101e761051d3660046128d1565b600f6020526000908152604090205460ff1681565b34801561053e57600080fd5b506101e761054d3660046128ee565b611644565b34801561055e57600080fd5b5061028361056d3660046128d1565b611698565b60007fffffffff0000000000000000000000000000000000000000000000000000000082167f780e9d630000000000000000000000000000000000000000000000000000000014806105c857506105c88261180f565b92915050565b6060600180546105dd90612d89565b80601f016020809104026020016040519081016040528092919081815260200182805461060990612d89565b80156106565780601f1061062b57610100808354040283529160200191610656565b820191906000526020600020905b81548152906001019060200180831161063957829003601f168201915b5050505050905090565b60008181526003602052604081205473ffffffffffffffffffffffffffffffffffffffff16610716576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602c60248201527f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860448201527f697374656e7420746f6b656e000000000000000000000000000000000000000060648201526084015b60405180910390fd5b5060009081526005602052604090205473ffffffffffffffffffffffffffffffffffffffff1690565b600061074a82610d9b565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610808576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602160248201527f4552433732313a20617070726f76616c20746f2063757272656e74206f776e6560448201527f7200000000000000000000000000000000000000000000000000000000000000606482015260840161070d565b3373ffffffffffffffffffffffffffffffffffffffff8216148061083157506108318133611644565b6108bd576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152603860248201527f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760448201527f6e6572206e6f7220617070726f76656420666f7220616c6c0000000000000000606482015260840161070d565b6108c783836118f2565b505050565b6108d63382611992565b610962576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152603160248201527f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f60448201527f776e6572206e6f7220617070726f766564000000000000000000000000000000606482015260840161070d565b6108c7838383611ad5565b600061097883610edb565b8210610a06576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602b60248201527f455243373231456e756d657261626c653a206f776e657220696e646578206f7560448201527f74206f6620626f756e6473000000000000000000000000000000000000000000606482015260840161070d565b5073ffffffffffffffffffffffffffffffffffffffff919091166000908152600760209081526040808320938352929052205490565b600e54811115610ace576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152603060248201527f43616e206f6e6c79206d696e74204d41585f434152445f50555243484153452060448201527f746f6b656e7320617420612074696d6500000000000000000000000000000000606482015260840161070d565b80600d54610adc9190612d09565b341015610b45576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601f60248201527f45746865722076616c75652073656e74206973206e6f7420636f727265637400604482015260640161070d565b60005b81811015610b7a576000610b5b60095490565b9050610b673382611d47565b5080610b7281612ddd565b915050610b48565b5050565b60005473ffffffffffffffffffffffffffffffffffffffff163314610bff576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604482015260640161070d565b6040514790339082156108fc029083906000818181858888f19350505050158015610b7a573d6000803e3d6000fd5b6108c7838383604051806020016040528060008152506112f6565b6000610c5460095490565b8210610ce2576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602c60248201527f455243373231456e756d657261626c653a20676c6f62616c20696e646578206f60448201527f7574206f6620626f756e64730000000000000000000000000000000000000000606482015260840161070d565b60098281548110610cf557610cf5612eb7565b90600052602060002001549050919050565b60005473ffffffffffffffffffffffffffffffffffffffff163314610d88576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604482015260640161070d565b8051610b7a90600c9060208401906127c2565b60008181526003602052604081205473ffffffffffffffffffffffffffffffffffffffff16806105c8576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602960248201527f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460448201527f656e7420746f6b656e0000000000000000000000000000000000000000000000606482015260840161070d565b600c8054610e5a90612d89565b80601f0160208091040260200160405190810160405280929190818152602001828054610e8690612d89565b8015610ed35780601f10610ea857610100808354040283529160200191610ed3565b820191906000526020600020905b815481529060010190602001808311610eb657829003601f168201915b505050505081565b600073ffffffffffffffffffffffffffffffffffffffff8216610f80576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602a60248201527f4552433732313a2062616c616e636520717565727920666f7220746865207a6560448201527f726f206164647265737300000000000000000000000000000000000000000000606482015260840161070d565b5073ffffffffffffffffffffffffffffffffffffffff1660009081526004602052604090205490565b60005473ffffffffffffffffffffffffffffffffffffffff16331461102a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604482015260640161070d565b6110346000611d61565b565b60005473ffffffffffffffffffffffffffffffffffffffff1633146110b7576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604482015260640161070d565b600d55565b60005473ffffffffffffffffffffffffffffffffffffffff16331461113d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604482015260640161070d565b60005b8151811015610b7a576000600f600084848151811061116157611161612eb7565b60209081029190910181015173ffffffffffffffffffffffffffffffffffffffff16825281019190915260400160002080547fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0016911515919091179055806111c881612ddd565b915050611140565b6060600280546105dd90612d89565b73ffffffffffffffffffffffffffffffffffffffff821633141561125f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601960248201527f4552433732313a20617070726f766520746f2063616c6c657200000000000000604482015260640161070d565b33600081815260066020908152604080832073ffffffffffffffffffffffffffffffffffffffff87168085529083529281902080547fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff001686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b6113003383611992565b61138c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152603160248201527f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f60448201527f776e6572206e6f7220617070726f766564000000000000000000000000000000606482015260840161070d565b61139884848484611dd6565b50505050565b60005473ffffffffffffffffffffffffffffffffffffffff16331461141f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604482015260640161070d565b60005b8151811015610b7a57600f600083838151811061144157611441612eb7565b60209081029190910181015173ffffffffffffffffffffffffffffffffffffffff1682528101919091526040016000205460ff161561147f57611522565b600061148a60095490565b90506114af8383815181106114a1576114a1612eb7565b602002602001015182611d47565b6001600f60008585815181106114c7576114c7612eb7565b602002602001015173ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff021916908315150217905550505b8061152c81612ddd565b915050611422565b60008181526003602052604090205460609073ffffffffffffffffffffffffffffffffffffffff166115e8576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602f60248201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60448201527f6e6578697374656e7420746f6b656e0000000000000000000000000000000000606482015260840161070d565b60006115f2611e79565b90506000815111611612576040518060200160405280600081525061163d565b8061161c84611e88565b60405160200161162d929190612c03565b6040516020818303038152906040525b9392505050565b60006116508383611fba565b1561165d575060016105c8565b73ffffffffffffffffffffffffffffffffffffffff80841660009081526006602090815260408083209386168352929052205460ff1661163d565b60005473ffffffffffffffffffffffffffffffffffffffff163314611719576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604482015260640161070d565b73ffffffffffffffffffffffffffffffffffffffff81166117bc576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201527f6464726573730000000000000000000000000000000000000000000000000000606482015260840161070d565b6117c581611d61565b50565b600b80547fffffffffffffffffffffffff00000000000000000000000000000000000000001673ffffffffffffffffffffffffffffffffffffffff92909216919091179055565b60007fffffffff0000000000000000000000000000000000000000000000000000000082167f80ac58cd0000000000000000000000000000000000000000000000000000000014806118a257507fffffffff0000000000000000000000000000000000000000000000000000000082167f5b5e139f00000000000000000000000000000000000000000000000000000000145b806105c857507f01ffc9a7000000000000000000000000000000000000000000000000000000007fffffffff000000000000000000000000000000000000000000000000000000008316146105c8565b600081815260056020526040902080547fffffffffffffffffffffffff00000000000000000000000000000000000000001673ffffffffffffffffffffffffffffffffffffffff8416908117909155819061194c82610d9b565b73ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b60008181526003602052604081205473ffffffffffffffffffffffffffffffffffffffff16611a43576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602c60248201527f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860448201527f697374656e7420746f6b656e0000000000000000000000000000000000000000606482015260840161070d565b6000611a4e83610d9b565b90508073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161480611abd57508373ffffffffffffffffffffffffffffffffffffffff16611aa584610660565b73ffffffffffffffffffffffffffffffffffffffff16145b80611acd5750611acd8185611644565b949350505050565b8273ffffffffffffffffffffffffffffffffffffffff16611af582610d9b565b73ffffffffffffffffffffffffffffffffffffffff1614611b98576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602960248201527f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960448201527f73206e6f74206f776e0000000000000000000000000000000000000000000000606482015260840161070d565b73ffffffffffffffffffffffffffffffffffffffff8216611c3a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152602060048201526024808201527f4552433732313a207472616e7366657220746f20746865207a65726f2061646460448201527f7265737300000000000000000000000000000000000000000000000000000000606482015260840161070d565b611c45838383612095565b611c506000826118f2565b73ffffffffffffffffffffffffffffffffffffffff83166000908152600460205260408120805460019290611c86908490612d46565b909155505073ffffffffffffffffffffffffffffffffffffffff82166000908152600460205260408120805460019290611cc1908490612cdd565b909155505060008181526003602052604080822080547fffffffffffffffffffffffff00000000000000000000000000000000000000001673ffffffffffffffffffffffffffffffffffffffff86811691821790925591518493918716917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef91a4505050565b610b7a82826040518060200160405280600081525061219b565b6000805473ffffffffffffffffffffffffffffffffffffffff8381167fffffffffffffffffffffffff0000000000000000000000000000000000000000831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b611de1848484611ad5565b611ded8484848461223e565b611398576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152603260248201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560448201527f63656976657220696d706c656d656e7465720000000000000000000000000000606482015260840161070d565b6060600c80546105dd90612d89565b606081611ec857505060408051808201909152600181527f3000000000000000000000000000000000000000000000000000000000000000602082015290565b8160005b8115611ef25780611edc81612ddd565b9150611eeb9050600a83612cf5565b9150611ecc565b60008167ffffffffffffffff811115611f0d57611f0d612ee6565b6040519080825280601f01601f191660200182016040528015611f37576020820181803683370190505b5090505b8415611acd57611f4c600183612d46565b9150611f59600a86612e16565b611f64906030612cdd565b60f81b818381518110611f7957611f79612eb7565b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350611fb3600a86612cf5565b9450611f3b565b600b546040517fc455279100000000000000000000000000000000000000000000000000000000815273ffffffffffffffffffffffffffffffffffffffff848116600483015260009281169190841690829063c45527919060240160206040518083038186803b15801561202d57600080fd5b505afa158015612041573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906120659190612b3a565b73ffffffffffffffffffffffffffffffffffffffff16141561208b5760019150506105c8565b5060009392505050565b73ffffffffffffffffffffffffffffffffffffffff83166120fd576120f881600980546000838152600a60205260408120829055600182018355919091527f6e1540171b6c0c960b71a7020d9f60077f6af931a8bbf590da0223dacf75c7af0155565b61213a565b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161461213a5761213a838261243d565b73ffffffffffffffffffffffffffffffffffffffff821661215e576108c7816124f4565b8273ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16146108c7576108c782826125a3565b6121a583836125f4565b6121b2600084848461223e565b6108c7576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152603260248201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560448201527f63656976657220696d706c656d656e7465720000000000000000000000000000606482015260840161070d565b600073ffffffffffffffffffffffffffffffffffffffff84163b15612432576040517f150b7a0200000000000000000000000000000000000000000000000000000000815273ffffffffffffffffffffffffffffffffffffffff85169063150b7a02906122b5903390899088908890600401612c32565b602060405180830381600087803b1580156122cf57600080fd5b505af192505050801561231d575060408051601f3d9081017fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe016820190925261231a91810190612b1d565b60015b6123e7573d80801561234b576040519150601f19603f3d011682016040523d82523d6000602084013e612350565b606091505b5080516123df576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152603260248201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560448201527f63656976657220696d706c656d656e7465720000000000000000000000000000606482015260840161070d565b805181602001fd5b7fffffffff00000000000000000000000000000000000000000000000000000000167f150b7a0200000000000000000000000000000000000000000000000000000000149050611acd565b506001949350505050565b6000600161244a84610edb565b6124549190612d46565b6000838152600860205260409020549091508082146124b45773ffffffffffffffffffffffffffffffffffffffff841660009081526007602090815260408083208584528252808320548484528184208190558352600890915290208190555b50600091825260086020908152604080842084905573ffffffffffffffffffffffffffffffffffffffff9094168352600781528383209183525290812055565b60095460009061250690600190612d46565b6000838152600a60205260408120546009805493945090928490811061252e5761252e612eb7565b90600052602060002001549050806009838154811061254f5761254f612eb7565b6000918252602080832090910192909255828152600a9091526040808220849055858252812055600980548061258757612587612e88565b6001900381819060005260206000200160009055905550505050565b60006125ae83610edb565b73ffffffffffffffffffffffffffffffffffffffff9093166000908152600760209081526040808320868452825280832085905593825260089052919091209190915550565b73ffffffffffffffffffffffffffffffffffffffff8216612671576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820181905260248201527f4552433732313a206d696e7420746f20746865207a65726f2061646472657373604482015260640161070d565b60008181526003602052604090205473ffffffffffffffffffffffffffffffffffffffff16156126fd576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601c60248201527f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000604482015260640161070d565b61270960008383612095565b73ffffffffffffffffffffffffffffffffffffffff8216600090815260046020526040812080546001929061273f908490612cdd565b909155505060008181526003602052604080822080547fffffffffffffffffffffffff00000000000000000000000000000000000000001673ffffffffffffffffffffffffffffffffffffffff861690811790915590518392907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a45050565b8280546127ce90612d89565b90600052602060002090601f0160209004810192826127f05760008555612836565b82601f1061280957805160ff1916838001178555612836565b82800160010185558215612836579182015b8281111561283657825182559160200191906001019061281b565b50612842929150612846565b5090565b5b808211156128425760008155600101612847565b600067ffffffffffffffff83111561287557612875612ee6565b6128a660207fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe0601f86011601612c8e565b90508281528383830111156128ba57600080fd5b828260208301376000602084830101529392505050565b6000602082840312156128e357600080fd5b813561163d81612f15565b6000806040838503121561290157600080fd5b823561290c81612f15565b9150602083013561291c81612f15565b809150509250929050565b60008060006060848603121561293c57600080fd5b833561294781612f15565b9250602084013561295781612f15565b929592945050506040919091013590565b6000806000806080858703121561297e57600080fd5b843561298981612f15565b9350602085013561299981612f15565b925060408501359150606085013567ffffffffffffffff8111156129bc57600080fd5b8501601f810187136129cd57600080fd5b6129dc8782356020840161285b565b91505092959194509250565b600080604083850312156129fb57600080fd5b8235612a0681612f15565b91506020830135801515811461291c57600080fd5b60008060408385031215612a2e57600080fd5b8235612a3981612f15565b946020939093013593505050565b60006020808385031215612a5a57600080fd5b823567ffffffffffffffff80821115612a7257600080fd5b818501915085601f830112612a8657600080fd5b813581811115612a9857612a98612ee6565b8060051b9150612aa9848301612c8e565b8181528481019084860184860187018a1015612ac457600080fd5b600095505b83861015612af35780359450612ade85612f15565b84835260019590950194918601918601612ac9565b5098975050505050505050565b600060208284031215612b1257600080fd5b813561163d81612f37565b600060208284031215612b2f57600080fd5b815161163d81612f37565b600060208284031215612b4c57600080fd5b815161163d81612f15565b600060208284031215612b6957600080fd5b813567ffffffffffffffff811115612b8057600080fd5b8201601f81018413612b9157600080fd5b611acd8482356020840161285b565b600060208284031215612bb257600080fd5b5035919050565b60008151808452612bd1816020860160208601612d5d565b601f017fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe0169290920160200192915050565b60008351612c15818460208801612d5d565b835190830190612c29818360208801612d5d565b01949350505050565b600073ffffffffffffffffffffffffffffffffffffffff808716835280861660208401525083604083015260806060830152612c716080830184612bb9565b9695505050505050565b60208152600061163d6020830184612bb9565b604051601f82017fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe016810167ffffffffffffffff81118282101715612cd557612cd5612ee6565b604052919050565b60008219821115612cf057612cf0612e2a565b500190565b600082612d0457612d04612e59565b500490565b6000817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0483118215151615612d4157612d41612e2a565b500290565b600082821015612d5857612d58612e2a565b500390565b60005b83811015612d78578181015183820152602001612d60565b838111156113985750506000910152565b600181811c90821680612d9d57607f821691505b60208210811415612dd7577f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b50919050565b60007fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff821415612e0f57612e0f612e2a565b5060010190565b600082612e2557612e25612e59565b500690565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b73ffffffffffffffffffffffffffffffffffffffff811681146117c557600080fd5b7fffffffff00000000000000000000000000000000000000000000000000000000811681146117c557600080fdfea2646970667358221220c4947fc3b6ca91a87442af899098fcf4fe20777cbb410fc6055e1c4faf2cc43a64736f6c63430008070033

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

0000000000000000000000000000000000000000000000000000000000000040000000000000000000000000a5409ec958c83c3f309868babaca7c86dcb077c1000000000000000000000000000000000000000000000000000000000000004268747470733a2f2f336e787a617a7534396a2e657865637574652d6170692e75732d776573742d322e616d617a6f6e6177732e636f6d2f6465762f746f6b656e732f000000000000000000000000000000000000000000000000000000000000

-----Decoded View---------------
Arg [0] : _initialBaseURI (string): https://3nxzazu49j.execute-api.us-west-2.amazonaws.com/dev/tokens/
Arg [1] : _openSeaProxyRegistryAddress (address): 0xa5409ec958C83C3f309868babACA7c86DCB077c1

-----Encoded View---------------
6 Constructor Arguments found :
Arg [0] : 0000000000000000000000000000000000000000000000000000000000000040
Arg [1] : 000000000000000000000000a5409ec958c83c3f309868babaca7c86dcb077c1
Arg [2] : 0000000000000000000000000000000000000000000000000000000000000042
Arg [3] : 68747470733a2f2f336e787a617a7534396a2e657865637574652d6170692e75
Arg [4] : 732d776573742d322e616d617a6f6e6177732e636f6d2f6465762f746f6b656e
Arg [5] : 732f000000000000000000000000000000000000000000000000000000000000


Deployed Bytecode Sourcemap

46245:2444:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;38816:300;;;;;;;;;;-1:-1:-1;38816:300:0;;;;;:::i;:::-;;:::i;:::-;;;7311:14:1;;7304:22;7286:41;;7274:2;7259:18;38816:300:0;;;;;;;;24956:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;26649:308::-;;;;;;;;;;-1:-1:-1;26649:308:0;;;;;:::i;:::-;;:::i;:::-;;;6575:42:1;6563:55;;;6545:74;;6533:2;6518:18;26649:308:0;6399:226:1;26172:411:0;;;;;;;;;;-1:-1:-1;26172:411:0;;;;;:::i;:::-;;:::i;:::-;;39619:113;;;;;;;;;;-1:-1:-1;39707:10:0;:17;39619:113;;;15692:25:1;;;15680:2;15665:18;39619:113:0;15546:177:1;27708:376:0;;;;;;;;;;-1:-1:-1;27708:376:0;;;;;:::i;:::-;;:::i;46399:37::-;;;;;;;;;;;;;;;;39200:343;;;;;;;;;;-1:-1:-1;39200:343:0;;;;;:::i;:::-;;:::i;47253:503::-;;;;;;:::i;:::-;;:::i;48541:145::-;;;;;;;;;;;;;:::i;28155:185::-;;;;;;;;;;-1:-1:-1;28155:185:0;;;;;:::i;:::-;;:::i;39809:320::-;;;;;;;;;;-1:-1:-1;39809:320:0;;;;;:::i;:::-;;:::i;47764:106::-;;;;;;;;;;-1:-1:-1;47764:106:0;;;;;:::i;:::-;;:::i;24563:326::-;;;;;;;;;;-1:-1:-1;24563:326:0;;;;;:::i;:::-;;:::i;46322:26::-;;;;;;;;;;;;;:::i;24206:295::-;;;;;;;;;;-1:-1:-1;24206:295:0;;;;;:::i;:::-;;:::i;2614:94::-;;;;;;;;;;;;;:::i;1963:87::-;;;;;;;;;;-1:-1:-1;2009:7:0;2036:6;;;1963:87;;47878:86;;;;;;;;;;-1:-1:-1;47878:86:0;;;;;:::i;:::-;;:::i;48310:223::-;;;;;;;;;;-1:-1:-1;48310:223:0;;;;;:::i;:::-;;:::i;25125:104::-;;;;;;;;;;;;;:::i;46357:33::-;;;;;;;;;;;;;;;;27029:327;;;;;;;;;;-1:-1:-1;27029:327:0;;;;;:::i;:::-;;:::i;28411:365::-;;;;;;;;;;-1:-1:-1;28411:365:0;;;;;:::i;:::-;;:::i;47972:330::-;;;;;;;;;;-1:-1:-1;47972:330:0;;;;;:::i;:::-;;:::i;25300:468::-;;;;;;;;;;-1:-1:-1;25300:468:0;;;;;:::i;:::-;;:::i;46445:39::-;;;;;;;;;;-1:-1:-1;46445:39:0;;;;;:::i;:::-;;;;;;;;;;;;;;;;46791:338;;;;;;;;;;-1:-1:-1;46791:338:0;;;;;:::i;:::-;;:::i;2863:229::-;;;;;;;;;;-1:-1:-1;2863:229:0;;;;;:::i;:::-;;:::i;38816:300::-;38963:4;39005:50;;;39020:35;39005:50;;:103;;;39072:36;39096:11;39072:23;:36::i;:::-;38985:123;38816:300;-1:-1:-1;;38816:300:0:o;24956:100::-;25010:13;25043:5;25036:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;24956:100;:::o;26649:308::-;26770:7;30412:16;;;:7;:16;;;;;;:30;:16;26795:110;;;;;;;12498:2:1;26795:110:0;;;12480:21:1;12537:2;12517:18;;;12510:30;12576:34;12556:18;;;12549:62;12647:14;12627:18;;;12620:42;12679:19;;26795:110:0;;;;;;;;;-1:-1:-1;26925:24:0;;;;:15;:24;;;;;;;;;26649:308::o;26172:411::-;26253:13;26269:23;26284:7;26269:14;:23::i;:::-;26253:39;;26317:5;26311:11;;:2;:11;;;;26303:57;;;;;;;14515:2:1;26303:57:0;;;14497:21:1;14554:2;14534:18;;;14527:30;14593:34;14573:18;;;14566:62;14664:3;14644:18;;;14637:31;14685:19;;26303:57:0;14313:397:1;26303:57:0;806:10;26395:21;;;;;:62;;-1:-1:-1;26420:37:0;26437:5;806:10;46791:338;:::i;26420:37::-;26373:168;;;;;;;10891:2:1;26373:168:0;;;10873:21:1;10930:2;10910:18;;;10903:30;10969:34;10949:18;;;10942:62;11040:26;11020:18;;;11013:54;11084:19;;26373:168:0;10689:420:1;26373:168:0;26554:21;26563:2;26567:7;26554:8;:21::i;:::-;26242:341;26172:411;;:::o;27708:376::-;27917:41;806:10;27950:7;27917:18;:41::i;:::-;27895:140;;;;;;;14917:2:1;27895:140:0;;;14899:21:1;14956:2;14936:18;;;14929:30;14995:34;14975:18;;;14968:62;15066:19;15046:18;;;15039:47;15103:19;;27895:140:0;14715:413:1;27895:140:0;28048:28;28058:4;28064:2;28068:7;28048:9;:28::i;39200:343::-;39342:7;39397:23;39414:5;39397:16;:23::i;:::-;39389:5;:31;39367:124;;;;;;;7764:2:1;39367:124:0;;;7746:21:1;7803:2;7783:18;;;7776:30;7842:34;7822:18;;;7815:62;7913:13;7893:18;;;7886:41;7944:19;;39367:124:0;7562:407:1;39367:124:0;-1:-1:-1;39509:19:0;;;;;;;;;:12;:19;;;;;;;;:26;;;;;;;;;39200:343::o;47253:503::-;47364:17;;47346:14;:35;;47324:133;;;;;;;12911:2:1;47324:133:0;;;12893:21:1;12950:2;12930:18;;;12923:30;12989:34;12969:18;;;12962:62;13060:18;13040;;;13033:46;13096:19;;47324:133:0;12709:412:1;47324:133:0;47511:14;47503:5;;:22;;;;:::i;:::-;47490:9;:35;;47468:116;;;;;;;10118:2:1;47468:116:0;;;10100:21:1;10157:2;10137:18;;;10130:30;10196:33;10176:18;;;10169:61;10247:18;;47468:116:0;9916:355:1;47468:116:0;47602:9;47597:152;47621:14;47617:1;:18;47597:152;;;47657:17;47677:13;39707:10;:17;;39619:113;47677:13;47657:33;;47705:32;47715:10;47727:9;47705;:32::i;:::-;-1:-1:-1;47637:3:0;;;;:::i;:::-;;;;47597:152;;;;47253:503;:::o;48541:145::-;2009:7;2036:6;2183:23;2036:6;806:10;2183:23;2175:68;;;;;;;13328:2:1;2175:68:0;;;13310:21:1;;;13347:18;;;13340:30;13406:34;13386:18;;;13379:62;13458:18;;2175:68:0;13126:356:1;2175:68:0;48641:37:::1;::::0;48609:21:::1;::::0;48649:10:::1;::::0;48641:37;::::1;;;::::0;48609:21;;48591:15:::1;48641:37:::0;48591:15;48641:37;48609:21;48649:10;48641:37;::::1;;;;;;;;;;;;;::::0;::::1;;;;28155:185:::0;28293:39;28310:4;28316:2;28320:7;28293:39;;;;;;;;;;;;:16;:39::i;39809:320::-;39929:7;39984:30;39707:10;:17;;39619:113;39984:30;39976:5;:38;39954:132;;;;;;;15335:2:1;39954:132:0;;;15317:21:1;15374:2;15354:18;;;15347:30;15413:34;15393:18;;;15386:62;15484:14;15464:18;;;15457:42;15516:19;;39954:132:0;15133:408:1;39954:132:0;40104:10;40115:5;40104:17;;;;;;;;:::i;:::-;;;;;;;;;40097:24;;39809:320;;;:::o;47764:106::-;2009:7;2036:6;2183:23;2036:6;806:10;2183:23;2175:68;;;;;;;13328:2:1;2175:68:0;;;13310:21:1;;;13347:18;;;13340:30;13406:34;13386:18;;;13379:62;13458:18;;2175:68:0;13126:356:1;2175:68:0;47841:21;;::::1;::::0;:7:::1;::::0;:21:::1;::::0;::::1;::::0;::::1;:::i;24563:326::-:0;24680:7;24721:16;;;:7;:16;;;;;;;;24770:19;24748:110;;;;;;;11727:2:1;24748:110:0;;;11709:21:1;11766:2;11746:18;;;11739:30;11805:34;11785:18;;;11778:62;11876:11;11856:18;;;11849:39;11905:19;;24748:110:0;11525:405:1;46322:26:0;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;24206:295::-;24323:7;24370:19;;;24348:111;;;;;;;11316:2:1;24348:111:0;;;11298:21:1;11355:2;11335:18;;;11328:30;11394:34;11374:18;;;11367:62;11465:12;11445:18;;;11438:40;11495:19;;24348:111:0;11114:406:1;24348:111:0;-1:-1:-1;24477:16:0;;;;;;:9;:16;;;;;;;24206:295::o;2614:94::-;2009:7;2036:6;2183:23;2036:6;806:10;2183:23;2175:68;;;;;;;13328:2:1;2175:68:0;;;13310:21:1;;;13347:18;;;13340:30;13406:34;13386:18;;;13379:62;13458:18;;2175:68:0;13126:356:1;2175:68:0;2679:21:::1;2697:1;2679:9;:21::i;:::-;2614:94::o:0;47878:86::-;2009:7;2036:6;2183:23;2036:6;806:10;2183:23;2175:68;;;;;;;13328:2:1;2175:68:0;;;13310:21:1;;;13347:18;;;13340:30;13406:34;13386:18;;;13379:62;13458:18;;2175:68:0;13126:356:1;2175:68:0;47942:5:::1;:14:::0;47878:86::o;48310:223::-;2009:7;2036:6;2183:23;2036:6;806:10;2183:23;2175:68;;;;;;;13328:2:1;2175:68:0;;;13310:21:1;;;13347:18;;;13340:30;13406:34;13386:18;;;13379:62;13458:18;;2175:68:0;13126:356:1;2175:68:0;48428:9:::1;48423:103;48447:9;:16;48443:1;:20;48423:103;;;48509:5;48485:7;:21;48493:9;48503:1;48493:12;;;;;;;;:::i;:::-;;::::0;;::::1;::::0;;;;;;;48485:21:::1;;::::0;;;::::1;::::0;;;;;;-1:-1:-1;48485:21:0;:29;;;::::1;::::0;::::1;;::::0;;;::::1;::::0;;48465:3;::::1;::::0;::::1;:::i;:::-;;;;48423:103;;25125:104:::0;25181:13;25214:7;25207:14;;;;;:::i;27029:327::-;27164:24;;;806:10;27164:24;;27156:62;;;;;;;9764:2:1;27156:62:0;;;9746:21:1;9803:2;9783:18;;;9776:30;9842:27;9822:18;;;9815:55;9887:18;;27156:62:0;9562:349:1;27156:62:0;806:10;27231:32;;;;:18;:32;;;;;;;;;:42;;;;;;;;;;;;:53;;;;;;;;;;;;;27300:48;;7286:41:1;;;27231:42:0;;806:10;27300:48;;7259:18:1;27300:48:0;;;;;;;27029:327;;:::o;28411:365::-;28600:41;806:10;28633:7;28600:18;:41::i;:::-;28578:140;;;;;;;14917:2:1;28578:140:0;;;14899:21:1;14956:2;14936:18;;;14929:30;14995:34;14975:18;;;14968:62;15066:19;15046:18;;;15039:47;15103:19;;28578:140:0;14715:413:1;28578:140:0;28729:39;28743:4;28749:2;28753:7;28762:5;28729:13;:39::i;:::-;28411:365;;;;:::o;47972:330::-;2009:7;2036:6;2183:23;2036:6;806:10;2183:23;2175:68;;;;;;;13328:2:1;2175:68:0;;;13310:21:1;;;13347:18;;;13340:30;13406:34;13386:18;;;13379:62;13458:18;;2175:68:0;13126:356:1;2175:68:0;48049:9:::1;48044:251;48068:9;:16;48064:1;:20;48044:251;;;48110:7;:21;48118:9;48128:1;48118:12;;;;;;;;:::i;:::-;;::::0;;::::1;::::0;;;;;;;48110:21:::1;;::::0;;;::::1;::::0;;;;;;-1:-1:-1;48110:21:0;;::::1;;48106:35;;;48133:8;;48106:35;48158:17;48178:13;39707:10:::0;:17;;39619:113;48178:13:::1;48158:33;;48206:34;48216:9;48226:1;48216:12;;;;;;;;:::i;:::-;;;;;;;48230:9;48206;:34::i;:::-;48279:4;48255:7;:21;48263:9;48273:1;48263:12;;;;;;;;:::i;:::-;;;;;;;48255:21;;;;;;;;;;;;;;;;:28;;;;;;;;;;;;;;;;;;48091:204;48044:251;48086:3:::0;::::1;::::0;::::1;:::i;:::-;;;;48044:251;;25300:468:::0;30388:4;30412:16;;;:7;:16;;;;;;25418:13;;30412:30;:16;25449:113;;;;;;;14099:2:1;25449:113:0;;;14081:21:1;14138:2;14118:18;;;14111:30;14177:34;14157:18;;;14150:62;14248:17;14228:18;;;14221:45;14283:19;;25449:113:0;13897:411:1;25449:113:0;25575:21;25599:10;:8;:10::i;:::-;25575:34;;25664:1;25646:7;25640:21;:25;:120;;;;;;;;;;;;;;;;;25709:7;25718:18;:7;:16;:18::i;:::-;25692:45;;;;;;;;;:::i;:::-;;;;;;;;;;;;;25640:120;25620:140;25300:468;-1:-1:-1;;;25300:468:0:o;46791:338::-;46944:4;46970:52;47006:5;47013:8;46970:35;:52::i;:::-;46966:96;;;-1:-1:-1;47046:4:0;47039:11;;46966:96;27598:25;;;;27569:4;27598:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;47081:40;27427:214;2863:229;2009:7;2036:6;2183:23;2036:6;806:10;2183:23;2175:68;;;;;;;13328:2:1;2175:68:0;;;13310:21:1;;;13347:18;;;13340:30;13406:34;13386:18;;;13379:62;13458:18;;2175:68:0;13126:356:1;2175:68:0;2966:22:::1;::::0;::::1;2944:110;;;::::0;::::1;::::0;;8595:2:1;2944:110:0::1;::::0;::::1;8577:21:1::0;8634:2;8614:18;;;8607:30;8673:34;8653:18;;;8646:62;8744:8;8724:18;;;8717:36;8770:19;;2944:110:0::1;8393:402:1::0;2944:110:0::1;3065:19;3075:8;3065:9;:19::i;:::-;2863:229:::0;:::o;45528:172::-;45634:27;:58;;;;;;;;;;;;;;;45528:172::o;23787:355::-;23934:4;23976:40;;;23991:25;23976:40;;:105;;-1:-1:-1;24033:48:0;;;24048:33;24033:48;23976:105;:158;;;-1:-1:-1;22427:25:0;22412:40;;;;24098:36;22253:207;34446:174;34521:24;;;;:15;:24;;;;;:29;;;;;;;;;;;;;:24;;34575:23;34521:24;34575:14;:23::i;:::-;34566:46;;;;;;;;;;;;34446:174;;:::o;30617:452::-;30746:4;30412:16;;;:7;:16;;;;;;:30;:16;30768:110;;;;;;;10478:2:1;30768:110:0;;;10460:21:1;10517:2;10497:18;;;10490:30;10556:34;10536:18;;;10529:62;10627:14;10607:18;;;10600:42;10659:19;;30768:110:0;10276:408:1;30768:110:0;30889:13;30905:23;30920:7;30905:14;:23::i;:::-;30889:39;;30958:5;30947:16;;:7;:16;;;:64;;;;31004:7;30980:31;;:20;30992:7;30980:11;:20::i;:::-;:31;;;30947:64;:113;;;;31028:32;31045:5;31052:7;31028:16;:32::i;:::-;30939:122;30617:452;-1:-1:-1;;;;30617:452:0:o;33713:615::-;33886:4;33859:31;;:23;33874:7;33859:14;:23::i;:::-;:31;;;33837:122;;;;;;;13689:2:1;33837:122:0;;;13671:21:1;13728:2;13708:18;;;13701:30;13767:34;13747:18;;;13740:62;13838:11;13818:18;;;13811:39;13867:19;;33837:122:0;13487:405:1;33837:122:0;33978:16;;;33970:65;;;;;;;9359:2:1;33970:65:0;;;9341:21:1;9398:2;9378:18;;;9371:30;9437:34;9417:18;;;9410:62;9508:6;9488:18;;;9481:34;9532:19;;33970:65:0;9157:400:1;33970:65:0;34048:39;34069:4;34075:2;34079:7;34048:20;:39::i;:::-;34152:29;34169:1;34173:7;34152:8;:29::i;:::-;34194:15;;;;;;;:9;:15;;;;;:20;;34213:1;;34194:15;:20;;34213:1;;34194:20;:::i;:::-;;;;-1:-1:-1;;34225:13:0;;;;;;;:9;:13;;;;;:18;;34242:1;;34225:13;:18;;34242:1;;34225:18;:::i;:::-;;;;-1:-1:-1;;34254:16:0;;;;:7;:16;;;;;;:21;;;;;;;;;;;;;;34293:27;;34254:16;;34293:27;;;;;;;33713:615;;;:::o;31411:110::-;31487:26;31497:2;31501:7;31487:26;;;;;;;;;;;;:9;:26::i;3100:173::-;3156:16;3175:6;;;3192:17;;;;;;;;;;3225:40;;3175:6;;;;;;;3225:40;;3156:16;3225:40;3145:128;3100:173;:::o;29658:352::-;29815:28;29825:4;29831:2;29835:7;29815:9;:28::i;:::-;29876:48;29899:4;29905:2;29909:7;29918:5;29876:22;:48::i;:::-;29854:148;;;;;;;8176:2:1;29854:148:0;;;8158:21:1;8215:2;8195:18;;;8188:30;8254:34;8234:18;;;8227:62;8325:20;8305:18;;;8298:48;8363:19;;29854:148:0;7974:414:1;47137:108:0;47197:13;47230:7;47223:14;;;;;:::i;19664:723::-;19720:13;19941:10;19937:53;;-1:-1:-1;;19968:10:0;;;;;;;;;;;;;;;;;;19664:723::o;19937:53::-;20015:5;20000:12;20056:78;20063:9;;20056:78;;20089:8;;;;:::i;:::-;;-1:-1:-1;20112:10:0;;-1:-1:-1;20120:2:0;20112:10;;:::i;:::-;;;20056:78;;;20144:19;20176:6;20166:17;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;20166:17:0;;20144:39;;20194:154;20201:10;;20194:154;;20228:11;20238:1;20228:11;;:::i;:::-;;-1:-1:-1;20297:10:0;20305:2;20297:5;:10;:::i;:::-;20284:24;;:2;:24;:::i;:::-;20271:39;;20254:6;20261;20254:14;;;;;;;;:::i;:::-;;;;:56;;;;;;;;;;-1:-1:-1;20325:11:0;20334:2;20325:11;;:::i;:::-;;;20194:154;;45708:469;45996:27;;46057:35;;;;;45996:27;6563:55:1;;;46057:35:0;;;6545:74:1;45832:4:0;;45996:27;;;46049:56;;;;45996:27;;46057:28;;6518:18:1;;46057:35:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;46049:56;;;46045:100;;;46129:4;46122:11;;;;;46045:100;-1:-1:-1;46164:5:0;;45708:469;-1:-1:-1;;;45708:469:0:o;40742:589::-;40948:18;;;40944:187;;40983:40;41015:7;42158:10;:17;;42131:24;;;;:15;:24;;;;;:44;;;42186:24;;;;;;;;;;;;42054:164;40983:40;40944:187;;;41053:2;41045:10;;:4;:10;;;41041:90;;41072:47;41105:4;41111:7;41072:32;:47::i;:::-;41145:16;;;41141:183;;41178:45;41215:7;41178:36;:45::i;41141:183::-;41251:4;41245:10;;:2;:10;;;41241:83;;41272:40;41300:2;41304:7;41272:27;:40::i;31748:321::-;31878:18;31884:2;31888:7;31878:5;:18::i;:::-;31929:54;31960:1;31964:2;31968:7;31977:5;31929:22;:54::i;:::-;31907:154;;;;;;;8176:2:1;31907:154:0;;;8158:21:1;8215:2;8195:18;;;8188:30;8254:34;8234:18;;;8227:62;8325:20;8305:18;;;8298:48;8363:19;;31907:154:0;7974:414:1;35185:980:0;35340:4;35361:13;;;11876:20;11924:8;35357:801;;35414:175;;;;;:36;;;;;;:175;;806:10;;35508:4;;35535:7;;35565:5;;35414:175;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;35414:175:0;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;35393:710;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;35772:13:0;;35768:320;;35815:108;;;;;8176:2:1;35815:108:0;;;8158:21:1;8215:2;8195:18;;;8188:30;8254:34;8234:18;;;8227:62;8325:20;8305:18;;;8298:48;8363:19;;35815:108:0;7974:414:1;35768:320:0;36038:6;36032:13;36023:6;36019:2;36015:15;36008:38;35393:710;35653:51;;35663:41;35653:51;;-1:-1:-1;35646:58:0;;35357:801;-1:-1:-1;36142:4:0;35185:980;;;;;;:::o;42845:1002::-;43125:22;43175:1;43150:22;43167:4;43150:16;:22::i;:::-;:26;;;;:::i;:::-;43187:18;43208:26;;;:17;:26;;;;;;43125:51;;-1:-1:-1;43341:28:0;;;43337:328;;43408:18;;;43386:19;43408:18;;;:12;:18;;;;;;;;:34;;;;;;;;;43459:30;;;;;;:44;;;43576:30;;:17;:30;;;;;:43;;;43337:328;-1:-1:-1;43761:26:0;;;;:17;:26;;;;;;;;43754:33;;;43805:18;;;;;;:12;:18;;;;;:34;;;;;;;43798:41;42845:1002::o;44142:1079::-;44420:10;:17;44395:22;;44420:21;;44440:1;;44420:21;:::i;:::-;44452:18;44473:24;;;:15;:24;;;;;;44846:10;:26;;44395:46;;-1:-1:-1;44473:24:0;;44395:46;;44846:26;;;;;;:::i;:::-;;;;;;;;;44824:48;;44910:11;44885:10;44896;44885:22;;;;;;;;:::i;:::-;;;;;;;;;;;;:36;;;;44990:28;;;:15;:28;;;;;;;:41;;;45162:24;;;;;45155:31;45197:10;:16;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;44213:1008;;;44142:1079;:::o;41632:221::-;41717:14;41734:20;41751:2;41734:16;:20::i;:::-;41765:16;;;;;;;;:12;:16;;;;;;;;:24;;;;;;;;:34;;;41810:26;;;:17;:26;;;;;;:35;;;;-1:-1:-1;41632:221:0:o;32405:382::-;32485:16;;;32477:61;;;;;;;12137:2:1;32477:61:0;;;12119:21:1;;;12156:18;;;12149:30;12215:34;12195:18;;;12188:62;12267:18;;32477:61:0;11935:356:1;32477:61:0;30388:4;30412:16;;;:7;:16;;;;;;:30;:16;:30;32549:58;;;;;;;9002:2:1;32549:58:0;;;8984:21:1;9041:2;9021:18;;;9014:30;9080;9060:18;;;9053:58;9128:18;;32549:58:0;8800:352:1;32549:58:0;32620:45;32649:1;32653:2;32657:7;32620:20;:45::i;:::-;32678:13;;;;;;;:9;:13;;;;;:18;;32695:1;;32678:13;:18;;32695:1;;32678:18;:::i;:::-;;;;-1:-1:-1;;32707:16:0;;;;:7;:16;;;;;;:21;;;;;;;;;;;;;32746:33;;32707:16;;;32746:33;;32707:16;;32746:33;32405:382;;:::o;-1:-1:-1:-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;;;;;;;;;14:465:1;78:5;112:18;104:6;101:30;98:56;;;134:18;;:::i;:::-;172:116;282:4;213:66;208:2;200:6;196:15;192:88;188:99;172:116;:::i;:::-;163:125;;311:6;304:5;297:21;351:3;342:6;337:3;333:16;330:25;327:45;;;368:1;365;358:12;327:45;417:6;412:3;405:4;398:5;394:16;381:43;471:1;464:4;455:6;448:5;444:18;440:29;433:40;14:465;;;;;:::o;484:247::-;543:6;596:2;584:9;575:7;571:23;567:32;564:52;;;612:1;609;602:12;564:52;651:9;638:23;670:31;695:5;670:31;:::i;736:388::-;804:6;812;865:2;853:9;844:7;840:23;836:32;833:52;;;881:1;878;871:12;833:52;920:9;907:23;939:31;964:5;939:31;:::i;:::-;989:5;-1:-1:-1;1046:2:1;1031:18;;1018:32;1059:33;1018:32;1059:33;:::i;:::-;1111:7;1101:17;;;736:388;;;;;:::o;1129:456::-;1206:6;1214;1222;1275:2;1263:9;1254:7;1250:23;1246:32;1243:52;;;1291:1;1288;1281:12;1243:52;1330:9;1317:23;1349:31;1374:5;1349:31;:::i;:::-;1399:5;-1:-1:-1;1456:2:1;1441:18;;1428:32;1469:33;1428:32;1469:33;:::i;:::-;1129:456;;1521:7;;-1:-1:-1;;;1575:2:1;1560:18;;;;1547:32;;1129:456::o;1590:794::-;1685:6;1693;1701;1709;1762:3;1750:9;1741:7;1737:23;1733:33;1730:53;;;1779:1;1776;1769:12;1730:53;1818:9;1805:23;1837:31;1862:5;1837:31;:::i;:::-;1887:5;-1:-1:-1;1944:2:1;1929:18;;1916:32;1957:33;1916:32;1957:33;:::i;:::-;2009:7;-1:-1:-1;2063:2:1;2048:18;;2035:32;;-1:-1:-1;2118:2:1;2103:18;;2090:32;2145:18;2134:30;;2131:50;;;2177:1;2174;2167:12;2131:50;2200:22;;2253:4;2245:13;;2241:27;-1:-1:-1;2231:55:1;;2282:1;2279;2272:12;2231:55;2305:73;2370:7;2365:2;2352:16;2347:2;2343;2339:11;2305:73;:::i;:::-;2295:83;;;1590:794;;;;;;;:::o;2389:416::-;2454:6;2462;2515:2;2503:9;2494:7;2490:23;2486:32;2483:52;;;2531:1;2528;2521:12;2483:52;2570:9;2557:23;2589:31;2614:5;2589:31;:::i;:::-;2639:5;-1:-1:-1;2696:2:1;2681:18;;2668:32;2738:15;;2731:23;2719:36;;2709:64;;2769:1;2766;2759:12;2810:315;2878:6;2886;2939:2;2927:9;2918:7;2914:23;2910:32;2907:52;;;2955:1;2952;2945:12;2907:52;2994:9;2981:23;3013:31;3038:5;3013:31;:::i;:::-;3063:5;3115:2;3100:18;;;;3087:32;;-1:-1:-1;;;2810:315:1:o;3130:1032::-;3214:6;3245:2;3288;3276:9;3267:7;3263:23;3259:32;3256:52;;;3304:1;3301;3294:12;3256:52;3344:9;3331:23;3373:18;3414:2;3406:6;3403:14;3400:34;;;3430:1;3427;3420:12;3400:34;3468:6;3457:9;3453:22;3443:32;;3513:7;3506:4;3502:2;3498:13;3494:27;3484:55;;3535:1;3532;3525:12;3484:55;3571:2;3558:16;3593:2;3589;3586:10;3583:36;;;3599:18;;:::i;:::-;3645:2;3642:1;3638:10;3628:20;;3668:28;3692:2;3688;3684:11;3668:28;:::i;:::-;3730:15;;;3761:12;;;;3793:11;;;3823;;;3819:20;;3816:33;-1:-1:-1;3813:53:1;;;3862:1;3859;3852:12;3813:53;3884:1;3875:10;;3894:238;3908:2;3905:1;3902:9;3894:238;;;3979:3;3966:17;3953:30;;3996:31;4021:5;3996:31;:::i;:::-;4040:18;;;3926:1;3919:9;;;;;4078:12;;;;4110;;3894:238;;;-1:-1:-1;4151:5:1;3130:1032;-1:-1:-1;;;;;;;;3130:1032:1:o;4167:245::-;4225:6;4278:2;4266:9;4257:7;4253:23;4249:32;4246:52;;;4294:1;4291;4284:12;4246:52;4333:9;4320:23;4352:30;4376:5;4352:30;:::i;4417:249::-;4486:6;4539:2;4527:9;4518:7;4514:23;4510:32;4507:52;;;4555:1;4552;4545:12;4507:52;4587:9;4581:16;4606:30;4630:5;4606:30;:::i;4671:287::-;4777:6;4830:2;4818:9;4809:7;4805:23;4801:32;4798:52;;;4846:1;4843;4836:12;4798:52;4878:9;4872:16;4897:31;4922:5;4897:31;:::i;4963:450::-;5032:6;5085:2;5073:9;5064:7;5060:23;5056:32;5053:52;;;5101:1;5098;5091:12;5053:52;5141:9;5128:23;5174:18;5166:6;5163:30;5160:50;;;5206:1;5203;5196:12;5160:50;5229:22;;5282:4;5274:13;;5270:27;-1:-1:-1;5260:55:1;;5311:1;5308;5301:12;5260:55;5334:73;5399:7;5394:2;5381:16;5376:2;5372;5368:11;5334:73;:::i;5418:180::-;5477:6;5530:2;5518:9;5509:7;5505:23;5501:32;5498:52;;;5546:1;5543;5536:12;5498:52;-1:-1:-1;5569:23:1;;5418:180;-1:-1:-1;5418:180:1:o;5603:316::-;5644:3;5682:5;5676:12;5709:6;5704:3;5697:19;5725:63;5781:6;5774:4;5769:3;5765:14;5758:4;5751:5;5747:16;5725:63;:::i;:::-;5833:2;5821:15;5838:66;5817:88;5808:98;;;;5908:4;5804:109;;5603:316;-1:-1:-1;;5603:316:1:o;5924:470::-;6103:3;6141:6;6135:13;6157:53;6203:6;6198:3;6191:4;6183:6;6179:17;6157:53;:::i;:::-;6273:13;;6232:16;;;;6295:57;6273:13;6232:16;6329:4;6317:17;;6295:57;:::i;:::-;6368:20;;5924:470;-1:-1:-1;;;;5924:470:1:o;6630:511::-;6824:4;6853:42;6934:2;6926:6;6922:15;6911:9;6904:34;6986:2;6978:6;6974:15;6969:2;6958:9;6954:18;6947:43;;7026:6;7021:2;7010:9;7006:18;6999:34;7069:3;7064:2;7053:9;7049:18;7042:31;7090:45;7130:3;7119:9;7115:19;7107:6;7090:45;:::i;:::-;7082:53;6630:511;-1:-1:-1;;;;;;6630:511:1:o;7338:219::-;7487:2;7476:9;7469:21;7450:4;7507:44;7547:2;7536:9;7532:18;7524:6;7507:44;:::i;15728:334::-;15799:2;15793:9;15855:2;15845:13;;15860:66;15841:86;15829:99;;15958:18;15943:34;;15979:22;;;15940:62;15937:88;;;16005:18;;:::i;:::-;16041:2;16034:22;15728:334;;-1:-1:-1;15728:334:1:o;16067:128::-;16107:3;16138:1;16134:6;16131:1;16128:13;16125:39;;;16144:18;;:::i;:::-;-1:-1:-1;16180:9:1;;16067:128::o;16200:120::-;16240:1;16266;16256:35;;16271:18;;:::i;:::-;-1:-1:-1;16305:9:1;;16200:120::o;16325:228::-;16365:7;16491:1;16423:66;16419:74;16416:1;16413:81;16408:1;16401:9;16394:17;16390:105;16387:131;;;16498:18;;:::i;:::-;-1:-1:-1;16538:9:1;;16325:228::o;16558:125::-;16598:4;16626:1;16623;16620:8;16617:34;;;16631:18;;:::i;:::-;-1:-1:-1;16668:9:1;;16558:125::o;16688:258::-;16760:1;16770:113;16784:6;16781:1;16778:13;16770:113;;;16860:11;;;16854:18;16841:11;;;16834:39;16806:2;16799:10;16770:113;;;16901:6;16898:1;16895:13;16892:48;;;-1:-1:-1;;16936:1:1;16918:16;;16911:27;16688:258::o;16951:437::-;17030:1;17026:12;;;;17073;;;17094:61;;17148:4;17140:6;17136:17;17126:27;;17094:61;17201:2;17193:6;17190:14;17170:18;17167:38;17164:218;;;17238:77;17235:1;17228:88;17339:4;17336:1;17329:15;17367:4;17364:1;17357:15;17164:218;;16951:437;;;:::o;17393:195::-;17432:3;17463:66;17456:5;17453:77;17450:103;;;17533:18;;:::i;:::-;-1:-1:-1;17580:1:1;17569:13;;17393:195::o;17593:112::-;17625:1;17651;17641:35;;17656:18;;:::i;:::-;-1:-1:-1;17690:9:1;;17593:112::o;17710:184::-;17762:77;17759:1;17752:88;17859:4;17856:1;17849:15;17883:4;17880:1;17873:15;17899:184;17951:77;17948:1;17941:88;18048:4;18045:1;18038:15;18072:4;18069:1;18062:15;18088:184;18140:77;18137:1;18130:88;18237:4;18234:1;18227:15;18261:4;18258:1;18251:15;18277:184;18329:77;18326:1;18319:88;18426:4;18423:1;18416:15;18450:4;18447:1;18440:15;18466:184;18518:77;18515:1;18508:88;18615:4;18612:1;18605:15;18639:4;18636:1;18629:15;18655:154;18741:42;18734:5;18730:54;18723:5;18720:65;18710:93;;18799:1;18796;18789:12;18814:177;18899:66;18892:5;18888:78;18881:5;18878:89;18868:117;;18981:1;18978;18971:12

Swarm Source

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