ETH Price: $3,502.43 (+2.50%)
Gas: 14 Gwei

Token

CNM (CNM)
 

Overview

Max Total Supply

999 CNM

Holders

964

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A
Filtered by Token Holder
criterium.eth
Balance
1 CNM
0xC8eD349529BAb23AC6c726693623ceFa2e31Ed98
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:
ShitLowsupply

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-09-20
*/

/**
 *Submitted for verification at Etherscan.io on 2022-09-19
*/

// SPDX-License-Identifier: MIT

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

// OpenZeppelin Contracts v4.4.1 (utils/Strings.sol)

pragma solidity ^0.8.0;

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

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

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

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

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

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


// OpenZeppelin Contracts v4.4.1 (utils/Context.sol)

pragma solidity ^0.8.0;

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

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

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


// OpenZeppelin Contracts (last updated v4.5.0) (utils/Address.sol)

pragma solidity ^0.8.1;

/**
 * @dev Collection of functions related to the address type
 */
library Address {
    /**
     * @dev Returns true if `account` is a contract.
     *
     * [IMPORTANT]
     * ====
     * It is unsafe to assume that an address for which this function returns
     * false is an externally-owned account (EOA) and not a contract.
     *
     * Among others, `isContract` will return false for the following
     * types of addresses:
     *
     *  - an externally-owned account
     *  - a contract in construction
     *  - an address where a contract will be created
     *  - an address where a contract lived, but was destroyed
     * ====
     *
     * [IMPORTANT]
     * ====
     * You shouldn't rely on `isContract` to protect against flash loan attacks!
     *
     * Preventing calls from contracts is highly discouraged. It breaks composability, breaks support for smart wallets
     * like Gnosis Safe, and does not provide security since it can be circumvented by calling from a contract
     * constructor.
     * ====
     */
    function isContract(address account) internal view returns (bool) {
        // This method relies on extcodesize/address.code.length, which returns 0
        // for contracts in construction, since the code is only stored at the end
        // of the constructor execution.

        return account.code.length > 0;
    }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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


// OpenZeppelin Contracts v4.4.1 (token/ERC721/IERC721Receiver.sol)

pragma solidity ^0.8.0;

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

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


// OpenZeppelin Contracts v4.4.1 (utils/introspection/IERC165.sol)

pragma solidity ^0.8.0;

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

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


// OpenZeppelin Contracts v4.4.1 (utils/introspection/ERC165.sol)

pragma solidity ^0.8.0;


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

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


// OpenZeppelin Contracts v4.4.1 (token/ERC721/IERC721.sol)

pragma solidity ^0.8.0;


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

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

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

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

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

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

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

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

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

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

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

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

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


// OpenZeppelin Contracts v4.4.1 (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/new.sol




pragma solidity ^0.8.4;








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

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

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

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

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

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

    // Token name
    string private _name;

    // Token symbol
    string private _symbol;

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

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

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

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

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

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

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

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

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

    /**
     * @dev See {IERC721-balanceOf}.
     */
    function balanceOf(address owner) public view override returns (uint256) {
        if (owner == address(0)) revert BalanceQueryForZeroAddress();
        return uint256(_addressData[owner].balance);
    }

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

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

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

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

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

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

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

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

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

    /**
     * @dev See {IERC721Metadata-tokenURI}.
     */
    function tokenURI(uint256 tokenId) public view virtual override returns (string memory) {
        if (!_exists(tokenId)) revert URIQueryForNonexistentToken();

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

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

    /**
     * @dev See {IERC721-approve}.
     */
    function approve(address to, uint256 tokenId) public override {
        address owner = ERC721A.ownerOf(tokenId);
        if (to == owner) revert ApprovalToCurrentOwner();

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

        _approve(to, tokenId, owner);
    }

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

        return _tokenApprovals[tokenId];
    }

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

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

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

    /**
     * @dev See {IERC721-transferFrom}.
     */
    function transferFrom(
        address from,
        address to,
        uint256 tokenId
    ) public virtual override {
        _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 {
        _transfer(from, to, tokenId);
        if (to.isContract() && !_checkContractOnERC721Received(from, to, tokenId, _data)) {
            revert TransferToNonERC721ReceiverImplementer();
        }
    }

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

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

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

    /**
     * @dev Mints `quantity` tokens and transfers them to `to`.
     *
     * Requirements:
     *
     * - `to` cannot be the zero address.
     * - `quantity` must be greater than 0.
     *
     * Emits a {Transfer} event.
     */
    function _mint(
        address to,
        uint256 quantity,
        bytes memory _data,
        bool safe
    ) internal {
        uint256 startTokenId = _currentIndex;
        if (to == address(0)) revert MintToZeroAddress();
        if (quantity == 0) revert MintZeroQuantity();

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

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

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

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

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

    /**
     * @dev Transfers `tokenId` from `from` to `to`.
     *
     * Requirements:
     *
     * - `to` cannot be the zero address.
     * - `tokenId` token must be owned by `from`.
     *
     * Emits a {Transfer} event.
     */
    function _transfer(
        address from,
        address to,
        uint256 tokenId
    ) private {
        TokenOwnership memory prevOwnership = _ownershipOf(tokenId);

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

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

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

        _beforeTokenTransfers(from, to, tokenId, 1);

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

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

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

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

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

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

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

        address from = prevOwnership.addr;

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

            if (!isApprovedOrOwner) revert TransferCallerNotOwnerNorApproved();
        }

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

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

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

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

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

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

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

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

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

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

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

abstract contract Ownable is Context {
    address private _owner;

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

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

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

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

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

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

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

pragma solidity ^0.8.7;
    
contract ShitLowsupply is ERC721A, Ownable {

  using Strings for uint256;

  bytes32 public merkleRoot;
  mapping(address => bool) public whitelistClaimed;

  string public PRICE = '0.005';

  string public MAX_SUPPLY = '999';

  string public uriPrefix = '';

  string public uriSuffix = '.json';

  string public hiddenMetadataUri;
  
  uint256 public cost;
  uint256 public maxSupply;
  uint256 public maxMintAmountPerTx;

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

  constructor(
    string memory _tokenName,
    string memory _tokenSymbol,
    uint256 _cost,
    uint256 _maxSupply,
    uint256 _maxMintAmountPerTx,
    string memory _hiddenMetadataUri
  ) ERC721A(_tokenName, _tokenSymbol) {
    setCost(_cost);
    maxSupply = _maxSupply;
    setMaxMintAmountPerTx(_maxMintAmountPerTx);
    setHiddenMetadataUri(_hiddenMetadataUri);
  }

  modifier mintCompliance(uint256 _mintAmount) {
    require(_mintAmount > 0 && _mintAmount <= maxMintAmountPerTx, 'Invalid mint amount!');
    require(totalSupply() + _mintAmount <= maxSupply, 'Sold out fren.');
    _;
  }

  modifier mintPriceCompliance(uint256 _mintAmount) {
    require(msg.value >= cost * _mintAmount, 'You dont have enough to mint.');
    _;
  }

  function mint(uint256 _mintAmount) public payable mintCompliance(_mintAmount) mintPriceCompliance(_mintAmount) {
    require(!paused, 'The contract is paused!');

    _safeMint(_msgSender(), _mintAmount);
  }
  
  function mintForAddress(uint256 _mintAmount, address _receiver) public onlyOwner {
    _safeMint(_receiver, _mintAmount);
  }

  function walletOfOwner(address _owner) public view returns (uint256[] memory) {
    uint256 ownerTokenCount = balanceOf(_owner);
    uint256[] memory ownedTokenIds = new uint256[](ownerTokenCount);
    uint256 currentTokenId = _startTokenId();
    uint256 ownedTokenIndex = 0;
    address latestOwnerAddress;

    while (ownedTokenIndex < ownerTokenCount && currentTokenId < _currentIndex) {
      TokenOwnership memory ownership = _ownerships[currentTokenId];

      if (!ownership.burned) {
        if (ownership.addr != address(0)) {
          latestOwnerAddress = ownership.addr;
        }

        if (latestOwnerAddress == _owner) {
          ownedTokenIds[ownedTokenIndex] = currentTokenId;

          ownedTokenIndex++;
        }
      }

      currentTokenId++;
    }

    return ownedTokenIds;
  }

  function _startTokenId() internal view virtual override returns (uint256) {
    return 1;
  }

  function tokenURI(uint256 _tokenId) public view virtual override returns (string memory) {
    require(_exists(_tokenId), 'ERC721Metadata: URI query for nonexistent token');

    if (revealed == false) {
      return hiddenMetadataUri;
    }

    string memory currentBaseURI = _baseURI();
    return bytes(currentBaseURI).length > 0
        ? string(abi.encodePacked(currentBaseURI, _tokenId.toString(), uriSuffix))
        : '';
  }

  function setRevealed(bool _state) public onlyOwner {
    revealed = _state;
  }

  function setCost(uint256 _cost) public onlyOwner {
    cost = _cost;
  }

  function setMaxMintAmountPerTx(uint256 _maxMintAmountPerTx) public onlyOwner {
    maxMintAmountPerTx = _maxMintAmountPerTx;
  }

  function setHiddenMetadataUri(string memory _hiddenMetadataUri) public onlyOwner {
    hiddenMetadataUri = _hiddenMetadataUri;
  }

  function setUriPrefix(string memory _uriPrefix) public onlyOwner {
    uriPrefix = _uriPrefix;
  }

  function setUriSuffix(string memory _uriSuffix) public onlyOwner {
    uriSuffix = _uriSuffix;
  }

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

  function setMerkleRoot(bytes32 _merkleRoot) public onlyOwner {
    merkleRoot = _merkleRoot;
  }

  function setWhitelistMintEnabled(bool _state) public onlyOwner {
    whitelistMintEnabled = _state;
  }

  function withdraw() public onlyOwner {
    // This will transfer the remaining contract balance to the owner.
    // Do not remove this otherwise you will not be able to withdraw the funds.
    // =============================================================================
    (bool os, ) = payable(owner()).call{value: address(this).balance}('');
    require(os);
    // =============================================================================
  }

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

Contract Security Audit

Contract ABI

[{"inputs":[{"internalType":"string","name":"_tokenName","type":"string"},{"internalType":"string","name":"_tokenSymbol","type":"string"},{"internalType":"uint256","name":"_cost","type":"uint256"},{"internalType":"uint256","name":"_maxSupply","type":"uint256"},{"internalType":"uint256","name":"_maxMintAmountPerTx","type":"uint256"},{"internalType":"string","name":"_hiddenMetadataUri","type":"string"}],"stateMutability":"nonpayable","type":"constructor"},{"inputs":[],"name":"ApprovalCallerNotOwnerNorApproved","type":"error"},{"inputs":[],"name":"ApprovalQueryForNonexistentToken","type":"error"},{"inputs":[],"name":"ApprovalToCurrentOwner","type":"error"},{"inputs":[],"name":"ApproveToCaller","type":"error"},{"inputs":[],"name":"BalanceQueryForZeroAddress","type":"error"},{"inputs":[],"name":"MintToZeroAddress","type":"error"},{"inputs":[],"name":"MintZeroQuantity","type":"error"},{"inputs":[],"name":"OwnerQueryForNonexistentToken","type":"error"},{"inputs":[],"name":"TransferCallerNotOwnerNorApproved","type":"error"},{"inputs":[],"name":"TransferFromIncorrectOwner","type":"error"},{"inputs":[],"name":"TransferToNonERC721ReceiverImplementer","type":"error"},{"inputs":[],"name":"TransferToZeroAddress","type":"error"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"approved","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[],"name":"MAX_SUPPLY","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"PRICE","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"cost","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":[],"name":"hiddenMetadataUri","outputs":[{"internalType":"string","name":"","type":"string"}],"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":"maxMintAmountPerTx","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"merkleRoot","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_mintAmount","type":"uint256"}],"name":"mint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_mintAmount","type":"uint256"},{"internalType":"address","name":"_receiver","type":"address"}],"name":"mintForAddress","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"paused","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"revealed","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"_data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_cost","type":"uint256"}],"name":"setCost","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_hiddenMetadataUri","type":"string"}],"name":"setHiddenMetadataUri","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_maxMintAmountPerTx","type":"uint256"}],"name":"setMaxMintAmountPerTx","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes32","name":"_merkleRoot","type":"bytes32"}],"name":"setMerkleRoot","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"_state","type":"bool"}],"name":"setPaused","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"_state","type":"bool"}],"name":"setRevealed","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_uriPrefix","type":"string"}],"name":"setUriPrefix","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_uriSuffix","type":"string"}],"name":"setUriSuffix","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"_state","type":"bool"}],"name":"setWhitelistMintEnabled","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":"_tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"uriPrefix","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"uriSuffix","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_owner","type":"address"}],"name":"walletOfOwner","outputs":[{"internalType":"uint256[]","name":"","type":"uint256[]"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"whitelistClaimed","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"whitelistMintEnabled","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"withdraw","outputs":[],"stateMutability":"nonpayable","type":"function"}]

