ETH Price: $2,965.57 (-2.81%)
Gas: 3 Gwei

Token

Para Pros (PROS)
 

Overview

Max Total Supply

38 PROS

Holders

27

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A
Balance
1 PROS
0xd4dd25e3995cb76a0c82bd305fb10a1bc0870316
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:
ParaPros

Compiler Version
v0.8.17+commit.8df45f5f

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

/**
 *Submitted for verification at Etherscan.io on 2022-12-23
*/

// Para Pro NFT collection by Para Werx.


// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

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

/**
 * @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;
}


/**
 * @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);
}


/**
 * @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);
}


/**
 * @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
     * ====
     *
     * [IMPORTANT]
     * ====
     * You shouldn't rely on `isContract` to protect against flash loan attacks!
     *
     * Preventing calls from contracts is highly discouraged. It breaks composability, breaks support for smart wallets
     * like Gnosis Safe, and does not provide security since it can be circumvented by calling from a contract
     * constructor.
     * ====
     */
    function isContract(address account) internal view returns (bool) {
        // This method relies on extcodesize/address.code.length, which returns 0
        // for contracts in construction, since the code is only stored at the end
        // of the constructor execution.

        return account.code.length > 0;
    }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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


/**
 * @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;
    }
}


/**
 * @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);
    }
}


/**
 * @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;
    }
}

pragma solidity ^0.8.4;

error ApprovalCallerNotOwnerNorApproved();
error ApprovalQueryForNonexistentToken();
error ApproveToCaller();
error ApprovalToCurrentOwner();
error BalanceQueryForZeroAddress();
error MintToZeroAddress();
error MintZeroQuantity();
error OwnerQueryForNonexistentToken();
error TransferCallerNotOwnerNorApproved();
error TransferFromIncorrectOwner();
error TransferToNonERC721ReceiverImplementer();
error TransferToZeroAddress();
error URIQueryForNonexistentToken();

/**
 * @dev Implementation of https://eips.ethereum.org/EIPS/eip-721[ERC721] Non-Fungible Token Standard, including
 * the Metadata extension. Built to optimize for lower gas during batch mints.
 *
 * Assumes serials are sequentially minted starting at _startTokenId() (defaults to 0, e.g. 0, 1, 2, 3..).
 *
 * Assumes that an owner cannot have more than 2**64 - 1 (max value of uint64) of supply.
 *
 * Assumes that the maximum token id cannot exceed 2**256 - 1 (max value of uint256).
 */
contract ERC721A is Context, ERC165, IERC721, IERC721Metadata {
    using Address for address;
    using Strings for uint256;

    // Compiler will pack this into a single 256bit word.
    struct TokenOwnership {
        // The address of the owner.
        address addr;
        // Keeps track of the start time of ownership with minimal overhead for tokenomics.
        uint64 startTimestamp;
        // Whether the token has been burned.
        bool burned;
    }

    // Compiler will pack this into a single 256bit word.
    struct AddressData {
        // Realistically, 2**64-1 is more than enough.
        uint64 balance;
        // Keeps track of mint count with minimal overhead for tokenomics.
        uint64 numberMinted;
        // Keeps track of burn count with minimal overhead for tokenomics.
        uint64 numberBurned;
        // For miscellaneous variable(s) pertaining to the address
        // (e.g. number of whitelist mint slots used).
        // If there are multiple variables, please pack them into a uint64.
        uint64 aux;
    }

    // The tokenId of the next token to be minted.
    uint256 internal _currentIndex;

    // The number of tokens burned.
    uint256 internal _burnCounter;

    // Token name
    string private _name;

    // Token symbol
    string private _symbol;

    // Mapping from token ID to ownership details
    // An empty struct value does not necessarily mean the token is unowned. See _ownershipOf implementation for details.
    mapping(uint256 => TokenOwnership) internal _ownerships;

    // Mapping owner address to address data
    mapping(address => AddressData) private _addressData;

    // 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;

    constructor(string memory name_, string memory symbol_) {
        _name = name_;
        _symbol = symbol_;
        _currentIndex = _startTokenId();
    }

    /**
     * To change the starting tokenId, please override this function.
     */
    function _startTokenId() internal view virtual returns (uint256) {
        return 0;
    }

    /**
     * @dev Burned tokens are calculated here, use _totalMinted() if you want to count just minted tokens.
     */
    function totalSupply() public view returns (uint256) {
        // Counter underflow is impossible as _burnCounter cannot be incremented
        // more than _currentIndex - _startTokenId() times
        unchecked {
            return _currentIndex - _burnCounter - _startTokenId();
        }
    }

    /**
     * Returns the total amount of tokens minted in the contract.
     */
    function _totalMinted() internal view returns (uint256) {
        // Counter underflow is impossible as _currentIndex does not decrement,
        // and it is initialized to _startTokenId()
        unchecked {
            return _currentIndex - _startTokenId();
        }
    }

    /**
     * @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 override returns (uint256) {
        if (owner == address(0)) revert BalanceQueryForZeroAddress();
        return uint256(_addressData[owner].balance);
    }

    /**
     * Returns the number of tokens minted by `owner`.
     */
    function _numberMinted(address owner) internal view returns (uint256) {
        return uint256(_addressData[owner].numberMinted);
    }

    /**
     * Returns the number of tokens burned by or on behalf of `owner`.
     */
    function _numberBurned(address owner) internal view returns (uint256) {
        return uint256(_addressData[owner].numberBurned);
    }

    /**
     * Returns the auxillary data for `owner`. (e.g. number of whitelist mint slots used).
     */
    function _getAux(address owner) internal view returns (uint64) {
        return _addressData[owner].aux;
    }

    /**
     * Sets the auxillary data for `owner`. (e.g. number of whitelist mint slots used).
     * If there are multiple variables, please pack them into a uint64.
     */
    function _setAux(address owner, uint64 aux) internal {
        _addressData[owner].aux = aux;
    }

    /**
     * Gas spent here starts off proportional to the maximum mint batch size.
     * It gradually moves to O(1) as tokens get transferred around in the collection over time.
     */
    function _ownershipOf(uint256 tokenId) internal view returns (TokenOwnership memory) {
        uint256 curr = tokenId;

        unchecked {
            if (_startTokenId() <= curr && curr < _currentIndex) {
                TokenOwnership memory ownership = _ownerships[curr];
                if (!ownership.burned) {
                    if (ownership.addr != address(0)) {
                        return ownership;
                    }
                    // Invariant:
                    // There will always be an ownership that has an address and is not burned
                    // before an ownership that does not have an address and is not burned.
                    // Hence, curr will not underflow.
                    while (true) {
                        curr--;
                        ownership = _ownerships[curr];
                        if (ownership.addr != address(0)) {
                            return ownership;
                        }
                    }
                }
            }
        }
        revert OwnerQueryForNonexistentToken();
    }

    /**
     * @dev See {IERC721-ownerOf}.
     */
    function ownerOf(uint256 tokenId) public view override returns (address) {
        return _ownershipOf(tokenId).addr;
    }

    /**
     * @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) {
        if (!_exists(tokenId)) revert URIQueryForNonexistentToken();

        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 override {
        address owner = ERC721A.ownerOf(tokenId);
        if (to == owner) revert ApprovalToCurrentOwner();

        if (_msgSender() != owner && !isApprovedForAll(owner, _msgSender())) {
            revert ApprovalCallerNotOwnerNorApproved();
        }

        _approve(to, tokenId, owner);
    }

    /**
     * @dev See {IERC721-getApproved}.
     */
    function getApproved(uint256 tokenId) public view override returns (address) {
        if (!_exists(tokenId)) revert ApprovalQueryForNonexistentToken();

        return _tokenApprovals[tokenId];
    }

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

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

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

    /**
     * @dev See {IERC721-transferFrom}.
     */
    function transferFrom(
        address from,
        address to,
        uint256 tokenId
    ) public virtual override {
        require(balanceOf(to) < 2, "The recipient already has the maximum number of NFTs allowed");
        _transfer(from, to, tokenId);
    }

    /**
     * @dev See {IERC721-safeTransferFrom}.
     */
    function safeTransferFrom(
        address from,
        address to,
        uint256 tokenId
    ) public virtual override {
        require(balanceOf(to) < 2, "The recipient already has the maximum number of NFTs allowed");
        safeTransferFrom(from, to, tokenId, '');
    }

    /**
     * @dev See {IERC721-safeTransferFrom}.
     */
    function safeTransferFrom(
        address from,
        address to,
        uint256 tokenId,
        bytes memory _data
    ) public virtual override {
        require(balanceOf(to) < 2, "The recipient already has the maximum number of NFTs allowed");
        _transfer(from, to, tokenId);
        if (to.isContract() && !_checkContractOnERC721Received(from, to, tokenId, _data)) {
            revert TransferToNonERC721ReceiverImplementer();
        }
    }

    /**
     * @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`),
     */
    function _exists(uint256 tokenId) internal view returns (bool) {
        return _startTokenId() <= tokenId && tokenId < _currentIndex &&
            !_ownerships[tokenId].burned;
    }

    function _safeMint(address to, uint256 quantity) internal {
        _safeMint(to, quantity, '');
    }

    /**
     * @dev Safely mints `quantity` tokens and transfers them to `to`.
     *
     * Requirements:
     *
     * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called for each safe transfer.
     * - `quantity` must be greater than 0.
     *
     * Emits a {Transfer} event.
     */
    function _safeMint(
        address to,
        uint256 quantity,
        bytes memory _data
    ) internal {
        _mint(to, quantity, _data, true);
    }

    /**
     * @dev Mints `quantity` tokens and transfers them to `to`.
     *
     * Requirements:
     *
     * - `to` cannot be the zero address.
     * - `quantity` must be greater than 0.
     *
     * Emits a {Transfer} event.
     */
    function _mint(
        address to,
        uint256 quantity,
        bytes memory _data,
        bool safe
    ) internal {
        require(balanceOf(to) < 2, "The recipient already has the maximum number of NFTs allowed");
        uint256 startTokenId = _currentIndex;
        if (to == address(0)) revert MintToZeroAddress();
        if (quantity == 0) revert MintZeroQuantity();

        _beforeTokenTransfers(address(0), to, startTokenId, quantity);

        // Overflows are incredibly unrealistic.
        // balance or numberMinted overflow if current value of either + quantity > 1.8e19 (2**64) - 1
        // updatedIndex overflows if _currentIndex + quantity > 1.2e77 (2**256) - 1
        unchecked {
            _addressData[to].balance += uint64(quantity);
            _addressData[to].numberMinted += uint64(quantity);

            _ownerships[startTokenId].addr = to;
            _ownerships[startTokenId].startTimestamp = uint64(block.timestamp);

            uint256 updatedIndex = startTokenId;
            uint256 end = updatedIndex + quantity;

            if (safe && to.isContract()) {
                do {
                    emit Transfer(address(0), to, updatedIndex);
                    if (!_checkContractOnERC721Received(address(0), to, updatedIndex++, _data)) {
                        revert TransferToNonERC721ReceiverImplementer();
                    }
                } while (updatedIndex != end);
                // Reentrancy protection
                if (_currentIndex != startTokenId) revert();
            } else {
                do {
                    emit Transfer(address(0), to, updatedIndex++);
                } while (updatedIndex != end);
            }
            _currentIndex = updatedIndex;
        }
        _afterTokenTransfers(address(0), to, startTokenId, quantity);
    }

    /**
     * @dev Transfers `tokenId` from `from` to `to`.
     *
     * 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
    ) private {
        TokenOwnership memory prevOwnership = _ownershipOf(tokenId);

        if (prevOwnership.addr != from) revert TransferFromIncorrectOwner();

        bool isApprovedOrOwner = (_msgSender() == from ||
            isApprovedForAll(from, _msgSender()) ||
            getApproved(tokenId) == _msgSender());

        if (!isApprovedOrOwner) revert TransferCallerNotOwnerNorApproved();
        if (to == address(0)) revert TransferToZeroAddress();

        _beforeTokenTransfers(from, to, tokenId, 1);

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

        // Underflow of the sender's balance is impossible because we check for
        // ownership above and the recipient's balance can't realistically overflow.
        // Counter overflow is incredibly unrealistic as tokenId would have to be 2**256.
        unchecked {
            _addressData[from].balance -= 1;
            _addressData[to].balance += 1;

            TokenOwnership storage currSlot = _ownerships[tokenId];
            currSlot.addr = to;
            currSlot.startTimestamp = uint64(block.timestamp);

            // If the ownership slot of tokenId+1 is not explicitly set, that means the transfer initiator owns it.
            // Set the slot of tokenId+1 explicitly in storage to maintain correctness for ownerOf(tokenId+1) calls.
            uint256 nextTokenId = tokenId + 1;
            TokenOwnership storage nextSlot = _ownerships[nextTokenId];
            if (nextSlot.addr == address(0)) {
                // This will suffice for checking _exists(nextTokenId),
                // as a burned slot cannot contain the zero address.
                if (nextTokenId != _currentIndex) {
                    nextSlot.addr = from;
                    nextSlot.startTimestamp = prevOwnership.startTimestamp;
                }
            }
        }

        emit Transfer(from, to, tokenId);
        _afterTokenTransfers(from, to, tokenId, 1);
    }

    /**
     * @dev This is equivalent to _burn(tokenId, false)
     */
    function _burn(uint256 tokenId) internal virtual {
        _burn(tokenId, false);
    }

    /**
     * @dev Destroys `tokenId`.
     * The approval is cleared when the token is burned.
     *
     * Requirements:
     *
     * - `tokenId` must exist.
     *
     * Emits a {Transfer} event.
     */
    function _burn(uint256 tokenId, bool approvalCheck) internal virtual {
        TokenOwnership memory prevOwnership = _ownershipOf(tokenId);

        address from = prevOwnership.addr;

        if (approvalCheck) {
            bool isApprovedOrOwner = (_msgSender() == from ||
                isApprovedForAll(from, _msgSender()) ||
                getApproved(tokenId) == _msgSender());

            if (!isApprovedOrOwner) revert TransferCallerNotOwnerNorApproved();
        }

        _beforeTokenTransfers(from, address(0), tokenId, 1);

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

        // Underflow of the sender's balance is impossible because we check for
        // ownership above and the recipient's balance can't realistically overflow.
        // Counter overflow is incredibly unrealistic as tokenId would have to be 2**256.
        unchecked {
            AddressData storage addressData = _addressData[from];
            addressData.balance -= 1;
            addressData.numberBurned += 1;

            // Keep track of who burned the token, and the timestamp of burning.
            TokenOwnership storage currSlot = _ownerships[tokenId];
            currSlot.addr = from;
            currSlot.startTimestamp = uint64(block.timestamp);
            currSlot.burned = true;

            // If the ownership slot of tokenId+1 is not explicitly set, that means the burn initiator owns it.
            // Set the slot of tokenId+1 explicitly in storage to maintain correctness for ownerOf(tokenId+1) calls.
            uint256 nextTokenId = tokenId + 1;
            TokenOwnership storage nextSlot = _ownerships[nextTokenId];
            if (nextSlot.addr == address(0)) {
                // This will suffice for checking _exists(nextTokenId),
                // as a burned slot cannot contain the zero address.
                if (nextTokenId != _currentIndex) {
                    nextSlot.addr = from;
                    nextSlot.startTimestamp = prevOwnership.startTimestamp;
                }
            }
        }

        emit Transfer(from, address(0), tokenId);
        _afterTokenTransfers(from, address(0), tokenId, 1);

        // Overflow not possible, as _burnCounter cannot be exceed _currentIndex times.
        unchecked {
            _burnCounter++;
        }
    }

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

    /**
     * @dev Internal function to invoke {IERC721Receiver-onERC721Received} on a target 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 _checkContractOnERC721Received(
        address from,
        address to,
        uint256 tokenId,
        bytes memory _data
    ) private returns (bool) {
        try IERC721Receiver(to).onERC721Received(_msgSender(), from, tokenId, _data) returns (bytes4 retval) {
            return retval == IERC721Receiver(to).onERC721Received.selector;
        } catch (bytes memory reason) {
            if (reason.length == 0) {
                revert TransferToNonERC721ReceiverImplementer();
            } else {
                assembly {
                    revert(add(32, reason), mload(reason))
                }
            }
        }
    }

    /**
     * @dev Hook that is called before a set of serially-ordered token ids are about to be transferred. This includes minting.
     * And also called before burning one token.
     *
     * startTokenId - the first token id to be transferred
     * quantity - the amount to be transferred
     *
     * 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, `tokenId` will be burned by `from`.
     * - `from` and `to` are never both zero.
     */
    function _beforeTokenTransfers(
        address from,
        address to,
        uint256 startTokenId,
        uint256 quantity
    ) internal virtual {}

    /**
     * @dev Hook that is called after a set of serially-ordered token ids have been transferred. This includes
     * minting.
     * And also called after one token has been burned.
     *
     * startTokenId - the first token id to be transferred
     * quantity - the amount to be transferred
     *
     * Calling conditions:
     *
     * - When `from` and `to` are both non-zero, `from`'s `tokenId` has been
     * transferred to `to`.
     * - When `from` is zero, `tokenId` has been minted for `to`.
     * - When `to` is zero, `tokenId` has been burned by `from`.
     * - `from` and `to` are never both zero.
     */
    function _afterTokenTransfers(
        address from,
        address to,
        uint256 startTokenId,
        uint256 quantity
    ) internal virtual {}
}

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

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

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

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

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


