ETH Price: $2,979.81 (+1.66%)
Gas: 2 Gwei

Token

WarmUpsNFT (WarmUpsNFT)
 

Overview

Max Total Supply

0 WarmUpsNFT

Holders

108

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A

Other Info

Filtered by Token Holder
serpink.eth
Balance
1 WarmUpsNFT
0xb4f0bcadbefcee813981d40e0960ffc0ae770ec6
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:
WarmUpsNFT

Compiler Version
v0.8.6+commit.11564f7e

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion
File 1 of 2 : FlatDependencies.sol
// Sources flattened with hardhat v2.6.0 https://hardhat.org

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

// SPDX-License-Identifier: MIT

pragma solidity ^0.8.6;

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

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


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

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

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

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

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

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

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

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


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



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


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



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

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

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

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

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

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

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

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

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

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

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

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


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



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


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



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

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

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


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



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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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


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



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

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

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

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

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


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



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


// File @openzeppelin/contracts/token/ERC721/[email protected]
/**
 * @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"); commented to implement gas efficient tokensOfOwner
        return owner;
    }

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

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

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

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

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

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

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

        _approve(to, tokenId);
    }

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

        return _tokenApprovals[tokenId];
    }

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

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

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

        _transfer(from, to, tokenId);
    }

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

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

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

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

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

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

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

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

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

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

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

        _afterTokenTransfer(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);

        _afterTokenTransfer(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 from incorrect owner");
        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);

        _afterTokenTransfer(from, to, tokenId);
    }

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

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

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

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

    /**
     * @dev Hook that is called after any transfer of tokens. This includes
     * minting and burning.
     *
     * Calling conditions:
     *
     * - when `from` and `to` are both non-zero.
     * - `from` and `to` are never both zero.
     *
     * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks].
     */
    function _afterTokenTransfer(
        address from,
        address to,
        uint256 tokenId
    ) internal virtual {}
}


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



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

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

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


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




/**
 * @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 2 of 2 : NFT.sol
// SPDX-License-Identifier: MIT

/// @title WarmUps


pragma solidity ^0.8.6;


// .-.  .-. .--. ,---.            .-. .-.,---.   .---. 
// | |/\| |/ /\ \| .-.\  |\    /| | | | || .-.\ ( .-._)
// | /  \ / /__\ \ `-'/  |(\  / | | | | || |-' |_) \   
// |  /\  |  __  |   (   (_)\/  | | | | || |--'_  \ \  
// |(/  \ | |  |)| |\ \  | \  / | | `-')|| |  ( `-'  ) 
// (_)   \|_|  (_)_| \)\ | |\/| | `---(_)/(    `----'  
//                   (__)'-'  '-'       (__)           


import { IERC721, ERC721, Ownable } from './FlatDependencies.sol';

contract WarmUpsNFT is IERC721, Ownable, ERC721 {

  uint256 public constant PRICE = 0.069 ether;

  uint8 public constant MAX_SUPPLY = 222;

  uint8 public constant MAX_MINT_PER_WALLET = 5;

  uint8 public mint_index = 1;

  mapping(address => uint8) public minters;

  string public baseURI = "https://harlequin-rapid-barnacle-766.mypinata.cloud/ipfs/QmZHkRNPKhwkAuZPWShp8jycmWpXJfrfRQ2TWLb2vqUine/";

  bool public mintOpen;

  constructor() ERC721('WarmUpsNFT', 'WarmUpsNFT') {
    mintOpen = false;
  }

  /// @notice Public mints
  function mint(uint8 amount) public payable {

    /// @notice Cannot exceed maximum supply
    require(mint_index + amount <= MAX_SUPPLY, "WarmUpsNFT: Not enough mints remaining");

    /// @notice public can mint mint a maximum quantity at a time.
    require(amount <= MAX_MINT_PER_WALLET, 'WarmUpsNFT: mint amount exceeds maximum');

    /// @notice public must send in correct funds
    require(msg.value > 0 && msg.value == amount * PRICE, "WarmUpsNFT: Not enough value sent");

    /// @notice checks amount already minted
  require(minters[_msgSender()]  + amount <= MAX_MINT_PER_WALLET, "WarmUpsNFT: cannot exceed max mint amount");

    require(mintOpen == true, "WarmUpsNFT: mint has not opened");

    _mintAmountTo(_msgSender(), amount, mint_index);

    mint_index += amount;
    minters[_msgSender()] += amount;

  }

  function teamMint(uint8 amount, address recipient) public onlyOwner {

    /// @notice Cannot exceed maximum supply
    require(mint_index + amount <= MAX_SUPPLY, "WarmUpsNFT: Not enough mints remaining");

    /// @notice public can mint mint a maximum quantity at a time.
    require(amount <= MAX_MINT_PER_WALLET, 'WarmUpsNFT: mint amount exceeds maximum');

    /// @notice checks amount already minted
     require(minters[recipient] + amount <= MAX_MINT_PER_WALLET, "WarmUpsNFT: already minted max amount");


    _mintAmountTo(recipient, amount, mint_index);

    mint_index += amount;
    minters[recipient] += amount;

  }

  function _mintAmountTo(address to, uint8 amount, uint8 startId) internal {
    for (uint8 i = startId; i < startId + amount; i++){
      _mint(to, i);
    }
  }

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

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

  function toggleMint(bool mintStatus) external onlyOwner {
    mintOpen = mintStatus;
  }

  /**
   * @notice returns token ids owned by a owner, don't use this onchain
   */
  function tokensOfOwner(address _owner) external view returns (uint256[] memory) {
      uint256 tokenCount = balanceOf(_owner);
      if (tokenCount == 0) {
          return new uint256[](0);
      } else {
          unchecked {
              uint256[] memory result = new uint256[](tokenCount);
              uint256 index;
              uint256 i = 1;
              for (i; i < MAX_SUPPLY; i++) {
                  if (ownerOf(i) == _owner) {
                      result[index] = i;
                      index++;
                  }
              }
              return result;
          }
      }
  }

  /**
   * @notice returns token ids batched owned by a owner, don't use this onchain
   */
  function tokensOfOwnerBatched(
      address _owner,
      uint256 _start,
      uint256 _stop
  ) external view returns (uint16[] memory) {
      if (_stop > MAX_SUPPLY) _stop = MAX_SUPPLY;
      uint256 balance = balanceOf(_owner);
      uint16[] memory tokens = new uint16[](balance);
      uint256 index;
      for (uint256 i = _start; i <= _stop; ) {
          unchecked {
              if (ownerOf(i) == _owner) {
                  tokens[index] = uint16(i);
                  index++;
              }
              i++;
          }
      }

      return tokens;
  }

  /**
   * @notice returns token ids owned by a owner, don't use this onchain
   */
  function ownersOfTokens() external view returns (address[] memory) {
      address[] memory owners = new address[](mint_index);
      unchecked {
          for (uint256 i = 1; i <= mint_index; i++) {
              owners[i - 1] = ownerOf(i);
          }
      }
      return owners;
  }

  /**
   * @notice returns token ids batched owned by a owner, don't use this onchain
   */
  function ownersOfTokensBatched(uint256 _start, uint256 _stop) external view returns (address[] memory) {
      if (_stop > mint_index) _stop = mint_index;
      address[] memory owners = new address[](mint_index);
      for (uint256 i = _start; i <= _stop; ) {
          unchecked {
              owners[i - _start] = ownerOf(i);
              i++;
          }
      }

      return owners;
  }

  /// @notice Sends balance of this contract to owner
  function withdraw() public onlyOwner {
    (bool success, ) = owner().call{value: address(this).balance}("");
    require(success, "WarmUpsNFT: Withdraw unsuccessful");
  }
}

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

Contract Security Audit

Contract ABI

[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"approved","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[],"name":"MAX_MINT_PER_WALLET","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"MAX_SUPPLY","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"PRICE","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"baseURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint8","name":"amount","type":"uint8"}],"name":"mint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"mintOpen","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"mint_index","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"minters","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"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":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"ownersOfTokens","outputs":[{"internalType":"address[]","name":"","type":"address[]"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_start","type":"uint256"},{"internalType":"uint256","name":"_stop","type":"uint256"}],"name":"ownersOfTokensBatched","outputs":[{"internalType":"address[]","name":"","type":"address[]"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"_data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"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":"uint8","name":"amount","type":"uint8"},{"internalType":"address","name":"recipient","type":"address"}],"name":"teamMint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"mintStatus","type":"bool"}],"name":"toggleMint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_owner","type":"address"}],"name":"tokensOfOwner","outputs":[{"internalType":"uint256[]","name":"","type":"uint256[]"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_owner","type":"address"},{"internalType":"uint256","name":"_start","type":"uint256"},{"internalType":"uint256","name":"_stop","type":"uint256"}],"name":"tokensOfOwnerBatched","outputs":[{"internalType":"uint16[]","name":"","type":"uint16[]"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"withdraw","outputs":[],"stateMutability":"nonpayable","type":"function"}]