60806040526040518060400160405280600581526020017f302e303035000000000000000000000000000000000000000000000000000000815250600b9080519060200190620000519291906200052a565b506040518060400160405280600381526020017f3939390000000000000000000000000000000000000000000000000000000000815250600c90805190602001906200009f9291906200052a565b5060405180602001604052806000815250600d9080519060200190620000c79291906200052a565b506040518060400160405280600581526020017f2e6a736f6e000000000000000000000000000000000000000000000000000000815250600e9080519060200190620001159291906200052a565b506001601360006101000a81548160ff0219169083151502179055506000601360016101000a81548160ff0219169083151502179055506000601360026101000a81548160ff0219169083151502179055503480156200017457600080fd5b5060405162004d9b38038062004d9b83398181016040528101906200019a91906200066f565b85858160029080519060200190620001b49291906200052a565b508060039080519060200190620001cd9291906200052a565b50620001de6200024c60201b60201c565b600081905550505062000206620001fa6200025560201b60201c565b6200025d60201b60201c565b62000217846200032360201b60201c565b826011819055506200022f82620003bc60201b60201c565b62000240816200045560201b60201c565b50505050505062000993565b60006001905090565b600033905090565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b620003336200025560201b60201c565b73ffffffffffffffffffffffffffffffffffffffff16620003596200050060201b60201c565b73ffffffffffffffffffffffffffffffffffffffff1614620003b2576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620003a9906200078f565b60405180910390fd5b8060108190555050565b620003cc6200025560201b60201c565b73ffffffffffffffffffffffffffffffffffffffff16620003f26200050060201b60201c565b73ffffffffffffffffffffffffffffffffffffffff16146200044b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040162000442906200078f565b60405180910390fd5b8060128190555050565b620004656200025560201b60201c565b73ffffffffffffffffffffffffffffffffffffffff166200048b6200050060201b60201c565b73ffffffffffffffffffffffffffffffffffffffff1614620004e4576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620004db906200078f565b60405180910390fd5b80600f9080519060200190620004fc9291906200052a565b5050565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b828054620005389062000861565b90600052602060002090601f0160209004810192826200055c5760008555620005a8565b82601f106200057757805160ff1916838001178555620005a8565b82800160010185558215620005a8579182015b82811115620005a75782518255916020019190600101906200058a565b5b509050620005b79190620005bb565b5090565b5b80821115620005d6576000816000905550600101620005bc565b5090565b6000620005f1620005eb84620007da565b620007b1565b90508281526020810184848401111562000610576200060f62000930565b5b6200061d8482856200082b565b509392505050565b600082601f8301126200063d576200063c6200092b565b5b81516200064f848260208601620005da565b91505092915050565b600081519050620006698162000979565b92915050565b60008060008060008060c087890312156200068f576200068e6200093a565b5b600087015167ffffffffffffffff811115620006b057620006af62000935565b5b620006be89828a0162000625565b965050602087015167ffffffffffffffff811115620006e257620006e162000935565b5b620006f089828a0162000625565b95505060406200070389828a0162000658565b94505060606200071689828a0162000658565b93505060806200072989828a0162000658565b92505060a087015167ffffffffffffffff8111156200074d576200074c62000935565b5b6200075b89828a0162000625565b9150509295509295509295565b60006200077760208362000810565b9150620007848262000950565b602082019050919050565b60006020820190508181036000830152620007aa8162000768565b9050919050565b6000620007bd620007d0565b9050620007cb828262000897565b919050565b6000604051905090565b600067ffffffffffffffff821115620007f857620007f7620008fc565b5b62000803826200093f565b9050602081019050919050565b600082825260208201905092915050565b6000819050919050565b60005b838110156200084b5780820151818401526020810190506200082e565b838111156200085b576000848401525b50505050565b600060028204905060018216806200087a57607f821691505b60208210811415620008915762000890620008cd565b5b50919050565b620008a2826200093f565b810181811067ffffffffffffffff82111715620008c457620008c3620008fc565b5b80604052505050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b620009848162000821565b81146200099057600080fd5b50565b6143f880620009a36000396000f3fe60806040526004361061025c5760003560e01c80636caede3d11610144578063a45ba8e7116100b6578063d5abeb011161007a578063d5abeb01146108b3578063db4bec44146108de578063e0a808531461091b578063e985e9c514610944578063efbd73f414610981578063f2fde38b146109aa5761025c565b8063a45ba8e7146107d0578063b071401b146107fb578063b767a09814610824578063b88d4fde1461084d578063c87b56dd146108765761025c565b80638d859f3e116101085780638d859f3e146106df5780638da5cb5b1461070a57806394354fd01461073557806395d89b4114610760578063a0712d681461078b578063a22cb465146107a75761025c565b80636caede3d1461060e57806370a0823114610639578063715018a6146106765780637cb647591461068d5780637ec4a659146106b65761025c565b806332cb6b0c116101dd5780634fdd43cb116101a15780634fdd43cb146104fc57806351830227146105255780635503a0e8146105505780635c975abb1461057b57806362b99ad4146105a65780636352211e146105d15761025c565b806332cb6b0c1461042b5780633ccfd60b1461045657806342842e0e1461046d578063438b63001461049657806344a0d68a146104d35761025c565b806316ba10e01161022457806316ba10e01461035a57806316c38b3c1461038357806318160ddd146103ac57806323b872dd146103d75780632eb4a7ab146104005761025c565b806301ffc9a71461026157806306fdde031461029e578063081812fc146102c9578063095ea7b31461030657806313faede61461032f575b600080fd5b34801561026d57600080fd5b50610288600480360381019061028391906136cf565b6109d3565b6040516102959190613ba9565b60405180910390f35b3480156102aa57600080fd5b506102b3610ab5565b6040516102c09190613bdf565b60405180910390f35b3480156102d557600080fd5b506102f060048036038101906102eb9190613772565b610b47565b6040516102fd9190613b20565b60405180910390f35b34801561031257600080fd5b5061032d60048036038101906103289190613635565b610bc3565b005b34801561033b57600080fd5b50610344610cce565b6040516103519190613ce1565b60405180910390f35b34801561036657600080fd5b50610381600480360381019061037c9190613729565b610cd4565b005b34801561038f57600080fd5b506103aa60048036038101906103a59190613675565b610d6a565b005b3480156103b857600080fd5b506103c1610e03565b6040516103ce9190613ce1565b60405180910390f35b3480156103e357600080fd5b506103fe60048036038101906103f9919061351f565b610e1a565b005b34801561040c57600080fd5b50610415610e2a565b6040516104229190613bc4565b60405180910390f35b34801561043757600080fd5b50610440610e30565b60405161044d9190613bdf565b60405180910390f35b34801561046257600080fd5b5061046b610ebe565b005b34801561047957600080fd5b50610494600480360381019061048f919061351f565b610fba565b005b3480156104a257600080fd5b506104bd60048036038101906104b891906134b2565b610fda565b6040516104ca9190613b87565b60405180910390f35b3480156104df57600080fd5b506104fa60048036038101906104f59190613772565b6111ee565b005b34801561050857600080fd5b50610523600480360381019061051e9190613729565b611274565b005b34801561053157600080fd5b5061053a61130a565b6040516105479190613ba9565b60405180910390f35b34801561055c57600080fd5b5061056561131d565b6040516105729190613bdf565b60405180910390f35b34801561058757600080fd5b506105906113ab565b60405161059d9190613ba9565b60405180910390f35b3480156105b257600080fd5b506105bb6113be565b6040516105c89190613bdf565b60405180910390f35b3480156105dd57600080fd5b506105f860048036038101906105f39190613772565b61144c565b6040516106059190613b20565b60405180910390f35b34801561061a57600080fd5b50610623611462565b6040516106309190613ba9565b60405180910390f35b34801561064557600080fd5b50610660600480360381019061065b91906134b2565b611475565b60405161066d9190613ce1565b60405180910390f35b34801561068257600080fd5b5061068b611545565b005b34801561069957600080fd5b506106b460048036038101906106af91906136a2565b6115cd565b005b3480156106c257600080fd5b506106dd60048036038101906106d89190613729565b611653565b005b3480156106eb57600080fd5b506106f46116e9565b6040516107019190613bdf565b60405180910390f35b34801561071657600080fd5b5061071f611777565b60405161072c9190613b20565b60405180910390f35b34801561074157600080fd5b5061074a6117a1565b6040516107579190613ce1565b60405180910390f35b34801561076c57600080fd5b506107756117a7565b6040516107829190613bdf565b60405180910390f35b6107a560048036038101906107a09190613772565b611839565b005b3480156107b357600080fd5b506107ce60048036038101906107c991906135f5565b611999565b005b3480156107dc57600080fd5b506107e5611b11565b6040516107f29190613bdf565b60405180910390f35b34801561080757600080fd5b50610822600480360381019061081d9190613772565b611b9f565b005b34801561083057600080fd5b5061084b60048036038101906108469190613675565b611c25565b005b34801561085957600080fd5b50610874600480360381019061086f9190613572565b611cbe565b005b34801561088257600080fd5b5061089d60048036038101906108989190613772565b611d3a565b6040516108aa9190613bdf565b60405180910390f35b3480156108bf57600080fd5b506108c8611e93565b6040516108d59190613ce1565b60405180910390f35b3480156108ea57600080fd5b50610905600480360381019061090091906134b2565b611e99565b6040516109129190613ba9565b60405180910390f35b34801561092757600080fd5b50610942600480360381019061093d9190613675565b611eb9565b005b34801561095057600080fd5b5061096b600480360381019061096691906134df565b611f52565b6040516109789190613ba9565b60405180910390f35b34801561098d57600080fd5b506109a860048036038101906109a3919061379f565b611fe6565b005b3480156109b657600080fd5b506109d160048036038101906109cc91906134b2565b612070565b005b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161480610a9e57507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b80610aae5750610aad82612168565b5b9050919050565b606060028054610ac490613ff4565b80601f0160208091040260200160405190810160405280929190818152602001828054610af090613ff4565b8015610b3d5780601f10610b1257610100808354040283529160200191610b3d565b820191906000526020600020905b815481529060010190602001808311610b2057829003601f168201915b5050505050905090565b6000610b52826121d2565b610b88576040517fcf4700e400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6006600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b6000610bce8261144c565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610c36576040517f943f7b8c00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16610c55612220565b73ffffffffffffffffffffffffffffffffffffffff1614158015610c875750610c8581610c80612220565b611f52565b155b15610cbe576040517fcfb3b94200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b610cc9838383612228565b505050565b60105481565b610cdc612220565b73ffffffffffffffffffffffffffffffffffffffff16610cfa611777565b73ffffffffffffffffffffffffffffffffffffffff1614610d50576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d4790613c61565b60405180910390fd5b80600e9080519060200190610d6692919061326e565b5050565b610d72612220565b73ffffffffffffffffffffffffffffffffffffffff16610d90611777565b73ffffffffffffffffffffffffffffffffffffffff1614610de6576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ddd90613c61565b60405180910390fd5b80601360006101000a81548160ff02191690831515021790555050565b6000610e0d6122da565b6001546000540303905090565b610e258383836122e3565b505050565b60095481565b600c8054610e3d90613ff4565b80601f0160208091040260200160405190810160405280929190818152602001828054610e6990613ff4565b8015610eb65780601f10610e8b57610100808354040283529160200191610eb6565b820191906000526020600020905b815481529060010190602001808311610e9957829003601f168201915b505050505081565b610ec6612220565b73ffffffffffffffffffffffffffffffffffffffff16610ee4611777565b73ffffffffffffffffffffffffffffffffffffffff1614610f3a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f3190613c61565b60405180910390fd5b6000610f44611777565b73ffffffffffffffffffffffffffffffffffffffff1647604051610f6790613b0b565b60006040518083038185875af1925050503d8060008114610fa4576040519150601f19603f3d011682016040523d82523d6000602084013e610fa9565b606091505b5050905080610fb757600080fd5b50565b610fd583838360405180602001604052806000815250611cbe565b505050565b60606000610fe783611475565b905060008167ffffffffffffffff8111156110055761100461418d565b5b6040519080825280602002602001820160405280156110335781602001602082028036833780820191505090505b50905060006110406122da565b90506000805b8482108015611056575060005483105b156111e1576000600460008581526020019081526020016000206040518060600160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815260200160008201601c9054906101000a900460ff161515151581525050905080604001516111cd57600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff161461116957806000015191505b8773ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156111cc57838584815181106111b1576111b061415e565b5b60200260200101818152505082806111c890614057565b9350505b5b83806111d890614057565b94505050611046565b8395505050505050919050565b6111f6612220565b73ffffffffffffffffffffffffffffffffffffffff16611214611777565b73ffffffffffffffffffffffffffffffffffffffff161461126a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161126190613c61565b60405180910390fd5b8060108190555050565b61127c612220565b73ffffffffffffffffffffffffffffffffffffffff1661129a611777565b73ffffffffffffffffffffffffffffffffffffffff16146112f0576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112e790613c61565b60405180910390fd5b80600f908051906020019061130692919061326e565b5050565b601360029054906101000a900460ff1681565b600e805461132a90613ff4565b80601f016020809104026020016040519081016040528092919081815260200182805461135690613ff4565b80156113a35780601f10611378576101008083540402835291602001916113a3565b820191906000526020600020905b81548152906001019060200180831161138657829003601f168201915b505050505081565b601360009054906101000a900460ff1681565b600d80546113cb90613ff4565b80601f01602080910402602001604051908101604052809291908181526020018280546113f790613ff4565b80156114445780601f1061141957610100808354040283529160200191611444565b820191906000526020600020905b81548152906001019060200180831161142757829003601f168201915b505050505081565b600061145782612799565b600001519050919050565b601360019054906101000a900460ff1681565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156114dd576040517f8f4eb60400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600560008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160009054906101000a900467ffffffffffffffff1667ffffffffffffffff169050919050565b61154d612220565b73ffffffffffffffffffffffffffffffffffffffff1661156b611777565b73ffffffffffffffffffffffffffffffffffffffff16146115c1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115b890613c61565b60405180910390fd5b6115cb6000612a28565b565b6115d5612220565b73ffffffffffffffffffffffffffffffffffffffff166115f3611777565b73ffffffffffffffffffffffffffffffffffffffff1614611649576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161164090613c61565b60405180910390fd5b8060098190555050565b61165b612220565b73ffffffffffffffffffffffffffffffffffffffff16611679611777565b73ffffffffffffffffffffffffffffffffffffffff16146116cf576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116c690613c61565b60405180910390fd5b80600d90805190602001906116e592919061326e565b5050565b600b80546116f690613ff4565b80601f016020809104026020016040519081016040528092919081815260200182805461172290613ff4565b801561176f5780601f106117445761010080835404028352916020019161176f565b820191906000526020600020905b81548152906001019060200180831161175257829003601f168201915b505050505081565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b60125481565b6060600380546117b690613ff4565b80601f01602080910402602001604051908101604052809291908181526020018280546117e290613ff4565b801561182f5780601f106118045761010080835404028352916020019161182f565b820191906000526020600020905b81548152906001019060200180831161181257829003601f168201915b5050505050905090565b8060008111801561184c57506012548111155b61188b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161188290613c41565b60405180910390fd5b60115481611897610e03565b6118a19190613e1f565b11156118e2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118d990613c01565b60405180910390fd5b81806010546118f19190613ea6565b341015611933576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161192a90613cc1565b60405180910390fd5b601360009054906101000a900460ff1615611983576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161197a90613c81565b60405180910390fd5b61199461198e612220565b84612aee565b505050565b6119a1612220565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611a06576040517fb06307db00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8060076000611a13612220565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff16611ac0612220565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c3183604051611b059190613ba9565b60405180910390a35050565b600f8054611b1e90613ff4565b80601f0160208091040260200160405190810160405280929190818152602001828054611b4a90613ff4565b8015611b975780601f10611b6c57610100808354040283529160200191611b97565b820191906000526020600020905b815481529060010190602001808311611b7a57829003601f168201915b505050505081565b611ba7612220565b73ffffffffffffffffffffffffffffffffffffffff16611bc5611777565b73ffffffffffffffffffffffffffffffffffffffff1614611c1b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c1290613c61565b60405180910390fd5b8060128190555050565b611c2d612220565b73ffffffffffffffffffffffffffffffffffffffff16611c4b611777565b73ffffffffffffffffffffffffffffffffffffffff1614611ca1576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c9890613c61565b60405180910390fd5b80601360016101000a81548160ff02191690831515021790555050565b611cc98484846122e3565b611ce88373ffffffffffffffffffffffffffffffffffffffff16612b0c565b8015611cfd5750611cfb84848484612b2f565b155b15611d34576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b50505050565b6060611d45826121d2565b611d84576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d7b90613ca1565b60405180910390fd5b60001515601360029054906101000a900460ff1615151415611e3257600f8054611dad90613ff4565b80601f0160208091040260200160405190810160405280929190818152602001828054611dd990613ff4565b8015611e265780601f10611dfb57610100808354040283529160200191611e26565b820191906000526020600020905b815481529060010190602001808311611e0957829003601f168201915b50505050509050611e8e565b6000611e3c612c8f565b90506000815111611e5c5760405180602001604052806000815250611e8a565b80611e6684612d21565b600e604051602001611e7a93929190613ada565b6040516020818303038152906040525b9150505b919050565b60115481565b600a6020528060005260406000206000915054906101000a900460ff1681565b611ec1612220565b73ffffffffffffffffffffffffffffffffffffffff16611edf611777565b73ffffffffffffffffffffffffffffffffffffffff1614611f35576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f2c90613c61565b60405180910390fd5b80601360026101000a81548160ff02191690831515021790555050565b6000600760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b611fee612220565b73ffffffffffffffffffffffffffffffffffffffff1661200c611777565b73ffffffffffffffffffffffffffffffffffffffff1614612062576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161205990613c61565b60405180910390fd5b61206c8183612aee565b5050565b612078612220565b73ffffffffffffffffffffffffffffffffffffffff16612096611777565b73ffffffffffffffffffffffffffffffffffffffff16146120ec576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016120e390613c61565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16141561215c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161215390613c21565b60405180910390fd5b61216581612a28565b50565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b6000816121dd6122da565b111580156121ec575060005482105b8015612219575060046000838152602001908152602001600020600001601c9054906101000a900460ff16155b9050919050565b600033905090565b826006600084815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b60006001905090565b60006122ee82612799565b90508373ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff1614612359576040517fa114810000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b60008473ffffffffffffffffffffffffffffffffffffffff1661237a612220565b73ffffffffffffffffffffffffffffffffffffffff1614806123a957506123a8856123a3612220565b611f52565b5b806123ee57506123b7612220565b73ffffffffffffffffffffffffffffffffffffffff166123d684610b47565b73ffffffffffffffffffffffffffffffffffffffff16145b905080612427576040517f59c896be00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff16141561248e576040517fea553b3400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b61249b8585856001612e82565b6124a760008487612228565b6001600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a900467ffffffffffffffff160392506101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055506001600560008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a900467ffffffffffffffff160192506101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055506000600460008581526020019081526020016000209050848160000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550428160000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff16021790555060006001850190506000600460008381526020019081526020016000209050600073ffffffffffffffffffffffffffffffffffffffff168160000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16141561272757600054821461272657878160000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555084602001518160000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055505b5b505050828473ffffffffffffffffffffffffffffffffffffffff168673ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a46127928585856001612e88565b5050505050565b6127a16132f4565b6000829050806127af6122da565b111580156127be575060005481105b156129f1576000600460008381526020019081526020016000206040518060600160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815260200160008201601c9054906101000a900460ff161515151581525050905080604001516129ef57600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff16146128d3578092505050612a23565b5b6001156129ee57818060019003925050600460008381526020019081526020016000206040518060600160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815260200160008201601c9054906101000a900460ff1615151515815250509050600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff16146129e9578092505050612a23565b6128d4565b5b505b6040517fdf2d9b4200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b919050565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b612b08828260405180602001604052806000815250612e8e565b5050565b6000808273ffffffffffffffffffffffffffffffffffffffff163b119050919050565b60008373ffffffffffffffffffffffffffffffffffffffff1663150b7a02612b55612220565b8786866040518563ffffffff1660e01b8152600401612b779493929190613b3b565b602060405180830381600087803b158015612b9157600080fd5b505af1925050508015612bc257506040513d601f19601f82011682018060405250810190612bbf91906136fc565b60015b612c3c573d8060008114612bf2576040519150601f19603f3d011682016040523d82523d6000602084013e612bf7565b606091505b50600081511415612c34576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050949350505050565b6060600d8054612c9e90613ff4565b80601f0160208091040260200160405190810160405280929190818152602001828054612cca90613ff4565b8015612d175780601f10612cec57610100808354040283529160200191612d17565b820191906000526020600020905b815481529060010190602001808311612cfa57829003601f168201915b5050505050905090565b60606000821415612d69576040518060400160405280600181526020017f30000000000000000000000000000000000000000000000000000000000000008152509050612e7d565b600082905060005b60008214612d9b578080612d8490614057565b915050600a82612d949190613e75565b9150612d71565b60008167ffffffffffffffff811115612db757612db661418d565b5b6040519080825280601f01601f191660200182016040528015612de95781602001600182028036833780820191505090505b5090505b60008514612e7657600182612e029190613f00565b9150600a85612e1191906140a0565b6030612e1d9190613e1f565b60f81b818381518110612e3357612e3261415e565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a85612e6f9190613e75565b9450612ded565b8093505050505b919050565b50505050565b50505050565b612e9b8383836001612ea0565b505050565b600080549050600073ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff161415612f0d576040517f2e07630000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6000841415612f48576040517fb562e8dd00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b612f556000868387612e82565b83600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a900467ffffffffffffffff160192506101000a81548167ffffffffffffffff021916908367ffffffffffffffff16021790555083600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160088282829054906101000a900467ffffffffffffffff160192506101000a81548167ffffffffffffffff021916908367ffffffffffffffff160217905550846004600083815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550426004600083815260200190815260200160002060000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff16021790555060008190506000858201905083801561311f575061311e8773ffffffffffffffffffffffffffffffffffffffff16612b0c565b5b156131e5575b818773ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a46131946000888480600101955088612b2f565b6131ca576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b808214156131255782600054146131e057600080fd5b613251565b5b818060010192508773ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4808214156131e6575b8160008190555050506132676000868387612e88565b5050505050565b82805461327a90613ff4565b90600052602060002090601f01602090048101928261329c57600085556132e3565b82601f106132b557805160ff19168380011785556132e3565b828001600101855582156132e3579182015b828111156132e25782518255916020019190600101906132c7565b5b5090506132f09190613337565b5090565b6040518060600160405280600073ffffffffffffffffffffffffffffffffffffffff168152602001600067ffffffffffffffff1681526020016000151581525090565b5b80821115613350576000816000905550600101613338565b5090565b600061336761336284613d21565b613cfc565b905082815260208101848484011115613383576133826141c1565b5b61338e848285613fb2565b509392505050565b60006133a96133a484613d52565b613cfc565b9050828152602081018484840111156133c5576133c46141c1565b5b6133d0848285613fb2565b509392505050565b6000813590506133e78161434f565b92915050565b6000813590506133fc81614366565b92915050565b6000813590506134118161437d565b92915050565b60008135905061342681614394565b92915050565b60008151905061343b81614394565b92915050565b600082601f830112613456576134556141bc565b5b8135613466848260208601613354565b91505092915050565b600082601f830112613484576134836141bc565b5b8135613494848260208601613396565b91505092915050565b6000813590506134ac816143ab565b92915050565b6000602082840312156134c8576134c76141cb565b5b60006134d6848285016133d8565b91505092915050565b600080604083850312156134f6576134f56141cb565b5b6000613504858286016133d8565b9250506020613515858286016133d8565b9150509250929050565b600080600060608486031215613538576135376141cb565b5b6000613546868287016133d8565b9350506020613557868287016133d8565b92505060406135688682870161349d565b9150509250925092565b6000806000806080858703121561358c5761358b6141cb565b5b600061359a878288016133d8565b94505060206135ab878288016133d8565b93505060406135bc8782880161349d565b925050606085013567ffffffffffffffff8111156135dd576135dc6141c6565b5b6135e987828801613441565b91505092959194509250565b6000806040838503121561360c5761360b6141cb565b5b600061361a858286016133d8565b925050602061362b858286016133ed565b9150509250929050565b6000806040838503121561364c5761364b6141cb565b5b600061365a858286016133d8565b925050602061366b8582860161349d565b9150509250929050565b60006020828403121561368b5761368a6141cb565b5b6000613699848285016133ed565b91505092915050565b6000602082840312156136b8576136b76141cb565b5b60006136c684828501613402565b91505092915050565b6000602082840312156136e5576136e46141cb565b5b60006136f384828501613417565b91505092915050565b600060208284031215613712576137116141cb565b5b60006137208482850161342c565b91505092915050565b60006020828403121561373f5761373e6141cb565b5b600082013567ffffffffffffffff81111561375d5761375c6141c6565b5b6137698482850161346f565b91505092915050565b600060208284031215613788576137876141cb565b5b60006137968482850161349d565b91505092915050565b600080604083850312156137b6576137b56141cb565b5b60006137c48582860161349d565b92505060206137d5858286016133d8565b9150509250929050565b60006137eb8383613abc565b60208301905092915050565b61380081613f34565b82525050565b600061381182613da8565b61381b8185613dd6565b935061382683613d83565b8060005b8381101561385757815161383e88826137df565b975061384983613dc9565b92505060018101905061382a565b5085935050505092915050565b61386d81613f46565b82525050565b61387c81613f52565b82525050565b600061388d82613db3565b6138978185613de7565b93506138a7818560208601613fc1565b6138b0816141d0565b840191505092915050565b60006138c682613dbe565b6138d08185613e03565b93506138e0818560208601613fc1565b6138e9816141d0565b840191505092915050565b60006138ff82613dbe565b6139098185613e14565b9350613919818560208601613fc1565b80840191505092915050565b6000815461393281613ff4565b61393c8186613e14565b9450600182166000811461395757600181146139685761399b565b60ff1983168652818601935061399b565b61397185613d93565b60005b8381101561399357815481890152600182019150602081019050613974565b838801955050505b50505092915050565b60006139b1600e83613e03565b91506139bc826141e1565b602082019050919050565b60006139d4602683613e03565b91506139df8261420a565b604082019050919050565b60006139f7601483613e03565b9150613a0282614259565b602082019050919050565b6000613a1a602083613e03565b9150613a2582614282565b602082019050919050565b6000613a3d601783613e03565b9150613a48826142ab565b602082019050919050565b6000613a60602f83613e03565b9150613a6b826142d4565b604082019050919050565b6000613a83601d83613e03565b9150613a8e82614323565b602082019050919050565b6000613aa6600083613df8565b9150613ab18261434c565b600082019050919050565b613ac581613fa8565b82525050565b613ad481613fa8565b82525050565b6000613ae682866138f4565b9150613af282856138f4565b9150613afe8284613925565b9150819050949350505050565b6000613b1682613a99565b9150819050919050565b6000602082019050613b3560008301846137f7565b92915050565b6000608082019050613b5060008301876137f7565b613b5d60208301866137f7565b613b6a6040830185613acb565b8181036060830152613b7c8184613882565b905095945050505050565b60006020820190508181036000830152613ba18184613806565b905092915050565b6000602082019050613bbe6000830184613864565b92915050565b6000602082019050613bd96000830184613873565b92915050565b60006020820190508181036000830152613bf981846138bb565b905092915050565b60006020820190508181036000830152613c1a816139a4565b9050919050565b60006020820190508181036000830152613c3a816139c7565b9050919050565b60006020820190508181036000830152613c5a816139ea565b9050919050565b60006020820190508181036000830152613c7a81613a0d565b9050919050565b60006020820190508181036000830152613c9a81613a30565b9050919050565b60006020820190508181036000830152613cba81613a53565b9050919050565b60006020820190508181036000830152613cda81613a76565b9050919050565b6000602082019050613cf66000830184613acb565b92915050565b6000613d06613d17565b9050613d128282614026565b919050565b6000604051905090565b600067ffffffffffffffff821115613d3c57613d3b61418d565b5b613d45826141d0565b9050602081019050919050565b600067ffffffffffffffff821115613d6d57613d6c61418d565b5b613d76826141d0565b9050602081019050919050565b6000819050602082019050919050565b60008190508160005260206000209050919050565b600081519050919050565b600081519050919050565b600081519050919050565b6000602082019050919050565b600082825260208201905092915050565b600082825260208201905092915050565b600081905092915050565b600082825260208201905092915050565b600081905092915050565b6000613e2a82613fa8565b9150613e3583613fa8565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115613e6a57613e696140d1565b5b828201905092915050565b6000613e8082613fa8565b9150613e8b83613fa8565b925082613e9b57613e9a614100565b5b828204905092915050565b6000613eb182613fa8565b9150613ebc83613fa8565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0483118215151615613ef557613ef46140d1565b5b828202905092915050565b6000613f0b82613fa8565b9150613f1683613fa8565b925082821015613f2957613f286140d1565b5b828203905092915050565b6000613f3f82613f88565b9050919050565b60008115159050919050565b6000819050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b82818337600083830152505050565b60005b83811015613fdf578082015181840152602081019050613fc4565b83811115613fee576000848401525b50505050565b6000600282049050600182168061400c57607f821691505b602082108114156140205761401f61412f565b5b50919050565b61402f826141d0565b810181811067ffffffffffffffff8211171561404e5761404d61418d565b5b80604052505050565b600061406282613fa8565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff821415614095576140946140d1565b5b600182019050919050565b60006140ab82613fa8565b91506140b683613fa8565b9250826140c6576140c5614100565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b7f536f6c64206f7574206672656e2e000000000000000000000000000000000000600082015250565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f496e76616c6964206d696e7420616d6f756e7421000000000000000000000000600082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f54686520636f6e74726163742069732070617573656421000000000000000000600082015250565b7f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008201527f6e6578697374656e7420746f6b656e0000000000000000000000000000000000602082015250565b7f596f7520646f6e74206861766520656e6f75676820746f206d696e742e000000600082015250565b50565b61435881613f34565b811461436357600080fd5b50565b61436f81613f46565b811461437a57600080fd5b50565b61438681613f52565b811461439157600080fd5b50565b61439d81613f5c565b81146143a857600080fd5b50565b6143b481613fa8565b81146143bf57600080fd5b5056fea2646970667358221220a635fbc6eb596b14c0703d2281bd353c403e1603f2845b5a9eef7ef92b05a2d864736f6c6343000807003300000000000000000000000000000000000000000000000000000000000000c00000000000000000000000000000000000000000000000000000000000000100000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000003e7000000000000000000000000000000000000000000000000000000000000000100000000000000000000000000000000000000000000000000000000000001400000000000000000000000000000000000000000000000000000000000000003434e4d00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000003434e4d00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000035697066733a2f2f516d644a5856685a7279744d45705339796943616f6e70647139654755463474476e6561727556503467546d687a0000000000000000000000