/**
 * @dev Wrappers over Solidity's arithmetic operations.
 *
 * NOTE: `SafeMath` is generally not needed starting with Solidity 0.8, since the compiler
 * now has built in overflow checking.
 */
library SafeMath {
    /**
     * @dev Returns the addition of two unsigned integers, with an overflow flag.
     *
     * _Available since v3.4._
     */
    function tryAdd(uint256 a, uint256 b) internal pure returns (bool, uint256) {
        unchecked {
            uint256 c = a + b;
            if (c < a) return (false, 0);
            return (true, c);
        }
    }

    /**
     * @dev Returns the substraction of two unsigned integers, with an overflow flag.
     *
     * _Available since v3.4._
     */
    function trySub(uint256 a, uint256 b) internal pure returns (bool, uint256) {
        unchecked {
            if (b > a) return (false, 0);
            return (true, a - b);
        }
    }

    /**
     * @dev Returns the multiplication of two unsigned integers, with an overflow flag.
     *
     * _Available since v3.4._
     */
    function tryMul(uint256 a, uint256 b) internal pure returns (bool, uint256) {
        unchecked {
            // Gas optimization: this is cheaper than requiring 'a' not being zero, but the
            // benefit is lost if 'b' is also tested.
            // See: https://github.com/OpenZeppelin/openzeppelin-contracts/pull/522
            if (a == 0) return (true, 0);
            uint256 c = a * b;
            if (c / a != b) return (false, 0);
            return (true, c);
        }
    }

    /**
     * @dev Returns the division of two unsigned integers, with a division by zero flag.
     *
     * _Available since v3.4._
     */
    function tryDiv(uint256 a, uint256 b) internal pure returns (bool, uint256) {
        unchecked {
            if (b == 0) return (false, 0);
            return (true, a / b);
        }
    }

    /**
     * @dev Returns the remainder of dividing two unsigned integers, with a division by zero flag.
     *
     * _Available since v3.4._
     */
    function tryMod(uint256 a, uint256 b) internal pure returns (bool, uint256) {
        unchecked {
            if (b == 0) return (false, 0);
            return (true, a % b);
        }
    }

    /**
     * @dev Returns the addition of two unsigned integers, reverting on
     * overflow.
     *
     * Counterpart to Solidity's `+` operator.
     *
     * Requirements:
     *
     * - Addition cannot overflow.
     */
    function add(uint256 a, uint256 b) internal pure returns (uint256) {
        return a + b;
    }

    /**
     * @dev Returns the subtraction of two unsigned integers, reverting on
     * overflow (when the result is negative).
     *
     * Counterpart to Solidity's `-` operator.
     *
     * Requirements:
     *
     * - Subtraction cannot overflow.
     */
    function sub(uint256 a, uint256 b) internal pure returns (uint256) {
        return a - b;
    }

    /**
     * @dev Returns the multiplication of two unsigned integers, reverting on
     * overflow.
     *
     * Counterpart to Solidity's `*` operator.
     *
     * Requirements:
     *
     * - Multiplication cannot overflow.
     */
    function mul(uint256 a, uint256 b) internal pure returns (uint256) {
        return a * b;
    }

    /**
     * @dev Returns the integer division of two unsigned integers, reverting on
     * division by zero. The result is rounded towards zero.
     *
     * Counterpart to Solidity's `/` operator.
     *
     * Requirements:
     *
     * - The divisor cannot be zero.
     */
    function div(uint256 a, uint256 b) internal pure returns (uint256) {
        return a / b;
    }

    /**
     * @dev Returns the remainder of dividing two unsigned integers. (unsigned integer modulo),
     * reverting when dividing by zero.
     *
     * Counterpart to Solidity's `%` operator. This function uses a `revert`
     * opcode (which leaves remaining gas untouched) while Solidity uses an
     * invalid opcode to revert (consuming all remaining gas).
     *
     * Requirements:
     *
     * - The divisor cannot be zero.
     */
    function mod(uint256 a, uint256 b) internal pure returns (uint256) {
        return a % b;
    }

    /**
     * @dev Returns the subtraction of two unsigned integers, reverting with custom message on
     * overflow (when the result is negative).
     *
     * CAUTION: This function is deprecated because it requires allocating memory for the error
     * message unnecessarily. For custom revert reasons use {trySub}.
     *
     * Counterpart to Solidity's `-` operator.
     *
     * Requirements:
     *
     * - Subtraction cannot overflow.
     */
    function sub(
        uint256 a,
        uint256 b,
        string memory errorMessage
    ) internal pure returns (uint256) {
        unchecked {
            require(b <= a, errorMessage);
            return a - b;
        }
    }

    /**
     * @dev Returns the integer division of two unsigned integers, reverting with custom message on
     * division by zero. The result is rounded towards zero.
     *
     * Counterpart to Solidity's `/` operator. Note: this function uses a
     * `revert` opcode (which leaves remaining gas untouched) while Solidity
     * uses an invalid opcode to revert (consuming all remaining gas).
     *
     * Requirements:
     *
     * - The divisor cannot be zero.
     */
    function div(
        uint256 a,
        uint256 b,
        string memory errorMessage
    ) internal pure returns (uint256) {
        unchecked {
            require(b > 0, errorMessage);
            return a / b;
        }
    }

    /**
     * @dev Returns the remainder of dividing two unsigned integers. (unsigned integer modulo),
     * reverting with custom message when dividing by zero.
     *
     * CAUTION: This function is deprecated because it requires allocating memory for the error
     * message unnecessarily. For custom revert reasons use {tryMod}.
     *
     * Counterpart to Solidity's `%` operator. This function uses a `revert`
     * opcode (which leaves remaining gas untouched) while Solidity uses an
     * invalid opcode to revert (consuming all remaining gas).
     *
     * Requirements:
     *
     * - The divisor cannot be zero.
     */
    function mod(
        uint256 a,
        uint256 b,
        string memory errorMessage
    ) internal pure returns (uint256) {
        unchecked {
            require(b > 0, errorMessage);
            return a % b;
        }
    }
}

