ETH Price: $3,392.27 (+5.31%)

Token

NFLips Mint Pass (NFLPass)
 

Overview

Max Total Supply

27 NFLPass

Holders

27

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A
Balance
1 NFLPass
0x076eeae11e645d27b4a180d74982332a71feb660
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:
NFLipsPassesOne

Compiler Version
v0.8.7+commit.e28d00a7

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

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

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



pragma solidity ^0.8.0;

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

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

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

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

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

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



pragma solidity ^0.8.0;

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

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

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

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

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

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



pragma solidity ^0.8.0;

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

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

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



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/Address.sol



pragma solidity ^0.8.0;

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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



pragma solidity ^0.8.0;

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

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



pragma solidity ^0.8.0;

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

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



pragma solidity ^0.8.0;


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

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



pragma solidity ^0.8.0;


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

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

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

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

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

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

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

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

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

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

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

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

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



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/IERC721Metadata.sol



pragma solidity ^0.8.0;


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

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

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

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



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/ERC721Enumerable.sol



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/NFLipsPassesOne.sol


pragma solidity ^0.8.0;





contract OwnableDelegateProxy {}

contract ProxyRegistry {
    mapping(address => OwnableDelegateProxy) public proxies;
}

abstract contract ERC721Tradable is ERC721Enumerable, Ownable {
    using Strings for uint256;

    address proxyRegistryAddress;
    string public baseURI;
    string public baseExtension;


    constructor(
        string memory _name,
        string memory _symbol,
        address _proxyRegistryAddress,
        string memory _initBaseURI,
        string memory _initBaseExtension
    ) ERC721(_name, _symbol) {
        proxyRegistryAddress = _proxyRegistryAddress;
        setBaseURI(_initBaseURI);
        baseExtension = _initBaseExtension;
    }

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

    // public
    function tokenURI(uint256 _tokenId) public view virtual override returns (string memory) {
        require(_exists(_tokenId), "ERC721Metadata: URI query for nonexistent token");
    
        string memory currentBaseURI = _baseURI();
        return bytes(currentBaseURI).length > 0
            ? string(abi.encodePacked(currentBaseURI, _tokenId.toString(), baseExtension))
            : "";
    }

    function walletOfOwner(address _owner) public view returns (uint256[] memory) {
        uint256 ownerTokenCount = balanceOf(_owner);
        uint256[] memory tokenIds = new uint256[](ownerTokenCount);
        for (uint256 i; i < ownerTokenCount; i++) {
            tokenIds[i] = tokenOfOwnerByIndex(_owner, i);
        }
        return tokenIds;
    }

    // only owner

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

    function setBaseExtension(string memory _newBaseExtension) public onlyOwner {
        baseExtension = _newBaseExtension;
    }

    // Override isApprovedForAll to whitelist user's OpenSea proxy accounts to enable gas-less listings.
    function isApprovedForAll(address owner, address operator) override public view returns (bool) {
        // Whitelist OpenSea proxy contract for easy trading.
        ProxyRegistry proxyRegistry = ProxyRegistry(proxyRegistryAddress);
        if (address(proxyRegistry.proxies(owner)) == operator) {
            return true;
        }
        return super.isApprovedForAll(owner, operator);
    }
}

contract NFLipsPassesOne is ERC721Tradable {
  using Counters for Counters.Counter;
  using Strings for uint256;

  Counters.Counter private _tokenIdCounter;

  string private nftName = "NFLips Mint Pass";
  string private nftSymbol = "NFLPass";
  string private initBaseURI = "https://pass.nflipsmedia.art/metadata/";
  string private initBaseExtension = ".json";
  address private setProxyRegistryAddress = 0xa5409ec958C83C3f309868babACA7c86DCB077c1; //OS Mainnet
  uint256 public maxSupply = 100;
  bool public paused = false;
  bool public whitelistMinting = true;
  bool public publicMinting = false;
  mapping(address => bool) whiteList;
  mapping(address => bool) alreadyMinted;


  constructor() ERC721Tradable(nftName, nftSymbol, setProxyRegistryAddress, initBaseURI, initBaseExtension){
    _tokenIdCounter.increment(); // Start Collection at Token ID 1
  }

  // public
  function whitelistMint(address _toAddress) external {
    require(!paused, "Minting is paused");
    require(whitelistMinting, "Whitelist minting isn't allowed yet");
    require(_tokenIdCounter.current() <= maxSupply, "Minting would exceed max supply");
    if (msg.sender != owner()) {
      require(whiteList[_msgSender()], "Sender is not whitelisted!");
      require(!alreadyMinted[_msgSender()], "Sender already minted one token");
    }

    _safeMint(_toAddress, _tokenIdCounter.current());
    _tokenIdCounter.increment();
    if (msg.sender != owner()) {
      alreadyMinted[_msgSender()] = true;
    }
  }

  function publicMint(address _toAddress) external {
    require(!paused, "Minting is paused");
    require(publicMinting, "Public minting isn't allowed");
    require(_tokenIdCounter.current() <= maxSupply, "Minting would exceed max supply");
    if (msg.sender != owner()) {
      require(!alreadyMinted[_msgSender()], "Sender already minted one token");
    }

    _safeMint(_toAddress, _tokenIdCounter.current());
    _tokenIdCounter.increment();
    if (msg.sender != owner()) {
      alreadyMinted[_msgSender()] = true;
    }
  }

  function checkWhitelistedStatus(address _checkAddress) external view returns (bool) {
    return whiteList[_checkAddress];
  }

  //only owner
  function honPassMint(address _toAddress, uint256 _tokenId) public onlyOwner() {
    require(_tokenId > 100, "Honorary Token ID needs to be above 100");

    _safeMint(_toAddress, _tokenId);
  }

  function ownerMint(address _toAddress, uint256 amount) public onlyOwner() {
    require(_tokenIdCounter.current() - 1 + amount <= maxSupply, "Minting would exceed max supply");

    for (uint256 i = 0; i < amount; i++) {
      _safeMint(_toAddress, _tokenIdCounter.current());
      _tokenIdCounter.increment();
    }
  }

  function addToWhitelist(address[] calldata addressToAdd) public onlyOwner {
    for (uint i=0; i<addressToAdd.length; i++) {
      whiteList[addressToAdd[i]] = true;
    }
  }

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

  function enableWhitelistMinting() public onlyOwner {
    whitelistMinting = true;
  }

  function disableWhitelistMinting() public onlyOwner {
    whitelistMinting = false;
  }

  function enablePublicMinting() public onlyOwner {
    whitelistMinting = true;
  }

  function disablePublicMinting() public onlyOwner {
    whitelistMinting = false;
  }

  function renounceOwnership() public view override onlyOwner {
    revert("Not executeable for added security");
  }

  function withdraw() public payable onlyOwner {
    (bool success, ) = payable(msg.sender).call{value: address(this).balance}("");
    require(success);
  }
}

Contract Security Audit

Contract ABI

