Token STAR BIZARRES

 

Overview ERC-721

Total Supply:
737 STAR

Holders:
168 addresses
Balance
1 STAR
0xb3572f27615cd0d4c8e3b95f20fbbf43ab4d7cbd
Loading
[ Download CSV Export  ] 
Loading
[ Download CSV Export  ] 
Loading

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

Similar Match Source Code
Note: This contract matches the deployed ByteCode of the Source Code for Contract 0x2c5161c3ab3b694139eec7f23d9668567533b8d3

Contract Name:
ERC721Token

Compiler Version
v0.8.0+commit.c7dfd78e

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

/**
 *Submitted for verification at Etherscan.io on 2022-03-16
*/

// SPDX-License-Identifier: MIT
// File: factory.sol



// File: @openzeppelin/contracts/utils/introspection/IERC165.sol
pragma solidity ^0.8.0;

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

// File: @openzeppelin/contracts/token/ERC721/IERC721.sol
pragma solidity ^0.8.0;

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

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

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

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

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

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

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

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

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

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

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

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

// File: @openzeppelin/contracts/token/ERC721/extensions/IERC721Enumerable.sol
pragma solidity ^0.8.0;

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

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

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

// File: @openzeppelin/contracts/utils/introspection/ERC165.sol
pragma solidity ^0.8.0;

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

// File: @openzeppelin/contracts/utils/Strings.sol
pragma solidity ^0.8.0;

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

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

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

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

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

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

pragma solidity ^0.8.0;

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

pragma solidity ^0.8.0;

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

// File: @openzeppelin/contracts/utils/Context.sol
pragma solidity ^0.8.0;

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

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

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

    // Token name
    string private _name;

    // Token symbol
    string private _symbol;

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

        _approve(to, tokenId);
    }

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

        return _tokenApprovals[tokenId];
    }

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

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

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

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

        _transfer(from, to, tokenId);
    }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

        _beforeTokenTransfer(from, to, tokenId);

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

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

        emit Transfer(from, to, tokenId);
    }

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

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

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

// File: @openzeppelin/contracts/token/ERC721/extensions/ERC721Enumerable.sol
pragma solidity ^0.8.0;

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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


// File: @openzeppelin/contracts/access/Ownable.sol
pragma solidity ^0.8.0;

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

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

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

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

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

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

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

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

pragma solidity ^0.8.0;

contract ERC721Token is ERC721Enumerable, Ownable {
    using Strings for uint256;
    string baseURI;
    string public baseExtension = ".json";
    string public notRevealedUri;
 

    uint256 public price;
    uint256 public maxSupply;
    uint256 public maxMintPerTx;
    uint256 public maxMintPerAddress;

    bool public paused = true;
    bool public onlyWhitelisted = false;
    bool public revealed = false;

    address[] public whitelistedAddresses;


    mapping(address => uint256) public addressMintedBalance;

    address private AlienAddress  = 0xfC144c5624ca31D8ccEa1423e3EBeC8b310c96b4;
    

    constructor(
        string memory _name,
        string memory _symbol,
        string memory _initBaseURI,
        string memory _initNotRevealedUri,
        uint256 _maxSupply,
        uint256 _price,
        uint256 _maxMintPerTx,
        uint256 _maxMintPerAddress
    ) ERC721(_name, _symbol) {
        setBaseURI(_initBaseURI);
        setNotRevealedURI(_initNotRevealedUri);
        setMaxSupply(_maxSupply);
        setPrice(_price);
        setMaxMintPerTx(_maxMintPerTx);
        setMaxMintPerAddress(_maxMintPerAddress);
    }

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

    //mint giveaway only owner 
    function mintGiveaway(uint256 _amount) public onlyOwner  {
        uint256 supply = totalSupply();
        require(supply + _amount <= maxSupply,"Can't mint more than max supply");
        for (uint256 i = 1; i <= _amount; i++) {
            _safeMint(msg.sender, supply + i);
        }

    }

  
    function buyNFT (uint256 _amount) public payable {
    require(!paused);
    uint256 supply = totalSupply();
    require(_amount > 0 && _amount <= maxMintPerTx,"exceeds the maximum per tx");
    uint256 ownerMintedCount = addressMintedBalance[msg.sender];
    require(ownerMintedCount + _amount <= maxMintPerAddress, "exceeds the maximum per address");
    require(supply + _amount <= maxSupply, "Can't mint more than max supply");

    if (msg.sender != owner()) {
        if(onlyWhitelisted == true) {
            require(isWhitelisted(msg.sender), "user is not whitelisted");
            require(ownerMintedCount + _amount <= maxMintPerAddress, "exceeds the maximum per address");
        }
        require(msg.value == price * _amount, "Wrong amount of FTM sent");
    }
    
    for (uint256 i = 1; i <= _amount; i++) {
        addressMintedBalance[msg.sender]++;
      _safeMint(msg.sender, supply + i);
    }
  }

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

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

    function isWhitelisted(address _user) public view returns (bool) {
    for (uint i = 0; i < whitelistedAddresses.length; i++) {
      if (whitelistedAddresses[i] == _user) {
          return true;
      }
    }
    return false;
  }


    // reveal all URI of NFTs
    function showNFTs() public onlyOwner {
        revealed = true;
    }

   // change image json hidden.
    function setNotRevealedURI(string memory _notRevealedURI)  public onlyOwner {
        notRevealedUri = _notRevealedURI;
    }
    // add base uri on error.
    function setBaseURI(string memory _newBaseURI) public onlyOwner {
    baseURI = _newBaseURI;
    }

    // change the price of nft.
    function setPrice(uint256 _newprice) public onlyOwner {
    price = _newprice;
    }
    // increase the supply, to do this you must add the remaining images to the json.
   function setMaxSupply(uint256 _newSupply) private onlyOwner {
    maxSupply = _newSupply;
    }

   // change or increase the maximum per tx
    function setMaxMintPerTx(uint256 _newmaxMintPerTx) public onlyOwner {
    maxMintPerTx = _newmaxMintPerTx;
    }

   // change or increase the maximum per address
     function setMaxMintPerAddress(uint256 _newmaxMintPerAddress) public onlyOwner {
        maxMintPerAddress = _newmaxMintPerAddress;
    }
    function setBaseExtension(string memory _newBaseExtension) public onlyOwner {
        baseExtension = _newBaseExtension;
    }

   // pause contract use (true) unpause (false)
    function pause(bool _state) public onlyOwner {
      paused = _state;
    }

    // use only whitelisted mint
    function setOnlyWhitelisted(bool _state) public onlyOwner {
    onlyWhitelisted = _state;
    }
  
   // add address whitelist 
    function whitelistUsers(address[] calldata _users) public onlyOwner {
    delete whitelistedAddresses;
    whitelistedAddresses = _users;
     }

   
    function Withdraw() public payable onlyOwner {
    // the factory owner receives 5% for sales.      
    (bool dm, ) = payable(0xfC144c5624ca31D8ccEa1423e3EBeC8b310c96b4).call{value: address(this).balance * 5 / 100}("");
    require(dm);
    // 95% will pay the owner of the contract (artist)
    (bool success, ) = payable(owner()).call{value: address(this).balance}("");
    require(success);
   
    }

    function WithdrawAll() public onlyOwner {
        uint256 Alien = ((address(this).balance * 5) / 100);
        uint256 balance = ((address(this).balance * 95)/100);
        payable(AlienAddress).transfer(Alien);
        payable(msg.sender).transfer(balance);
    }


}

Contract Security Audit

Contract ABI

[{"inputs":[{"internalType":"string","name":"_name","type":"string"},{"internalType":"string","name":"_symbol","type":"string"},{"internalType":"string","name":"_initBaseURI","type":"string"},{"internalType":"string","name":"_initNotRevealedUri","type":"string"},{"internalType":"uint256","name":"_maxSupply","type":"uint256"},{"internalType":"uint256","name":"_price","type":"uint256"},{"internalType":"uint256","name":"_maxMintPerTx","type":"uint256"},{"internalType":"uint256","name":"_maxMintPerAddress","type":"uint256"}],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"approved","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[],"name":"Withdraw","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"WithdrawAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"addressMintedBalance","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"baseExtension","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_amount","type":"uint256"}],"name":"buyNFT","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_user","type":"address"}],"name":"isWhitelisted","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxMintPerAddress","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxMintPerTx","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_amount","type":"uint256"}],"name":"mintGiveaway","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"notRevealedUri","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"onlyWhitelisted","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bool","name":"_state","type":"bool"}],"name":"pause","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"paused","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"price","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"revealed","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"_data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_newBaseExtension","type":"string"}],"name":"setBaseExtension","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_newBaseURI","type":"string"}],"name":"setBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_newmaxMintPerAddress","type":"uint256"}],"name":"setMaxMintPerAddress","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_newmaxMintPerTx","type":"uint256"}],"name":"setMaxMintPerTx","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_notRevealedURI","type":"string"}],"name":"setNotRevealedURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"_state","type":"bool"}],"name":"setOnlyWhitelisted","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_newprice","type":"uint256"}],"name":"setPrice","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"showNFTs","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"index","type":"uint256"}],"name":"tokenByIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"uint256","name":"index","type":"uint256"}],"name":"tokenOfOwnerByIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_owner","type":"address"}],"name":"walletOfOwner","outputs":[{"internalType":"uint256[]","name":"","type":"uint256[]"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address[]","name":"_users","type":"address[]"}],"name":"whitelistUsers","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"","type":"uint256"}],"name":"whitelistedAddresses","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"}]