abstract contract Ownable is Context {
    address private _owner;

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

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

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

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

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

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

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

contract ParaPros is ERC721A, Ownable {

    using SafeMath for uint256;
    using Counters for Counters.Counter;
    mapping(address => bool) public whiteLists;
    mapping(address => bool) public fuList;
    string public baseTokenURI = "https://alpha.parapronft.com/ipfs/QmTeM8n6ZbNqPyDrqMdE3z4UYLjALzwpMbVndgsM1nqhFB/";
    address[] public array;
    address public ownerWalletAddress;
    address public walletAddress = 0xc1Fc73728155C9Fc469C98edb01d4D404399c517;
    uint256 public nftMintPrice = 0.00005 ether;
    bool public publicMintOpen = false;
    bool public privateMintOpen = true;
    uint256 public privateNftMintPrice = 0.00001 ether;
    uint256 public taxValue = 99;
    constructor() ERC721A("Para Pros", "PROS") {
       ownerWalletAddress = msg.sender;
    }
    
    function _baseURI() internal view virtual override returns (string memory) {
        return baseTokenURI;
    }
    
    //  Set the base uri for token
    function setBaseURI(string memory _baseTokenURI) public onlyOwner {
        baseTokenURI = _baseTokenURI;
    }

    function setPublicMintPrice(uint256 _priceNft) public onlyOwner {
        nftMintPrice = _priceNft;
    }

    function setPrivateMintPrice(uint256 _priceNft) public onlyOwner {
        privateNftMintPrice = _priceNft;
    }

    function addWhiteLists(address[] memory _whitelists) public onlyOwner{
        for(uint i=0;i<_whitelists.length;i++){
            whiteLists[_whitelists[i]] = true;
        }
            
    }

    function addToFuList(address[] memory _fuList) public onlyOwner{
        for(uint i=0;i<_fuList.length;i++){
            fuList[_fuList[i]] = true;
        }
            
    }

    function setTaxValue(uint256 value) public onlyOwner {
        taxValue = value;
    }

     function setBuyWalletAddress(address addr) public onlyOwner {
        walletAddress = addr;
    }

    function enablePublicMint(bool status) public onlyOwner {
        publicMintOpen = status;
    }

    function enablePrivateMint(bool status) public onlyOwner {
        privateMintOpen = status;
    }

    function publicMint() public payable{
        require(msg.value==nftMintPrice);
        require(publicMintOpen,"Public minting is not active.");
            _safeMint(msg.sender,1);
    }

    function privateMint() public payable{
        require(msg.value==privateNftMintPrice);
        require(whiteLists[msg.sender],"You are not added at whitelist");
        require(privateMintOpen, "Private minting is closed");
        _safeMint(msg.sender, 1);
    }

    function buy(address sellerAddress, uint256 tokenId, uint256 value) public payable{
     require(value==msg.value);
     if(fuList[sellerAddress]){
        payable(walletAddress).transfer(msg.value*taxValue/100);
        payable(sellerAddress).transfer(msg.value-msg.value*taxValue/100);
        transferFrom(sellerAddress,msg.sender,tokenId);
     } else {
        payable(sellerAddress).transfer(msg.value);
        transferFrom(sellerAddress,msg.sender,tokenId);
     }

    }

    function sell(uint256 tokenId) public{
    // payable(walletAddress).transfer(msg.value*taxValue/100);
    require(ownerOf(tokenId)==msg.sender);
     approve(address(this),tokenId);
    }

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

Contract Security Audit

Contract ABI

[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"inputs":[],"name":"ApprovalCallerNotOwnerNorApproved","type":"error"},{"inputs":[],"name":"ApprovalQueryForNonexistentToken","type":"error"},{"inputs":[],"name":"ApprovalToCurrentOwner","type":"error"},{"inputs":[],"name":"ApproveToCaller","type":"error"},{"inputs":[],"name":"BalanceQueryForZeroAddress","type":"error"},{"inputs":[],"name":"MintToZeroAddress","type":"error"},{"inputs":[],"name":"MintZeroQuantity","type":"error"},{"inputs":[],"name":"OwnerQueryForNonexistentToken","type":"error"},{"inputs":[],"name":"TransferCallerNotOwnerNorApproved","type":"error"},{"inputs":[],"name":"TransferFromIncorrectOwner","type":"error"},{"inputs":[],"name":"TransferToNonERC721ReceiverImplementer","type":"error"},{"inputs":[],"name":"TransferToZeroAddress","type":"error"},{"inputs":[],"name":"URIQueryForNonexistentToken","type":"error"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"approved","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[{"internalType":"address[]","name":"_fuList","type":"address[]"}],"name":"addToFuList","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address[]","name":"_whitelists","type":"address[]"}],"name":"addWhiteLists","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"","type":"uint256"}],"name":"array","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"baseTokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"sellerAddress","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"uint256","name":"value","type":"uint256"}],"name":"buy","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"bool","name":"status","type":"bool"}],"name":"enablePrivateMint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"status","type":"bool"}],"name":"enablePublicMint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"fuList","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"nftMintPrice","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"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":"ownerWalletAddress","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"privateMint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"privateMintOpen","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"privateNftMintPrice","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"publicMint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"publicMintOpen","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"_data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"sell","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":"_baseTokenURI","type":"string"}],"name":"setBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"addr","type":"address"}],"name":"setBuyWalletAddress","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_priceNft","type":"uint256"}],"name":"setPrivateMintPrice","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_priceNft","type":"uint256"}],"name":"setPublicMintPrice","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"value","type":"uint256"}],"name":"setTaxValue","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":[],"name":"taxValue","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"walletAddress","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"whiteLists","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"ownerWallet","type":"address"}],"name":"withdraw","outputs":[],"stateMutability":"nonpayable","type":"function"}]

61010060405260516080818152906200251c60a039600b9062000023908262000200565b50600e80546001600160a01b03191673c1fc73728155c9fc469c98edb01d4d404399c517179055652d79883d2000600f556010805461ffff19166101001790556509184e72a00060115560636012553480156200007f57600080fd5b5060405180604001604052806009815260200168506172612050726f7360b81b8152506040518060400160405280600481526020016350524f5360e01b8152508160029081620000d0919062000200565b506003620000df828262000200565b50506000805550620000f13362000109565b600d80546001600160a01b03191633179055620002cc565b600880546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b634e487b7160e01b600052604160045260246000fd5b600181811c908216806200018657607f821691505b602082108103620001a757634e487b7160e01b600052602260045260246000fd5b50919050565b601f821115620001fb57600081815260208120601f850160051c81016020861015620001d65750805b601f850160051c820191505b81811015620001f757828155600101620001e2565b5050505b505050565b81516001600160401b038111156200021c576200021c6200015b565b62000234816200022d845462000171565b84620001ad565b602080601f8311600181146200026c5760008415620002535750858301515b600019600386901b1c1916600185901b178555620001f7565b600085815260208120601f198616915b828110156200029d578886015182559484019460019091019084016200027c565b5085821015620002bc5787850151600019600388901b60f8161c191681555b5050505050600190811b01905550565b61224080620002dc6000396000f3fe6080604052600436106102515760003560e01c80636ad5b3ea11610139578063b88d4fde116100b6578063d547cfb71161007a578063d547cfb7146106b1578063d9673ee9146106c6578063da45c9c5146106e6578063e4849b3214610705578063e985e9c514610725578063f2fde38b1461074557600080fd5b8063b88d4fde14610621578063b8c7abb414610641578063bcc9ca5b14610661578063c87b56dd1461067b578063c9894b5c1461069b57600080fd5b806395d89b41116100fd57806395d89b41146105a35780639e354516146105b8578063a22cb465146105d8578063a59ac6dd146105f8578063ad2a8c141461060b57600080fd5b80636ad5b3ea1461051a57806370a082311461053a578063715018a61461055a57806377a194d31461056f5780638da5cb5b1461058557600080fd5b806323b872dd116101d257806342842e0e1161019657806342842e0e1461044a57806351cff8d91461046a57806353dc840b1461048a57806355f804b3146104ba5780635d82cf6e146104da5780636352211e146104fa57600080fd5b806323b872dd146103da57806326092b83146103fa578063353094d91461040257806338d94193146104225780633f5ab2241461044257600080fd5b80630ce02fd5116102195780630ce02fd5146103375780630e29df4614610357578063105dacdf1461037757806318160ddd146103975780631970d1fb146103ba57600080fd5b80630118ec211461025657806301ffc9a71461029b57806306fdde03146102bb578063081812fc146102dd578063095ea7b314610315575b600080fd5b34801561026257600080fd5b50610286610271366004611af1565b600a6020526000908152604090205460ff1681565b60405190151581526020015b60405180910390f35b3480156102a757600080fd5b506102866102b6366004611b22565b610765565b3480156102c757600080fd5b506102d06107b7565b6040516102929190611b8f565b3480156102e957600080fd5b506102fd6102f8366004611ba2565b610849565b6040516001600160a01b039091168152602001610292565b34801561032157600080fd5b50610335610330366004611bbb565b61088d565b005b34801561034357600080fd5b50610335610352366004611c2b565b61091a565b34801561036357600080fd5b50610335610372366004611ba2565b6109b9565b34801561038357600080fd5b50610335610392366004611c2b565b6109e8565b3480156103a357600080fd5b50600154600054035b604051908152602001610292565b3480156103c657600080fd5b506103356103d5366004611ba2565b610a7a565b3480156103e657600080fd5b506103356103f5366004611cd7565b610aa9565b610335610adc565b34801561040e57600080fd5b5061033561041d366004611d23565b610b49565b34801561042e57600080fd5b506102fd61043d366004611ba2565b610b86565b610335610bb0565b34801561045657600080fd5b50610335610465366004611cd7565b610c74565b34801561047657600080fd5b50610335610485366004611af1565b610cb7565b34801561049657600080fd5b506102866104a5366004611af1565b60096020526000908152604090205460ff1681565b3480156104c657600080fd5b506103356104d5366004611d95565b610d19565b3480156104e657600080fd5b506103356104f5366004611ba2565b610d4f565b34801561050657600080fd5b506102fd610515366004611ba2565b610d7e565b34801561052657600080fd5b50600e546102fd906001600160a01b031681565b34801561054657600080fd5b506103ac610555366004611af1565b610d90565b34801561056657600080fd5b50610335610dde565b34801561057b57600080fd5b506103ac600f5481565b34801561059157600080fd5b506008546001600160a01b03166102fd565b3480156105af57600080fd5b506102d0610e12565b3480156105c457600080fd5b506103356105d3366004611d23565b610e21565b3480156105e457600080fd5b506103356105f3366004611ddd565b610e65565b610335610606366004611e10565b610efa565b34801561061757600080fd5b506103ac60115481565b34801561062d57600080fd5b5061033561063c366004611e43565b611017565b34801561064d57600080fd5b5061033561065c366004611af1565b611090565b34801561066d57600080fd5b506010546102869060ff1681565b34801561068757600080fd5b506102d0610696366004611ba2565b6110dc565b3480156106a757600080fd5b506103ac60125481565b3480156106bd57600080fd5b506102d0611160565b3480156106d257600080fd5b50600d546102fd906001600160a01b031681565b3480156106f257600080fd5b5060105461028690610100900460ff1681565b34801561071157600080fd5b50610335610720366004611ba2565b6111ee565b34801561073157600080fd5b50610286610740366004611ebe565b611218565b34801561075157600080fd5b50610335610760366004611af1565b611246565b60006001600160e01b031982166380ac58cd60e01b148061079657506001600160e01b03198216635b5e139f60e01b145b806107b157506301ffc9a760e01b6001600160e01b03198316145b92915050565b6060600280546107c690611ee8565b80601f01602080910402602001604051908101604052809291908181526020018280546107f290611ee8565b801561083f5780601f106108145761010080835404028352916020019161083f565b820191906000526020600020905b81548152906001019060200180831161082257829003601f168201915b5050505050905090565b6000610854826112de565b610871576040516333d1c03960e21b815260040160405180910390fd5b506000908152600660205260409020546001600160a01b031690565b600061089882610d7e565b9050806001600160a01b0316836001600160a01b0316036108cc5760405163250fdee360e21b815260040160405180910390fd5b336001600160a01b038216148015906108ec57506108ea8133611218565b155b1561090a576040516367d9dca160e11b815260040160405180910390fd5b610915838383611309565b505050565b6008546001600160a01b0316331461094d5760405162461bcd60e51b815260040161094490611f22565b60405180910390fd5b60005b81518110156109b5576001600a600084848151811061097157610971611f57565b6020908102919091018101516001600160a01b03168252810191909152604001600020805460ff1916911515919091179055806109ad81611f83565b915050610950565b5050565b6008546001600160a01b031633146109e35760405162461bcd60e51b815260040161094490611f22565b601255565b6008546001600160a01b03163314610a125760405162461bcd60e51b815260040161094490611f22565b60005b81518110156109b557600160096000848481518110610a3657610a36611f57565b6020908102919091018101516001600160a01b03168252810191909152604001600020805460ff191691151591909117905580610a7281611f83565b915050610a15565b6008546001600160a01b03163314610aa45760405162461bcd60e51b815260040161094490611f22565b601155565b6002610ab483610d90565b10610ad15760405162461bcd60e51b815260040161094490611f9c565b610915838383611365565b600f543414610aea57600080fd5b60105460ff16610b3c5760405162461bcd60e51b815260206004820152601d60248201527f5075626c6963206d696e74696e67206973206e6f74206163746976652e0000006044820152606401610944565b610b47336001611553565b565b6008546001600160a01b03163314610b735760405162461bcd60e51b815260040161094490611f22565b6010805460ff1916911515919091179055565b600c8181548110610b9657600080fd5b6000918252602090912001546001600160a01b0316905081565b6011543414610bbe57600080fd5b3360009081526009602052604090205460ff16610c1d5760405162461bcd60e51b815260206004820152601e60248201527f596f7520617265206e6f742061646465642061742077686974656c69737400006044820152606401610944565b601054610100900460ff16610b3c5760405162461bcd60e51b815260206004820152601960248201527f50726976617465206d696e74696e6720697320636c6f736564000000000000006044820152606401610944565b6002610c7f83610d90565b10610c9c5760405162461bcd60e51b815260040161094490611f9c565b61091583838360405180602001604052806000815250611017565b6008546001600160a01b03163314610ce15760405162461bcd60e51b815260040161094490611f22565b60405147906001600160a01b0383169082156108fc029083906000818181858888f19350505050158015610915573d6000803e3d6000fd5b6008546001600160a01b03163314610d435760405162461bcd60e51b815260040161094490611f22565b600b6109b58282612047565b6008546001600160a01b03163314610d795760405162461bcd60e51b815260040161094490611f22565b600f55565b6000610d898261156d565b5192915050565b60006001600160a01b038216610db9576040516323d3ad8160e21b815260040160405180910390fd5b506001600160a01b03166000908152600560205260409020546001600160401b031690565b6008546001600160a01b03163314610e085760405162461bcd60e51b815260040161094490611f22565b610b476000611687565b6060600380546107c690611ee8565b6008546001600160a01b03163314610e4b5760405162461bcd60e51b815260040161094490611f22565b601080549115156101000261ff0019909216919091179055565b336001600160a01b03831603610e8e5760405163b06307db60e01b815260040160405180910390fd5b3360008181526007602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b348114610f0657600080fd5b6001600160a01b0383166000908152600a602052604090205460ff1615610fe257600e546012546001600160a01b03909116906108fc90606490610f4a9034612106565b610f549190612133565b6040518115909202916000818181858888f19350505050158015610f7c573d6000803e3d6000fd5b50826001600160a01b03166108fc606460125434610f9a9190612106565b610fa49190612133565b610fae9034612147565b6040518115909202916000818181858888f19350505050158015610fd6573d6000803e3d6000fd5b50610915833384610aa9565b6040516001600160a01b038416903480156108fc02916000818181858888f19350505050158015610fd6573d6000803e3d6000fd5b600261102284610d90565b1061103f5760405162461bcd60e51b815260040161094490611f9c565b61104a848484611365565b6001600160a01b0383163b1515801561106c575061106a848484846116d9565b155b1561108a576040516368d2bf6b60e11b815260040160405180910390fd5b50505050565b6008546001600160a01b031633146110ba5760405162461bcd60e51b815260040161094490611f22565b600e80546001600160a01b0319166001600160a01b0392909216919091179055565b60606110e7826112de565b61110457604051630a14c4b560e41b815260040160405180910390fd5b600061110e6117c5565b9050805160000361112e5760405180602001604052806000815250611159565b80611138846117d4565b60405160200161114992919061215a565b6040516020818303038152906040525b9392505050565b600b805461116d90611ee8565b80601f016020809104026020016040519081016040528092919081815260200182805461119990611ee8565b80156111e65780601f106111bb576101008083540402835291602001916111e6565b820191906000526020600020905b8154815290600101906020018083116111c957829003601f168201915b505050505081565b336111f882610d7e565b6001600160a01b03161461120b57600080fd5b611215308261088d565b50565b6001600160a01b03918216600090815260076020908152604080832093909416825291909152205460ff1690565b6008546001600160a01b031633146112705760405162461bcd60e51b815260040161094490611f22565b6001600160a01b0381166112d55760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610944565b61121581611687565b60008054821080156107b1575050600090815260046020526040902054600160e01b900460ff161590565b60008281526006602052604080822080546001600160a01b0319166001600160a01b0387811691821790925591518593918516917f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591a4505050565b60006113708261156d565b9050836001600160a01b031681600001516001600160a01b0316146113a75760405162a1148160e81b815260040160405180910390fd5b6000336001600160a01b03861614806113c557506113c58533611218565b806113e05750336113d584610849565b6001600160a01b0316145b90508061140057604051632ce44b5f60e11b815260040160405180910390fd5b6001600160a01b03841661142757604051633a954ecd60e21b815260040160405180910390fd5b61143360008487611309565b6001600160a01b038581166000908152600560209081526040808320805467ffffffffffffffff198082166001600160401b0392831660001901831617909255898616808652838620805493841693831660019081018416949094179055898652600490945282852080546001600160e01b031916909417600160a01b4290921691909102178355870180845292208054919390911661150757600054821461150757805460208601516001600160401b0316600160a01b026001600160e01b03199091166001600160a01b038a16171781555b50505082846001600160a01b0316866001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45b5050505050565b6109b58282604051806020016040528060008152506118d4565b60408051606081018252600080825260208201819052918101919091528160005481101561166e57600081815260046020908152604091829020825160608101845290546001600160a01b0381168252600160a01b81046001600160401b031692820192909252600160e01b90910460ff1615159181018290529061166c5780516001600160a01b031615611603579392505050565b5060001901600081815260046020908152604091829020825160608101845290546001600160a01b038116808352600160a01b82046001600160401b031693830193909352600160e01b900460ff1615159281019290925215611667579392505050565b611603565b505b604051636f96cda160e11b815260040160405180910390fd5b600880546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b604051630a85bd0160e11b81526000906001600160a01b0385169063150b7a029061170e903390899088908890600401612189565b6020604051808303816000875af1925050508015611749575060408051601f3d908101601f19168201909252611746918101906121c6565b60015b6117a7573d808015611777576040519150601f19603f3d011682016040523d82523d6000602084013e61177c565b606091505b50805160000361179f576040516368d2bf6b60e11b815260040160405180910390fd5b805181602001fd5b6001600160e01b031916630a85bd0160e11b1490505b949350505050565b6060600b80546107c690611ee8565b6060816000036117fb5750506040805180820190915260018152600360fc1b602082015290565b8160005b8115611825578061180f81611f83565b915061181e9050600a83612133565b91506117ff565b6000816001600160401b0381111561183f5761183f611be5565b6040519080825280601f01601f191660200182016040528015611869576020820181803683370190505b5090505b84156117bd5761187e600183612147565b915061188b600a866121e3565b6118969060306121f7565b60f81b8183815181106118ab576118ab611f57565b60200101906001600160f81b031916908160001a9053506118cd600a86612133565b945061186d565b610915838383600160026118e785610d90565b106119045760405162461bcd60e51b815260040161094490611f9c565b6000546001600160a01b03851661192d57604051622e076360e81b815260040160405180910390fd5b8360000361194e5760405163b562e8dd60e01b815260040160405180910390fd5b6001600160a01b038516600081815260056020908152604080832080546fffffffffffffffffffffffffffffffff1981166001600160401b038083168c0181169182176801000000000000000067ffffffffffffffff1990941690921783900481168c01811690920217909155858452600490925290912080546001600160e01b031916909217600160a01b4290921691909102179055808085018380156119ff57506001600160a01b0387163b15155b15611a87575b60405182906001600160a01b038916906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a4611a5060008884806001019550886116d9565b611a6d576040516368d2bf6b60e11b815260040160405180910390fd5b808203611a05578260005414611a8257600080fd5b611acc565b5b6040516001830192906001600160a01b038916906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a4808203611a88575b5060005561154c565b80356001600160a01b0381168114611aec57600080fd5b919050565b600060208284031215611b0357600080fd5b61115982611ad5565b6001600160e01b03198116811461121557600080fd5b600060208284031215611b3457600080fd5b813561115981611b0c565b60005b83811015611b5a578181015183820152602001611b42565b50506000910152565b60008151808452611b7b816020860160208601611b3f565b601f01601f19169290920160200192915050565b6020815260006111596020830184611b63565b600060208284031215611bb457600080fd5b5035919050565b60008060408385031215611bce57600080fd5b611bd783611ad5565b946020939093013593505050565b634e487b7160e01b600052604160045260246000fd5b604051601f8201601f191681016001600160401b0381118282101715611c2357611c23611be5565b604052919050565b60006020808385031215611c3e57600080fd5b82356001600160401b0380821115611c5557600080fd5b818501915085601f830112611c6957600080fd5b813581811115611c7b57611c7b611be5565b8060051b9150611c8c848301611bfb565b8181529183018401918481019088841115611ca657600080fd5b938501935b83851015611ccb57611cbc85611ad5565b82529385019390850190611cab565b98975050505050505050565b600080600060608486031215611cec57600080fd5b611cf584611ad5565b9250611d0360208501611ad5565b9150604084013590509250925092565b80358015158114611aec57600080fd5b600060208284031215611d3557600080fd5b61115982611d13565b60006001600160401b03831115611d5757611d57611be5565b611d6a601f8401601f1916602001611bfb565b9050828152838383011115611d7e57600080fd5b828260208301376000602084830101529392505050565b600060208284031215611da757600080fd5b81356001600160401b03811115611dbd57600080fd5b8201601f81018413611dce57600080fd5b6117bd84823560208401611d3e565b60008060408385031215611df057600080fd5b611df983611ad5565b9150611e0760208401611d13565b90509250929050565b600080600060608486031215611e2557600080fd5b611e2e84611ad5565b95602085013595506040909401359392505050565b60008060008060808587031215611e5957600080fd5b611e6285611ad5565b9350611e7060208601611ad5565b92506040850135915060608501356001600160401b03811115611e9257600080fd5b8501601f81018713611ea357600080fd5b611eb287823560208401611d3e565b91505092959194509250565b60008060408385031215611ed157600080fd5b611eda83611ad5565b9150611e0760208401611ad5565b600181811c90821680611efc57607f821691505b602082108103611f1c57634e487b7160e01b600052602260045260246000fd5b50919050565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052601160045260246000fd5b600060018201611f9557611f95611f6d565b5060010190565b6020808252603c908201527f54686520726563697069656e7420616c72656164792068617320746865206d6160408201527f78696d756d206e756d626572206f66204e46547320616c6c6f77656400000000606082015260800190565b601f82111561091557600081815260208120601f850160051c810160208610156120205750805b601f850160051c820191505b8181101561203f5782815560010161202c565b505050505050565b81516001600160401b0381111561206057612060611be5565b6120748161206e8454611ee8565b84611ff9565b602080601f8311600181146120a957600084156120915750858301515b600019600386901b1c1916600185901b17855561203f565b600085815260208120601f198616915b828110156120d8578886015182559484019460019091019084016120b9565b50858210156120f65787850151600019600388901b60f8161c191681555b5050505050600190811b01905550565b80820281158282048414176107b1576107b1611f6d565b634e487b7160e01b600052601260045260246000fd5b6000826121425761214261211d565b500490565b818103818111156107b1576107b1611f6d565b6000835161216c818460208801611b3f565b835190830190612180818360208801611b3f565b01949350505050565b6001600160a01b03858116825284166020820152604081018390526080606082018190526000906121bc90830184611b63565b9695505050505050565b6000602082840312156121d857600080fd5b815161115981611b0c565b6000826121f2576121f261211d565b500690565b808201808211156107b1576107b1611f6d56fea2646970667358221220cdb13ce077fde7a6c3e602f521e2310d530b878747a4c55c64798d4c7db2628864736f6c6343000811003368747470733a2f2f616c7068612e7061726170726f6e66742e636f6d2f697066732f516d54654d386e365a624e7150794472714d6445337a3455594c6a414c7a77704d62566e6467734d316e716846422f

