ETH Price: $3,261.82 (+0.58%)
Gas: 1 Gwei

Token

Alien Mfers (Alien)
 

Overview

Max Total Supply

5 Alien

Holders

4

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A
Balance
1 Alien
0x94fa4e38cdcf652ad8f89d5a2897cfe5ca86278c
Loading...
Loading
Loading...
Loading
Loading...
Loading

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

Contract Source Code Verified (Exact Match)

Contract Name:
TheStripesNFT

Compiler Version
v0.8.7+commit.e28d00a7

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion, None license

Contract Source Code (Solidity)

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

// File: 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: 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: contracts/access/Ownable.sol



pragma solidity ^0.8.0;


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

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

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

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

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

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

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

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

// File: 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: 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: 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: 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: 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: 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: 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: 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: 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: TheStripesNFT.sol

//SPDX-License-Identifier: MIT

pragma solidity ^0.8.7;



contract TheStripesNFT is ERC721Enumerable, Ownable {
    using Strings for uint256;

    string public baseURI;
    string public baseExtension = ".json";
    uint256 public cost = 0.0169 ether;
    uint256 public maxSupply = 5100;
    uint256 public maxMintAmount = 10;
    uint256 public freeMints = 0;
    bool public paused = false;


    constructor(
        string memory _name,
        string memory _symbol,
        string memory _initBaseURI
    ) ERC721(_name, _symbol) {
        setBaseURI(_initBaseURI);
    }

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

    // public
    function mint(address _to, uint256 _mintAmount) public payable {
        uint256 supply = totalSupply();
        require(!paused);
        require(_mintAmount > 0);
        require(_mintAmount <= maxMintAmount);
        require(supply + _mintAmount <= maxSupply);

        if (msg.sender != owner()) {
            //general public
            if(freeMints <= 100) {
                require(msg.value >= (cost * _mintAmount) - cost, "Your value doesnt match the cost F");
                freeMints = freeMints + 1;
            }   else {
                    require(msg.value >= (cost * _mintAmount), "Your value doesnt match the cost");
                }
        }

        for (uint256 i = 1; i <= _mintAmount; i++) {
            _safeMint(_to, 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"
        );

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

    //only owner
    function setCost(uint256 _newCost) public onlyOwner {
        cost = _newCost;
    }


    function setmaxMintAmount(uint256 _newmaxMintAmount) public onlyOwner {
        maxMintAmount = _newmaxMintAmount;
    }

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

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

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


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

    function setFreeMintsMax() private onlyOwner {
        freeMints = 110;
    }


}

Contract Security Audit

Contract ABI

[{"inputs":[{"internalType":"string","name":"_name","type":"string"},{"internalType":"string","name":"_symbol","type":"string"},{"internalType":"string","name":"_initBaseURI","type":"string"}],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"approved","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"baseExtension","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"baseURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"cost","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"freeMints","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxMintAmount","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":"address","name":"_to","type":"address"},{"internalType":"uint256","name":"_mintAmount","type":"uint256"}],"name":"mint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"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":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"_data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_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":"_newCost","type":"uint256"}],"name":"setCost","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_newmaxMintAmount","type":"uint256"}],"name":"setmaxMintAmount","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":[],"name":"withdraw","outputs":[],"stateMutability":"payable","type":"function"}]

60806040526040518060400160405280600581526020017f2e6a736f6e000000000000000000000000000000000000000000000000000000815250600c908051906020019062000051929190620002ce565b50663c0a75e0b44000600d556113ec600e55600a600f5560006010556000601160006101000a81548160ff0219169083151502179055503480156200009557600080fd5b5060405162004a2638038062004a268339818101604052810190620000bb9190620003fc565b82828160009080519060200190620000d5929190620002ce565b508060019080519060200190620000ee929190620002ce565b50505062000111620001056200012b60201b60201c565b6200013360201b60201c565b6200012281620001f960201b60201c565b505050620006bc565b600033905090565b6000600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600a60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b620002096200012b60201b60201c565b73ffffffffffffffffffffffffffffffffffffffff166200022f620002a460201b60201c565b73ffffffffffffffffffffffffffffffffffffffff161462000288576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016200027f90620004dc565b60405180910390fd5b80600b9080519060200190620002a0929190620002ce565b5050565b6000600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b828054620002dc90620005a4565b90600052602060002090601f0160209004810192826200030057600085556200034c565b82601f106200031b57805160ff19168380011785556200034c565b828001600101855582156200034c579182015b828111156200034b5782518255916020019190600101906200032e565b5b5090506200035b91906200035f565b5090565b5b808211156200037a57600081600090555060010162000360565b5090565b6000620003956200038f8462000527565b620004fe565b905082815260208101848484011115620003b457620003b362000673565b5b620003c18482856200056e565b509392505050565b600082601f830112620003e157620003e06200066e565b5b8151620003f38482602086016200037e565b91505092915050565b6000806000606084860312156200041857620004176200067d565b5b600084015167ffffffffffffffff81111562000439576200043862000678565b5b6200044786828701620003c9565b935050602084015167ffffffffffffffff8111156200046b576200046a62000678565b5b6200047986828701620003c9565b925050604084015167ffffffffffffffff8111156200049d576200049c62000678565b5b620004ab86828701620003c9565b9150509250925092565b6000620004c46020836200055d565b9150620004d18262000693565b602082019050919050565b60006020820190508181036000830152620004f781620004b5565b9050919050565b60006200050a6200051d565b9050620005188282620005da565b919050565b6000604051905090565b600067ffffffffffffffff8211156200054557620005446200063f565b5b620005508262000682565b9050602081019050919050565b600082825260208201905092915050565b60005b838110156200058e57808201518184015260208101905062000571565b838111156200059e576000848401525b50505050565b60006002820490506001821680620005bd57607f821691505b60208210811415620005d457620005d362000610565b5b50919050565b620005e58262000682565b810181811067ffffffffffffffff821117156200060757620006066200063f565b5b80604052505050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b61435a80620006cc6000396000f3fe6080604052600436106101f95760003560e01c80635c975abb1161010d57806395d89b41116100a0578063c87b56dd1161006f578063c87b56dd14610705578063d5abeb0114610742578063da3ef23f1461076d578063e985e9c514610796578063f2fde38b146107d3576101f9565b806395d89b411461065d578063a22cb46514610688578063b88d4fde146106b1578063c6682862146106da576101f9565b8063715018a6116100dc578063715018a6146105c75780637f00c7a6146105de57806380b17335146106075780638da5cb5b14610632576101f9565b80635c975abb146104f75780636352211e146105225780636c0360eb1461055f57806370a082311461058a576101f9565b806323b872dd1161019057806342842e0e1161015f57806342842e0e14610402578063438b63001461042b57806344a0d68a146104685780634f6ccce71461049157806355f804b3146104ce576101f9565b806323b872dd146103765780632f745c591461039f5780633ccfd60b146103dc57806340c10f19146103e6576101f9565b8063095ea7b3116101cc578063095ea7b3146102cc57806313faede6146102f557806318160ddd14610320578063239c70ae1461034b576101f9565b806301ffc9a7146101fe57806302329a291461023b57806306fdde0314610264578063081812fc1461028f575b600080fd5b34801561020a57600080fd5b5061022560048036038101906102209190612f23565b6107fc565b6040516102329190613575565b60405180910390f35b34801561024757600080fd5b50610262600480360381019061025d9190612ef6565b610876565b005b34801561027057600080fd5b5061027961090f565b6040516102869190613590565b60405180910390f35b34801561029b57600080fd5b506102b660048036038101906102b19190612fc6565b6109a1565b6040516102c391906134ec565b60405180910390f35b3480156102d857600080fd5b506102f360048036038101906102ee9190612eb6565b610a26565b005b34801561030157600080fd5b5061030a610b3e565b6040516103179190613832565b60405180910390f35b34801561032c57600080fd5b50610335610b44565b6040516103429190613832565b60405180910390f35b34801561035757600080fd5b50610360610b51565b60405161036d9190613832565b60405180910390f35b34801561038257600080fd5b5061039d60048036038101906103989190612da0565b610b57565b005b3480156103ab57600080fd5b506103c660048036038101906103c19190612eb6565b610bb7565b6040516103d39190613832565b60405180910390f35b6103e4610c5c565b005b61040060048036038101906103fb9190612eb6565b610d51565b005b34801561040e57600080fd5b5061042960048036038101906104249190612da0565b610ef6565b005b34801561043757600080fd5b50610452600480360381019061044d9190612d33565b610f16565b60405161045f9190613553565b60405180910390f35b34801561047457600080fd5b5061048f600480360381019061048a9190612fc6565b610fc4565b005b34801561049d57600080fd5b506104b860048036038101906104b39190612fc6565b61104a565b6040516104c59190613832565b60405180910390f35b3480156104da57600080fd5b506104f560048036038101906104f09190612f7d565b6110bb565b005b34801561050357600080fd5b5061050c611151565b6040516105199190613575565b60405180910390f35b34801561052e57600080fd5b5061054960048036038101906105449190612fc6565b611164565b60405161055691906134ec565b60405180910390f35b34801561056b57600080fd5b50610574611216565b6040516105819190613590565b60405180910390f35b34801561059657600080fd5b506105b160048036038101906105ac9190612d33565b6112a4565b6040516105be9190613832565b60405180910390f35b3480156105d357600080fd5b506105dc61135c565b005b3480156105ea57600080fd5b5061060560048036038101906106009190612fc6565b6113e4565b005b34801561061357600080fd5b5061061c61146a565b6040516106299190613832565b60405180910390f35b34801561063e57600080fd5b50610647611470565b60405161065491906134ec565b60405180910390f35b34801561066957600080fd5b5061067261149a565b60405161067f9190613590565b60405180910390f35b34801561069457600080fd5b506106af60048036038101906106aa9190612e76565b61152c565b005b3480156106bd57600080fd5b506106d860048036038101906106d39190612df3565b6116ad565b005b3480156106e657600080fd5b506106ef61170f565b6040516106fc9190613590565b60405180910390f35b34801561071157600080fd5b5061072c60048036038101906107279190612fc6565b61179d565b6040516107399190613590565b60405180910390f35b34801561074e57600080fd5b50610757611847565b6040516107649190613832565b60405180910390f35b34801561077957600080fd5b50610794600480360381019061078f9190612f7d565b61184d565b005b3480156107a257600080fd5b506107bd60048036038101906107b89190612d60565b6118e3565b6040516107ca9190613575565b60405180910390f35b3480156107df57600080fd5b506107fa60048036038101906107f59190612d33565b611977565b005b60007f780e9d63000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916148061086f575061086e82611a6f565b5b9050919050565b61087e611b51565b73ffffffffffffffffffffffffffffffffffffffff1661089c611470565b73ffffffffffffffffffffffffffffffffffffffff16146108f2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016108e990613752565b60405180910390fd5b80601160006101000a81548160ff02191690831515021790555050565b60606000805461091e90613b3b565b80601f016020809104026020016040519081016040528092919081815260200182805461094a90613b3b565b80156109975780601f1061096c57610100808354040283529160200191610997565b820191906000526020600020905b81548152906001019060200180831161097a57829003601f168201915b5050505050905090565b60006109ac82611b59565b6109eb576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016109e290613732565b60405180910390fd5b6004600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b6000610a3182611164565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610aa2576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a99906137b2565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16610ac1611b51565b73ffffffffffffffffffffffffffffffffffffffff161480610af05750610aef81610aea611b51565b6118e3565b5b610b2f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b26906136b2565b60405180910390fd5b610b398383611bc5565b505050565b600d5481565b6000600880549050905090565b600f5481565b610b68610b62611b51565b82611c7e565b610ba7576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b9e906137d2565b60405180910390fd5b610bb2838383611d5c565b505050565b6000610bc2836112a4565b8210610c03576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610bfa906135b2565b60405180910390fd5b600660008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600083815260200190815260200160002054905092915050565b610c64611b51565b73ffffffffffffffffffffffffffffffffffffffff16610c82611470565b73ffffffffffffffffffffffffffffffffffffffff1614610cd8576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ccf90613752565b60405180910390fd5b60003373ffffffffffffffffffffffffffffffffffffffff1647604051610cfe906134d7565b60006040518083038185875af1925050503d8060008114610d3b576040519150601f19603f3d011682016040523d82523d6000602084013e610d40565b606091505b5050905080610d4e57600080fd5b50565b6000610d5b610b44565b9050601160009054906101000a900460ff1615610d7757600080fd5b60008211610d8457600080fd5b600f54821115610d9357600080fd5b600e548282610da29190613970565b1115610dad57600080fd5b610db5611470565b73ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff1614610eba57606460105411610e6857600d5482600d54610e0291906139f7565b610e0c9190613a51565b341015610e4e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e4590613672565b60405180910390fd5b6001601054610e5d9190613970565b601081905550610eb9565b81600d54610e7691906139f7565b341015610eb8576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610eaf906137f2565b60405180910390fd5b5b5b6000600190505b828111610ef057610edd848284610ed89190613970565b611fb8565b8080610ee890613b9e565b915050610ec1565b50505050565b610f11838383604051806020016040528060008152506116ad565b505050565b60606000610f23836112a4565b905060008167ffffffffffffffff811115610f4157610f40613d03565b5b604051908082528060200260200182016040528015610f6f5781602001602082028036833780820191505090505b50905060005b82811015610fb957610f878582610bb7565b828281518110610f9a57610f99613cd4565b5b6020026020010181815250508080610fb190613b9e565b915050610f75565b508092505050919050565b610fcc611b51565b73ffffffffffffffffffffffffffffffffffffffff16610fea611470565b73ffffffffffffffffffffffffffffffffffffffff1614611040576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161103790613752565b60405180910390fd5b80600d8190555050565b6000611054610b44565b8210611095576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161108c90613812565b60405180910390fd5b600882815481106110a9576110a8613cd4565b5b90600052602060002001549050919050565b6110c3611b51565b73ffffffffffffffffffffffffffffffffffffffff166110e1611470565b73ffffffffffffffffffffffffffffffffffffffff1614611137576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161112e90613752565b60405180910390fd5b80600b908051906020019061114d929190612b47565b5050565b601160009054906101000a900460ff1681565b6000806002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16141561120d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611204906136f2565b60405180910390fd5b80915050919050565b600b805461122390613b3b565b80601f016020809104026020016040519081016040528092919081815260200182805461124f90613b3b565b801561129c5780601f106112715761010080835404028352916020019161129c565b820191906000526020600020905b81548152906001019060200180831161127f57829003601f168201915b505050505081565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611315576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161130c906136d2565b60405180910390fd5b600360008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b611364611b51565b73ffffffffffffffffffffffffffffffffffffffff16611382611470565b73ffffffffffffffffffffffffffffffffffffffff16146113d8576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113cf90613752565b60405180910390fd5b6113e26000611fd6565b565b6113ec611b51565b73ffffffffffffffffffffffffffffffffffffffff1661140a611470565b73ffffffffffffffffffffffffffffffffffffffff1614611460576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161145790613752565b60405180910390fd5b80600f8190555050565b60105481565b6000600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b6060600180546114a990613b3b565b80601f01602080910402602001604051908101604052809291908181526020018280546114d590613b3b565b80156115225780601f106114f757610100808354040283529160200191611522565b820191906000526020600020905b81548152906001019060200180831161150557829003601f168201915b5050505050905090565b611534611b51565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156115a2576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161159990613652565b60405180910390fd5b80600560006115af611b51565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff1661165c611b51565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31836040516116a19190613575565b60405180910390a35050565b6116be6116b8611b51565b83611c7e565b6116fd576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116f4906137d2565b60405180910390fd5b6117098484848461209c565b50505050565b600c805461171c90613b3b565b80601f016020809104026020016040519081016040528092919081815260200182805461174890613b3b565b80156117955780601f1061176a57610100808354040283529160200191611795565b820191906000526020600020905b81548152906001019060200180831161177857829003601f168201915b505050505081565b60606117a882611b59565b6117e7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117de90613792565b60405180910390fd5b60006117f16120f8565b90506000815111611811576040518060200160405280600081525061183f565b8061181b8461218a565b600c60405160200161182f939291906134a6565b6040516020818303038152906040525b915050919050565b600e5481565b611855611b51565b73ffffffffffffffffffffffffffffffffffffffff16611873611470565b73ffffffffffffffffffffffffffffffffffffffff16146118c9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118c090613752565b60405180910390fd5b80600c90805190602001906118df929190612b47565b5050565b6000600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b61197f611b51565b73ffffffffffffffffffffffffffffffffffffffff1661199d611470565b73ffffffffffffffffffffffffffffffffffffffff16146119f3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016119ea90613752565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415611a63576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a5a906135f2565b60405180910390fd5b611a6c81611fd6565b50565b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161480611b3a57507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b80611b4a5750611b49826122eb565b5b9050919050565b600033905090565b60008073ffffffffffffffffffffffffffffffffffffffff166002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614159050919050565b816004600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16611c3883611164565b73ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b6000611c8982611b59565b611cc8576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611cbf90613692565b60405180910390fd5b6000611cd383611164565b90508073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161480611d4257508373ffffffffffffffffffffffffffffffffffffffff16611d2a846109a1565b73ffffffffffffffffffffffffffffffffffffffff16145b80611d535750611d5281856118e3565b5b91505092915050565b8273ffffffffffffffffffffffffffffffffffffffff16611d7c82611164565b73ffffffffffffffffffffffffffffffffffffffff1614611dd2576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611dc990613772565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611e42576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e3990613632565b60405180910390fd5b611e4d838383612355565b611e58600082611bc5565b6001600360008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254611ea89190613a51565b925050819055506001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254611eff9190613970565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4505050565b611fd2828260405180602001604052806000815250612469565b5050565b6000600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600a60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b6120a7848484611d5c565b6120b3848484846124c4565b6120f2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016120e9906135d2565b60405180910390fd5b50505050565b6060600b805461210790613b3b565b80601f016020809104026020016040519081016040528092919081815260200182805461213390613b3b565b80156121805780601f1061215557610100808354040283529160200191612180565b820191906000526020600020905b81548152906001019060200180831161216357829003601f168201915b5050505050905090565b606060008214156121d2576040518060400160405280600181526020017f300000000000000000000000000000000000000000000000000000000000000081525090506122e6565b600082905060005b600082146122045780806121ed90613b9e565b915050600a826121fd91906139c6565b91506121da565b60008167ffffffffffffffff8111156122205761221f613d03565b5b6040519080825280601f01601f1916602001820160405280156122525781602001600182028036833780820191505090505b5090505b600085146122df5760018261226b9190613a51565b9150600a8561227a9190613be7565b60306122869190613970565b60f81b81838151811061229c5761229b613cd4565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a856122d891906139c6565b9450612256565b8093505050505b919050565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b61236083838361265b565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614156123a35761239e81612660565b6123e2565b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16146123e1576123e083826126a9565b5b5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156124255761242081612816565b612464565b8273ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16146124635761246282826128e7565b5b5b505050565b6124738383612966565b61248060008484846124c4565b6124bf576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016124b6906135d2565b60405180910390fd5b505050565b60006124e58473ffffffffffffffffffffffffffffffffffffffff16612b34565b1561264e578373ffffffffffffffffffffffffffffffffffffffff1663150b7a0261250e611b51565b8786866040518563ffffffff1660e01b81526004016125309493929190613507565b602060405180830381600087803b15801561254a57600080fd5b505af192505050801561257b57506040513d601f19601f820116820180604052508101906125789190612f50565b60015b6125fe573d80600081146125ab576040519150601f19603f3d011682016040523d82523d6000602084013e6125b0565b606091505b506000815114156125f6576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016125ed906135d2565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050612653565b600190505b949350505050565b505050565b6008805490506009600083815260200190815260200160002081905550600881908060018154018082558091505060019003906000526020600020016000909190919091505550565b600060016126b6846112a4565b6126c09190613a51565b90506000600760008481526020019081526020016000205490508181146127a5576000600660008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600084815260200190815260200160002054905080600660008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600084815260200190815260200160002081905550816007600083815260200190815260200160002081905550505b6007600084815260200190815260200160002060009055600660008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008381526020019081526020016000206000905550505050565b6000600160088054905061282a9190613a51565b905060006009600084815260200190815260200160002054905060006008838154811061285a57612859613cd4565b5b90600052602060002001549050806008838154811061287c5761287b613cd4565b5b9060005260206000200181905550816009600083815260200190815260200160002081905550600960008581526020019081526020016000206000905560088054806128cb576128ca613ca5565b5b6001900381819060005260206000200160009055905550505050565b60006128f2836112a4565b905081600660008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600083815260200190815260200160002081905550806007600084815260200190815260200160002081905550505050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156129d6576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016129cd90613712565b60405180910390fd5b6129df81611b59565b15612a1f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612a1690613612565b60405180910390fd5b612a2b60008383612355565b6001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254612a7b9190613970565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45050565b600080823b905060008111915050919050565b828054612b5390613b3b565b90600052602060002090601f016020900481019282612b755760008555612bbc565b82601f10612b8e57805160ff1916838001178555612bbc565b82800160010185558215612bbc579182015b82811115612bbb578251825591602001919060010190612ba0565b5b509050612bc99190612bcd565b5090565b5b80821115612be6576000816000905550600101612bce565b5090565b6000612bfd612bf884613872565b61384d565b905082815260208101848484011115612c1957612c18613d37565b5b612c24848285613af9565b509392505050565b6000612c3f612c3a846138a3565b61384d565b905082815260208101848484011115612c5b57612c5a613d37565b5b612c66848285613af9565b509392505050565b600081359050612c7d816142c8565b92915050565b600081359050612c92816142df565b92915050565b600081359050612ca7816142f6565b92915050565b600081519050612cbc816142f6565b92915050565b600082601f830112612cd757612cd6613d32565b5b8135612ce7848260208601612bea565b91505092915050565b600082601f830112612d0557612d04613d32565b5b8135612d15848260208601612c2c565b91505092915050565b600081359050612d2d8161430d565b92915050565b600060208284031215612d4957612d48613d41565b5b6000612d5784828501612c6e565b91505092915050565b60008060408385031215612d7757612d76613d41565b5b6000612d8585828601612c6e565b9250506020612d9685828601612c6e565b9150509250929050565b600080600060608486031215612db957612db8613d41565b5b6000612dc786828701612c6e565b9350506020612dd886828701612c6e565b9250506040612de986828701612d1e565b9150509250925092565b60008060008060808587031215612e0d57612e0c613d41565b5b6000612e1b87828801612c6e565b9450506020612e2c87828801612c6e565b9350506040612e3d87828801612d1e565b925050606085013567ffffffffffffffff811115612e5e57612e5d613d3c565b5b612e6a87828801612cc2565b91505092959194509250565b60008060408385031215612e8d57612e8c613d41565b5b6000612e9b85828601612c6e565b9250506020612eac85828601612c83565b9150509250929050565b60008060408385031215612ecd57612ecc613d41565b5b6000612edb85828601612c6e565b9250506020612eec85828601612d1e565b9150509250929050565b600060208284031215612f0c57612f0b613d41565b5b6000612f1a84828501612c83565b91505092915050565b600060208284031215612f3957612f38613d41565b5b6000612f4784828501612c98565b91505092915050565b600060208284031215612f6657612f65613d41565b5b6000612f7484828501612cad565b91505092915050565b600060208284031215612f9357612f92613d41565b5b600082013567ffffffffffffffff811115612fb157612fb0613d3c565b5b612fbd84828501612cf0565b91505092915050565b600060208284031215612fdc57612fdb613d41565b5b6000612fea84828501612d1e565b91505092915050565b6000612fff8383613488565b60208301905092915050565b61301481613a85565b82525050565b6000613025826138f9565b61302f8185613927565b935061303a836138d4565b8060005b8381101561306b5781516130528882612ff3565b975061305d8361391a565b92505060018101905061303e565b5085935050505092915050565b61308181613a97565b82525050565b600061309282613904565b61309c8185613938565b93506130ac818560208601613b08565b6130b581613d46565b840191505092915050565b60006130cb8261390f565b6130d58185613954565b93506130e5818560208601613b08565b6130ee81613d46565b840191505092915050565b60006131048261390f565b61310e8185613965565b935061311e818560208601613b08565b80840191505092915050565b6000815461313781613b3b565b6131418186613965565b9450600182166000811461315c576001811461316d576131a0565b60ff198316865281860193506131a0565b613176856138e4565b60005b8381101561319857815481890152600182019150602081019050613179565b838801955050505b50505092915050565b60006131b6602b83613954565b91506131c182613d57565b604082019050919050565b60006131d9603283613954565b91506131e482613da6565b604082019050919050565b60006131fc602683613954565b915061320782613df5565b604082019050919050565b600061321f601c83613954565b915061322a82613e44565b602082019050919050565b6000613242602483613954565b915061324d82613e6d565b604082019050919050565b6000613265601983613954565b915061327082613ebc565b602082019050919050565b6000613288602283613954565b915061329382613ee5565b604082019050919050565b60006132ab602c83613954565b91506132b682613f34565b604082019050919050565b60006132ce603883613954565b91506132d982613f83565b604082019050919050565b60006132f1602a83613954565b91506132fc82613fd2565b604082019050919050565b6000613314602983613954565b915061331f82614021565b604082019050919050565b6000613337602083613954565b915061334282614070565b602082019050919050565b600061335a602c83613954565b915061336582614099565b604082019050919050565b600061337d602083613954565b9150613388826140e8565b602082019050919050565b60006133a0602983613954565b91506133ab82614111565b604082019050919050565b60006133c3602f83613954565b91506133ce82614160565b604082019050919050565b60006133e6602183613954565b91506133f1826141af565b604082019050919050565b6000613409600083613949565b9150613414826141fe565b600082019050919050565b600061342c603183613954565b915061343782614201565b604082019050919050565b600061344f602083613954565b915061345a82614250565b602082019050919050565b6000613472602c83613954565b915061347d82614279565b604082019050919050565b61349181613aef565b82525050565b6134a081613aef565b82525050565b60006134b282866130f9565b91506134be82856130f9565b91506134ca828461312a565b9150819050949350505050565b60006134e2826133fc565b9150819050919050565b6000602082019050613501600083018461300b565b92915050565b600060808201905061351c600083018761300b565b613529602083018661300b565b6135366040830185613497565b81810360608301526135488184613087565b905095945050505050565b6000602082019050818103600083015261356d818461301a565b905092915050565b600060208201905061358a6000830184613078565b92915050565b600060208201905081810360008301526135aa81846130c0565b905092915050565b600060208201905081810360008301526135cb816131a9565b9050919050565b600060208201905081810360008301526135eb816131cc565b9050919050565b6000602082019050818103600083015261360b816131ef565b9050919050565b6000602082019050818103600083015261362b81613212565b9050919050565b6000602082019050818103600083015261364b81613235565b9050919050565b6000602082019050818103600083015261366b81613258565b9050919050565b6000602082019050818103600083015261368b8161327b565b9050919050565b600060208201905081810360008301526136ab8161329e565b9050919050565b600060208201905081810360008301526136cb816132c1565b9050919050565b600060208201905081810360008301526136eb816132e4565b9050919050565b6000602082019050818103600083015261370b81613307565b9050919050565b6000602082019050818103600083015261372b8161332a565b9050919050565b6000602082019050818103600083015261374b8161334d565b9050919050565b6000602082019050818103600083015261376b81613370565b9050919050565b6000602082019050818103600083015261378b81613393565b9050919050565b600060208201905081810360008301526137ab816133b6565b9050919050565b600060208201905081810360008301526137cb816133d9565b9050919050565b600060208201905081810360008301526137eb8161341f565b9050919050565b6000602082019050818103600083015261380b81613442565b9050919050565b6000602082019050818103600083015261382b81613465565b9050919050565b60006020820190506138476000830184613497565b92915050565b6000613857613868565b90506138638282613b6d565b919050565b6000604051905090565b600067ffffffffffffffff82111561388d5761388c613d03565b5b61389682613d46565b9050602081019050919050565b600067ffffffffffffffff8211156138be576138bd613d03565b5b6138c782613d46565b9050602081019050919050565b6000819050602082019050919050565b60008190508160005260206000209050919050565b600081519050919050565b600081519050919050565b600081519050919050565b6000602082019050919050565b600082825260208201905092915050565b600082825260208201905092915050565b600081905092915050565b600082825260208201905092915050565b600081905092915050565b600061397b82613aef565b915061398683613aef565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff038211156139bb576139ba613c18565b5b828201905092915050565b60006139d182613aef565b91506139dc83613aef565b9250826139ec576139eb613c47565b5b828204905092915050565b6000613a0282613aef565b9150613a0d83613aef565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0483118215151615613a4657613a45613c18565b5b828202905092915050565b6000613a5c82613aef565b9150613a6783613aef565b925082821015613a7a57613a79613c18565b5b828203905092915050565b6000613a9082613acf565b9050919050565b60008115159050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b82818337600083830152505050565b60005b83811015613b26578082015181840152602081019050613b0b565b83811115613b35576000848401525b50505050565b60006002820490506001821680613b5357607f821691505b60208210811415613b6757613b66613c76565b5b50919050565b613b7682613d46565b810181811067ffffffffffffffff82111715613b9557613b94613d03565b5b80604052505050565b6000613ba982613aef565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff821415613bdc57613bdb613c18565b5b600182019050919050565b6000613bf282613aef565b9150613bfd83613aef565b925082613c0d57613c0c613c47565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b7f455243373231456e756d657261626c653a206f776e657220696e646578206f7560008201527f74206f6620626f756e6473000000000000000000000000000000000000000000602082015250565b7f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560008201527f63656976657220696d706c656d656e7465720000000000000000000000000000602082015250565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000600082015250565b7f4552433732313a207472616e7366657220746f20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f766520746f2063616c6c657200000000000000600082015250565b7f596f75722076616c756520646f65736e74206d617463682074686520636f737460008201527f2046000000000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760008201527f6e6572206e6f7220617070726f76656420666f7220616c6c0000000000000000602082015250565b7f4552433732313a2062616c616e636520717565727920666f7220746865207a6560008201527f726f206164647265737300000000000000000000000000000000000000000000602082015250565b7f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460008201527f656e7420746f6b656e0000000000000000000000000000000000000000000000602082015250565b7f4552433732313a206d696e7420746f20746865207a65726f2061646472657373600082015250565b7f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960008201527f73206e6f74206f776e0000000000000000000000000000000000000000000000602082015250565b7f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008201527f6e6578697374656e7420746f6b656e0000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f76616c20746f2063757272656e74206f776e6560008201527f7200000000000000000000000000000000000000000000000000000000000000602082015250565b50565b7f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f60008201527f776e6572206e6f7220617070726f766564000000000000000000000000000000602082015250565b7f596f75722076616c756520646f65736e74206d617463682074686520636f7374600082015250565b7f455243373231456e756d657261626c653a20676c6f62616c20696e646578206f60008201527f7574206f6620626f756e64730000000000000000000000000000000000000000602082015250565b6142d181613a85565b81146142dc57600080fd5b50565b6142e881613a97565b81146142f357600080fd5b50565b6142ff81613aa3565b811461430a57600080fd5b50565b61431681613aef565b811461432157600080fd5b5056fea26469706673582212207f715d2805e52c3cdd7fecbad14cff69a3eef16ea7cc3a5bcf96ccc0e891f74c64736f6c63430008070033000000000000000000000000000000000000000000000000000000000000006000000000000000000000000000000000000000000000000000000000000000a000000000000000000000000000000000000000000000000000000000000000e0000000000000000000000000000000000000000000000000000000000000000b416c69656e204d666572730000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000005416c69656e0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000036697066733a2f2f516d5247574441756e6131593465786b313779635667514d6d6737565243657648325875444336444239483643482f00000000000000000000

Deployed Bytecode

0x6080604052600436106101f95760003560e01c80635c975abb1161010d57806395d89b41116100a0578063c87b56dd1161006f578063c87b56dd14610705578063d5abeb0114610742578063da3ef23f1461076d578063e985e9c514610796578063f2fde38b146107d3576101f9565b806395d89b411461065d578063a22cb46514610688578063b88d4fde146106b1578063c6682862146106da576101f9565b8063715018a6116100dc578063715018a6146105c75780637f00c7a6146105de57806380b17335146106075780638da5cb5b14610632576101f9565b80635c975abb146104f75780636352211e146105225780636c0360eb1461055f57806370a082311461058a576101f9565b806323b872dd1161019057806342842e0e1161015f57806342842e0e14610402578063438b63001461042b57806344a0d68a146104685780634f6ccce71461049157806355f804b3146104ce576101f9565b806323b872dd146103765780632f745c591461039f5780633ccfd60b146103dc57806340c10f19146103e6576101f9565b8063095ea7b3116101cc578063095ea7b3146102cc57806313faede6146102f557806318160ddd14610320578063239c70ae1461034b576101f9565b806301ffc9a7146101fe57806302329a291461023b57806306fdde0314610264578063081812fc1461028f575b600080fd5b34801561020a57600080fd5b5061022560048036038101906102209190612f23565b6107fc565b6040516102329190613575565b60405180910390f35b34801561024757600080fd5b50610262600480360381019061025d9190612ef6565b610876565b005b34801561027057600080fd5b5061027961090f565b6040516102869190613590565b60405180910390f35b34801561029b57600080fd5b506102b660048036038101906102b19190612fc6565b6109a1565b6040516102c391906134ec565b60405180910390f35b3480156102d857600080fd5b506102f360048036038101906102ee9190612eb6565b610a26565b005b34801561030157600080fd5b5061030a610b3e565b6040516103179190613832565b60405180910390f35b34801561032c57600080fd5b50610335610b44565b6040516103429190613832565b60405180910390f35b34801561035757600080fd5b50610360610b51565b60405161036d9190613832565b60405180910390f35b34801561038257600080fd5b5061039d60048036038101906103989190612da0565b610b57565b005b3480156103ab57600080fd5b506103c660048036038101906103c19190612eb6565b610bb7565b6040516103d39190613832565b60405180910390f35b6103e4610c5c565b005b61040060048036038101906103fb9190612eb6565b610d51565b005b34801561040e57600080fd5b5061042960048036038101906104249190612da0565b610ef6565b005b34801561043757600080fd5b50610452600480360381019061044d9190612d33565b610f16565b60405161045f9190613553565b60405180910390f35b34801561047457600080fd5b5061048f600480360381019061048a9190612fc6565b610fc4565b005b34801561049d57600080fd5b506104b860048036038101906104b39190612fc6565b61104a565b6040516104c59190613832565b60405180910390f35b3480156104da57600080fd5b506104f560048036038101906104f09190612f7d565b6110bb565b005b34801561050357600080fd5b5061050c611151565b6040516105199190613575565b60405180910390f35b34801561052e57600080fd5b5061054960048036038101906105449190612fc6565b611164565b60405161055691906134ec565b60405180910390f35b34801561056b57600080fd5b50610574611216565b6040516105819190613590565b60405180910390f35b34801561059657600080fd5b506105b160048036038101906105ac9190612d33565b6112a4565b6040516105be9190613832565b60405180910390f35b3480156105d357600080fd5b506105dc61135c565b005b3480156105ea57600080fd5b5061060560048036038101906106009190612fc6565b6113e4565b005b34801561061357600080fd5b5061061c61146a565b6040516106299190613832565b60405180910390f35b34801561063e57600080fd5b50610647611470565b60405161065491906134ec565b60405180910390f35b34801561066957600080fd5b5061067261149a565b60405161067f9190613590565b60405180910390f35b34801561069457600080fd5b506106af60048036038101906106aa9190612e76565b61152c565b005b3480156106bd57600080fd5b506106d860048036038101906106d39190612df3565b6116ad565b005b3480156106e657600080fd5b506106ef61170f565b6040516106fc9190613590565b60405180910390f35b34801561071157600080fd5b5061072c60048036038101906107279190612fc6565b61179d565b6040516107399190613590565b60405180910390f35b34801561074e57600080fd5b50610757611847565b6040516107649190613832565b60405180910390f35b34801561077957600080fd5b50610794600480360381019061078f9190612f7d565b61184d565b005b3480156107a257600080fd5b506107bd60048036038101906107b89190612d60565b6118e3565b6040516107ca9190613575565b60405180910390f35b3480156107df57600080fd5b506107fa60048036038101906107f59190612d33565b611977565b005b60007f780e9d63000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916148061086f575061086e82611a6f565b5b9050919050565b61087e611b51565b73ffffffffffffffffffffffffffffffffffffffff1661089c611470565b73ffffffffffffffffffffffffffffffffffffffff16146108f2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016108e990613752565b60405180910390fd5b80601160006101000a81548160ff02191690831515021790555050565b60606000805461091e90613b3b565b80601f016020809104026020016040519081016040528092919081815260200182805461094a90613b3b565b80156109975780601f1061096c57610100808354040283529160200191610997565b820191906000526020600020905b81548152906001019060200180831161097a57829003601f168201915b5050505050905090565b60006109ac82611b59565b6109eb576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016109e290613732565b60405180910390fd5b6004600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b6000610a3182611164565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610aa2576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a99906137b2565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16610ac1611b51565b73ffffffffffffffffffffffffffffffffffffffff161480610af05750610aef81610aea611b51565b6118e3565b5b610b2f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b26906136b2565b60405180910390fd5b610b398383611bc5565b505050565b600d5481565b6000600880549050905090565b600f5481565b610b68610b62611b51565b82611c7e565b610ba7576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b9e906137d2565b60405180910390fd5b610bb2838383611d5c565b505050565b6000610bc2836112a4565b8210610c03576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610bfa906135b2565b60405180910390fd5b600660008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600083815260200190815260200160002054905092915050565b610c64611b51565b73ffffffffffffffffffffffffffffffffffffffff16610c82611470565b73ffffffffffffffffffffffffffffffffffffffff1614610cd8576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ccf90613752565b60405180910390fd5b60003373ffffffffffffffffffffffffffffffffffffffff1647604051610cfe906134d7565b60006040518083038185875af1925050503d8060008114610d3b576040519150601f19603f3d011682016040523d82523d6000602084013e610d40565b606091505b5050905080610d4e57600080fd5b50565b6000610d5b610b44565b9050601160009054906101000a900460ff1615610d7757600080fd5b60008211610d8457600080fd5b600f54821115610d9357600080fd5b600e548282610da29190613970565b1115610dad57600080fd5b610db5611470565b73ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff1614610eba57606460105411610e6857600d5482600d54610e0291906139f7565b610e0c9190613a51565b341015610e4e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e4590613672565b60405180910390fd5b6001601054610e5d9190613970565b601081905550610eb9565b81600d54610e7691906139f7565b341015610eb8576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610eaf906137f2565b60405180910390fd5b5b5b6000600190505b828111610ef057610edd848284610ed89190613970565b611fb8565b8080610ee890613b9e565b915050610ec1565b50505050565b610f11838383604051806020016040528060008152506116ad565b505050565b60606000610f23836112a4565b905060008167ffffffffffffffff811115610f4157610f40613d03565b5b604051908082528060200260200182016040528015610f6f5781602001602082028036833780820191505090505b50905060005b82811015610fb957610f878582610bb7565b828281518110610f9a57610f99613cd4565b5b6020026020010181815250508080610fb190613b9e565b915050610f75565b508092505050919050565b610fcc611b51565b73ffffffffffffffffffffffffffffffffffffffff16610fea611470565b73ffffffffffffffffffffffffffffffffffffffff1614611040576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161103790613752565b60405180910390fd5b80600d8190555050565b6000611054610b44565b8210611095576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161108c90613812565b60405180910390fd5b600882815481106110a9576110a8613cd4565b5b90600052602060002001549050919050565b6110c3611b51565b73ffffffffffffffffffffffffffffffffffffffff166110e1611470565b73ffffffffffffffffffffffffffffffffffffffff1614611137576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161112e90613752565b60405180910390fd5b80600b908051906020019061114d929190612b47565b5050565b601160009054906101000a900460ff1681565b6000806002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16141561120d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611204906136f2565b60405180910390fd5b80915050919050565b600b805461122390613b3b565b80601f016020809104026020016040519081016040528092919081815260200182805461124f90613b3b565b801561129c5780601f106112715761010080835404028352916020019161129c565b820191906000526020600020905b81548152906001019060200180831161127f57829003601f168201915b505050505081565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611315576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161130c906136d2565b60405180910390fd5b600360008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b611364611b51565b73ffffffffffffffffffffffffffffffffffffffff16611382611470565b73ffffffffffffffffffffffffffffffffffffffff16146113d8576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113cf90613752565b60405180910390fd5b6113e26000611fd6565b565b6113ec611b51565b73ffffffffffffffffffffffffffffffffffffffff1661140a611470565b73ffffffffffffffffffffffffffffffffffffffff1614611460576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161145790613752565b60405180910390fd5b80600f8190555050565b60105481565b6000600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b6060600180546114a990613b3b565b80601f01602080910402602001604051908101604052809291908181526020018280546114d590613b3b565b80156115225780601f106114f757610100808354040283529160200191611522565b820191906000526020600020905b81548152906001019060200180831161150557829003601f168201915b5050505050905090565b611534611b51565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156115a2576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161159990613652565b60405180910390fd5b80600560006115af611b51565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff1661165c611b51565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31836040516116a19190613575565b60405180910390a35050565b6116be6116b8611b51565b83611c7e565b6116fd576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116f4906137d2565b60405180910390fd5b6117098484848461209c565b50505050565b600c805461171c90613b3b565b80601f016020809104026020016040519081016040528092919081815260200182805461174890613b3b565b80156117955780601f1061176a57610100808354040283529160200191611795565b820191906000526020600020905b81548152906001019060200180831161177857829003601f168201915b505050505081565b60606117a882611b59565b6117e7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117de90613792565b60405180910390fd5b60006117f16120f8565b90506000815111611811576040518060200160405280600081525061183f565b8061181b8461218a565b600c60405160200161182f939291906134a6565b6040516020818303038152906040525b915050919050565b600e5481565b611855611b51565b73ffffffffffffffffffffffffffffffffffffffff16611873611470565b73ffffffffffffffffffffffffffffffffffffffff16146118c9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118c090613752565b60405180910390fd5b80600c90805190602001906118df929190612b47565b5050565b6000600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b61197f611b51565b73ffffffffffffffffffffffffffffffffffffffff1661199d611470565b73ffffffffffffffffffffffffffffffffffffffff16146119f3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016119ea90613752565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415611a63576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a5a906135f2565b60405180910390fd5b611a6c81611fd6565b50565b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161480611b3a57507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b80611b4a5750611b49826122eb565b5b9050919050565b600033905090565b60008073ffffffffffffffffffffffffffffffffffffffff166002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614159050919050565b816004600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16611c3883611164565b73ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b6000611c8982611b59565b611cc8576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611cbf90613692565b60405180910390fd5b6000611cd383611164565b90508073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161480611d4257508373ffffffffffffffffffffffffffffffffffffffff16611d2a846109a1565b73ffffffffffffffffffffffffffffffffffffffff16145b80611d535750611d5281856118e3565b5b91505092915050565b8273ffffffffffffffffffffffffffffffffffffffff16611d7c82611164565b73ffffffffffffffffffffffffffffffffffffffff1614611dd2576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611dc990613772565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611e42576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e3990613632565b60405180910390fd5b611e4d838383612355565b611e58600082611bc5565b6001600360008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254611ea89190613a51565b925050819055506001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254611eff9190613970565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4505050565b611fd2828260405180602001604052806000815250612469565b5050565b6000600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600a60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b6120a7848484611d5c565b6120b3848484846124c4565b6120f2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016120e9906135d2565b60405180910390fd5b50505050565b6060600b805461210790613b3b565b80601f016020809104026020016040519081016040528092919081815260200182805461213390613b3b565b80156121805780601f1061215557610100808354040283529160200191612180565b820191906000526020600020905b81548152906001019060200180831161216357829003601f168201915b5050505050905090565b606060008214156121d2576040518060400160405280600181526020017f300000000000000000000000000000000000000000000000000000000000000081525090506122e6565b600082905060005b600082146122045780806121ed90613b9e565b915050600a826121fd91906139c6565b91506121da565b60008167ffffffffffffffff8111156122205761221f613d03565b5b6040519080825280601f01601f1916602001820160405280156122525781602001600182028036833780820191505090505b5090505b600085146122df5760018261226b9190613a51565b9150600a8561227a9190613be7565b60306122869190613970565b60f81b81838151811061229c5761229b613cd4565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a856122d891906139c6565b9450612256565b8093505050505b919050565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b61236083838361265b565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614156123a35761239e81612660565b6123e2565b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16146123e1576123e083826126a9565b5b5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156124255761242081612816565b612464565b8273ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16146124635761246282826128e7565b5b5b505050565b6124738383612966565b61248060008484846124c4565b6124bf576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016124b6906135d2565b60405180910390fd5b505050565b60006124e58473ffffffffffffffffffffffffffffffffffffffff16612b34565b1561264e578373ffffffffffffffffffffffffffffffffffffffff1663150b7a0261250e611b51565b8786866040518563ffffffff1660e01b81526004016125309493929190613507565b602060405180830381600087803b15801561254a57600080fd5b505af192505050801561257b57506040513d601f19601f820116820180604052508101906125789190612f50565b60015b6125fe573d80600081146125ab576040519150601f19603f3d011682016040523d82523d6000602084013e6125b0565b606091505b506000815114156125f6576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016125ed906135d2565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050612653565b600190505b949350505050565b505050565b6008805490506009600083815260200190815260200160002081905550600881908060018154018082558091505060019003906000526020600020016000909190919091505550565b600060016126b6846112a4565b6126c09190613a51565b90506000600760008481526020019081526020016000205490508181146127a5576000600660008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600084815260200190815260200160002054905080600660008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600084815260200190815260200160002081905550816007600083815260200190815260200160002081905550505b6007600084815260200190815260200160002060009055600660008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008381526020019081526020016000206000905550505050565b6000600160088054905061282a9190613a51565b905060006009600084815260200190815260200160002054905060006008838154811061285a57612859613cd4565b5b90600052602060002001549050806008838154811061287c5761287b613cd4565b5b9060005260206000200181905550816009600083815260200190815260200160002081905550600960008581526020019081526020016000206000905560088054806128cb576128ca613ca5565b5b6001900381819060005260206000200160009055905550505050565b60006128f2836112a4565b905081600660008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600083815260200190815260200160002081905550806007600084815260200190815260200160002081905550505050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156129d6576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016129cd90613712565b60405180910390fd5b6129df81611b59565b15612a1f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612a1690613612565b60405180910390fd5b612a2b60008383612355565b6001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254612a7b9190613970565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45050565b600080823b905060008111915050919050565b828054612b5390613b3b565b90600052602060002090601f016020900481019282612b755760008555612bbc565b82601f10612b8e57805160ff1916838001178555612bbc565b82800160010185558215612bbc579182015b82811115612bbb578251825591602001919060010190612ba0565b5b509050612bc99190612bcd565b5090565b5b80821115612be6576000816000905550600101612bce565b5090565b6000612bfd612bf884613872565b61384d565b905082815260208101848484011115612c1957612c18613d37565b5b612c24848285613af9565b509392505050565b6000612c3f612c3a846138a3565b61384d565b905082815260208101848484011115612c5b57612c5a613d37565b5b612c66848285613af9565b509392505050565b600081359050612c7d816142c8565b92915050565b600081359050612c92816142df565b92915050565b600081359050612ca7816142f6565b92915050565b600081519050612cbc816142f6565b92915050565b600082601f830112612cd757612cd6613d32565b5b8135612ce7848260208601612bea565b91505092915050565b600082601f830112612d0557612d04613d32565b5b8135612d15848260208601612c2c565b91505092915050565b600081359050612d2d8161430d565b92915050565b600060208284031215612d4957612d48613d41565b5b6000612d5784828501612c6e565b91505092915050565b60008060408385031215612d7757612d76613d41565b5b6000612d8585828601612c6e565b9250506020612d9685828601612c6e565b9150509250929050565b600080600060608486031215612db957612db8613d41565b5b6000612dc786828701612c6e565b9350506020612dd886828701612c6e565b9250506040612de986828701612d1e565b9150509250925092565b60008060008060808587031215612e0d57612e0c613d41565b5b6000612e1b87828801612c6e565b9450506020612e2c87828801612c6e565b9350506040612e3d87828801612d1e565b925050606085013567ffffffffffffffff811115612e5e57612e5d613d3c565b5b612e6a87828801612cc2565b91505092959194509250565b60008060408385031215612e8d57612e8c613d41565b5b6000612e9b85828601612c6e565b9250506020612eac85828601612c83565b9150509250929050565b60008060408385031215612ecd57612ecc613d41565b5b6000612edb85828601612c6e565b9250506020612eec85828601612d1e565b9150509250929050565b600060208284031215612f0c57612f0b613d41565b5b6000612f1a84828501612c83565b91505092915050565b600060208284031215612f3957612f38613d41565b5b6000612f4784828501612c98565b91505092915050565b600060208284031215612f6657612f65613d41565b5b6000612f7484828501612cad565b91505092915050565b600060208284031215612f9357612f92613d41565b5b600082013567ffffffffffffffff811115612fb157612fb0613d3c565b5b612fbd84828501612cf0565b91505092915050565b600060208284031215612fdc57612fdb613d41565b5b6000612fea84828501612d1e565b91505092915050565b6000612fff8383613488565b60208301905092915050565b61301481613a85565b82525050565b6000613025826138f9565b61302f8185613927565b935061303a836138d4565b8060005b8381101561306b5781516130528882612ff3565b975061305d8361391a565b92505060018101905061303e565b5085935050505092915050565b61308181613a97565b82525050565b600061309282613904565b61309c8185613938565b93506130ac818560208601613b08565b6130b581613d46565b840191505092915050565b60006130cb8261390f565b6130d58185613954565b93506130e5818560208601613b08565b6130ee81613d46565b840191505092915050565b60006131048261390f565b61310e8185613965565b935061311e818560208601613b08565b80840191505092915050565b6000815461313781613b3b565b6131418186613965565b9450600182166000811461315c576001811461316d576131a0565b60ff198316865281860193506131a0565b613176856138e4565b60005b8381101561319857815481890152600182019150602081019050613179565b838801955050505b50505092915050565b60006131b6602b83613954565b91506131c182613d57565b604082019050919050565b60006131d9603283613954565b91506131e482613da6565b604082019050919050565b60006131fc602683613954565b915061320782613df5565b604082019050919050565b600061321f601c83613954565b915061322a82613e44565b602082019050919050565b6000613242602483613954565b915061324d82613e6d565b604082019050919050565b6000613265601983613954565b915061327082613ebc565b602082019050919050565b6000613288602283613954565b915061329382613ee5565b604082019050919050565b60006132ab602c83613954565b91506132b682613f34565b604082019050919050565b60006132ce603883613954565b91506132d982613f83565b604082019050919050565b60006132f1602a83613954565b91506132fc82613fd2565b604082019050919050565b6000613314602983613954565b915061331f82614021565b604082019050919050565b6000613337602083613954565b915061334282614070565b602082019050919050565b600061335a602c83613954565b915061336582614099565b604082019050919050565b600061337d602083613954565b9150613388826140e8565b602082019050919050565b60006133a0602983613954565b91506133ab82614111565b604082019050919050565b60006133c3602f83613954565b91506133ce82614160565b604082019050919050565b60006133e6602183613954565b91506133f1826141af565b604082019050919050565b6000613409600083613949565b9150613414826141fe565b600082019050919050565b600061342c603183613954565b915061343782614201565b604082019050919050565b600061344f602083613954565b915061345a82614250565b602082019050919050565b6000613472602c83613954565b915061347d82614279565b604082019050919050565b61349181613aef565b82525050565b6134a081613aef565b82525050565b60006134b282866130f9565b91506134be82856130f9565b91506134ca828461312a565b9150819050949350505050565b60006134e2826133fc565b9150819050919050565b6000602082019050613501600083018461300b565b92915050565b600060808201905061351c600083018761300b565b613529602083018661300b565b6135366040830185613497565b81810360608301526135488184613087565b905095945050505050565b6000602082019050818103600083015261356d818461301a565b905092915050565b600060208201905061358a6000830184613078565b92915050565b600060208201905081810360008301526135aa81846130c0565b905092915050565b600060208201905081810360008301526135cb816131a9565b9050919050565b600060208201905081810360008301526135eb816131cc565b9050919050565b6000602082019050818103600083015261360b816131ef565b9050919050565b6000602082019050818103600083015261362b81613212565b9050919050565b6000602082019050818103600083015261364b81613235565b9050919050565b6000602082019050818103600083015261366b81613258565b9050919050565b6000602082019050818103600083015261368b8161327b565b9050919050565b600060208201905081810360008301526136ab8161329e565b9050919050565b600060208201905081810360008301526136cb816132c1565b9050919050565b600060208201905081810360008301526136eb816132e4565b9050919050565b6000602082019050818103600083015261370b81613307565b9050919050565b6000602082019050818103600083015261372b8161332a565b9050919050565b6000602082019050818103600083015261374b8161334d565b9050919050565b6000602082019050818103600083015261376b81613370565b9050919050565b6000602082019050818103600083015261378b81613393565b9050919050565b600060208201905081810360008301526137ab816133b6565b9050919050565b600060208201905081810360008301526137cb816133d9565b9050919050565b600060208201905081810360008301526137eb8161341f565b9050919050565b6000602082019050818103600083015261380b81613442565b9050919050565b6000602082019050818103600083015261382b81613465565b9050919050565b60006020820190506138476000830184613497565b92915050565b6000613857613868565b90506138638282613b6d565b919050565b6000604051905090565b600067ffffffffffffffff82111561388d5761388c613d03565b5b61389682613d46565b9050602081019050919050565b600067ffffffffffffffff8211156138be576138bd613d03565b5b6138c782613d46565b9050602081019050919050565b6000819050602082019050919050565b60008190508160005260206000209050919050565b600081519050919050565b600081519050919050565b600081519050919050565b6000602082019050919050565b600082825260208201905092915050565b600082825260208201905092915050565b600081905092915050565b600082825260208201905092915050565b600081905092915050565b600061397b82613aef565b915061398683613aef565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff038211156139bb576139ba613c18565b5b828201905092915050565b60006139d182613aef565b91506139dc83613aef565b9250826139ec576139eb613c47565b5b828204905092915050565b6000613a0282613aef565b9150613a0d83613aef565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0483118215151615613a4657613a45613c18565b5b828202905092915050565b6000613a5c82613aef565b9150613a6783613aef565b925082821015613a7a57613a79613c18565b5b828203905092915050565b6000613a9082613acf565b9050919050565b60008115159050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b82818337600083830152505050565b60005b83811015613b26578082015181840152602081019050613b0b565b83811115613b35576000848401525b50505050565b60006002820490506001821680613b5357607f821691505b60208210811415613b6757613b66613c76565b5b50919050565b613b7682613d46565b810181811067ffffffffffffffff82111715613b9557613b94613d03565b5b80604052505050565b6000613ba982613aef565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff821415613bdc57613bdb613c18565b5b600182019050919050565b6000613bf282613aef565b9150613bfd83613aef565b925082613c0d57613c0c613c47565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b7f455243373231456e756d657261626c653a206f776e657220696e646578206f7560008201527f74206f6620626f756e6473000000000000000000000000000000000000000000602082015250565b7f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560008201527f63656976657220696d706c656d656e7465720000000000000000000000000000602082015250565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000600082015250565b7f4552433732313a207472616e7366657220746f20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f766520746f2063616c6c657200000000000000600082015250565b7f596f75722076616c756520646f65736e74206d617463682074686520636f737460008201527f2046000000000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760008201527f6e6572206e6f7220617070726f76656420666f7220616c6c0000000000000000602082015250565b7f4552433732313a2062616c616e636520717565727920666f7220746865207a6560008201527f726f206164647265737300000000000000000000000000000000000000000000602082015250565b7f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460008201527f656e7420746f6b656e0000000000000000000000000000000000000000000000602082015250565b7f4552433732313a206d696e7420746f20746865207a65726f2061646472657373600082015250565b7f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960008201527f73206e6f74206f776e0000000000000000000000000000000000000000000000602082015250565b7f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008201527f6e6578697374656e7420746f6b656e0000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f76616c20746f2063757272656e74206f776e6560008201527f7200000000000000000000000000000000000000000000000000000000000000602082015250565b50565b7f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f60008201527f776e6572206e6f7220617070726f766564000000000000000000000000000000602082015250565b7f596f75722076616c756520646f65736e74206d617463682074686520636f7374600082015250565b7f455243373231456e756d657261626c653a20676c6f62616c20696e646578206f60008201527f7574206f6620626f756e64730000000000000000000000000000000000000000602082015250565b6142d181613a85565b81146142dc57600080fd5b50565b6142e881613a97565b81146142f357600080fd5b50565b6142ff81613aa3565b811461430a57600080fd5b50565b61431681613aef565b811461432157600080fd5b5056fea26469706673582212207f715d2805e52c3cdd7fecbad14cff69a3eef16ea7cc3a5bcf96ccc0e891f74c64736f6c63430008070033

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

000000000000000000000000000000000000000000000000000000000000006000000000000000000000000000000000000000000000000000000000000000a000000000000000000000000000000000000000000000000000000000000000e0000000000000000000000000000000000000000000000000000000000000000b416c69656e204d666572730000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000005416c69656e0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000036697066733a2f2f516d5247574441756e6131593465786b313779635667514d6d6737565243657648325875444336444239483643482f00000000000000000000

-----Decoded View---------------
Arg [0] : _name (string): Alien Mfers
Arg [1] : _symbol (string): Alien
Arg [2] : _initBaseURI (string): ipfs://QmRGWDAuna1Y4exk17ycVgQMmg7VRCevH2XuDC6DB9H6CH/

-----Encoded View---------------
10 Constructor Arguments found :
Arg [0] : 0000000000000000000000000000000000000000000000000000000000000060
Arg [1] : 00000000000000000000000000000000000000000000000000000000000000a0
Arg [2] : 00000000000000000000000000000000000000000000000000000000000000e0
Arg [3] : 000000000000000000000000000000000000000000000000000000000000000b
Arg [4] : 416c69656e204d66657273000000000000000000000000000000000000000000
Arg [5] : 0000000000000000000000000000000000000000000000000000000000000005
Arg [6] : 416c69656e000000000000000000000000000000000000000000000000000000
Arg [7] : 0000000000000000000000000000000000000000000000000000000000000036
Arg [8] : 697066733a2f2f516d5247574441756e6131593465786b313779635667514d6d
Arg [9] : 6737565243657648325875444336444239483643482f00000000000000000000


Deployed Bytecode Sourcemap

45060:3436:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;38553:300;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;48121:79;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;25723:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;27416:308;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;26939:411;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;45225:34;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;39356:113;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;45304:33;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;28475:376;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;38937:343;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;48210:192;;;:::i;:::-;;45756:794;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;28922:185;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;46558:390;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;47624:86;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;39546:320;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;47850:104;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;45379:26;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;25330:326;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;45153:21;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;24973:295;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;4573:94;;;;;;;;;;;;;:::i;:::-;;47720:122;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;45344:28;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;3922:87;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;25892:104;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;27796:327;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;29178:365;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;45181:37;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;46956:642;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;45266:31;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;47962:151;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;28194:214;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;4822:229;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;38553:300;38700:4;38757:35;38742:50;;;:11;:50;;;;:103;;;;38809:36;38833:11;38809:23;:36::i;:::-;38742:103;38722:123;;38553:300;;;:::o;48121:79::-;4153:12;:10;:12::i;:::-;4142:23;;:7;:5;:7::i;:::-;:23;;;4134:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;48186:6:::1;48177;;:15;;;;;;;;;;;;;;;;;;48121:79:::0;:::o;25723:100::-;25777:13;25810:5;25803:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;25723:100;:::o;27416:308::-;27537:7;27584:16;27592:7;27584;:16::i;:::-;27562:110;;;;;;;;;;;;:::i;:::-;;;;;;;;;27692:15;:24;27708:7;27692:24;;;;;;;;;;;;;;;;;;;;;27685:31;;27416:308;;;:::o;26939:411::-;27020:13;27036:23;27051:7;27036:14;:23::i;:::-;27020:39;;27084:5;27078:11;;:2;:11;;;;27070:57;;;;;;;;;;;;:::i;:::-;;;;;;;;;27178:5;27162:21;;:12;:10;:12::i;:::-;:21;;;:62;;;;27187:37;27204:5;27211:12;:10;:12::i;:::-;27187:16;:37::i;:::-;27162:62;27140:168;;;;;;;;;;;;:::i;:::-;;;;;;;;;27321:21;27330:2;27334:7;27321:8;:21::i;:::-;27009:341;26939:411;;:::o;45225:34::-;;;;:::o;39356:113::-;39417:7;39444:10;:17;;;;39437:24;;39356:113;:::o;45304:33::-;;;;:::o;28475:376::-;28684:41;28703:12;:10;:12::i;:::-;28717:7;28684:18;:41::i;:::-;28662:140;;;;;;;;;;;;:::i;:::-;;;;;;;;;28815:28;28825:4;28831:2;28835:7;28815:9;:28::i;:::-;28475:376;;;:::o;38937:343::-;39079:7;39134:23;39151:5;39134:16;:23::i;:::-;39126:5;:31;39104:124;;;;;;;;;;;;:::i;:::-;;;;;;;;;39246:12;:19;39259:5;39246:19;;;;;;;;;;;;;;;:26;39266:5;39246:26;;;;;;;;;;;;39239:33;;38937:343;;;;:::o;48210:192::-;4153:12;:10;:12::i;:::-;4142:23;;:7;:5;:7::i;:::-;:23;;;4134:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;48267:12:::1;48293:10;48285:24;;48331:21;48285:82;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;48266:101;;;48386:7;48378:16;;;::::0;::::1;;48255:147;48210:192::o:0;45756:794::-;45830:14;45847:13;:11;:13::i;:::-;45830:30;;45880:6;;;;;;;;;;;45879:7;45871:16;;;;;;45920:1;45906:11;:15;45898:24;;;;;;45956:13;;45941:11;:28;;45933:37;;;;;;46013:9;;45998:11;45989:6;:20;;;;:::i;:::-;:33;;45981:42;;;;;;46054:7;:5;:7::i;:::-;46040:21;;:10;:21;;;46036:399;;46124:3;46111:9;;:16;46108:316;;46192:4;;46177:11;46170:4;;:18;;;;:::i;:::-;46169:27;;;;:::i;:::-;46156:9;:40;;46148:87;;;;;;;;;;;;:::i;:::-;;;;;;;;;46278:1;46266:9;;:13;;;;:::i;:::-;46254:9;:25;;;;46108:316;;;46355:11;46348:4;;:18;;;;:::i;:::-;46334:9;:33;;46326:78;;;;;;;;;;;;:::i;:::-;;;;;;;;;46108:316;46036:399;46452:9;46464:1;46452:13;;46447:96;46472:11;46467:1;:16;46447:96;;46505:26;46515:3;46529:1;46520:6;:10;;;;:::i;:::-;46505:9;:26::i;:::-;46485:3;;;;;:::i;:::-;;;;46447:96;;;;45819:731;45756:794;;:::o;28922:185::-;29060:39;29077:4;29083:2;29087:7;29060:39;;;;;;;;;;;;:16;:39::i;:::-;28922:185;;;:::o;46558:390::-;46645:16;46679:23;46705:17;46715:6;46705:9;:17::i;:::-;46679:43;;46733:25;46775:15;46761:30;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;46733:58;;46807:9;46802:113;46822:15;46818:1;:19;46802:113;;;46873:30;46893:6;46901:1;46873:19;:30::i;:::-;46859:8;46868:1;46859:11;;;;;;;;:::i;:::-;;;;;;;:44;;;;;46839:3;;;;;:::i;:::-;;;;46802:113;;;;46932:8;46925:15;;;;46558:390;;;:::o;47624:86::-;4153:12;:10;:12::i;:::-;4142:23;;:7;:5;:7::i;:::-;:23;;;4134:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;47694:8:::1;47687:4;:15;;;;47624:86:::0;:::o;39546:320::-;39666:7;39721:30;:28;:30::i;:::-;39713:5;:38;39691:132;;;;;;;;;;;;:::i;:::-;;;;;;;;;39841:10;39852:5;39841:17;;;;;;;;:::i;:::-;;;;;;;;;;39834:24;;39546:320;;;:::o;47850:104::-;4153:12;:10;:12::i;:::-;4142:23;;:7;:5;:7::i;:::-;:23;;;4134:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;47935:11:::1;47925:7;:21;;;;;;;;;;;;:::i;:::-;;47850:104:::0;:::o;45379:26::-;;;;;;;;;;;;;:::o;25330:326::-;25447:7;25472:13;25488:7;:16;25496:7;25488:16;;;;;;;;;;;;;;;;;;;;;25472:32;;25554:1;25537:19;;:5;:19;;;;25515:110;;;;;;;;;;;;:::i;:::-;;;;;;;;;25643:5;25636:12;;;25330:326;;;:::o;45153:21::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;24973:295::-;25090:7;25154:1;25137:19;;:5;:19;;;;25115:111;;;;;;;;;;;;:::i;:::-;;;;;;;;;25244:9;:16;25254:5;25244:16;;;;;;;;;;;;;;;;25237:23;;24973:295;;;:::o;4573:94::-;4153:12;:10;:12::i;:::-;4142:23;;:7;:5;:7::i;:::-;:23;;;4134:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;4638:21:::1;4656:1;4638:9;:21::i;:::-;4573:94::o:0;47720:122::-;4153:12;:10;:12::i;:::-;4142:23;;:7;:5;:7::i;:::-;:23;;;4134:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;47817:17:::1;47801:13;:33;;;;47720:122:::0;:::o;45344:28::-;;;;:::o;3922:87::-;3968:7;3995:6;;;;;;;;;;;3988:13;;3922:87;:::o;25892:104::-;25948:13;25981:7;25974:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;25892:104;:::o;27796:327::-;27943:12;:10;:12::i;:::-;27931:24;;:8;:24;;;;27923:62;;;;;;;;;;;;:::i;:::-;;;;;;;;;28043:8;27998:18;:32;28017:12;:10;:12::i;:::-;27998:32;;;;;;;;;;;;;;;:42;28031:8;27998:42;;;;;;;;;;;;;;;;:53;;;;;;;;;;;;;;;;;;28096:8;28067:48;;28082:12;:10;:12::i;:::-;28067:48;;;28106:8;28067:48;;;;;;:::i;:::-;;;;;;;;27796:327;;:::o;29178:365::-;29367:41;29386:12;:10;:12::i;:::-;29400:7;29367:18;:41::i;:::-;29345:140;;;;;;;;;;;;:::i;:::-;;;;;;;;;29496:39;29510:4;29516:2;29520:7;29529:5;29496:13;:39::i;:::-;29178:365;;;;:::o;45181:37::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;46956:642::-;47074:13;47127:16;47135:7;47127;:16::i;:::-;47105:113;;;;;;;;;;;;:::i;:::-;;;;;;;;;47231:28;47262:10;:8;:10::i;:::-;47231:41;;47334:1;47309:14;47303:28;:32;:287;;;;;;;;;;;;;;;;;47427:14;47468:18;:7;:16;:18::i;:::-;47513:13;47384:165;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;47303:287;47283:307;;;46956:642;;;:::o;45266:31::-;;;;:::o;47962:151::-;4153:12;:10;:12::i;:::-;4142:23;;:7;:5;:7::i;:::-;:23;;;4134:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;48088:17:::1;48072:13;:33;;;;;;;;;;;;:::i;:::-;;47962:151:::0;:::o;28194:214::-;28336:4;28365:18;:25;28384:5;28365:25;;;;;;;;;;;;;;;:35;28391:8;28365:35;;;;;;;;;;;;;;;;;;;;;;;;;28358:42;;28194:214;;;;:::o;4822:229::-;4153:12;:10;:12::i;:::-;4142:23;;:7;:5;:7::i;:::-;:23;;;4134:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;4945:1:::1;4925:22;;:8;:22;;;;4903:110;;;;;;;;;;;;:::i;:::-;;;;;;;;;5024:19;5034:8;5024:9;:19::i;:::-;4822:229:::0;:::o;24554:355::-;24701:4;24758:25;24743:40;;;:11;:40;;;;:105;;;;24815:33;24800:48;;;:11;:48;;;;24743:105;:158;;;;24865:36;24889:11;24865:23;:36::i;:::-;24743:158;24723:178;;24554:355;;;:::o;2699:98::-;2752:7;2779:10;2772:17;;2699:98;:::o;31090:127::-;31155:4;31207:1;31179:30;;:7;:16;31187:7;31179:16;;;;;;;;;;;;;;;;;;;;;:30;;;;31172:37;;31090:127;;;:::o;35213:174::-;35315:2;35288:15;:24;35304:7;35288:24;;;;;;;;;;;;:29;;;;;;;;;;;;;;;;;;35371:7;35367:2;35333:46;;35342:23;35357:7;35342:14;:23::i;:::-;35333:46;;;;;;;;;;;;35213:174;;:::o;31384:452::-;31513:4;31557:16;31565:7;31557;:16::i;:::-;31535:110;;;;;;;;;;;;:::i;:::-;;;;;;;;;31656:13;31672:23;31687:7;31672:14;:23::i;:::-;31656:39;;31725:5;31714:16;;:7;:16;;;:64;;;;31771:7;31747:31;;:20;31759:7;31747:11;:20::i;:::-;:31;;;31714:64;:113;;;;31795:32;31812:5;31819:7;31795:16;:32::i;:::-;31714:113;31706:122;;;31384:452;;;;:::o;34480:615::-;34653:4;34626:31;;:23;34641:7;34626:14;:23::i;:::-;:31;;;34604:122;;;;;;;;;;;;:::i;:::-;;;;;;;;;34759:1;34745:16;;:2;:16;;;;34737:65;;;;;;;;;;;;:::i;:::-;;;;;;;;;34815:39;34836:4;34842:2;34846:7;34815:20;:39::i;:::-;34919:29;34936:1;34940:7;34919:8;:29::i;:::-;34980:1;34961:9;:15;34971:4;34961:15;;;;;;;;;;;;;;;;:20;;;;;;;:::i;:::-;;;;;;;;35009:1;34992:9;:13;35002:2;34992:13;;;;;;;;;;;;;;;;:18;;;;;;;:::i;:::-;;;;;;;;35040:2;35021:7;:16;35029:7;35021:16;;;;;;;;;;;;:21;;;;;;;;;;;;;;;;;;35079:7;35075:2;35060:27;;35069:4;35060:27;;;;;;;;;;;;34480:615;;;:::o;32178:110::-;32254:26;32264:2;32268:7;32254:26;;;;;;;;;;;;:9;:26::i;:::-;32178:110;;:::o;5059:173::-;5115:16;5134:6;;;;;;;;;;;5115:25;;5160:8;5151:6;;:17;;;;;;;;;;;;;;;;;;5215:8;5184:40;;5205:8;5184:40;;;;;;;;;;;;5104:128;5059:173;:::o;30425:352::-;30582:28;30592:4;30598:2;30602:7;30582:9;:28::i;:::-;30643:48;30666:4;30672:2;30676:7;30685:5;30643:22;:48::i;:::-;30621:148;;;;;;;;;;;;:::i;:::-;;;;;;;;;30425:352;;;;:::o;45625:108::-;45685:13;45718:7;45711:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;45625:108;:::o;297:723::-;353:13;583:1;574:5;:10;570:53;;;601:10;;;;;;;;;;;;;;;;;;;;;570:53;633:12;648:5;633:20;;664:14;689:78;704:1;696:4;:9;689:78;;722:8;;;;;:::i;:::-;;;;753:2;745:10;;;;;:::i;:::-;;;689:78;;;777:19;809:6;799:17;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;777:39;;827:154;843:1;834:5;:10;827:154;;871:1;861:11;;;;;:::i;:::-;;;938:2;930:5;:10;;;;:::i;:::-;917:2;:24;;;;:::i;:::-;904:39;;887:6;894;887:14;;;;;;;;:::i;:::-;;;;;:56;;;;;;;;;;;967:2;958:11;;;;;:::i;:::-;;;827:154;;;1005:6;991:21;;;;;297:723;;;;:::o;16356:207::-;16486:4;16530:25;16515:40;;;:11;:40;;;;16508:47;;16356:207;;;:::o;40479:589::-;40623:45;40650:4;40656:2;40660:7;40623:26;:45::i;:::-;40701:1;40685:18;;:4;:18;;;40681:187;;;40720:40;40752:7;40720:31;:40::i;:::-;40681:187;;;40790:2;40782:10;;:4;:10;;;40778:90;;40809:47;40842:4;40848:7;40809:32;:47::i;:::-;40778:90;40681:187;40896:1;40882:16;;:2;:16;;;40878:183;;;40915:45;40952:7;40915:36;:45::i;:::-;40878:183;;;40988:4;40982:10;;:2;:10;;;40978:83;;41009:40;41037:2;41041:7;41009:27;:40::i;:::-;40978:83;40878:183;40479:589;;;:::o;32515:321::-;32645:18;32651:2;32655:7;32645:5;:18::i;:::-;32696:54;32727:1;32731:2;32735:7;32744:5;32696:22;:54::i;:::-;32674:154;;;;;;;;;;;;:::i;:::-;;;;;;;;;32515:321;;;:::o;35952:980::-;36107:4;36128:15;:2;:13;;;:15::i;:::-;36124:801;;;36197:2;36181:36;;;36240:12;:10;:12::i;:::-;36275:4;36302:7;36332:5;36181:175;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;36160:710;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;36556:1;36539:6;:13;:18;36535:320;;;36582:108;;;;;;;;;;:::i;:::-;;;;;;;;36535:320;36805:6;36799:13;36790:6;36786:2;36782:15;36775:38;36160:710;36430:41;;;36420:51;;;:6;:51;;;;36413:58;;;;;36124:801;36909:4;36902:11;;35952:980;;;;;;;:::o;37504:126::-;;;;:::o;41791:164::-;41895:10;:17;;;;41868:15;:24;41884:7;41868:24;;;;;;;;;;;:44;;;;41923:10;41939:7;41923:24;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;41791:164;:::o;42582:1002::-;42862:22;42912:1;42887:22;42904:4;42887:16;:22::i;:::-;:26;;;;:::i;:::-;42862:51;;42924:18;42945:17;:26;42963:7;42945:26;;;;;;;;;;;;42924:47;;43092:14;43078:10;:28;43074:328;;43123:19;43145:12;:18;43158:4;43145:18;;;;;;;;;;;;;;;:34;43164:14;43145:34;;;;;;;;;;;;43123:56;;43229:11;43196:12;:18;43209:4;43196:18;;;;;;;;;;;;;;;:30;43215:10;43196:30;;;;;;;;;;;:44;;;;43346:10;43313:17;:30;43331:11;43313:30;;;;;;;;;;;:43;;;;43108:294;43074:328;43498:17;:26;43516:7;43498:26;;;;;;;;;;;43491:33;;;43542:12;:18;43555:4;43542:18;;;;;;;;;;;;;;;:34;43561:14;43542:34;;;;;;;;;;;43535:41;;;42677:907;;42582:1002;;:::o;43879:1079::-;44132:22;44177:1;44157:10;:17;;;;:21;;;;:::i;:::-;44132:46;;44189:18;44210:15;:24;44226:7;44210:24;;;;;;;;;;;;44189:45;;44561:19;44583:10;44594:14;44583:26;;;;;;;;:::i;:::-;;;;;;;;;;44561:48;;44647:11;44622:10;44633;44622:22;;;;;;;;:::i;:::-;;;;;;;;;:36;;;;44758:10;44727:15;:28;44743:11;44727:28;;;;;;;;;;;:41;;;;44899:15;:24;44915:7;44899:24;;;;;;;;;;;44892:31;;;44934:10;:16;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;43950:1008;;;43879:1079;:::o;41369:221::-;41454:14;41471:20;41488:2;41471:16;:20::i;:::-;41454:37;;41529:7;41502:12;:16;41515:2;41502:16;;;;;;;;;;;;;;;:24;41519:6;41502:24;;;;;;;;;;;:34;;;;41576:6;41547:17;:26;41565:7;41547:26;;;;;;;;;;;:35;;;;41443:147;41369:221;;:::o;33172:382::-;33266:1;33252:16;;:2;:16;;;;33244:61;;;;;;;;;;;;:::i;:::-;;;;;;;;;33325:16;33333:7;33325;:16::i;:::-;33324:17;33316:58;;;;;;;;;;;;:::i;:::-;;;;;;;;;33387:45;33416:1;33420:2;33424:7;33387:20;:45::i;:::-;33462:1;33445:9;:13;33455:2;33445:13;;;;;;;;;;;;;;;;:18;;;;;;;:::i;:::-;;;;;;;;33493:2;33474:7;:16;33482:7;33474:16;;;;;;;;;;;;:21;;;;;;;;;;;;;;;;;;33538:7;33534:2;33513:33;;33530:1;33513:33;;;;;;;;;;;;33172:382;;:::o;5991:387::-;6051:4;6259:12;6326:7;6314:20;6306:28;;6369:1;6362:4;:8;6355:15;;;5991:387;;;:::o;-1:-1:-1:-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;;;;;;;;;;;;;;;:::o;7:410:1:-;84:5;109:65;125:48;166:6;125:48;:::i;:::-;109:65;:::i;:::-;100:74;;197:6;190:5;183:21;235:4;228:5;224:16;273:3;264:6;259:3;255:16;252:25;249:112;;;280:79;;:::i;:::-;249:112;370:41;404:6;399:3;394;370:41;:::i;:::-;90:327;7:410;;;;;:::o;423:412::-;501:5;526:66;542:49;584:6;542:49;:::i;:::-;526:66;:::i;:::-;517:75;;615:6;608:5;601:21;653:4;646:5;642:16;691:3;682:6;677:3;673:16;670:25;667:112;;;698:79;;:::i;:::-;667:112;788:41;822:6;817:3;812;788:41;:::i;:::-;507:328;423:412;;;;;:::o;841:139::-;887:5;925:6;912:20;903:29;;941:33;968:5;941:33;:::i;:::-;841:139;;;;:::o;986:133::-;1029:5;1067:6;1054:20;1045:29;;1083:30;1107:5;1083:30;:::i;:::-;986:133;;;;:::o;1125:137::-;1170:5;1208:6;1195:20;1186:29;;1224:32;1250:5;1224:32;:::i;:::-;1125:137;;;;:::o;1268:141::-;1324:5;1355:6;1349:13;1340:22;;1371:32;1397:5;1371:32;:::i;:::-;1268:141;;;;:::o;1428:338::-;1483:5;1532:3;1525:4;1517:6;1513:17;1509:27;1499:122;;1540:79;;:::i;:::-;1499:122;1657:6;1644:20;1682:78;1756:3;1748:6;1741:4;1733:6;1729:17;1682:78;:::i;:::-;1673:87;;1489:277;1428:338;;;;:::o;1786:340::-;1842:5;1891:3;1884:4;1876:6;1872:17;1868:27;1858:122;;1899:79;;:::i;:::-;1858:122;2016:6;2003:20;2041:79;2116:3;2108:6;2101:4;2093:6;2089:17;2041:79;:::i;:::-;2032:88;;1848:278;1786:340;;;;:::o;2132:139::-;2178:5;2216:6;2203:20;2194:29;;2232:33;2259:5;2232:33;:::i;:::-;2132:139;;;;:::o;2277:329::-;2336:6;2385:2;2373:9;2364:7;2360:23;2356:32;2353:119;;;2391:79;;:::i;:::-;2353:119;2511:1;2536:53;2581:7;2572:6;2561:9;2557:22;2536:53;:::i;:::-;2526:63;;2482:117;2277:329;;;;:::o;2612:474::-;2680:6;2688;2737:2;2725:9;2716:7;2712:23;2708:32;2705:119;;;2743:79;;:::i;:::-;2705:119;2863:1;2888:53;2933:7;2924:6;2913:9;2909:22;2888:53;:::i;:::-;2878:63;;2834:117;2990:2;3016:53;3061:7;3052:6;3041:9;3037:22;3016:53;:::i;:::-;3006:63;;2961:118;2612:474;;;;;:::o;3092:619::-;3169:6;3177;3185;3234:2;3222:9;3213:7;3209:23;3205:32;3202:119;;;3240:79;;:::i;:::-;3202:119;3360:1;3385:53;3430:7;3421:6;3410:9;3406:22;3385:53;:::i;:::-;3375:63;;3331:117;3487:2;3513:53;3558:7;3549:6;3538:9;3534:22;3513:53;:::i;:::-;3503:63;;3458:118;3615:2;3641:53;3686:7;3677:6;3666:9;3662:22;3641:53;:::i;:::-;3631:63;;3586:118;3092:619;;;;;:::o;3717:943::-;3812:6;3820;3828;3836;3885:3;3873:9;3864:7;3860:23;3856:33;3853:120;;;3892:79;;:::i;:::-;3853:120;4012:1;4037:53;4082:7;4073:6;4062:9;4058:22;4037:53;:::i;:::-;4027:63;;3983:117;4139:2;4165:53;4210:7;4201:6;4190:9;4186:22;4165:53;:::i;:::-;4155:63;;4110:118;4267:2;4293:53;4338:7;4329:6;4318:9;4314:22;4293:53;:::i;:::-;4283:63;;4238:118;4423:2;4412:9;4408:18;4395:32;4454:18;4446:6;4443:30;4440:117;;;4476:79;;:::i;:::-;4440:117;4581:62;4635:7;4626:6;4615:9;4611:22;4581:62;:::i;:::-;4571:72;;4366:287;3717:943;;;;;;;:::o;4666:468::-;4731:6;4739;4788:2;4776:9;4767:7;4763:23;4759:32;4756:119;;;4794:79;;:::i;:::-;4756:119;4914:1;4939:53;4984:7;4975:6;4964:9;4960:22;4939:53;:::i;:::-;4929:63;;4885:117;5041:2;5067:50;5109:7;5100:6;5089:9;5085:22;5067:50;:::i;:::-;5057:60;;5012:115;4666:468;;;;;:::o;5140:474::-;5208:6;5216;5265:2;5253:9;5244:7;5240:23;5236:32;5233:119;;;5271:79;;:::i;:::-;5233:119;5391:1;5416:53;5461:7;5452:6;5441:9;5437:22;5416:53;:::i;:::-;5406:63;;5362:117;5518:2;5544:53;5589:7;5580:6;5569:9;5565:22;5544:53;:::i;:::-;5534:63;;5489:118;5140:474;;;;;:::o;5620:323::-;5676:6;5725:2;5713:9;5704:7;5700:23;5696:32;5693:119;;;5731:79;;:::i;:::-;5693:119;5851:1;5876:50;5918:7;5909:6;5898:9;5894:22;5876:50;:::i;:::-;5866:60;;5822:114;5620:323;;;;:::o;5949:327::-;6007:6;6056:2;6044:9;6035:7;6031:23;6027:32;6024:119;;;6062:79;;:::i;:::-;6024:119;6182:1;6207:52;6251:7;6242:6;6231:9;6227:22;6207:52;:::i;:::-;6197:62;;6153:116;5949:327;;;;:::o;6282:349::-;6351:6;6400:2;6388:9;6379:7;6375:23;6371:32;6368:119;;;6406:79;;:::i;:::-;6368:119;6526:1;6551:63;6606:7;6597:6;6586:9;6582:22;6551:63;:::i;:::-;6541:73;;6497:127;6282:349;;;;:::o;6637:509::-;6706:6;6755:2;6743:9;6734:7;6730:23;6726:32;6723:119;;;6761:79;;:::i;:::-;6723:119;6909:1;6898:9;6894:17;6881:31;6939:18;6931:6;6928:30;6925:117;;;6961:79;;:::i;:::-;6925:117;7066:63;7121:7;7112:6;7101:9;7097:22;7066:63;:::i;:::-;7056:73;;6852:287;6637:509;;;;:::o;7152:329::-;7211:6;7260:2;7248:9;7239:7;7235:23;7231:32;7228:119;;;7266:79;;:::i;:::-;7228:119;7386:1;7411:53;7456:7;7447:6;7436:9;7432:22;7411:53;:::i;:::-;7401:63;;7357:117;7152:329;;;;:::o;7487:179::-;7556:10;7577:46;7619:3;7611:6;7577:46;:::i;:::-;7655:4;7650:3;7646:14;7632:28;;7487:179;;;;:::o;7672:118::-;7759:24;7777:5;7759:24;:::i;:::-;7754:3;7747:37;7672:118;;:::o;7826:732::-;7945:3;7974:54;8022:5;7974:54;:::i;:::-;8044:86;8123:6;8118:3;8044:86;:::i;:::-;8037:93;;8154:56;8204:5;8154:56;:::i;:::-;8233:7;8264:1;8249:284;8274:6;8271:1;8268:13;8249:284;;;8350:6;8344:13;8377:63;8436:3;8421:13;8377:63;:::i;:::-;8370:70;;8463:60;8516:6;8463:60;:::i;:::-;8453:70;;8309:224;8296:1;8293;8289:9;8284:14;;8249:284;;;8253:14;8549:3;8542:10;;7950:608;;;7826:732;;;;:::o;8564:109::-;8645:21;8660:5;8645:21;:::i;:::-;8640:3;8633:34;8564:109;;:::o;8679:360::-;8765:3;8793:38;8825:5;8793:38;:::i;:::-;8847:70;8910:6;8905:3;8847:70;:::i;:::-;8840:77;;8926:52;8971:6;8966:3;8959:4;8952:5;8948:16;8926:52;:::i;:::-;9003:29;9025:6;9003:29;:::i;:::-;8998:3;8994:39;8987:46;;8769:270;8679:360;;;;:::o;9045:364::-;9133:3;9161:39;9194:5;9161:39;:::i;:::-;9216:71;9280:6;9275:3;9216:71;:::i;:::-;9209:78;;9296:52;9341:6;9336:3;9329:4;9322:5;9318:16;9296:52;:::i;:::-;9373:29;9395:6;9373:29;:::i;:::-;9368:3;9364:39;9357:46;;9137:272;9045:364;;;;:::o;9415:377::-;9521:3;9549:39;9582:5;9549:39;:::i;:::-;9604:89;9686:6;9681:3;9604:89;:::i;:::-;9597:96;;9702:52;9747:6;9742:3;9735:4;9728:5;9724:16;9702:52;:::i;:::-;9779:6;9774:3;9770:16;9763:23;;9525:267;9415:377;;;;:::o;9822:845::-;9925:3;9962:5;9956:12;9991:36;10017:9;9991:36;:::i;:::-;10043:89;10125:6;10120:3;10043:89;:::i;:::-;10036:96;;10163:1;10152:9;10148:17;10179:1;10174:137;;;;10325:1;10320:341;;;;10141:520;;10174:137;10258:4;10254:9;10243;10239:25;10234:3;10227:38;10294:6;10289:3;10285:16;10278:23;;10174:137;;10320:341;10387:38;10419:5;10387:38;:::i;:::-;10447:1;10461:154;10475:6;10472:1;10469:13;10461:154;;;10549:7;10543:14;10539:1;10534:3;10530:11;10523:35;10599:1;10590:7;10586:15;10575:26;;10497:4;10494:1;10490:12;10485:17;;10461:154;;;10644:6;10639:3;10635:16;10628:23;;10327:334;;10141:520;;9929:738;;9822:845;;;;:::o;10673:366::-;10815:3;10836:67;10900:2;10895:3;10836:67;:::i;:::-;10829:74;;10912:93;11001:3;10912:93;:::i;:::-;11030:2;11025:3;11021:12;11014:19;;10673:366;;;:::o;11045:::-;11187:3;11208:67;11272:2;11267:3;11208:67;:::i;:::-;11201:74;;11284:93;11373:3;11284:93;:::i;:::-;11402:2;11397:3;11393:12;11386:19;;11045:366;;;:::o;11417:::-;11559:3;11580:67;11644:2;11639:3;11580:67;:::i;:::-;11573:74;;11656:93;11745:3;11656:93;:::i;:::-;11774:2;11769:3;11765:12;11758:19;;11417:366;;;:::o;11789:::-;11931:3;11952:67;12016:2;12011:3;11952:67;:::i;:::-;11945:74;;12028:93;12117:3;12028:93;:::i;:::-;12146:2;12141:3;12137:12;12130:19;;11789:366;;;:::o;12161:::-;12303:3;12324:67;12388:2;12383:3;12324:67;:::i;:::-;12317:74;;12400:93;12489:3;12400:93;:::i;:::-;12518:2;12513:3;12509:12;12502:19;;12161:366;;;:::o;12533:::-;12675:3;12696:67;12760:2;12755:3;12696:67;:::i;:::-;12689:74;;12772:93;12861:3;12772:93;:::i;:::-;12890:2;12885:3;12881:12;12874:19;;12533:366;;;:::o;12905:::-;13047:3;13068:67;13132:2;13127:3;13068:67;:::i;:::-;13061:74;;13144:93;13233:3;13144:93;:::i;:::-;13262:2;13257:3;13253:12;13246:19;;12905:366;;;:::o;13277:::-;13419:3;13440:67;13504:2;13499:3;13440:67;:::i;:::-;13433:74;;13516:93;13605:3;13516:93;:::i;:::-;13634:2;13629:3;13625:12;13618:19;;13277:366;;;:::o;13649:::-;13791:3;13812:67;13876:2;13871:3;13812:67;:::i;:::-;13805:74;;13888:93;13977:3;13888:93;:::i;:::-;14006:2;14001:3;13997:12;13990:19;;13649:366;;;:::o;14021:::-;14163:3;14184:67;14248:2;14243:3;14184:67;:::i;:::-;14177:74;;14260:93;14349:3;14260:93;:::i;:::-;14378:2;14373:3;14369:12;14362:19;;14021:366;;;:::o;14393:::-;14535:3;14556:67;14620:2;14615:3;14556:67;:::i;:::-;14549:74;;14632:93;14721:3;14632:93;:::i;:::-;14750:2;14745:3;14741:12;14734:19;;14393:366;;;:::o;14765:::-;14907:3;14928:67;14992:2;14987:3;14928:67;:::i;:::-;14921:74;;15004:93;15093:3;15004:93;:::i;:::-;15122:2;15117:3;15113:12;15106:19;;14765:366;;;:::o;15137:::-;15279:3;15300:67;15364:2;15359:3;15300:67;:::i;:::-;15293:74;;15376:93;15465:3;15376:93;:::i;:::-;15494:2;15489:3;15485:12;15478:19;;15137:366;;;:::o;15509:::-;15651:3;15672:67;15736:2;15731:3;15672:67;:::i;:::-;15665:74;;15748:93;15837:3;15748:93;:::i;:::-;15866:2;15861:3;15857:12;15850:19;;15509:366;;;:::o;15881:::-;16023:3;16044:67;16108:2;16103:3;16044:67;:::i;:::-;16037:74;;16120:93;16209:3;16120:93;:::i;:::-;16238:2;16233:3;16229:12;16222:19;;15881:366;;;:::o;16253:::-;16395:3;16416:67;16480:2;16475:3;16416:67;:::i;:::-;16409:74;;16492:93;16581:3;16492:93;:::i;:::-;16610:2;16605:3;16601:12;16594:19;;16253:366;;;:::o;16625:::-;16767:3;16788:67;16852:2;16847:3;16788:67;:::i;:::-;16781:74;;16864:93;16953:3;16864:93;:::i;:::-;16982:2;16977:3;16973:12;16966:19;;16625:366;;;:::o;16997:398::-;17156:3;17177:83;17258:1;17253:3;17177:83;:::i;:::-;17170:90;;17269:93;17358:3;17269:93;:::i;:::-;17387:1;17382:3;17378:11;17371:18;;16997:398;;;:::o;17401:366::-;17543:3;17564:67;17628:2;17623:3;17564:67;:::i;:::-;17557:74;;17640:93;17729:3;17640:93;:::i;:::-;17758:2;17753:3;17749:12;17742:19;;17401:366;;;:::o;17773:::-;17915:3;17936:67;18000:2;17995:3;17936:67;:::i;:::-;17929:74;;18012:93;18101:3;18012:93;:::i;:::-;18130:2;18125:3;18121:12;18114:19;;17773:366;;;:::o;18145:::-;18287:3;18308:67;18372:2;18367:3;18308:67;:::i;:::-;18301:74;;18384:93;18473:3;18384:93;:::i;:::-;18502:2;18497:3;18493:12;18486:19;;18145:366;;;:::o;18517:108::-;18594:24;18612:5;18594:24;:::i;:::-;18589:3;18582:37;18517:108;;:::o;18631:118::-;18718:24;18736:5;18718:24;:::i;:::-;18713:3;18706:37;18631:118;;:::o;18755:589::-;18980:3;19002:95;19093:3;19084:6;19002:95;:::i;:::-;18995:102;;19114:95;19205:3;19196:6;19114:95;:::i;:::-;19107:102;;19226:92;19314:3;19305:6;19226:92;:::i;:::-;19219:99;;19335:3;19328:10;;18755:589;;;;;;:::o;19350:379::-;19534:3;19556:147;19699:3;19556:147;:::i;:::-;19549:154;;19720:3;19713:10;;19350:379;;;:::o;19735:222::-;19828:4;19866:2;19855:9;19851:18;19843:26;;19879:71;19947:1;19936:9;19932:17;19923:6;19879:71;:::i;:::-;19735:222;;;;:::o;19963:640::-;20158:4;20196:3;20185:9;20181:19;20173:27;;20210:71;20278:1;20267:9;20263:17;20254:6;20210:71;:::i;:::-;20291:72;20359:2;20348:9;20344:18;20335:6;20291:72;:::i;:::-;20373;20441:2;20430:9;20426:18;20417:6;20373:72;:::i;:::-;20492:9;20486:4;20482:20;20477:2;20466:9;20462:18;20455:48;20520:76;20591:4;20582:6;20520:76;:::i;:::-;20512:84;;19963:640;;;;;;;:::o;20609:373::-;20752:4;20790:2;20779:9;20775:18;20767:26;;20839:9;20833:4;20829:20;20825:1;20814:9;20810:17;20803:47;20867:108;20970:4;20961:6;20867:108;:::i;:::-;20859:116;;20609:373;;;;:::o;20988:210::-;21075:4;21113:2;21102:9;21098:18;21090:26;;21126:65;21188:1;21177:9;21173:17;21164:6;21126:65;:::i;:::-;20988:210;;;;:::o;21204:313::-;21317:4;21355:2;21344:9;21340:18;21332:26;;21404:9;21398:4;21394:20;21390:1;21379:9;21375:17;21368:47;21432:78;21505:4;21496:6;21432:78;:::i;:::-;21424:86;;21204:313;;;;:::o;21523:419::-;21689:4;21727:2;21716:9;21712:18;21704:26;;21776:9;21770:4;21766:20;21762:1;21751:9;21747:17;21740:47;21804:131;21930:4;21804:131;:::i;:::-;21796:139;;21523:419;;;:::o;21948:::-;22114:4;22152:2;22141:9;22137:18;22129:26;;22201:9;22195:4;22191:20;22187:1;22176:9;22172:17;22165:47;22229:131;22355:4;22229:131;:::i;:::-;22221:139;;21948:419;;;:::o;22373:::-;22539:4;22577:2;22566:9;22562:18;22554:26;;22626:9;22620:4;22616:20;22612:1;22601:9;22597:17;22590:47;22654:131;22780:4;22654:131;:::i;:::-;22646:139;;22373:419;;;:::o;22798:::-;22964:4;23002:2;22991:9;22987:18;22979:26;;23051:9;23045:4;23041:20;23037:1;23026:9;23022:17;23015:47;23079:131;23205:4;23079:131;:::i;:::-;23071:139;;22798:419;;;:::o;23223:::-;23389:4;23427:2;23416:9;23412:18;23404:26;;23476:9;23470:4;23466:20;23462:1;23451:9;23447:17;23440:47;23504:131;23630:4;23504:131;:::i;:::-;23496:139;;23223:419;;;:::o;23648:::-;23814:4;23852:2;23841:9;23837:18;23829:26;;23901:9;23895:4;23891:20;23887:1;23876:9;23872:17;23865:47;23929:131;24055:4;23929:131;:::i;:::-;23921:139;;23648:419;;;:::o;24073:::-;24239:4;24277:2;24266:9;24262:18;24254:26;;24326:9;24320:4;24316:20;24312:1;24301:9;24297:17;24290:47;24354:131;24480:4;24354:131;:::i;:::-;24346:139;;24073:419;;;:::o;24498:::-;24664:4;24702:2;24691:9;24687:18;24679:26;;24751:9;24745:4;24741:20;24737:1;24726:9;24722:17;24715:47;24779:131;24905:4;24779:131;:::i;:::-;24771:139;;24498:419;;;:::o;24923:::-;25089:4;25127:2;25116:9;25112:18;25104:26;;25176:9;25170:4;25166:20;25162:1;25151:9;25147:17;25140:47;25204:131;25330:4;25204:131;:::i;:::-;25196:139;;24923:419;;;:::o;25348:::-;25514:4;25552:2;25541:9;25537:18;25529:26;;25601:9;25595:4;25591:20;25587:1;25576:9;25572:17;25565:47;25629:131;25755:4;25629:131;:::i;:::-;25621:139;;25348:419;;;:::o;25773:::-;25939:4;25977:2;25966:9;25962:18;25954:26;;26026:9;26020:4;26016:20;26012:1;26001:9;25997:17;25990:47;26054:131;26180:4;26054:131;:::i;:::-;26046:139;;25773:419;;;:::o;26198:::-;26364:4;26402:2;26391:9;26387:18;26379:26;;26451:9;26445:4;26441:20;26437:1;26426:9;26422:17;26415:47;26479:131;26605:4;26479:131;:::i;:::-;26471:139;;26198:419;;;:::o;26623:::-;26789:4;26827:2;26816:9;26812:18;26804:26;;26876:9;26870:4;26866:20;26862:1;26851:9;26847:17;26840:47;26904:131;27030:4;26904:131;:::i;:::-;26896:139;;26623:419;;;:::o;27048:::-;27214:4;27252:2;27241:9;27237:18;27229:26;;27301:9;27295:4;27291:20;27287:1;27276:9;27272:17;27265:47;27329:131;27455:4;27329:131;:::i;:::-;27321:139;;27048:419;;;:::o;27473:::-;27639:4;27677:2;27666:9;27662:18;27654:26;;27726:9;27720:4;27716:20;27712:1;27701:9;27697:17;27690:47;27754:131;27880:4;27754:131;:::i;:::-;27746:139;;27473:419;;;:::o;27898:::-;28064:4;28102:2;28091:9;28087:18;28079:26;;28151:9;28145:4;28141:20;28137:1;28126:9;28122:17;28115:47;28179:131;28305:4;28179:131;:::i;:::-;28171:139;;27898:419;;;:::o;28323:::-;28489:4;28527:2;28516:9;28512:18;28504:26;;28576:9;28570:4;28566:20;28562:1;28551:9;28547:17;28540:47;28604:131;28730:4;28604:131;:::i;:::-;28596:139;;28323:419;;;:::o;28748:::-;28914:4;28952:2;28941:9;28937:18;28929:26;;29001:9;28995:4;28991:20;28987:1;28976:9;28972:17;28965:47;29029:131;29155:4;29029:131;:::i;:::-;29021:139;;28748:419;;;:::o;29173:::-;29339:4;29377:2;29366:9;29362:18;29354:26;;29426:9;29420:4;29416:20;29412:1;29401:9;29397:17;29390:47;29454:131;29580:4;29454:131;:::i;:::-;29446:139;;29173:419;;;:::o;29598:::-;29764:4;29802:2;29791:9;29787:18;29779:26;;29851:9;29845:4;29841:20;29837:1;29826:9;29822:17;29815:47;29879:131;30005:4;29879:131;:::i;:::-;29871:139;;29598:419;;;:::o;30023:222::-;30116:4;30154:2;30143:9;30139:18;30131:26;;30167:71;30235:1;30224:9;30220:17;30211:6;30167:71;:::i;:::-;30023:222;;;;:::o;30251:129::-;30285:6;30312:20;;:::i;:::-;30302:30;;30341:33;30369:4;30361:6;30341:33;:::i;:::-;30251:129;;;:::o;30386:75::-;30419:6;30452:2;30446:9;30436:19;;30386:75;:::o;30467:307::-;30528:4;30618:18;30610:6;30607:30;30604:56;;;30640:18;;:::i;:::-;30604:56;30678:29;30700:6;30678:29;:::i;:::-;30670:37;;30762:4;30756;30752:15;30744:23;;30467:307;;;:::o;30780:308::-;30842:4;30932:18;30924:6;30921:30;30918:56;;;30954:18;;:::i;:::-;30918:56;30992:29;31014:6;30992:29;:::i;:::-;30984:37;;31076:4;31070;31066:15;31058:23;;30780:308;;;:::o;31094:132::-;31161:4;31184:3;31176:11;;31214:4;31209:3;31205:14;31197:22;;31094:132;;;:::o;31232:141::-;31281:4;31304:3;31296:11;;31327:3;31324:1;31317:14;31361:4;31358:1;31348:18;31340:26;;31232:141;;;:::o;31379:114::-;31446:6;31480:5;31474:12;31464:22;;31379:114;;;:::o;31499:98::-;31550:6;31584:5;31578:12;31568:22;;31499:98;;;:::o;31603:99::-;31655:6;31689:5;31683:12;31673:22;;31603:99;;;:::o;31708:113::-;31778:4;31810;31805:3;31801:14;31793:22;;31708:113;;;:::o;31827:184::-;31926:11;31960:6;31955:3;31948:19;32000:4;31995:3;31991:14;31976:29;;31827:184;;;;:::o;32017:168::-;32100:11;32134:6;32129:3;32122:19;32174:4;32169:3;32165:14;32150:29;;32017:168;;;;:::o;32191:147::-;32292:11;32329:3;32314:18;;32191:147;;;;:::o;32344:169::-;32428:11;32462:6;32457:3;32450:19;32502:4;32497:3;32493:14;32478:29;;32344:169;;;;:::o;32519:148::-;32621:11;32658:3;32643:18;;32519:148;;;;:::o;32673:305::-;32713:3;32732:20;32750:1;32732:20;:::i;:::-;32727:25;;32766:20;32784:1;32766:20;:::i;:::-;32761:25;;32920:1;32852:66;32848:74;32845:1;32842:81;32839:107;;;32926:18;;:::i;:::-;32839:107;32970:1;32967;32963:9;32956:16;;32673:305;;;;:::o;32984:185::-;33024:1;33041:20;33059:1;33041:20;:::i;:::-;33036:25;;33075:20;33093:1;33075:20;:::i;:::-;33070:25;;33114:1;33104:35;;33119:18;;:::i;:::-;33104:35;33161:1;33158;33154:9;33149:14;;32984:185;;;;:::o;33175:348::-;33215:7;33238:20;33256:1;33238:20;:::i;:::-;33233:25;;33272:20;33290:1;33272:20;:::i;:::-;33267:25;;33460:1;33392:66;33388:74;33385:1;33382:81;33377:1;33370:9;33363:17;33359:105;33356:131;;;33467:18;;:::i;:::-;33356:131;33515:1;33512;33508:9;33497:20;;33175:348;;;;:::o;33529:191::-;33569:4;33589:20;33607:1;33589:20;:::i;:::-;33584:25;;33623:20;33641:1;33623:20;:::i;:::-;33618:25;;33662:1;33659;33656:8;33653:34;;;33667:18;;:::i;:::-;33653:34;33712:1;33709;33705:9;33697:17;;33529:191;;;;:::o;33726:96::-;33763:7;33792:24;33810:5;33792:24;:::i;:::-;33781:35;;33726:96;;;:::o;33828:90::-;33862:7;33905:5;33898:13;33891:21;33880:32;;33828:90;;;:::o;33924:149::-;33960:7;34000:66;33993:5;33989:78;33978:89;;33924:149;;;:::o;34079:126::-;34116:7;34156:42;34149:5;34145:54;34134:65;;34079:126;;;:::o;34211:77::-;34248:7;34277:5;34266:16;;34211:77;;;:::o;34294:154::-;34378:6;34373:3;34368;34355:30;34440:1;34431:6;34426:3;34422:16;34415:27;34294:154;;;:::o;34454:307::-;34522:1;34532:113;34546:6;34543:1;34540:13;34532:113;;;34631:1;34626:3;34622:11;34616:18;34612:1;34607:3;34603:11;34596:39;34568:2;34565:1;34561:10;34556:15;;34532:113;;;34663:6;34660:1;34657:13;34654:101;;;34743:1;34734:6;34729:3;34725:16;34718:27;34654:101;34503:258;34454:307;;;:::o;34767:320::-;34811:6;34848:1;34842:4;34838:12;34828:22;;34895:1;34889:4;34885:12;34916:18;34906:81;;34972:4;34964:6;34960:17;34950:27;;34906:81;35034:2;35026:6;35023:14;35003:18;35000:38;34997:84;;;35053:18;;:::i;:::-;34997:84;34818:269;34767:320;;;:::o;35093:281::-;35176:27;35198:4;35176:27;:::i;:::-;35168:6;35164:40;35306:6;35294:10;35291:22;35270:18;35258:10;35255:34;35252:62;35249:88;;;35317:18;;:::i;:::-;35249:88;35357:10;35353:2;35346:22;35136:238;35093:281;;:::o;35380:233::-;35419:3;35442:24;35460:5;35442:24;:::i;:::-;35433:33;;35488:66;35481:5;35478:77;35475:103;;;35558:18;;:::i;:::-;35475:103;35605:1;35598:5;35594:13;35587:20;;35380:233;;;:::o;35619:176::-;35651:1;35668:20;35686:1;35668:20;:::i;:::-;35663:25;;35702:20;35720:1;35702:20;:::i;:::-;35697:25;;35741:1;35731:35;;35746:18;;:::i;:::-;35731:35;35787:1;35784;35780:9;35775:14;;35619:176;;;;:::o;35801:180::-;35849:77;35846:1;35839:88;35946:4;35943:1;35936:15;35970:4;35967:1;35960:15;35987:180;36035:77;36032:1;36025:88;36132:4;36129:1;36122:15;36156:4;36153:1;36146:15;36173:180;36221:77;36218:1;36211:88;36318:4;36315:1;36308:15;36342:4;36339:1;36332:15;36359:180;36407:77;36404:1;36397:88;36504:4;36501:1;36494:15;36528:4;36525:1;36518:15;36545:180;36593:77;36590:1;36583:88;36690:4;36687:1;36680:15;36714:4;36711:1;36704:15;36731:180;36779:77;36776:1;36769:88;36876:4;36873:1;36866:15;36900:4;36897:1;36890:15;36917:117;37026:1;37023;37016:12;37040:117;37149:1;37146;37139:12;37163:117;37272:1;37269;37262:12;37286:117;37395:1;37392;37385:12;37409:102;37450:6;37501:2;37497:7;37492:2;37485:5;37481:14;37477:28;37467:38;;37409:102;;;:::o;37517:230::-;37657:34;37653:1;37645:6;37641:14;37634:58;37726:13;37721:2;37713:6;37709:15;37702:38;37517:230;:::o;37753:237::-;37893:34;37889:1;37881:6;37877:14;37870:58;37962:20;37957:2;37949:6;37945:15;37938:45;37753:237;:::o;37996:225::-;38136:34;38132:1;38124:6;38120:14;38113:58;38205:8;38200:2;38192:6;38188:15;38181:33;37996:225;:::o;38227:178::-;38367:30;38363:1;38355:6;38351:14;38344:54;38227:178;:::o;38411:223::-;38551:34;38547:1;38539:6;38535:14;38528:58;38620:6;38615:2;38607:6;38603:15;38596:31;38411:223;:::o;38640:175::-;38780:27;38776:1;38768:6;38764:14;38757:51;38640:175;:::o;38821:221::-;38961:34;38957:1;38949:6;38945:14;38938:58;39030:4;39025:2;39017:6;39013:15;39006:29;38821:221;:::o;39048:231::-;39188:34;39184:1;39176:6;39172:14;39165:58;39257:14;39252:2;39244:6;39240:15;39233:39;39048:231;:::o;39285:243::-;39425:34;39421:1;39413:6;39409:14;39402:58;39494:26;39489:2;39481:6;39477:15;39470:51;39285:243;:::o;39534:229::-;39674:34;39670:1;39662:6;39658:14;39651:58;39743:12;39738:2;39730:6;39726:15;39719:37;39534:229;:::o;39769:228::-;39909:34;39905:1;39897:6;39893:14;39886:58;39978:11;39973:2;39965:6;39961:15;39954:36;39769:228;:::o;40003:182::-;40143:34;40139:1;40131:6;40127:14;40120:58;40003:182;:::o;40191:231::-;40331:34;40327:1;40319:6;40315:14;40308:58;40400:14;40395:2;40387:6;40383:15;40376:39;40191:231;:::o;40428:182::-;40568:34;40564:1;40556:6;40552:14;40545:58;40428:182;:::o;40616:228::-;40756:34;40752:1;40744:6;40740:14;40733:58;40825:11;40820:2;40812:6;40808:15;40801:36;40616:228;:::o;40850:234::-;40990:34;40986:1;40978:6;40974:14;40967:58;41059:17;41054:2;41046:6;41042:15;41035:42;40850:234;:::o;41090:220::-;41230:34;41226:1;41218:6;41214:14;41207:58;41299:3;41294:2;41286:6;41282:15;41275:28;41090:220;:::o;41316:114::-;;:::o;41436:236::-;41576:34;41572:1;41564:6;41560:14;41553:58;41645:19;41640:2;41632:6;41628:15;41621:44;41436:236;:::o;41678:182::-;41818:34;41814:1;41806:6;41802:14;41795:58;41678:182;:::o;41866:231::-;42006:34;42002:1;41994:6;41990:14;41983:58;42075:14;42070:2;42062:6;42058:15;42051:39;41866:231;:::o;42103:122::-;42176:24;42194:5;42176:24;:::i;:::-;42169:5;42166:35;42156:63;;42215:1;42212;42205:12;42156:63;42103:122;:::o;42231:116::-;42301:21;42316:5;42301:21;:::i;:::-;42294:5;42291:32;42281:60;;42337:1;42334;42327:12;42281:60;42231:116;:::o;42353:120::-;42425:23;42442:5;42425:23;:::i;:::-;42418:5;42415:34;42405:62;;42463:1;42460;42453:12;42405:62;42353:120;:::o;42479:122::-;42552:24;42570:5;42552:24;:::i;:::-;42545:5;42542:35;42532:63;;42591:1;42588;42581:12;42532:63;42479:122;:::o

Swarm Source

ipfs://7f715d2805e52c3cdd7fecbad14cff69a3eef16ea7cc3a5bcf96ccc0e891f74c
Loading...
Loading
Loading...
Loading
[ Download: CSV Export  ]
[ Download: CSV Export  ]

A token is a representation of an on-chain or off-chain asset. The token page shows information such as price, total supply, holders, transfers and social links. Learn more about this page in our Knowledge Base.