[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"approved","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[{"internalType":"address[]","name":"addressToAdd","type":"address[]"}],"name":"addToWhitelist","outputs":[],"stateMutability":"nonpayable","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":"baseExtension","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"baseURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_checkAddress","type":"address"}],"name":"checkWhitelistedStatus","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"disablePublicMinting","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"disableWhitelistMinting","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"enablePublicMinting","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"enableWhitelistMinting","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_toAddress","type":"address"},{"internalType":"uint256","name":"_tokenId","type":"uint256"}],"name":"honPassMint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","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":"address","name":"_toAddress","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"ownerMint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bool","name":"_state","type":"bool"}],"name":"pause","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"paused","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_toAddress","type":"address"}],"name":"publicMint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"publicMinting","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"_data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_newBaseExtension","type":"string"}],"name":"setBaseExtension","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_newBaseURI","type":"string"}],"name":"setBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"index","type":"uint256"}],"name":"tokenByIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"uint256","name":"index","type":"uint256"}],"name":"tokenOfOwnerByIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_owner","type":"address"}],"name":"walletOfOwner","outputs":[{"internalType":"uint256[]","name":"","type":"uint256[]"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_toAddress","type":"address"}],"name":"whitelistMint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"whitelistMinting","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"withdraw","outputs":[],"stateMutability":"payable","type":"function"}]

60c0604052601060808190526f4e464c697073204d696e74205061737360801b60a09081526200003391600f9190620004eb565b50604080518082019091526007808252664e464c5061737360c81b60209092019182526200006491601091620004eb565b5060405180606001604052806026815260200162002ef76026913980516200009591601191602090910190620004eb565b5060408051808201909152600580825264173539b7b760d91b6020909201918252620000c491601291620004eb565b50601380546001600160a01b03191673a5409ec958c83c3f309868babaca7c86dcb077c117905560646014556015805462ffffff19166101001790553480156200010d57600080fd5b50600f80546200011d9062000591565b80601f01602080910402602001604051908101604052809291908181526020018280546200014b9062000591565b80156200019c5780601f1062000170576101008083540402835291602001916200019c565b820191906000526020600020905b8154815290600101906020018083116200017e57829003601f168201915b505050505060108054620001b09062000591565b80601f0160208091040260200160405190810160405280929190818152602001828054620001de9062000591565b80156200022f5780601f1062000203576101008083540402835291602001916200022f565b820191906000526020600020905b8154815290600101906020018083116200021157829003601f168201915b5050601354601180546001600160a01b039092169450925062000253915062000591565b80601f0160208091040260200160405190810160405280929190818152602001828054620002819062000591565b8015620002d25780601f10620002a657610100808354040283529160200191620002d2565b820191906000526020600020905b815481529060010190602001808311620002b457829003601f168201915b505050505060128054620002e69062000591565b80601f0160208091040260200160405190810160405280929190818152602001828054620003149062000591565b8015620003655780601f10620003395761010080835404028352916020019162000365565b820191906000526020600020905b8154815290600101906020018083116200034757829003601f168201915b505087518893508792506200038391506000906020850190620004eb565b50805162000399906001906020840190620004eb565b505050620003b6620003b06200041460201b60201c565b62000418565b600b80546001600160a01b0319166001600160a01b038516179055620003dc826200046a565b8051620003f190600d906020840190620004eb565b5050505050506200040e600e620004e260201b620017361760201c565b620005ce565b3390565b600a80546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b600a546001600160a01b03163314620004c95760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604482015260640160405180910390fd5b8051620004de90600c906020840190620004eb565b5050565b80546001019055565b828054620004f99062000591565b90600052602060002090601f0160209004810192826200051d576000855562000568565b82601f106200053857805160ff191683800117855562000568565b8280016001018555821562000568579182015b82811115620005685782518255916020019190600101906200054b565b50620005769291506200057a565b5090565b5b808211156200057657600081556001016200057b565b600181811c90821680620005a657607f821691505b60208210811415620005c857634e487b7160e01b600052602260045260246000fd5b50919050565b61291980620005de6000396000f3fe60806040526004361061023b5760003560e01c80636992d2291161012e578063b88d4fde116100ab578063da3ef23f1161006f578063da3ef23f14610689578063e985e9c5146106a9578063f2fde38b146106c9578063f73972e01461057b578063f7beb98a1461031157600080fd5b8063b88d4fde146105fe578063bf610d7e1461061e578063c66828621461063e578063c87b56dd14610653578063d5abeb011461067357600080fd5b80638da5cb5b116100f25780638da5cb5b1461055d5780639190ad471461057b57806395d89b4114610590578063a22cb465146105a5578063adf69d5b146105c557600080fd5b80636992d229146104d45780636c0360eb146104f357806370a0823114610508578063715018a6146105285780637f6497831461053d57600080fd5b806334b79688116101bc5780634f6ccce7116101805780634f6ccce71461043a57806353ac010a1461045a57806355f804b31461047a5780635c975abb1461049a5780636352211e146104b457600080fd5b806334b79688146103a55780633ccfd60b146103c557806342842e0e146103cd578063438b6300146103ed578063484b973c1461041a57600080fd5b80630b7b4bef116102035780630b7b4bef1461031157806318160ddd1461032657806323b872dd146103455780632f745c591461036557806332a93a3a1461038557600080fd5b806301ffc9a71461024057806302329a291461027557806306fdde0314610297578063081812fc146102b9578063095ea7b3146102f1575b600080fd5b34801561024c57600080fd5b5061026061025b366004612425565b6106e9565b60405190151581526020015b60405180910390f35b34801561028157600080fd5b5061029561029036600461240a565b610714565b005b3480156102a357600080fd5b506102ac61075a565b60405161026c919061264f565b3480156102c557600080fd5b506102d96102d43660046124c5565b6107ec565b6040516001600160a01b03909116815260200161026c565b3480156102fd57600080fd5b5061029561030c366004612369565b610881565b34801561031d57600080fd5b50610295610997565b34801561033257600080fd5b506008545b60405190815260200161026c565b34801561035157600080fd5b50610295610360366004612273565b6109d2565b34801561037157600080fd5b50610337610380366004612369565b610a03565b34801561039157600080fd5b506102956103a036600461221d565b610a99565b3480156103b157600080fd5b506102956103c0366004612369565b610c2e565b610295610cc6565b3480156103d957600080fd5b506102956103e8366004612273565b610d45565b3480156103f957600080fd5b5061040d61040836600461221d565b610d60565b60405161026c919061260b565b34801561042657600080fd5b50610295610435366004612369565b610e02565b34801561044657600080fd5b506103376104553660046124c5565b610ea5565b34801561046657600080fd5b506015546102609062010000900460ff1681565b34801561048657600080fd5b5061029561049536600461247c565b610f38565b3480156104a657600080fd5b506015546102609060ff1681565b3480156104c057600080fd5b506102d96104cf3660046124c5565b610f75565b3480156104e057600080fd5b5060155461026090610100900460ff1681565b3480156104ff57600080fd5b506102ac610fec565b34801561051457600080fd5b5061033761052336600461221d565b61107a565b34801561053457600080fd5b50610295611101565b34801561054957600080fd5b50610295610558366004612395565b61117e565b34801561056957600080fd5b50600a546001600160a01b03166102d9565b34801561058757600080fd5b5061029561121a565b34801561059c57600080fd5b506102ac611251565b3480156105b157600080fd5b506102956105c0366004612334565b611260565b3480156105d157600080fd5b506102606105e036600461221d565b6001600160a01b031660009081526016602052604090205460ff1690565b34801561060a57600080fd5b506102956106193660046122b4565b611325565b34801561062a57600080fd5b5061029561063936600461221d565b61135d565b34801561064a57600080fd5b506102ac6114a6565b34801561065f57600080fd5b506102ac61066e3660046124c5565b6114b3565b34801561067f57600080fd5b5061033760145481565b34801561069557600080fd5b506102956106a436600461247c565b611591565b3480156106b557600080fd5b506102606106c436600461223a565b6115ce565b3480156106d557600080fd5b506102956106e436600461221d565b61169e565b60006001600160e01b0319821663780e9d6360e01b148061070e575061070e8261173f565b92915050565b600a546001600160a01b031633146107475760405162461bcd60e51b815260040161073e906126eb565b60405180910390fd5b6015805460ff1916911515919091179055565b606060008054610769906127e0565b80601f0160208091040260200160405190810160405280929190818152602001828054610795906127e0565b80156107e25780601f106107b7576101008083540402835291602001916107e2565b820191906000526020600020905b8154815290600101906020018083116107c557829003601f168201915b5050505050905090565b6000818152600260205260408120546001600160a01b03166108655760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b606482015260840161073e565b506000908152600460205260409020546001600160a01b031690565b600061088c82610f75565b9050806001600160a01b0316836001600160a01b031614156108fa5760405162461bcd60e51b815260206004820152602160248201527f4552433732313a20617070726f76616c20746f2063757272656e74206f776e656044820152603960f91b606482015260840161073e565b336001600160a01b0382161480610916575061091681336115ce565b6109885760405162461bcd60e51b815260206004820152603860248201527f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760448201527f6e6572206e6f7220617070726f76656420666f7220616c6c0000000000000000606482015260840161073e565b610992838361178f565b505050565b600a546001600160a01b031633146109c15760405162461bcd60e51b815260040161073e906126eb565b6015805461ff001916610100179055565b6109dc33826117fd565b6109f85760405162461bcd60e51b815260040161073e90612720565b6109928383836118cc565b6000610a0e8361107a565b8210610a705760405162461bcd60e51b815260206004820152602b60248201527f455243373231456e756d657261626c653a206f776e657220696e646578206f7560448201526a74206f6620626f756e647360a81b606482015260840161073e565b506001600160a01b03919091166000908152600660209081526040808320938352929052205490565b60155460ff1615610ae05760405162461bcd60e51b8152602060048201526011602482015270135a5b9d1a5b99c81a5cc81c185d5cd959607a1b604482015260640161073e565b60155462010000900460ff16610b385760405162461bcd60e51b815260206004820152601c60248201527f5075626c6963206d696e74696e672069736e277420616c6c6f77656400000000604482015260640161073e565b601454600e541115610b5c5760405162461bcd60e51b815260040161073e906126b4565b600a546001600160a01b03163314610bde5760176000335b6001600160a01b0316815260208101919091526040016000205460ff1615610bde5760405162461bcd60e51b815260206004820152601f60248201527f53656e64657220616c7265616479206d696e746564206f6e6520746f6b656e00604482015260640161073e565b610bf081610beb600e5490565b611a77565b610bfe600e80546001019055565b600a546001600160a01b03163314610c2b57336000908152601760205260409020805460ff191660011790555b50565b600a546001600160a01b03163314610c585760405162461bcd60e51b815260040161073e906126eb565b60648111610cb85760405162461bcd60e51b815260206004820152602760248201527f486f6e6f7261727920546f6b656e204944206e6565647320746f20626520616260448201526606f7665203130360cc1b606482015260840161073e565b610cc28282611a77565b5050565b600a546001600160a01b03163314610cf05760405162461bcd60e51b815260040161073e906126eb565b604051600090339047908381818185875af1925050503d8060008114610d32576040519150601f19603f3d011682016040523d82523d6000602084013e610d37565b606091505b5050905080610c2b57600080fd5b61099283838360405180602001604052806000815250611325565b60606000610d6d8361107a565b905060008167ffffffffffffffff811115610d8a57610d8a6128a2565b604051908082528060200260200182016040528015610db3578160200160208202803683370190505b50905060005b82811015610dfa57610dcb8582610a03565b828281518110610ddd57610ddd61288c565b602090810291909101015280610df28161281b565b915050610db9565b509392505050565b600a546001600160a01b03163314610e2c5760405162461bcd60e51b815260040161073e906126eb565b601454816001610e3b600e5490565b610e45919061279d565b610e4f9190612771565b1115610e6d5760405162461bcd60e51b815260040161073e906126b4565b60005b8181101561099257610e8583610beb600e5490565b610e93600e80546001019055565b80610e9d8161281b565b915050610e70565b6000610eb060085490565b8210610f135760405162461bcd60e51b815260206004820152602c60248201527f455243373231456e756d657261626c653a20676c6f62616c20696e646578206f60448201526b7574206f6620626f756e647360a01b606482015260840161073e565b60088281548110610f2657610f2661288c565b90600052602060002001549050919050565b600a546001600160a01b03163314610f625760405162461bcd60e51b815260040161073e906126eb565b8051610cc290600c9060208401906120f9565b6000818152600260205260408120546001600160a01b03168061070e5760405162461bcd60e51b815260206004820152602960248201527f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460448201526832b73a103a37b5b2b760b91b606482015260840161073e565b600c8054610ff9906127e0565b80601f0160208091040260200160405190810160405280929190818152602001828054611025906127e0565b80156110725780601f1061104757610100808354040283529160200191611072565b820191906000526020600020905b81548152906001019060200180831161105557829003601f168201915b505050505081565b60006001600160a01b0382166110e55760405162461bcd60e51b815260206004820152602a60248201527f4552433732313a2062616c616e636520717565727920666f7220746865207a65604482015269726f206164647265737360b01b606482015260840161073e565b506001600160a01b031660009081526003602052604090205490565b600a546001600160a01b0316331461112b5760405162461bcd60e51b815260040161073e906126eb565b60405162461bcd60e51b815260206004820152602260248201527f4e6f74206578656375746561626c6520666f7220616464656420736563757269604482015261747960f01b606482015260840161073e565b600a546001600160a01b031633146111a85760405162461bcd60e51b815260040161073e906126eb565b60005b81811015610992576001601660008585858181106111cb576111cb61288c565b90506020020160208101906111e0919061221d565b6001600160a01b031681526020810191909152604001600020805460ff1916911515919091179055806112128161281b565b9150506111ab565b600a546001600160a01b031633146112445760405162461bcd60e51b815260040161073e906126eb565b6015805461ff0019169055565b606060018054610769906127e0565b6001600160a01b0382163314156112b95760405162461bcd60e51b815260206004820152601960248201527f4552433732313a20617070726f766520746f2063616c6c657200000000000000604482015260640161073e565b3360008181526005602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b61132f33836117fd565b61134b5760405162461bcd60e51b815260040161073e90612720565b61135784848484611a91565b50505050565b60155460ff16156113a45760405162461bcd60e51b8152602060048201526011602482015270135a5b9d1a5b99c81a5cc81c185d5cd959607a1b604482015260640161073e565b601554610100900460ff166114075760405162461bcd60e51b815260206004820152602360248201527f57686974656c697374206d696e74696e672069736e277420616c6c6f776564206044820152621e595d60ea1b606482015260840161073e565b601454600e54111561142b5760405162461bcd60e51b815260040161073e906126b4565b600a546001600160a01b03163314610bde573360009081526016602052604090205460ff1661149c5760405162461bcd60e51b815260206004820152601a60248201527f53656e646572206973206e6f742077686974656c697374656421000000000000604482015260640161073e565b6017600033610b74565b600d8054610ff9906127e0565b6000818152600260205260409020546060906001600160a01b03166115325760405162461bcd60e51b815260206004820152602f60248201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60448201526e3732bc34b9ba32b73a103a37b5b2b760891b606482015260840161073e565b600061153c611ac4565b9050600081511161155c576040518060200160405280600081525061158a565b8061156684611ad3565b600d60405160200161157a9392919061250a565b6040516020818303038152906040525b9392505050565b600a546001600160a01b031633146115bb5760405162461bcd60e51b815260040161073e906126eb565b8051610cc290600d9060208401906120f9565b600b5460405163c455279160e01b81526001600160a01b03848116600483015260009281169190841690829063c45527919060240160206040518083038186803b15801561161b57600080fd5b505afa15801561162f573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611653919061245f565b6001600160a01b0316141561166c57600191505061070e565b6001600160a01b0380851660009081526005602090815260408083209387168352929052205460ff165b949350505050565b600a546001600160a01b031633146116c85760405162461bcd60e51b815260040161073e906126eb565b6001600160a01b03811661172d5760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b606482015260840161073e565b610c2b81611bd1565b80546001019055565b60006001600160e01b031982166380ac58cd60e01b148061177057506001600160e01b03198216635b5e139f60e01b145b8061070e57506301ffc9a760e01b6001600160e01b031983161461070e565b600081815260046020526040902080546001600160a01b0319166001600160a01b03841690811790915581906117c482610f75565b6001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b6000818152600260205260408120546001600160a01b03166118765760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b606482015260840161073e565b600061188183610f75565b9050806001600160a01b0316846001600160a01b031614806118bc5750836001600160a01b03166118b1846107ec565b6001600160a01b0316145b80611696575061169681856115ce565b826001600160a01b03166118df82610f75565b6001600160a01b0316146119475760405162461bcd60e51b815260206004820152602960248201527f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960448201526839903737ba1037bbb760b91b606482015260840161073e565b6001600160a01b0382166119a95760405162461bcd60e51b8152602060048201526024808201527f4552433732313a207472616e7366657220746f20746865207a65726f206164646044820152637265737360e01b606482015260840161073e565b6119b4838383611c23565b6119bf60008261178f565b6001600160a01b03831660009081526003602052604081208054600192906119e890849061279d565b90915550506001600160a01b0382166000908152600360205260408120805460019290611a16908490612771565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b0386811691821790925591518493918716917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef91a4505050565b610cc2828260405180602001604052806000815250611cdb565b611a9c8484846118cc565b611aa884848484611d0e565b6113575760405162461bcd60e51b815260040161073e90612662565b6060600c8054610769906127e0565b606081611af75750506040805180820190915260018152600360fc1b602082015290565b8160005b8115611b215780611b0b8161281b565b9150611b1a9050600a83612789565b9150611afb565b60008167ffffffffffffffff811115611b3c57611b3c6128a2565b6040519080825280601f01601f191660200182016040528015611b66576020820181803683370190505b5090505b841561169657611b7b60018361279d565b9150611b88600a86612836565b611b93906030612771565b60f81b818381518110611ba857611ba861288c565b60200101906001600160f81b031916908160001a905350611bca600a86612789565b9450611b6a565b600a80546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6001600160a01b038316611c7e57611c7981600880546000838152600960205260408120829055600182018355919091527ff3f7a9fe364faab93b216da50a3214154f22a0a2b415b23a84c8169e8b636ee30155565b611ca1565b816001600160a01b0316836001600160a01b031614611ca157611ca18382611e1b565b6001600160a01b038216611cb85761099281611eb8565b826001600160a01b0316826001600160a01b031614610992576109928282611f67565b611ce58383611fab565b611cf26000848484611d0e565b6109925760405162461bcd60e51b815260040161073e90612662565b60006001600160a01b0384163b15611e1057604051630a85bd0160e11b81526001600160a01b0385169063150b7a0290611d529033908990889088906004016125ce565b602060405180830381600087803b158015611d6c57600080fd5b505af1925050508015611d9c575060408051601f3d908101601f19168201909252611d9991810190612442565b60015b611df6573d808015611dca576040519150601f19603f3d011682016040523d82523d6000602084013e611dcf565b606091505b508051611dee5760405162461bcd60e51b815260040161073e90612662565b805181602001fd5b6001600160e01b031916630a85bd0160e11b149050611696565b506001949350505050565b60006001611e288461107a565b611e32919061279d565b600083815260076020526040902054909150808214611e85576001600160a01b03841660009081526006602090815260408083208584528252808320548484528184208190558352600790915290208190555b5060009182526007602090815260408084208490556001600160a01b039094168352600681528383209183525290812055565b600854600090611eca9060019061279d565b60008381526009602052604081205460088054939450909284908110611ef257611ef261288c565b906000526020600020015490508060088381548110611f1357611f1361288c565b6000918252602080832090910192909255828152600990915260408082208490558582528120556008805480611f4b57611f4b612876565b6001900381819060005260206000200160009055905550505050565b6000611f728361107a565b6001600160a01b039093166000908152600660209081526040808320868452825280832085905593825260079052919091209190915550565b6001600160a01b0382166120015760405162461bcd60e51b815260206004820181905260248201527f4552433732313a206d696e7420746f20746865207a65726f2061646472657373604482015260640161073e565b6000818152600260205260409020546001600160a01b0316156120665760405162461bcd60e51b815260206004820152601c60248201527f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000604482015260640161073e565b61207260008383611c23565b6001600160a01b038216600090815260036020526040812080546001929061209b908490612771565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b03861690811790915590518392907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a45050565b828054612105906127e0565b90600052602060002090601f016020900481019282612127576000855561216d565b82601f1061214057805160ff191683800117855561216d565b8280016001018555821561216d579182015b8281111561216d578251825591602001919060010190612152565b5061217992915061217d565b5090565b5b80821115612179576000815560010161217e565b600067ffffffffffffffff808411156121ad576121ad6128a2565b604051601f8501601f19908116603f011681019082821181831017156121d5576121d56128a2565b816040528093508581528686860111156121ee57600080fd5b858560208301376000602087830101525050509392505050565b8035801515811461221857600080fd5b919050565b60006020828403121561222f57600080fd5b813561158a816128b8565b6000806040838503121561224d57600080fd5b8235612258816128b8565b91506020830135612268816128b8565b809150509250929050565b60008060006060848603121561228857600080fd5b8335612293816128b8565b925060208401356122a3816128b8565b929592945050506040919091013590565b600080600080608085870312156122ca57600080fd5b84356122d5816128b8565b935060208501356122e5816128b8565b925060408501359150606085013567ffffffffffffffff81111561230857600080fd5b8501601f8101871361231957600080fd5b61232887823560208401612192565b91505092959194509250565b6000806040838503121561234757600080fd5b8235612352816128b8565b915061236060208401612208565b90509250929050565b6000806040838503121561237c57600080fd5b8235612387816128b8565b946020939093013593505050565b600080602083850312156123a857600080fd5b823567ffffffffffffffff808211156123c057600080fd5b818501915085601f8301126123d457600080fd5b8135818111156123e357600080fd5b8660208260051b85010111156123f857600080fd5b60209290920196919550909350505050565b60006020828403121561241c57600080fd5b61158a82612208565b60006020828403121561243757600080fd5b813561158a816128cd565b60006020828403121561245457600080fd5b815161158a816128cd565b60006020828403121561247157600080fd5b815161158a816128b8565b60006020828403121561248e57600080fd5b813567ffffffffffffffff8111156124a557600080fd5b8201601f810184136124b657600080fd5b61169684823560208401612192565b6000602082840312156124d757600080fd5b5035919050565b600081518084526124f68160208601602086016127b4565b601f01601f19169290920160200192915050565b60008451602061251d8285838a016127b4565b8551918401916125308184848a016127b4565b8554920191600090600181811c908083168061254d57607f831692505b85831081141561256b57634e487b7160e01b85526022600452602485fd5b80801561257f5760018114612590576125bd565b60ff198516885283880195506125bd565b60008b81526020902060005b858110156125b55781548a82015290840190880161259c565b505083880195505b50939b9a5050505050505050505050565b6001600160a01b0385811682528416602082015260408101839052608060608201819052600090612601908301846124de565b9695505050505050565b6020808252825182820181905260009190848201906040850190845b8181101561264357835183529284019291840191600101612627565b50909695505050505050565b60208152600061158a60208301846124de565b60208082526032908201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560408201527131b2b4bb32b91034b6b83632b6b2b73a32b960711b606082015260800190565b6020808252601f908201527f4d696e74696e6720776f756c6420657863656564206d617820737570706c7900604082015260600190565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b60208082526031908201527f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f6040820152701ddb995c881b9bdc88185c1c1c9bdd9959607a1b606082015260800190565b600082198211156127845761278461284a565b500190565b60008261279857612798612860565b500490565b6000828210156127af576127af61284a565b500390565b60005b838110156127cf5781810151838201526020016127b7565b838111156113575750506000910152565b600181811c908216806127f457607f821691505b6020821081141561281557634e487b7160e01b600052602260045260246000fd5b50919050565b600060001982141561282f5761282f61284a565b5060010190565b60008261284557612845612860565b500690565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052601260045260246000fd5b634e487b7160e01b600052603160045260246000fd5b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b6001600160a01b0381168114610c2b57600080fd5b6001600160e01b031981168114610c2b57600080fdfea264697066735822122029543e165c3dc0ee5eb56b183c3c4eab0a70050065d15f057d04f420b6987b9a64736f6c6343000807003368747470733a2f2f706173732e6e666c6970736d656469612e6172742f6d657461646174612f

Deployed Bytecode

0x60806040526004361061023b5760003560e01c80636992d2291161012e578063b88d4fde116100ab578063da3ef23f1161006f578063da3ef23f14610689578063e985e9c5146106a9578063f2fde38b146106c9578063f73972e01461057b578063f7beb98a1461031157600080fd5b8063b88d4fde146105fe578063bf610d7e1461061e578063c66828621461063e578063c87b56dd14610653578063d5abeb011461067357600080fd5b80638da5cb5b116100f25780638da5cb5b1461055d5780639190ad471461057b57806395d89b4114610590578063a22cb465146105a5578063adf69d5b146105c557600080fd5b80636992d229146104d45780636c0360eb146104f357806370a0823114610508578063715018a6146105285780637f6497831461053d57600080fd5b806334b79688116101bc5780634f6ccce7116101805780634f6ccce71461043a57806353ac010a1461045a57806355f804b31461047a5780635c975abb1461049a5780636352211e146104b457600080fd5b806334b79688146103a55780633ccfd60b146103c557806342842e0e146103cd578063438b6300146103ed578063484b973c1461041a57600080fd5b80630b7b4bef116102035780630b7b4bef1461031157806318160ddd1461032657806323b872dd146103455780632f745c591461036557806332a93a3a1461038557600080fd5b806301ffc9a71461024057806302329a291461027557806306fdde0314610297578063081812fc146102b9578063095ea7b3146102f1575b600080fd5b34801561024c57600080fd5b5061026061025b366004612425565b6106e9565b60405190151581526020015b60405180910390f35b34801561028157600080fd5b5061029561029036600461240a565b610714565b005b3480156102a357600080fd5b506102ac61075a565b60405161026c919061264f565b3480156102c557600080fd5b506102d96102d43660046124c5565b6107ec565b6040516001600160a01b03909116815260200161026c565b3480156102fd57600080fd5b5061029561030c366004612369565b610881565b34801561031d57600080fd5b50610295610997565b34801561033257600080fd5b506008545b60405190815260200161026c565b34801561035157600080fd5b50610295610360366004612273565b6109d2565b34801561037157600080fd5b50610337610380366004612369565b610a03565b34801561039157600080fd5b506102956103a036600461221d565b610a99565b3480156103b157600080fd5b506102956103c0366004612369565b610c2e565b610295610cc6565b3480156103d957600080fd5b506102956103e8366004612273565b610d45565b3480156103f957600080fd5b5061040d61040836600461221d565b610d60565b60405161026c919061260b565b34801561042657600080fd5b50610295610435366004612369565b610e02565b34801561044657600080fd5b506103376104553660046124c5565b610ea5565b34801561046657600080fd5b506015546102609062010000900460ff1681565b34801561048657600080fd5b5061029561049536600461247c565b610f38565b3480156104a657600080fd5b506015546102609060ff1681565b3480156104c057600080fd5b506102d96104cf3660046124c5565b610f75565b3480156104e057600080fd5b5060155461026090610100900460ff1681565b3480156104ff57600080fd5b506102ac610fec565b34801561051457600080fd5b5061033761052336600461221d565b61107a565b34801561053457600080fd5b50610295611101565b34801561054957600080fd5b50610295610558366004612395565b61117e565b34801561056957600080fd5b50600a546001600160a01b03166102d9565b34801561058757600080fd5b5061029561121a565b34801561059c57600080fd5b506102ac611251565b3480156105b157600080fd5b506102956105c0366004612334565b611260565b3480156105d157600080fd5b506102606105e036600461221d565b6001600160a01b031660009081526016602052604090205460ff1690565b34801561060a57600080fd5b506102956106193660046122b4565b611325565b34801561062a57600080fd5b5061029561063936600461221d565b61135d565b34801561064a57600080fd5b506102ac6114a6565b34801561065f57600080fd5b506102ac61066e3660046124c5565b6114b3565b34801561067f57600080fd5b5061033760145481565b34801561069557600080fd5b506102956106a436600461247c565b611591565b3480156106b557600080fd5b506102606106c436600461223a565b6115ce565b3480156106d557600080fd5b506102956106e436600461221d565b61169e565b60006001600160e01b0319821663780e9d6360e01b148061070e575061070e8261173f565b92915050565b600a546001600160a01b031633146107475760405162461bcd60e51b815260040161073e906126eb565b60405180910390fd5b6015805460ff1916911515919091179055565b606060008054610769906127e0565b80601f0160208091040260200160405190810160405280929190818152602001828054610795906127e0565b80156107e25780601f106107b7576101008083540402835291602001916107e2565b820191906000526020600020905b8154815290600101906020018083116107c557829003601f168201915b5050505050905090565b6000818152600260205260408120546001600160a01b03166108655760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b606482015260840161073e565b506000908152600460205260409020546001600160a01b031690565b600061088c82610f75565b9050806001600160a01b0316836001600160a01b031614156108fa5760405162461bcd60e51b815260206004820152602160248201527f4552433732313a20617070726f76616c20746f2063757272656e74206f776e656044820152603960f91b606482015260840161073e565b336001600160a01b0382161480610916575061091681336115ce565b6109885760405162461bcd60e51b815260206004820152603860248201527f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760448201527f6e6572206e6f7220617070726f76656420666f7220616c6c0000000000000000606482015260840161073e565b610992838361178f565b505050565b600a546001600160a01b031633146109c15760405162461bcd60e51b815260040161073e906126eb565b6015805461ff001916610100179055565b6109dc33826117fd565b6109f85760405162461bcd60e51b815260040161073e90612720565b6109928383836118cc565b6000610a0e8361107a565b8210610a705760405162461bcd60e51b815260206004820152602b60248201527f455243373231456e756d657261626c653a206f776e657220696e646578206f7560448201526a74206f6620626f756e647360a81b606482015260840161073e565b506001600160a01b03919091166000908152600660209081526040808320938352929052205490565b60155460ff1615610ae05760405162461bcd60e51b8152602060048201526011602482015270135a5b9d1a5b99c81a5cc81c185d5cd959607a1b604482015260640161073e565b60155462010000900460ff16610b385760405162461bcd60e51b815260206004820152601c60248201527f5075626c6963206d696e74696e672069736e277420616c6c6f77656400000000604482015260640161073e565b601454600e541115610b5c5760405162461bcd60e51b815260040161073e906126b4565b600a546001600160a01b03163314610bde5760176000335b6001600160a01b0316815260208101919091526040016000205460ff1615610bde5760405162461bcd60e51b815260206004820152601f60248201527f53656e64657220616c7265616479206d696e746564206f6e6520746f6b656e00604482015260640161073e565b610bf081610beb600e5490565b611a77565b610bfe600e80546001019055565b600a546001600160a01b03163314610c2b57336000908152601760205260409020805460ff191660011790555b50565b600a546001600160a01b03163314610c585760405162461bcd60e51b815260040161073e906126eb565b60648111610cb85760405162461bcd60e51b815260206004820152602760248201527f486f6e6f7261727920546f6b656e204944206e6565647320746f20626520616260448201526606f7665203130360cc1b606482015260840161073e565b610cc28282611a77565b5050565b600a546001600160a01b03163314610cf05760405162461bcd60e51b815260040161073e906126eb565b604051600090339047908381818185875af1925050503d8060008114610d32576040519150601f19603f3d011682016040523d82523d6000602084013e610d37565b606091505b5050905080610c2b57600080fd5b61099283838360405180602001604052806000815250611325565b60606000610d6d8361107a565b905060008167ffffffffffffffff811115610d8a57610d8a6128a2565b604051908082528060200260200182016040528015610db3578160200160208202803683370190505b50905060005b82811015610dfa57610dcb8582610a03565b828281518110610ddd57610ddd61288c565b602090810291909101015280610df28161281b565b915050610db9565b509392505050565b600a546001600160a01b03163314610e2c5760405162461bcd60e51b815260040161073e906126eb565b601454816001610e3b600e5490565b610e45919061279d565b610e4f9190612771565b1115610e6d5760405162461bcd60e51b815260040161073e906126b4565b60005b8181101561099257610e8583610beb600e5490565b610e93600e80546001019055565b80610e9d8161281b565b915050610e70565b6000610eb060085490565b8210610f135760405162461bcd60e51b815260206004820152602c60248201527f455243373231456e756d657261626c653a20676c6f62616c20696e646578206f60448201526b7574206f6620626f756e647360a01b606482015260840161073e565b60088281548110610f2657610f2661288c565b90600052602060002001549050919050565b600a546001600160a01b03163314610f625760405162461bcd60e51b815260040161073e906126eb565b8051610cc290600c9060208401906120f9565b6000818152600260205260408120546001600160a01b03168061070e5760405162461bcd60e51b815260206004820152602960248201527f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460448201526832b73a103a37b5b2b760b91b606482015260840161073e565b600c8054610ff9906127e0565b80601f0160208091040260200160405190810160405280929190818152602001828054611025906127e0565b80156110725780601f1061104757610100808354040283529160200191611072565b820191906000526020600020905b81548152906001019060200180831161105557829003601f168201915b505050505081565b60006001600160a01b0382166110e55760405162461bcd60e51b815260206004820152602a60248201527f4552433732313a2062616c616e636520717565727920666f7220746865207a65604482015269726f206164647265737360b01b606482015260840161073e565b506001600160a01b031660009081526003602052604090205490565b600a546001600160a01b0316331461112b5760405162461bcd60e51b815260040161073e906126eb565b60405162461bcd60e51b815260206004820152602260248201527f4e6f74206578656375746561626c6520666f7220616464656420736563757269604482015261747960f01b606482015260840161073e565b600a546001600160a01b031633146111a85760405162461bcd60e51b815260040161073e906126eb565b60005b81811015610992576001601660008585858181106111cb576111cb61288c565b90506020020160208101906111e0919061221d565b6001600160a01b031681526020810191909152604001600020805460ff1916911515919091179055806112128161281b565b9150506111ab565b600a546001600160a01b031633146112445760405162461bcd60e51b815260040161073e906126eb565b6015805461ff0019169055565b606060018054610769906127e0565b6001600160a01b0382163314156112b95760405162461bcd60e51b815260206004820152601960248201527f4552433732313a20617070726f766520746f2063616c6c657200000000000000604482015260640161073e565b3360008181526005602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b61132f33836117fd565b61134b5760405162461bcd60e51b815260040161073e90612720565b61135784848484611a91565b50505050565b60155460ff16156113a45760405162461bcd60e51b8152602060048201526011602482015270135a5b9d1a5b99c81a5cc81c185d5cd959607a1b604482015260640161073e565b601554610100900460ff166114075760405162461bcd60e51b815260206004820152602360248201527f57686974656c697374206d696e74696e672069736e277420616c6c6f776564206044820152621e595d60ea1b606482015260840161073e565b601454600e54111561142b5760405162461bcd60e51b815260040161073e906126b4565b600a546001600160a01b03163314610bde573360009081526016602052604090205460ff1661149c5760405162461bcd60e51b815260206004820152601a60248201527f53656e646572206973206e6f742077686974656c697374656421000000000000604482015260640161073e565b6017600033610b74565b600d8054610ff9906127e0565b6000818152600260205260409020546060906001600160a01b03166115325760405162461bcd60e51b815260206004820152602f60248201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60448201526e3732bc34b9ba32b73a103a37b5b2b760891b606482015260840161073e565b600061153c611ac4565b9050600081511161155c576040518060200160405280600081525061158a565b8061156684611ad3565b600d60405160200161157a9392919061250a565b6040516020818303038152906040525b9392505050565b600a546001600160a01b031633146115bb5760405162461bcd60e51b815260040161073e906126eb565b8051610cc290600d9060208401906120f9565b600b5460405163c455279160e01b81526001600160a01b03848116600483015260009281169190841690829063c45527919060240160206040518083038186803b15801561161b57600080fd5b505afa15801561162f573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611653919061245f565b6001600160a01b0316141561166c57600191505061070e565b6001600160a01b0380851660009081526005602090815260408083209387168352929052205460ff165b949350505050565b600a546001600160a01b031633146116c85760405162461bcd60e51b815260040161073e906126eb565b6001600160a01b03811661172d5760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b606482015260840161073e565b610c2b81611bd1565b80546001019055565b60006001600160e01b031982166380ac58cd60e01b148061177057506001600160e01b03198216635b5e139f60e01b145b8061070e57506301ffc9a760e01b6001600160e01b031983161461070e565b600081815260046020526040902080546001600160a01b0319166001600160a01b03841690811790915581906117c482610f75565b6001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b6000818152600260205260408120546001600160a01b03166118765760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b606482015260840161073e565b600061188183610f75565b9050806001600160a01b0316846001600160a01b031614806118bc5750836001600160a01b03166118b1846107ec565b6001600160a01b0316145b80611696575061169681856115ce565b826001600160a01b03166118df82610f75565b6001600160a01b0316146119475760405162461bcd60e51b815260206004820152602960248201527f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960448201526839903737ba1037bbb760b91b606482015260840161073e565b6001600160a01b0382166119a95760405162461bcd60e51b8152602060048201526024808201527f4552433732313a207472616e7366657220746f20746865207a65726f206164646044820152637265737360e01b606482015260840161073e565b6119b4838383611c23565b6119bf60008261178f565b6001600160a01b03831660009081526003602052604081208054600192906119e890849061279d565b90915550506001600160a01b0382166000908152600360205260408120805460019290611a16908490612771565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b0386811691821790925591518493918716917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef91a4505050565b610cc2828260405180602001604052806000815250611cdb565b611a9c8484846118cc565b611aa884848484611d0e565b6113575760405162461bcd60e51b815260040161073e90612662565b6060600c8054610769906127e0565b606081611af75750506040805180820190915260018152600360fc1b602082015290565b8160005b8115611b215780611b0b8161281b565b9150611b1a9050600a83612789565b9150611afb565b60008167ffffffffffffffff811115611b3c57611b3c6128a2565b6040519080825280601f01601f191660200182016040528015611b66576020820181803683370190505b5090505b841561169657611b7b60018361279d565b9150611b88600a86612836565b611b93906030612771565b60f81b818381518110611ba857611ba861288c565b60200101906001600160f81b031916908160001a905350611bca600a86612789565b9450611b6a565b600a80546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6001600160a01b038316611c7e57611c7981600880546000838152600960205260408120829055600182018355919091527ff3f7a9fe364faab93b216da50a3214154f22a0a2b415b23a84c8169e8b636ee30155565b611ca1565b816001600160a01b0316836001600160a01b031614611ca157611ca18382611e1b565b6001600160a01b038216611cb85761099281611eb8565b826001600160a01b0316826001600160a01b031614610992576109928282611f67565b611ce58383611fab565b611cf26000848484611d0e565b6109925760405162461bcd60e51b815260040161073e90612662565b60006001600160a01b0384163b15611e1057604051630a85bd0160e11b81526001600160a01b0385169063150b7a0290611d529033908990889088906004016125ce565b602060405180830381600087803b158015611d6c57600080fd5b505af1925050508015611d9c575060408051601f3d908101601f19168201909252611d9991810190612442565b60015b611df6573d808015611dca576040519150601f19603f3d011682016040523d82523d6000602084013e611dcf565b606091505b508051611dee5760405162461bcd60e51b815260040161073e90612662565b805181602001fd5b6001600160e01b031916630a85bd0160e11b149050611696565b506001949350505050565b60006001611e288461107a565b611e32919061279d565b600083815260076020526040902054909150808214611e85576001600160a01b03841660009081526006602090815260408083208584528252808320548484528184208190558352600790915290208190555b5060009182526007602090815260408084208490556001600160a01b039094168352600681528383209183525290812055565b600854600090611eca9060019061279d565b60008381526009602052604081205460088054939450909284908110611ef257611ef261288c565b906000526020600020015490508060088381548110611f1357611f1361288c565b6000918252602080832090910192909255828152600990915260408082208490558582528120556008805480611f4b57611f4b612876565b6001900381819060005260206000200160009055905550505050565b6000611f728361107a565b6001600160a01b039093166000908152600660209081526040808320868452825280832085905593825260079052919091209190915550565b6001600160a01b0382166120015760405162461bcd60e51b815260206004820181905260248201527f4552433732313a206d696e7420746f20746865207a65726f2061646472657373604482015260640161073e565b6000818152600260205260409020546001600160a01b0316156120665760405162461bcd60e51b815260206004820152601c60248201527f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000604482015260640161073e565b61207260008383611c23565b6001600160a01b038216600090815260036020526040812080546001929061209b908490612771565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b03861690811790915590518392907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a45050565b828054612105906127e0565b90600052602060002090601f016020900481019282612127576000855561216d565b82601f1061214057805160ff191683800117855561216d565b8280016001018555821561216d579182015b8281111561216d578251825591602001919060010190612152565b5061217992915061217d565b5090565b5b80821115612179576000815560010161217e565b600067ffffffffffffffff808411156121ad576121ad6128a2565b604051601f8501601f19908116603f011681019082821181831017156121d5576121d56128a2565b816040528093508581528686860111156121ee57600080fd5b858560208301376000602087830101525050509392505050565b8035801515811461221857600080fd5b919050565b60006020828403121561222f57600080fd5b813561158a816128b8565b6000806040838503121561224d57600080fd5b8235612258816128b8565b91506020830135612268816128b8565b809150509250929050565b60008060006060848603121561228857600080fd5b8335612293816128b8565b925060208401356122a3816128b8565b929592945050506040919091013590565b600080600080608085870312156122ca57600080fd5b84356122d5816128b8565b935060208501356122e5816128b8565b925060408501359150606085013567ffffffffffffffff81111561230857600080fd5b8501601f8101871361231957600080fd5b61232887823560208401612192565b91505092959194509250565b6000806040838503121561234757600080fd5b8235612352816128b8565b915061236060208401612208565b90509250929050565b6000806040838503121561237c57600080fd5b8235612387816128b8565b946020939093013593505050565b600080602083850312156123a857600080fd5b823567ffffffffffffffff808211156123c057600080fd5b818501915085601f8301126123d457600080fd5b8135818111156123e357600080fd5b8660208260051b85010111156123f857600080fd5b60209290920196919550909350505050565b60006020828403121561241c57600080fd5b61158a82612208565b60006020828403121561243757600080fd5b813561158a816128cd565b60006020828403121561245457600080fd5b815161158a816128cd565b60006020828403121561247157600080fd5b815161158a816128b8565b60006020828403121561248e57600080fd5b813567ffffffffffffffff8111156124a557600080fd5b8201601f810184136124b657600080fd5b61169684823560208401612192565b6000602082840312156124d757600080fd5b5035919050565b600081518084526124f68160208601602086016127b4565b601f01601f19169290920160200192915050565b60008451602061251d8285838a016127b4565b8551918401916125308184848a016127b4565b8554920191600090600181811c908083168061254d57607f831692505b85831081141561256b57634e487b7160e01b85526022600452602485fd5b80801561257f5760018114612590576125bd565b60ff198516885283880195506125bd565b60008b81526020902060005b858110156125b55781548a82015290840190880161259c565b505083880195505b50939b9a5050505050505050505050565b6001600160a01b0385811682528416602082015260408101839052608060608201819052600090612601908301846124de565b9695505050505050565b6020808252825182820181905260009190848201906040850190845b8181101561264357835183529284019291840191600101612627565b50909695505050505050565b60208152600061158a60208301846124de565b60208082526032908201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560408201527131b2b4bb32b91034b6b83632b6b2b73a32b960711b606082015260800190565b6020808252601f908201527f4d696e74696e6720776f756c6420657863656564206d617820737570706c7900604082015260600190565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b60208082526031908201527f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f6040820152701ddb995c881b9bdc88185c1c1c9bdd9959607a1b606082015260800190565b600082198211156127845761278461284a565b500190565b60008261279857612798612860565b500490565b6000828210156127af576127af61284a565b500390565b60005b838110156127cf5781810151838201526020016127b7565b838111156113575750506000910152565b600181811c908216806127f457607f821691505b6020821081141561281557634e487b7160e01b600052602260045260246000fd5b50919050565b600060001982141561282f5761282f61284a565b5060010190565b60008261284557612845612860565b500690565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052601260045260246000fd5b634e487b7160e01b600052603160045260246000fd5b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b6001600160a01b0381168114610c2b57600080fd5b6001600160e01b031981168114610c2b57600080fdfea264697066735822122029543e165c3dc0ee5eb56b183c3c4eab0a70050065d15f057d04f420b6987b9a64736f6c63430008070033

Deployed Bytecode Sourcemap

47021:3700:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;38377:224;;;;;;;;;;-1:-1:-1;38377:224:0;;;;;:::i;:::-;;:::i;:::-;;;9101:14:1;;9094:22;9076:41;;9064:2;9049:18;38377:224:0;;;;;;;;49988:73;;;;;;;;;;-1:-1:-1;49988:73:0;;;;;:::i;:::-;;:::i;:::-;;26269:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;27828:221::-;;;;;;;;;;-1:-1:-1;27828:221:0;;;;;:::i;:::-;;:::i;:::-;;;-1:-1:-1;;;;;7762:32:1;;;7744:51;;7732:2;7717:18;27828:221:0;7598:203:1;27351:411:0;;;;;;;;;;-1:-1:-1;27351:411:0;;;;;:::i;:::-;;:::i;50067:87::-;;;;;;;;;;;;;:::i;39017:113::-;;;;;;;;;;-1:-1:-1;39105:10:0;:17;39017:113;;;19698:25:1;;;19686:2;19671:18;39017:113:0;19552:177:1;28718:339:0;;;;;;;;;;-1:-1:-1;28718:339:0;;;;;:::i;:::-;;:::i;38685:256::-;;;;;;;;;;-1:-1:-1;38685:256:0;;;;;:::i;:::-;;:::i;48564:546::-;;;;;;;;;;-1:-1:-1;48564:546:0;;;;;:::i;:::-;;:::i;49266:197::-;;;;;;;;;;-1:-1:-1;49266:197:0;;;;;:::i;:::-;;:::i;50560:158::-;;;:::i;29128:185::-;;;;;;;;;;-1:-1:-1;29128:185:0;;;;;:::i;:::-;;:::i;45871:358::-;;;;;;;;;;-1:-1:-1;45871:358:0;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;49469:328::-;;;;;;;;;;-1:-1:-1;49469:328:0;;;;;:::i;:::-;;:::i;39207:233::-;;;;;;;;;;-1:-1:-1;39207:233:0;;;;;:::i;:::-;;:::i;47606:33::-;;;;;;;;;;-1:-1:-1;47606:33:0;;;;;;;;;;;46258:104;;;;;;;;;;-1:-1:-1;46258:104:0;;;;;:::i;:::-;;:::i;47535:26::-;;;;;;;;;;-1:-1:-1;47535:26:0;;;;;;;;25963:239;;;;;;;;;;-1:-1:-1;25963:239:0;;;;;:::i;:::-;;:::i;47566:35::-;;;;;;;;;;-1:-1:-1;47566:35:0;;;;;;;;;;;44871:21;;;;;;;;;;;;;:::i;25693:208::-;;;;;;;;;;-1:-1:-1;25693:208:0;;;;;:::i;:::-;;:::i;50437:117::-;;;;;;;;;;;;;:::i;49803:179::-;;;;;;;;;;-1:-1:-1;49803:179:0;;;;;:::i;:::-;;:::i;5317:87::-;;;;;;;;;;-1:-1:-1;5390:6:0;;-1:-1:-1;;;;;5390:6:0;5317:87;;50345:86;;;;;;;;;;;;;:::i;26438:104::-;;;;;;;;;;;;;:::i;28121:295::-;;;;;;;;;;-1:-1:-1;28121:295:0;;;;;:::i;:::-;;:::i;49116:128::-;;;;;;;;;;-1:-1:-1;49116:128:0;;;;;:::i;:::-;-1:-1:-1;;;;;49214:24:0;49194:4;49214:24;;;:9;:24;;;;;;;;;49116:128;29384:328;;;;;;;;;;-1:-1:-1;29384:328:0;;;;;:::i;:::-;;:::i;47928:630::-;;;;;;;;;;-1:-1:-1;47928:630:0;;;;;:::i;:::-;;:::i;44899:27::-;;;;;;;;;;;;;:::i;45460:403::-;;;;;;;;;;-1:-1:-1;45460:403:0;;;;;:::i;:::-;;:::i;47500:30::-;;;;;;;;;;;;;;;;46370:128;;;;;;;;;;-1:-1:-1;46370:128:0;;;;;:::i;:::-;;:::i;46612:402::-;;;;;;;;;;-1:-1:-1;46612:402:0;;;;;:::i;:::-;;:::i;6217:192::-;;;;;;;;;;-1:-1:-1;6217:192:0;;;;;:::i;:::-;;:::i;38377:224::-;38479:4;-1:-1:-1;;;;;;38503:50:0;;-1:-1:-1;;;38503:50:0;;:90;;;38557:36;38581:11;38557:23;:36::i;:::-;38496:97;38377:224;-1:-1:-1;;38377:224:0:o;49988:73::-;5390:6;;-1:-1:-1;;;;;5390:6:0;4185:10;5537:23;5529:68;;;;-1:-1:-1;;;5529:68:0;;;;;;;:::i;:::-;;;;;;;;;50040:6:::1;:15:::0;;-1:-1:-1;;50040:15:0::1;::::0;::::1;;::::0;;;::::1;::::0;;49988:73::o;26269:100::-;26323:13;26356:5;26349:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;26269:100;:::o;27828:221::-;27904:7;31311:16;;;:7;:16;;;;;;-1:-1:-1;;;;;31311:16:0;27924:73;;;;-1:-1:-1;;;27924:73:0;;15051:2:1;27924:73:0;;;15033:21:1;15090:2;15070:18;;;15063:30;15129:34;15109:18;;;15102:62;-1:-1:-1;;;15180:18:1;;;15173:42;15232:19;;27924:73:0;14849:408:1;27924:73:0;-1:-1:-1;28017:24:0;;;;:15;:24;;;;;;-1:-1:-1;;;;;28017:24:0;;27828:221::o;27351:411::-;27432:13;27448:23;27463:7;27448:14;:23::i;:::-;27432:39;;27496:5;-1:-1:-1;;;;;27490:11:0;:2;-1:-1:-1;;;;;27490:11:0;;;27482:57;;;;-1:-1:-1;;;27482:57:0;;16651:2:1;27482:57:0;;;16633:21:1;16690:2;16670:18;;;16663:30;16729:34;16709:18;;;16702:62;-1:-1:-1;;;16780:18:1;;;16773:31;16821:19;;27482:57:0;16449:397:1;27482:57:0;4185:10;-1:-1:-1;;;;;27574:21:0;;;;:62;;-1:-1:-1;27599:37:0;27616:5;4185:10;46612:402;:::i;27599:37::-;27552:168;;;;-1:-1:-1;;;27552:168:0;;13084:2:1;27552:168:0;;;13066:21:1;13123:2;13103:18;;;13096:30;13162:34;13142:18;;;13135:62;13233:26;13213:18;;;13206:54;13277:19;;27552:168:0;12882:420:1;27552:168:0;27733:21;27742:2;27746:7;27733:8;:21::i;:::-;27421:341;27351:411;;:::o;50067:87::-;5390:6;;-1:-1:-1;;;;;5390:6:0;4185:10;5537:23;5529:68;;;;-1:-1:-1;;;5529:68:0;;;;;;;:::i;:::-;50125:16:::1;:23:::0;;-1:-1:-1;;50125:23:0::1;;;::::0;;50067:87::o;28718:339::-;28913:41;4185:10;28946:7;28913:18;:41::i;:::-;28905:103;;;;-1:-1:-1;;;28905:103:0;;;;;;;:::i;:::-;29021:28;29031:4;29037:2;29041:7;29021:9;:28::i;38685:256::-;38782:7;38818:23;38835:5;38818:16;:23::i;:::-;38810:5;:31;38802:87;;;;-1:-1:-1;;;38802:87:0;;9957:2:1;38802:87:0;;;9939:21:1;9996:2;9976:18;;;9969:30;10035:34;10015:18;;;10008:62;-1:-1:-1;;;10086:18:1;;;10079:41;10137:19;;38802:87:0;9755:407:1;38802:87:0;-1:-1:-1;;;;;;38907:19:0;;;;;;;;:12;:19;;;;;;;;:26;;;;;;;;;38685:256::o;48564:546::-;48629:6;;;;48628:7;48620:37;;;;-1:-1:-1;;;48620:37:0;;17875:2:1;48620:37:0;;;17857:21:1;17914:2;17894:18;;;17887:30;-1:-1:-1;;;17933:18:1;;;17926:47;17990:18;;48620:37:0;17673:341:1;48620:37:0;48672:13;;;;;;;48664:54;;;;-1:-1:-1;;;48664:54:0;;18634:2:1;48664:54:0;;;18616:21:1;18673:2;18653:18;;;18646:30;18712;18692:18;;;18685:58;18760:18;;48664:54:0;18432:352:1;48664:54:0;48762:9;;48733:15;909:14;48733:38;;48725:82;;;;-1:-1:-1;;;48725:82:0;;;;;;;:::i;:::-;5390:6;;-1:-1:-1;;;;;5390:6:0;48818:10;:21;48814:116;;48859:13;:27;4185:10;48873:12;-1:-1:-1;;;;;48859:27:0;;;;;;;;;;;;-1:-1:-1;48859:27:0;;;;48858:28;48850:72;;;;-1:-1:-1;;;48850:72:0;;11552:2:1;48850:72:0;;;11534:21:1;11591:2;11571:18;;;11564:30;11630:33;11610:18;;;11603:61;11681:18;;48850:72:0;11350:355:1;48850:72:0;48938:48;48948:10;48960:25;:15;909:14;;817:114;48960:25;48938:9;:48::i;:::-;48993:27;:15;1028:19;;1046:1;1028:19;;;939:127;48993:27;5390:6;;-1:-1:-1;;;;;5390:6:0;49031:10;:21;49027:78;;4185:10;49063:27;;;;:13;:27;;;;;:34;;-1:-1:-1;;49063:34:0;49093:4;49063:34;;;49027:78;48564:546;:::o;49266:197::-;5390:6;;-1:-1:-1;;;;;5390:6:0;4185:10;5537:23;5529:68;;;;-1:-1:-1;;;5529:68:0;;;;;;;:::i;:::-;49370:3:::1;49359:8;:14;49351:66;;;::::0;-1:-1:-1;;;49351:66:0;;19346:2:1;49351:66:0::1;::::0;::::1;19328:21:1::0;19385:2;19365:18;;;19358:30;19424:34;19404:18;;;19397:62;-1:-1:-1;;;19475:18:1;;;19468:37;19522:19;;49351:66:0::1;19144:403:1::0;49351:66:0::1;49426:31;49436:10;49448:8;49426:9;:31::i;:::-;49266:197:::0;;:::o;50560:158::-;5390:6;;-1:-1:-1;;;;;5390:6:0;4185:10;5537:23;5529:68;;;;-1:-1:-1;;;5529:68:0;;;;;;;:::i;:::-;50631:58:::1;::::0;50613:12:::1;::::0;50639:10:::1;::::0;50663:21:::1;::::0;50613:12;50631:58;50613:12;50631:58;50663:21;50639:10;50631:58:::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;50612:77;;;50704:7;50696:16;;;::::0;::::1;29128:185:::0;29266:39;29283:4;29289:2;29293:7;29266:39;;;;;;;;;;;;:16;:39::i;45871:358::-;45931:16;45960:23;45986:17;45996:6;45986:9;:17::i;:::-;45960:43;;46014:25;46056:15;46042:30;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;46042:30:0;;46014:58;;46088:9;46083:113;46103:15;46099:1;:19;46083:113;;;46154:30;46174:6;46182:1;46154:19;:30::i;:::-;46140:8;46149:1;46140:11;;;;;;;;:::i;:::-;;;;;;;;;;:44;46120:3;;;;:::i;:::-;;;;46083:113;;;-1:-1:-1;46213:8:0;45871:358;-1:-1:-1;;;45871:358:0:o;49469:328::-;5390:6;;-1:-1:-1;;;;;5390:6:0;4185:10;5537:23;5529:68;;;;-1:-1:-1;;;5529:68:0;;;;;;;:::i;:::-;49600:9:::1;;49590:6;49586:1;49558:25;:15;909:14:::0;;817:114;49558:25:::1;:29;;;;:::i;:::-;:38;;;;:::i;:::-;:51;;49550:95;;;;-1:-1:-1::0;;;49550:95:0::1;;;;;;;:::i;:::-;49659:9;49654:138;49678:6;49674:1;:10;49654:138;;;49700:48;49710:10;49722:25;:15;909:14:::0;;817:114;49700:48:::1;49757:27;:15;1028:19:::0;;1046:1;1028:19;;;939:127;49757:27:::1;49686:3:::0;::::1;::::0;::::1;:::i;:::-;;;;49654:138;;39207:233:::0;39282:7;39318:30;39105:10;:17;;39017:113;39318:30;39310:5;:38;39302:95;;;;-1:-1:-1;;;39302:95:0;;18221:2:1;39302:95:0;;;18203:21:1;18260:2;18240:18;;;18233:30;18299:34;18279:18;;;18272:62;-1:-1:-1;;;18350:18:1;;;18343:42;18402:19;;39302:95:0;18019:408:1;39302:95:0;39415:10;39426:5;39415:17;;;;;;;;:::i;:::-;;;;;;;;;39408:24;;39207:233;;;:::o;46258:104::-;5390:6;;-1:-1:-1;;;;;5390:6:0;4185:10;5537:23;5529:68;;;;-1:-1:-1;;;5529:68:0;;;;;;;:::i;:::-;46333:21;;::::1;::::0;:7:::1;::::0;:21:::1;::::0;::::1;::::0;::::1;:::i;25963:239::-:0;26035:7;26071:16;;;:7;:16;;;;;;-1:-1:-1;;;;;26071:16:0;26106:19;26098:73;;;;-1:-1:-1;;;26098:73:0;;13920:2:1;26098:73:0;;;13902:21:1;13959:2;13939:18;;;13932:30;13998:34;13978:18;;;13971:62;-1:-1:-1;;;14049:18:1;;;14042:39;14098:19;;26098:73:0;13718:405:1;44871:21:0;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;25693:208::-;25765:7;-1:-1:-1;;;;;25793:19:0;;25785:74;;;;-1:-1:-1;;;25785:74:0;;13509:2:1;25785:74:0;;;13491:21:1;13548:2;13528:18;;;13521:30;13587:34;13567:18;;;13560:62;-1:-1:-1;;;13638:18:1;;;13631:40;13688:19;;25785:74:0;13307:406:1;25785:74:0;-1:-1:-1;;;;;;25877:16:0;;;;;:9;:16;;;;;;;25693:208::o;50437:117::-;5390:6;;-1:-1:-1;;;;;5390:6:0;4185:10;5537:23;5529:68;;;;-1:-1:-1;;;5529:68:0;;;;;;;:::i;:::-;50504:44:::1;::::0;-1:-1:-1;;;50504:44:0;;9554:2:1;50504:44:0::1;::::0;::::1;9536:21:1::0;9593:2;9573:18;;;9566:30;9632:34;9612:18;;;9605:62;-1:-1:-1;;;9683:18:1;;;9676:32;9725:19;;50504:44:0::1;9352:398:1::0;49803:179:0;5390:6;;-1:-1:-1;;;;;5390:6:0;4185:10;5537:23;5529:68;;;;-1:-1:-1;;;5529:68:0;;;;;;;:::i;:::-;49889:6:::1;49884:93;49899:21:::0;;::::1;49884:93;;;49965:4;49936:9;:26;49946:12;;49959:1;49946:15;;;;;;;:::i;:::-;;;;;;;;;;;;;;:::i;:::-;-1:-1:-1::0;;;;;49936:26:0::1;::::0;;::::1;::::0;::::1;::::0;;;;;;-1:-1:-1;49936:26:0;:33;;-1:-1:-1;;49936:33:0::1;::::0;::::1;;::::0;;;::::1;::::0;;49922:3;::::1;::::0;::::1;:::i;:::-;;;;49884:93;;50345:86:::0;5390:6;;-1:-1:-1;;;;;5390:6:0;4185:10;5537:23;5529:68;;;;-1:-1:-1;;;5529:68:0;;;;;;;:::i;:::-;50401:16:::1;:24:::0;;-1:-1:-1;;50401:24:0::1;::::0;;50345:86::o;26438:104::-;26494:13;26527:7;26520:14;;;;;:::i;28121:295::-;-1:-1:-1;;;;;28224:24:0;;4185:10;28224:24;;28216:62;;;;-1:-1:-1;;;28216:62:0;;12317:2:1;28216:62:0;;;12299:21:1;12356:2;12336:18;;;12329:30;12395:27;12375:18;;;12368:55;12440:18;;28216:62:0;12115:349:1;28216:62:0;4185:10;28291:32;;;;:18;:32;;;;;;;;-1:-1:-1;;;;;28291:42:0;;;;;;;;;;;;:53;;-1:-1:-1;;28291:53:0;;;;;;;;;;28360:48;;9076:41:1;;;28291:42:0;;4185:10;28360:48;;9049:18:1;28360:48:0;;;;;;;28121:295;;:::o;29384:328::-;29559:41;4185:10;29592:7;29559:18;:41::i;:::-;29551:103;;;;-1:-1:-1;;;29551:103:0;;;;;;;:::i;:::-;29665:39;29679:4;29685:2;29689:7;29698:5;29665:13;:39::i;:::-;29384:328;;;;:::o;47928:630::-;47996:6;;;;47995:7;47987:37;;;;-1:-1:-1;;;47987:37:0;;17875:2:1;47987:37:0;;;17857:21:1;17914:2;17894:18;;;17887:30;-1:-1:-1;;;17933:18:1;;;17926:47;17990:18;;47987:37:0;17673:341:1;47987:37:0;48039:16;;;;;;;48031:64;;;;-1:-1:-1;;;48031:64:0;;17053:2:1;48031:64:0;;;17035:21:1;17092:2;17072:18;;;17065:30;17131:34;17111:18;;;17104:62;-1:-1:-1;;;17182:18:1;;;17175:33;17225:19;;48031:64:0;16851:399:1;48031:64:0;48139:9;;48110:15;909:14;48110:38;;48102:82;;;;-1:-1:-1;;;48102:82:0;;;;;;;:::i;:::-;5390:6;;-1:-1:-1;;;;;5390:6:0;48195:10;:21;48191:187;;4185:10;48235:23;;;;:9;:23;;;;;;;;48227:62;;;;-1:-1:-1;;;48227:62:0;;18991:2:1;48227:62:0;;;18973:21:1;19030:2;19010:18;;;19003:30;19069:28;19049:18;;;19042:56;19115:18;;48227:62:0;18789:350:1;48227:62:0;48307:13;:27;4185:10;48321:12;4105:98;44899:27;;;;;;;:::i;45460:403::-;31287:4;31311:16;;;:7;:16;;;;;;45534:13;;-1:-1:-1;;;;;31311:16:0;45560:77;;;;-1:-1:-1;;;45560:77:0;;16235:2:1;45560:77:0;;;16217:21:1;16274:2;16254:18;;;16247:30;16313:34;16293:18;;;16286:62;-1:-1:-1;;;16364:18:1;;;16357:45;16419:19;;45560:77:0;16033:411:1;45560:77:0;45654:28;45685:10;:8;:10::i;:::-;45654:41;;45744:1;45719:14;45713:28;:32;:142;;;;;;;;;;;;;;;;;45785:14;45801:19;:8;:17;:19::i;:::-;45822:13;45768:68;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;45713:142;45706:149;45460:403;-1:-1:-1;;;45460:403:0:o;46370:128::-;5390:6;;-1:-1:-1;;;;;5390:6:0;4185:10;5537:23;5529:68;;;;-1:-1:-1;;;5529:68:0;;;;;;;:::i;:::-;46457:33;;::::1;::::0;:13:::1;::::0;:33:::1;::::0;::::1;::::0;::::1;:::i;46612:402::-:0;46825:20;;46869:28;;-1:-1:-1;;;46869:28:0;;-1:-1:-1;;;;;7762:32:1;;;46869:28:0;;;7744:51:1;46701:4:0;;46825:20;;;46861:49;;;;46825:20;;46869:21;;7717:18:1;;46869:28:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;-1:-1:-1;;;;;46861:49:0;;46857:93;;;46934:4;46927:11;;;;;46857:93;-1:-1:-1;;;;;28608:25:0;;;28584:4;28608:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;46967:39;46960:46;46612:402;-1:-1:-1;;;;46612:402:0:o;6217:192::-;5390:6;;-1:-1:-1;;;;;5390:6:0;4185:10;5537:23;5529:68;;;;-1:-1:-1;;;5529:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;6306:22:0;::::1;6298:73;;;::::0;-1:-1:-1;;;6298:73:0;;10788:2:1;6298:73:0::1;::::0;::::1;10770:21:1::0;10827:2;10807:18;;;10800:30;10866:34;10846:18;;;10839:62;-1:-1:-1;;;10917:18:1;;;10910:36;10963:19;;6298:73:0::1;10586:402:1::0;6298:73:0::1;6382:19;6392:8;6382:9;:19::i;939:127::-:0;1028:19;;1046:1;1028:19;;;939:127::o;25324:305::-;25426:4;-1:-1:-1;;;;;;25463:40:0;;-1:-1:-1;;;25463:40:0;;:105;;-1:-1:-1;;;;;;;25520:48:0;;-1:-1:-1;;;25520:48:0;25463:105;:158;;;-1:-1:-1;;;;;;;;;;17412:40:0;;;25585:36;17303:157;35204:174;35279:24;;;;:15;:24;;;;;:29;;-1:-1:-1;;;;;;35279:29:0;-1:-1:-1;;;;;35279:29:0;;;;;;;;:24;;35333:23;35279:24;35333:14;:23::i;:::-;-1:-1:-1;;;;;35324:46:0;;;;;;;;;;;35204:174;;:::o;31516:348::-;31609:4;31311:16;;;:7;:16;;;;;;-1:-1:-1;;;;;31311:16:0;31626:73;;;;-1:-1:-1;;;31626:73:0;;12671:2:1;31626:73:0;;;12653:21:1;12710:2;12690:18;;;12683:30;12749:34;12729:18;;;12722:62;-1:-1:-1;;;12800:18:1;;;12793:42;12852:19;;31626:73:0;12469:408:1;31626:73:0;31710:13;31726:23;31741:7;31726:14;:23::i;:::-;31710:39;;31779:5;-1:-1:-1;;;;;31768:16:0;:7;-1:-1:-1;;;;;31768:16:0;;:51;;;;31812:7;-1:-1:-1;;;;;31788:31:0;:20;31800:7;31788:11;:20::i;:::-;-1:-1:-1;;;;;31788:31:0;;31768:51;:87;;;;31823:32;31840:5;31847:7;31823:16;:32::i;34508:578::-;34667:4;-1:-1:-1;;;;;34640:31:0;:23;34655:7;34640:14;:23::i;:::-;-1:-1:-1;;;;;34640:31:0;;34632:85;;;;-1:-1:-1;;;34632:85:0;;15825:2:1;34632:85:0;;;15807:21:1;15864:2;15844:18;;;15837:30;15903:34;15883:18;;;15876:62;-1:-1:-1;;;15954:18:1;;;15947:39;16003:19;;34632:85:0;15623:405:1;34632:85:0;-1:-1:-1;;;;;34736:16:0;;34728:65;;;;-1:-1:-1;;;34728:65:0;;11912:2:1;34728:65:0;;;11894:21:1;11951:2;11931:18;;;11924:30;11990:34;11970:18;;;11963:62;-1:-1:-1;;;12041:18:1;;;12034:34;12085:19;;34728:65:0;11710:400:1;34728:65:0;34806:39;34827:4;34833:2;34837:7;34806:20;:39::i;:::-;34910:29;34927:1;34931:7;34910:8;:29::i;:::-;-1:-1:-1;;;;;34952:15:0;;;;;;:9;:15;;;;;:20;;34971:1;;34952:15;:20;;34971:1;;34952:20;:::i;:::-;;;;-1:-1:-1;;;;;;;34983:13:0;;;;;;:9;:13;;;;;:18;;35000:1;;34983:13;:18;;35000:1;;34983:18;:::i;:::-;;;;-1:-1:-1;;35012:16:0;;;;:7;:16;;;;;;:21;;-1:-1:-1;;;;;;35012:21:0;-1:-1:-1;;;;;35012:21:0;;;;;;;;;35051:27;;35012:16;;35051:27;;;;;;;34508:578;;;:::o;32206:110::-;32282:26;32292:2;32296:7;32282:26;;;;;;;;;;;;:9;:26::i;30594:315::-;30751:28;30761:4;30767:2;30771:7;30751:9;:28::i;:::-;30798:48;30821:4;30827:2;30831:7;30840:5;30798:22;:48::i;:::-;30790:111;;;;-1:-1:-1;;;30790:111:0;;;;;;;:::i;45329:108::-;45389:13;45422:7;45415:14;;;;;:::i;1721:723::-;1777:13;1998:10;1994:53;;-1:-1:-1;;2025:10:0;;;;;;;;;;;;-1:-1:-1;;;2025:10:0;;;;;1721:723::o;1994:53::-;2072:5;2057:12;2113:78;2120:9;;2113:78;;2146:8;;;;:::i;:::-;;-1:-1:-1;2169:10:0;;-1:-1:-1;2177:2:0;2169:10;;:::i;:::-;;;2113:78;;;2201:19;2233:6;2223:17;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;2223:17:0;;2201:39;;2251:154;2258:10;;2251:154;;2285:11;2295:1;2285:11;;:::i;:::-;;-1:-1:-1;2354:10:0;2362:2;2354:5;:10;:::i;:::-;2341:24;;:2;:24;:::i;:::-;2328:39;;2311:6;2318;2311:14;;;;;;;;:::i;:::-;;;;:56;-1:-1:-1;;;;;2311:56:0;;;;;;;;-1:-1:-1;2382:11:0;2391:2;2382:11;;:::i;:::-;;;2251:154;;6417:173;6492:6;;;-1:-1:-1;;;;;6509:17:0;;;-1:-1:-1;;;;;;6509:17:0;;;;;;;6542:40;;6492:6;;;6509:17;6492:6;;6542:40;;6473:16;;6542:40;6462:128;6417:173;:::o;40053:589::-;-1:-1:-1;;;;;40259:18:0;;40255:187;;40294:40;40326:7;41469:10;:17;;41442:24;;;;:15;:24;;;;;:44;;;41497:24;;;;;;;;;;;;41365:164;40294:40;40255:187;;;40364:2;-1:-1:-1;;;;;40356:10:0;:4;-1:-1:-1;;;;;40356:10:0;;40352:90;;40383:47;40416:4;40422:7;40383:32;:47::i;:::-;-1:-1:-1;;;;;40456:16:0;;40452:183;;40489:45;40526:7;40489:36;:45::i;40452:183::-;40562:4;-1:-1:-1;;;;;40556:10:0;:2;-1:-1:-1;;;;;40556:10:0;;40552:83;;40583:40;40611:2;40615:7;40583:27;:40::i;32543:321::-;32673:18;32679:2;32683:7;32673:5;:18::i;:::-;32724:54;32755:1;32759:2;32763:7;32772:5;32724:22;:54::i;:::-;32702:154;;;;-1:-1:-1;;;32702:154:0;;;;;;;:::i;35943:799::-;36098:4;-1:-1:-1;;;;;36119:13:0;;7686:20;7734:8;36115:620;;36155:72;;-1:-1:-1;;;36155:72:0;;-1:-1:-1;;;;;36155:36:0;;;;;:72;;4185:10;;36206:4;;36212:7;;36221:5;;36155:72;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;36155:72:0;;;;;;;;-1:-1:-1;;36155:72:0;;;;;;;;;;;;:::i;:::-;;;36151:529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;36397:13:0;;36393:272;;36440:60;;-1:-1:-1;;;36440:60:0;;;;;;;:::i;36393:272::-;36615:6;36609:13;36600:6;36596:2;36592:15;36585:38;36151:529;-1:-1:-1;;;;;;36278:51:0;-1:-1:-1;;;36278:51:0;;-1:-1:-1;36271:58:0;;36115:620;-1:-1:-1;36719:4:0;35943:799;;;;;;:::o;42156:988::-;42422:22;42472:1;42447:22;42464:4;42447:16;:22::i;:::-;:26;;;;:::i;:::-;42484:18;42505:26;;;:17;:26;;;;;;42422:51;;-1:-1:-1;42638:28:0;;;42634:328;;-1:-1:-1;;;;;42705:18:0;;42683:19;42705:18;;;:12;:18;;;;;;;;:34;;;;;;;;;42756:30;;;;;;:44;;;42873:30;;:17;:30;;;;;:43;;;42634:328;-1:-1:-1;43058:26:0;;;;:17;:26;;;;;;;;43051:33;;;-1:-1:-1;;;;;43102:18:0;;;;;:12;:18;;;;;:34;;;;;;;43095:41;42156:988::o;43439:1079::-;43717:10;:17;43692:22;;43717:21;;43737:1;;43717:21;:::i;:::-;43749:18;43770:24;;;:15;:24;;;;;;44143:10;:26;;43692:46;;-1:-1:-1;43770:24:0;;43692:46;;44143:26;;;;;;:::i;:::-;;;;;;;;;44121:48;;44207:11;44182:10;44193;44182:22;;;;;;;;:::i;:::-;;;;;;;;;;;;:36;;;;44287:28;;;:15;:28;;;;;;;:41;;;44459:24;;;;;44452:31;44494:10;:16;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;43510:1008;;;43439:1079;:::o;40943:221::-;41028:14;41045:20;41062:2;41045:16;:20::i;:::-;-1:-1:-1;;;;;41076:16:0;;;;;;;:12;:16;;;;;;;;:24;;;;;;;;:34;;;41121:26;;;:17;:26;;;;;;:35;;;;-1:-1:-1;40943:221:0:o;33200:382::-;-1:-1:-1;;;;;33280:16:0;;33272:61;;;;-1:-1:-1;;;33272:61:0;;14690:2:1;33272:61:0;;;14672:21:1;;;14709:18;;;14702:30;14768:34;14748:18;;;14741:62;14820:18;;33272:61:0;14488:356:1;33272:61:0;31287:4;31311:16;;;:7;:16;;;;;;-1:-1:-1;;;;;31311:16:0;:30;33344:58;;;;-1:-1:-1;;;33344:58:0;;11195:2:1;33344:58:0;;;11177:21:1;11234:2;11214:18;;;11207:30;11273;11253:18;;;11246:58;11321:18;;33344:58:0;10993:352:1;33344:58:0;33415:45;33444:1;33448:2;33452:7;33415:20;:45::i;:::-;-1:-1:-1;;;;;33473:13:0;;;;;;:9;:13;;;;;:18;;33490:1;;33473:13;:18;;33490:1;;33473:18;:::i;:::-;;;;-1:-1:-1;;33502:16:0;;;;:7;:16;;;;;;:21;;-1:-1:-1;;;;;;33502:21:0;-1:-1:-1;;;;;33502:21:0;;;;;;;;33541:33;;33502:16;;;33541:33;;33502:16;;33541:33;33200:382;;:::o;-1:-1:-1:-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;;;;;;;;;14:631:1;78:5;108:18;149:2;141:6;138:14;135:40;;;155:18;;:::i;:::-;230:2;224:9;198:2;284:15;;-1:-1:-1;;280:24:1;;;306:2;276:33;272:42;260:55;;;330:18;;;350:22;;;327:46;324:72;;;376:18;;:::i;:::-;416:10;412:2;405:22;445:6;436:15;;475:6;467;460:22;515:3;506:6;501:3;497:16;494:25;491:45;;;532:1;529;522:12;491:45;582:6;577:3;570:4;562:6;558:17;545:44;637:1;630:4;621:6;613;609:19;605:30;598:41;;;;14:631;;;;;:::o;650:160::-;715:20;;771:13;;764:21;754:32;;744:60;;800:1;797;790:12;744:60;650:160;;;:::o;815:247::-;874:6;927:2;915:9;906:7;902:23;898:32;895:52;;;943:1;940;933:12;895:52;982:9;969:23;1001:31;1026:5;1001:31;:::i;1067:388::-;1135:6;1143;1196:2;1184:9;1175:7;1171:23;1167:32;1164:52;;;1212:1;1209;1202:12;1164:52;1251:9;1238:23;1270:31;1295:5;1270:31;:::i;:::-;1320:5;-1:-1:-1;1377:2:1;1362:18;;1349:32;1390:33;1349:32;1390:33;:::i;:::-;1442:7;1432:17;;;1067:388;;;;;:::o;1460:456::-;1537:6;1545;1553;1606:2;1594:9;1585:7;1581:23;1577:32;1574:52;;;1622:1;1619;1612:12;1574:52;1661:9;1648:23;1680:31;1705:5;1680:31;:::i;:::-;1730:5;-1:-1:-1;1787:2:1;1772:18;;1759:32;1800:33;1759:32;1800:33;:::i;:::-;1460:456;;1852:7;;-1:-1:-1;;;1906:2:1;1891:18;;;;1878:32;;1460:456::o;1921:794::-;2016:6;2024;2032;2040;2093:3;2081:9;2072:7;2068:23;2064:33;2061:53;;;2110:1;2107;2100:12;2061:53;2149:9;2136:23;2168:31;2193:5;2168:31;:::i;:::-;2218:5;-1:-1:-1;2275:2:1;2260:18;;2247:32;2288:33;2247:32;2288:33;:::i;:::-;2340:7;-1:-1:-1;2394:2:1;2379:18;;2366:32;;-1:-1:-1;2449:2:1;2434:18;;2421:32;2476:18;2465:30;;2462:50;;;2508:1;2505;2498:12;2462:50;2531:22;;2584:4;2576:13;;2572:27;-1:-1:-1;2562:55:1;;2613:1;2610;2603:12;2562:55;2636:73;2701:7;2696:2;2683:16;2678:2;2674;2670:11;2636:73;:::i;:::-;2626:83;;;1921:794;;;;;;;:::o;2720:315::-;2785:6;2793;2846:2;2834:9;2825:7;2821:23;2817:32;2814:52;;;2862:1;2859;2852:12;2814:52;2901:9;2888:23;2920:31;2945:5;2920:31;:::i;:::-;2970:5;-1:-1:-1;2994:35:1;3025:2;3010:18;;2994:35;:::i;:::-;2984:45;;2720:315;;;;;:::o;3040:::-;3108:6;3116;3169:2;3157:9;3148:7;3144:23;3140:32;3137:52;;;3185:1;3182;3175:12;3137:52;3224:9;3211:23;3243:31;3268:5;3243:31;:::i;:::-;3293:5;3345:2;3330:18;;;;3317:32;;-1:-1:-1;;;3040:315:1:o;3360:615::-;3446:6;3454;3507:2;3495:9;3486:7;3482:23;3478:32;3475:52;;;3523:1;3520;3513:12;3475:52;3563:9;3550:23;3592:18;3633:2;3625:6;3622:14;3619:34;;;3649:1;3646;3639:12;3619:34;3687:6;3676:9;3672:22;3662:32;;3732:7;3725:4;3721:2;3717:13;3713:27;3703:55;;3754:1;3751;3744:12;3703:55;3794:2;3781:16;3820:2;3812:6;3809:14;3806:34;;;3836:1;3833;3826:12;3806:34;3889:7;3884:2;3874:6;3871:1;3867:14;3863:2;3859:23;3855:32;3852:45;3849:65;;;3910:1;3907;3900:12;3849:65;3941:2;3933:11;;;;;3963:6;;-1:-1:-1;3360:615:1;;-1:-1:-1;;;;3360:615:1:o;3980:180::-;4036:6;4089:2;4077:9;4068:7;4064:23;4060:32;4057:52;;;4105:1;4102;4095:12;4057:52;4128:26;4144:9;4128:26;:::i;4165:245::-;4223:6;4276:2;4264:9;4255:7;4251:23;4247:32;4244:52;;;4292:1;4289;4282:12;4244:52;4331:9;4318:23;4350:30;4374:5;4350:30;:::i;4415:249::-;4484:6;4537:2;4525:9;4516:7;4512:23;4508:32;4505:52;;;4553:1;4550;4543:12;4505:52;4585:9;4579:16;4604:30;4628:5;4604:30;:::i;4669:280::-;4768:6;4821:2;4809:9;4800:7;4796:23;4792:32;4789:52;;;4837:1;4834;4827:12;4789:52;4869:9;4863:16;4888:31;4913:5;4888:31;:::i;4954:450::-;5023:6;5076:2;5064:9;5055:7;5051:23;5047:32;5044:52;;;5092:1;5089;5082:12;5044:52;5132:9;5119:23;5165:18;5157:6;5154:30;5151:50;;;5197:1;5194;5187:12;5151:50;5220:22;;5273:4;5265:13;;5261:27;-1:-1:-1;5251:55:1;;5302:1;5299;5292:12;5251:55;5325:73;5390:7;5385:2;5372:16;5367:2;5363;5359:11;5325:73;:::i;5409:180::-;5468:6;5521:2;5509:9;5500:7;5496:23;5492:32;5489:52;;;5537:1;5534;5527:12;5489:52;-1:-1:-1;5560:23:1;;5409:180;-1:-1:-1;5409:180:1:o;5594:257::-;5635:3;5673:5;5667:12;5700:6;5695:3;5688:19;5716:63;5772:6;5765:4;5760:3;5756:14;5749:4;5742:5;5738:16;5716:63;:::i;:::-;5833:2;5812:15;-1:-1:-1;;5808:29:1;5799:39;;;;5840:4;5795:50;;5594:257;-1:-1:-1;;5594:257:1:o;5856:1527::-;6080:3;6118:6;6112:13;6144:4;6157:51;6201:6;6196:3;6191:2;6183:6;6179:15;6157:51;:::i;:::-;6271:13;;6230:16;;;;6293:55;6271:13;6230:16;6315:15;;;6293:55;:::i;:::-;6437:13;;6370:20;;;6410:1;;6497;6519:18;;;;6572;;;;6599:93;;6677:4;6667:8;6663:19;6651:31;;6599:93;6740:2;6730:8;6727:16;6707:18;6704:40;6701:167;;;-1:-1:-1;;;6767:33:1;;6823:4;6820:1;6813:15;6853:4;6774:3;6841:17;6701:167;6884:18;6911:110;;;;7035:1;7030:328;;;;6877:481;;6911:110;-1:-1:-1;;6946:24:1;;6932:39;;6991:20;;;;-1:-1:-1;6911:110:1;;7030:328;19807:1;19800:14;;;19844:4;19831:18;;7125:1;7139:169;7153:8;7150:1;7147:15;7139:169;;;7235:14;;7220:13;;;7213:37;7278:16;;;;7170:10;;7139:169;;;7143:3;;7339:8;7332:5;7328:20;7321:27;;6877:481;-1:-1:-1;7374:3:1;;5856:1527;-1:-1:-1;;;;;;;;;;;5856:1527:1:o;7806:488::-;-1:-1:-1;;;;;8075:15:1;;;8057:34;;8127:15;;8122:2;8107:18;;8100:43;8174:2;8159:18;;8152:34;;;8222:3;8217:2;8202:18;;8195:31;;;8000:4;;8243:45;;8268:19;;8260:6;8243:45;:::i;:::-;8235:53;7806:488;-1:-1:-1;;;;;;7806:488:1:o;8299:632::-;8470:2;8522:21;;;8592:13;;8495:18;;;8614:22;;;8441:4;;8470:2;8693:15;;;;8667:2;8652:18;;;8441:4;8736:169;8750:6;8747:1;8744:13;8736:169;;;8811:13;;8799:26;;8880:15;;;;8845:12;;;;8772:1;8765:9;8736:169;;;-1:-1:-1;8922:3:1;;8299:632;-1:-1:-1;;;;;;8299:632:1:o;9128:219::-;9277:2;9266:9;9259:21;9240:4;9297:44;9337:2;9326:9;9322:18;9314:6;9297:44;:::i;10167:414::-;10369:2;10351:21;;;10408:2;10388:18;;;10381:30;10447:34;10442:2;10427:18;;10420:62;-1:-1:-1;;;10513:2:1;10498:18;;10491:48;10571:3;10556:19;;10167:414::o;14128:355::-;14330:2;14312:21;;;14369:2;14349:18;;;14342:30;14408:33;14403:2;14388:18;;14381:61;14474:2;14459:18;;14128:355::o;15262:356::-;15464:2;15446:21;;;15483:18;;;15476:30;15542:34;15537:2;15522:18;;15515:62;15609:2;15594:18;;15262:356::o;17255:413::-;17457:2;17439:21;;;17496:2;17476:18;;;17469:30;17535:34;17530:2;17515:18;;17508:62;-1:-1:-1;;;17601:2:1;17586:18;;17579:47;17658:3;17643:19;;17255:413::o;19860:128::-;19900:3;19931:1;19927:6;19924:1;19921:13;19918:39;;;19937:18;;:::i;:::-;-1:-1:-1;19973:9:1;;19860:128::o;19993:120::-;20033:1;20059;20049:35;;20064:18;;:::i;:::-;-1:-1:-1;20098:9:1;;19993:120::o;20118:125::-;20158:4;20186:1;20183;20180:8;20177:34;;;20191:18;;:::i;:::-;-1:-1:-1;20228:9:1;;20118:125::o;20248:258::-;20320:1;20330:113;20344:6;20341:1;20338:13;20330:113;;;20420:11;;;20414:18;20401:11;;;20394:39;20366:2;20359:10;20330:113;;;20461:6;20458:1;20455:13;20452:48;;;-1:-1:-1;;20496:1:1;20478:16;;20471:27;20248:258::o;20511:380::-;20590:1;20586:12;;;;20633;;;20654:61;;20708:4;20700:6;20696:17;20686:27;;20654:61;20761:2;20753:6;20750:14;20730:18;20727:38;20724:161;;;20807:10;20802:3;20798:20;20795:1;20788:31;20842:4;20839:1;20832:15;20870:4;20867:1;20860:15;20724:161;;20511:380;;;:::o;20896:135::-;20935:3;-1:-1:-1;;20956:17:1;;20953:43;;;20976:18;;:::i;:::-;-1:-1:-1;21023:1:1;21012:13;;20896:135::o;21036:112::-;21068:1;21094;21084:35;;21099:18;;:::i;:::-;-1:-1:-1;21133:9:1;;21036:112::o;21153:127::-;21214:10;21209:3;21205:20;21202:1;21195:31;21245:4;21242:1;21235:15;21269:4;21266:1;21259:15;21285:127;21346:10;21341:3;21337:20;21334:1;21327:31;21377:4;21374:1;21367:15;21401:4;21398:1;21391:15;21417:127;21478:10;21473:3;21469:20;21466:1;21459:31;21509:4;21506:1;21499:15;21533:4;21530:1;21523:15;21549:127;21610:10;21605:3;21601:20;21598:1;21591:31;21641:4;21638:1;21631:15;21665:4;21662:1;21655:15;21681:127;21742:10;21737:3;21733:20;21730:1;21723:31;21773:4;21770:1;21763:15;21797:4;21794:1;21787:15;21813:131;-1:-1:-1;;;;;21888:31:1;;21878:42;;21868:70;;21934:1;21931;21924:12;21949:131;-1:-1:-1;;;;;;22023:32:1;;22013:43;;22003:71;;22070:1;22067;22060:12

Swarm Source

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