Deployed Bytecode

0x6080604052600436106102515760003560e01c80636ad5b3ea11610139578063b88d4fde116100b6578063d547cfb71161007a578063d547cfb7146106b1578063d9673ee9146106c6578063da45c9c5146106e6578063e4849b3214610705578063e985e9c514610725578063f2fde38b1461074557600080fd5b8063b88d4fde14610621578063b8c7abb414610641578063bcc9ca5b14610661578063c87b56dd1461067b578063c9894b5c1461069b57600080fd5b806395d89b41116100fd57806395d89b41146105a35780639e354516146105b8578063a22cb465146105d8578063a59ac6dd146105f8578063ad2a8c141461060b57600080fd5b80636ad5b3ea1461051a57806370a082311461053a578063715018a61461055a57806377a194d31461056f5780638da5cb5b1461058557600080fd5b806323b872dd116101d257806342842e0e1161019657806342842e0e1461044a57806351cff8d91461046a57806353dc840b1461048a57806355f804b3146104ba5780635d82cf6e146104da5780636352211e146104fa57600080fd5b806323b872dd146103da57806326092b83146103fa578063353094d91461040257806338d94193146104225780633f5ab2241461044257600080fd5b80630ce02fd5116102195780630ce02fd5146103375780630e29df4614610357578063105dacdf1461037757806318160ddd146103975780631970d1fb146103ba57600080fd5b80630118ec211461025657806301ffc9a71461029b57806306fdde03146102bb578063081812fc146102dd578063095ea7b314610315575b600080fd5b34801561026257600080fd5b50610286610271366004611af1565b600a6020526000908152604090205460ff1681565b60405190151581526020015b60405180910390f35b3480156102a757600080fd5b506102866102b6366004611b22565b610765565b3480156102c757600080fd5b506102d06107b7565b6040516102929190611b8f565b3480156102e957600080fd5b506102fd6102f8366004611ba2565b610849565b6040516001600160a01b039091168152602001610292565b34801561032157600080fd5b50610335610330366004611bbb565b61088d565b005b34801561034357600080fd5b50610335610352366004611c2b565b61091a565b34801561036357600080fd5b50610335610372366004611ba2565b6109b9565b34801561038357600080fd5b50610335610392366004611c2b565b6109e8565b3480156103a357600080fd5b50600154600054035b604051908152602001610292565b3480156103c657600080fd5b506103356103d5366004611ba2565b610a7a565b3480156103e657600080fd5b506103356103f5366004611cd7565b610aa9565b610335610adc565b34801561040e57600080fd5b5061033561041d366004611d23565b610b49565b34801561042e57600080fd5b506102fd61043d366004611ba2565b610b86565b610335610bb0565b34801561045657600080fd5b50610335610465366004611cd7565b610c74565b34801561047657600080fd5b50610335610485366004611af1565b610cb7565b34801561049657600080fd5b506102866104a5366004611af1565b60096020526000908152604090205460ff1681565b3480156104c657600080fd5b506103356104d5366004611d95565b610d19565b3480156104e657600080fd5b506103356104f5366004611ba2565b610d4f565b34801561050657600080fd5b506102fd610515366004611ba2565b610d7e565b34801561052657600080fd5b50600e546102fd906001600160a01b031681565b34801561054657600080fd5b506103ac610555366004611af1565b610d90565b34801561056657600080fd5b50610335610dde565b34801561057b57600080fd5b506103ac600f5481565b34801561059157600080fd5b506008546001600160a01b03166102fd565b3480156105af57600080fd5b506102d0610e12565b3480156105c457600080fd5b506103356105d3366004611d23565b610e21565b3480156105e457600080fd5b506103356105f3366004611ddd565b610e65565b610335610606366004611e10565b610efa565b34801561061757600080fd5b506103ac60115481565b34801561062d57600080fd5b5061033561063c366004611e43565b611017565b34801561064d57600080fd5b5061033561065c366004611af1565b611090565b34801561066d57600080fd5b506010546102869060ff1681565b34801561068757600080fd5b506102d0610696366004611ba2565b6110dc565b3480156106a757600080fd5b506103ac60125481565b3480156106bd57600080fd5b506102d0611160565b3480156106d257600080fd5b50600d546102fd906001600160a01b031681565b3480156106f257600080fd5b5060105461028690610100900460ff1681565b34801561071157600080fd5b50610335610720366004611ba2565b6111ee565b34801561073157600080fd5b50610286610740366004611ebe565b611218565b34801561075157600080fd5b50610335610760366004611af1565b611246565b60006001600160e01b031982166380ac58cd60e01b148061079657506001600160e01b03198216635b5e139f60e01b145b806107b157506301ffc9a760e01b6001600160e01b03198316145b92915050565b6060600280546107c690611ee8565b80601f01602080910402602001604051908101604052809291908181526020018280546107f290611ee8565b801561083f5780601f106108145761010080835404028352916020019161083f565b820191906000526020600020905b81548152906001019060200180831161082257829003601f168201915b5050505050905090565b6000610854826112de565b610871576040516333d1c03960e21b815260040160405180910390fd5b506000908152600660205260409020546001600160a01b031690565b600061089882610d7e565b9050806001600160a01b0316836001600160a01b0316036108cc5760405163250fdee360e21b815260040160405180910390fd5b336001600160a01b038216148015906108ec57506108ea8133611218565b155b1561090a576040516367d9dca160e11b815260040160405180910390fd5b610915838383611309565b505050565b6008546001600160a01b0316331461094d5760405162461bcd60e51b815260040161094490611f22565b60405180910390fd5b60005b81518110156109b5576001600a600084848151811061097157610971611f57565b6020908102919091018101516001600160a01b03168252810191909152604001600020805460ff1916911515919091179055806109ad81611f83565b915050610950565b5050565b6008546001600160a01b031633146109e35760405162461bcd60e51b815260040161094490611f22565b601255565b6008546001600160a01b03163314610a125760405162461bcd60e51b815260040161094490611f22565b60005b81518110156109b557600160096000848481518110610a3657610a36611f57565b6020908102919091018101516001600160a01b03168252810191909152604001600020805460ff191691151591909117905580610a7281611f83565b915050610a15565b6008546001600160a01b03163314610aa45760405162461bcd60e51b815260040161094490611f22565b601155565b6002610ab483610d90565b10610ad15760405162461bcd60e51b815260040161094490611f9c565b610915838383611365565b600f543414610aea57600080fd5b60105460ff16610b3c5760405162461bcd60e51b815260206004820152601d60248201527f5075626c6963206d696e74696e67206973206e6f74206163746976652e0000006044820152606401610944565b610b47336001611553565b565b6008546001600160a01b03163314610b735760405162461bcd60e51b815260040161094490611f22565b6010805460ff1916911515919091179055565b600c8181548110610b9657600080fd5b6000918252602090912001546001600160a01b0316905081565b6011543414610bbe57600080fd5b3360009081526009602052604090205460ff16610c1d5760405162461bcd60e51b815260206004820152601e60248201527f596f7520617265206e6f742061646465642061742077686974656c69737400006044820152606401610944565b601054610100900460ff16610b3c5760405162461bcd60e51b815260206004820152601960248201527f50726976617465206d696e74696e6720697320636c6f736564000000000000006044820152606401610944565b6002610c7f83610d90565b10610c9c5760405162461bcd60e51b815260040161094490611f9c565b61091583838360405180602001604052806000815250611017565b6008546001600160a01b03163314610ce15760405162461bcd60e51b815260040161094490611f22565b60405147906001600160a01b0383169082156108fc029083906000818181858888f19350505050158015610915573d6000803e3d6000fd5b6008546001600160a01b03163314610d435760405162461bcd60e51b815260040161094490611f22565b600b6109b58282612047565b6008546001600160a01b03163314610d795760405162461bcd60e51b815260040161094490611f22565b600f55565b6000610d898261156d565b5192915050565b60006001600160a01b038216610db9576040516323d3ad8160e21b815260040160405180910390fd5b506001600160a01b03166000908152600560205260409020546001600160401b031690565b6008546001600160a01b03163314610e085760405162461bcd60e51b815260040161094490611f22565b610b476000611687565b6060600380546107c690611ee8565b6008546001600160a01b03163314610e4b5760405162461bcd60e51b815260040161094490611f22565b601080549115156101000261ff0019909216919091179055565b336001600160a01b03831603610e8e5760405163b06307db60e01b815260040160405180910390fd5b3360008181526007602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b348114610f0657600080fd5b6001600160a01b0383166000908152600a602052604090205460ff1615610fe257600e546012546001600160a01b03909116906108fc90606490610f4a9034612106565b610f549190612133565b6040518115909202916000818181858888f19350505050158015610f7c573d6000803e3d6000fd5b50826001600160a01b03166108fc606460125434610f9a9190612106565b610fa49190612133565b610fae9034612147565b6040518115909202916000818181858888f19350505050158015610fd6573d6000803e3d6000fd5b50610915833384610aa9565b6040516001600160a01b038416903480156108fc02916000818181858888f19350505050158015610fd6573d6000803e3d6000fd5b600261102284610d90565b1061103f5760405162461bcd60e51b815260040161094490611f9c565b61104a848484611365565b6001600160a01b0383163b1515801561106c575061106a848484846116d9565b155b1561108a576040516368d2bf6b60e11b815260040160405180910390fd5b50505050565b6008546001600160a01b031633146110ba5760405162461bcd60e51b815260040161094490611f22565b600e80546001600160a01b0319166001600160a01b0392909216919091179055565b60606110e7826112de565b61110457604051630a14c4b560e41b815260040160405180910390fd5b600061110e6117c5565b9050805160000361112e5760405180602001604052806000815250611159565b80611138846117d4565b60405160200161114992919061215a565b6040516020818303038152906040525b9392505050565b600b805461116d90611ee8565b80601f016020809104026020016040519081016040528092919081815260200182805461119990611ee8565b80156111e65780601f106111bb576101008083540402835291602001916111e6565b820191906000526020600020905b8154815290600101906020018083116111c957829003601f168201915b505050505081565b336111f882610d7e565b6001600160a01b03161461120b57600080fd5b611215308261088d565b50565b6001600160a01b03918216600090815260076020908152604080832093909416825291909152205460ff1690565b6008546001600160a01b031633146112705760405162461bcd60e51b815260040161094490611f22565b6001600160a01b0381166112d55760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610944565b61121581611687565b60008054821080156107b1575050600090815260046020526040902054600160e01b900460ff161590565b60008281526006602052604080822080546001600160a01b0319166001600160a01b0387811691821790925591518593918516917f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591a4505050565b60006113708261156d565b9050836001600160a01b031681600001516001600160a01b0316146113a75760405162a1148160e81b815260040160405180910390fd5b6000336001600160a01b03861614806113c557506113c58533611218565b806113e05750336113d584610849565b6001600160a01b0316145b90508061140057604051632ce44b5f60e11b815260040160405180910390fd5b6001600160a01b03841661142757604051633a954ecd60e21b815260040160405180910390fd5b61143360008487611309565b6001600160a01b038581166000908152600560209081526040808320805467ffffffffffffffff198082166001600160401b0392831660001901831617909255898616808652838620805493841693831660019081018416949094179055898652600490945282852080546001600160e01b031916909417600160a01b4290921691909102178355870180845292208054919390911661150757600054821461150757805460208601516001600160401b0316600160a01b026001600160e01b03199091166001600160a01b038a16171781555b50505082846001600160a01b0316866001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45b5050505050565b6109b58282604051806020016040528060008152506118d4565b60408051606081018252600080825260208201819052918101919091528160005481101561166e57600081815260046020908152604091829020825160608101845290546001600160a01b0381168252600160a01b81046001600160401b031692820192909252600160e01b90910460ff1615159181018290529061166c5780516001600160a01b031615611603579392505050565b5060001901600081815260046020908152604091829020825160608101845290546001600160a01b038116808352600160a01b82046001600160401b031693830193909352600160e01b900460ff1615159281019290925215611667579392505050565b611603565b505b604051636f96cda160e11b815260040160405180910390fd5b600880546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b604051630a85bd0160e11b81526000906001600160a01b0385169063150b7a029061170e903390899088908890600401612189565b6020604051808303816000875af1925050508015611749575060408051601f3d908101601f19168201909252611746918101906121c6565b60015b6117a7573d808015611777576040519150601f19603f3d011682016040523d82523d6000602084013e61177c565b606091505b50805160000361179f576040516368d2bf6b60e11b815260040160405180910390fd5b805181602001fd5b6001600160e01b031916630a85bd0160e11b1490505b949350505050565b6060600b80546107c690611ee8565b6060816000036117fb5750506040805180820190915260018152600360fc1b602082015290565b8160005b8115611825578061180f81611f83565b915061181e9050600a83612133565b91506117ff565b6000816001600160401b0381111561183f5761183f611be5565b6040519080825280601f01601f191660200182016040528015611869576020820181803683370190505b5090505b84156117bd5761187e600183612147565b915061188b600a866121e3565b6118969060306121f7565b60f81b8183815181106118ab576118ab611f57565b60200101906001600160f81b031916908160001a9053506118cd600a86612133565b945061186d565b610915838383600160026118e785610d90565b106119045760405162461bcd60e51b815260040161094490611f9c565b6000546001600160a01b03851661192d57604051622e076360e81b815260040160405180910390fd5b8360000361194e5760405163b562e8dd60e01b815260040160405180910390fd5b6001600160a01b038516600081815260056020908152604080832080546fffffffffffffffffffffffffffffffff1981166001600160401b038083168c0181169182176801000000000000000067ffffffffffffffff1990941690921783900481168c01811690920217909155858452600490925290912080546001600160e01b031916909217600160a01b4290921691909102179055808085018380156119ff57506001600160a01b0387163b15155b15611a87575b60405182906001600160a01b038916906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a4611a5060008884806001019550886116d9565b611a6d576040516368d2bf6b60e11b815260040160405180910390fd5b808203611a05578260005414611a8257600080fd5b611acc565b5b6040516001830192906001600160a01b038916906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a4808203611a88575b5060005561154c565b80356001600160a01b0381168114611aec57600080fd5b919050565b600060208284031215611b0357600080fd5b61115982611ad5565b6001600160e01b03198116811461121557600080fd5b600060208284031215611b3457600080fd5b813561115981611b0c565b60005b83811015611b5a578181015183820152602001611b42565b50506000910152565b60008151808452611b7b816020860160208601611b3f565b601f01601f19169290920160200192915050565b6020815260006111596020830184611b63565b600060208284031215611bb457600080fd5b5035919050565b60008060408385031215611bce57600080fd5b611bd783611ad5565b946020939093013593505050565b634e487b7160e01b600052604160045260246000fd5b604051601f8201601f191681016001600160401b0381118282101715611c2357611c23611be5565b604052919050565b60006020808385031215611c3e57600080fd5b82356001600160401b0380821115611c5557600080fd5b818501915085601f830112611c6957600080fd5b813581811115611c7b57611c7b611be5565b8060051b9150611c8c848301611bfb565b8181529183018401918481019088841115611ca657600080fd5b938501935b83851015611ccb57611cbc85611ad5565b82529385019390850190611cab565b98975050505050505050565b600080600060608486031215611cec57600080fd5b611cf584611ad5565b9250611d0360208501611ad5565b9150604084013590509250925092565b80358015158114611aec57600080fd5b600060208284031215611d3557600080fd5b61115982611d13565b60006001600160401b03831115611d5757611d57611be5565b611d6a601f8401601f1916602001611bfb565b9050828152838383011115611d7e57600080fd5b828260208301376000602084830101529392505050565b600060208284031215611da757600080fd5b81356001600160401b03811115611dbd57600080fd5b8201601f81018413611dce57600080fd5b6117bd84823560208401611d3e565b60008060408385031215611df057600080fd5b611df983611ad5565b9150611e0760208401611d13565b90509250929050565b600080600060608486031215611e2557600080fd5b611e2e84611ad5565b95602085013595506040909401359392505050565b60008060008060808587031215611e5957600080fd5b611e6285611ad5565b9350611e7060208601611ad5565b92506040850135915060608501356001600160401b03811115611e9257600080fd5b8501601f81018713611ea357600080fd5b611eb287823560208401611d3e565b91505092959194509250565b60008060408385031215611ed157600080fd5b611eda83611ad5565b9150611e0760208401611ad5565b600181811c90821680611efc57607f821691505b602082108103611f1c57634e487b7160e01b600052602260045260246000fd5b50919050565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052601160045260246000fd5b600060018201611f9557611f95611f6d565b5060010190565b6020808252603c908201527f54686520726563697069656e7420616c72656164792068617320746865206d6160408201527f78696d756d206e756d626572206f66204e46547320616c6c6f77656400000000606082015260800190565b601f82111561091557600081815260208120601f850160051c810160208610156120205750805b601f850160051c820191505b8181101561203f5782815560010161202c565b505050505050565b81516001600160401b0381111561206057612060611be5565b6120748161206e8454611ee8565b84611ff9565b602080601f8311600181146120a957600084156120915750858301515b600019600386901b1c1916600185901b17855561203f565b600085815260208120601f198616915b828110156120d8578886015182559484019460019091019084016120b9565b50858210156120f65787850151600019600388901b60f8161c191681555b5050505050600190811b01905550565b80820281158282048414176107b1576107b1611f6d565b634e487b7160e01b600052601260045260246000fd5b6000826121425761214261211d565b500490565b818103818111156107b1576107b1611f6d565b6000835161216c818460208801611b3f565b835190830190612180818360208801611b3f565b01949350505050565b6001600160a01b03858116825284166020820152604081018390526080606082018190526000906121bc90830184611b63565b9695505050505050565b6000602082840312156121d857600080fd5b815161115981611b0c565b6000826121f2576121f261211d565b500690565b808201808211156107b1576107b1611f6d56fea2646970667358221220cdb13ce077fde7a6c3e602f521e2310d530b878747a4c55c64798d4c7db2628864736f6c63430008110033