60806040526001600760006101000a81548160ff021916908360ff1602179055506040518060a0016040528060688152602001620049946068913960099080519060200190620000519291906200020d565b503480156200005f57600080fd5b506040518060400160405280600a81526020017f5761726d5570734e4654000000000000000000000000000000000000000000008152506040518060400160405280600a81526020017f5761726d5570734e465400000000000000000000000000000000000000000000815250620000ec620000e06200014160201b60201c565b6200014960201b60201c565b8160019080519060200190620001049291906200020d565b5080600290805190602001906200011d9291906200020d565b5050506000600a60006101000a81548160ff02191690831515021790555062000322565b600033905090565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050816000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b8280546200021b90620002bd565b90600052602060002090601f0160209004810192826200023f57600085556200028b565b82601f106200025a57805160ff19168380011785556200028b565b828001600101855582156200028b579182015b828111156200028a5782518255916020019190600101906200026d565b5b5090506200029a91906200029e565b5090565b5b80821115620002b95760008160009055506001016200029f565b5090565b60006002820490506001821680620002d657607f821691505b60208210811415620002ed57620002ec620002f3565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b61466280620003326000396000f3fe6080604052600436106101e35760003560e01c8063715018a611610102578063a22cb46511610095578063e985e9c511610064578063e985e9c5146106e7578063f2fde38b14610724578063f46eccc41461074d578063fcf10b861461078a576101e3565b8063a22cb4651461062d578063b19960e614610656578063b88d4fde14610681578063c87b56dd146106aa576101e3565b80638da5cb5b116100d15780638da5cb5b1461056f5780639412d9501461059a57806395d89b41146105c55780639b20412f146105f0576101e3565b8063715018a6146104c75780638462151c146104de5780638a4dcd851461051b5780638d859f3e14610544576101e3565b80633ccfd60b1161017a5780636c0360eb116101495780636c0360eb146104065780636ecd23061461043157806370a082311461044d578063710c7bf21461048a576101e3565b80633ccfd60b1461036057806342842e0e1461037757806355f804b3146103a05780636352211e146103c9576101e3565b8063201a611e116101b6578063201a611e146102b657806323b872dd146102e157806324bbd0491461030a57806332cb6b0c14610335576101e3565b806301ffc9a7146101e857806306fdde0314610225578063081812fc14610250578063095ea7b31461028d575b600080fd5b3480156101f457600080fd5b5061020f600480360381019061020a9190612ead565b6107b3565b60405161021c91906136c3565b60405180910390f35b34801561023157600080fd5b5061023a610895565b60405161024791906136de565b60405180910390f35b34801561025c57600080fd5b5061027760048036038101906102729190612f50565b610927565b60405161028491906135f6565b60405180910390f35b34801561029957600080fd5b506102b460048036038101906102af9190612ded565b6109ac565b005b3480156102c257600080fd5b506102cb610ac4565b6040516102d8919061365d565b60405180910390f35b3480156102ed57600080fd5b5061030860048036038101906103039190612cd7565b610bb3565b005b34801561031657600080fd5b5061031f610c13565b60405161032c91906136c3565b60405180910390f35b34801561034157600080fd5b5061034a610c26565b60405161035791906139db565b60405180910390f35b34801561036c57600080fd5b50610375610c2b565b005b34801561038357600080fd5b5061039e60048036038101906103999190612cd7565b610d5d565b005b3480156103ac57600080fd5b506103c760048036038101906103c29190612f07565b610d7d565b005b3480156103d557600080fd5b506103f060048036038101906103eb9190612f50565b610e13565b6040516103fd91906135f6565b60405180910390f35b34801561041257600080fd5b5061041b610e55565b60405161042891906136de565b60405180910390f35b61044b60048036038101906104469190612fbd565b610ee3565b005b34801561045957600080fd5b50610474600480360381019061046f9190612c6a565b6111c6565b60405161048191906139c0565b60405180910390f35b34801561049657600080fd5b506104b160048036038101906104ac9190612e2d565b61127e565b6040516104be919061367f565b60405180910390f35b3480156104d357600080fd5b506104dc611386565b005b3480156104ea57600080fd5b5061050560048036038101906105009190612c6a565b61140e565b60405161051291906136a1565b60405180910390f35b34801561052757600080fd5b50610542600480360381019061053d9190612e80565b611558565b005b34801561055057600080fd5b506105596115f1565b60405161056691906139c0565b60405180910390f35b34801561057b57600080fd5b506105846115fc565b60405161059191906135f6565b60405180910390f35b3480156105a657600080fd5b506105af611625565b6040516105bc91906139db565b60405180910390f35b3480156105d157600080fd5b506105da611638565b6040516105e791906136de565b60405180910390f35b3480156105fc57600080fd5b5061061760048036038101906106129190612f7d565b6116ca565b604051610624919061365d565b60405180910390f35b34801561063957600080fd5b50610654600480360381019061064f9190612dad565b6117d8565b005b34801561066257600080fd5b5061066b6117ee565b60405161067891906139db565b60405180910390f35b34801561068d57600080fd5b506106a860048036038101906106a39190612d2a565b6117f3565b005b3480156106b657600080fd5b506106d160048036038101906106cc9190612f50565b611855565b6040516106de91906136de565b60405180910390f35b3480156106f357600080fd5b5061070e60048036038101906107099190612c97565b6118fc565b60405161071b91906136c3565b60405180910390f35b34801561073057600080fd5b5061074b60048036038101906107469190612c6a565b611990565b005b34801561075957600080fd5b50610774600480360381019061076f9190612c6a565b611a88565b60405161078191906139db565b60405180910390f35b34801561079657600080fd5b506107b160048036038101906107ac9190612fea565b611aa8565b005b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916148061087e57507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b8061088e575061088d82611d3a565b5b9050919050565b6060600180546108a490613d93565b80601f01602080910402602001604051908101604052809291908181526020018280546108d090613d93565b801561091d5780601f106108f25761010080835404028352916020019161091d565b820191906000526020600020905b81548152906001019060200180831161090057829003601f168201915b5050505050905090565b600061093282611da4565b610971576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610968906138e0565b60405180910390fd5b6005600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b60006109b782610e13565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610a28576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a1f90613960565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16610a47611e10565b73ffffffffffffffffffffffffffffffffffffffff161480610a765750610a7581610a70611e10565b6118fc565b5b610ab5576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610aac90613860565b60405180910390fd5b610abf8383611e18565b505050565b60606000600760009054906101000a900460ff1660ff1667ffffffffffffffff811115610af457610af3613f56565b5b604051908082528060200260200182016040528015610b225781602001602082028036833780820191505090505b5090506000600190505b600760009054906101000a900460ff1660ff168111610bab57610b4e81610e13565b826001830381518110610b6457610b63613f27565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff16815250508080600101915050610b2c565b508091505090565b610bc4610bbe611e10565b82611ed1565b610c03576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610bfa906139a0565b60405180910390fd5b610c0e838383611faf565b505050565b600a60009054906101000a900460ff1681565b60de81565b610c33611e10565b73ffffffffffffffffffffffffffffffffffffffff16610c516115fc565b73ffffffffffffffffffffffffffffffffffffffff1614610ca7576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c9e90613900565b60405180910390fd5b6000610cb16115fc565b73ffffffffffffffffffffffffffffffffffffffff1647604051610cd4906135e1565b60006040518083038185875af1925050503d8060008114610d11576040519150601f19603f3d011682016040523d82523d6000602084013e610d16565b606091505b5050905080610d5a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d5190613700565b60405180910390fd5b50565b610d78838383604051806020016040528060008152506117f3565b505050565b610d85611e10565b73ffffffffffffffffffffffffffffffffffffffff16610da36115fc565b73ffffffffffffffffffffffffffffffffffffffff1614610df9576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610df090613900565b60405180910390fd5b8060099080519060200190610e0f929190612a69565b5050565b6000806003600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905080915050919050565b60098054610e6290613d93565b80601f0160208091040260200160405190810160405280929190818152602001828054610e8e90613d93565b8015610edb5780601f10610eb057610100808354040283529160200191610edb565b820191906000526020600020905b815481529060010190602001808311610ebe57829003601f168201915b505050505081565b60de60ff1681600760009054906101000a900460ff16610f039190613bcc565b60ff161115610f47576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f3e90613760565b60405180910390fd5b600560ff168160ff161115610f91576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f8890613720565b60405180910390fd5b600034118015610fb5575066f52322698080008160ff16610fb29190613c34565b34145b610ff4576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610feb906138c0565b60405180910390fd5b600560ff168160086000611006611e10565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff166110589190613bcc565b60ff16111561109c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161109390613940565b60405180910390fd5b60011515600a60009054906101000a900460ff161515146110f2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110e990613980565b60405180910390fd5b6111136110fd611e10565b82600760009054906101000a900460ff16612216565b80600760008282829054906101000a900460ff166111319190613bcc565b92506101000a81548160ff021916908360ff1602179055508060086000611156611e10565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282829054906101000a900460ff166111ab9190613bcc565b92506101000a81548160ff021916908360ff16021790555050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611237576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161122e90613880565b60405180910390fd5b600460008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b606060de60ff168211156112945760de60ff1691505b600061129f856111c6565b905060008167ffffffffffffffff8111156112bd576112bc613f56565b5b6040519080825280602002602001820160405280156112eb5781602001602082028036833780820191505090505b5090506000808690505b858111611378578773ffffffffffffffffffffffffffffffffffffffff1661131c82610e13565b73ffffffffffffffffffffffffffffffffffffffff16141561136b578083838151811061134c5761134b613f27565b5b602002602001019061ffff16908161ffff168152505081806001019250505b80806001019150506112f5565b508193505050509392505050565b61138e611e10565b73ffffffffffffffffffffffffffffffffffffffff166113ac6115fc565b73ffffffffffffffffffffffffffffffffffffffff1614611402576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113f990613900565b60405180910390fd5b61140c600061225b565b565b6060600061141b836111c6565b9050600081141561147857600067ffffffffffffffff81111561144157611440613f56565b5b60405190808252806020026020018201604052801561146f5781602001602082028036833780820191505090505b50915050611553565b60008167ffffffffffffffff81111561149457611493613f56565b5b6040519080825280602002602001820160405280156114c25781602001602082028036833780820191505090505b509050600080600190505b60de60ff1681101561154b578573ffffffffffffffffffffffffffffffffffffffff166114f982610e13565b73ffffffffffffffffffffffffffffffffffffffff16141561153e578083838151811061152957611528613f27565b5b60200260200101818152505081806001019250505b80806001019150506114cd565b829450505050505b919050565b611560611e10565b73ffffffffffffffffffffffffffffffffffffffff1661157e6115fc565b73ffffffffffffffffffffffffffffffffffffffff16146115d4576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115cb90613900565b60405180910390fd5b80600a60006101000a81548160ff02191690831515021790555050565b66f523226980800081565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b600760009054906101000a900460ff1681565b60606002805461164790613d93565b80601f016020809104026020016040519081016040528092919081815260200182805461167390613d93565b80156116c05780601f10611695576101008083540402835291602001916116c0565b820191906000526020600020905b8154815290600101906020018083116116a357829003601f168201915b5050505050905090565b6060600760009054906101000a900460ff1660ff168211156116fc57600760009054906101000a900460ff1660ff1691505b6000600760009054906101000a900460ff1660ff1667ffffffffffffffff81111561172a57611729613f56565b5b6040519080825280602002602001820160405280156117585781602001602082028036833780820191505090505b50905060008490505b8381116117cd5761177181610e13565b828683038151811061178657611785613f27565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff16815250508080600101915050611761565b508091505092915050565b6117ea6117e3611e10565b838361231f565b5050565b600581565b6118046117fe611e10565b83611ed1565b611843576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161183a906139a0565b60405180910390fd5b61184f8484848461248c565b50505050565b606061186082611da4565b61189f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161189690613920565b60405180910390fd5b60006118a96124e8565b905060008151116118c957604051806020016040528060008152506118f4565b806118d38461257a565b6040516020016118e49291906135bd565b6040516020818303038152906040525b915050919050565b6000600660008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b611998611e10565b73ffffffffffffffffffffffffffffffffffffffff166119b66115fc565b73ffffffffffffffffffffffffffffffffffffffff1614611a0c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a0390613900565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415611a7c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a7390613780565b60405180910390fd5b611a858161225b565b50565b60086020528060005260406000206000915054906101000a900460ff1681565b611ab0611e10565b73ffffffffffffffffffffffffffffffffffffffff16611ace6115fc565b73ffffffffffffffffffffffffffffffffffffffff1614611b24576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b1b90613900565b60405180910390fd5b60de60ff1682600760009054906101000a900460ff16611b449190613bcc565b60ff161115611b88576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b7f90613760565b60405180910390fd5b600560ff168260ff161115611bd2576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611bc990613720565b60405180910390fd5b600560ff1682600860008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16611c2f9190613bcc565b60ff161115611c73576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c6a906137e0565b60405180910390fd5b611c8d8183600760009054906101000a900460ff16612216565b81600760008282829054906101000a900460ff16611cab9190613bcc565b92506101000a81548160ff021916908360ff16021790555081600860008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282829054906101000a900460ff16611d1e9190613bcc565b92506101000a81548160ff021916908360ff1602179055505050565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b60008073ffffffffffffffffffffffffffffffffffffffff166003600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614159050919050565b600033905090565b816005600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16611e8b83610e13565b73ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b6000611edc82611da4565b611f1b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f1290613840565b60405180910390fd5b6000611f2683610e13565b90508073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161480611f9557508373ffffffffffffffffffffffffffffffffffffffff16611f7d84610927565b73ffffffffffffffffffffffffffffffffffffffff16145b80611fa65750611fa581856118fc565b5b91505092915050565b8273ffffffffffffffffffffffffffffffffffffffff16611fcf82610e13565b73ffffffffffffffffffffffffffffffffffffffff1614612025576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161201c906137a0565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415612095576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161208c90613800565b60405180910390fd5b6120a08383836126db565b6120ab600082611e18565b6001600460008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546120fb9190613c8e565b925050819055506001600460008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546121529190613b76565b92505081905550816003600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a46122118383836126e0565b505050565b60008190505b82826122289190613bcc565b60ff168160ff16101561225557612242848260ff166126e5565b808061224d90613e3f565b91505061221c565b50505050565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050816000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16141561238e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161238590613820565b60405180910390fd5b80600660008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c318360405161247f91906136c3565b60405180910390a3505050565b612497848484611faf565b6124a3848484846128bf565b6124e2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016124d990613740565b60405180910390fd5b50505050565b6060600980546124f790613d93565b80601f016020809104026020016040519081016040528092919081815260200182805461252390613d93565b80156125705780601f1061254557610100808354040283529160200191612570565b820191906000526020600020905b81548152906001019060200180831161255357829003601f168201915b5050505050905090565b606060008214156125c2576040518060400160405280600181526020017f300000000000000000000000000000000000000000000000000000000000000081525090506126d6565b600082905060005b600082146125f45780806125dd90613df6565b915050600a826125ed9190613c03565b91506125ca565b60008167ffffffffffffffff8111156126105761260f613f56565b5b6040519080825280601f01601f1916602001820160405280156126425781602001600182028036833780820191505090505b5090505b600085146126cf5760018261265b9190613c8e565b9150600a8561266a9190613e69565b60306126769190613b76565b60f81b81838151811061268c5761268b613f27565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a856126c89190613c03565b9450612646565b8093505050505b919050565b505050565b505050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415612755576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161274c906138a0565b60405180910390fd5b61275e81611da4565b1561279e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612795906137c0565b60405180910390fd5b6127aa600083836126db565b6001600460008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546127fa9190613b76565b92505081905550816003600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a46128bb600083836126e0565b5050565b60006128e08473ffffffffffffffffffffffffffffffffffffffff16612a56565b15612a49578373ffffffffffffffffffffffffffffffffffffffff1663150b7a02612909611e10565b8786866040518563ffffffff1660e01b815260040161292b9493929190613611565b602060405180830381600087803b15801561294557600080fd5b505af192505050801561297657506040513d601f19601f820116820180604052508101906129739190612eda565b60015b6129f9573d80600081146129a6576040519150601f19603f3d011682016040523d82523d6000602084013e6129ab565b606091505b506000815114156129f1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016129e890613740565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050612a4e565b600190505b949350505050565b600080823b905060008111915050919050565b828054612a7590613d93565b90600052602060002090601f016020900481019282612a975760008555612ade565b82601f10612ab057805160ff1916838001178555612ade565b82800160010185558215612ade579182015b82811115612add578251825591602001919060010190612ac2565b5b509050612aeb9190612aef565b5090565b5b80821115612b08576000816000905550600101612af0565b5090565b6000612b1f612b1a84613a1b565b6139f6565b905082815260208101848484011115612b3b57612b3a613f8a565b5b612b46848285613d51565b509392505050565b6000612b61612b5c84613a4c565b6139f6565b905082815260208101848484011115612b7d57612b7c613f8a565b5b612b88848285613d51565b509392505050565b600081359050612b9f816145b9565b92915050565b600081359050612bb4816145d0565b92915050565b600081359050612bc9816145e7565b92915050565b600081519050612bde816145e7565b92915050565b600082601f830112612bf957612bf8613f85565b5b8135612c09848260208601612b0c565b91505092915050565b600082601f830112612c2757612c26613f85565b5b8135612c37848260208601612b4e565b91505092915050565b600081359050612c4f816145fe565b92915050565b600081359050612c6481614615565b92915050565b600060208284031215612c8057612c7f613f94565b5b6000612c8e84828501612b90565b91505092915050565b60008060408385031215612cae57612cad613f94565b5b6000612cbc85828601612b90565b9250506020612ccd85828601612b90565b9150509250929050565b600080600060608486031215612cf057612cef613f94565b5b6000612cfe86828701612b90565b9350506020612d0f86828701612b90565b9250506040612d2086828701612c40565b9150509250925092565b60008060008060808587031215612d4457612d43613f94565b5b6000612d5287828801612b90565b9450506020612d6387828801612b90565b9350506040612d7487828801612c40565b925050606085013567ffffffffffffffff811115612d9557612d94613f8f565b5b612da187828801612be4565b91505092959194509250565b60008060408385031215612dc457612dc3613f94565b5b6000612dd285828601612b90565b9250506020612de385828601612ba5565b9150509250929050565b60008060408385031215612e0457612e03613f94565b5b6000612e1285828601612b90565b9250506020612e2385828601612c40565b9150509250929050565b600080600060608486031215612e4657612e45613f94565b5b6000612e5486828701612b90565b9350506020612e6586828701612c40565b9250506040612e7686828701612c40565b9150509250925092565b600060208284031215612e9657612e95613f94565b5b6000612ea484828501612ba5565b91505092915050565b600060208284031215612ec357612ec2613f94565b5b6000612ed184828501612bba565b91505092915050565b600060208284031215612ef057612eef613f94565b5b6000612efe84828501612bcf565b91505092915050565b600060208284031215612f1d57612f1c613f94565b5b600082013567ffffffffffffffff811115612f3b57612f3a613f8f565b5b612f4784828501612c12565b91505092915050565b600060208284031215612f6657612f65613f94565b5b6000612f7484828501612c40565b91505092915050565b60008060408385031215612f9457612f93613f94565b5b6000612fa285828601612c40565b9250506020612fb385828601612c40565b9150509250929050565b600060208284031215612fd357612fd2613f94565b5b6000612fe184828501612c55565b91505092915050565b6000806040838503121561300157613000613f94565b5b600061300f85828601612c55565b925050602061302085828601612b90565b9150509250929050565b60006130368383613072565b60208301905092915050565b600061304e8383613581565b60208301905092915050565b60006130668383613590565b60208301905092915050565b61307b81613cc2565b82525050565b61308a81613cc2565b82525050565b600061309b82613aad565b6130a58185613b0b565b93506130b083613a7d565b8060005b838110156130e15781516130c8888261302a565b97506130d383613ae4565b9250506001810190506130b4565b5085935050505092915050565b60006130f982613ab8565b6131038185613b1c565b935061310e83613a8d565b8060005b8381101561313f5781516131268882613042565b975061313183613af1565b925050600181019050613112565b5085935050505092915050565b600061315782613ac3565b6131618185613b2d565b935061316c83613a9d565b8060005b8381101561319d578151613184888261305a565b975061318f83613afe565b925050600181019050613170565b5085935050505092915050565b6131b381613cd4565b82525050565b60006131c482613ace565b6131ce8185613b3e565b93506131de818560208601613d60565b6131e781613f99565b840191505092915050565b60006131fd82613ad9565b6132078185613b5a565b9350613217818560208601613d60565b61322081613f99565b840191505092915050565b600061323682613ad9565b6132408185613b6b565b9350613250818560208601613d60565b80840191505092915050565b6000613269602183613b5a565b915061327482613faa565b604082019050919050565b600061328c602783613b5a565b915061329782613ff9565b604082019050919050565b60006132af603283613b5a565b91506132ba82614048565b604082019050919050565b60006132d2602683613b5a565b91506132dd82614097565b604082019050919050565b60006132f5602683613b5a565b9150613300826140e6565b604082019050919050565b6000613318602583613b5a565b915061332382614135565b604082019050919050565b600061333b601c83613b5a565b915061334682614184565b602082019050919050565b600061335e602583613b5a565b9150613369826141ad565b604082019050919050565b6000613381602483613b5a565b915061338c826141fc565b604082019050919050565b60006133a4601983613b5a565b91506133af8261424b565b602082019050919050565b60006133c7602c83613b5a565b91506133d282614274565b604082019050919050565b60006133ea603883613b5a565b91506133f5826142c3565b604082019050919050565b600061340d602a83613b5a565b915061341882614312565b604082019050919050565b6000613430602083613b5a565b915061343b82614361565b602082019050919050565b6000613453602183613b5a565b915061345e8261438a565b604082019050919050565b6000613476602c83613b5a565b9150613481826143d9565b604082019050919050565b6000613499602083613b5a565b91506134a482614428565b602082019050919050565b60006134bc602f83613b5a565b91506134c782614451565b604082019050919050565b60006134df602983613b5a565b91506134ea826144a0565b604082019050919050565b6000613502602183613b5a565b915061350d826144ef565b604082019050919050565b6000613525600083613b4f565b91506135308261453e565b600082019050919050565b6000613548601f83613b5a565b915061355382614541565b602082019050919050565b600061356b603183613b5a565b91506135768261456a565b604082019050919050565b61358a81613d0c565b82525050565b61359981613d3a565b82525050565b6135a881613d3a565b82525050565b6135b781613d44565b82525050565b60006135c9828561322b565b91506135d5828461322b565b91508190509392505050565b60006135ec82613518565b9150819050919050565b600060208201905061360b6000830184613081565b92915050565b60006080820190506136266000830187613081565b6136336020830186613081565b613640604083018561359f565b818103606083015261365281846131b9565b905095945050505050565b600060208201905081810360008301526136778184613090565b905092915050565b6000602082019050818103600083015261369981846130ee565b905092915050565b600060208201905081810360008301526136bb818461314c565b905092915050565b60006020820190506136d860008301846131aa565b92915050565b600060208201905081810360008301526136f881846131f2565b905092915050565b600060208201905081810360008301526137198161325c565b9050919050565b600060208201905081810360008301526137398161327f565b9050919050565b60006020820190508181036000830152613759816132a2565b9050919050565b60006020820190508181036000830152613779816132c5565b9050919050565b60006020820190508181036000830152613799816132e8565b9050919050565b600060208201905081810360008301526137b98161330b565b9050919050565b600060208201905081810360008301526137d98161332e565b9050919050565b600060208201905081810360008301526137f981613351565b9050919050565b6000602082019050818103600083015261381981613374565b9050919050565b6000602082019050818103600083015261383981613397565b9050919050565b60006020820190508181036000830152613859816133ba565b9050919050565b60006020820190508181036000830152613879816133dd565b9050919050565b6000602082019050818103600083015261389981613400565b9050919050565b600060208201905081810360008301526138b981613423565b9050919050565b600060208201905081810360008301526138d981613446565b9050919050565b600060208201905081810360008301526138f981613469565b9050919050565b600060208201905081810360008301526139198161348c565b9050919050565b60006020820190508181036000830152613939816134af565b9050919050565b60006020820190508181036000830152613959816134d2565b9050919050565b60006020820190508181036000830152613979816134f5565b9050919050565b600060208201905081810360008301526139998161353b565b9050919050565b600060208201905081810360008301526139b98161355e565b9050919050565b60006020820190506139d5600083018461359f565b92915050565b60006020820190506139f060008301846135ae565b92915050565b6000613a00613a11565b9050613a0c8282613dc5565b919050565b6000604051905090565b600067ffffffffffffffff821115613a3657613a35613f56565b5b613a3f82613f99565b9050602081019050919050565b600067ffffffffffffffff821115613a6757613a66613f56565b5b613a7082613f99565b9050602081019050919050565b6000819050602082019050919050565b6000819050602082019050919050565b6000819050602082019050919050565b600081519050919050565b600081519050919050565b600081519050919050565b600081519050919050565b600081519050919050565b6000602082019050919050565b6000602082019050919050565b6000602082019050919050565b600082825260208201905092915050565b600082825260208201905092915050565b600082825260208201905092915050565b600082825260208201905092915050565b600081905092915050565b600082825260208201905092915050565b600081905092915050565b6000613b8182613d3a565b9150613b8c83613d3a565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115613bc157613bc0613e9a565b5b828201905092915050565b6000613bd782613d44565b9150613be283613d44565b92508260ff03821115613bf857613bf7613e9a565b5b828201905092915050565b6000613c0e82613d3a565b9150613c1983613d3a565b925082613c2957613c28613ec9565b5b828204905092915050565b6000613c3f82613d3a565b9150613c4a83613d3a565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0483118215151615613c8357613c82613e9a565b5b828202905092915050565b6000613c9982613d3a565b9150613ca483613d3a565b925082821015613cb757613cb6613e9a565b5b828203905092915050565b6000613ccd82613d1a565b9050919050565b60008115159050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600061ffff82169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b600060ff82169050919050565b82818337600083830152505050565b60005b83811015613d7e578082015181840152602081019050613d63565b83811115613d8d576000848401525b50505050565b60006002820490506001821680613dab57607f821691505b60208210811415613dbf57613dbe613ef8565b5b50919050565b613dce82613f99565b810181811067ffffffffffffffff82111715613ded57613dec613f56565b5b80604052505050565b6000613e0182613d3a565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff821415613e3457613e33613e9a565b5b600182019050919050565b6000613e4a82613d44565b915060ff821415613e5e57613e5d613e9a565b5b600182019050919050565b6000613e7482613d3a565b9150613e7f83613d3a565b925082613e8f57613e8e613ec9565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b7f5761726d5570734e46543a20576974686472617720756e73756363657373667560008201527f6c00000000000000000000000000000000000000000000000000000000000000602082015250565b7f5761726d5570734e46543a206d696e7420616d6f756e7420657863656564732060008201527f6d6178696d756d00000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560008201527f63656976657220696d706c656d656e7465720000000000000000000000000000602082015250565b7f5761726d5570734e46543a204e6f7420656e6f756768206d696e74732072656d60008201527f61696e696e670000000000000000000000000000000000000000000000000000602082015250565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a207472616e736665722066726f6d20696e636f72726563742060008201527f6f776e6572000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000600082015250565b7f5761726d5570734e46543a20616c7265616479206d696e746564206d6178206160008201527f6d6f756e74000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a207472616e7366657220746f20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f766520746f2063616c6c657200000000000000600082015250565b7f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760008201527f6e6572206e6f7220617070726f76656420666f7220616c6c0000000000000000602082015250565b7f4552433732313a2062616c616e636520717565727920666f7220746865207a6560008201527f726f206164647265737300000000000000000000000000000000000000000000602082015250565b7f4552433732313a206d696e7420746f20746865207a65726f2061646472657373600082015250565b7f5761726d5570734e46543a204e6f7420656e6f7567682076616c75652073656e60008201527f7400000000000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008201527f6e6578697374656e7420746f6b656e0000000000000000000000000000000000602082015250565b7f5761726d5570734e46543a2063616e6e6f7420657863656564206d6178206d6960008201527f6e7420616d6f756e740000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f76616c20746f2063757272656e74206f776e6560008201527f7200000000000000000000000000000000000000000000000000000000000000602082015250565b50565b7f5761726d5570734e46543a206d696e7420686173206e6f74206f70656e656400600082015250565b7f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f60008201527f776e6572206e6f7220617070726f766564000000000000000000000000000000602082015250565b6145c281613cc2565b81146145cd57600080fd5b50565b6145d981613cd4565b81146145e457600080fd5b50565b6145f081613ce0565b81146145fb57600080fd5b50565b61460781613d3a565b811461461257600080fd5b50565b61461e81613d44565b811461462957600080fd5b5056fea26469706673582212205120144c303565828eef8fb61cb9d9ec102e02ac2c9145e07006c7c135e3f08664736f6c6343000806003368747470733a2f2f6861726c657175696e2d72617069642d6261726e61636c652d3736362e6d7970696e6174612e636c6f75642f697066732f516d5a486b524e504b68776b41755a5057536870386a79636d5770584a66726652513254574c6232767155696e652f