Deployed Bytecode

0x60806040526004361061025c5760003560e01c80636caede3d11610144578063a45ba8e7116100b6578063d5abeb011161007a578063d5abeb01146108b3578063db4bec44146108de578063e0a808531461091b578063e985e9c514610944578063efbd73f414610981578063f2fde38b146109aa5761025c565b8063a45ba8e7146107d0578063b071401b146107fb578063b767a09814610824578063b88d4fde1461084d578063c87b56dd146108765761025c565b80638d859f3e116101085780638d859f3e146106df5780638da5cb5b1461070a57806394354fd01461073557806395d89b4114610760578063a0712d681461078b578063a22cb465146107a75761025c565b80636caede3d1461060e57806370a0823114610639578063715018a6146106765780637cb647591461068d5780637ec4a659146106b65761025c565b806332cb6b0c116101dd5780634fdd43cb116101a15780634fdd43cb146104fc57806351830227146105255780635503a0e8146105505780635c975abb1461057b57806362b99ad4146105a65780636352211e146105d15761025c565b806332cb6b0c1461042b5780633ccfd60b1461045657806342842e0e1461046d578063438b63001461049657806344a0d68a146104d35761025c565b806316ba10e01161022457806316ba10e01461035a57806316c38b3c1461038357806318160ddd146103ac57806323b872dd146103d75780632eb4a7ab146104005761025c565b806301ffc9a71461026157806306fdde031461029e578063081812fc146102c9578063095ea7b31461030657806313faede61461032f575b600080fd5b34801561026d57600080fd5b50610288600480360381019061028391906136cf565b6109d3565b6040516102959190613ba9565b60405180910390f35b3480156102aa57600080fd5b506102b3610ab5565b6040516102c09190613bdf565b60405180910390f35b3480156102d557600080fd5b506102f060048036038101906102eb9190613772565b610b47565b6040516102fd9190613b20565b60405180910390f35b34801561031257600080fd5b5061032d60048036038101906103289190613635565b610bc3565b005b34801561033b57600080fd5b50610344610cce565b6040516103519190613ce1565b60405180910390f35b34801561036657600080fd5b50610381600480360381019061037c9190613729565b610cd4565b005b34801561038f57600080fd5b506103aa60048036038101906103a59190613675565b610d6a565b005b3480156103b857600080fd5b506103c1610e03565b6040516103ce9190613ce1565b60405180910390f35b3480156103e357600080fd5b506103fe60048036038101906103f9919061351f565b610e1a565b005b34801561040c57600080fd5b50610415610e2a565b6040516104229190613bc4565b60405180910390f35b34801561043757600080fd5b50610440610e30565b60405161044d9190613bdf565b60405180910390f35b34801561046257600080fd5b5061046b610ebe565b005b34801561047957600080fd5b50610494600480360381019061048f919061351f565b610fba565b005b3480156104a257600080fd5b506104bd60048036038101906104b891906134b2565b610fda565b6040516104ca9190613b87565b60405180910390f35b3480156104df57600080fd5b506104fa60048036038101906104f59190613772565b6111ee565b005b34801561050857600080fd5b50610523600480360381019061051e9190613729565b611274565b005b34801561053157600080fd5b5061053a61130a565b6040516105479190613ba9565b60405180910390f35b34801561055c57600080fd5b5061056561131d565b6040516105729190613bdf565b60405180910390f35b34801561058757600080fd5b506105906113ab565b60405161059d9190613ba9565b60405180910390f35b3480156105b257600080fd5b506105bb6113be565b6040516105c89190613bdf565b60405180910390f35b3480156105dd57600080fd5b506105f860048036038101906105f39190613772565b61144c565b6040516106059190613b20565b60405180910390f35b34801561061a57600080fd5b50610623611462565b6040516106309190613ba9565b60405180910390f35b34801561064557600080fd5b50610660600480360381019061065b91906134b2565b611475565b60405161066d9190613ce1565b60405180910390f35b34801561068257600080fd5b5061068b611545565b005b34801561069957600080fd5b506106b460048036038101906106af91906136a2565b6115cd565b005b3480156106c257600080fd5b506106dd60048036038101906106d89190613729565b611653565b005b3480156106eb57600080fd5b506106f46116e9565b6040516107019190613bdf565b60405180910390f35b34801561071657600080fd5b5061071f611777565b60405161072c9190613b20565b60405180910390f35b34801561074157600080fd5b5061074a6117a1565b6040516107579190613ce1565b60405180910390f35b34801561076c57600080fd5b506107756117a7565b6040516107829190613bdf565b60405180910390f35b6107a560048036038101906107a09190613772565b611839565b005b3480156107b357600080fd5b506107ce60048036038101906107c991906135f5565b611999565b005b3480156107dc57600080fd5b506107e5611b11565b6040516107f29190613bdf565b60405180910390f35b34801561080757600080fd5b50610822600480360381019061081d9190613772565b611b9f565b005b34801561083057600080fd5b5061084b60048036038101906108469190613675565b611c25565b005b34801561085957600080fd5b50610874600480360381019061086f9190613572565b611cbe565b005b34801561088257600080fd5b5061089d60048036038101906108989190613772565b611d3a565b6040516108aa9190613bdf565b60405180910390f35b3480156108bf57600080fd5b506108c8611e93565b6040516108d59190613ce1565b60405180910390f35b3480156108ea57600080fd5b50610905600480360381019061090091906134b2565b611e99565b6040516109129190613ba9565b60405180910390f35b34801561092757600080fd5b50610942600480360381019061093d9190613675565b611eb9565b005b34801561095057600080fd5b5061096b600480360381019061096691906134df565b611f52565b6040516109789190613ba9565b60405180910390f35b34801561098d57600080fd5b506109a860048036038101906109a3919061379f565b611fe6565b005b3480156109b657600080fd5b506109d160048036038101906109cc91906134b2565b612070565b005b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161480610a9e57507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b80610aae5750610aad82612168565b5b9050919050565b606060028054610ac490613ff4565b80601f0160208091040260200160405190810160405280929190818152602001828054610af090613ff4565b8015610b3d5780601f10610b1257610100808354040283529160200191610b3d565b820191906000526020600020905b815481529060010190602001808311610b2057829003601f168201915b5050505050905090565b6000610b52826121d2565b610b88576040517fcf4700e400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6006600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b6000610bce8261144c565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610c36576040517f943f7b8c00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16610c55612220565b73ffffffffffffffffffffffffffffffffffffffff1614158015610c875750610c8581610c80612220565b611f52565b155b15610cbe576040517fcfb3b94200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b610cc9838383612228565b505050565b60105481565b610cdc612220565b73ffffffffffffffffffffffffffffffffffffffff16610cfa611777565b73ffffffffffffffffffffffffffffffffffffffff1614610d50576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d4790613c61565b60405180910390fd5b80600e9080519060200190610d6692919061326e565b5050565b610d72612220565b73ffffffffffffffffffffffffffffffffffffffff16610d90611777565b73ffffffffffffffffffffffffffffffffffffffff1614610de6576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ddd90613c61565b60405180910390fd5b80601360006101000a81548160ff02191690831515021790555050565b6000610e0d6122da565b6001546000540303905090565b610e258383836122e3565b505050565b60095481565b600c8054610e3d90613ff4565b80601f0160208091040260200160405190810160405280929190818152602001828054610e6990613ff4565b8015610eb65780601f10610e8b57610100808354040283529160200191610eb6565b820191906000526020600020905b815481529060010190602001808311610e9957829003601f168201915b505050505081565b610ec6612220565b73ffffffffffffffffffffffffffffffffffffffff16610ee4611777565b73ffffffffffffffffffffffffffffffffffffffff1614610f3a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f3190613c61565b60405180910390fd5b6000610f44611777565b73ffffffffffffffffffffffffffffffffffffffff1647604051610f6790613b0b565b60006040518083038185875af1925050503d8060008114610fa4576040519150601f19603f3d011682016040523d82523d6000602084013e610fa9565b606091505b5050905080610fb757600080fd5b50565b610fd583838360405180602001604052806000815250611cbe565b505050565b60606000610fe783611475565b905060008167ffffffffffffffff8111156110055761100461418d565b5b6040519080825280602002602001820160405280156110335781602001602082028036833780820191505090505b50905060006110406122da565b90506000805b8482108015611056575060005483105b156111e1576000600460008581526020019081526020016000206040518060600160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815260200160008201601c9054906101000a900460ff161515151581525050905080604001516111cd57600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff161461116957806000015191505b8773ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156111cc57838584815181106111b1576111b061415e565b5b60200260200101818152505082806111c890614057565b9350505b5b83806111d890614057565b94505050611046565b8395505050505050919050565b6111f6612220565b73ffffffffffffffffffffffffffffffffffffffff16611214611777565b73ffffffffffffffffffffffffffffffffffffffff161461126a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161126190613c61565b60405180910390fd5b8060108190555050565b61127c612220565b73ffffffffffffffffffffffffffffffffffffffff1661129a611777565b73ffffffffffffffffffffffffffffffffffffffff16146112f0576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112e790613c61565b60405180910390fd5b80600f908051906020019061130692919061326e565b5050565b601360029054906101000a900460ff1681565b600e805461132a90613ff4565b80601f016020809104026020016040519081016040528092919081815260200182805461135690613ff4565b80156113a35780601f10611378576101008083540402835291602001916113a3565b820191906000526020600020905b81548152906001019060200180831161138657829003601f168201915b505050505081565b601360009054906101000a900460ff1681565b600d80546113cb90613ff4565b80601f01602080910402602001604051908101604052809291908181526020018280546113f790613ff4565b80156114445780601f1061141957610100808354040283529160200191611444565b820191906000526020600020905b81548152906001019060200180831161142757829003601f168201915b505050505081565b600061145782612799565b600001519050919050565b601360019054906101000a900460ff1681565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156114dd576040517f8f4eb60400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600560008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160009054906101000a900467ffffffffffffffff1667ffffffffffffffff169050919050565b61154d612220565b73ffffffffffffffffffffffffffffffffffffffff1661156b611777565b73ffffffffffffffffffffffffffffffffffffffff16146115c1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115b890613c61565b60405180910390fd5b6115cb6000612a28565b565b6115d5612220565b73ffffffffffffffffffffffffffffffffffffffff166115f3611777565b73ffffffffffffffffffffffffffffffffffffffff1614611649576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161164090613c61565b60405180910390fd5b8060098190555050565b61165b612220565b73ffffffffffffffffffffffffffffffffffffffff16611679611777565b73ffffffffffffffffffffffffffffffffffffffff16146116cf576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116c690613c61565b60405180910390fd5b80600d90805190602001906116e592919061326e565b5050565b600b80546116f690613ff4565b80601f016020809104026020016040519081016040528092919081815260200182805461172290613ff4565b801561176f5780601f106117445761010080835404028352916020019161176f565b820191906000526020600020905b81548152906001019060200180831161175257829003601f168201915b505050505081565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b60125481565b6060600380546117b690613ff4565b80601f01602080910402602001604051908101604052809291908181526020018280546117e290613ff4565b801561182f5780601f106118045761010080835404028352916020019161182f565b820191906000526020600020905b81548152906001019060200180831161181257829003601f168201915b5050505050905090565b8060008111801561184c57506012548111155b61188b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161188290613c41565b60405180910390fd5b60115481611897610e03565b6118a19190613e1f565b11156118e2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118d990613c01565b60405180910390fd5b81806010546118f19190613ea6565b341015611933576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161192a90613cc1565b60405180910390fd5b601360009054906101000a900460ff1615611983576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161197a90613c81565b60405180910390fd5b61199461198e612220565b84612aee565b505050565b6119a1612220565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611a06576040517fb06307db00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8060076000611a13612220565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff16611ac0612220565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c3183604051611b059190613ba9565b60405180910390a35050565b600f8054611b1e90613ff4565b80601f0160208091040260200160405190810160405280929190818152602001828054611b4a90613ff4565b8015611b975780601f10611b6c57610100808354040283529160200191611b97565b820191906000526020600020905b815481529060010190602001808311611b7a57829003601f168201915b505050505081565b611ba7612220565b73ffffffffffffffffffffffffffffffffffffffff16611bc5611777565b73ffffffffffffffffffffffffffffffffffffffff1614611c1b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c1290613c61565b60405180910390fd5b8060128190555050565b611c2d612220565b73ffffffffffffffffffffffffffffffffffffffff16611c4b611777565b73ffffffffffffffffffffffffffffffffffffffff1614611ca1576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c9890613c61565b60405180910390fd5b80601360016101000a81548160ff02191690831515021790555050565b611cc98484846122e3565b611ce88373ffffffffffffffffffffffffffffffffffffffff16612b0c565b8015611cfd5750611cfb84848484612b2f565b155b15611d34576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b50505050565b6060611d45826121d2565b611d84576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d7b90613ca1565b60405180910390fd5b60001515601360029054906101000a900460ff1615151415611e3257600f8054611dad90613ff4565b80601f0160208091040260200160405190810160405280929190818152602001828054611dd990613ff4565b8015611e265780601f10611dfb57610100808354040283529160200191611e26565b820191906000526020600020905b815481529060010190602001808311611e0957829003601f168201915b50505050509050611e8e565b6000611e3c612c8f565b90506000815111611e5c5760405180602001604052806000815250611e8a565b80611e6684612d21565b600e604051602001611e7a93929190613ada565b6040516020818303038152906040525b9150505b919050565b60115481565b600a6020528060005260406000206000915054906101000a900460ff1681565b611ec1612220565b73ffffffffffffffffffffffffffffffffffffffff16611edf611777565b73ffffffffffffffffffffffffffffffffffffffff1614611f35576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f2c90613c61565b60405180910390fd5b80601360026101000a81548160ff02191690831515021790555050565b6000600760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b611fee612220565b73ffffffffffffffffffffffffffffffffffffffff1661200c611777565b73ffffffffffffffffffffffffffffffffffffffff1614612062576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161205990613c61565b60405180910390fd5b61206c8183612aee565b5050565b612078612220565b73ffffffffffffffffffffffffffffffffffffffff16612096611777565b73ffffffffffffffffffffffffffffffffffffffff16146120ec576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016120e390613c61565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16141561215c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161215390613c21565b60405180910390fd5b61216581612a28565b50565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b6000816121dd6122da565b111580156121ec575060005482105b8015612219575060046000838152602001908152602001600020600001601c9054906101000a900460ff16155b9050919050565b600033905090565b826006600084815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b60006001905090565b60006122ee82612799565b90508373ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff1614612359576040517fa114810000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b60008473ffffffffffffffffffffffffffffffffffffffff1661237a612220565b73ffffffffffffffffffffffffffffffffffffffff1614806123a957506123a8856123a3612220565b611f52565b5b806123ee57506123b7612220565b73ffffffffffffffffffffffffffffffffffffffff166123d684610b47565b73ffffffffffffffffffffffffffffffffffffffff16145b905080612427576040517f59c896be00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff16141561248e576040517fea553b3400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b61249b8585856001612e82565b6124a760008487612228565b6001600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a900467ffffffffffffffff160392506101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055506001600560008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a900467ffffffffffffffff160192506101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055506000600460008581526020019081526020016000209050848160000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550428160000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff16021790555060006001850190506000600460008381526020019081526020016000209050600073ffffffffffffffffffffffffffffffffffffffff168160000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16141561272757600054821461272657878160000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555084602001518160000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055505b5b505050828473ffffffffffffffffffffffffffffffffffffffff168673ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a46127928585856001612e88565b5050505050565b6127a16132f4565b6000829050806127af6122da565b111580156127be575060005481105b156129f1576000600460008381526020019081526020016000206040518060600160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815260200160008201601c9054906101000a900460ff161515151581525050905080604001516129ef57600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff16146128d3578092505050612a23565b5b6001156129ee57818060019003925050600460008381526020019081526020016000206040518060600160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815260200160008201601c9054906101000a900460ff1615151515815250509050600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff16146129e9578092505050612a23565b6128d4565b5b505b6040517fdf2d9b4200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b919050565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b612b08828260405180602001604052806000815250612e8e565b5050565b6000808273ffffffffffffffffffffffffffffffffffffffff163b119050919050565b60008373ffffffffffffffffffffffffffffffffffffffff1663150b7a02612b55612220565b8786866040518563ffffffff1660e01b8152600401612b779493929190613b3b565b602060405180830381600087803b158015612b9157600080fd5b505af1925050508015612bc257506040513d601f19601f82011682018060405250810190612bbf91906136fc565b60015b612c3c573d8060008114612bf2576040519150601f19603f3d011682016040523d82523d6000602084013e612bf7565b606091505b50600081511415612c34576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050949350505050565b6060600d8054612c9e90613ff4565b80601f0160208091040260200160405190810160405280929190818152602001828054612cca90613ff4565b8015612d175780601f10612cec57610100808354040283529160200191612d17565b820191906000526020600020905b815481529060010190602001808311612cfa57829003601f168201915b5050505050905090565b60606000821415612d69576040518060400160405280600181526020017f30000000000000000000000000000000000000000000000000000000000000008152509050612e7d565b600082905060005b60008214612d9b578080612d8490614057565b915050600a82612d949190613e75565b9150612d71565b60008167ffffffffffffffff811115612db757612db661418d565b5b6040519080825280601f01601f191660200182016040528015612de95781602001600182028036833780820191505090505b5090505b60008514612e7657600182612e029190613f00565b9150600a85612e1191906140a0565b6030612e1d9190613e1f565b60f81b818381518110612e3357612e3261415e565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a85612e6f9190613e75565b9450612ded565b8093505050505b919050565b50505050565b50505050565b612e9b8383836001612ea0565b505050565b600080549050600073ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff161415612f0d576040517f2e07630000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6000841415612f48576040517fb562e8dd00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b612f556000868387612e82565b83600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a900467ffffffffffffffff160192506101000a81548167ffffffffffffffff021916908367ffffffffffffffff16021790555083600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160088282829054906101000a900467ffffffffffffffff160192506101000a81548167ffffffffffffffff021916908367ffffffffffffffff160217905550846004600083815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550426004600083815260200190815260200160002060000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff16021790555060008190506000858201905083801561311f575061311e8773ffffffffffffffffffffffffffffffffffffffff16612b0c565b5b156131e5575b818773ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a46131946000888480600101955088612b2f565b6131ca576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b808214156131255782600054146131e057600080fd5b613251565b5b818060010192508773ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4808214156131e6575b8160008190555050506132676000868387612e88565b5050505050565b82805461327a90613ff4565b90600052602060002090601f01602090048101928261329c57600085556132e3565b82601f106132b557805160ff19168380011785556132e3565b828001600101855582156132e3579182015b828111156132e25782518255916020019190600101906132c7565b5b5090506132f09190613337565b5090565b6040518060600160405280600073ffffffffffffffffffffffffffffffffffffffff168152602001600067ffffffffffffffff1681526020016000151581525090565b5b80821115613350576000816000905550600101613338565b5090565b600061336761336284613d21565b613cfc565b905082815260208101848484011115613383576133826141c1565b5b61338e848285613fb2565b509392505050565b60006133a96133a484613d52565b613cfc565b9050828152602081018484840111156133c5576133c46141c1565b5b6133d0848285613fb2565b509392505050565b6000813590506133e78161434f565b92915050565b6000813590506133fc81614366565b92915050565b6000813590506134118161437d565b92915050565b60008135905061342681614394565b92915050565b60008151905061343b81614394565b92915050565b600082601f830112613456576134556141bc565b5b8135613466848260208601613354565b91505092915050565b600082601f830112613484576134836141bc565b5b8135613494848260208601613396565b91505092915050565b6000813590506134ac816143ab565b92915050565b6000602082840312156134c8576134c76141cb565b5b60006134d6848285016133d8565b91505092915050565b600080604083850312156134f6576134f56141cb565b5b6000613504858286016133d8565b9250506020613515858286016133d8565b9150509250929050565b600080600060608486031215613538576135376141cb565b5b6000613546868287016133d8565b9350506020613557868287016133d8565b92505060406135688682870161349d565b9150509250925092565b6000806000806080858703121561358c5761358b6141cb565b5b600061359a878288016133d8565b94505060206135ab878288016133d8565b93505060406135bc8782880161349d565b925050606085013567ffffffffffffffff8111156135dd576135dc6141c6565b5b6135e987828801613441565b91505092959194509250565b6000806040838503121561360c5761360b6141cb565b5b600061361a858286016133d8565b925050602061362b858286016133ed565b9150509250929050565b6000806040838503121561364c5761364b6141cb565b5b600061365a858286016133d8565b925050602061366b8582860161349d565b9150509250929050565b60006020828403121561368b5761368a6141cb565b5b6000613699848285016133ed565b91505092915050565b6000602082840312156136b8576136b76141cb565b5b60006136c684828501613402565b91505092915050565b6000602082840312156136e5576136e46141cb565b5b60006136f384828501613417565b91505092915050565b600060208284031215613712576137116141cb565b5b60006137208482850161342c565b91505092915050565b60006020828403121561373f5761373e6141cb565b5b600082013567ffffffffffffffff81111561375d5761375c6141c6565b5b6137698482850161346f565b91505092915050565b600060208284031215613788576137876141cb565b5b60006137968482850161349d565b91505092915050565b600080604083850312156137b6576137b56141cb565b5b60006137c48582860161349d565b92505060206137d5858286016133d8565b9150509250929050565b60006137eb8383613abc565b60208301905092915050565b61380081613f34565b82525050565b600061381182613da8565b61381b8185613dd6565b935061382683613d83565b8060005b8381101561385757815161383e88826137df565b975061384983613dc9565b92505060018101905061382a565b5085935050505092915050565b61386d81613f46565b82525050565b61387c81613f52565b82525050565b600061388d82613db3565b6138978185613de7565b93506138a7818560208601613fc1565b6138b0816141d0565b840191505092915050565b60006138c682613dbe565b6138d08185613e03565b93506138e0818560208601613fc1565b6138e9816141d0565b840191505092915050565b60006138ff82613dbe565b6139098185613e14565b9350613919818560208601613fc1565b80840191505092915050565b6000815461393281613ff4565b61393c8186613e14565b9450600182166000811461395757600181146139685761399b565b60ff1983168652818601935061399b565b61397185613d93565b60005b8381101561399357815481890152600182019150602081019050613974565b838801955050505b50505092915050565b60006139b1600e83613e03565b91506139bc826141e1565b602082019050919050565b60006139d4602683613e03565b91506139df8261420a565b604082019050919050565b60006139f7601483613e03565b9150613a0282614259565b602082019050919050565b6000613a1a602083613e03565b9150613a2582614282565b602082019050919050565b6000613a3d601783613e03565b9150613a48826142ab565b602082019050919050565b6000613a60602f83613e03565b9150613a6b826142d4565b604082019050919050565b6000613a83601d83613e03565b9150613a8e82614323565b602082019050919050565b6000613aa6600083613df8565b9150613ab18261434c565b600082019050919050565b613ac581613fa8565b82525050565b613ad481613fa8565b82525050565b6000613ae682866138f4565b9150613af282856138f4565b9150613afe8284613925565b9150819050949350505050565b6000613b1682613a99565b9150819050919050565b6000602082019050613b3560008301846137f7565b92915050565b6000608082019050613b5060008301876137f7565b613b5d60208301866137f7565b613b6a6040830185613acb565b8181036060830152613b7c8184613882565b905095945050505050565b60006020820190508181036000830152613ba18184613806565b905092915050565b6000602082019050613bbe6000830184613864565b92915050565b6000602082019050613bd96000830184613873565b92915050565b60006020820190508181036000830152613bf981846138bb565b905092915050565b60006020820190508181036000830152613c1a816139a4565b9050919050565b60006020820190508181036000830152613c3a816139c7565b9050919050565b60006020820190508181036000830152613c5a816139ea565b9050919050565b60006020820190508181036000830152613c7a81613a0d565b9050919050565b60006020820190508181036000830152613c9a81613a30565b9050919050565b60006020820190508181036000830152613cba81613a53565b9050919050565b60006020820190508181036000830152613cda81613a76565b9050919050565b6000602082019050613cf66000830184613acb565b92915050565b6000613d06613d17565b9050613d128282614026565b919050565b6000604051905090565b600067ffffffffffffffff821115613d3c57613d3b61418d565b5b613d45826141d0565b9050602081019050919050565b600067ffffffffffffffff821115613d6d57613d6c61418d565b5b613d76826141d0565b9050602081019050919050565b6000819050602082019050919050565b60008190508160005260206000209050919050565b600081519050919050565b600081519050919050565b600081519050919050565b6000602082019050919050565b600082825260208201905092915050565b600082825260208201905092915050565b600081905092915050565b600082825260208201905092915050565b600081905092915050565b6000613e2a82613fa8565b9150613e3583613fa8565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115613e6a57613e696140d1565b5b828201905092915050565b6000613e8082613fa8565b9150613e8b83613fa8565b925082613e9b57613e9a614100565b5b828204905092915050565b6000613eb182613fa8565b9150613ebc83613fa8565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0483118215151615613ef557613ef46140d1565b5b828202905092915050565b6000613f0b82613fa8565b9150613f1683613fa8565b925082821015613f2957613f286140d1565b5b828203905092915050565b6000613f3f82613f88565b9050919050565b60008115159050919050565b6000819050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b82818337600083830152505050565b60005b83811015613fdf578082015181840152602081019050613fc4565b83811115613fee576000848401525b50505050565b6000600282049050600182168061400c57607f821691505b602082108114156140205761401f61412f565b5b50919050565b61402f826141d0565b810181811067ffffffffffffffff8211171561404e5761404d61418d565b5b80604052505050565b600061406282613fa8565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff821415614095576140946140d1565b5b600182019050919050565b60006140ab82613fa8565b91506140b683613fa8565b9250826140c6576140c5614100565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b7f536f6c64206f7574206672656e2e000000000000000000000000000000000000600082015250565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f496e76616c6964206d696e7420616d6f756e7421000000000000000000000000600082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f54686520636f6e74726163742069732070617573656421000000000000000000600082015250565b7f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008201527f6e6578697374656e7420746f6b656e0000000000000000000000000000000000602082015250565b7f596f7520646f6e74206861766520656e6f75676820746f206d696e742e000000600082015250565b50565b61435881613f34565b811461436357600080fd5b50565b61436f81613f46565b811461437a57600080fd5b50565b61438681613f52565b811461439157600080fd5b50565b61439d81613f5c565b81146143a857600080fd5b50565b6143b481613fa8565b81146143bf57600080fd5b5056fea2646970667358221220a635fbc6eb596b14c0703d2281bd353c403e1603f2845b5a9eef7ef92b05a2d864736f6c63430008070033

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