Deployed Bytecode Sourcemap

51282:3488:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;51453:38;;;;;;;;;;-1:-1:-1;51453:38:0;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;548:14:1;;541:22;523:41;;511:2;496:18;51453:38:0;;;;;;;;23195:305;;;;;;;;;;-1:-1:-1;23195:305:0;;;;;:::i;:::-;;:::i;26308:100::-;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;27811:204::-;;;;;;;;;;-1:-1:-1;27811:204:0;;;;;:::i;:::-;;:::i;:::-;;;-1:-1:-1;;;;;2066:32:1;;;2048:51;;2036:2;2021:18;27811:204:0;1902:203:1;27374:371:0;;;;;;;;;;-1:-1:-1;27374:371:0;;;;;:::i;:::-;;:::i;:::-;;52821:181;;;;;;;;;;-1:-1:-1;52821:181:0;;;;;:::i;:::-;;:::i;53010:88::-;;;;;;;;;;-1:-1:-1;53010:88:0;;;;;:::i;:::-;;:::i;52614:199::-;;;;;;;;;;-1:-1:-1;52614:199:0;;;;;:::i;:::-;;:::i;22444:303::-;;;;;;;;;;-1:-1:-1;22698:12:0;;22488:7;22682:13;:28;22444:303;;;3884:25:1;;;3872:2;3857:18;22444:303:0;3738:177:1;52491:115:0;;;;;;;;;;-1:-1:-1;52491:115:0;;;;;:::i;:::-;;:::i;28676:271::-;;;;;;;;;;-1:-1:-1;28676:271:0;;;;;:::i;:::-;;:::i;53428:191::-;;;:::i;53214:98::-;;;;;;;;;;-1:-1:-1;53214:98:0;;;;;:::i;:::-;;:::i;51617:22::-;;;;;;;;;;-1:-1:-1;51617:22:0;;;;;:::i;:::-;;:::i;53627:269::-;;;:::i;29018:286::-;;;;;;;;;;-1:-1:-1;29018:286:0;;;;;:::i;:::-;;:::i;54602:165::-;;;;;;;;;;-1:-1:-1;54602:165:0;;;;;:::i;:::-;;:::i;51404:42::-;;;;;;;;;;-1:-1:-1;51404:42:0;;;;;:::i;:::-;;;;;;;;;;;;;;;;52255:113;;;;;;;;;;-1:-1:-1;52255:113:0;;;;;:::i;:::-;;:::i;52376:107::-;;;;;;;;;;-1:-1:-1;52376:107:0;;;;;:::i;:::-;;:::i;26116:125::-;;;;;;;;;;-1:-1:-1;26116:125:0;;;;;:::i;:::-;;:::i;51686:73::-;;;;;;;;;;-1:-1:-1;51686:73:0;;;;-1:-1:-1;;;;;51686:73:0;;;23564:206;;;;;;;;;;-1:-1:-1;23564:206:0;;;;;:::i;:::-;;:::i;50465:103::-;;;;;;;;;;;;;:::i;51766:43::-;;;;;;;;;;;;;;;;49814:87;;;;;;;;;;-1:-1:-1;49887:6:0;;-1:-1:-1;;;;;49887:6:0;49814:87;;26477:104;;;;;;;;;;;;;:::i;53320:100::-;;;;;;;;;;-1:-1:-1;53320:100:0;;;;;:::i;:::-;;:::i;28087:287::-;;;;;;;;;;-1:-1:-1;28087:287:0;;;;;:::i;:::-;;:::i;53904:490::-;;;;;;:::i;:::-;;:::i;51898:50::-;;;;;;;;;;;;;;;;29375:470;;;;;;;;;;-1:-1:-1;29375:470:0;;;;;:::i;:::-;;:::i;53107:99::-;;;;;;;;;;-1:-1:-1;53107:99:0;;;;;:::i;:::-;;:::i;51816:34::-;;;;;;;;;;-1:-1:-1;51816:34:0;;;;;;;;26652:318;;;;;;;;;;-1:-1:-1;26652:318:0;;;;;:::i;:::-;;:::i;51955:28::-;;;;;;;;;;;;;;;;51498:112;;;;;;;;;;;;;:::i;51646:33::-;;;;;;;;;;-1:-1:-1;51646:33:0;;;;-1:-1:-1;;;;;51646:33:0;;;51857:34;;;;;;;;;;-1:-1:-1;51857:34:0;;;;;;;;;;;54402:192;;;;;;;;;;-1:-1:-1;54402:192:0;;;;;:::i;:::-;;:::i;28445:164::-;;;;;;;;;;-1:-1:-1;28445:164:0;;;;;:::i;:::-;;:::i;50723:201::-;;;;;;;;;;-1:-1:-1;50723:201:0;;;;;:::i;:::-;;:::i;23195:305::-;23297:4;-1:-1:-1;;;;;;23334:40:0;;-1:-1:-1;;;23334:40:0;;:105;;-1:-1:-1;;;;;;;23391:48:0;;-1:-1:-1;;;23391:48:0;23334:105;:158;;;-1:-1:-1;;;;;;;;;;18954:40:0;;;23456:36;23314:178;23195:305;-1:-1:-1;;23195:305:0:o;26308:100::-;26362:13;26395:5;26388:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;26308:100;:::o;27811:204::-;27879:7;27904:16;27912:7;27904;:16::i;:::-;27899:64;;27929:34;;-1:-1:-1;;;27929:34:0;;;;;;;;;;;27899:64;-1:-1:-1;27983:24:0;;;;:15;:24;;;;;;-1:-1:-1;;;;;27983:24:0;;27811:204::o;27374:371::-;27447:13;27463:24;27479:7;27463:15;:24::i;:::-;27447:40;;27508:5;-1:-1:-1;;;;;27502:11:0;:2;-1:-1:-1;;;;;27502:11:0;;27498:48;;27522:24;;-1:-1:-1;;;27522:24:0;;;;;;;;;;;27498:48;16024:10;-1:-1:-1;;;;;27563:21:0;;;;;;:63;;-1:-1:-1;27589:37:0;27606:5;16024:10;28445:164;:::i;27589:37::-;27588:38;27563:63;27559:138;;;27650:35;;-1:-1:-1;;;27650:35:0;;;;;;;;;;;27559:138;27709:28;27718:2;27722:7;27731:5;27709:8;:28::i;:::-;27436:309;27374:371;;:::o;52821:181::-;49887:6;;-1:-1:-1;;;;;49887:6:0;16024:10;50034:23;50026:68;;;;-1:-1:-1;;;50026:68:0;;;;;;;:::i;:::-;;;;;;;;;52899:6:::1;52895:86;52910:7;:14;52908:1;:16;52895:86;;;52965:4;52944:6;:18;52951:7;52959:1;52951:10;;;;;;;;:::i;:::-;;::::0;;::::1;::::0;;;;;;;-1:-1:-1;;;;;52944:18:0::1;::::0;;;::::1;::::0;;;;;;-1:-1:-1;52944:18:0;:25;;-1:-1:-1;;52944:25:0::1;::::0;::::1;;::::0;;;::::1;::::0;;52925:3;::::1;::::0;::::1;:::i;:::-;;;;52895:86;;;;52821:181:::0;:::o;53010:88::-;49887:6;;-1:-1:-1;;;;;49887:6:0;16024:10;50034:23;50026:68;;;;-1:-1:-1;;;50026:68:0;;;;;;;:::i;:::-;53074:8:::1;:16:::0;53010:88::o;52614:199::-;49887:6;;-1:-1:-1;;;;;49887:6:0;16024:10;50034:23;50026:68;;;;-1:-1:-1;;;50026:68:0;;;;;;;:::i;:::-;52698:6:::1;52694:98;52709:11;:18;52707:1;:20;52694:98;;;52776:4;52747:10;:26;52758:11;52770:1;52758:14;;;;;;;;:::i;:::-;;::::0;;::::1;::::0;;;;;;;-1:-1:-1;;;;;52747:26:0::1;::::0;;;::::1;::::0;;;;;;-1:-1:-1;52747:26:0;:33;;-1:-1:-1;;52747:33:0::1;::::0;::::1;;::::0;;;::::1;::::0;;52728:3;::::1;::::0;::::1;:::i;:::-;;;;52694:98;;52491:115:::0;49887:6;;-1:-1:-1;;;;;49887:6:0;16024:10;50034:23;50026:68;;;;-1:-1:-1;;;50026:68:0;;;;;;;:::i;:::-;52567:19:::1;:31:::0;52491:115::o;28676:271::-;28834:1;28818:13;28828:2;28818:9;:13::i;:::-;:17;28810:90;;;;-1:-1:-1;;;28810:90:0;;;;;;;:::i;:::-;28911:28;28921:4;28927:2;28931:7;28911:9;:28::i;53428:191::-;53494:12;;53483:9;:23;53475:32;;;;;;53526:14;;;;53518:55;;;;-1:-1:-1;;;53518:55:0;;8775:2:1;53518:55:0;;;8757:21:1;8814:2;8794:18;;;8787:30;8853:31;8833:18;;;8826:59;8902:18;;53518:55:0;8573:353:1;53518:55:0;53588:23;53598:10;53609:1;53588:9;:23::i;:::-;53428:191::o;53214:98::-;49887:6;;-1:-1:-1;;;;;49887:6:0;16024:10;50034:23;50026:68;;;;-1:-1:-1;;;50026:68:0;;;;;;;:::i;:::-;53281:14:::1;:23:::0;;-1:-1:-1;;53281:23:0::1;::::0;::::1;;::::0;;;::::1;::::0;;53214:98::o;51617:22::-;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;51617:22:0;;-1:-1:-1;51617:22:0;:::o;53627:269::-;53694:19;;53683:9;:30;53675:39;;;;;;53744:10;53733:22;;;;:10;:22;;;;;;;;53725:64;;;;-1:-1:-1;;;53725:64:0;;9133:2:1;53725:64:0;;;9115:21:1;9172:2;9152:18;;;9145:30;9211:32;9191:18;;;9184:60;9261:18;;53725:64:0;8931:354:1;53725:64:0;53808:15;;;;;;;53800:53;;;;-1:-1:-1;;;53800:53:0;;9492:2:1;53800:53:0;;;9474:21:1;9531:2;9511:18;;;9504:30;9570:27;9550:18;;;9543:55;9615:18;;53800:53:0;9290:349:1;29018:286:0;29180:1;29164:13;29174:2;29164:9;:13::i;:::-;:17;29156:90;;;;-1:-1:-1;;;29156:90:0;;;;;;;:::i;:::-;29257:39;29274:4;29280:2;29284:7;29257:39;;;;;;;;;;;;:16;:39::i;54602:165::-;49887:6;;-1:-1:-1;;;;;49887:6:0;16024:10;50034:23;50026:68;;;;-1:-1:-1;;;50026:68:0;;;;;;;:::i;:::-;54721:38:::1;::::0;54689:21:::1;::::0;-1:-1:-1;;;;;54721:29:0;::::1;::::0;:38;::::1;;;::::0;54689:21;;54671:15:::1;54721:38:::0;54671:15;54721:38;54689:21;54721:29;:38;::::1;;;;;;;;;;;;;::::0;::::1;;;;52255:113:::0;49887:6;;-1:-1:-1;;;;;49887:6:0;16024:10;50034:23;50026:68;;;;-1:-1:-1;;;50026:68:0;;;;;;;:::i;:::-;52332:12:::1;:28;52347:13:::0;52332:12;:28:::1;:::i;52376:107::-:0;49887:6;;-1:-1:-1;;;;;49887:6:0;16024:10;50034:23;50026:68;;;;-1:-1:-1;;;50026:68:0;;;;;;;:::i;:::-;52451:12:::1;:24:::0;52376:107::o;26116:125::-;26180:7;26207:21;26220:7;26207:12;:21::i;:::-;:26;;26116:125;-1:-1:-1;;26116:125:0:o;23564:206::-;23628:7;-1:-1:-1;;;;;23652:19:0;;23648:60;;23680:28;;-1:-1:-1;;;23680:28:0;;;;;;;;;;;23648:60;-1:-1:-1;;;;;;23734:19:0;;;;;:12;:19;;;;;:27;-1:-1:-1;;;;;23734:27:0;;23564:206::o;50465:103::-;49887:6;;-1:-1:-1;;;;;49887:6:0;16024:10;50034:23;50026:68;;;;-1:-1:-1;;;50026:68:0;;;;;;;:::i;:::-;50530:30:::1;50557:1;50530:18;:30::i;26477:104::-:0;26533:13;26566:7;26559:14;;;;;:::i;53320:100::-;49887:6;;-1:-1:-1;;;;;49887:6:0;16024:10;50034:23;50026:68;;;;-1:-1:-1;;;50026:68:0;;;;;;;:::i;:::-;53388:15:::1;:24:::0;;;::::1;;;;-1:-1:-1::0;;53388:24:0;;::::1;::::0;;;::::1;::::0;;53320:100::o;28087:287::-;16024:10;-1:-1:-1;;;;;28186:24:0;;;28182:54;;28219:17;;-1:-1:-1;;;28219:17:0;;;;;;;;;;;28182:54;16024:10;28249:32;;;;:18;:32;;;;;;;;-1:-1:-1;;;;;28249:42:0;;;;;;;;;;;;:53;;-1:-1:-1;;28249:53:0;;;;;;;;;;28318:48;;523:41:1;;;28249:42:0;;16024:10;28318:48;;496:18:1;28318:48:0;;;;;;;28087:287;;:::o;53904:490::-;54009:9;54002:5;:16;53994:25;;;;;;-1:-1:-1;;;;;54030:21:0;;;;;;:6;:21;;;;;;;;54027:358;;;54071:13;;54105:8;;-1:-1:-1;;;;;54071:13:0;;;;54063:55;;54114:3;;54095:18;;:9;:18;:::i;:::-;:22;;;;:::i;:::-;54063:55;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;54137:13;-1:-1:-1;;;;;54129:31:0;:65;54190:3;54181:8;;54171:9;:18;;;;:::i;:::-;:22;;;;:::i;:::-;54161:32;;:9;:32;:::i;:::-;54129:65;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;54205:46;54218:13;54232:10;54243:7;54205:12;:46::i;54027:358::-;54277:42;;-1:-1:-1;;;;;54277:31:0;;;54309:9;54277:42;;;;;;;;;54309:9;54277:31;:42;;;;;;;;;;;;;;;;;;;29375:470;29566:1;29550:13;29560:2;29550:9;:13::i;:::-;:17;29542:90;;;;-1:-1:-1;;;29542:90:0;;;;;;;:::i;:::-;29643:28;29653:4;29659:2;29663:7;29643:9;:28::i;:::-;-1:-1:-1;;;;;29686:13:0;;8427:19;:23;;29686:76;;;;;29706:56;29737:4;29743:2;29747:7;29756:5;29706:30;:56::i;:::-;29705:57;29686:76;29682:156;;;29786:40;;-1:-1:-1;;;29786:40:0;;;;;;;;;;;29682:156;29375:470;;;;:::o;53107:99::-;49887:6;;-1:-1:-1;;;;;49887:6:0;16024:10;50034:23;50026:68;;;;-1:-1:-1;;;50026:68:0;;;;;;;:::i;:::-;53178:13:::1;:20:::0;;-1:-1:-1;;;;;;53178:20:0::1;-1:-1:-1::0;;;;;53178:20:0;;;::::1;::::0;;;::::1;::::0;;53107:99::o;26652:318::-;26725:13;26756:16;26764:7;26756;:16::i;:::-;26751:59;;26781:29;;-1:-1:-1;;;26781:29:0;;;;;;;;;;;26751:59;26823:21;26847:10;:8;:10::i;:::-;26823:34;;26881:7;26875:21;26900:1;26875:26;:87;;;;;;;;;;;;;;;;;26928:7;26937:18;:7;:16;:18::i;:::-;26911:45;;;;;;;;;:::i;:::-;;;;;;;;;;;;;26875:87;26868:94;26652:318;-1:-1:-1;;;26652:318:0:o;51498:112::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;54402:192::-;54537:10;54519:16;54527:7;54519;:16::i;:::-;-1:-1:-1;;;;;54519:28:0;;54511:37;;;;;;54556:30;54572:4;54578:7;54556;:30::i;:::-;54402:192;:::o;28445:164::-;-1:-1:-1;;;;;28566:25:0;;;28542:4;28566:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;;;;28445:164::o;50723:201::-;49887:6;;-1:-1:-1;;;;;49887:6:0;16024:10;50034:23;50026:68;;;;-1:-1:-1;;;50026:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;50812:22:0;::::1;50804:73;;;::::0;-1:-1:-1;;;50804:73:0;;13114:2:1;50804:73:0::1;::::0;::::1;13096:21:1::0;13153:2;13133:18;;;13126:30;13192:34;13172:18;;;13165:62;-1:-1:-1;;;13243:18:1;;;13236:36;13289:19;;50804:73:0::1;12912:402:1::0;50804:73:0::1;50888:28;50907:8;50888:18;:28::i;30100:187::-:0;30157:4;30221:13;;30211:7;:23;30181:98;;;;-1:-1:-1;;30252:20:0;;;;:11;:20;;;;;:27;-1:-1:-1;;;30252:27:0;;;;30251:28;;30100:187::o;38371:196::-;38486:24;;;;:15;:24;;;;;;:29;;-1:-1:-1;;;;;;38486:29:0;-1:-1:-1;;;;;38486:29:0;;;;;;;;;38531:28;;38486:24;;38531:28;;;;;;;38371:196;;;:::o;33314:2130::-;33429:35;33467:21;33480:7;33467:12;:21::i;:::-;33429:59;;33527:4;-1:-1:-1;;;;;33505:26:0;:13;:18;;;-1:-1:-1;;;;;33505:26:0;;33501:67;;33540:28;;-1:-1:-1;;;33540:28:0;;;;;;;;;;;33501:67;33581:22;16024:10;-1:-1:-1;;;;;33607:20:0;;;;:73;;-1:-1:-1;33644:36:0;33661:4;16024:10;28445:164;:::i;33644:36::-;33607:126;;;-1:-1:-1;16024:10:0;33697:20;33709:7;33697:11;:20::i;:::-;-1:-1:-1;;;;;33697:36:0;;33607:126;33581:153;;33752:17;33747:66;;33778:35;;-1:-1:-1;;;33778:35:0;;;;;;;;;;;33747:66;-1:-1:-1;;;;;33828:16:0;;33824:52;;33853:23;;-1:-1:-1;;;33853:23:0;;;;;;;;;;;33824:52;33997:35;34014:1;34018:7;34027:4;33997:8;:35::i;:::-;-1:-1:-1;;;;;34328:18:0;;;;;;;:12;:18;;;;;;;;:31;;-1:-1:-1;;34328:31:0;;;-1:-1:-1;;;;;34328:31:0;;;-1:-1:-1;;34328:31:0;;;;;;;34374:16;;;;;;;;;:29;;;;;;;;-1:-1:-1;34374:29:0;;;;;;;;;;;34454:20;;;:11;:20;;;;;;34489:18;;-1:-1:-1;;;;;;34522:49:0;;;;-1:-1:-1;;;34555:15:0;34522:49;;;;;;;;;;34845:11;;34905:24;;;;;34948:13;;34454:20;;34905:24;;34948:13;34944:384;;35158:13;;35143:11;:28;35139:174;;35196:20;;35265:28;;;;-1:-1:-1;;;;;35239:54:0;-1:-1:-1;;;35239:54:0;-1:-1:-1;;;;;;35239:54:0;;;-1:-1:-1;;;;;35196:20:0;;35239:54;;;;35139:174;34303:1036;;;35375:7;35371:2;-1:-1:-1;;;;;35356:27:0;35365:4;-1:-1:-1;;;;;35356:27:0;;;;;;;;;;;35394:42;33418:2026;;33314:2130;;;:::o;30295:104::-;30364:27;30374:2;30378:8;30364:27;;;;;;;;;;;;:9;:27::i;24945:1109::-;-1:-1:-1;;;;;;;;;;;;;;;;;;;;;;;;;25056:7:0;25139:13;;25132:4;:20;25101:886;;;25173:31;25207:17;;;:11;:17;;;;;;;;;25173:51;;;;;;;;;-1:-1:-1;;;;;25173:51:0;;;;-1:-1:-1;;;25173:51:0;;-1:-1:-1;;;;;25173:51:0;;;;;;;;-1:-1:-1;;;25173:51:0;;;;;;;;;;;;;;25243:729;;25293:14;;-1:-1:-1;;;;;25293:28:0;;25289:101;;25357:9;24945:1109;-1:-1:-1;;;24945:1109:0:o;25289:101::-;-1:-1:-1;;;25732:6:0;25777:17;;;;:11;:17;;;;;;;;;25765:29;;;;;;;;;-1:-1:-1;;;;;25765:29:0;;;;;-1:-1:-1;;;25765:29:0;;-1:-1:-1;;;;;25765:29:0;;;;;;;;-1:-1:-1;;;25765:29:0;;;;;;;;;;;;;25825:28;25821:109;;25893:9;24945:1109;-1:-1:-1;;;24945:1109:0:o;25821:109::-;25692:261;;;25154:833;25101:886;26015:31;;-1:-1:-1;;;26015:31:0;;;;;;;;;;;51084:191;51177:6;;;-1:-1:-1;;;;;51194:17:0;;;-1:-1:-1;;;;;;51194:17:0;;;;;;;51227:40;;51177:6;;;51194:17;51177:6;;51227:40;;51158:16;;51227:40;51147:128;51084:191;:::o;39059:667::-;39243:72;;-1:-1:-1;;;39243:72:0;;39222:4;;-1:-1:-1;;;;;39243:36:0;;;;;:72;;16024:10;;39294:4;;39300:7;;39309:5;;39243:72;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;-1:-1:-1;39243:72:0;;;;;;;;-1:-1:-1;;39243:72:0;;;;;;;;;;;;:::i;:::-;;;39239:480;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;39477:6;:13;39494:1;39477:18;39473:235;;39523:40;;-1:-1:-1;;;39523:40:0;;;;;;;;;;;39473:235;39666:6;39660:13;39651:6;39647:2;39643:15;39636:38;39239:480;-1:-1:-1;;;;;;39362:55:0;-1:-1:-1;;;39362:55:0;;-1:-1:-1;39239:480:0;39059:667;;;;;;:::o;52094:113::-;52154:13;52187:12;52180:19;;;;;:::i;16386:723::-;16442:13;16663:5;16672:1;16663:10;16659:53;;-1:-1:-1;;16690:10:0;;;;;;;;;;;;-1:-1:-1;;;16690:10:0;;;;;16386:723::o;16659:53::-;16737:5;16722:12;16778:78;16785:9;;16778:78;;16811:8;;;;:::i;:::-;;-1:-1:-1;16834:10:0;;-1:-1:-1;16842:2:0;16834:10;;:::i;:::-;;;16778:78;;;16866:19;16898:6;-1:-1:-1;;;;;16888:17:0;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;16888:17:0;;16866:39;;16916:154;16923:10;;16916:154;;16950:11;16960:1;16950:11;;:::i;:::-;;-1:-1:-1;17019:10:0;17027:2;17019:5;:10;:::i;:::-;17006:24;;:2;:24;:::i;:::-;16993:39;;16976:6;16983;16976:14;;;;;;;;:::i;:::-;;;;:56;-1:-1:-1;;;;;16976:56:0;;;;;;;;-1:-1:-1;17047:11:0;17056:2;17047:11;;:::i;:::-;;;16916:154;;30762:163;30885:32;30891:2;30895:8;30905:5;30912:4;31347:1;31331:13;31341:2;31331:9;:13::i;:::-;:17;31323:90;;;;-1:-1:-1;;;31323:90:0;;;;;;;:::i;:::-;31424:20;31447:13;-1:-1:-1;;;;;31475:16:0;;31471:48;;31500:19;;-1:-1:-1;;;31500:19:0;;;;;;;;;;;31471:48;31534:8;31546:1;31534:13;31530:44;;31556:18;;-1:-1:-1;;;31556:18:0;;;;;;;;;;;31530:44;-1:-1:-1;;;;;31925:16:0;;;;;;:12;:16;;;;;;;;:44;;-1:-1:-1;;31984:49:0;;-1:-1:-1;;;;;31925:44:0;;;;;;;31984:49;;;;-1:-1:-1;;31925:44:0;;;;;;31984:49;;;;;;;;;;;;;;;;32050:25;;;:11;:25;;;;;;:35;;-1:-1:-1;;;;;;32100:66:0;;;;-1:-1:-1;;;32150:15:0;32100:66;;;;;;;;;;32050:25;32247:23;;;32291:4;:23;;;;-1:-1:-1;;;;;;32299:13:0;;8427:19;:23;;32299:15;32287:641;;;32335:314;32366:38;;32391:12;;-1:-1:-1;;;;;32366:38:0;;;32383:1;;32366:38;;32383:1;;32366:38;32432:69;32471:1;32475:2;32479:14;;;;;;32495:5;32432:30;:69::i;:::-;32427:174;;32537:40;;-1:-1:-1;;;32537:40:0;;;;;;;;;;;32427:174;32644:3;32628:12;:19;32335:314;;32730:12;32713:13;;:29;32709:43;;32744:8;;;32709:43;32287:641;;;32793:120;32824:40;;32849:14;;;;;-1:-1:-1;;;;;32824:40:0;;;32841:1;;32824:40;;32841:1;;32824:40;32908:3;32892:12;:19;32793:120;;32287:641;-1:-1:-1;32942:13:0;:28;32992:60;29375:470;14:173:1;82:20;;-1:-1:-1;;;;;131:31:1;;121:42;;111:70;;177:1;174;167:12;111:70;14:173;;;:::o;192:186::-;251:6;304:2;292:9;283:7;279:23;275:32;272:52;;;320:1;317;310:12;272:52;343:29;362:9;343:29;:::i;575:131::-;-1:-1:-1;;;;;;649:32:1;;639:43;;629:71;;696:1;693;686:12;711:245;769:6;822:2;810:9;801:7;797:23;793:32;790:52;;;838:1;835;828:12;790:52;877:9;864:23;896:30;920:5;896:30;:::i;961:250::-;1046:1;1056:113;1070:6;1067:1;1064:13;1056:113;;;1146:11;;;1140:18;1127:11;;;1120:39;1092:2;1085:10;1056:113;;;-1:-1:-1;;1203:1:1;1185:16;;1178:27;961:250::o;1216:271::-;1258:3;1296:5;1290:12;1323:6;1318:3;1311:19;1339:76;1408:6;1401:4;1396:3;1392:14;1385:4;1378:5;1374:16;1339:76;:::i;:::-;1469:2;1448:15;-1:-1:-1;;1444:29:1;1435:39;;;;1476:4;1431:50;;1216:271;-1:-1:-1;;1216:271:1:o;1492:220::-;1641:2;1630:9;1623:21;1604:4;1661:45;1702:2;1691:9;1687:18;1679:6;1661:45;:::i;1717:180::-;1776:6;1829:2;1817:9;1808:7;1804:23;1800:32;1797:52;;;1845:1;1842;1835:12;1797:52;-1:-1:-1;1868:23:1;;1717:180;-1:-1:-1;1717:180:1:o;2110:254::-;2178:6;2186;2239:2;2227:9;2218:7;2214:23;2210:32;2207:52;;;2255:1;2252;2245:12;2207:52;2278:29;2297:9;2278:29;:::i;:::-;2268:39;2354:2;2339:18;;;;2326:32;;-1:-1:-1;;;2110:254:1:o;2369:127::-;2430:10;2425:3;2421:20;2418:1;2411:31;2461:4;2458:1;2451:15;2485:4;2482:1;2475:15;2501:275;2572:2;2566:9;2637:2;2618:13;;-1:-1:-1;;2614:27:1;2602:40;;-1:-1:-1;;;;;2657:34:1;;2693:22;;;2654:62;2651:88;;;2719:18;;:::i;:::-;2755:2;2748:22;2501:275;;-1:-1:-1;2501:275:1:o;2781:952::-;2865:6;2896:2;2939;2927:9;2918:7;2914:23;2910:32;2907:52;;;2955:1;2952;2945:12;2907:52;2995:9;2982:23;-1:-1:-1;;;;;3065:2:1;3057:6;3054:14;3051:34;;;3081:1;3078;3071:12;3051:34;3119:6;3108:9;3104:22;3094:32;;3164:7;3157:4;3153:2;3149:13;3145:27;3135:55;;3186:1;3183;3176:12;3135:55;3222:2;3209:16;3244:2;3240;3237:10;3234:36;;;3250:18;;:::i;:::-;3296:2;3293:1;3289:10;3279:20;;3319:28;3343:2;3339;3335:11;3319:28;:::i;:::-;3381:15;;;3451:11;;;3447:20;;;3412:12;;;;3479:19;;;3476:39;;;3511:1;3508;3501:12;3476:39;3535:11;;;;3555:148;3571:6;3566:3;3563:15;3555:148;;;3637:23;3656:3;3637:23;:::i;:::-;3625:36;;3588:12;;;;3681;;;;3555:148;;;3722:5;2781:952;-1:-1:-1;;;;;;;;2781:952:1:o;3920:328::-;3997:6;4005;4013;4066:2;4054:9;4045:7;4041:23;4037:32;4034:52;;;4082:1;4079;4072:12;4034:52;4105:29;4124:9;4105:29;:::i;:::-;4095:39;;4153:38;4187:2;4176:9;4172:18;4153:38;:::i;:::-;4143:48;;4238:2;4227:9;4223:18;4210:32;4200:42;;3920:328;;;;;:::o;4253:160::-;4318:20;;4374:13;;4367:21;4357:32;;4347:60;;4403:1;4400;4393:12;4418:180;4474:6;4527:2;4515:9;4506:7;4502:23;4498:32;4495:52;;;4543:1;4540;4533:12;4495:52;4566:26;4582:9;4566:26;:::i;4603:407::-;4668:5;-1:-1:-1;;;;;4694:6:1;4691:30;4688:56;;;4724:18;;:::i;:::-;4762:57;4807:2;4786:15;;-1:-1:-1;;4782:29:1;4813:4;4778:40;4762:57;:::i;:::-;4753:66;;4842:6;4835:5;4828:21;4882:3;4873:6;4868:3;4864:16;4861:25;4858:45;;;4899:1;4896;4889:12;4858:45;4948:6;4943:3;4936:4;4929:5;4925:16;4912:43;5002:1;4995:4;4986:6;4979:5;4975:18;4971:29;4964:40;4603:407;;;;;:::o;5015:451::-;5084:6;5137:2;5125:9;5116:7;5112:23;5108:32;5105:52;;;5153:1;5150;5143:12;5105:52;5193:9;5180:23;-1:-1:-1;;;;;5218:6:1;5215:30;5212:50;;;5258:1;5255;5248:12;5212:50;5281:22;;5334:4;5326:13;;5322:27;-1:-1:-1;5312:55:1;;5363:1;5360;5353:12;5312:55;5386:74;5452:7;5447:2;5434:16;5429:2;5425;5421:11;5386:74;:::i;5471:254::-;5536:6;5544;5597:2;5585:9;5576:7;5572:23;5568:32;5565:52;;;5613:1;5610;5603:12;5565:52;5636:29;5655:9;5636:29;:::i;:::-;5626:39;;5684:35;5715:2;5704:9;5700:18;5684:35;:::i;:::-;5674:45;;5471:254;;;;;:::o;5730:322::-;5807:6;5815;5823;5876:2;5864:9;5855:7;5851:23;5847:32;5844:52;;;5892:1;5889;5882:12;5844:52;5915:29;5934:9;5915:29;:::i;:::-;5905:39;5991:2;5976:18;;5963:32;;-1:-1:-1;6042:2:1;6027:18;;;6014:32;;5730:322;-1:-1:-1;;;5730:322:1:o;6057:667::-;6152:6;6160;6168;6176;6229:3;6217:9;6208:7;6204:23;6200:33;6197:53;;;6246:1;6243;6236:12;6197:53;6269:29;6288:9;6269:29;:::i;:::-;6259:39;;6317:38;6351:2;6340:9;6336:18;6317:38;:::i;:::-;6307:48;;6402:2;6391:9;6387:18;6374:32;6364:42;;6457:2;6446:9;6442:18;6429:32;-1:-1:-1;;;;;6476:6:1;6473:30;6470:50;;;6516:1;6513;6506:12;6470:50;6539:22;;6592:4;6584:13;;6580:27;-1:-1:-1;6570:55:1;;6621:1;6618;6611:12;6570:55;6644:74;6710:7;6705:2;6692:16;6687:2;6683;6679:11;6644:74;:::i;:::-;6634:84;;;6057:667;;;;;;;:::o;6729:260::-;6797:6;6805;6858:2;6846:9;6837:7;6833:23;6829:32;6826:52;;;6874:1;6871;6864:12;6826:52;6897:29;6916:9;6897:29;:::i;:::-;6887:39;;6945:38;6979:2;6968:9;6964:18;6945:38;:::i;6994:380::-;7073:1;7069:12;;;;7116;;;7137:61;;7191:4;7183:6;7179:17;7169:27;;7137:61;7244:2;7236:6;7233:14;7213:18;7210:38;7207:161;;7290:10;7285:3;7281:20;7278:1;7271:31;7325:4;7322:1;7315:15;7353:4;7350:1;7343:15;7207:161;;6994:380;;;:::o;7379:356::-;7581:2;7563:21;;;7600:18;;;7593:30;7659:34;7654:2;7639:18;;7632:62;7726:2;7711:18;;7379:356::o;7740:127::-;7801:10;7796:3;7792:20;7789:1;7782:31;7832:4;7829:1;7822:15;7856:4;7853:1;7846:15;7872:127;7933:10;7928:3;7924:20;7921:1;7914:31;7964:4;7961:1;7954:15;7988:4;7985:1;7978:15;8004:135;8043:3;8064:17;;;8061:43;;8084:18;;:::i;:::-;-1:-1:-1;8131:1:1;8120:13;;8004:135::o;8144:424::-;8346:2;8328:21;;;8385:2;8365:18;;;8358:30;8424:34;8419:2;8404:18;;8397:62;8495:30;8490:2;8475:18;;8468:58;8558:3;8543:19;;8144:424::o;9770:545::-;9872:2;9867:3;9864:11;9861:448;;;9908:1;9933:5;9929:2;9922:17;9978:4;9974:2;9964:19;10048:2;10036:10;10032:19;10029:1;10025:27;10019:4;10015:38;10084:4;10072:10;10069:20;10066:47;;;-1:-1:-1;10107:4:1;10066:47;10162:2;10157:3;10153:12;10150:1;10146:20;10140:4;10136:31;10126:41;;10217:82;10235:2;10228:5;10225:13;10217:82;;;10280:17;;;10261:1;10250:13;10217:82;;;10221:3;;;9770:545;;;:::o;10491:1352::-;10617:3;10611:10;-1:-1:-1;;;;;10636:6:1;10633:30;10630:56;;;10666:18;;:::i;:::-;10695:97;10785:6;10745:38;10777:4;10771:11;10745:38;:::i;:::-;10739:4;10695:97;:::i;:::-;10847:4;;10911:2;10900:14;;10928:1;10923:663;;;;11630:1;11647:6;11644:89;;;-1:-1:-1;11699:19:1;;;11693:26;11644:89;-1:-1:-1;;10448:1:1;10444:11;;;10440:24;10436:29;10426:40;10472:1;10468:11;;;10423:57;11746:81;;10893:944;;10923:663;9717:1;9710:14;;;9754:4;9741:18;;-1:-1:-1;;10959:20:1;;;11077:236;11091:7;11088:1;11085:14;11077:236;;;11180:19;;;11174:26;11159:42;;11272:27;;;;11240:1;11228:14;;;;11107:19;;11077:236;;;11081:3;11341:6;11332:7;11329:19;11326:201;;;11402:19;;;11396:26;-1:-1:-1;;11485:1:1;11481:14;;;11497:3;11477:24;11473:37;11469:42;11454:58;11439:74;;11326:201;-1:-1:-1;;;;;11573:1:1;11557:14;;;11553:22;11540:36;;-1:-1:-1;10491:1352:1:o;11848:168::-;11921:9;;;11952;;11969:15;;;11963:22;;11949:37;11939:71;;11990:18;;:::i;12021:127::-;12082:10;12077:3;12073:20;12070:1;12063:31;12113:4;12110:1;12103:15;12137:4;12134:1;12127:15;12153:120;12193:1;12219;12209:35;;12224:18;;:::i;:::-;-1:-1:-1;12258:9:1;;12153:120::o;12278:128::-;12345:9;;;12366:11;;;12363:37;;;12380:18;;:::i;12411:496::-;12590:3;12628:6;12622:13;12644:66;12703:6;12698:3;12691:4;12683:6;12679:17;12644:66;:::i;:::-;12773:13;;12732:16;;;;12795:70;12773:13;12732:16;12842:4;12830:17;;12795:70;:::i;:::-;12881:20;;12411:496;-1:-1:-1;;;;12411:496:1:o;13319:489::-;-1:-1:-1;;;;;13588:15:1;;;13570:34;;13640:15;;13635:2;13620:18;;13613:43;13687:2;13672:18;;13665:34;;;13735:3;13730:2;13715:18;;13708:31;;;13513:4;;13756:46;;13782:19;;13774:6;13756:46;:::i;:::-;13748:54;13319:489;-1:-1:-1;;;;;;13319:489:1:o;13813:249::-;13882:6;13935:2;13923:9;13914:7;13910:23;13906:32;13903:52;;;13951:1;13948;13941:12;13903:52;13983:9;13977:16;14002:30;14026:5;14002:30;:::i;14067:112::-;14099:1;14125;14115:35;;14130:18;;:::i;:::-;-1:-1:-1;14164:9:1;;14067:112::o;14184:125::-;14249:9;;;14270:10;;;14267:36;;;14283:18;;:::i

Swarm Source

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