60c06040526005608081905264173539b7b760d91b60a09081526200002891600c919062000384565b506012805462ffff001960ff19909116600117169055601580546001600160a01b03191673fc144c5624ca31d8ccea1423e3ebec8b310c96b41790553480156200007157600080fd5b50604051620034ac380380620034ac8339810160408190526200009491620004d5565b875188908890620000ad90600090602085019062000384565b508051620000c390600190602084019062000384565b505050620000e0620000da6200013060201b60201c565b62000134565b620000eb8662000186565b620000f685620001ee565b620001018462000249565b6200010c8362000294565b6200011782620002df565b62000122816200032a565b505050505050505062000638565b3390565b600a80546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6200019062000130565b6001600160a01b0316620001a362000375565b6001600160a01b031614620001d55760405162461bcd60e51b8152600401620001cc90620005b0565b60405180910390fd5b8051620001ea90600b90602084019062000384565b5050565b620001f862000130565b6001600160a01b03166200020b62000375565b6001600160a01b031614620002345760405162461bcd60e51b8152600401620001cc90620005b0565b8051620001ea90600d90602084019062000384565b6200025362000130565b6001600160a01b03166200026662000375565b6001600160a01b0316146200028f5760405162461bcd60e51b8152600401620001cc90620005b0565b600f55565b6200029e62000130565b6001600160a01b0316620002b162000375565b6001600160a01b031614620002da5760405162461bcd60e51b8152600401620001cc90620005b0565b600e55565b620002e962000130565b6001600160a01b0316620002fc62000375565b6001600160a01b031614620003255760405162461bcd60e51b8152600401620001cc90620005b0565b601055565b6200033462000130565b6001600160a01b03166200034762000375565b6001600160a01b031614620003705760405162461bcd60e51b8152600401620001cc90620005b0565b601155565b600a546001600160a01b031690565b8280546200039290620005e5565b90600052602060002090601f016020900481019282620003b6576000855562000401565b82601f10620003d157805160ff191683800117855562000401565b8280016001018555821562000401579182015b8281111562000401578251825591602001919060010190620003e4565b506200040f92915062000413565b5090565b5b808211156200040f576000815560010162000414565b600082601f8301126200043b578081fd5b81516001600160401b038082111562000458576200045862000622565b6040516020601f8401601f191682018101838111838210171562000480576200048062000622565b604052838252858401810187101562000497578485fd5b8492505b83831015620004ba57858301810151828401820152918201916200049b565b83831115620004cb57848185840101525b5095945050505050565b600080600080600080600080610100898b031215620004f2578384fd5b88516001600160401b038082111562000509578586fd5b620005178c838d016200042a565b995060208b01519150808211156200052d578586fd5b6200053b8c838d016200042a565b985060408b015191508082111562000551578586fd5b6200055f8c838d016200042a565b975060608b015191508082111562000575578586fd5b50620005848b828c016200042a565b9550506080890151935060a0890151925060c0890151915060e089015190509295985092959890939650565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b600281046001821680620005fa57607f821691505b602082108114156200061c57634e487b7160e01b600052602260045260246000fd5b50919050565b634e487b7160e01b600052604160045260246000fd5b612e6480620006486000396000f3fe60806040526004361061027d5760003560e01c8063616cdb1e1161014f578063a22cb465116100c1578063da3ef23f1161007a578063da3ef23f14610704578063de7fcb1d14610724578063e985e9c514610739578063edec5f2714610759578063f2c4ce1e14610779578063f2fde38b146107995761027d565b8063a22cb4651461065a578063b88d4fde1461067a578063ba4e5c491461069a578063c6682862146106ba578063c87b56dd146106cf578063d5abeb01146106ef5761027d565b80638da5cb5b116101135780638da5cb5b146105d1578063900782aa146105e657806391b7f5ed146105fb57806395d89b411461061b5780639c70b51214610630578063a035b1fe146106455761027d565b8063616cdb1e1461053c5780636352211e1461055c57806370a082311461057c578063715018a61461059c5780637af66cec146105b15761027d565b80633af32abf116101f357806351ed8288116101ac57806351ed8288146104c257806355f804b3146104d5578063572849c4146104f557806357ea89b61461050a5780635a648bc5146105125780635c975abb146105275761027d565b80633af32abf146104005780633c9527641461042057806342842e0e14610440578063438b6300146104605780634f6ccce71461048d57806351830227146104ad5761027d565b8063095ea7b311610245578063095ea7b31461033e57806318160ddd1461035e57806318cae269146103805780631e14d44b146103a057806323b872dd146103c05780632f745c59146103e05761027d565b806301ffc9a71461028257806302329a29146102b857806306fdde03146102da578063081812fc146102fc578063081c8c4414610329575b600080fd5b34801561028e57600080fd5b506102a261029d36600461247f565b6107b9565b6040516102af919061269b565b60405180910390f35b3480156102c457600080fd5b506102d86102d3366004612465565b6107e6565b005b3480156102e657600080fd5b506102ef610841565b6040516102af91906126a6565b34801561030857600080fd5b5061031c6103173660046124fd565b6108d3565b6040516102af9190612606565b34801561033557600080fd5b506102ef610916565b34801561034a57600080fd5b506102d86103593660046123cd565b6109a4565b34801561036a57600080fd5b50610373610a3c565b6040516102af9190612cc9565b34801561038c57600080fd5b5061037361039b3660046122a4565b610a42565b3480156103ac57600080fd5b506102d86103bb3660046124fd565b610a54565b3480156103cc57600080fd5b506102d86103db3660046122f0565b610a98565b3480156103ec57600080fd5b506103736103fb3660046123cd565b610ad0565b34801561040c57600080fd5b506102a261041b3660046122a4565b610b22565b34801561042c57600080fd5b506102d861043b366004612465565b610b9b565b34801561044c57600080fd5b506102d861045b3660046122f0565b610bf4565b34801561046c57600080fd5b5061048061047b3660046122a4565b610c0f565b6040516102af9190612657565b34801561049957600080fd5b506103736104a83660046124fd565b610ccd565b3480156104b957600080fd5b506102a2610d28565b6102d86104d03660046124fd565b610d37565b3480156104e157600080fd5b506102d86104f03660046124b7565b610eef565b34801561050157600080fd5b50610373610f45565b6102d8610f4b565b34801561051e57600080fd5b506102d8611084565b34801561053357600080fd5b506102a2611160565b34801561054857600080fd5b506102d86105573660046124fd565b611169565b34801561056857600080fd5b5061031c6105773660046124fd565b6111ad565b34801561058857600080fd5b506103736105973660046122a4565b6111e2565b3480156105a857600080fd5b506102d8611226565b3480156105bd57600080fd5b506102d86105cc3660046124fd565b611271565b3480156105dd57600080fd5b5061031c611312565b3480156105f257600080fd5b506102d8611321565b34801561060757600080fd5b506102d86106163660046124fd565b611373565b34801561062757600080fd5b506102ef6113b7565b34801561063c57600080fd5b506102a26113c6565b34801561065157600080fd5b506103736113d4565b34801561066657600080fd5b506102d86106753660046123a4565b6113da565b34801561068657600080fd5b506102d861069536600461232b565b6114a8565b3480156106a657600080fd5b5061031c6106b53660046124fd565b6114e1565b3480156106c657600080fd5b506102ef61150b565b3480156106db57600080fd5b506102ef6106ea3660046124fd565b611518565b3480156106fb57600080fd5b50610373611640565b34801561071057600080fd5b506102d861071f3660046124b7565b611646565b34801561073057600080fd5b50610373611698565b34801561074557600080fd5b506102a26107543660046122be565b61169e565b34801561076557600080fd5b506102d86107743660046123f6565b6116cc565b34801561078557600080fd5b506102d86107943660046124b7565b611723565b3480156107a557600080fd5b506102d86107b43660046122a4565b611775565b60006001600160e01b0319821663780e9d6360e01b14806107de57506107de826117e6565b90505b919050565b6107ee611826565b6001600160a01b03166107ff611312565b6001600160a01b03161461082e5760405162461bcd60e51b815260040161082590612a79565b60405180910390fd5b6012805460ff1916911515919091179055565b60606000805461085090612d6c565b80601f016020809104026020016040519081016040528092919081815260200182805461087c90612d6c565b80156108c95780601f1061089e576101008083540402835291602001916108c9565b820191906000526020600020905b8154815290600101906020018083116108ac57829003601f168201915b5050505050905090565b60006108de8261182a565b6108fa5760405162461bcd60e51b815260040161082590612a2d565b506000908152600460205260409020546001600160a01b031690565b600d805461092390612d6c565b80601f016020809104026020016040519081016040528092919081815260200182805461094f90612d6c565b801561099c5780601f106109715761010080835404028352916020019161099c565b820191906000526020600020905b81548152906001019060200180831161097f57829003601f168201915b505050505081565b60006109af826111ad565b9050806001600160a01b0316836001600160a01b031614156109e35760405162461bcd60e51b815260040161082590612b46565b806001600160a01b03166109f5611826565b6001600160a01b03161480610a115750610a1181610754611826565b610a2d5760405162461bcd60e51b8152600401610825906128d1565b610a378383611847565b505050565b60085490565b60146020526000908152604090205481565b610a5c611826565b6001600160a01b0316610a6d611312565b6001600160a01b031614610a935760405162461bcd60e51b815260040161082590612a79565b601155565b610aa9610aa3611826565b826118b5565b610ac55760405162461bcd60e51b815260040161082590612b87565b610a3783838361193a565b6000610adb836111e2565b8210610af95760405162461bcd60e51b8152600401610825906126b9565b506001600160a01b03919091166000908152600660209081526040808320938352929052205490565b6000805b601354811015610b9257826001600160a01b031660138281548110610b5b57634e487b7160e01b600052603260045260246000fd5b6000918252602090912001546001600160a01b03161415610b805760019150506107e1565b80610b8a81612da7565b915050610b26565b50600092915050565b610ba3611826565b6001600160a01b0316610bb4611312565b6001600160a01b031614610bda5760405162461bcd60e51b815260040161082590612a79565b601280549115156101000261ff0019909216919091179055565b610a37838383604051806020016040528060008152506114a8565b60606000610c1c836111e2565b905060008167ffffffffffffffff811115610c4757634e487b7160e01b600052604160045260246000fd5b604051908082528060200260200182016040528015610c70578160200160208202803683370190505b50905060005b82811015610cc557610c888582610ad0565b828281518110610ca857634e487b7160e01b600052603260045260246000fd5b602090810291909101015280610cbd81612da7565b915050610c76565b509392505050565b6000610cd7610a3c565b8210610cf55760405162461bcd60e51b815260040161082590612bd8565b60088281548110610d1657634e487b7160e01b600052603260045260246000fd5b90600052602060002001549050919050565b60125462010000900460ff1681565b60125460ff1615610d4757600080fd5b6000610d51610a3c565b9050600082118015610d6557506010548211155b610d815760405162461bcd60e51b815260040161082590612c92565b33600090815260146020526040902054601154610d9e8483612cde565b1115610dbc5760405162461bcd60e51b815260040161082590612c24565b600f54610dc98484612cde565b1115610de75760405162461bcd60e51b8152600401610825906127d3565b610def611312565b6001600160a01b0316336001600160a01b031614610e995760125460ff61010090910416151560011415610e6d57610e2633610b22565b610e425760405162461bcd60e51b815260040161082590612c5b565b601154610e4f8483612cde565b1115610e6d5760405162461bcd60e51b815260040161082590612c24565b82600e54610e7b9190612d0a565b3414610e995760405162461bcd60e51b81526004016108259061292e565b60015b838111610ee957336000908152601460205260408120805491610ebe83612da7565b90915550610ed7905033610ed28386612cde565b611a67565b80610ee181612da7565b915050610e9c565b50505050565b610ef7611826565b6001600160a01b0316610f08611312565b6001600160a01b031614610f2e5760405162461bcd60e51b815260040161082590612a79565b8051610f4190600b906020840190612103565b5050565b60115481565b610f53611826565b6001600160a01b0316610f64611312565b6001600160a01b031614610f8a5760405162461bcd60e51b815260040161082590612a79565b600073fc144c5624ca31d8ccea1423e3ebec8b310c96b46064610fae476005612d0a565b610fb89190612cf6565b604051610fc490612603565b60006040518083038185875af1925050503d8060008114611001576040519150601f19603f3d011682016040523d82523d6000602084013e611006565b606091505b505090508061101457600080fd5b600061101e611312565b6001600160a01b03164760405161103490612603565b60006040518083038185875af1925050503d8060008114611071576040519150601f19603f3d011682016040523d82523d6000602084013e611076565b606091505b5050905080610f4157600080fd5b61108c611826565b6001600160a01b031661109d611312565b6001600160a01b0316146110c35760405162461bcd60e51b815260040161082590612a79565b600060646110d2476005612d0a565b6110dc9190612cf6565b9050600060646110ed47605f612d0a565b6110f79190612cf6565b6015546040519192506001600160a01b03169083156108fc029084906000818181858888f19350505050158015611132573d6000803e3d6000fd5b50604051339082156108fc029083906000818181858888f19350505050158015610a37573d6000803e3d6000fd5b60125460ff1681565b611171611826565b6001600160a01b0316611182611312565b6001600160a01b0316146111a85760405162461bcd60e51b815260040161082590612a79565b601055565b6000818152600260205260408120546001600160a01b0316806107de5760405162461bcd60e51b8152600401610825906129af565b60006001600160a01b03821661120a5760405162461bcd60e51b815260040161082590612965565b506001600160a01b031660009081526003602052604090205490565b61122e611826565b6001600160a01b031661123f611312565b6001600160a01b0316146112655760405162461bcd60e51b815260040161082590612a79565b61126f6000611a81565b565b611279611826565b6001600160a01b031661128a611312565b6001600160a01b0316146112b05760405162461bcd60e51b815260040161082590612a79565b60006112ba610a3c565b600f549091506112ca8383612cde565b11156112e85760405162461bcd60e51b8152600401610825906127d3565b60015b828111610a375761130033610ed28385612cde565b8061130a81612da7565b9150506112eb565b600a546001600160a01b031690565b611329611826565b6001600160a01b031661133a611312565b6001600160a01b0316146113605760405162461bcd60e51b815260040161082590612a79565b6012805462ff0000191662010000179055565b61137b611826565b6001600160a01b031661138c611312565b6001600160a01b0316146113b25760405162461bcd60e51b815260040161082590612a79565b600e55565b60606001805461085090612d6c565b601254610100900460ff1681565b600e5481565b6113e2611826565b6001600160a01b0316826001600160a01b031614156114135760405162461bcd60e51b81526004016108259061284e565b8060056000611420611826565b6001600160a01b03908116825260208083019390935260409182016000908120918716808252919093529120805460ff191692151592909217909155611464611826565b6001600160a01b03167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c318360405161149c919061269b565b60405180910390a35050565b6114b96114b3611826565b836118b5565b6114d55760405162461bcd60e51b815260040161082590612b87565b610ee984848484611ad3565b601381815481106114f157600080fd5b6000918252602090912001546001600160a01b0316905081565b600c805461092390612d6c565b60606115238261182a565b61153f5760405162461bcd60e51b815260040161082590612af7565b60125462010000900460ff166115e157600d805461155c90612d6c565b80601f016020809104026020016040519081016040528092919081815260200182805461158890612d6c565b80156115d55780601f106115aa576101008083540402835291602001916115d5565b820191906000526020600020905b8154815290600101906020018083116115b857829003601f168201915b505050505090506107e1565b60006115eb611b06565b9050600081511161160b5760405180602001604052806000815250611639565b8061161584611b15565b600c60405160200161162993929190612541565b6040516020818303038152906040525b9392505050565b600f5481565b61164e611826565b6001600160a01b031661165f611312565b6001600160a01b0316146116855760405162461bcd60e51b815260040161082590612a79565b8051610f4190600c906020840190612103565b60105481565b6001600160a01b03918216600090815260056020908152604080832093909416825291909152205460ff1690565b6116d4611826565b6001600160a01b03166116e5611312565b6001600160a01b03161461170b5760405162461bcd60e51b815260040161082590612a79565b61171760136000612187565b610a37601383836121a5565b61172b611826565b6001600160a01b031661173c611312565b6001600160a01b0316146117625760405162461bcd60e51b815260040161082590612a79565b8051610f4190600d906020840190612103565b61177d611826565b6001600160a01b031661178e611312565b6001600160a01b0316146117b45760405162461bcd60e51b815260040161082590612a79565b6001600160a01b0381166117da5760405162461bcd60e51b815260040161082590612756565b6117e381611a81565b50565b60006001600160e01b031982166380ac58cd60e01b148061181757506001600160e01b03198216635b5e139f60e01b145b806107de57506107de82611c30565b3390565b6000908152600260205260409020546001600160a01b0316151590565b600081815260046020526040902080546001600160a01b0319166001600160a01b038416908117909155819061187c826111ad565b6001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b60006118c08261182a565b6118dc5760405162461bcd60e51b815260040161082590612885565b60006118e7836111ad565b9050806001600160a01b0316846001600160a01b031614806119225750836001600160a01b0316611917846108d3565b6001600160a01b0316145b806119325750611932818561169e565b949350505050565b826001600160a01b031661194d826111ad565b6001600160a01b0316146119735760405162461bcd60e51b815260040161082590612aae565b6001600160a01b0382166119995760405162461bcd60e51b81526004016108259061280a565b6119a4838383611c49565b6119af600082611847565b6001600160a01b03831660009081526003602052604081208054600192906119d8908490612d29565b90915550506001600160a01b0382166000908152600360205260408120805460019290611a06908490612cde565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b0386811691821790925591518493918716917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef91a4505050565b610f41828260405180602001604052806000815250611cd2565b600a80546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b611ade84848461193a565b611aea84848484611d05565b610ee95760405162461bcd60e51b815260040161082590612704565b6060600b805461085090612d6c565b606081611b3a57506040805180820190915260018152600360fc1b60208201526107e1565b8160005b8115611b645780611b4e81612da7565b9150611b5d9050600a83612cf6565b9150611b3e565b60008167ffffffffffffffff811115611b8d57634e487b7160e01b600052604160045260246000fd5b6040519080825280601f01601f191660200182016040528015611bb7576020820181803683370190505b5090505b841561193257611bcc600183612d29565b9150611bd9600a86612dc2565b611be4906030612cde565b60f81b818381518110611c0757634e487b7160e01b600052603260045260246000fd5b60200101906001600160f81b031916908160001a905350611c29600a86612cf6565b9450611bbb565b6001600160e01b031981166301ffc9a760e01b14919050565b611c54838383610a37565b6001600160a01b038316611c7057611c6b81611e20565b611c93565b816001600160a01b0316836001600160a01b031614611c9357611c938382611e64565b6001600160a01b038216611caf57611caa81611f01565b610a37565b826001600160a01b0316826001600160a01b031614610a3757610a378282611fda565b611cdc838361201e565b611ce96000848484611d05565b610a375760405162461bcd60e51b815260040161082590612704565b6000611d19846001600160a01b03166120fd565b15611e1557836001600160a01b031663150b7a02611d35611826565b8786866040518563ffffffff1660e01b8152600401611d57949392919061261a565b602060405180830381600087803b158015611d7157600080fd5b505af1925050508015611da1575060408051601f3d908101601f19168201909252611d9e9181019061249b565b60015b611dfb573d808015611dcf576040519150601f19603f3d011682016040523d82523d6000602084013e611dd4565b606091505b508051611df35760405162461bcd60e51b815260040161082590612704565b805181602001fd5b6001600160e01b031916630a85bd0160e11b149050611932565b506001949350505050565b600880546000838152600960205260408120829055600182018355919091527ff3f7a9fe364faab93b216da50a3214154f22a0a2b415b23a84c8169e8b636ee30155565b60006001611e71846111e2565b611e7b9190612d29565b600083815260076020526040902054909150808214611ece576001600160a01b03841660009081526006602090815260408083208584528252808320548484528184208190558352600790915290208190555b5060009182526007602090815260408084208490556001600160a01b039094168352600681528383209183525290812055565b600854600090611f1390600190612d29565b60008381526009602052604081205460088054939450909284908110611f4957634e487b7160e01b600052603260045260246000fd5b906000526020600020015490508060088381548110611f7857634e487b7160e01b600052603260045260246000fd5b6000918252602080832090910192909255828152600990915260408082208490558582528120556008805480611fbe57634e487b7160e01b600052603160045260246000fd5b6001900381819060005260206000200160009055905550505050565b6000611fe5836111e2565b6001600160a01b039093166000908152600660209081526040808320868452825280832085905593825260079052919091209190915550565b6001600160a01b0382166120445760405162461bcd60e51b8152600401610825906129f8565b61204d8161182a565b1561206a5760405162461bcd60e51b81526004016108259061279c565b61207660008383611c49565b6001600160a01b038216600090815260036020526040812080546001929061209f908490612cde565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b03861690811790915590518392907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a45050565b3b151590565b82805461210f90612d6c565b90600052602060002090601f0160209004810192826121315760008555612177565b82601f1061214a57805160ff1916838001178555612177565b82800160010185558215612177579182015b8281111561217757825182559160200191906001019061215c565b506121839291506121f8565b5090565b50805460008255906000526020600020908101906117e391906121f8565b828054828255906000526020600020908101928215612177579160200282015b828111156121775781546001600160a01b0319166001600160a01b038435161782556020909201916001909101906121c5565b5b8082111561218357600081556001016121f9565b600067ffffffffffffffff8084111561222857612228612e02565b604051601f8501601f19168101602001828111828210171561224c5761224c612e02565b60405284815291508183850186101561226457600080fd5b8484602083013760006020868301015250509392505050565b80356001600160a01b03811681146107e157600080fd5b803580151581146107e157600080fd5b6000602082840312156122b5578081fd5b6116398261227d565b600080604083850312156122d0578081fd5b6122d98361227d565b91506122e76020840161227d565b90509250929050565b600080600060608486031215612304578081fd5b61230d8461227d565b925061231b6020850161227d565b9150604084013590509250925092565b60008060008060808587031215612340578081fd5b6123498561227d565b93506123576020860161227d565b925060408501359150606085013567ffffffffffffffff811115612379578182fd5b8501601f81018713612389578182fd5b6123988782356020840161220d565b91505092959194509250565b600080604083850312156123b6578182fd5b6123bf8361227d565b91506122e760208401612294565b600080604083850312156123df578182fd5b6123e88361227d565b946020939093013593505050565b60008060208385031215612408578182fd5b823567ffffffffffffffff8082111561241f578384fd5b818501915085601f830112612432578384fd5b813581811115612440578485fd5b8660208083028501011115612453578485fd5b60209290920196919550909350505050565b600060208284031215612476578081fd5b61163982612294565b600060208284031215612490578081fd5b813561163981612e18565b6000602082840312156124ac578081fd5b815161163981612e18565b6000602082840312156124c8578081fd5b813567ffffffffffffffff8111156124de578182fd5b8201601f810184136124ee578182fd5b6119328482356020840161220d565b60006020828403121561250e578081fd5b5035919050565b6000815180845261252d816020860160208601612d40565b601f01601f19169290920160200192915050565b6000845160206125548285838a01612d40565b8551918401916125678184848a01612d40565b855492019183906002810460018083168061258357607f831692505b8583108114156125a157634e487b7160e01b88526022600452602488fd5b8080156125b557600181146125c6576125f2565b60ff198516885283880195506125f2565b6125cf8b612cd2565b895b858110156125ea5781548a8201529084019088016125d1565b505083880195505b50939b9a5050505050505050505050565b90565b6001600160a01b0391909116815260200190565b6001600160a01b038581168252841660208201526040810183905260806060820181905260009061264d90830184612515565b9695505050505050565b6020808252825182820181905260009190848201906040850190845b8181101561268f57835183529284019291840191600101612673565b50909695505050505050565b901515815260200190565b6000602082526116396020830184612515565b6020808252602b908201527f455243373231456e756d657261626c653a206f776e657220696e646578206f7560408201526a74206f6620626f756e647360a81b606082015260800190565b60208082526032908201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560408201527131b2b4bb32b91034b6b83632b6b2b73a32b960711b606082015260800190565b60208082526026908201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160408201526564647265737360d01b606082015260800190565b6020808252601c908201527f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000604082015260600190565b6020808252601f908201527f43616e2774206d696e74206d6f7265207468616e206d617820737570706c7900604082015260600190565b60208082526024908201527f4552433732313a207472616e7366657220746f20746865207a65726f206164646040820152637265737360e01b606082015260800190565b60208082526019908201527f4552433732313a20617070726f766520746f2063616c6c657200000000000000604082015260600190565b6020808252602c908201527f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860408201526b34b9ba32b73a103a37b5b2b760a11b606082015260800190565b60208082526038908201527f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760408201527f6e6572206e6f7220617070726f76656420666f7220616c6c0000000000000000606082015260800190565b60208082526018908201527f57726f6e6720616d6f756e74206f662046544d2073656e740000000000000000604082015260600190565b6020808252602a908201527f4552433732313a2062616c616e636520717565727920666f7220746865207a65604082015269726f206164647265737360b01b606082015260800190565b60208082526029908201527f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460408201526832b73a103a37b5b2b760b91b606082015260800190565b6020808252818101527f4552433732313a206d696e7420746f20746865207a65726f2061646472657373604082015260600190565b6020808252602c908201527f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860408201526b34b9ba32b73a103a37b5b2b760a11b606082015260800190565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b60208082526029908201527f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960408201526839903737ba1037bbb760b91b606082015260800190565b6020808252602f908201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60408201526e3732bc34b9ba32b73a103a37b5b2b760891b606082015260800190565b60208082526021908201527f4552433732313a20617070726f76616c20746f2063757272656e74206f776e656040820152603960f91b606082015260800190565b60208082526031908201527f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f6040820152701ddb995c881b9bdc88185c1c1c9bdd9959607a1b606082015260800190565b6020808252602c908201527f455243373231456e756d657261626c653a20676c6f62616c20696e646578206f60408201526b7574206f6620626f756e647360a01b606082015260800190565b6020808252601f908201527f6578636565647320746865206d6178696d756d20706572206164647265737300604082015260600190565b60208082526017908201527f75736572206973206e6f742077686974656c6973746564000000000000000000604082015260600190565b6020808252601a908201527f6578636565647320746865206d6178696d756d20706572207478000000000000604082015260600190565b90815260200190565b60009081526020902090565b60008219821115612cf157612cf1612dd6565b500190565b600082612d0557612d05612dec565b500490565b6000816000190483118215151615612d2457612d24612dd6565b500290565b600082821015612d3b57612d3b612dd6565b500390565b60005b83811015612d5b578181015183820152602001612d43565b83811115610ee95750506000910152565b600281046001821680612d8057607f821691505b60208210811415612da157634e487b7160e01b600052602260045260246000fd5b50919050565b6000600019821415612dbb57612dbb612dd6565b5060010190565b600082612dd157612dd1612dec565b500690565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052601260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b6001600160e01b0319811681146117e357600080fdfea26469706673582212204a2b62dcd71164d5a148d214c2c45632b81f7cdf8ad02aae007586c2e141fa1064736f6c6343000800003300000000000000000000000000000000000000000000000000000000000001000000000000000000000000000000000000000000000000000000000000000140000000000000000000000000000000000000000000000000000000000000018000000000000000000000000000000000000000000000000000000000000001c000000000000000000000000000000000000000000000000000000000000000140000000000000000000000000000000000000000000000000de0b6b3a76400000000000000000000000000000000000000000000000000000000000000000002000000000000000000000000000000000000000000000000000000000000000400000000000000000000000000000000000000000000000000000000000000067072756562610000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000670727565626100000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000001300000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000013000000000000000000000000000000000000000000000000000000000000000