Deployed Bytecode

0x6080604052600436106101e35760003560e01c8063715018a611610102578063a22cb46511610095578063e985e9c511610064578063e985e9c5146106e7578063f2fde38b14610724578063f46eccc41461074d578063fcf10b861461078a576101e3565b8063a22cb4651461062d578063b19960e614610656578063b88d4fde14610681578063c87b56dd146106aa576101e3565b80638da5cb5b116100d15780638da5cb5b1461056f5780639412d9501461059a57806395d89b41146105c55780639b20412f146105f0576101e3565b8063715018a6146104c75780638462151c146104de5780638a4dcd851461051b5780638d859f3e14610544576101e3565b80633ccfd60b1161017a5780636c0360eb116101495780636c0360eb146104065780636ecd23061461043157806370a082311461044d578063710c7bf21461048a576101e3565b80633ccfd60b1461036057806342842e0e1461037757806355f804b3146103a05780636352211e146103c9576101e3565b8063201a611e116101b6578063201a611e146102b657806323b872dd146102e157806324bbd0491461030a57806332cb6b0c14610335576101e3565b806301ffc9a7146101e857806306fdde0314610225578063081812fc14610250578063095ea7b31461028d575b600080fd5b3480156101f457600080fd5b5061020f600480360381019061020a9190612ead565b6107b3565b60405161021c91906136c3565b60405180910390f35b34801561023157600080fd5b5061023a610895565b60405161024791906136de565b60405180910390f35b34801561025c57600080fd5b5061027760048036038101906102729190612f50565b610927565b60405161028491906135f6565b60405180910390f35b34801561029957600080fd5b506102b460048036038101906102af9190612ded565b6109ac565b005b3480156102c257600080fd5b506102cb610ac4565b6040516102d8919061365d565b60405180910390f35b3480156102ed57600080fd5b5061030860048036038101906103039190612cd7565b610bb3565b005b34801561031657600080fd5b5061031f610c13565b60405161032c91906136c3565b60405180910390f35b34801561034157600080fd5b5061034a610c26565b60405161035791906139db565b60405180910390f35b34801561036c57600080fd5b50610375610c2b565b005b34801561038357600080fd5b5061039e60048036038101906103999190612cd7565b610d5d565b005b3480156103ac57600080fd5b506103c760048036038101906103c29190612f07565b610d7d565b005b3480156103d557600080fd5b506103f060048036038101906103eb9190612f50565b610e13565b6040516103fd91906135f6565b60405180910390f35b34801561041257600080fd5b5061041b610e55565b60405161042891906136de565b60405180910390f35b61044b60048036038101906104469190612fbd565b610ee3565b005b34801561045957600080fd5b50610474600480360381019061046f9190612c6a565b6111c6565b60405161048191906139c0565b60405180910390f35b34801561049657600080fd5b506104b160048036038101906104ac9190612e2d565b61127e565b6040516104be919061367f565b60405180910390f35b3480156104d357600080fd5b506104dc611386565b005b3480156104ea57600080fd5b5061050560048036038101906105009190612c6a565b61140e565b60405161051291906136a1565b60405180910390f35b34801561052757600080fd5b50610542600480360381019061053d9190612e80565b611558565b005b34801561055057600080fd5b506105596115f1565b60405161056691906139c0565b60405180910390f35b34801561057b57600080fd5b506105846115fc565b60405161059191906135f6565b60405180910390f35b3480156105a657600080fd5b506105af611625565b6040516105bc91906139db565b60405180910390f35b3480156105d157600080fd5b506105da611638565b6040516105e791906136de565b60405180910390f35b3480156105fc57600080fd5b5061061760048036038101906106129190612f7d565b6116ca565b604051610624919061365d565b60405180910390f35b34801561063957600080fd5b50610654600480360381019061064f9190612dad565b6117d8565b005b34801561066257600080fd5b5061066b6117ee565b60405161067891906139db565b60405180910390f35b34801561068d57600080fd5b506106a860048036038101906106a39190612d2a565b6117f3565b005b3480156106b657600080fd5b506106d160048036038101906106cc9190612f50565b611855565b6040516106de91906136de565b60405180910390f35b3480156106f357600080fd5b5061070e60048036038101906107099190612c97565b6118fc565b60405161071b91906136c3565b60405180910390f35b34801561073057600080fd5b5061074b60048036038101906107469190612c6a565b611990565b005b34801561075957600080fd5b50610774600480360381019061076f9190612c6a565b611a88565b60405161078191906139db565b60405180910390f35b34801561079657600080fd5b506107b160048036038101906107ac9190612fea565b611aa8565b005b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916148061087e57507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b8061088e575061088d82611d3a565b5b9050919050565b6060600180546108a490613d93565b80601f01602080910402602001604051908101604052809291908181526020018280546108d090613d93565b801561091d5780601f106108f25761010080835404028352916020019161091d565b820191906000526020600020905b81548152906001019060200180831161090057829003601f168201915b5050505050905090565b600061093282611da4565b610971576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610968906138e0565b60405180910390fd5b6005600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b60006109b782610e13565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610a28576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a1f90613960565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16610a47611e10565b73ffffffffffffffffffffffffffffffffffffffff161480610a765750610a7581610a70611e10565b6118fc565b5b610ab5576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610aac90613860565b60405180910390fd5b610abf8383611e18565b505050565b60606000600760009054906101000a900460ff1660ff1667ffffffffffffffff811115610af457610af3613f56565b5b604051908082528060200260200182016040528015610b225781602001602082028036833780820191505090505b5090506000600190505b600760009054906101000a900460ff1660ff168111610bab57610b4e81610e13565b826001830381518110610b6457610b63613f27565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff16815250508080600101915050610b2c565b508091505090565b610bc4610bbe611e10565b82611ed1565b610c03576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610bfa906139a0565b60405180910390fd5b610c0e838383611faf565b505050565b600a60009054906101000a900460ff1681565b60de81565b610c33611e10565b73ffffffffffffffffffffffffffffffffffffffff16610c516115fc565b73ffffffffffffffffffffffffffffffffffffffff1614610ca7576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c9e90613900565b60405180910390fd5b6000610cb16115fc565b73ffffffffffffffffffffffffffffffffffffffff1647604051610cd4906135e1565b60006040518083038185875af1925050503d8060008114610d11576040519150601f19603f3d011682016040523d82523d6000602084013e610d16565b606091505b5050905080610d5a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d5190613700565b60405180910390fd5b50565b610d78838383604051806020016040528060008152506117f3565b505050565b610d85611e10565b73ffffffffffffffffffffffffffffffffffffffff16610da36115fc565b73ffffffffffffffffffffffffffffffffffffffff1614610df9576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610df090613900565b60405180910390fd5b8060099080519060200190610e0f929190612a69565b5050565b6000806003600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905080915050919050565b60098054610e6290613d93565b80601f0160208091040260200160405190810160405280929190818152602001828054610e8e90613d93565b8015610edb5780601f10610eb057610100808354040283529160200191610edb565b820191906000526020600020905b815481529060010190602001808311610ebe57829003601f168201915b505050505081565b60de60ff1681600760009054906101000a900460ff16610f039190613bcc565b60ff161115610f47576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f3e90613760565b60405180910390fd5b600560ff168160ff161115610f91576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f8890613720565b60405180910390fd5b600034118015610fb5575066f52322698080008160ff16610fb29190613c34565b34145b610ff4576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610feb906138c0565b60405180910390fd5b600560ff168160086000611006611e10565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff166110589190613bcc565b60ff16111561109c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161109390613940565b60405180910390fd5b60011515600a60009054906101000a900460ff161515146110f2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110e990613980565b60405180910390fd5b6111136110fd611e10565b82600760009054906101000a900460ff16612216565b80600760008282829054906101000a900460ff166111319190613bcc565b92506101000a81548160ff021916908360ff1602179055508060086000611156611e10565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282829054906101000a900460ff166111ab9190613bcc565b92506101000a81548160ff021916908360ff16021790555050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611237576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161122e90613880565b60405180910390fd5b600460008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b606060de60ff168211156112945760de60ff1691505b600061129f856111c6565b905060008167ffffffffffffffff8111156112bd576112bc613f56565b5b6040519080825280602002602001820160405280156112eb5781602001602082028036833780820191505090505b5090506000808690505b858111611378578773ffffffffffffffffffffffffffffffffffffffff1661131c82610e13565b73ffffffffffffffffffffffffffffffffffffffff16141561136b578083838151811061134c5761134b613f27565b5b602002602001019061ffff16908161ffff168152505081806001019250505b80806001019150506112f5565b508193505050509392505050565b61138e611e10565b73ffffffffffffffffffffffffffffffffffffffff166113ac6115fc565b73ffffffffffffffffffffffffffffffffffffffff1614611402576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113f990613900565b60405180910390fd5b61140c600061225b565b565b6060600061141b836111c6565b9050600081141561147857600067ffffffffffffffff81111561144157611440613f56565b5b60405190808252806020026020018201604052801561146f5781602001602082028036833780820191505090505b50915050611553565b60008167ffffffffffffffff81111561149457611493613f56565b5b6040519080825280602002602001820160405280156114c25781602001602082028036833780820191505090505b509050600080600190505b60de60ff1681101561154b578573ffffffffffffffffffffffffffffffffffffffff166114f982610e13565b73ffffffffffffffffffffffffffffffffffffffff16141561153e578083838151811061152957611528613f27565b5b60200260200101818152505081806001019250505b80806001019150506114cd565b829450505050505b919050565b611560611e10565b73ffffffffffffffffffffffffffffffffffffffff1661157e6115fc565b73ffffffffffffffffffffffffffffffffffffffff16146115d4576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115cb90613900565b60405180910390fd5b80600a60006101000a81548160ff02191690831515021790555050565b66f523226980800081565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b600760009054906101000a900460ff1681565b60606002805461164790613d93565b80601f016020809104026020016040519081016040528092919081815260200182805461167390613d93565b80156116c05780601f10611695576101008083540402835291602001916116c0565b820191906000526020600020905b8154815290600101906020018083116116a357829003601f168201915b5050505050905090565b6060600760009054906101000a900460ff1660ff168211156116fc57600760009054906101000a900460ff1660ff1691505b6000600760009054906101000a900460ff1660ff1667ffffffffffffffff81111561172a57611729613f56565b5b6040519080825280602002602001820160405280156117585781602001602082028036833780820191505090505b50905060008490505b8381116117cd5761177181610e13565b828683038151811061178657611785613f27565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff16815250508080600101915050611761565b508091505092915050565b6117ea6117e3611e10565b838361231f565b5050565b600581565b6118046117fe611e10565b83611ed1565b611843576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161183a906139a0565b60405180910390fd5b61184f8484848461248c565b50505050565b606061186082611da4565b61189f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161189690613920565b60405180910390fd5b60006118a96124e8565b905060008151116118c957604051806020016040528060008152506118f4565b806118d38461257a565b6040516020016118e49291906135bd565b6040516020818303038152906040525b915050919050565b6000600660008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b611998611e10565b73ffffffffffffffffffffffffffffffffffffffff166119b66115fc565b73ffffffffffffffffffffffffffffffffffffffff1614611a0c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a0390613900565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415611a7c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a7390613780565b60405180910390fd5b611a858161225b565b50565b60086020528060005260406000206000915054906101000a900460ff1681565b611ab0611e10565b73ffffffffffffffffffffffffffffffffffffffff16611ace6115fc565b73ffffffffffffffffffffffffffffffffffffffff1614611b24576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b1b90613900565b60405180910390fd5b60de60ff1682600760009054906101000a900460ff16611b449190613bcc565b60ff161115611b88576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b7f90613760565b60405180910390fd5b600560ff168260ff161115611bd2576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611bc990613720565b60405180910390fd5b600560ff1682600860008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16611c2f9190613bcc565b60ff161115611c73576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c6a906137e0565b60405180910390fd5b611c8d8183600760009054906101000a900460ff16612216565b81600760008282829054906101000a900460ff16611cab9190613bcc565b92506101000a81548160ff021916908360ff16021790555081600860008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282829054906101000a900460ff16611d1e9190613bcc565b92506101000a81548160ff021916908360ff1602179055505050565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b60008073ffffffffffffffffffffffffffffffffffffffff166003600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614159050919050565b600033905090565b816005600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16611e8b83610e13565b73ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b6000611edc82611da4565b611f1b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f1290613840565b60405180910390fd5b6000611f2683610e13565b90508073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161480611f9557508373ffffffffffffffffffffffffffffffffffffffff16611f7d84610927565b73ffffffffffffffffffffffffffffffffffffffff16145b80611fa65750611fa581856118fc565b5b91505092915050565b8273ffffffffffffffffffffffffffffffffffffffff16611fcf82610e13565b73ffffffffffffffffffffffffffffffffffffffff1614612025576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161201c906137a0565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415612095576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161208c90613800565b60405180910390fd5b6120a08383836126db565b6120ab600082611e18565b6001600460008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546120fb9190613c8e565b925050819055506001600460008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546121529190613b76565b92505081905550816003600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a46122118383836126e0565b505050565b60008190505b82826122289190613bcc565b60ff168160ff16101561225557612242848260ff166126e5565b808061224d90613e3f565b91505061221c565b50505050565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050816000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16141561238e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161238590613820565b60405180910390fd5b80600660008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c318360405161247f91906136c3565b60405180910390a3505050565b612497848484611faf565b6124a3848484846128bf565b6124e2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016124d990613740565b60405180910390fd5b50505050565b6060600980546124f790613d93565b80601f016020809104026020016040519081016040528092919081815260200182805461252390613d93565b80156125705780601f1061254557610100808354040283529160200191612570565b820191906000526020600020905b81548152906001019060200180831161255357829003601f168201915b5050505050905090565b606060008214156125c2576040518060400160405280600181526020017f300000000000000000000000000000000000000000000000000000000000000081525090506126d6565b600082905060005b600082146125f45780806125dd90613df6565b915050600a826125ed9190613c03565b91506125ca565b60008167ffffffffffffffff8111156126105761260f613f56565b5b6040519080825280601f01601f1916602001820160405280156126425781602001600182028036833780820191505090505b5090505b600085146126cf5760018261265b9190613c8e565b9150600a8561266a9190613e69565b60306126769190613b76565b60f81b81838151811061268c5761268b613f27565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a856126c89190613c03565b9450612646565b8093505050505b919050565b505050565b505050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415612755576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161274c906138a0565b60405180910390fd5b61275e81611da4565b1561279e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612795906137c0565b60405180910390fd5b6127aa600083836126db565b6001600460008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546127fa9190613b76565b92505081905550816003600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a46128bb600083836126e0565b5050565b60006128e08473ffffffffffffffffffffffffffffffffffffffff16612a56565b15612a49578373ffffffffffffffffffffffffffffffffffffffff1663150b7a02612909611e10565b8786866040518563ffffffff1660e01b815260040161292b9493929190613611565b602060405180830381600087803b15801561294557600080fd5b505af192505050801561297657506040513d601f19601f820116820180604052508101906129739190612eda565b60015b6129f9573d80600081146129a6576040519150601f19603f3d011682016040523d82523d6000602084013e6129ab565b606091505b506000815114156129f1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016129e890613740565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050612a4e565b600190505b949350505050565b600080823b905060008111915050919050565b828054612a7590613d93565b90600052602060002090601f016020900481019282612a975760008555612ade565b82601f10612ab057805160ff1916838001178555612ade565b82800160010185558215612ade579182015b82811115612add578251825591602001919060010190612ac2565b5b509050612aeb9190612aef565b5090565b5b80821115612b08576000816000905550600101612af0565b5090565b6000612b1f612b1a84613a1b565b6139f6565b905082815260208101848484011115612b3b57612b3a613f8a565b5b612b46848285613d51565b509392505050565b6000612b61612b5c84613a4c565b6139f6565b905082815260208101848484011115612b7d57612b7c613f8a565b5b612b88848285613d51565b509392505050565b600081359050612b9f816145b9565b92915050565b600081359050612bb4816145d0565b92915050565b600081359050612bc9816145e7565b92915050565b600081519050612bde816145e7565b92915050565b600082601f830112612bf957612bf8613f85565b5b8135612c09848260208601612b0c565b91505092915050565b600082601f830112612c2757612c26613f85565b5b8135612c37848260208601612b4e565b91505092915050565b600081359050612c4f816145fe565b92915050565b600081359050612c6481614615565b92915050565b600060208284031215612c8057612c7f613f94565b5b6000612c8e84828501612b90565b91505092915050565b60008060408385031215612cae57612cad613f94565b5b6000612cbc85828601612b90565b9250506020612ccd85828601612b90565b9150509250929050565b600080600060608486031215612cf057612cef613f94565b5b6000612cfe86828701612b90565b9350506020612d0f86828701612b90565b9250506040612d2086828701612c40565b9150509250925092565b60008060008060808587031215612d4457612d43613f94565b5b6000612d5287828801612b90565b9450506020612d6387828801612b90565b9350506040612d7487828801612c40565b925050606085013567ffffffffffffffff811115612d9557612d94613f8f565b5b612da187828801612be4565b91505092959194509250565b60008060408385031215612dc457612dc3613f94565b5b6000612dd285828601612b90565b9250506020612de385828601612ba5565b9150509250929050565b60008060408385031215612e0457612e03613f94565b5b6000612e1285828601612b90565b9250506020612e2385828601612c40565b9150509250929050565b600080600060608486031215612e4657612e45613f94565b5b6000612e5486828701612b90565b9350506020612e6586828701612c40565b9250506040612e7686828701612c40565b9150509250925092565b600060208284031215612e9657612e95613f94565b5b6000612ea484828501612ba5565b91505092915050565b600060208284031215612ec357612ec2613f94565b5b6000612ed184828501612bba565b91505092915050565b600060208284031215612ef057612eef613f94565b5b6000612efe84828501612bcf565b91505092915050565b600060208284031215612f1d57612f1c613f94565b5b600082013567ffffffffffffffff811115612f3b57612f3a613f8f565b5b612f4784828501612c12565b91505092915050565b600060208284031215612f6657612f65613f94565b5b6000612f7484828501612c40565b91505092915050565b60008060408385031215612f9457612f93613f94565b5b6000612fa285828601612c40565b9250506020612fb385828601612c40565b9150509250929050565b600060208284031215612fd357612fd2613f94565b5b6000612fe184828501612c55565b91505092915050565b6000806040838503121561300157613000613f94565b5b600061300f85828601612c55565b925050602061302085828601612b90565b9150509250929050565b60006130368383613072565b60208301905092915050565b600061304e8383613581565b60208301905092915050565b60006130668383613590565b60208301905092915050565b61307b81613cc2565b82525050565b61308a81613cc2565b82525050565b600061309b82613aad565b6130a58185613b0b565b93506130b083613a7d565b8060005b838110156130e15781516130c8888261302a565b97506130d383613ae4565b9250506001810190506130b4565b5085935050505092915050565b60006130f982613ab8565b6131038185613b1c565b935061310e83613a8d565b8060005b8381101561313f5781516131268882613042565b975061313183613af1565b925050600181019050613112565b5085935050505092915050565b600061315782613ac3565b6131618185613b2d565b935061316c83613a9d565b8060005b8381101561319d578151613184888261305a565b975061318f83613afe565b925050600181019050613170565b5085935050505092915050565b6131b381613cd4565b82525050565b60006131c482613ace565b6131ce8185613b3e565b93506131de818560208601613d60565b6131e781613f99565b840191505092915050565b60006131fd82613ad9565b6132078185613b5a565b9350613217818560208601613d60565b61322081613f99565b840191505092915050565b600061323682613ad9565b6132408185613b6b565b9350613250818560208601613d60565b80840191505092915050565b6000613269602183613b5a565b915061327482613faa565b604082019050919050565b600061328c602783613b5a565b915061329782613ff9565b604082019050919050565b60006132af603283613b5a565b91506132ba82614048565b604082019050919050565b60006132d2602683613b5a565b91506132dd82614097565b604082019050919050565b60006132f5602683613b5a565b9150613300826140e6565b604082019050919050565b6000613318602583613b5a565b915061332382614135565b604082019050919050565b600061333b601c83613b5a565b915061334682614184565b602082019050919050565b600061335e602583613b5a565b9150613369826141ad565b604082019050919050565b6000613381602483613b5a565b915061338c826141fc565b604082019050919050565b60006133a4601983613b5a565b91506133af8261424b565b602082019050919050565b60006133c7602c83613b5a565b91506133d282614274565b604082019050919050565b60006133ea603883613b5a565b91506133f5826142c3565b604082019050919050565b600061340d602a83613b5a565b915061341882614312565b604082019050919050565b6000613430602083613b5a565b915061343b82614361565b602082019050919050565b6000613453602183613b5a565b915061345e8261438a565b604082019050919050565b6000613476602c83613b5a565b9150613481826143d9565b604082019050919050565b6000613499602083613b5a565b91506134a482614428565b602082019050919050565b60006134bc602f83613b5a565b91506134c782614451565b604082019050919050565b60006134df602983613b5a565b91506134ea826144a0565b604082019050919050565b6000613502602183613b5a565b915061350d826144ef565b604082019050919050565b6000613525600083613b4f565b91506135308261453e565b600082019050919050565b6000613548601f83613b5a565b915061355382614541565b602082019050919050565b600061356b603183613b5a565b91506135768261456a565b604082019050919050565b61358a81613d0c565b82525050565b61359981613d3a565b82525050565b6135a881613d3a565b82525050565b6135b781613d44565b82525050565b60006135c9828561322b565b91506135d5828461322b565b91508190509392505050565b60006135ec82613518565b9150819050919050565b600060208201905061360b6000830184613081565b92915050565b60006080820190506136266000830187613081565b6136336020830186613081565b613640604083018561359f565b818103606083015261365281846131b9565b905095945050505050565b600060208201905081810360008301526136778184613090565b905092915050565b6000602082019050818103600083015261369981846130ee565b905092915050565b600060208201905081810360008301526136bb818461314c565b905092915050565b60006020820190506136d860008301846131aa565b92915050565b600060208201905081810360008301526136f881846131f2565b905092915050565b600060208201905081810360008301526137198161325c565b9050919050565b600060208201905081810360008301526137398161327f565b9050919050565b60006020820190508181036000830152613759816132a2565b9050919050565b60006020820190508181036000830152613779816132c5565b9050919050565b60006020820190508181036000830152613799816132e8565b9050919050565b600060208201905081810360008301526137b98161330b565b9050919050565b600060208201905081810360008301526137d98161332e565b9050919050565b600060208201905081810360008301526137f981613351565b9050919050565b6000602082019050818103600083015261381981613374565b9050919050565b6000602082019050818103600083015261383981613397565b9050919050565b60006020820190508181036000830152613859816133ba565b9050919050565b60006020820190508181036000830152613879816133dd565b9050919050565b6000602082019050818103600083015261389981613400565b9050919050565b600060208201905081810360008301526138b981613423565b9050919050565b600060208201905081810360008301526138d981613446565b9050919050565b600060208201905081810360008301526138f981613469565b9050919050565b600060208201905081810360008301526139198161348c565b9050919050565b60006020820190508181036000830152613939816134af565b9050919050565b60006020820190508181036000830152613959816134d2565b9050919050565b60006020820190508181036000830152613979816134f5565b9050919050565b600060208201905081810360008301526139998161353b565b9050919050565b600060208201905081810360008301526139b98161355e565b9050919050565b60006020820190506139d5600083018461359f565b92915050565b60006020820190506139f060008301846135ae565b92915050565b6000613a00613a11565b9050613a0c8282613dc5565b919050565b6000604051905090565b600067ffffffffffffffff821115613a3657613a35613f56565b5b613a3f82613f99565b9050602081019050919050565b600067ffffffffffffffff821115613a6757613a66613f56565b5b613a7082613f99565b9050602081019050919050565b6000819050602082019050919050565b6000819050602082019050919050565b6000819050602082019050919050565b600081519050919050565b600081519050919050565b600081519050919050565b600081519050919050565b600081519050919050565b6000602082019050919050565b6000602082019050919050565b6000602082019050919050565b600082825260208201905092915050565b600082825260208201905092915050565b600082825260208201905092915050565b600082825260208201905092915050565b600081905092915050565b600082825260208201905092915050565b600081905092915050565b6000613b8182613d3a565b9150613b8c83613d3a565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115613bc157613bc0613e9a565b5b828201905092915050565b6000613bd782613d44565b9150613be283613d44565b92508260ff03821115613bf857613bf7613e9a565b5b828201905092915050565b6000613c0e82613d3a565b9150613c1983613d3a565b925082613c2957613c28613ec9565b5b828204905092915050565b6000613c3f82613d3a565b9150613c4a83613d3a565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0483118215151615613c8357613c82613e9a565b5b828202905092915050565b6000613c9982613d3a565b9150613ca483613d3a565b925082821015613cb757613cb6613e9a565b5b828203905092915050565b6000613ccd82613d1a565b9050919050565b60008115159050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600061ffff82169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b600060ff82169050919050565b82818337600083830152505050565b60005b83811015613d7e578082015181840152602081019050613d63565b83811115613d8d576000848401525b50505050565b60006002820490506001821680613dab57607f821691505b60208210811415613dbf57613dbe613ef8565b5b50919050565b613dce82613f99565b810181811067ffffffffffffffff82111715613ded57613dec613f56565b5b80604052505050565b6000613e0182613d3a565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff821415613e3457613e33613e9a565b5b600182019050919050565b6000613e4a82613d44565b915060ff821415613e5e57613e5d613e9a565b5b600182019050919050565b6000613e7482613d3a565b9150613e7f83613d3a565b925082613e8f57613e8e613ec9565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b7f5761726d5570734e46543a20576974686472617720756e73756363657373667560008201527f6c00000000000000000000000000000000000000000000000000000000000000602082015250565b7f5761726d5570734e46543a206d696e7420616d6f756e7420657863656564732060008201527f6d6178696d756d00000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560008201527f63656976657220696d706c656d656e7465720000000000000000000000000000602082015250565b7f5761726d5570734e46543a204e6f7420656e6f756768206d696e74732072656d60008201527f61696e696e670000000000000000000000000000000000000000000000000000602082015250565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a207472616e736665722066726f6d20696e636f72726563742060008201527f6f776e6572000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000600082015250565b7f5761726d5570734e46543a20616c7265616479206d696e746564206d6178206160008201527f6d6f756e74000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a207472616e7366657220746f20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f766520746f2063616c6c657200000000000000600082015250565b7f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760008201527f6e6572206e6f7220617070726f76656420666f7220616c6c0000000000000000602082015250565b7f4552433732313a2062616c616e636520717565727920666f7220746865207a6560008201527f726f206164647265737300000000000000000000000000000000000000000000602082015250565b7f4552433732313a206d696e7420746f20746865207a65726f2061646472657373600082015250565b7f5761726d5570734e46543a204e6f7420656e6f7567682076616c75652073656e60008201527f7400000000000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008201527f6e6578697374656e7420746f6b656e0000000000000000000000000000000000602082015250565b7f5761726d5570734e46543a2063616e6e6f7420657863656564206d6178206d6960008201527f6e7420616d6f756e740000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f76616c20746f2063757272656e74206f776e6560008201527f7200000000000000000000000000000000000000000000000000000000000000602082015250565b50565b7f5761726d5570734e46543a206d696e7420686173206e6f74206f70656e656400600082015250565b7f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f60008201527f776e6572206e6f7220617070726f766564000000000000000000000000000000602082015250565b6145c281613cc2565b81146145cd57600080fd5b50565b6145d981613cd4565b81146145e457600080fd5b50565b6145f081613ce0565b81146145fb57600080fd5b50565b61460781613d3a565b811461461257600080fd5b50565b61461e81613d44565b811461462957600080fd5b5056fea26469706673582212205120144c303565828eef8fb61cb9d9ec102e02ac2c9145e07006c7c135e3f08664736f6c63430008060033

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.