00000000000000000000000000000000000000000000000000000000000000c00000000000000000000000000000000000000000000000000000000000000100000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000003e7000000000000000000000000000000000000000000000000000000000000000100000000000000000000000000000000000000000000000000000000000001400000000000000000000000000000000000000000000000000000000000000003434e4d00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000003434e4d00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000035697066733a2f2f516d644a5856685a7279744d45705339796943616f6e70647139654755463474476e6561727556503467546d687a0000000000000000000000

-----Decoded View---------------
Arg [0] : _tokenName (string): CNM
Arg [1] : _tokenSymbol (string): CNM
Arg [2] : _cost (uint256): 0
Arg [3] : _maxSupply (uint256): 999
Arg [4] : _maxMintAmountPerTx (uint256): 1
Arg [5] : _hiddenMetadataUri (string): ipfs://QmdJXVhZrytMEpS9yiCaonpdq9eGUF4tGnearuVP4gTmhz

-----Encoded View---------------
13 Constructor Arguments found :
Arg [0] : 00000000000000000000000000000000000000000000000000000000000000c0
Arg [1] : 0000000000000000000000000000000000000000000000000000000000000100
Arg [2] : 0000000000000000000000000000000000000000000000000000000000000000
Arg [3] : 00000000000000000000000000000000000000000000000000000000000003e7
Arg [4] : 0000000000000000000000000000000000000000000000000000000000000001
Arg [5] : 0000000000000000000000000000000000000000000000000000000000000140
Arg [6] : 0000000000000000000000000000000000000000000000000000000000000003
Arg [7] : 434e4d0000000000000000000000000000000000000000000000000000000000
Arg [8] : 0000000000000000000000000000000000000000000000000000000000000003
Arg [9] : 434e4d0000000000000000000000000000000000000000000000000000000000
Arg [10] : 0000000000000000000000000000000000000000000000000000000000000035
Arg [11] : 697066733a2f2f516d644a5856685a7279744d45705339796943616f6e706471
Arg [12] : 39654755463474476e6561727556503467546d687a0000000000000000000000