Deployed ByteCode Sourcemap

45125:6318:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;36352:300;;;;;;;;;;-1:-1:-1;36352:300:0;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;50331:77;;;;;;;;;;-1:-1:-1;50331:77:0;;;;;:::i;:::-;;:::i;:::-;;23518:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;25211:308::-;;;;;;;;;;-1:-1:-1;25211:308:0;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;45279:28::-;;;;;;;;;;;;;:::i;24734:411::-;;;;;;;;;;-1:-1:-1;24734:411:0;;;;;:::i;:::-;;:::i;37155:113::-;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;45611:55::-;;;;;;;;;;-1:-1:-1;45611:55:0;;;;;:::i;:::-;;:::i;50002:138::-;;;;;;;;;;-1:-1:-1;50002:138:0;;;;;:::i;:::-;;:::i;26270:376::-;;;;;;;;;;-1:-1:-1;26270:376:0;;;;;:::i;:::-;;:::i;36736:343::-;;;;;;;;;;-1:-1:-1;36736:343:0;;;;;:::i;:::-;;:::i;48804:239::-;;;;;;;;;;-1:-1:-1;48804:239:0;;;;;:::i;:::-;;:::i;50450:97::-;;;;;;;;;;-1:-1:-1;50450:97:0;;;;;:::i;:::-;;:::i;26717:185::-;;;;;;;;;;-1:-1:-1;26717:185:0;;;;;:::i;:::-;;:::i;47751:390::-;;;;;;;;;;-1:-1:-1;47751:390:0;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;37345:320::-;;;;;;;;;;-1:-1:-1;37345:320:0;;;;;:::i;:::-;;:::i;45526:28::-;;;;;;;;;;;;;:::i;46804:939::-;;;;;;:::i;:::-;;:::i;49360:100::-;;;;;;;;;;-1:-1:-1;49360:100:0;;;;;:::i;:::-;;:::i;45411:32::-;;;;;;;;;;;;;:::i;50747:412::-;;;:::i;51167:269::-;;;;;;;;;;;;;:::i;45452:25::-;;;;;;;;;;;;;:::i;49829:114::-;;;;;;;;;;-1:-1:-1;49829:114:0;;;;;:::i;:::-;;:::i;23125:326::-;;;;;;;;;;-1:-1:-1;23125:326:0;;;;;:::i;:::-;;:::i;22768:295::-;;;;;;;;;;-1:-1:-1;22768:295:0;;;;;:::i;:::-;;:::i;44432:94::-;;;;;;;;;;;;;:::i;46492:300::-;;;;;;;;;;-1:-1:-1;46492:300:0;;;;;:::i;:::-;;:::i;43781:87::-;;;;;;;;;;;;;:::i;49084:71::-;;;;;;;;;;;;;:::i;49501:86::-;;;;;;;;;;-1:-1:-1;49501:86:0;;;;;:::i;:::-;;:::i;23687:104::-;;;;;;;;;;;;;:::i;45484:35::-;;;;;;;;;;;;;:::i;45319:20::-;;;;;;;;;;;;;:::i;25591:327::-;;;;;;;;;;-1:-1:-1;25591:327:0;;;;;:::i;:::-;;:::i;26973:365::-;;;;;;;;;;-1:-1:-1;26973:365:0;;;;;:::i;:::-;;:::i;45563:37::-;;;;;;;;;;-1:-1:-1;45563:37:0;;;;;:::i;:::-;;:::i;45235:::-;;;;;;;;;;;;;:::i;48149:647::-;;;;;;;;;;-1:-1:-1;48149:647:0;;;;;:::i;:::-;;:::i;45346:24::-;;;;;;;;;;;;;:::i;50146:128::-;;;;;;;;;;-1:-1:-1;50146:128:0;;;;;:::i;:::-;;:::i;45377:27::-;;;;;;;;;;;;;:::i;25989:214::-;;;;;;;;;;-1:-1:-1;25989:214:0;;;;;:::i;:::-;;:::i;50587:147::-;;;;;;;;;;-1:-1:-1;50587:147:0;;;;;:::i;:::-;;:::i;49196:127::-;;;;;;;;;;-1:-1:-1;49196:127:0;;;;;:::i;:::-;;:::i;44681:229::-;;;;;;;;;;-1:-1:-1;44681:229:0;;;;;:::i;:::-;;:::i;36352:300::-;36499:4;-1:-1:-1;;;;;;36541:50:0;;-1:-1:-1;;;36541:50:0;;:103;;;36608:36;36632:11;36608:23;:36::i;:::-;36521:123;;36352:300;;;;:::o;50331:77::-;44012:12;:10;:12::i;:::-;-1:-1:-1;;;;;44001:23:0;:7;:5;:7::i;:::-;-1:-1:-1;;;;;44001:23:0;;43993:68;;;;-1:-1:-1;;;43993:68:0;;;;;;;:::i;:::-;;;;;;;;;50385:6:::1;:15:::0;;-1:-1:-1;;50385:15:0::1;::::0;::::1;;::::0;;;::::1;::::0;;50331:77::o;23518:100::-;23572:13;23605:5;23598:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;23518:100;:::o;25211:308::-;25332:7;25379:16;25387:7;25379;:16::i;:::-;25357:110;;;;-1:-1:-1;;;25357:110:0;;;;;;;:::i;:::-;-1:-1:-1;25487:24:0;;;;:15;:24;;;;;;-1:-1:-1;;;;;25487:24:0;;25211:308::o;45279:28::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;24734:411::-;24815:13;24831:23;24846:7;24831:14;:23::i;:::-;24815:39;;24879:5;-1:-1:-1;;;;;24873:11:0;:2;-1:-1:-1;;;;;24873:11:0;;;24865:57;;;;-1:-1:-1;;;24865:57:0;;;;;;;:::i;:::-;24973:5;-1:-1:-1;;;;;24957:21:0;:12;:10;:12::i;:::-;-1:-1:-1;;;;;24957:21:0;;:62;;;;24982:37;24999:5;25006:12;:10;:12::i;24982:37::-;24935:168;;;;-1:-1:-1;;;24935:168:0;;;;;;;:::i;:::-;25116:21;25125:2;25129:7;25116:8;:21::i;:::-;24734:411;;;:::o;37155:113::-;37243:10;:17;37155:113;:::o;45611:55::-;;;;;;;;;;;;;:::o;50002:138::-;44012:12;:10;:12::i;:::-;-1:-1:-1;;;;;44001:23:0;:7;:5;:7::i;:::-;-1:-1:-1;;;;;44001:23:0;;43993:68;;;;-1:-1:-1;;;43993:68:0;;;;;;;:::i;:::-;50091:17:::1;:41:::0;50002:138::o;26270:376::-;26479:41;26498:12;:10;:12::i;:::-;26512:7;26479:18;:41::i;:::-;26457:140;;;;-1:-1:-1;;;26457:140:0;;;;;;;:::i;:::-;26610:28;26620:4;26626:2;26630:7;26610:9;:28::i;36736:343::-;36878:7;36933:23;36950:5;36933:16;:23::i;:::-;36925:5;:31;36903:124;;;;-1:-1:-1;;;36903:124:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;;37045:19:0;;;;;;;;:12;:19;;;;;;;;:26;;;;;;;;;36736:343::o;48804:239::-;48863:4;;48876:143;48897:20;:27;48893:31;;48876:143;;;48971:5;-1:-1:-1;;;;;48944:32:0;:20;48965:1;48944:23;;;;;;-1:-1:-1;;;48944:23:0;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;48944:23:0;:32;48940:72;;;48998:4;48991:11;;;;;48940:72;48926:3;;;;:::i;:::-;;;;48876:143;;;-1:-1:-1;49032:5:0;;48804:239;-1:-1:-1;;48804:239:0:o;50450:97::-;44012:12;:10;:12::i;:::-;-1:-1:-1;;;;;44001:23:0;:7;:5;:7::i;:::-;-1:-1:-1;;;;;44001:23:0;;43993:68;;;;-1:-1:-1;;;43993:68:0;;;;;;;:::i;:::-;50515:15:::1;:24:::0;;;::::1;;;;-1:-1:-1::0;;50515:24:0;;::::1;::::0;;;::::1;::::0;;50450:97::o;26717:185::-;26855:39;26872:4;26878:2;26882:7;26855:39;;;;;;;;;;;;:16;:39::i;47751:390::-;47838:16;47872:23;47898:17;47908:6;47898:9;:17::i;:::-;47872:43;;47926:25;47968:15;47954:30;;;;;;-1:-1:-1;;;47954:30:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;47954:30:0;;47926:58;;48000:9;47995:113;48015:15;48011:1;:19;47995:113;;;48066:30;48086:6;48094:1;48066:19;:30::i;:::-;48052:8;48061:1;48052:11;;;;;;-1:-1:-1;;;48052:11:0;;;;;;;;;;;;;;;;;;:44;48032:3;;;;:::i;:::-;;;;47995:113;;;-1:-1:-1;48125:8:0;47751:390;-1:-1:-1;;;47751:390:0:o;37345:320::-;37465:7;37520:30;:28;:30::i;:::-;37512:5;:38;37490:132;;;;-1:-1:-1;;;37490:132:0;;;;;;;:::i;:::-;37640:10;37651:5;37640:17;;;;;;-1:-1:-1;;;37640:17:0;;;;;;;;;;;;;;;;;37633:24;;37345:320;;;:::o;45526:28::-;;;;;;;;;:::o;46804:939::-;46869:6;;;;46868:7;46860:16;;;;;;46883:14;46900:13;:11;:13::i;:::-;46883:30;;46938:1;46928:7;:11;:38;;;;;46954:12;;46943:7;:23;;46928:38;46920:76;;;;-1:-1:-1;;;46920:76:0;;;;;;;:::i;:::-;47051:10;47003:24;47030:32;;;:20;:32;;;;;;47107:17;;47077:26;47096:7;47030:32;47077:26;:::i;:::-;:47;;47069:91;;;;-1:-1:-1;;;47069:91:0;;;;;;;:::i;:::-;47195:9;;47175:16;47184:7;47175:6;:16;:::i;:::-;:29;;47167:73;;;;-1:-1:-1;;;47167:73:0;;;;;;;:::i;:::-;47267:7;:5;:7::i;:::-;-1:-1:-1;;;;;47253:21:0;:10;-1:-1:-1;;;;;47253:21:0;;47249:343;;47290:15;;;;;;;;:23;;:15;:23;47287:222;;;47338:25;47352:10;47338:13;:25::i;:::-;47330:61;;;;-1:-1:-1;;;47330:61:0;;;;;;;:::i;:::-;47444:17;;47414:26;47433:7;47414:16;:26;:::i;:::-;:47;;47406:91;;;;-1:-1:-1;;;47406:91:0;;;;;;;:::i;:::-;47548:7;47540:5;;:15;;;;:::i;:::-;47527:9;:28;47519:65;;;;-1:-1:-1;;;47519:65:0;;;;;;;:::i;:::-;47621:1;47604:134;47629:7;47624:1;:12;47604:134;;47675:10;47654:32;;;;:20;:32;;;;;:34;;;;;;:::i;:::-;;;;-1:-1:-1;47697:33:0;;-1:-1:-1;47707:10:0;47719;47728:1;47719:6;:10;:::i;:::-;47697:9;:33::i;:::-;47638:3;;;;:::i;:::-;;;;47604:134;;;;46804:939;;;:::o;49360:100::-;44012:12;:10;:12::i;:::-;-1:-1:-1;;;;;44001:23:0;:7;:5;:7::i;:::-;-1:-1:-1;;;;;44001:23:0;;43993:68;;;;-1:-1:-1;;;43993:68:0;;;;;;;:::i;:::-;49431:21;;::::1;::::0;:7:::1;::::0;:21:::1;::::0;::::1;::::0;::::1;:::i;:::-;;49360:100:::0;:::o;45411:32::-;;;;:::o;50747:412::-;44012:12;:10;:12::i;:::-;-1:-1:-1;;;;;44001:23:0;:7;:5;:7::i;:::-;-1:-1:-1;;;;;44001:23:0;;43993:68;;;;-1:-1:-1;;;43993:68:0;;;;;;;:::i;:::-;50855:7:::1;50876:42;50960:3;50932:25;:21;50956:1;50932:25;:::i;:::-;:31;;;;:::i;:::-;50868:100;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;50854:114;;;50983:2;50975:11;;;::::0;::::1;;51050:12;51076:7;:5;:7::i;:::-;-1:-1:-1::0;;;;;51068:21:0::1;51097;51068:55;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;51049:74;;;51138:7;51130:16;;;::::0;::::1;51167:269:::0;44012:12;:10;:12::i;:::-;-1:-1:-1;;;;;44001:23:0;:7;:5;:7::i;:::-;-1:-1:-1;;;;;44001:23:0;;43993:68;;;;-1:-1:-1;;;43993:68:0;;;;;;;:::i;:::-;51218:13:::1;51265:3;51236:25;:21;51260:1;51236:25;:::i;:::-;51235:33;;;;:::i;:::-;51218:51:::0;-1:-1:-1;51280:15:0::1;51328:3;51300:26;:21;51324:2;51300:26;:::i;:::-;51299:32;;;;:::i;:::-;51351:12;::::0;51343:37:::1;::::0;51280:52;;-1:-1:-1;;;;;;51351:12:0::1;::::0;51343:37;::::1;;;::::0;51374:5;;51351:12:::1;51343:37:::0;51351:12;51343:37;51374:5;51351:12;51343:37;::::1;;;;;;;;;;;;;::::0;::::1;;;;;-1:-1:-1::0;51391:37:0::1;::::0;51399:10:::1;::::0;51391:37;::::1;;;::::0;51420:7;;51391:37:::1;::::0;;;51420:7;51399:10;51391:37;::::1;;;;;;;;;;;;;::::0;::::1;;;;45452:25:::0;;;;;;:::o;49829:114::-;44012:12;:10;:12::i;:::-;-1:-1:-1;;;;;44001:23:0;:7;:5;:7::i;:::-;-1:-1:-1;;;;;44001:23:0;;43993:68;;;;-1:-1:-1;;;43993:68:0;;;;;;;:::i;:::-;49904:12:::1;:31:::0;49829:114::o;23125:326::-;23242:7;23283:16;;;:7;:16;;;;;;-1:-1:-1;;;;;23283:16:0;23332:19;23310:110;;;;-1:-1:-1;;;23310:110:0;;;;;;;:::i;22768:295::-;22885:7;-1:-1:-1;;;;;22932:19:0;;22910:111;;;;-1:-1:-1;;;22910:111:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;;23039:16:0;;;;;:9;:16;;;;;;;22768:295::o;44432:94::-;44012:12;:10;:12::i;:::-;-1:-1:-1;;;;;44001:23:0;:7;:5;:7::i;:::-;-1:-1:-1;;;;;44001:23:0;;43993:68;;;;-1:-1:-1;;;43993:68:0;;;;;;;:::i;:::-;44497:21:::1;44515:1;44497:9;:21::i;:::-;44432:94::o:0;46492:300::-;44012:12;:10;:12::i;:::-;-1:-1:-1;;;;;44001:23:0;:7;:5;:7::i;:::-;-1:-1:-1;;;;;44001:23:0;;43993:68;;;;-1:-1:-1;;;43993:68:0;;;;;;;:::i;:::-;46560:14:::1;46577:13;:11;:13::i;:::-;46629:9;::::0;46560:30;;-1:-1:-1;46609:16:0::1;46618:7:::0;46560:30;46609:16:::1;:::i;:::-;:29;;46601:72;;;;-1:-1:-1::0;;;46601:72:0::1;;;;;;;:::i;:::-;46701:1;46684:99;46709:7;46704:1;:12;46684:99;;46738:33;46748:10;46760;46769:1:::0;46760:6;:10:::1;:::i;46738:33::-;46718:3:::0;::::1;::::0;::::1;:::i;:::-;;;;46684:99;;43781:87:::0;43854:6;;-1:-1:-1;;;;;43854:6:0;43781:87;:::o;49084:71::-;44012:12;:10;:12::i;:::-;-1:-1:-1;;;;;44001:23:0;:7;:5;:7::i;:::-;-1:-1:-1;;;;;44001:23:0;;43993:68;;;;-1:-1:-1;;;43993:68:0;;;;;;;:::i;:::-;49132:8:::1;:15:::0;;-1:-1:-1;;49132:15:0::1;::::0;::::1;::::0;;49084:71::o;49501:86::-;44012:12;:10;:12::i;:::-;-1:-1:-1;;;;;44001:23:0;:7;:5;:7::i;:::-;-1:-1:-1;;;;;44001:23:0;;43993:68;;;;-1:-1:-1;;;43993:68:0;;;;;;;:::i;:::-;49562:5:::1;:17:::0;49501:86::o;23687:104::-;23743:13;23776:7;23769:14;;;;;:::i;45484:35::-;;;;;;;;;:::o;45319:20::-;;;;:::o;25591:327::-;25738:12;:10;:12::i;:::-;-1:-1:-1;;;;;25726:24:0;:8;-1:-1:-1;;;;;25726:24:0;;;25718:62;;;;-1:-1:-1;;;25718:62:0;;;;;;;:::i;:::-;25838:8;25793:18;:32;25812:12;:10;:12::i;:::-;-1:-1:-1;;;;;25793:32:0;;;;;;;;;;;;;;;;;-1:-1:-1;25793:32:0;;;:42;;;;;;;;;;;;:53;;-1:-1:-1;;25793:53:0;;;;;;;;;;;25877:12;:10;:12::i;:::-;-1:-1:-1;;;;;25862:48:0;;25901:8;25862:48;;;;;;:::i;:::-;;;;;;;;25591:327;;:::o;26973:365::-;27162:41;27181:12;:10;:12::i;:::-;27195:7;27162:18;:41::i;:::-;27140:140;;;;-1:-1:-1;;;27140:140:0;;;;;;;:::i;:::-;27291:39;27305:4;27311:2;27315:7;27324:5;27291:13;:39::i;45563:37::-;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;45563:37:0;;-1:-1:-1;45563:37:0;:::o;45235:::-;;;;;;;:::i;48149:647::-;48222:13;48258:16;48266:7;48258;:16::i;:::-;48249:77;;;;-1:-1:-1;;;48249:77:0;;;;;;;:::i;:::-;48344:8;;;;;;;48340:65;;48388:14;48381:21;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;48340:65;48429:28;48460:10;:8;:10::i;:::-;48429:41;;48532:1;48507:14;48501:28;:32;:287;;;;;;;;;;;;;;;;;48625:14;48666:18;:7;:16;:18::i;:::-;48711:13;48582:165;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;48501:287;48481:307;48149:647;-1:-1:-1;;;48149:647:0:o;45346:24::-;;;;:::o;50146:128::-;44012:12;:10;:12::i;:::-;-1:-1:-1;;;;;44001:23:0;:7;:5;:7::i;:::-;-1:-1:-1;;;;;44001:23:0;;43993:68;;;;-1:-1:-1;;;43993:68:0;;;;;;;:::i;:::-;50233:33;;::::1;::::0;:13:::1;::::0;:33:::1;::::0;::::1;::::0;::::1;:::i;45377:27::-:0;;;;:::o;25989:214::-;-1:-1:-1;;;;;26160:25:0;;;26131:4;26160:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;;;;25989:214::o;50587:147::-;44012:12;:10;:12::i;:::-;-1:-1:-1;;;;;44001:23:0;:7;:5;:7::i;:::-;-1:-1:-1;;;;;44001:23:0;;43993:68;;;;-1:-1:-1;;;43993:68:0;;;;;;;:::i;:::-;50662:27:::1;50669:20;;50662:27;:::i;:::-;50696:29;:20;50719:6:::0;;50696:29:::1;:::i;49196:127::-:0;44012:12;:10;:12::i;:::-;-1:-1:-1;;;;;44001:23:0;:7;:5;:7::i;:::-;-1:-1:-1;;;;;44001:23:0;;43993:68;;;;-1:-1:-1;;;43993:68:0;;;;;;;:::i;:::-;49283:32;;::::1;::::0;:14:::1;::::0;:32:::1;::::0;::::1;::::0;::::1;:::i;44681:229::-:0;44012:12;:10;:12::i;:::-;-1:-1:-1;;;;;44001:23:0;:7;:5;:7::i;:::-;-1:-1:-1;;;;;44001:23:0;;43993:68;;;;-1:-1:-1;;;43993:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;44784:22:0;::::1;44762:110;;;;-1:-1:-1::0;;;44762:110:0::1;;;;;;;:::i;:::-;44883:19;44893:8;44883:9;:19::i;:::-;44681:229:::0;:::o;22349:355::-;22496:4;-1:-1:-1;;;;;;22538:40:0;;-1:-1:-1;;;22538:40:0;;:105;;-1:-1:-1;;;;;;;22595:48:0;;-1:-1:-1;;;22595:48:0;22538:105;:158;;;;22660:36;22684:11;22660:23;:36::i;20825:98::-;20905:10;20825:98;:::o;28885:127::-;28950:4;28974:16;;;:7;:16;;;;;;-1:-1:-1;;;;;28974:16:0;:30;;;28885:127::o;33008:174::-;33083:24;;;;:15;:24;;;;;:29;;-1:-1:-1;;;;;;33083:29:0;-1:-1:-1;;;;;33083:29:0;;;;;;;;:24;;33137:23;33083:24;33137:14;:23::i;:::-;-1:-1:-1;;;;;33128:46:0;;;;;;;;;;;33008:174;;:::o;29179:452::-;29308:4;29352:16;29360:7;29352;:16::i;:::-;29330:110;;;;-1:-1:-1;;;29330:110:0;;;;;;;:::i;:::-;29451:13;29467:23;29482:7;29467:14;:23::i;:::-;29451:39;;29520:5;-1:-1:-1;;;;;29509:16:0;:7;-1:-1:-1;;;;;29509:16:0;;:64;;;;29566:7;-1:-1:-1;;;;;29542:31:0;:20;29554:7;29542:11;:20::i;:::-;-1:-1:-1;;;;;29542:31:0;;29509:64;:113;;;;29590:32;29607:5;29614:7;29590:16;:32::i;:::-;29501:122;29179:452;-1:-1:-1;;;;29179:452:0:o;32275:615::-;32448:4;-1:-1:-1;;;;;32421:31:0;:23;32436:7;32421:14;:23::i;:::-;-1:-1:-1;;;;;32421:31:0;;32399:122;;;;-1:-1:-1;;;32399:122:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;32540:16:0;;32532:65;;;;-1:-1:-1;;;32532:65:0;;;;;;;:::i;:::-;32610:39;32631:4;32637:2;32641:7;32610:20;:39::i;:::-;32714:29;32731:1;32735:7;32714:8;:29::i;:::-;-1:-1:-1;;;;;32756:15:0;;;;;;:9;:15;;;;;:20;;32775:1;;32756:15;:20;;32775:1;;32756:20;:::i;:::-;;;;-1:-1:-1;;;;;;;32787:13:0;;;;;;:9;:13;;;;;:18;;32804:1;;32787:13;:18;;32804:1;;32787:18;:::i;:::-;;;;-1:-1:-1;;32816:16:0;;;;:7;:16;;;;;;:21;;-1:-1:-1;;;;;;32816:21:0;-1:-1:-1;;;;;32816:21:0;;;;;;;;;32855:27;;32816:16;;32855:27;;;;;;;32275:615;;;:::o;29973:110::-;30049:26;30059:2;30063:7;30049:26;;;;;;;;;;;;:9;:26::i;44918:173::-;44993:6;;;-1:-1:-1;;;;;45010:17:0;;;-1:-1:-1;;;;;;45010:17:0;;;;;;;45043:40;;44993:6;;;45010:17;44993:6;;45043:40;;44974:16;;45043:40;44918:173;;:::o;28220:352::-;28377:28;28387:4;28393:2;28397:7;28377:9;:28::i;:::-;28438:48;28461:4;28467:2;28471:7;28480:5;28438:22;:48::i;:::-;28416:148;;;;-1:-1:-1;;;28416:148:0;;;;;;;:::i;46343:108::-;46403:13;46436:7;46429:14;;;;;:::i;8172:723::-;8228:13;8449:10;8445:53;;-1:-1:-1;8476:10:0;;;;;;;;;;;;-1:-1:-1;;;8476:10:0;;;;;;8445:53;8523:5;8508:12;8564:78;8571:9;;8564:78;;8597:8;;;;:::i;:::-;;-1:-1:-1;8620:10:0;;-1:-1:-1;8628:2:0;8620:10;;:::i;:::-;;;8564:78;;;8652:19;8684:6;8674:17;;;;;;-1:-1:-1;;;8674:17:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;8674:17:0;;8652:39;;8702:154;8709:10;;8702:154;;8736:11;8746:1;8736:11;;:::i;:::-;;-1:-1:-1;8805:10:0;8813:2;8805:5;:10;:::i;:::-;8792:24;;:2;:24;:::i;:::-;8779:39;;8762:6;8769;8762:14;;;;;;-1:-1:-1;;;8762:14:0;;;;;;;;;;;;:56;-1:-1:-1;;;;;8762:56:0;;;;;;;;-1:-1:-1;8833:11:0;8842:2;8833:11;;:::i;:::-;;;8702:154;;7653:207;-1:-1:-1;;;;;;7812:40:0;;-1:-1:-1;;;7812:40:0;7653:207;;;:::o;38278:589::-;38422:45;38449:4;38455:2;38459:7;38422:26;:45::i;:::-;-1:-1:-1;;;;;38484:18:0;;38480:187;;38519:40;38551:7;38519:31;:40::i;:::-;38480:187;;;38589:2;-1:-1:-1;;;;;38581:10:0;:4;-1:-1:-1;;;;;38581:10:0;;38577:90;;38608:47;38641:4;38647:7;38608:32;:47::i;:::-;-1:-1:-1;;;;;38681:16:0;;38677:183;;38714:45;38751:7;38714:36;:45::i;:::-;38677:183;;;38787:4;-1:-1:-1;;;;;38781:10:0;:2;-1:-1:-1;;;;;38781:10:0;;38777:83;;38808:40;38836:2;38840:7;38808:27;:40::i;30310:321::-;30440:18;30446:2;30450:7;30440:5;:18::i;:::-;30491:54;30522:1;30526:2;30530:7;30539:5;30491:22;:54::i;:::-;30469:154;;;;-1:-1:-1;;;30469:154:0;;;;;;;:::i;33747:980::-;33902:4;33923:15;:2;-1:-1:-1;;;;;33923:13:0;;:15::i;:::-;33919:801;;;33992:2;-1:-1:-1;;;;;33976:36:0;;34035:12;:10;:12::i;:::-;34070:4;34097:7;34127:5;33976:175;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;33976:175:0;;;;;;;;-1:-1:-1;;33976:175:0;;;;;;;;;;;;:::i;:::-;;;33955:710;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;34334:13:0;;34330:320;;34377:108;;-1:-1:-1;;;34377:108:0;;;;;;;:::i;34330:320::-;34600:6;34594:13;34585:6;34581:2;34577:15;34570:38;33955:710;-1:-1:-1;;;;;;34215:51:0;-1:-1:-1;;;34215:51:0;;-1:-1:-1;34208:58:0;;33919:801;-1:-1:-1;34704:4:0;33747:980;;;;;;:::o;39590:164::-;39694:10;:17;;39667:24;;;;:15;:24;;;;;:44;;;39722:24;;;;;;;;;;;;39590:164::o;40381:1002::-;40661:22;40711:1;40686:22;40703:4;40686:16;:22::i;:::-;:26;;;;:::i;:::-;40723:18;40744:26;;;:17;:26;;;;;;40661:51;;-1:-1:-1;40877:28:0;;;40873:328;;-1:-1:-1;;;;;40944:18:0;;40922:19;40944:18;;;:12;:18;;;;;;;;:34;;;;;;;;;40995:30;;;;;;:44;;;41112:30;;:17;:30;;;;;:43;;;40873:328;-1:-1:-1;41297:26:0;;;;:17;:26;;;;;;;;41290:33;;;-1:-1:-1;;;;;41341:18:0;;;;;:12;:18;;;;;:34;;;;;;;41334:41;40381:1002::o;41678:1079::-;41956:10;:17;41931:22;;41956:21;;41976:1;;41956:21;:::i;:::-;41988:18;42009:24;;;:15;:24;;;;;;42382:10;:26;;41931:46;;-1:-1:-1;42009:24:0;;41931:46;;42382:26;;;;-1:-1:-1;;;42382:26:0;;;;;;;;;;;;;;;;;42360:48;;42446:11;42421:10;42432;42421:22;;;;;;-1:-1:-1;;;42421:22:0;;;;;;;;;;;;;;;;;;;;:36;;;;42526:28;;;:15;:28;;;;;;;:41;;;42698:24;;;;;42691:31;42733:10;:16;;;;;-1:-1:-1;;;42733:16:0;;;;;;;;;;;;;;;;;;;;;;;;;;41678:1079;;;;:::o;39168:221::-;39253:14;39270:20;39287:2;39270:16;:20::i;:::-;-1:-1:-1;;;;;39301:16:0;;;;;;;:12;:16;;;;;;;;:24;;;;;;;;:34;;;39346:26;;;:17;:26;;;;;;:35;;;;-1:-1:-1;39168:221:0:o;30967:382::-;-1:-1:-1;;;;;31047:16:0;;31039:61;;;;-1:-1:-1;;;31039:61:0;;;;;;;:::i;:::-;31120:16;31128:7;31120;:16::i;:::-;31119:17;31111:58;;;;-1:-1:-1;;;31111:58:0;;;;;;;:::i;:::-;31182:45;31211:1;31215:2;31219:7;31182:20;:45::i;:::-;-1:-1:-1;;;;;31240:13:0;;;;;;:9;:13;;;;;:18;;31257:1;;31240:13;:18;;31257:1;;31240:18;:::i;:::-;;;;-1:-1:-1;;31269:16:0;;;;:7;:16;;;;;;:21;;-1:-1:-1;;;;;;31269:21:0;-1:-1:-1;;;;;31269:21:0;;;;;;;;31308:33;;31269:16;;;31308:33;;31269:16;;31308:33;30967:382;;:::o;10725:387::-;11048:20;11096:8;;;10725:387::o;-1:-1:-1:-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;14:607:1;;110:18;151:2;143:6;140:14;137:2;;;157:18;;:::i;:::-;206:2;200:9;279:2;256:17;;-1:-1:-1;;252:31:1;240:44;;286:4;236:55;306:18;;;326:22;;;303:46;300:2;;;352:18;;:::i;:::-;388:2;381:22;436;;;421:6;-1:-1:-1;421:6:1;473:16;;;470:25;-1:-1:-1;467:2:1;;;508:1;505;498:12;467:2;558:6;553:3;546:4;538:6;534:17;521:44;613:1;606:4;597:6;589;585:19;581:30;574:41;;;90:531;;;;;:::o;626:175::-;696:20;;-1:-1:-1;;;;;745:31:1;;735:42;;725:2;;791:1;788;781:12;806:162;873:20;;929:13;;922:21;912:32;;902:2;;958:1;955;948:12;973:198;;1085:2;1073:9;1064:7;1060:23;1056:32;1053:2;;;1106:6;1098;1091:22;1053:2;1134:31;1155:9;1134:31;:::i;1176:274::-;;;1305:2;1293:9;1284:7;1280:23;1276:32;1273:2;;;1326:6;1318;1311:22;1273:2;1354:31;1375:9;1354:31;:::i;:::-;1344:41;;1404:40;1440:2;1429:9;1425:18;1404:40;:::i;:::-;1394:50;;1263:187;;;;;:::o;1455:342::-;;;;1601:2;1589:9;1580:7;1576:23;1572:32;1569:2;;;1622:6;1614;1607:22;1569:2;1650:31;1671:9;1650:31;:::i;:::-;1640:41;;1700:40;1736:2;1725:9;1721:18;1700:40;:::i;:::-;1690:50;;1787:2;1776:9;1772:18;1759:32;1749:42;;1559:238;;;;;:::o;1802:702::-;;;;;1974:3;1962:9;1953:7;1949:23;1945:33;1942:2;;;1996:6;1988;1981:22;1942:2;2024:31;2045:9;2024:31;:::i;:::-;2014:41;;2074:40;2110:2;2099:9;2095:18;2074:40;:::i;:::-;2064:50;;2161:2;2150:9;2146:18;2133:32;2123:42;;2216:2;2205:9;2201:18;2188:32;2243:18;2235:6;2232:30;2229:2;;;2280:6;2272;2265:22;2229:2;2308:22;;2361:4;2353:13;;2349:27;-1:-1:-1;2339:2:1;;2395:6;2387;2380:22;2339:2;2423:75;2490:7;2485:2;2472:16;2467:2;2463;2459:11;2423:75;:::i;:::-;2413:85;;;1932:572;;;;;;;:::o;2509:268::-;;;2635:2;2623:9;2614:7;2610:23;2606:32;2603:2;;;2656:6;2648;2641:22;2603:2;2684:31;2705:9;2684:31;:::i;:::-;2674:41;;2734:37;2767:2;2756:9;2752:18;2734:37;:::i;2782:266::-;;;2911:2;2899:9;2890:7;2886:23;2882:32;2879:2;;;2932:6;2924;2917:22;2879:2;2960:31;2981:9;2960:31;:::i;:::-;2950:41;3038:2;3023:18;;;;3010:32;;-1:-1:-1;;;2869:179:1:o;3053:666::-;;;3200:2;3188:9;3179:7;3175:23;3171:32;3168:2;;;3221:6;3213;3206:22;3168:2;3266:9;3253:23;3295:18;3336:2;3328:6;3325:14;3322:2;;;3357:6;3349;3342:22;3322:2;3400:6;3389:9;3385:22;3375:32;;3445:7;3438:4;3434:2;3430:13;3426:27;3416:2;;3472:6;3464;3457:22;3416:2;3517;3504:16;3543:2;3535:6;3532:14;3529:2;;;3564:6;3556;3549:22;3529:2;3623:7;3618:2;3612;3604:6;3600:15;3596:2;3592:24;3588:33;3585:46;3582:2;;;3649:6;3641;3634:22;3582:2;3685;3677:11;;;;;3707:6;;-1:-1:-1;3158:561:1;;-1:-1:-1;;;;3158:561:1:o;3724:192::-;;3833:2;3821:9;3812:7;3808:23;3804:32;3801:2;;;3854:6;3846;3839:22;3801:2;3882:28;3900:9;3882:28;:::i;3921:257::-;;4032:2;4020:9;4011:7;4007:23;4003:32;4000:2;;;4053:6;4045;4038:22;4000:2;4097:9;4084:23;4116:32;4142:5;4116:32;:::i;4183:261::-;;4305:2;4293:9;4284:7;4280:23;4276:32;4273:2;;;4326:6;4318;4311:22;4273:2;4363:9;4357:16;4382:32;4408:5;4382:32;:::i;4449:482::-;;4571:2;4559:9;4550:7;4546:23;4542:32;4539:2;;;4592:6;4584;4577:22;4539:2;4637:9;4624:23;4670:18;4662:6;4659:30;4656:2;;;4707:6;4699;4692:22;4656:2;4735:22;;4788:4;4780:13;;4776:27;-1:-1:-1;4766:2:1;;4822:6;4814;4807:22;4766:2;4850:75;4917:7;4912:2;4899:16;4894:2;4890;4886:11;4850:75;:::i;4936:190::-;;5048:2;5036:9;5027:7;5023:23;5019:32;5016:2;;;5069:6;5061;5054:22;5016:2;-1:-1:-1;5097:23:1;;5006:120;-1:-1:-1;5006:120:1:o;5131:259::-;;5212:5;5206:12;5239:6;5234:3;5227:19;5255:63;5311:6;5304:4;5299:3;5295:14;5288:4;5281:5;5277:16;5255:63;:::i;:::-;5372:2;5351:15;-1:-1:-1;;5347:29:1;5338:39;;;;5379:4;5334:50;;5182:208;-1:-1:-1;;5182:208:1:o;5395:1532::-;;5657:6;5651:13;5683:4;5696:51;5740:6;5735:3;5730:2;5722:6;5718:15;5696:51;:::i;:::-;5810:13;;5769:16;;;;5832:55;5810:13;5769:16;5854:15;;;5832:55;:::i;:::-;5978:13;;5909:20;;;5949:3;;6055:1;6040:17;;6076:1;6112:18;;;;6139:2;;6217:4;6207:8;6203:19;6191:31;;6139:2;6280;6270:8;6267:16;6247:18;6244:40;6241:2;;;-1:-1:-1;;;6307:33:1;;6363:4;6360:1;6353:15;6393:4;6314:3;6381:17;6241:2;6424:18;6451:110;;;;6575:1;6570:332;;;;6417:485;;6451:110;-1:-1:-1;;6486:24:1;;6472:39;;6531:20;;;;-1:-1:-1;6451:110:1;;6570:332;6606:39;6638:6;6606:39;:::i;:::-;6667:3;6683:169;6697:8;6694:1;6691:15;6683:169;;;6779:14;;6764:13;;;6757:37;6822:16;;;;6714:10;;6683:169;;;6687:3;;6883:8;6876:5;6872:20;6865:27;;6417:485;-1:-1:-1;6918:3:1;;5627:1300;-1:-1:-1;;;;;;;;;;;5627:1300:1:o;6932:205::-;7132:3;7123:14::o;7142:203::-;-1:-1:-1;;;;;7306:32:1;;;;7288:51;;7276:2;7261:18;;7243:102::o;7350:490::-;-1:-1:-1;;;;;7619:15:1;;;7601:34;;7671:15;;7666:2;7651:18;;7644:43;7718:2;7703:18;;7696:34;;;7766:3;7761:2;7746:18;;7739:31;;;7350:490;;7787:47;;7814:19;;7806:6;7787:47;:::i;:::-;7779:55;7553:287;-1:-1:-1;;;;;;7553:287:1:o;7845:635::-;8016:2;8068:21;;;8138:13;;8041:18;;;8160:22;;;7845:635;;8016:2;8239:15;;;;8213:2;8198:18;;;7845:635;8285:169;8299:6;8296:1;8293:13;8285:169;;;8360:13;;8348:26;;8429:15;;;;8394:12;;;;8321:1;8314:9;8285:169;;;-1:-1:-1;8471:3:1;;7996:484;-1:-1:-1;;;;;;7996:484:1:o;8485:187::-;8650:14;;8643:22;8625:41;;8613:2;8598:18;;8580:92::o;8677:221::-;;8826:2;8815:9;8808:21;8846:46;8888:2;8877:9;8873:18;8865:6;8846:46;:::i;8903:407::-;9105:2;9087:21;;;9144:2;9124:18;;;9117:30;9183:34;9178:2;9163:18;;9156:62;-1:-1:-1;;;9249:2:1;9234:18;;9227:41;9300:3;9285:19;;9077:233::o;9315:414::-;9517:2;9499:21;;;9556:2;9536:18;;;9529:30;9595:34;9590:2;9575:18;;9568:62;-1:-1:-1;;;9661:2:1;9646:18;;9639:48;9719:3;9704:19;;9489:240::o;9734:402::-;9936:2;9918:21;;;9975:2;9955:18;;;9948:30;10014:34;10009:2;9994:18;;9987:62;-1:-1:-1;;;10080:2:1;10065:18;;10058:36;10126:3;10111:19;;9908:228::o;10141:352::-;10343:2;10325:21;;;10382:2;10362:18;;;10355:30;10421;10416:2;10401:18;;10394:58;10484:2;10469:18;;10315:178::o;10498:355::-;10700:2;10682:21;;;10739:2;10719:18;;;10712:30;10778:33;10773:2;10758:18;;10751:61;10844:2;10829:18;;10672:181::o;10858:400::-;11060:2;11042:21;;;11099:2;11079:18;;;11072:30;11138:34;11133:2;11118:18;;11111:62;-1:-1:-1;;;11204:2:1;11189:18;;11182:34;11248:3;11233:19;;11032:226::o;11263:349::-;11465:2;11447:21;;;11504:2;11484:18;;;11477:30;11543:27;11538:2;11523:18;;11516:55;11603:2;11588:18;;11437:175::o;11617:408::-;11819:2;11801:21;;;11858:2;11838:18;;;11831:30;11897:34;11892:2;11877:18;;11870:62;-1:-1:-1;;;11963:2:1;11948:18;;11941:42;12015:3;12000:19;;11791:234::o;12030:420::-;12232:2;12214:21;;;12271:2;12251:18;;;12244:30;12310:34;12305:2;12290:18;;12283:62;12381:26;12376:2;12361:18;;12354:54;12440:3;12425:19;;12204:246::o;12455:348::-;12657:2;12639:21;;;12696:2;12676:18;;;12669:30;12735:26;12730:2;12715:18;;12708:54;12794:2;12779:18;;12629:174::o;12808:406::-;13010:2;12992:21;;;13049:2;13029:18;;;13022:30;13088:34;13083:2;13068:18;;13061:62;-1:-1:-1;;;13154:2:1;13139:18;;13132:40;13204:3;13189:19;;12982:232::o;13219:405::-;13421:2;13403:21;;;13460:2;13440:18;;;13433:30;13499:34;13494:2;13479:18;;13472:62;-1:-1:-1;;;13565:2:1;13550:18;;13543:39;13614:3;13599:19;;13393:231::o;13629:356::-;13831:2;13813:21;;;13850:18;;;13843:30;13909:34;13904:2;13889:18;;13882:62;13976:2;13961:18;;13803:182::o;13990:408::-;14192:2;14174:21;;;14231:2;14211:18;;;14204:30;14270:34;14265:2;14250:18;;14243:62;-1:-1:-1;;;14336:2:1;14321:18;;14314:42;14388:3;14373:19;;14164:234::o;14403:356::-;14605:2;14587:21;;;14624:18;;;14617:30;14683:34;14678:2;14663:18;;14656:62;14750:2;14735:18;;14577:182::o;14764:405::-;14966:2;14948:21;;;15005:2;14985:18;;;14978:30;15044:34;15039:2;15024:18;;15017:62;-1:-1:-1;;;15110:2:1;15095:18;;15088:39;15159:3;15144:19;;14938:231::o;15174:411::-;15376:2;15358:21;;;15415:2;15395:18;;;15388:30;15454:34;15449:2;15434:18;;15427:62;-1:-1:-1;;;15520:2:1;15505:18;;15498:45;15575:3;15560:19;;15348:237::o;15590:397::-;15792:2;15774:21;;;15831:2;15811:18;;;15804:30;15870:34;15865:2;15850:18;;15843:62;-1:-1:-1;;;15936:2:1;15921:18;;15914:31;15977:3;15962:19;;15764:223::o;15992:413::-;16194:2;16176:21;;;16233:2;16213:18;;;16206:30;16272:34;16267:2;16252:18;;16245:62;-1:-1:-1;;;16338:2:1;16323:18;;16316:47;16395:3;16380:19;;16166:239::o;16410:408::-;16612:2;16594:21;;;16651:2;16631:18;;;16624:30;16690:34;16685:2;16670:18;;16663:62;-1:-1:-1;;;16756:2:1;16741:18;;16734:42;16808:3;16793:19;;16584:234::o;16823:355::-;17025:2;17007:21;;;17064:2;17044:18;;;17037:30;17103:33;17098:2;17083:18;;17076:61;17169:2;17154:18;;16997:181::o;17183:347::-;17385:2;17367:21;;;17424:2;17404:18;;;17397:30;17463:25;17458:2;17443:18;;17436:53;17521:2;17506:18;;17357:173::o;17535:350::-;17737:2;17719:21;;;17776:2;17756:18;;;17749:30;17815:28;17810:2;17795:18;;17788:56;17876:2;17861:18;;17709:176::o;17890:177::-;18036:25;;;18024:2;18009:18;;17991:76::o;18072:129::-;;18140:17;;;18190:4;18174:21;;;18130:71::o;18206:128::-;;18277:1;18273:6;18270:1;18267:13;18264:2;;;18283:18;;:::i;:::-;-1:-1:-1;18319:9:1;;18254:80::o;18339:120::-;;18405:1;18395:2;;18410:18;;:::i;:::-;-1:-1:-1;18444:9:1;;18385:74::o;18464:168::-;;18570:1;18566;18562:6;18558:14;18555:1;18552:21;18547:1;18540:9;18533:17;18529:45;18526:2;;;18577:18;;:::i;:::-;-1:-1:-1;18617:9:1;;18516:116::o;18637:125::-;;18705:1;18702;18699:8;18696:2;;;18710:18;;:::i;:::-;-1:-1:-1;18747:9:1;;18686:76::o;18767:258::-;18839:1;18849:113;18863:6;18860:1;18857:13;18849:113;;;18939:11;;;18933:18;18920:11;;;18913:39;18885:2;18878:10;18849:113;;;18980:6;18977:1;18974:13;18971:2;;;-1:-1:-1;;19015:1:1;18997:16;;18990:27;18820:205::o;19030:380::-;19115:1;19105:12;;19162:1;19152:12;;;19173:2;;19227:4;19219:6;19215:17;19205:27;;19173:2;19280;19272:6;19269:14;19249:18;19246:38;19243:2;;;19326:10;19321:3;19317:20;19314:1;19307:31;19361:4;19358:1;19351:15;19389:4;19386:1;19379:15;19243:2;;19085:325;;;:::o;19415:135::-;;-1:-1:-1;;19475:17:1;;19472:2;;;19495:18;;:::i;:::-;-1:-1:-1;19542:1:1;19531:13;;19462:88::o;19555:112::-;;19613:1;19603:2;;19618:18;;:::i;:::-;-1:-1:-1;19652:9:1;;19593:74::o;19672:127::-;19733:10;19728:3;19724:20;19721:1;19714:31;19764:4;19761:1;19754:15;19788:4;19785:1;19778:15;19804:127;19865:10;19860:3;19856:20;19853:1;19846:31;19896:4;19893:1;19886:15;19920:4;19917:1;19910:15;19936:127;19997:10;19992:3;19988:20;19985:1;19978:31;20028:4;20025:1;20018:15;20052:4;20049:1;20042:15;20068:133;-1:-1:-1;;;;;;20144:32:1;;20134:43;;20124:2;;20191:1;20188;20181:12

Swarm Source

ipfs://4a2b62dcd71164d5a148d214c2c45632b81f7cdf8ad02aae007586c2e141fa10
Loading