Deployed Bytecode Sourcemap

44182:4602:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;24512:305;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;27625:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;29128:204;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;28691:371;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;44539:19;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;47805:100;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;47911:77;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;23761:303;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;29993:170;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;44264:25;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;44385:32;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;48209:462;;;;;;;;;;;;;:::i;:::-;;30234:185;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;45867:833;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;47345:74;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;47561:132;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;44707:28;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;44459:33;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;44632:25;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;44424:28;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;27433:125;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;44662:40;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;24881:206;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;43334:103;;;;;;;;;;;;;:::i;:::-;;47994:98;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;47699:100;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;44349:29;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;42682:87;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;44592:33;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;27794:104;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;45514:212;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;29404:287;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;44499:31;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;47425:130;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;48098:105;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;30490:369;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;46807:445;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;44563:24;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;44294:48;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;47258:81;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;29762:164;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;45734:127;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;43592:201;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;24512:305;24614:4;24666:25;24651:40;;;:11;:40;;;;:105;;;;24723:33;24708:48;;;:11;:48;;;;24651:105;:158;;;;24773:36;24797:11;24773:23;:36::i;:::-;24651:158;24631:178;;24512:305;;;:::o;27625:100::-;27679:13;27712:5;27705:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;27625:100;:::o;29128:204::-;29196:7;29221:16;29229:7;29221;:16::i;:::-;29216:64;;29246:34;;;;;;;;;;;;;;29216:64;29300:15;:24;29316:7;29300:24;;;;;;;;;;;;;;;;;;;;;29293:31;;29128:204;;;:::o;28691:371::-;28764:13;28780:24;28796:7;28780:15;:24::i;:::-;28764:40;;28825:5;28819:11;;:2;:11;;;28815:48;;;28839:24;;;;;;;;;;;;;;28815:48;28896:5;28880:21;;:12;:10;:12::i;:::-;:21;;;;:63;;;;;28906:37;28923:5;28930:12;:10;:12::i;:::-;28906:16;:37::i;:::-;28905:38;28880:63;28876:138;;;28967:35;;;;;;;;;;;;;;28876:138;29026:28;29035:2;29039:7;29048:5;29026:8;:28::i;:::-;28753:309;28691:371;;:::o;44539:19::-;;;;:::o;47805:100::-;42913:12;:10;:12::i;:::-;42902:23;;:7;:5;:7::i;:::-;:23;;;42894:69;;;;;;;;;;;;:::i;:::-;;;;;;;;;47889:10:::1;47877:9;:22;;;;;;;;;;;;:::i;:::-;;47805:100:::0;:::o;47911:77::-;42913:12;:10;:12::i;:::-;42902:23;;:7;:5;:7::i;:::-;:23;;;42894:69;;;;;;;;;;;;:::i;:::-;;;;;;;;;47976:6:::1;47967;;:15;;;;;;;;;;;;;;;;;;47911:77:::0;:::o;23761:303::-;23805:7;24030:15;:13;:15::i;:::-;24015:12;;23999:13;;:28;:46;23992:53;;23761:303;:::o;29993:170::-;30127:28;30137:4;30143:2;30147:7;30127:9;:28::i;:::-;29993:170;;;:::o;44264:25::-;;;;:::o;44385:32::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;48209:462::-;42913:12;:10;:12::i;:::-;42902:23;;:7;:5;:7::i;:::-;:23;;;42894:69;;;;;;;;;;;;:::i;:::-;;;;;;;;;48493:7:::1;48514;:5;:7::i;:::-;48506:21;;48535;48506:55;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;48492:69;;;48576:2;48568:11;;;::::0;::::1;;48246:425;48209:462::o:0;30234:185::-;30372:39;30389:4;30395:2;30399:7;30372:39;;;;;;;;;;;;:16;:39::i;:::-;30234:185;;;:::o;45867:833::-;45927:16;45952:23;45978:17;45988:6;45978:9;:17::i;:::-;45952:43;;46002:30;46049:15;46035:30;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;46002:63;;46072:22;46097:15;:13;:15::i;:::-;46072:40;;46119:23;46153:26;46188:478;46213:15;46195;:33;:67;;;;;46249:13;;46232:14;:30;46195:67;46188:478;;;46273:31;46307:11;:27;46319:14;46307:27;;;;;;;;;;;46273:61;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;46350:9;:16;;;46345:287;;46409:1;46383:28;;:9;:14;;;:28;;;46379:94;;46447:9;:14;;;46426:35;;46379:94;46511:6;46489:28;;:18;:28;;;46485:138;;;46565:14;46532:13;46546:15;46532:30;;;;;;;;:::i;:::-;;;;;;;:47;;;;;46594:17;;;;;:::i;:::-;;;;46485:138;46345:287;46642:16;;;;;:::i;:::-;;;;46264:402;46188:478;;;46681:13;46674:20;;;;;;;45867:833;;;:::o;47345:74::-;42913:12;:10;:12::i;:::-;42902:23;;:7;:5;:7::i;:::-;:23;;;42894:69;;;;;;;;;;;;:::i;:::-;;;;;;;;;47408:5:::1;47401:4;:12;;;;47345:74:::0;:::o;47561:132::-;42913:12;:10;:12::i;:::-;42902:23;;:7;:5;:7::i;:::-;:23;;;42894:69;;;;;;;;;;;;:::i;:::-;;;;;;;;;47669:18:::1;47649:17;:38;;;;;;;;;;;;:::i;:::-;;47561:132:::0;:::o;44707:28::-;;;;;;;;;;;;;:::o;44459:33::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;44632:25::-;;;;;;;;;;;;;:::o;44424:28::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;27433:125::-;27497:7;27524:21;27537:7;27524:12;:21::i;:::-;:26;;;27517:33;;27433:125;;;:::o;44662:40::-;;;;;;;;;;;;;:::o;24881:206::-;24945:7;24986:1;24969:19;;:5;:19;;;24965:60;;;24997:28;;;;;;;;;;;;;;24965:60;25051:12;:19;25064:5;25051:19;;;;;;;;;;;;;;;:27;;;;;;;;;;;;25043:36;;25036:43;;24881:206;;;:::o;43334:103::-;42913:12;:10;:12::i;:::-;42902:23;;:7;:5;:7::i;:::-;:23;;;42894:69;;;;;;;;;;;;:::i;:::-;;;;;;;;;43399:30:::1;43426:1;43399:18;:30::i;:::-;43334:103::o:0;47994:98::-;42913:12;:10;:12::i;:::-;42902:23;;:7;:5;:7::i;:::-;:23;;;42894:69;;;;;;;;;;;;:::i;:::-;;;;;;;;;48075:11:::1;48062:10;:24;;;;47994:98:::0;:::o;47699:100::-;42913:12;:10;:12::i;:::-;42902:23;;:7;:5;:7::i;:::-;:23;;;42894:69;;;;;;;;;;;;:::i;:::-;;;;;;;;;47783:10:::1;47771:9;:22;;;;;;;;;;;;:::i;:::-;;47699:100:::0;:::o;44349:29::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;42682:87::-;42728:7;42755:6;;;;;;;;;;;42748:13;;42682:87;:::o;44592:33::-;;;;:::o;27794:104::-;27850:13;27883:7;27876:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;27794:104;:::o;45514:212::-;45579:11;45207:1;45193:11;:15;:52;;;;;45227:18;;45212:11;:33;;45193:52;45185:85;;;;;;;;;;;;:::i;:::-;;;;;;;;;45316:9;;45301:11;45285:13;:11;:13::i;:::-;:27;;;;:::i;:::-;:40;;45277:67;;;;;;;;;;;;:::i;:::-;;;;;;;;;45612:11:::1;45449;45442:4;;:18;;;;:::i;:::-;45429:9;:31;;45421:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;45641:6:::2;;;;;;;;;;;45640:7;45632:43;;;;;;;;;;;;:::i;:::-;;;;;;;;;45684:36;45694:12;:10;:12::i;:::-;45708:11;45684:9;:36::i;:::-;45351:1:::1;45514:212:::0;;:::o;29404:287::-;29515:12;:10;:12::i;:::-;29503:24;;:8;:24;;;29499:54;;;29536:17;;;;;;;;;;;;;;29499:54;29611:8;29566:18;:32;29585:12;:10;:12::i;:::-;29566:32;;;;;;;;;;;;;;;:42;29599:8;29566:42;;;;;;;;;;;;;;;;:53;;;;;;;;;;;;;;;;;;29664:8;29635:48;;29650:12;:10;:12::i;:::-;29635:48;;;29674:8;29635:48;;;;;;:::i;:::-;;;;;;;;29404:287;;:::o;44499:31::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;47425:130::-;42913:12;:10;:12::i;:::-;42902:23;;:7;:5;:7::i;:::-;:23;;;42894:69;;;;;;;;;;;;:::i;:::-;;;;;;;;;47530:19:::1;47509:18;:40;;;;47425:130:::0;:::o;48098:105::-;42913:12;:10;:12::i;:::-;42902:23;;:7;:5;:7::i;:::-;:23;;;42894:69;;;;;;;;;;;;:::i;:::-;;;;;;;;;48191:6:::1;48168:20;;:29;;;;;;;;;;;;;;;;;;48098:105:::0;:::o;30490:369::-;30657:28;30667:4;30673:2;30677:7;30657:9;:28::i;:::-;30700:15;:2;:13;;;:15::i;:::-;:76;;;;;30720:56;30751:4;30757:2;30761:7;30770:5;30720:30;:56::i;:::-;30719:57;30700:76;30696:156;;;30800:40;;;;;;;;;;;;;;30696:156;30490:369;;;;:::o;46807:445::-;46881:13;46911:17;46919:8;46911:7;:17::i;:::-;46903:77;;;;;;;;;;;;:::i;:::-;;;;;;;;;47005:5;46993:17;;:8;;;;;;;;;;;:17;;;46989:64;;;47028:17;47021:24;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;46989:64;47061:28;47092:10;:8;:10::i;:::-;47061:41;;47147:1;47122:14;47116:28;:32;:130;;;;;;;;;;;;;;;;;47184:14;47200:19;:8;:17;:19::i;:::-;47221:9;47167:64;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;47116:130;47109:137;;;46807:445;;;;:::o;44563:24::-;;;;:::o;44294:48::-;;;;;;;;;;;;;;;;;;;;;;:::o;47258:81::-;42913:12;:10;:12::i;:::-;42902:23;;:7;:5;:7::i;:::-;:23;;;42894:69;;;;;;;;;;;;:::i;:::-;;;;;;;;;47327:6:::1;47316:8;;:17;;;;;;;;;;;;;;;;;;47258:81:::0;:::o;29762:164::-;29859:4;29883:18;:25;29902:5;29883:25;;;;;;;;;;;;;;;:35;29909:8;29883:35;;;;;;;;;;;;;;;;;;;;;;;;;29876:42;;29762:164;;;;:::o;45734:127::-;42913:12;:10;:12::i;:::-;42902:23;;:7;:5;:7::i;:::-;:23;;;42894:69;;;;;;;;;;;;:::i;:::-;;;;;;;;;45822:33:::1;45832:9;45843:11;45822:9;:33::i;:::-;45734:127:::0;;:::o;43592:201::-;42913:12;:10;:12::i;:::-;42902:23;;:7;:5;:7::i;:::-;:23;;;42894:69;;;;;;;;;;;;:::i;:::-;;;;;;;;;43701:1:::1;43681:22;;:8;:22;;;;43673:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;43757:28;43776:8;43757:18;:28::i;:::-;43592:201:::0;:::o;14437:157::-;14522:4;14561:25;14546:40;;;:11;:40;;;;14539:47;;14437:157;;;:::o;31114:187::-;31171:4;31214:7;31195:15;:13;:15::i;:::-;:26;;:53;;;;;31235:13;;31225:7;:23;31195:53;:98;;;;;31266:11;:20;31278:7;31266:20;;;;;;;;;;;:27;;;;;;;;;;;;31265:28;31195:98;31188:105;;31114:187;;;:::o;2907:98::-;2960:7;2987:10;2980:17;;2907:98;:::o;39284:196::-;39426:2;39399:15;:24;39415:7;39399:24;;;;;;;;;;;;:29;;;;;;;;;;;;;;;;;;39464:7;39460:2;39444:28;;39453:5;39444:28;;;;;;;;;;;;39284:196;;;:::o;46706:95::-;46771:7;46794:1;46787:8;;46706:95;:::o;34227:2130::-;34342:35;34380:21;34393:7;34380:12;:21::i;:::-;34342:59;;34440:4;34418:26;;:13;:18;;;:26;;;34414:67;;34453:28;;;;;;;;;;;;;;34414:67;34494:22;34536:4;34520:20;;:12;:10;:12::i;:::-;:20;;;:73;;;;34557:36;34574:4;34580:12;:10;:12::i;:::-;34557:16;:36::i;:::-;34520:73;:126;;;;34634:12;:10;:12::i;:::-;34610:36;;:20;34622:7;34610:11;:20::i;:::-;:36;;;34520:126;34494:153;;34665:17;34660:66;;34691:35;;;;;;;;;;;;;;34660:66;34755:1;34741:16;;:2;:16;;;34737:52;;;34766:23;;;;;;;;;;;;;;34737:52;34802:43;34824:4;34830:2;34834:7;34843:1;34802:21;:43::i;:::-;34910:35;34927:1;34931:7;34940:4;34910:8;:35::i;:::-;35271:1;35241:12;:18;35254:4;35241:18;;;;;;;;;;;;;;;:26;;;:31;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;35315:1;35287:12;:16;35300:2;35287:16;;;;;;;;;;;;;;;:24;;;:29;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;35333:31;35367:11;:20;35379:7;35367:20;;;;;;;;;;;35333:54;;35418:2;35402:8;:13;;;:18;;;;;;;;;;;;;;;;;;35468:15;35435:8;:23;;;:49;;;;;;;;;;;;;;;;;;35736:19;35768:1;35758:7;:11;35736:33;;35784:31;35818:11;:24;35830:11;35818:24;;;;;;;;;;;35784:58;;35886:1;35861:27;;:8;:13;;;;;;;;;;;;:27;;;35857:384;;;36071:13;;36056:11;:28;36052:174;;36125:4;36109:8;:13;;;:20;;;;;;;;;;;;;;;;;;36178:13;:28;;;36152:8;:23;;;:54;;;;;;;;;;;;;;;;;;36052:174;35857:384;35216:1036;;;36288:7;36284:2;36269:27;;36278:4;36269:27;;;;;;;;;;;;36307:42;36328:4;36334:2;36338:7;36347:1;36307:20;:42::i;:::-;34331:2026;;34227:2130;;;:::o;26262:1109::-;26324:21;;:::i;:::-;26358:12;26373:7;26358:22;;26441:4;26422:15;:13;:15::i;:::-;:23;;:47;;;;;26456:13;;26449:4;:20;26422:47;26418:886;;;26490:31;26524:11;:17;26536:4;26524:17;;;;;;;;;;;26490:51;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;26565:9;:16;;;26560:729;;26636:1;26610:28;;:9;:14;;;:28;;;26606:101;;26674:9;26667:16;;;;;;26606:101;27009:261;27016:4;27009:261;;;27049:6;;;;;;;;27094:11;:17;27106:4;27094:17;;;;;;;;;;;27082:29;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;27168:1;27142:28;;:9;:14;;;:28;;;27138:109;;27210:9;27203:16;;;;;;27138:109;27009:261;;;26560:729;26471:833;26418:886;27332:31;;;;;;;;;;;;;;26262:1109;;;;:::o;43953:191::-;44027:16;44046:6;;;;;;;;;;;44027:25;;44072:8;44063:6;;:17;;;;;;;;;;;;;;;;;;44127:8;44096:40;;44117:8;44096:40;;;;;;;;;;;;44016:128;43953:191;:::o;31309:104::-;31378:27;31388:2;31392:8;31378:27;;;;;;;;;;;;:9;:27::i;:::-;31309:104;;:::o;4354:326::-;4414:4;4671:1;4649:7;:19;;;:23;4642:30;;4354:326;;;:::o;39972:667::-;40135:4;40172:2;40156:36;;;40193:12;:10;:12::i;:::-;40207:4;40213:7;40222:5;40156:72;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;40152:480;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;40407:1;40390:6;:13;:18;40386:235;;;40436:40;;;;;;;;;;;;;;40386:235;40579:6;40573:13;40564:6;40560:2;40556:15;40549:38;40152:480;40285:45;;;40275:55;;;:6;:55;;;;40268:62;;;39972:667;;;;;;:::o;48677:104::-;48737:13;48766:9;48759:16;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;48677:104;:::o;469:723::-;525:13;755:1;746:5;:10;742:53;;;773:10;;;;;;;;;;;;;;;;;;;;;742:53;805:12;820:5;805:20;;836:14;861:78;876:1;868:4;:9;861:78;;894:8;;;;;:::i;:::-;;;;925:2;917:10;;;;;:::i;:::-;;;861:78;;;949:19;981:6;971:17;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;949:39;;999:154;1015:1;1006:5;:10;999:154;;1043:1;1033:11;;;;;:::i;:::-;;;1110:2;1102:5;:10;;;;:::i;:::-;1089:2;:24;;;;:::i;:::-;1076:39;;1059:6;1066;1059:14;;;;;;;;:::i;:::-;;;;;:56;;;;;;;;;;;1139:2;1130:11;;;;;:::i;:::-;;;999:154;;;1177:6;1163:21;;;;;469:723;;;;:::o;41287:159::-;;;;;:::o;42105:158::-;;;;;:::o;31776:163::-;31899:32;31905:2;31909:8;31919:5;31926:4;31899:5;:32::i;:::-;31776:163;;;:::o;32198:1775::-;32337:20;32360:13;;32337:36;;32402:1;32388:16;;:2;:16;;;32384:48;;;32413:19;;;;;;;;;;;;;;32384:48;32459:1;32447:8;:13;32443:44;;;32469:18;;;;;;;;;;;;;;32443:44;32500:61;32530:1;32534:2;32538:12;32552:8;32500:21;:61::i;:::-;32873:8;32838:12;:16;32851:2;32838:16;;;;;;;;;;;;;;;:24;;;:44;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;32937:8;32897:12;:16;32910:2;32897:16;;;;;;;;;;;;;;;:29;;;:49;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;32996:2;32963:11;:25;32975:12;32963:25;;;;;;;;;;;:30;;;:35;;;;;;;;;;;;;;;;;;33063:15;33013:11;:25;33025:12;33013:25;;;;;;;;;;;:40;;;:66;;;;;;;;;;;;;;;;;;33096:20;33119:12;33096:35;;33146:11;33175:8;33160:12;:23;33146:37;;33204:4;:23;;;;;33212:15;:2;:13;;;:15::i;:::-;33204:23;33200:641;;;33248:314;33304:12;33300:2;33279:38;;33296:1;33279:38;;;;;;;;;;;;33345:69;33384:1;33388:2;33392:14;;;;;;33408:5;33345:30;:69::i;:::-;33340:174;;33450:40;;;;;;;;;;;;;;33340:174;33557:3;33541:12;:19;;33248:314;;33643:12;33626:13;;:29;33622:43;;33657:8;;;33622:43;33200:641;;;33706:120;33762:14;;;;;;33758:2;33737:40;;33754:1;33737:40;;;;;;;;;;;;33821:3;33805:12;:19;;33706:120;;33200:641;33871:12;33855:13;:28;;;;32813:1082;;33905:60;33934:1;33938:2;33942:12;33956:8;33905:20;:60::i;:::-;32326:1647;32198:1775;;;;:::o;-1:-1:-1:-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::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:139::-;1171:5;1209:6;1196:20;1187:29;;1225:33;1252:5;1225:33;:::i;:::-;1125:139;;;;:::o;1270:137::-;1315:5;1353:6;1340:20;1331:29;;1369:32;1395:5;1369:32;:::i;:::-;1270:137;;;;:::o;1413:141::-;1469:5;1500:6;1494:13;1485:22;;1516:32;1542:5;1516:32;:::i;:::-;1413:141;;;;:::o;1573:338::-;1628:5;1677:3;1670:4;1662:6;1658:17;1654:27;1644:122;;1685:79;;:::i;:::-;1644:122;1802:6;1789:20;1827:78;1901:3;1893:6;1886:4;1878:6;1874:17;1827:78;:::i;:::-;1818:87;;1634:277;1573:338;;;;:::o;1931:340::-;1987:5;2036:3;2029:4;2021:6;2017:17;2013:27;2003:122;;2044:79;;:::i;:::-;2003:122;2161:6;2148:20;2186:79;2261:3;2253:6;2246:4;2238:6;2234:17;2186:79;:::i;:::-;2177:88;;1993:278;1931:340;;;;:::o;2277:139::-;2323:5;2361:6;2348:20;2339:29;;2377:33;2404:5;2377:33;:::i;:::-;2277:139;;;;:::o;2422:329::-;2481:6;2530:2;2518:9;2509:7;2505:23;2501:32;2498:119;;;2536:79;;:::i;:::-;2498:119;2656:1;2681:53;2726:7;2717:6;2706:9;2702:22;2681:53;:::i;:::-;2671:63;;2627:117;2422:329;;;;:::o;2757:474::-;2825:6;2833;2882:2;2870:9;2861:7;2857:23;2853:32;2850:119;;;2888:79;;:::i;:::-;2850:119;3008:1;3033:53;3078:7;3069:6;3058:9;3054:22;3033:53;:::i;:::-;3023:63;;2979:117;3135:2;3161:53;3206:7;3197:6;3186:9;3182:22;3161:53;:::i;:::-;3151:63;;3106:118;2757:474;;;;;:::o;3237:619::-;3314:6;3322;3330;3379:2;3367:9;3358:7;3354:23;3350:32;3347:119;;;3385:79;;:::i;:::-;3347:119;3505:1;3530:53;3575:7;3566:6;3555:9;3551:22;3530:53;:::i;:::-;3520:63;;3476:117;3632:2;3658:53;3703:7;3694:6;3683:9;3679:22;3658:53;:::i;:::-;3648:63;;3603:118;3760:2;3786:53;3831:7;3822:6;3811:9;3807:22;3786:53;:::i;:::-;3776:63;;3731:118;3237:619;;;;;:::o;3862:943::-;3957:6;3965;3973;3981;4030:3;4018:9;4009:7;4005:23;4001:33;3998:120;;;4037:79;;:::i;:::-;3998:120;4157:1;4182:53;4227:7;4218:6;4207:9;4203:22;4182:53;:::i;:::-;4172:63;;4128:117;4284:2;4310:53;4355:7;4346:6;4335:9;4331:22;4310:53;:::i;:::-;4300:63;;4255:118;4412:2;4438:53;4483:7;4474:6;4463:9;4459:22;4438:53;:::i;:::-;4428:63;;4383:118;4568:2;4557:9;4553:18;4540:32;4599:18;4591:6;4588:30;4585:117;;;4621:79;;:::i;:::-;4585:117;4726:62;4780:7;4771:6;4760:9;4756:22;4726:62;:::i;:::-;4716:72;;4511:287;3862:943;;;;;;;:::o;4811:468::-;4876:6;4884;4933:2;4921:9;4912:7;4908:23;4904:32;4901:119;;;4939:79;;:::i;:::-;4901:119;5059:1;5084:53;5129:7;5120:6;5109:9;5105:22;5084:53;:::i;:::-;5074:63;;5030:117;5186:2;5212:50;5254:7;5245:6;5234:9;5230:22;5212:50;:::i;:::-;5202:60;;5157:115;4811:468;;;;;:::o;5285:474::-;5353:6;5361;5410:2;5398:9;5389:7;5385:23;5381:32;5378:119;;;5416:79;;:::i;:::-;5378:119;5536:1;5561:53;5606:7;5597:6;5586:9;5582:22;5561:53;:::i;:::-;5551:63;;5507:117;5663:2;5689:53;5734:7;5725:6;5714:9;5710:22;5689:53;:::i;:::-;5679:63;;5634:118;5285:474;;;;;:::o;5765:323::-;5821:6;5870:2;5858:9;5849:7;5845:23;5841:32;5838:119;;;5876:79;;:::i;:::-;5838:119;5996:1;6021:50;6063:7;6054:6;6043:9;6039:22;6021:50;:::i;:::-;6011:60;;5967:114;5765:323;;;;:::o;6094:329::-;6153:6;6202:2;6190:9;6181:7;6177:23;6173:32;6170:119;;;6208:79;;:::i;:::-;6170:119;6328:1;6353:53;6398:7;6389:6;6378:9;6374:22;6353:53;:::i;:::-;6343:63;;6299:117;6094:329;;;;:::o;6429:327::-;6487:6;6536:2;6524:9;6515:7;6511:23;6507:32;6504:119;;;6542:79;;:::i;:::-;6504:119;6662:1;6687:52;6731:7;6722:6;6711:9;6707:22;6687:52;:::i;:::-;6677:62;;6633:116;6429:327;;;;:::o;6762:349::-;6831:6;6880:2;6868:9;6859:7;6855:23;6851:32;6848:119;;;6886:79;;:::i;:::-;6848:119;7006:1;7031:63;7086:7;7077:6;7066:9;7062:22;7031:63;:::i;:::-;7021:73;;6977:127;6762:349;;;;:::o;7117:509::-;7186:6;7235:2;7223:9;7214:7;7210:23;7206:32;7203:119;;;7241:79;;:::i;:::-;7203:119;7389:1;7378:9;7374:17;7361:31;7419:18;7411:6;7408:30;7405:117;;;7441:79;;:::i;:::-;7405:117;7546:63;7601:7;7592:6;7581:9;7577:22;7546:63;:::i;:::-;7536:73;;7332:287;7117:509;;;;:::o;7632:329::-;7691:6;7740:2;7728:9;7719:7;7715:23;7711:32;7708:119;;;7746:79;;:::i;:::-;7708:119;7866:1;7891:53;7936:7;7927:6;7916:9;7912:22;7891:53;:::i;:::-;7881:63;;7837:117;7632:329;;;;:::o;7967:474::-;8035:6;8043;8092:2;8080:9;8071:7;8067:23;8063:32;8060:119;;;8098:79;;:::i;:::-;8060:119;8218:1;8243:53;8288:7;8279:6;8268:9;8264:22;8243:53;:::i;:::-;8233:63;;8189:117;8345:2;8371:53;8416:7;8407:6;8396:9;8392:22;8371:53;:::i;:::-;8361:63;;8316:118;7967:474;;;;;:::o;8447:179::-;8516:10;8537:46;8579:3;8571:6;8537:46;:::i;:::-;8615:4;8610:3;8606:14;8592:28;;8447:179;;;;:::o;8632:118::-;8719:24;8737:5;8719:24;:::i;:::-;8714:3;8707:37;8632:118;;:::o;8786:732::-;8905:3;8934:54;8982:5;8934:54;:::i;:::-;9004:86;9083:6;9078:3;9004:86;:::i;:::-;8997:93;;9114:56;9164:5;9114:56;:::i;:::-;9193:7;9224:1;9209:284;9234:6;9231:1;9228:13;9209:284;;;9310:6;9304:13;9337:63;9396:3;9381:13;9337:63;:::i;:::-;9330:70;;9423:60;9476:6;9423:60;:::i;:::-;9413:70;;9269:224;9256:1;9253;9249:9;9244:14;;9209:284;;;9213:14;9509:3;9502:10;;8910:608;;;8786:732;;;;:::o;9524:109::-;9605:21;9620:5;9605:21;:::i;:::-;9600:3;9593:34;9524:109;;:::o;9639:118::-;9726:24;9744:5;9726:24;:::i;:::-;9721:3;9714:37;9639:118;;:::o;9763:360::-;9849:3;9877:38;9909:5;9877:38;:::i;:::-;9931:70;9994:6;9989:3;9931:70;:::i;:::-;9924:77;;10010:52;10055:6;10050:3;10043:4;10036:5;10032:16;10010:52;:::i;:::-;10087:29;10109:6;10087:29;:::i;:::-;10082:3;10078:39;10071:46;;9853:270;9763:360;;;;:::o;10129:364::-;10217:3;10245:39;10278:5;10245:39;:::i;:::-;10300:71;10364:6;10359:3;10300:71;:::i;:::-;10293:78;;10380:52;10425:6;10420:3;10413:4;10406:5;10402:16;10380:52;:::i;:::-;10457:29;10479:6;10457:29;:::i;:::-;10452:3;10448:39;10441:46;;10221:272;10129:364;;;;:::o;10499:377::-;10605:3;10633:39;10666:5;10633:39;:::i;:::-;10688:89;10770:6;10765:3;10688:89;:::i;:::-;10681:96;;10786:52;10831:6;10826:3;10819:4;10812:5;10808:16;10786:52;:::i;:::-;10863:6;10858:3;10854:16;10847:23;;10609:267;10499:377;;;;:::o;10906:845::-;11009:3;11046:5;11040:12;11075:36;11101:9;11075:36;:::i;:::-;11127:89;11209:6;11204:3;11127:89;:::i;:::-;11120:96;;11247:1;11236:9;11232:17;11263:1;11258:137;;;;11409:1;11404:341;;;;11225:520;;11258:137;11342:4;11338:9;11327;11323:25;11318:3;11311:38;11378:6;11373:3;11369:16;11362:23;;11258:137;;11404:341;11471:38;11503:5;11471:38;:::i;:::-;11531:1;11545:154;11559:6;11556:1;11553:13;11545:154;;;11633:7;11627:14;11623:1;11618:3;11614:11;11607:35;11683:1;11674:7;11670:15;11659:26;;11581:4;11578:1;11574:12;11569:17;;11545:154;;;11728:6;11723:3;11719:16;11712:23;;11411:334;;11225:520;;11013:738;;10906:845;;;;:::o;11757:366::-;11899:3;11920:67;11984:2;11979:3;11920:67;:::i;:::-;11913:74;;11996:93;12085:3;11996:93;:::i;:::-;12114:2;12109:3;12105:12;12098:19;;11757:366;;;:::o;12129:::-;12271:3;12292:67;12356:2;12351:3;12292:67;:::i;:::-;12285:74;;12368:93;12457:3;12368:93;:::i;:::-;12486:2;12481:3;12477:12;12470:19;;12129:366;;;:::o;12501:::-;12643:3;12664:67;12728:2;12723:3;12664:67;:::i;:::-;12657:74;;12740:93;12829:3;12740:93;:::i;:::-;12858:2;12853:3;12849:12;12842:19;;12501:366;;;:::o;12873:::-;13015:3;13036:67;13100:2;13095:3;13036:67;:::i;:::-;13029:74;;13112:93;13201:3;13112:93;:::i;:::-;13230:2;13225:3;13221:12;13214:19;;12873:366;;;:::o;13245:::-;13387:3;13408:67;13472:2;13467:3;13408:67;:::i;:::-;13401:74;;13484:93;13573:3;13484:93;:::i;:::-;13602:2;13597:3;13593:12;13586:19;;13245:366;;;:::o;13617:::-;13759:3;13780:67;13844:2;13839:3;13780:67;:::i;:::-;13773:74;;13856:93;13945:3;13856:93;:::i;:::-;13974:2;13969:3;13965:12;13958:19;;13617:366;;;:::o;13989:::-;14131:3;14152:67;14216:2;14211:3;14152:67;:::i;:::-;14145:74;;14228:93;14317:3;14228:93;:::i;:::-;14346:2;14341:3;14337:12;14330:19;;13989:366;;;:::o;14361:398::-;14520:3;14541:83;14622:1;14617:3;14541:83;:::i;:::-;14534:90;;14633:93;14722:3;14633:93;:::i;:::-;14751:1;14746:3;14742:11;14735:18;;14361:398;;;:::o;14765:108::-;14842:24;14860:5;14842:24;:::i;:::-;14837:3;14830:37;14765:108;;:::o;14879:118::-;14966:24;14984:5;14966:24;:::i;:::-;14961:3;14954:37;14879:118;;:::o;15003:589::-;15228:3;15250:95;15341:3;15332:6;15250:95;:::i;:::-;15243:102;;15362:95;15453:3;15444:6;15362:95;:::i;:::-;15355:102;;15474:92;15562:3;15553:6;15474:92;:::i;:::-;15467:99;;15583:3;15576:10;;15003:589;;;;;;:::o;15598:379::-;15782:3;15804:147;15947:3;15804:147;:::i;:::-;15797:154;;15968:3;15961:10;;15598:379;;;:::o;15983:222::-;16076:4;16114:2;16103:9;16099:18;16091:26;;16127:71;16195:1;16184:9;16180:17;16171:6;16127:71;:::i;:::-;15983:222;;;;:::o;16211:640::-;16406:4;16444:3;16433:9;16429:19;16421:27;;16458:71;16526:1;16515:9;16511:17;16502:6;16458:71;:::i;:::-;16539:72;16607:2;16596:9;16592:18;16583:6;16539:72;:::i;:::-;16621;16689:2;16678:9;16674:18;16665:6;16621:72;:::i;:::-;16740:9;16734:4;16730:20;16725:2;16714:9;16710:18;16703:48;16768:76;16839:4;16830:6;16768:76;:::i;:::-;16760:84;;16211:640;;;;;;;:::o;16857:373::-;17000:4;17038:2;17027:9;17023:18;17015:26;;17087:9;17081:4;17077:20;17073:1;17062:9;17058:17;17051:47;17115:108;17218:4;17209:6;17115:108;:::i;:::-;17107:116;;16857:373;;;;:::o;17236:210::-;17323:4;17361:2;17350:9;17346:18;17338:26;;17374:65;17436:1;17425:9;17421:17;17412:6;17374:65;:::i;:::-;17236:210;;;;:::o;17452:222::-;17545:4;17583:2;17572:9;17568:18;17560:26;;17596:71;17664:1;17653:9;17649:17;17640:6;17596:71;:::i;:::-;17452:222;;;;:::o;17680:313::-;17793:4;17831:2;17820:9;17816:18;17808:26;;17880:9;17874:4;17870:20;17866:1;17855:9;17851:17;17844:47;17908:78;17981:4;17972:6;17908:78;:::i;:::-;17900:86;;17680:313;;;;:::o;17999:419::-;18165:4;18203:2;18192:9;18188:18;18180:26;;18252:9;18246:4;18242:20;18238:1;18227:9;18223:17;18216:47;18280:131;18406:4;18280:131;:::i;:::-;18272:139;;17999:419;;;:::o;18424:::-;18590:4;18628:2;18617:9;18613:18;18605:26;;18677:9;18671:4;18667:20;18663:1;18652:9;18648:17;18641:47;18705:131;18831:4;18705:131;:::i;:::-;18697:139;;18424:419;;;:::o;18849:::-;19015:4;19053:2;19042:9;19038:18;19030:26;;19102:9;19096:4;19092:20;19088:1;19077:9;19073:17;19066:47;19130:131;19256:4;19130:131;:::i;:::-;19122:139;;18849:419;;;:::o;19274:::-;19440:4;19478:2;19467:9;19463:18;19455:26;;19527:9;19521:4;19517:20;19513:1;19502:9;19498:17;19491:47;19555:131;19681:4;19555:131;:::i;:::-;19547:139;;19274:419;;;:::o;19699:::-;19865:4;19903:2;19892:9;19888:18;19880:26;;19952:9;19946:4;19942:20;19938:1;19927:9;19923:17;19916:47;19980:131;20106:4;19980:131;:::i;:::-;19972:139;;19699:419;;;:::o;20124:::-;20290:4;20328:2;20317:9;20313:18;20305:26;;20377:9;20371:4;20367:20;20363:1;20352:9;20348:17;20341:47;20405:131;20531:4;20405:131;:::i;:::-;20397:139;;20124:419;;;:::o;20549:::-;20715:4;20753:2;20742:9;20738:18;20730:26;;20802:9;20796:4;20792:20;20788:1;20777:9;20773:17;20766:47;20830:131;20956:4;20830:131;:::i;:::-;20822:139;;20549:419;;;:::o;20974:222::-;21067:4;21105:2;21094:9;21090:18;21082:26;;21118:71;21186:1;21175:9;21171:17;21162:6;21118:71;:::i;:::-;20974:222;;;;:::o;21202:129::-;21236:6;21263:20;;:::i;:::-;21253:30;;21292:33;21320:4;21312:6;21292:33;:::i;:::-;21202:129;;;:::o;21337:75::-;21370:6;21403:2;21397:9;21387:19;;21337:75;:::o;21418:307::-;21479:4;21569:18;21561:6;21558:30;21555:56;;;21591:18;;:::i;:::-;21555:56;21629:29;21651:6;21629:29;:::i;:::-;21621:37;;21713:4;21707;21703:15;21695:23;;21418:307;;;:::o;21731:308::-;21793:4;21883:18;21875:6;21872:30;21869:56;;;21905:18;;:::i;:::-;21869:56;21943:29;21965:6;21943:29;:::i;:::-;21935:37;;22027:4;22021;22017:15;22009:23;;21731:308;;;:::o;22045:132::-;22112:4;22135:3;22127:11;;22165:4;22160:3;22156:14;22148:22;;22045:132;;;:::o;22183:141::-;22232:4;22255:3;22247:11;;22278:3;22275:1;22268:14;22312:4;22309:1;22299:18;22291:26;;22183:141;;;:::o;22330:114::-;22397:6;22431:5;22425:12;22415:22;;22330:114;;;:::o;22450:98::-;22501:6;22535:5;22529:12;22519:22;;22450:98;;;:::o;22554:99::-;22606:6;22640:5;22634:12;22624:22;;22554:99;;;:::o;22659:113::-;22729:4;22761;22756:3;22752:14;22744:22;;22659:113;;;:::o;22778:184::-;22877:11;22911:6;22906:3;22899:19;22951:4;22946:3;22942:14;22927:29;;22778:184;;;;:::o;22968:168::-;23051:11;23085:6;23080:3;23073:19;23125:4;23120:3;23116:14;23101:29;;22968:168;;;;:::o;23142:147::-;23243:11;23280:3;23265:18;;23142:147;;;;:::o;23295:169::-;23379:11;23413:6;23408:3;23401:19;23453:4;23448:3;23444:14;23429:29;;23295:169;;;;:::o;23470:148::-;23572:11;23609:3;23594:18;;23470:148;;;;:::o;23624:305::-;23664:3;23683:20;23701:1;23683:20;:::i;:::-;23678:25;;23717:20;23735:1;23717:20;:::i;:::-;23712:25;;23871:1;23803:66;23799:74;23796:1;23793:81;23790:107;;;23877:18;;:::i;:::-;23790:107;23921:1;23918;23914:9;23907:16;;23624:305;;;;:::o;23935:185::-;23975:1;23992:20;24010:1;23992:20;:::i;:::-;23987:25;;24026:20;24044:1;24026:20;:::i;:::-;24021:25;;24065:1;24055:35;;24070:18;;:::i;:::-;24055:35;24112:1;24109;24105:9;24100:14;;23935:185;;;;:::o;24126:348::-;24166:7;24189:20;24207:1;24189:20;:::i;:::-;24184:25;;24223:20;24241:1;24223:20;:::i;:::-;24218:25;;24411:1;24343:66;24339:74;24336:1;24333:81;24328:1;24321:9;24314:17;24310:105;24307:131;;;24418:18;;:::i;:::-;24307:131;24466:1;24463;24459:9;24448:20;;24126:348;;;;:::o;24480:191::-;24520:4;24540:20;24558:1;24540:20;:::i;:::-;24535:25;;24574:20;24592:1;24574:20;:::i;:::-;24569:25;;24613:1;24610;24607:8;24604:34;;;24618:18;;:::i;:::-;24604:34;24663:1;24660;24656:9;24648:17;;24480:191;;;;:::o;24677:96::-;24714:7;24743:24;24761:5;24743:24;:::i;:::-;24732:35;;24677:96;;;:::o;24779:90::-;24813:7;24856:5;24849:13;24842:21;24831:32;;24779:90;;;:::o;24875:77::-;24912:7;24941:5;24930:16;;24875:77;;;:::o;24958:149::-;24994:7;25034:66;25027:5;25023:78;25012:89;;24958:149;;;:::o;25113:126::-;25150:7;25190:42;25183:5;25179:54;25168:65;;25113:126;;;:::o;25245:77::-;25282:7;25311:5;25300:16;;25245:77;;;:::o;25328:154::-;25412:6;25407:3;25402;25389:30;25474:1;25465:6;25460:3;25456:16;25449:27;25328:154;;;:::o;25488:307::-;25556:1;25566:113;25580:6;25577:1;25574:13;25566:113;;;25665:1;25660:3;25656:11;25650:18;25646:1;25641:3;25637:11;25630:39;25602:2;25599:1;25595:10;25590:15;;25566:113;;;25697:6;25694:1;25691:13;25688:101;;;25777:1;25768:6;25763:3;25759:16;25752:27;25688:101;25537:258;25488:307;;;:::o;25801:320::-;25845:6;25882:1;25876:4;25872:12;25862:22;;25929:1;25923:4;25919:12;25950:18;25940:81;;26006:4;25998:6;25994:17;25984:27;;25940:81;26068:2;26060:6;26057:14;26037:18;26034:38;26031:84;;;26087:18;;:::i;:::-;26031:84;25852:269;25801:320;;;:::o;26127:281::-;26210:27;26232:4;26210:27;:::i;:::-;26202:6;26198:40;26340:6;26328:10;26325:22;26304:18;26292:10;26289:34;26286:62;26283:88;;;26351:18;;:::i;:::-;26283:88;26391:10;26387:2;26380:22;26170:238;26127:281;;:::o;26414:233::-;26453:3;26476:24;26494:5;26476:24;:::i;:::-;26467:33;;26522:66;26515:5;26512:77;26509:103;;;26592:18;;:::i;:::-;26509:103;26639:1;26632:5;26628:13;26621:20;;26414:233;;;:::o;26653:176::-;26685:1;26702:20;26720:1;26702:20;:::i;:::-;26697:25;;26736:20;26754:1;26736:20;:::i;:::-;26731:25;;26775:1;26765:35;;26780:18;;:::i;:::-;26765:35;26821:1;26818;26814:9;26809:14;;26653:176;;;;:::o;26835:180::-;26883:77;26880:1;26873:88;26980:4;26977:1;26970:15;27004:4;27001:1;26994:15;27021:180;27069:77;27066:1;27059:88;27166:4;27163:1;27156:15;27190:4;27187:1;27180:15;27207:180;27255:77;27252:1;27245:88;27352:4;27349:1;27342:15;27376:4;27373:1;27366:15;27393:180;27441:77;27438:1;27431:88;27538:4;27535:1;27528:15;27562:4;27559:1;27552:15;27579:180;27627:77;27624:1;27617:88;27724:4;27721:1;27714:15;27748:4;27745:1;27738:15;27765:117;27874:1;27871;27864:12;27888:117;27997:1;27994;27987:12;28011:117;28120:1;28117;28110:12;28134:117;28243:1;28240;28233:12;28257:102;28298:6;28349:2;28345:7;28340:2;28333:5;28329:14;28325:28;28315:38;;28257:102;;;:::o;28365:164::-;28505:16;28501:1;28493:6;28489:14;28482:40;28365:164;:::o;28535:225::-;28675:34;28671:1;28663:6;28659:14;28652:58;28744:8;28739:2;28731:6;28727:15;28720:33;28535:225;:::o;28766:170::-;28906:22;28902:1;28894:6;28890:14;28883:46;28766:170;:::o;28942:182::-;29082:34;29078:1;29070:6;29066:14;29059:58;28942:182;:::o;29130:173::-;29270:25;29266:1;29258:6;29254:14;29247:49;29130:173;:::o;29309:234::-;29449:34;29445:1;29437:6;29433:14;29426:58;29518:17;29513:2;29505:6;29501:15;29494:42;29309:234;:::o;29549:179::-;29689:31;29685:1;29677:6;29673:14;29666:55;29549:179;:::o;29734:114::-;;:::o;29854:122::-;29927:24;29945:5;29927:24;:::i;:::-;29920:5;29917:35;29907:63;;29966:1;29963;29956:12;29907:63;29854:122;:::o;29982:116::-;30052:21;30067:5;30052:21;:::i;:::-;30045:5;30042:32;30032:60;;30088:1;30085;30078:12;30032:60;29982:116;:::o;30104:122::-;30177:24;30195:5;30177:24;:::i;:::-;30170:5;30167:35;30157:63;;30216:1;30213;30206:12;30157:63;30104:122;:::o;30232:120::-;30304:23;30321:5;30304:23;:::i;:::-;30297:5;30294:34;30284:62;;30342:1;30339;30332:12;30284:62;30232:120;:::o;30358:122::-;30431:24;30449:5;30431:24;:::i;:::-;30424:5;30421:35;30411:63;;30470:1;30467;30460:12;30411:63;30358:122;:::o

Swarm Source

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