ETH Price: $2,444.13 (-0.29%)

Token

IKUZA (IKUZA)
 

Overview

Max Total Supply

1,016 IKUZA

Holders

238

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A
Filtered by Token Holder
snoopd0gg.eth
Balance
2 IKUZA
0xc9d15add3ecc66ecd4f0a769902cacdda2553928
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:
xIKUZA

Compiler Version
v0.8.13+commit.abaa5c0e

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

/**
 *Submitted for verification at Etherscan.io on 2022-04-25
*/

// SPDX-License-Identifier: MIT
// File: @openzeppelin/contracts/security/ReentrancyGuard.sol


// OpenZeppelin Contracts v4.4.1 (security/ReentrancyGuard.sol)

pragma solidity ^0.8.0;

/**
 * @dev Contract module that helps prevent reentrant calls to a function.
 *
 * Inheriting from `ReentrancyGuard` will make the {nonReentrant} modifier
 * available, which can be applied to functions to make sure there are no nested
 * (reentrant) calls to them.
 *
 * Note that because there is a single `nonReentrant` guard, functions marked as
 * `nonReentrant` may not call one another. This can be worked around by making
 * those functions `private`, and then adding `external` `nonReentrant` entry
 * points to them.
 *
 * TIP: If you would like to learn more about reentrancy and alternative ways
 * to protect against it, check out our blog post
 * https://blog.openzeppelin.com/reentrancy-after-istanbul/[Reentrancy After Istanbul].
 */
abstract contract ReentrancyGuard {
    // Booleans are more expensive than uint256 or any type that takes up a full
    // word because each write operation emits an extra SLOAD to first read the
    // slot's contents, replace the bits taken up by the boolean, and then write
    // back. This is the compiler's defense against contract upgrades and
    // pointer aliasing, and it cannot be disabled.

    // The values being non-zero value makes deployment a bit more expensive,
    // but in exchange the refund on every call to nonReentrant will be lower in
    // amount. Since refunds are capped to a percentage of the total
    // transaction's gas, it is best to keep them low in cases like this one, to
    // increase the likelihood of the full refund coming into effect.
    uint256 private constant _NOT_ENTERED = 1;
    uint256 private constant _ENTERED = 2;

    uint256 private _status;

    constructor() {
        _status = _NOT_ENTERED;
    }

    /**
     * @dev Prevents a contract from calling itself, directly or indirectly.
     * Calling a `nonReentrant` function from another `nonReentrant`
     * function is not supported. It is possible to prevent this from happening
     * by making the `nonReentrant` function external, and making it call a
     * `private` function that does the actual work.
     */
    modifier nonReentrant() {
        // On the first call to nonReentrant, _notEntered will be true
        require(_status != _ENTERED, "ReentrancyGuard: reentrant call");

        // Any calls to nonReentrant after this point will fail
        _status = _ENTERED;

        _;

        // By storing the original value once again, a refund is triggered (see
        // https://eips.ethereum.org/EIPS/eip-2200)
        _status = _NOT_ENTERED;
    }
}

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


// OpenZeppelin Contracts v4.4.1 (access/Ownable.sol)

pragma solidity ^0.8.0;


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

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

    /**
     * @dev Initializes the contract setting the deployer as the initial owner.
     */
    constructor() {
        _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);
    }
}

// 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: erc721a/contracts/ERC721A.sol


// Creator: Chiru Labs

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 {}
}

// File: contracts/IKUZA.sol



pragma solidity ^0.8.4;




contract xIKUZA is ERC721A, Ownable, ReentrancyGuard {
    using Strings for uint256;

    uint256 public PRICE;
    uint256 public MAX_SUPPLY;
    string private BASE_URI;
    uint256 public FREE_MINT_LIMIT_PER_WALLET;
    uint256 public MAX_MINT_AMOUNT_PER_TX;
    bool public IS_SALE_ACTIVE;
    uint256 public FREE_MINT_IS_ALLOWED_UNTIL;
    bool public METADATA_FROZEN;

    mapping(address => uint256) private freeMintCountMap;

    constructor(
        uint256 price,
        uint256 maxSupply,
        string memory baseUri,
        uint256 freeMintAllowance,
        uint256 maxMintPerTx,
        bool isSaleActive,
        uint256 freeMintIsAllowedUntil
    ) ERC721A("IKUZA", "IKUZA") {
        PRICE = price;
        MAX_SUPPLY = maxSupply;
        BASE_URI = baseUri;
        FREE_MINT_LIMIT_PER_WALLET = freeMintAllowance;
        MAX_MINT_AMOUNT_PER_TX = maxMintPerTx;
        IS_SALE_ACTIVE = isSaleActive;
        FREE_MINT_IS_ALLOWED_UNTIL = freeMintIsAllowedUntil;
    }

    /**  THIM EERF **/

    function updateFreeMintCount(address minter, uint256 count) private {
        freeMintCountMap[minter] += count;
    }

    /** SGRETTEG **/

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

    /** SETTERS **/

    function setPrice(uint256 customPrice) external onlyOwner {
        PRICE = customPrice;
    }

    function lowerMaxSupply(uint256 newMaxSupply) external onlyOwner {
        require(newMaxSupply < MAX_SUPPLY, "Invalid new max supply");
        require(newMaxSupply >= _currentIndex, "Invalid new max supply");
        MAX_SUPPLY = newMaxSupply;
    }

    function setBaseURI(string memory customBaseURI_) external onlyOwner {
        require(!METADATA_FROZEN, "Metadata frozen!");
        BASE_URI = customBaseURI_;
    }

    function setFreeMintAllowance(uint256 freeMintAllowance)
        external
        onlyOwner
    {
        FREE_MINT_LIMIT_PER_WALLET = freeMintAllowance;
    }

    function setMaxMintPerTx(uint256 maxMintPerTx) external onlyOwner {
        MAX_MINT_AMOUNT_PER_TX = maxMintPerTx;
    }

    function setSaleActive(bool saleIsActive) external onlyOwner {
        IS_SALE_ACTIVE = saleIsActive;
    }

    function setFreeMintAllowedUntil(uint256 freeMintIsAllowedUntil)
        external
        onlyOwner
    {
        FREE_MINT_IS_ALLOWED_UNTIL = freeMintIsAllowedUntil;
    }

    function freezeMetadata() external onlyOwner {
        METADATA_FROZEN = true;
    }

    /** MINT **/

    modifier mintCompliance(uint256 _mintAmount) {
        require(
            _mintAmount > 0 && _mintAmount <= MAX_MINT_AMOUNT_PER_TX,
            "Invalid mint amount!"
        );
        require(
            _currentIndex + _mintAmount <= MAX_SUPPLY,
            "Max supply exceeded!"
        );
        _;
    }

    function mint(uint256 _mintAmount)
        public
        payable
        mintCompliance(_mintAmount)
    {
        require(IS_SALE_ACTIVE, "Sale is not active!");

        uint256 price = PRICE * _mintAmount;

        if (_currentIndex < FREE_MINT_IS_ALLOWED_UNTIL) {
            uint256 remainingFreeMint = FREE_MINT_LIMIT_PER_WALLET -
                freeMintCountMap[msg.sender];
            if (remainingFreeMint > 0) {
                if (_mintAmount >= remainingFreeMint) {
                    price -= remainingFreeMint * PRICE;
                    updateFreeMintCount(msg.sender, remainingFreeMint);
                } else {
                    price -= _mintAmount * PRICE;
                    updateFreeMintCount(msg.sender, _mintAmount);
                }
            }
        }

        require(msg.value >= price, "Insufficient funds!");

        _safeMint(msg.sender, _mintAmount);
    }

    function mintOwner(address _to, uint256 _mintAmount)
        public
        mintCompliance(_mintAmount)
        onlyOwner
    {
        _safeMint(_to, _mintAmount);
    }

    /** PAYOUT **/

    address private constant payoutAddress1 =
        0xAF4E452D370Bb2EAdCE0E5DBc183c7aB33070820;
        
    function withdraw() public onlyOwner nonReentrant {
        uint256 balance = address(this).balance;
        Address.sendValue(payable(payoutAddress1), balance /1);
    }
}

Contract Security Audit

Contract ABI

[{"inputs":[{"internalType":"uint256","name":"price","type":"uint256"},{"internalType":"uint256","name":"maxSupply","type":"uint256"},{"internalType":"string","name":"baseUri","type":"string"},{"internalType":"uint256","name":"freeMintAllowance","type":"uint256"},{"internalType":"uint256","name":"maxMintPerTx","type":"uint256"},{"internalType":"bool","name":"isSaleActive","type":"bool"},{"internalType":"uint256","name":"freeMintIsAllowedUntil","type":"uint256"}],"stateMutability":"nonpayable","type":"constructor"},{"inputs":[],"name":"ApprovalCallerNotOwnerNorApproved","type":"error"},{"inputs":[],"name":"ApprovalQueryForNonexistentToken","type":"error"},{"inputs":[],"name":"ApprovalToCurrentOwner","type":"error"},{"inputs":[],"name":"ApproveToCaller","type":"error"},{"inputs":[],"name":"BalanceQueryForZeroAddress","type":"error"},{"inputs":[],"name":"MintToZeroAddress","type":"error"},{"inputs":[],"name":"MintZeroQuantity","type":"error"},{"inputs":[],"name":"OwnerQueryForNonexistentToken","type":"error"},{"inputs":[],"name":"TransferCallerNotOwnerNorApproved","type":"error"},{"inputs":[],"name":"TransferFromIncorrectOwner","type":"error"},{"inputs":[],"name":"TransferToNonERC721ReceiverImplementer","type":"error"},{"inputs":[],"name":"TransferToZeroAddress","type":"error"},{"inputs":[],"name":"URIQueryForNonexistentToken","type":"error"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"approved","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[],"name":"FREE_MINT_IS_ALLOWED_UNTIL","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"FREE_MINT_LIMIT_PER_WALLET","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"IS_SALE_ACTIVE","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"MAX_MINT_AMOUNT_PER_TX","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"MAX_SUPPLY","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"METADATA_FROZEN","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"PRICE","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"freezeMetadata","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"newMaxSupply","type":"uint256"}],"name":"lowerMaxSupply","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_mintAmount","type":"uint256"}],"name":"mint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"address","name":"_to","type":"address"},{"internalType":"uint256","name":"_mintAmount","type":"uint256"}],"name":"mintOwner","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":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"_data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"customBaseURI_","type":"string"}],"name":"setBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"freeMintAllowance","type":"uint256"}],"name":"setFreeMintAllowance","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"freeMintIsAllowedUntil","type":"uint256"}],"name":"setFreeMintAllowedUntil","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"maxMintPerTx","type":"uint256"}],"name":"setMaxMintPerTx","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"customPrice","type":"uint256"}],"name":"setPrice","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"saleIsActive","type":"bool"}],"name":"setSaleActive","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":"withdraw","outputs":[],"stateMutability":"nonpayable","type":"function"}]

60806040523480156200001157600080fd5b50604051620044ba380380620044ba833981810160405281019062000037919062000510565b6040518060400160405280600581526020017f494b555a410000000000000000000000000000000000000000000000000000008152506040518060400160405280600581526020017f494b555a410000000000000000000000000000000000000000000000000000008152508160029080519060200190620000bb9291906200024b565b508060039080519060200190620000d49291906200024b565b50620000e56200017860201b60201c565b60008190555050506200010d620001016200017d60201b60201c565b6200018560201b60201c565b600160098190555086600a8190555085600b8190555084600c90805190602001906200013b9291906200024b565b5083600d8190555082600e8190555081600f60006101000a81548160ff021916908315150217905550806010819055505050505050505062000646565b600090565b600033905090565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b828054620002599062000611565b90600052602060002090601f0160209004810192826200027d5760008555620002c9565b82601f106200029857805160ff1916838001178555620002c9565b82800160010185558215620002c9579182015b82811115620002c8578251825591602001919060010190620002ab565b5b509050620002d89190620002dc565b5090565b5b80821115620002f7576000816000905550600101620002dd565b5090565b6000604051905090565b600080fd5b600080fd5b6000819050919050565b62000324816200030f565b81146200033057600080fd5b50565b600081519050620003448162000319565b92915050565b600080fd5b600080fd5b6000601f19601f8301169050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6200039f8262000354565b810181811067ffffffffffffffff82111715620003c157620003c062000365565b5b80604052505050565b6000620003d6620002fb565b9050620003e4828262000394565b919050565b600067ffffffffffffffff82111562000407576200040662000365565b5b620004128262000354565b9050602081019050919050565b60005b838110156200043f57808201518184015260208101905062000422565b838111156200044f576000848401525b50505050565b60006200046c6200046684620003e9565b620003ca565b9050828152602081018484840111156200048b576200048a6200034f565b5b620004988482856200041f565b509392505050565b600082601f830112620004b857620004b76200034a565b5b8151620004ca84826020860162000455565b91505092915050565b60008115159050919050565b620004ea81620004d3565b8114620004f657600080fd5b50565b6000815190506200050a81620004df565b92915050565b600080600080600080600060e0888a03121562000532576200053162000305565b5b6000620005428a828b0162000333565b9750506020620005558a828b0162000333565b965050604088015167ffffffffffffffff8111156200057957620005786200030a565b5b620005878a828b01620004a0565b95505060606200059a8a828b0162000333565b9450506080620005ad8a828b0162000333565b93505060a0620005c08a828b01620004f9565b92505060c0620005d38a828b0162000333565b91505092959891949750929550565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b600060028204905060018216806200062a57607f821691505b60208210810362000640576200063f620005e2565b5b50919050565b613e6480620006566000396000f3fe6080604052600436106102045760003560e01c8063715018a611610118578063a22cb465116100a0578063c87b56dd1161006f578063c87b56dd1461070a578063d111515d14610747578063e985e9c51461075e578063f2fde38b1461079b578063fdb4953a146107c457610204565b8063a22cb46514610666578063b0551ac41461068f578063b88d4fde146106b8578063c4e9374d146106e157610204565b80638d859f3e116100e75780638d859f3e146105a05780638da5cb5b146105cb57806391b7f5ed146105f657806395d89b411461061f578063a0712d681461064a57610204565b8063715018a61461050c57806376d02b7114610523578063841718a61461054e5780638b85e43d1461057757610204565b806332cb6b0c1161019b57806342842e0e1161016a57806342842e0e1461041757806355f804b314610440578063616cdb1e146104695780636352211e1461049257806370a08231146104cf57610204565b806332cb6b0c146103815780633ccfd60b146103ac5780634065b85f146103c3578063408cbf94146103ee57610204565b806309ef6527116101d757806309ef6527146102d757806310b0c0521461030257806318160ddd1461032d57806323b872dd1461035857610204565b806301ffc9a71461020957806306fdde0314610246578063081812fc14610271578063095ea7b3146102ae575b600080fd5b34801561021557600080fd5b50610230600480360381019061022b9190612ecc565b6107ef565b60405161023d9190612f14565b60405180910390f35b34801561025257600080fd5b5061025b6108d1565b6040516102689190612fc8565b60405180910390f35b34801561027d57600080fd5b5061029860048036038101906102939190613020565b610963565b6040516102a5919061308e565b60405180910390f35b3480156102ba57600080fd5b506102d560048036038101906102d091906130d5565b6109df565b005b3480156102e357600080fd5b506102ec610ae9565b6040516102f99190613124565b60405180910390f35b34801561030e57600080fd5b50610317610aef565b6040516103249190613124565b60405180910390f35b34801561033957600080fd5b50610342610af5565b60405161034f9190613124565b60405180910390f35b34801561036457600080fd5b5061037f600480360381019061037a919061313f565b610b0c565b005b34801561038d57600080fd5b50610396610b1c565b6040516103a39190613124565b60405180910390f35b3480156103b857600080fd5b506103c1610b22565b005b3480156103cf57600080fd5b506103d8610c25565b6040516103e59190613124565b60405180910390f35b3480156103fa57600080fd5b50610415600480360381019061041091906130d5565b610c2b565b005b34801561042357600080fd5b5061043e6004803603810190610439919061313f565b610d5a565b005b34801561044c57600080fd5b50610467600480360381019061046291906132c7565b610d7a565b005b34801561047557600080fd5b50610490600480360381019061048b9190613020565b610e60565b005b34801561049e57600080fd5b506104b960048036038101906104b49190613020565b610ee6565b6040516104c6919061308e565b60405180910390f35b3480156104db57600080fd5b506104f660048036038101906104f19190613310565b610efc565b6040516105039190613124565b60405180910390f35b34801561051857600080fd5b50610521610fcb565b005b34801561052f57600080fd5b50610538611053565b6040516105459190612f14565b60405180910390f35b34801561055a57600080fd5b5061057560048036038101906105709190613369565b611066565b005b34801561058357600080fd5b5061059e60048036038101906105999190613020565b6110ff565b005b3480156105ac57600080fd5b506105b5611185565b6040516105c29190613124565b60405180910390f35b3480156105d757600080fd5b506105e061118b565b6040516105ed919061308e565b60405180910390f35b34801561060257600080fd5b5061061d60048036038101906106189190613020565b6111b5565b005b34801561062b57600080fd5b5061063461123b565b6040516106419190612fc8565b60405180910390f35b610664600480360381019061065f9190613020565b6112cd565b005b34801561067257600080fd5b5061068d60048036038101906106889190613396565b6114e4565b005b34801561069b57600080fd5b506106b660048036038101906106b19190613020565b61165b565b005b3480156106c457600080fd5b506106df60048036038101906106da9190613477565b6116e1565b005b3480156106ed57600080fd5b5061070860048036038101906107039190613020565b61175d565b005b34801561071657600080fd5b50610731600480360381019061072c9190613020565b61186c565b60405161073e9190612fc8565b60405180910390f35b34801561075357600080fd5b5061075c61190a565b005b34801561076a57600080fd5b50610785600480360381019061078091906134fa565b6119a3565b6040516107929190612f14565b60405180910390f35b3480156107a757600080fd5b506107c260048036038101906107bd9190613310565b611a37565b005b3480156107d057600080fd5b506107d9611b2e565b6040516107e69190612f14565b60405180910390f35b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614806108ba57507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b806108ca57506108c982611b41565b5b9050919050565b6060600280546108e090613569565b80601f016020809104026020016040519081016040528092919081815260200182805461090c90613569565b80156109595780601f1061092e57610100808354040283529160200191610959565b820191906000526020600020905b81548152906001019060200180831161093c57829003601f168201915b5050505050905090565b600061096e82611bab565b6109a4576040517fcf4700e400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6006600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b60006109ea82610ee6565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603610a51576040517f943f7b8c00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16610a70611bf9565b73ffffffffffffffffffffffffffffffffffffffff1614158015610aa25750610aa081610a9b611bf9565b6119a3565b155b15610ad9576040517fcfb3b94200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b610ae4838383611c01565b505050565b600e5481565b600d5481565b6000610aff611cb3565b6001546000540303905090565b610b17838383611cb8565b505050565b600b5481565b610b2a611bf9565b73ffffffffffffffffffffffffffffffffffffffff16610b4861118b565b73ffffffffffffffffffffffffffffffffffffffff1614610b9e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b95906135e6565b60405180910390fd5b600260095403610be3576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610bda90613652565b60405180910390fd5b60026009819055506000479050610c1a73af4e452d370bb2eadce0e5dbc183c7ab33070820600183610c1591906136d0565b61216c565b506001600981905550565b60105481565b80600081118015610c3e5750600e548111155b610c7d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c749061374d565b60405180910390fd5b600b5481600054610c8e919061376d565b1115610ccf576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610cc69061380f565b60405180910390fd5b610cd7611bf9565b73ffffffffffffffffffffffffffffffffffffffff16610cf561118b565b73ffffffffffffffffffffffffffffffffffffffff1614610d4b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d42906135e6565b60405180910390fd5b610d558383612260565b505050565b610d75838383604051806020016040528060008152506116e1565b505050565b610d82611bf9565b73ffffffffffffffffffffffffffffffffffffffff16610da061118b565b73ffffffffffffffffffffffffffffffffffffffff1614610df6576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ded906135e6565b60405180910390fd5b601160009054906101000a900460ff1615610e46576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e3d9061387b565b60405180910390fd5b80600c9080519060200190610e5c929190612d7a565b5050565b610e68611bf9565b73ffffffffffffffffffffffffffffffffffffffff16610e8661118b565b73ffffffffffffffffffffffffffffffffffffffff1614610edc576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ed3906135e6565b60405180910390fd5b80600e8190555050565b6000610ef18261227e565b600001519050919050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610f63576040517f8f4eb60400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600560008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160009054906101000a900467ffffffffffffffff1667ffffffffffffffff169050919050565b610fd3611bf9565b73ffffffffffffffffffffffffffffffffffffffff16610ff161118b565b73ffffffffffffffffffffffffffffffffffffffff1614611047576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161103e906135e6565b60405180910390fd5b611051600061250d565b565b600f60009054906101000a900460ff1681565b61106e611bf9565b73ffffffffffffffffffffffffffffffffffffffff1661108c61118b565b73ffffffffffffffffffffffffffffffffffffffff16146110e2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110d9906135e6565b60405180910390fd5b80600f60006101000a81548160ff02191690831515021790555050565b611107611bf9565b73ffffffffffffffffffffffffffffffffffffffff1661112561118b565b73ffffffffffffffffffffffffffffffffffffffff161461117b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611172906135e6565b60405180910390fd5b8060108190555050565b600a5481565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b6111bd611bf9565b73ffffffffffffffffffffffffffffffffffffffff166111db61118b565b73ffffffffffffffffffffffffffffffffffffffff1614611231576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611228906135e6565b60405180910390fd5b80600a8190555050565b60606003805461124a90613569565b80601f016020809104026020016040519081016040528092919081815260200182805461127690613569565b80156112c35780601f10611298576101008083540402835291602001916112c3565b820191906000526020600020905b8154815290600101906020018083116112a657829003601f168201915b5050505050905090565b806000811180156112e05750600e548111155b61131f576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113169061374d565b60405180910390fd5b600b5481600054611330919061376d565b1115611371576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113689061380f565b60405180910390fd5b600f60009054906101000a900460ff166113c0576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113b7906138e7565b60405180910390fd5b600082600a546113d09190613907565b90506010546000541015611492576000601260003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054600d5461142d9190613961565b905060008111156114905780841061146957600a548161144d9190613907565b826114589190613961565b915061146433826125d3565b61148f565b600a54846114779190613907565b826114829190613961565b915061148e33856125d3565b5b5b505b803410156114d5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114cc906139e1565b60405180910390fd5b6114df3384612260565b505050565b6114ec611bf9565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603611550576040517fb06307db00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b806007600061155d611bf9565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff1661160a611bf9565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c318360405161164f9190612f14565b60405180910390a35050565b611663611bf9565b73ffffffffffffffffffffffffffffffffffffffff1661168161118b565b73ffffffffffffffffffffffffffffffffffffffff16146116d7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116ce906135e6565b60405180910390fd5b80600d8190555050565b6116ec848484611cb8565b61170b8373ffffffffffffffffffffffffffffffffffffffff1661262d565b8015611720575061171e84848484612650565b155b15611757576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b50505050565b611765611bf9565b73ffffffffffffffffffffffffffffffffffffffff1661178361118b565b73ffffffffffffffffffffffffffffffffffffffff16146117d9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117d0906135e6565b60405180910390fd5b600b54811061181d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161181490613a4d565b60405180910390fd5b600054811015611862576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161185990613a4d565b60405180910390fd5b80600b8190555050565b606061187782611bab565b6118ad576040517fa14c4b5000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b60006118b76127a0565b905060008151036118d75760405180602001604052806000815250611902565b806118e184612832565b6040516020016118f2929190613aa9565b6040516020818303038152906040525b915050919050565b611912611bf9565b73ffffffffffffffffffffffffffffffffffffffff1661193061118b565b73ffffffffffffffffffffffffffffffffffffffff1614611986576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161197d906135e6565b60405180910390fd5b6001601160006101000a81548160ff021916908315150217905550565b6000600760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b611a3f611bf9565b73ffffffffffffffffffffffffffffffffffffffff16611a5d61118b565b73ffffffffffffffffffffffffffffffffffffffff1614611ab3576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611aaa906135e6565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603611b22576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b1990613b3f565b60405180910390fd5b611b2b8161250d565b50565b601160009054906101000a900460ff1681565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b600081611bb6611cb3565b11158015611bc5575060005482105b8015611bf2575060046000838152602001908152602001600020600001601c9054906101000a900460ff16155b9050919050565b600033905090565b826006600084815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b600090565b6000611cc38261227e565b90508373ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff1614611d2e576040517fa114810000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b60008473ffffffffffffffffffffffffffffffffffffffff16611d4f611bf9565b73ffffffffffffffffffffffffffffffffffffffff161480611d7e5750611d7d85611d78611bf9565b6119a3565b5b80611dc35750611d8c611bf9565b73ffffffffffffffffffffffffffffffffffffffff16611dab84610963565b73ffffffffffffffffffffffffffffffffffffffff16145b905080611dfc576040517f59c896be00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1603611e62576040517fea553b3400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b611e6f8585856001612992565b611e7b60008487611c01565b6001600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a900467ffffffffffffffff160392506101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055506001600560008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a900467ffffffffffffffff160192506101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055506000600460008581526020019081526020016000209050848160000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550428160000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff16021790555060006001850190506000600460008381526020019081526020016000209050600073ffffffffffffffffffffffffffffffffffffffff168160000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16036120fa5760005482146120f957878160000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555084602001518160000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055505b5b505050828473ffffffffffffffffffffffffffffffffffffffff168673ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a46121658585856001612998565b5050505050565b804710156121af576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016121a690613bab565b60405180910390fd5b60008273ffffffffffffffffffffffffffffffffffffffff16826040516121d590613bfc565b60006040518083038185875af1925050503d8060008114612212576040519150601f19603f3d011682016040523d82523d6000602084013e612217565b606091505b505090508061225b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161225290613c83565b60405180910390fd5b505050565b61227a82826040518060200160405280600081525061299e565b5050565b612286612e00565b600082905080612294611cb3565b111580156122a3575060005481105b156124d6576000600460008381526020019081526020016000206040518060600160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815260200160008201601c9054906101000a900460ff161515151581525050905080604001516124d457600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff16146123b8578092505050612508565b5b6001156124d357818060019003925050600460008381526020019081526020016000206040518060600160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815260200160008201601c9054906101000a900460ff1615151515815250509050600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff16146124ce578092505050612508565b6123b9565b5b505b6040517fdf2d9b4200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b919050565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b80601260008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254612622919061376d565b925050819055505050565b6000808273ffffffffffffffffffffffffffffffffffffffff163b119050919050565b60008373ffffffffffffffffffffffffffffffffffffffff1663150b7a02612676611bf9565b8786866040518563ffffffff1660e01b81526004016126989493929190613cf8565b6020604051808303816000875af19250505080156126d457506040513d601f19601f820116820180604052508101906126d19190613d59565b60015b61274d573d8060008114612704576040519150601f19603f3d011682016040523d82523d6000602084013e612709565b606091505b506000815103612745576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050949350505050565b6060600c80546127af90613569565b80601f01602080910402602001604051908101604052809291908181526020018280546127db90613569565b80156128285780601f106127fd57610100808354040283529160200191612828565b820191906000526020600020905b81548152906001019060200180831161280b57829003601f168201915b5050505050905090565b606060008203612879576040518060400160405280600181526020017f3000000000000000000000000000000000000000000000000000000000000000815250905061298d565b600082905060005b600082146128ab57808061289490613d86565b915050600a826128a491906136d0565b9150612881565b60008167ffffffffffffffff8111156128c7576128c661319c565b5b6040519080825280601f01601f1916602001820160405280156128f95781602001600182028036833780820191505090505b5090505b60008514612986576001826129129190613961565b9150600a856129219190613dce565b603061292d919061376d565b60f81b81838151811061294357612942613dff565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a8561297f91906136d0565b94506128fd565b8093505050505b919050565b50505050565b50505050565b6129ab83838360016129b0565b505050565b600080549050600073ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff1603612a1c576040517f2e07630000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b60008403612a56576040517fb562e8dd00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b612a636000868387612992565b83600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a900467ffffffffffffffff160192506101000a81548167ffffffffffffffff021916908367ffffffffffffffff16021790555083600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160088282829054906101000a900467ffffffffffffffff160192506101000a81548167ffffffffffffffff021916908367ffffffffffffffff160217905550846004600083815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550426004600083815260200190815260200160002060000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff160217905550600081905060008582019050838015612c2d5750612c2c8773ffffffffffffffffffffffffffffffffffffffff1661262d565b5b15612cf2575b818773ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4612ca26000888480600101955088612650565b612cd8576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b808203612c33578260005414612ced57600080fd5b612d5d565b5b818060010192508773ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4808203612cf3575b816000819055505050612d736000868387612998565b5050505050565b828054612d8690613569565b90600052602060002090601f016020900481019282612da85760008555612def565b82601f10612dc157805160ff1916838001178555612def565b82800160010185558215612def579182015b82811115612dee578251825591602001919060010190612dd3565b5b509050612dfc9190612e43565b5090565b6040518060600160405280600073ffffffffffffffffffffffffffffffffffffffff168152602001600067ffffffffffffffff1681526020016000151581525090565b5b80821115612e5c576000816000905550600101612e44565b5090565b6000604051905090565b600080fd5b600080fd5b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b612ea981612e74565b8114612eb457600080fd5b50565b600081359050612ec681612ea0565b92915050565b600060208284031215612ee257612ee1612e6a565b5b6000612ef084828501612eb7565b91505092915050565b60008115159050919050565b612f0e81612ef9565b82525050565b6000602082019050612f296000830184612f05565b92915050565b600081519050919050565b600082825260208201905092915050565b60005b83811015612f69578082015181840152602081019050612f4e565b83811115612f78576000848401525b50505050565b6000601f19601f8301169050919050565b6000612f9a82612f2f565b612fa48185612f3a565b9350612fb4818560208601612f4b565b612fbd81612f7e565b840191505092915050565b60006020820190508181036000830152612fe28184612f8f565b905092915050565b6000819050919050565b612ffd81612fea565b811461300857600080fd5b50565b60008135905061301a81612ff4565b92915050565b60006020828403121561303657613035612e6a565b5b60006130448482850161300b565b91505092915050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b60006130788261304d565b9050919050565b6130888161306d565b82525050565b60006020820190506130a3600083018461307f565b92915050565b6130b28161306d565b81146130bd57600080fd5b50565b6000813590506130cf816130a9565b92915050565b600080604083850312156130ec576130eb612e6a565b5b60006130fa858286016130c0565b925050602061310b8582860161300b565b9150509250929050565b61311e81612fea565b82525050565b60006020820190506131396000830184613115565b92915050565b60008060006060848603121561315857613157612e6a565b5b6000613166868287016130c0565b9350506020613177868287016130c0565b92505060406131888682870161300b565b9150509250925092565b600080fd5b600080fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6131d482612f7e565b810181811067ffffffffffffffff821117156131f3576131f261319c565b5b80604052505050565b6000613206612e60565b905061321282826131cb565b919050565b600067ffffffffffffffff8211156132325761323161319c565b5b61323b82612f7e565b9050602081019050919050565b82818337600083830152505050565b600061326a61326584613217565b6131fc565b90508281526020810184848401111561328657613285613197565b5b613291848285613248565b509392505050565b600082601f8301126132ae576132ad613192565b5b81356132be848260208601613257565b91505092915050565b6000602082840312156132dd576132dc612e6a565b5b600082013567ffffffffffffffff8111156132fb576132fa612e6f565b5b61330784828501613299565b91505092915050565b60006020828403121561332657613325612e6a565b5b6000613334848285016130c0565b91505092915050565b61334681612ef9565b811461335157600080fd5b50565b6000813590506133638161333d565b92915050565b60006020828403121561337f5761337e612e6a565b5b600061338d84828501613354565b91505092915050565b600080604083850312156133ad576133ac612e6a565b5b60006133bb858286016130c0565b92505060206133cc85828601613354565b9150509250929050565b600067ffffffffffffffff8211156133f1576133f061319c565b5b6133fa82612f7e565b9050602081019050919050565b600061341a613415846133d6565b6131fc565b90508281526020810184848401111561343657613435613197565b5b613441848285613248565b509392505050565b600082601f83011261345e5761345d613192565b5b813561346e848260208601613407565b91505092915050565b6000806000806080858703121561349157613490612e6a565b5b600061349f878288016130c0565b94505060206134b0878288016130c0565b93505060406134c18782880161300b565b925050606085013567ffffffffffffffff8111156134e2576134e1612e6f565b5b6134ee87828801613449565b91505092959194509250565b6000806040838503121561351157613510612e6a565b5b600061351f858286016130c0565b9250506020613530858286016130c0565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b6000600282049050600182168061358157607f821691505b6020821081036135945761359361353a565b5b50919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b60006135d0602083612f3a565b91506135db8261359a565b602082019050919050565b600060208201905081810360008301526135ff816135c3565b9050919050565b7f5265656e7472616e637947756172643a207265656e7472616e742063616c6c00600082015250565b600061363c601f83612f3a565b915061364782613606565b602082019050919050565b6000602082019050818103600083015261366b8161362f565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b60006136db82612fea565b91506136e683612fea565b9250826136f6576136f5613672565b5b828204905092915050565b7f496e76616c6964206d696e7420616d6f756e7421000000000000000000000000600082015250565b6000613737601483612f3a565b915061374282613701565b602082019050919050565b600060208201905081810360008301526137668161372a565b9050919050565b600061377882612fea565b915061378383612fea565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff038211156137b8576137b76136a1565b5b828201905092915050565b7f4d617820737570706c7920657863656564656421000000000000000000000000600082015250565b60006137f9601483612f3a565b9150613804826137c3565b602082019050919050565b60006020820190508181036000830152613828816137ec565b9050919050565b7f4d657461646174612066726f7a656e2100000000000000000000000000000000600082015250565b6000613865601083612f3a565b91506138708261382f565b602082019050919050565b6000602082019050818103600083015261389481613858565b9050919050565b7f53616c65206973206e6f74206163746976652100000000000000000000000000600082015250565b60006138d1601383612f3a565b91506138dc8261389b565b602082019050919050565b60006020820190508181036000830152613900816138c4565b9050919050565b600061391282612fea565b915061391d83612fea565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0483118215151615613956576139556136a1565b5b828202905092915050565b600061396c82612fea565b915061397783612fea565b92508282101561398a576139896136a1565b5b828203905092915050565b7f496e73756666696369656e742066756e64732100000000000000000000000000600082015250565b60006139cb601383612f3a565b91506139d682613995565b602082019050919050565b600060208201905081810360008301526139fa816139be565b9050919050565b7f496e76616c6964206e6577206d617820737570706c7900000000000000000000600082015250565b6000613a37601683612f3a565b9150613a4282613a01565b602082019050919050565b60006020820190508181036000830152613a6681613a2a565b9050919050565b600081905092915050565b6000613a8382612f2f565b613a8d8185613a6d565b9350613a9d818560208601612f4b565b80840191505092915050565b6000613ab58285613a78565b9150613ac18284613a78565b91508190509392505050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b6000613b29602683612f3a565b9150613b3482613acd565b604082019050919050565b60006020820190508181036000830152613b5881613b1c565b9050919050565b7f416464726573733a20696e73756666696369656e742062616c616e6365000000600082015250565b6000613b95601d83612f3a565b9150613ba082613b5f565b602082019050919050565b60006020820190508181036000830152613bc481613b88565b9050919050565b600081905092915050565b50565b6000613be6600083613bcb565b9150613bf182613bd6565b600082019050919050565b6000613c0782613bd9565b9150819050919050565b7f416464726573733a20756e61626c6520746f2073656e642076616c75652c207260008201527f6563697069656e74206d61792068617665207265766572746564000000000000602082015250565b6000613c6d603a83612f3a565b9150613c7882613c11565b604082019050919050565b60006020820190508181036000830152613c9c81613c60565b9050919050565b600081519050919050565b600082825260208201905092915050565b6000613cca82613ca3565b613cd48185613cae565b9350613ce4818560208601612f4b565b613ced81612f7e565b840191505092915050565b6000608082019050613d0d600083018761307f565b613d1a602083018661307f565b613d276040830185613115565b8181036060830152613d398184613cbf565b905095945050505050565b600081519050613d5381612ea0565b92915050565b600060208284031215613d6f57613d6e612e6a565b5b6000613d7d84828501613d44565b91505092915050565b6000613d9182612fea565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8203613dc357613dc26136a1565b5b600182019050919050565b6000613dd982612fea565b9150613de483612fea565b925082613df457613df3613672565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fdfea264697066735822122000cec910bdd750212fe415476f5f4b88c1c17f3a677fbd88b147be183445945164736f6c634300080d0033000000000000000000000000000000000000000000000000002386f26fc10000000000000000000000000000000000000000000000000000000000000000271000000000000000000000000000000000000000000000000000000000000000e000000000000000000000000000000000000000000000000000000000000000050000000000000000000000000000000000000000000000000000000000000064000000000000000000000000000000000000000000000000000000000000000100000000000000000000000000000000000000000000000000000000000003e8000000000000000000000000000000000000000000000000000000000000003068747470733a2f2f697a6b756b612d6d657461646174612e6865726f6b756170702e636f6d2f6170692f696b757a612f00000000000000000000000000000000

Deployed Bytecode

0x6080604052600436106102045760003560e01c8063715018a611610118578063a22cb465116100a0578063c87b56dd1161006f578063c87b56dd1461070a578063d111515d14610747578063e985e9c51461075e578063f2fde38b1461079b578063fdb4953a146107c457610204565b8063a22cb46514610666578063b0551ac41461068f578063b88d4fde146106b8578063c4e9374d146106e157610204565b80638d859f3e116100e75780638d859f3e146105a05780638da5cb5b146105cb57806391b7f5ed146105f657806395d89b411461061f578063a0712d681461064a57610204565b8063715018a61461050c57806376d02b7114610523578063841718a61461054e5780638b85e43d1461057757610204565b806332cb6b0c1161019b57806342842e0e1161016a57806342842e0e1461041757806355f804b314610440578063616cdb1e146104695780636352211e1461049257806370a08231146104cf57610204565b806332cb6b0c146103815780633ccfd60b146103ac5780634065b85f146103c3578063408cbf94146103ee57610204565b806309ef6527116101d757806309ef6527146102d757806310b0c0521461030257806318160ddd1461032d57806323b872dd1461035857610204565b806301ffc9a71461020957806306fdde0314610246578063081812fc14610271578063095ea7b3146102ae575b600080fd5b34801561021557600080fd5b50610230600480360381019061022b9190612ecc565b6107ef565b60405161023d9190612f14565b60405180910390f35b34801561025257600080fd5b5061025b6108d1565b6040516102689190612fc8565b60405180910390f35b34801561027d57600080fd5b5061029860048036038101906102939190613020565b610963565b6040516102a5919061308e565b60405180910390f35b3480156102ba57600080fd5b506102d560048036038101906102d091906130d5565b6109df565b005b3480156102e357600080fd5b506102ec610ae9565b6040516102f99190613124565b60405180910390f35b34801561030e57600080fd5b50610317610aef565b6040516103249190613124565b60405180910390f35b34801561033957600080fd5b50610342610af5565b60405161034f9190613124565b60405180910390f35b34801561036457600080fd5b5061037f600480360381019061037a919061313f565b610b0c565b005b34801561038d57600080fd5b50610396610b1c565b6040516103a39190613124565b60405180910390f35b3480156103b857600080fd5b506103c1610b22565b005b3480156103cf57600080fd5b506103d8610c25565b6040516103e59190613124565b60405180910390f35b3480156103fa57600080fd5b50610415600480360381019061041091906130d5565b610c2b565b005b34801561042357600080fd5b5061043e6004803603810190610439919061313f565b610d5a565b005b34801561044c57600080fd5b50610467600480360381019061046291906132c7565b610d7a565b005b34801561047557600080fd5b50610490600480360381019061048b9190613020565b610e60565b005b34801561049e57600080fd5b506104b960048036038101906104b49190613020565b610ee6565b6040516104c6919061308e565b60405180910390f35b3480156104db57600080fd5b506104f660048036038101906104f19190613310565b610efc565b6040516105039190613124565b60405180910390f35b34801561051857600080fd5b50610521610fcb565b005b34801561052f57600080fd5b50610538611053565b6040516105459190612f14565b60405180910390f35b34801561055a57600080fd5b5061057560048036038101906105709190613369565b611066565b005b34801561058357600080fd5b5061059e60048036038101906105999190613020565b6110ff565b005b3480156105ac57600080fd5b506105b5611185565b6040516105c29190613124565b60405180910390f35b3480156105d757600080fd5b506105e061118b565b6040516105ed919061308e565b60405180910390f35b34801561060257600080fd5b5061061d60048036038101906106189190613020565b6111b5565b005b34801561062b57600080fd5b5061063461123b565b6040516106419190612fc8565b60405180910390f35b610664600480360381019061065f9190613020565b6112cd565b005b34801561067257600080fd5b5061068d60048036038101906106889190613396565b6114e4565b005b34801561069b57600080fd5b506106b660048036038101906106b19190613020565b61165b565b005b3480156106c457600080fd5b506106df60048036038101906106da9190613477565b6116e1565b005b3480156106ed57600080fd5b5061070860048036038101906107039190613020565b61175d565b005b34801561071657600080fd5b50610731600480360381019061072c9190613020565b61186c565b60405161073e9190612fc8565b60405180910390f35b34801561075357600080fd5b5061075c61190a565b005b34801561076a57600080fd5b50610785600480360381019061078091906134fa565b6119a3565b6040516107929190612f14565b60405180910390f35b3480156107a757600080fd5b506107c260048036038101906107bd9190613310565b611a37565b005b3480156107d057600080fd5b506107d9611b2e565b6040516107e69190612f14565b60405180910390f35b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614806108ba57507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b806108ca57506108c982611b41565b5b9050919050565b6060600280546108e090613569565b80601f016020809104026020016040519081016040528092919081815260200182805461090c90613569565b80156109595780601f1061092e57610100808354040283529160200191610959565b820191906000526020600020905b81548152906001019060200180831161093c57829003601f168201915b5050505050905090565b600061096e82611bab565b6109a4576040517fcf4700e400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6006600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b60006109ea82610ee6565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603610a51576040517f943f7b8c00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16610a70611bf9565b73ffffffffffffffffffffffffffffffffffffffff1614158015610aa25750610aa081610a9b611bf9565b6119a3565b155b15610ad9576040517fcfb3b94200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b610ae4838383611c01565b505050565b600e5481565b600d5481565b6000610aff611cb3565b6001546000540303905090565b610b17838383611cb8565b505050565b600b5481565b610b2a611bf9565b73ffffffffffffffffffffffffffffffffffffffff16610b4861118b565b73ffffffffffffffffffffffffffffffffffffffff1614610b9e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b95906135e6565b60405180910390fd5b600260095403610be3576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610bda90613652565b60405180910390fd5b60026009819055506000479050610c1a73af4e452d370bb2eadce0e5dbc183c7ab33070820600183610c1591906136d0565b61216c565b506001600981905550565b60105481565b80600081118015610c3e5750600e548111155b610c7d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c749061374d565b60405180910390fd5b600b5481600054610c8e919061376d565b1115610ccf576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610cc69061380f565b60405180910390fd5b610cd7611bf9565b73ffffffffffffffffffffffffffffffffffffffff16610cf561118b565b73ffffffffffffffffffffffffffffffffffffffff1614610d4b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d42906135e6565b60405180910390fd5b610d558383612260565b505050565b610d75838383604051806020016040528060008152506116e1565b505050565b610d82611bf9565b73ffffffffffffffffffffffffffffffffffffffff16610da061118b565b73ffffffffffffffffffffffffffffffffffffffff1614610df6576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ded906135e6565b60405180910390fd5b601160009054906101000a900460ff1615610e46576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e3d9061387b565b60405180910390fd5b80600c9080519060200190610e5c929190612d7a565b5050565b610e68611bf9565b73ffffffffffffffffffffffffffffffffffffffff16610e8661118b565b73ffffffffffffffffffffffffffffffffffffffff1614610edc576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ed3906135e6565b60405180910390fd5b80600e8190555050565b6000610ef18261227e565b600001519050919050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610f63576040517f8f4eb60400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600560008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160009054906101000a900467ffffffffffffffff1667ffffffffffffffff169050919050565b610fd3611bf9565b73ffffffffffffffffffffffffffffffffffffffff16610ff161118b565b73ffffffffffffffffffffffffffffffffffffffff1614611047576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161103e906135e6565b60405180910390fd5b611051600061250d565b565b600f60009054906101000a900460ff1681565b61106e611bf9565b73ffffffffffffffffffffffffffffffffffffffff1661108c61118b565b73ffffffffffffffffffffffffffffffffffffffff16146110e2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110d9906135e6565b60405180910390fd5b80600f60006101000a81548160ff02191690831515021790555050565b611107611bf9565b73ffffffffffffffffffffffffffffffffffffffff1661112561118b565b73ffffffffffffffffffffffffffffffffffffffff161461117b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611172906135e6565b60405180910390fd5b8060108190555050565b600a5481565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b6111bd611bf9565b73ffffffffffffffffffffffffffffffffffffffff166111db61118b565b73ffffffffffffffffffffffffffffffffffffffff1614611231576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611228906135e6565b60405180910390fd5b80600a8190555050565b60606003805461124a90613569565b80601f016020809104026020016040519081016040528092919081815260200182805461127690613569565b80156112c35780601f10611298576101008083540402835291602001916112c3565b820191906000526020600020905b8154815290600101906020018083116112a657829003601f168201915b5050505050905090565b806000811180156112e05750600e548111155b61131f576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113169061374d565b60405180910390fd5b600b5481600054611330919061376d565b1115611371576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113689061380f565b60405180910390fd5b600f60009054906101000a900460ff166113c0576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113b7906138e7565b60405180910390fd5b600082600a546113d09190613907565b90506010546000541015611492576000601260003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054600d5461142d9190613961565b905060008111156114905780841061146957600a548161144d9190613907565b826114589190613961565b915061146433826125d3565b61148f565b600a54846114779190613907565b826114829190613961565b915061148e33856125d3565b5b5b505b803410156114d5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114cc906139e1565b60405180910390fd5b6114df3384612260565b505050565b6114ec611bf9565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603611550576040517fb06307db00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b806007600061155d611bf9565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff1661160a611bf9565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c318360405161164f9190612f14565b60405180910390a35050565b611663611bf9565b73ffffffffffffffffffffffffffffffffffffffff1661168161118b565b73ffffffffffffffffffffffffffffffffffffffff16146116d7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116ce906135e6565b60405180910390fd5b80600d8190555050565b6116ec848484611cb8565b61170b8373ffffffffffffffffffffffffffffffffffffffff1661262d565b8015611720575061171e84848484612650565b155b15611757576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b50505050565b611765611bf9565b73ffffffffffffffffffffffffffffffffffffffff1661178361118b565b73ffffffffffffffffffffffffffffffffffffffff16146117d9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117d0906135e6565b60405180910390fd5b600b54811061181d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161181490613a4d565b60405180910390fd5b600054811015611862576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161185990613a4d565b60405180910390fd5b80600b8190555050565b606061187782611bab565b6118ad576040517fa14c4b5000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b60006118b76127a0565b905060008151036118d75760405180602001604052806000815250611902565b806118e184612832565b6040516020016118f2929190613aa9565b6040516020818303038152906040525b915050919050565b611912611bf9565b73ffffffffffffffffffffffffffffffffffffffff1661193061118b565b73ffffffffffffffffffffffffffffffffffffffff1614611986576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161197d906135e6565b60405180910390fd5b6001601160006101000a81548160ff021916908315150217905550565b6000600760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b611a3f611bf9565b73ffffffffffffffffffffffffffffffffffffffff16611a5d61118b565b73ffffffffffffffffffffffffffffffffffffffff1614611ab3576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611aaa906135e6565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603611b22576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b1990613b3f565b60405180910390fd5b611b2b8161250d565b50565b601160009054906101000a900460ff1681565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b600081611bb6611cb3565b11158015611bc5575060005482105b8015611bf2575060046000838152602001908152602001600020600001601c9054906101000a900460ff16155b9050919050565b600033905090565b826006600084815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b600090565b6000611cc38261227e565b90508373ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff1614611d2e576040517fa114810000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b60008473ffffffffffffffffffffffffffffffffffffffff16611d4f611bf9565b73ffffffffffffffffffffffffffffffffffffffff161480611d7e5750611d7d85611d78611bf9565b6119a3565b5b80611dc35750611d8c611bf9565b73ffffffffffffffffffffffffffffffffffffffff16611dab84610963565b73ffffffffffffffffffffffffffffffffffffffff16145b905080611dfc576040517f59c896be00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1603611e62576040517fea553b3400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b611e6f8585856001612992565b611e7b60008487611c01565b6001600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a900467ffffffffffffffff160392506101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055506001600560008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a900467ffffffffffffffff160192506101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055506000600460008581526020019081526020016000209050848160000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550428160000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff16021790555060006001850190506000600460008381526020019081526020016000209050600073ffffffffffffffffffffffffffffffffffffffff168160000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16036120fa5760005482146120f957878160000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555084602001518160000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055505b5b505050828473ffffffffffffffffffffffffffffffffffffffff168673ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a46121658585856001612998565b5050505050565b804710156121af576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016121a690613bab565b60405180910390fd5b60008273ffffffffffffffffffffffffffffffffffffffff16826040516121d590613bfc565b60006040518083038185875af1925050503d8060008114612212576040519150601f19603f3d011682016040523d82523d6000602084013e612217565b606091505b505090508061225b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161225290613c83565b60405180910390fd5b505050565b61227a82826040518060200160405280600081525061299e565b5050565b612286612e00565b600082905080612294611cb3565b111580156122a3575060005481105b156124d6576000600460008381526020019081526020016000206040518060600160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815260200160008201601c9054906101000a900460ff161515151581525050905080604001516124d457600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff16146123b8578092505050612508565b5b6001156124d357818060019003925050600460008381526020019081526020016000206040518060600160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815260200160008201601c9054906101000a900460ff1615151515815250509050600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff16146124ce578092505050612508565b6123b9565b5b505b6040517fdf2d9b4200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b919050565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b80601260008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254612622919061376d565b925050819055505050565b6000808273ffffffffffffffffffffffffffffffffffffffff163b119050919050565b60008373ffffffffffffffffffffffffffffffffffffffff1663150b7a02612676611bf9565b8786866040518563ffffffff1660e01b81526004016126989493929190613cf8565b6020604051808303816000875af19250505080156126d457506040513d601f19601f820116820180604052508101906126d19190613d59565b60015b61274d573d8060008114612704576040519150601f19603f3d011682016040523d82523d6000602084013e612709565b606091505b506000815103612745576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050949350505050565b6060600c80546127af90613569565b80601f01602080910402602001604051908101604052809291908181526020018280546127db90613569565b80156128285780601f106127fd57610100808354040283529160200191612828565b820191906000526020600020905b81548152906001019060200180831161280b57829003601f168201915b5050505050905090565b606060008203612879576040518060400160405280600181526020017f3000000000000000000000000000000000000000000000000000000000000000815250905061298d565b600082905060005b600082146128ab57808061289490613d86565b915050600a826128a491906136d0565b9150612881565b60008167ffffffffffffffff8111156128c7576128c661319c565b5b6040519080825280601f01601f1916602001820160405280156128f95781602001600182028036833780820191505090505b5090505b60008514612986576001826129129190613961565b9150600a856129219190613dce565b603061292d919061376d565b60f81b81838151811061294357612942613dff565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a8561297f91906136d0565b94506128fd565b8093505050505b919050565b50505050565b50505050565b6129ab83838360016129b0565b505050565b600080549050600073ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff1603612a1c576040517f2e07630000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b60008403612a56576040517fb562e8dd00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b612a636000868387612992565b83600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a900467ffffffffffffffff160192506101000a81548167ffffffffffffffff021916908367ffffffffffffffff16021790555083600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160088282829054906101000a900467ffffffffffffffff160192506101000a81548167ffffffffffffffff021916908367ffffffffffffffff160217905550846004600083815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550426004600083815260200190815260200160002060000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff160217905550600081905060008582019050838015612c2d5750612c2c8773ffffffffffffffffffffffffffffffffffffffff1661262d565b5b15612cf2575b818773ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4612ca26000888480600101955088612650565b612cd8576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b808203612c33578260005414612ced57600080fd5b612d5d565b5b818060010192508773ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4808203612cf3575b816000819055505050612d736000868387612998565b5050505050565b828054612d8690613569565b90600052602060002090601f016020900481019282612da85760008555612def565b82601f10612dc157805160ff1916838001178555612def565b82800160010185558215612def579182015b82811115612dee578251825591602001919060010190612dd3565b5b509050612dfc9190612e43565b5090565b6040518060600160405280600073ffffffffffffffffffffffffffffffffffffffff168152602001600067ffffffffffffffff1681526020016000151581525090565b5b80821115612e5c576000816000905550600101612e44565b5090565b6000604051905090565b600080fd5b600080fd5b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b612ea981612e74565b8114612eb457600080fd5b50565b600081359050612ec681612ea0565b92915050565b600060208284031215612ee257612ee1612e6a565b5b6000612ef084828501612eb7565b91505092915050565b60008115159050919050565b612f0e81612ef9565b82525050565b6000602082019050612f296000830184612f05565b92915050565b600081519050919050565b600082825260208201905092915050565b60005b83811015612f69578082015181840152602081019050612f4e565b83811115612f78576000848401525b50505050565b6000601f19601f8301169050919050565b6000612f9a82612f2f565b612fa48185612f3a565b9350612fb4818560208601612f4b565b612fbd81612f7e565b840191505092915050565b60006020820190508181036000830152612fe28184612f8f565b905092915050565b6000819050919050565b612ffd81612fea565b811461300857600080fd5b50565b60008135905061301a81612ff4565b92915050565b60006020828403121561303657613035612e6a565b5b60006130448482850161300b565b91505092915050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b60006130788261304d565b9050919050565b6130888161306d565b82525050565b60006020820190506130a3600083018461307f565b92915050565b6130b28161306d565b81146130bd57600080fd5b50565b6000813590506130cf816130a9565b92915050565b600080604083850312156130ec576130eb612e6a565b5b60006130fa858286016130c0565b925050602061310b8582860161300b565b9150509250929050565b61311e81612fea565b82525050565b60006020820190506131396000830184613115565b92915050565b60008060006060848603121561315857613157612e6a565b5b6000613166868287016130c0565b9350506020613177868287016130c0565b92505060406131888682870161300b565b9150509250925092565b600080fd5b600080fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6131d482612f7e565b810181811067ffffffffffffffff821117156131f3576131f261319c565b5b80604052505050565b6000613206612e60565b905061321282826131cb565b919050565b600067ffffffffffffffff8211156132325761323161319c565b5b61323b82612f7e565b9050602081019050919050565b82818337600083830152505050565b600061326a61326584613217565b6131fc565b90508281526020810184848401111561328657613285613197565b5b613291848285613248565b509392505050565b600082601f8301126132ae576132ad613192565b5b81356132be848260208601613257565b91505092915050565b6000602082840312156132dd576132dc612e6a565b5b600082013567ffffffffffffffff8111156132fb576132fa612e6f565b5b61330784828501613299565b91505092915050565b60006020828403121561332657613325612e6a565b5b6000613334848285016130c0565b91505092915050565b61334681612ef9565b811461335157600080fd5b50565b6000813590506133638161333d565b92915050565b60006020828403121561337f5761337e612e6a565b5b600061338d84828501613354565b91505092915050565b600080604083850312156133ad576133ac612e6a565b5b60006133bb858286016130c0565b92505060206133cc85828601613354565b9150509250929050565b600067ffffffffffffffff8211156133f1576133f061319c565b5b6133fa82612f7e565b9050602081019050919050565b600061341a613415846133d6565b6131fc565b90508281526020810184848401111561343657613435613197565b5b613441848285613248565b509392505050565b600082601f83011261345e5761345d613192565b5b813561346e848260208601613407565b91505092915050565b6000806000806080858703121561349157613490612e6a565b5b600061349f878288016130c0565b94505060206134b0878288016130c0565b93505060406134c18782880161300b565b925050606085013567ffffffffffffffff8111156134e2576134e1612e6f565b5b6134ee87828801613449565b91505092959194509250565b6000806040838503121561351157613510612e6a565b5b600061351f858286016130c0565b9250506020613530858286016130c0565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b6000600282049050600182168061358157607f821691505b6020821081036135945761359361353a565b5b50919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b60006135d0602083612f3a565b91506135db8261359a565b602082019050919050565b600060208201905081810360008301526135ff816135c3565b9050919050565b7f5265656e7472616e637947756172643a207265656e7472616e742063616c6c00600082015250565b600061363c601f83612f3a565b915061364782613606565b602082019050919050565b6000602082019050818103600083015261366b8161362f565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b60006136db82612fea565b91506136e683612fea565b9250826136f6576136f5613672565b5b828204905092915050565b7f496e76616c6964206d696e7420616d6f756e7421000000000000000000000000600082015250565b6000613737601483612f3a565b915061374282613701565b602082019050919050565b600060208201905081810360008301526137668161372a565b9050919050565b600061377882612fea565b915061378383612fea565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff038211156137b8576137b76136a1565b5b828201905092915050565b7f4d617820737570706c7920657863656564656421000000000000000000000000600082015250565b60006137f9601483612f3a565b9150613804826137c3565b602082019050919050565b60006020820190508181036000830152613828816137ec565b9050919050565b7f4d657461646174612066726f7a656e2100000000000000000000000000000000600082015250565b6000613865601083612f3a565b91506138708261382f565b602082019050919050565b6000602082019050818103600083015261389481613858565b9050919050565b7f53616c65206973206e6f74206163746976652100000000000000000000000000600082015250565b60006138d1601383612f3a565b91506138dc8261389b565b602082019050919050565b60006020820190508181036000830152613900816138c4565b9050919050565b600061391282612fea565b915061391d83612fea565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0483118215151615613956576139556136a1565b5b828202905092915050565b600061396c82612fea565b915061397783612fea565b92508282101561398a576139896136a1565b5b828203905092915050565b7f496e73756666696369656e742066756e64732100000000000000000000000000600082015250565b60006139cb601383612f3a565b91506139d682613995565b602082019050919050565b600060208201905081810360008301526139fa816139be565b9050919050565b7f496e76616c6964206e6577206d617820737570706c7900000000000000000000600082015250565b6000613a37601683612f3a565b9150613a4282613a01565b602082019050919050565b60006020820190508181036000830152613a6681613a2a565b9050919050565b600081905092915050565b6000613a8382612f2f565b613a8d8185613a6d565b9350613a9d818560208601612f4b565b80840191505092915050565b6000613ab58285613a78565b9150613ac18284613a78565b91508190509392505050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b6000613b29602683612f3a565b9150613b3482613acd565b604082019050919050565b60006020820190508181036000830152613b5881613b1c565b9050919050565b7f416464726573733a20696e73756666696369656e742062616c616e6365000000600082015250565b6000613b95601d83612f3a565b9150613ba082613b5f565b602082019050919050565b60006020820190508181036000830152613bc481613b88565b9050919050565b600081905092915050565b50565b6000613be6600083613bcb565b9150613bf182613bd6565b600082019050919050565b6000613c0782613bd9565b9150819050919050565b7f416464726573733a20756e61626c6520746f2073656e642076616c75652c207260008201527f6563697069656e74206d61792068617665207265766572746564000000000000602082015250565b6000613c6d603a83612f3a565b9150613c7882613c11565b604082019050919050565b60006020820190508181036000830152613c9c81613c60565b9050919050565b600081519050919050565b600082825260208201905092915050565b6000613cca82613ca3565b613cd48185613cae565b9350613ce4818560208601612f4b565b613ced81612f7e565b840191505092915050565b6000608082019050613d0d600083018761307f565b613d1a602083018661307f565b613d276040830185613115565b8181036060830152613d398184613cbf565b905095945050505050565b600081519050613d5381612ea0565b92915050565b600060208284031215613d6f57613d6e612e6a565b5b6000613d7d84828501613d44565b91505092915050565b6000613d9182612fea565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8203613dc357613dc26136a1565b5b600182019050919050565b6000613dd982612fea565b9150613de483612fea565b925082613df457613df3613672565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fdfea264697066735822122000cec910bdd750212fe415476f5f4b88c1c17f3a677fbd88b147be183445945164736f6c634300080d0033

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

000000000000000000000000000000000000000000000000002386f26fc10000000000000000000000000000000000000000000000000000000000000000271000000000000000000000000000000000000000000000000000000000000000e000000000000000000000000000000000000000000000000000000000000000050000000000000000000000000000000000000000000000000000000000000064000000000000000000000000000000000000000000000000000000000000000100000000000000000000000000000000000000000000000000000000000003e8000000000000000000000000000000000000000000000000000000000000003068747470733a2f2f697a6b756b612d6d657461646174612e6865726f6b756170702e636f6d2f6170692f696b757a612f00000000000000000000000000000000

-----Decoded View---------------
Arg [0] : price (uint256): 10000000000000000
Arg [1] : maxSupply (uint256): 10000
Arg [2] : baseUri (string): https://izkuka-metadata.herokuapp.com/api/ikuza/
Arg [3] : freeMintAllowance (uint256): 5
Arg [4] : maxMintPerTx (uint256): 100
Arg [5] : isSaleActive (bool): True
Arg [6] : freeMintIsAllowedUntil (uint256): 1000

-----Encoded View---------------
10 Constructor Arguments found :
Arg [0] : 000000000000000000000000000000000000000000000000002386f26fc10000
Arg [1] : 0000000000000000000000000000000000000000000000000000000000002710
Arg [2] : 00000000000000000000000000000000000000000000000000000000000000e0
Arg [3] : 0000000000000000000000000000000000000000000000000000000000000005
Arg [4] : 0000000000000000000000000000000000000000000000000000000000000064
Arg [5] : 0000000000000000000000000000000000000000000000000000000000000001
Arg [6] : 00000000000000000000000000000000000000000000000000000000000003e8
Arg [7] : 0000000000000000000000000000000000000000000000000000000000000030
Arg [8] : 68747470733a2f2f697a6b756b612d6d657461646174612e6865726f6b756170
Arg [9] : 702e636f6d2f6170692f696b757a612f00000000000000000000000000000000


Deployed Bytecode Sourcemap

47578:4368:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;29764:305;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;32877:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;34380:204;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;33943:371;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;47809:37;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;47761:41;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;29013:303;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;35245:170;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;47699:25;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;51770:173;;;;;;;;;;;;;:::i;:::-;;47886:41;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;51454:176;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;35486:185;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;49290:169;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;49639:122;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;32685:125;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;30133:206;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;7522:103;;;;;;;;;;;;;:::i;:::-;;47853:26;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;49769:109;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;49886:177;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;47672:20;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;6871:87;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;48923:96;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;33046:104;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;50517:929;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;34656:287;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;49467:164;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;35742:369;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;49027:255;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;33221:318;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;50071:86;;;;;;;;;;;;;:::i;:::-;;35014:164;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;7780:201;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;47934:27;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;29764:305;29866:4;29918:25;29903:40;;;:11;:40;;;;:105;;;;29975:33;29960:48;;;:11;:48;;;;29903:105;:158;;;;30025:36;30049:11;30025:23;:36::i;:::-;29903:158;29883:178;;29764:305;;;:::o;32877:100::-;32931:13;32964:5;32957:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;32877:100;:::o;34380:204::-;34448:7;34473:16;34481:7;34473;:16::i;:::-;34468:64;;34498:34;;;;;;;;;;;;;;34468:64;34552:15;:24;34568:7;34552:24;;;;;;;;;;;;;;;;;;;;;34545:31;;34380:204;;;:::o;33943:371::-;34016:13;34032:24;34048:7;34032:15;:24::i;:::-;34016:40;;34077:5;34071:11;;:2;:11;;;34067:48;;34091:24;;;;;;;;;;;;;;34067:48;34148:5;34132:21;;:12;:10;:12::i;:::-;:21;;;;:63;;;;;34158:37;34175:5;34182:12;:10;:12::i;:::-;34158:16;:37::i;:::-;34157:38;34132:63;34128:138;;;34219:35;;;;;;;;;;;;;;34128:138;34278:28;34287:2;34291:7;34300:5;34278:8;:28::i;:::-;34005:309;33943:371;;:::o;47809:37::-;;;;:::o;47761:41::-;;;;:::o;29013:303::-;29057:7;29282:15;:13;:15::i;:::-;29267:12;;29251:13;;:28;:46;29244:53;;29013:303;:::o;35245:170::-;35379:28;35389:4;35395:2;35399:7;35379:9;:28::i;:::-;35245:170;;;:::o;47699:25::-;;;;:::o;51770:173::-;7102:12;:10;:12::i;:::-;7091:23;;:7;:5;:7::i;:::-;:23;;;7083:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;1845:1:::1;2443:7;;:19:::0;2435:63:::1;;;;;;;;;;;;:::i;:::-;;;;;;;;;1845:1;2576:7;:18;;;;51831:15:::2;51849:21;51831:39;;51881:54;51711:42;51933:1;51924:7;:10;;;;:::i;:::-;51881:17;:54::i;:::-;51820:123;1801:1:::1;2755:7;:22;;;;51770:173::o:0;47886:41::-;;;;:::o;51454:176::-;51547:11;50277:1;50263:11;:15;:56;;;;;50297:22;;50282:11;:37;;50263:56;50241:126;;;;;;;;;;;;:::i;:::-;;;;;;;;;50431:10;;50416:11;50400:13;;:27;;;;:::i;:::-;:41;;50378:111;;;;;;;;;;;;:::i;:::-;;;;;;;;;7102:12:::1;:10;:12::i;:::-;7091:23;;:7;:5;:7::i;:::-;:23;;;7083:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;51595:27:::2;51605:3;51610:11;51595:9;:27::i;:::-;51454:176:::0;;;:::o;35486:185::-;35624:39;35641:4;35647:2;35651:7;35624:39;;;;;;;;;;;;:16;:39::i;:::-;35486:185;;;:::o;49290:169::-;7102:12;:10;:12::i;:::-;7091:23;;:7;:5;:7::i;:::-;:23;;;7083:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;49379:15:::1;;;;;;;;;;;49378:16;49370:45;;;;;;;;;;;;:::i;:::-;;;;;;;;;49437:14;49426:8;:25;;;;;;;;;;;;:::i;:::-;;49290:169:::0;:::o;49639:122::-;7102:12;:10;:12::i;:::-;7091:23;;:7;:5;:7::i;:::-;:23;;;7083:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;49741:12:::1;49716:22;:37;;;;49639:122:::0;:::o;32685:125::-;32749:7;32776:21;32789:7;32776:12;:21::i;:::-;:26;;;32769:33;;32685:125;;;:::o;30133:206::-;30197:7;30238:1;30221:19;;:5;:19;;;30217:60;;30249:28;;;;;;;;;;;;;;30217:60;30303:12;:19;30316:5;30303:19;;;;;;;;;;;;;;;:27;;;;;;;;;;;;30295:36;;30288:43;;30133:206;;;:::o;7522:103::-;7102:12;:10;:12::i;:::-;7091:23;;:7;:5;:7::i;:::-;:23;;;7083:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;7587:30:::1;7614:1;7587:18;:30::i;:::-;7522:103::o:0;47853:26::-;;;;;;;;;;;;;:::o;49769:109::-;7102:12;:10;:12::i;:::-;7091:23;;:7;:5;:7::i;:::-;:23;;;7083:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;49858:12:::1;49841:14;;:29;;;;;;;;;;;;;;;;;;49769:109:::0;:::o;49886:177::-;7102:12;:10;:12::i;:::-;7091:23;;:7;:5;:7::i;:::-;:23;;;7083:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;50033:22:::1;50004:26;:51;;;;49886:177:::0;:::o;47672:20::-;;;;:::o;6871:87::-;6917:7;6944:6;;;;;;;;;;;6937:13;;6871:87;:::o;48923:96::-;7102:12;:10;:12::i;:::-;7091:23;;:7;:5;:7::i;:::-;:23;;;7083:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;49000:11:::1;48992:5;:19;;;;48923:96:::0;:::o;33046:104::-;33102:13;33135:7;33128:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;33046:104;:::o;50517:929::-;50609:11;50277:1;50263:11;:15;:56;;;;;50297:22;;50282:11;:37;;50263:56;50241:126;;;;;;;;;;;;:::i;:::-;;;;;;;;;50431:10;;50416:11;50400:13;;:27;;;;:::i;:::-;:41;;50378:111;;;;;;;;;;;;:::i;:::-;;;;;;;;;50646:14:::1;;;;;;;;;;;50638:46;;;;;;;;;;;;:::i;:::-;;;;;;;;;50697:13;50721:11;50713:5;;:19;;;;:::i;:::-;50697:35;;50765:26;;50749:13;;:42;50745:584;;;50808:25;50882:16;:28;50899:10;50882:28;;;;;;;;;;;;;;;;50836:26;;:74;;;;:::i;:::-;50808:102;;50949:1;50929:17;:21;50925:393;;;50990:17;50975:11;:32;50971:332;;51061:5;;51041:17;:25;;;;:::i;:::-;51032:34;;;;;:::i;:::-;;;51089:50;51109:10;51121:17;51089:19;:50::i;:::-;50971:332;;;51211:5;;51197:11;:19;;;;:::i;:::-;51188:28;;;;;:::i;:::-;;;51239:44;51259:10;51271:11;51239:19;:44::i;:::-;50971:332;50925:393;50793:536;50745:584;51362:5;51349:9;:18;;51341:50;;;;;;;;;;;;:::i;:::-;;;;;;;;;51404:34;51414:10;51426:11;51404:9;:34::i;:::-;50627:819;50517:929:::0;;:::o;34656:287::-;34767:12;:10;:12::i;:::-;34755:24;;:8;:24;;;34751:54;;34788:17;;;;;;;;;;;;;;34751:54;34863:8;34818:18;:32;34837:12;:10;:12::i;:::-;34818:32;;;;;;;;;;;;;;;:42;34851:8;34818:42;;;;;;;;;;;;;;;;:53;;;;;;;;;;;;;;;;;;34916:8;34887:48;;34902:12;:10;:12::i;:::-;34887:48;;;34926:8;34887:48;;;;;;:::i;:::-;;;;;;;;34656:287;;:::o;49467:164::-;7102:12;:10;:12::i;:::-;7091:23;;:7;:5;:7::i;:::-;:23;;;7083:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;49606:17:::1;49577:26;:46;;;;49467:164:::0;:::o;35742:369::-;35909:28;35919:4;35925:2;35929:7;35909:9;:28::i;:::-;35952:15;:2;:13;;;:15::i;:::-;:76;;;;;35972:56;36003:4;36009:2;36013:7;36022:5;35972:30;:56::i;:::-;35971:57;35952:76;35948:156;;;36052:40;;;;;;;;;;;;;;35948:156;35742:369;;;;:::o;49027:255::-;7102:12;:10;:12::i;:::-;7091:23;;:7;:5;:7::i;:::-;:23;;;7083:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;49126:10:::1;;49111:12;:25;49103:60;;;;;;;;;;;;:::i;:::-;;;;;;;;;49198:13;;49182:12;:29;;49174:64;;;;;;;;;;;;:::i;:::-;;;;;;;;;49262:12;49249:10;:25;;;;49027:255:::0;:::o;33221:318::-;33294:13;33325:16;33333:7;33325;:16::i;:::-;33320:59;;33350:29;;;;;;;;;;;;;;33320:59;33392:21;33416:10;:8;:10::i;:::-;33392:34;;33469:1;33450:7;33444:21;:26;:87;;;;;;;;;;;;;;;;;33497:7;33506:18;:7;:16;:18::i;:::-;33480:45;;;;;;;;;:::i;:::-;;;;;;;;;;;;;33444:87;33437:94;;;33221:318;;;:::o;50071:86::-;7102:12;:10;:12::i;:::-;7091:23;;:7;:5;:7::i;:::-;:23;;;7083:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;50145:4:::1;50127:15;;:22;;;;;;;;;;;;;;;;;;50071:86::o:0;35014:164::-;35111:4;35135:18;:25;35154:5;35135:25;;;;;;;;;;;;;;;:35;35161:8;35135:35;;;;;;;;;;;;;;;;;;;;;;;;;35128:42;;35014:164;;;;:::o;7780:201::-;7102:12;:10;:12::i;:::-;7091:23;;:7;:5;:7::i;:::-;:23;;;7083:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;7889:1:::1;7869:22;;:8;:22;;::::0;7861:73:::1;;;;;;;;;;;;:::i;:::-;;;;;;;;;7945:28;7964:8;7945:18;:28::i;:::-;7780:201:::0;:::o;47934:27::-;;;;;;;;;;;;;:::o;19655:157::-;19740:4;19779:25;19764:40;;;:11;:40;;;;19757:47;;19655:157;;;:::o;36366:174::-;36423:4;36466:7;36447:15;:13;:15::i;:::-;:26;;:53;;;;;36487:13;;36477:7;:23;36447:53;:85;;;;;36505:11;:20;36517:7;36505:20;;;;;;;;;;;:27;;;;;;;;;;;;36504:28;36447:85;36440:92;;36366:174;;;:::o;5595:98::-;5648:7;5675:10;5668:17;;5595:98;:::o;44523:196::-;44665:2;44638:15;:24;44654:7;44638:24;;;;;;;;;;;;:29;;;;;;;;;;;;;;;;;;44703:7;44699:2;44683:28;;44692:5;44683:28;;;;;;;;;;;;44523:196;;;:::o;28787:92::-;28843:7;28787:92;:::o;39466:2130::-;39581:35;39619:21;39632:7;39619:12;:21::i;:::-;39581:59;;39679:4;39657:26;;:13;:18;;;:26;;;39653:67;;39692:28;;;;;;;;;;;;;;39653:67;39733:22;39775:4;39759:20;;:12;:10;:12::i;:::-;:20;;;:73;;;;39796:36;39813:4;39819:12;:10;:12::i;:::-;39796:16;:36::i;:::-;39759:73;:126;;;;39873:12;:10;:12::i;:::-;39849:36;;:20;39861:7;39849:11;:20::i;:::-;:36;;;39759:126;39733:153;;39904:17;39899:66;;39930:35;;;;;;;;;;;;;;39899:66;39994:1;39980:16;;:2;:16;;;39976:52;;40005:23;;;;;;;;;;;;;;39976:52;40041:43;40063:4;40069:2;40073:7;40082:1;40041:21;:43::i;:::-;40149:35;40166:1;40170:7;40179:4;40149:8;:35::i;:::-;40510:1;40480:12;:18;40493:4;40480:18;;;;;;;;;;;;;;;:26;;;:31;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;40554:1;40526:12;:16;40539:2;40526:16;;;;;;;;;;;;;;;:24;;;:29;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;40572:31;40606:11;:20;40618:7;40606:20;;;;;;;;;;;40572:54;;40657:2;40641:8;:13;;;:18;;;;;;;;;;;;;;;;;;40707:15;40674:8;:23;;;:49;;;;;;;;;;;;;;;;;;40975:19;41007:1;40997:7;:11;40975:33;;41023:31;41057:11;:24;41069:11;41057:24;;;;;;;;;;;41023:58;;41125:1;41100:27;;:8;:13;;;;;;;;;;;;:27;;;41096:384;;41310:13;;41295:11;:28;41291:174;;41364:4;41348:8;:13;;;:20;;;;;;;;;;;;;;;;;;41417:13;:28;;;41391:8;:23;;;:54;;;;;;;;;;;;;;;;;;41291:174;41096:384;40455:1036;;;41527:7;41523:2;41508:27;;41517:4;41508:27;;;;;;;;;;;;41546:42;41567:4;41573:2;41577:7;41586:1;41546:20;:42::i;:::-;39570:2026;;39466:2130;;;:::o;10833:317::-;10948:6;10923:21;:31;;10915:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;11002:12;11020:9;:14;;11042:6;11020:33;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;11001:52;;;11072:7;11064:78;;;;;;;;;;;;:::i;:::-;;;;;;;;;10904:246;10833:317;;:::o;36548:104::-;36617:27;36627:2;36631:8;36617:27;;;;;;;;;;;;:9;:27::i;:::-;36548:104;;:::o;31514:1109::-;31576:21;;:::i;:::-;31610:12;31625:7;31610:22;;31693:4;31674:15;:13;:15::i;:::-;:23;;:47;;;;;31708:13;;31701:4;:20;31674:47;31670:886;;;31742:31;31776:11;:17;31788:4;31776:17;;;;;;;;;;;31742:51;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;31817:9;:16;;;31812:729;;31888:1;31862:28;;:9;:14;;;:28;;;31858:101;;31926:9;31919:16;;;;;;31858:101;32261:261;32268:4;32261:261;;;32301:6;;;;;;;;32346:11;:17;32358:4;32346:17;;;;;;;;;;;32334:29;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;32420:1;32394:28;;:9;:14;;;:28;;;32390:109;;32462:9;32455:16;;;;;;32390:109;32261:261;;;31812:729;31723:833;31670:886;32584:31;;;;;;;;;;;;;;31514:1109;;;;:::o;8141:191::-;8215:16;8234:6;;;;;;;;;;;8215:25;;8260:8;8251:6;;:17;;;;;;;;;;;;;;;;;;8315:8;8284:40;;8305:8;8284:40;;;;;;;;;;;;8204:128;8141:191;:::o;48631:120::-;48738:5;48710:16;:24;48727:6;48710:24;;;;;;;;;;;;;;;;:33;;;;;;;:::i;:::-;;;;;;;;48631:120;;:::o;9572:326::-;9632:4;9889:1;9867:7;:19;;;:23;9860:30;;9572:326;;;:::o;45211:667::-;45374:4;45411:2;45395:36;;;45432:12;:10;:12::i;:::-;45446:4;45452:7;45461:5;45395:72;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;45391:480;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;45646:1;45629:6;:13;:18;45625:235;;45675:40;;;;;;;;;;;;;;45625:235;45818:6;45812:13;45803:6;45799:2;45795:15;45788:38;45391:480;45524:45;;;45514:55;;;:6;:55;;;;45507:62;;;45211:667;;;;;;:::o;48783:109::-;48843:13;48876:8;48869:15;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;48783:109;:::o;3157:723::-;3213:13;3443:1;3434:5;:10;3430:53;;3461:10;;;;;;;;;;;;;;;;;;;;;3430:53;3493:12;3508:5;3493:20;;3524:14;3549:78;3564:1;3556:4;:9;3549:78;;3582:8;;;;;:::i;:::-;;;;3613:2;3605:10;;;;;:::i;:::-;;;3549:78;;;3637:19;3669:6;3659:17;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3637:39;;3687:154;3703:1;3694:5;:10;3687:154;;3731:1;3721:11;;;;;:::i;:::-;;;3798:2;3790:5;:10;;;;:::i;:::-;3777:2;:24;;;;:::i;:::-;3764:39;;3747:6;3754;3747:14;;;;;;;;:::i;:::-;;;;;:56;;;;;;;;;;;3827:2;3818:11;;;;;:::i;:::-;;;3687:154;;;3865:6;3851:21;;;;;3157:723;;;;:::o;46526:159::-;;;;;:::o;47344:158::-;;;;;:::o;37015:163::-;37138:32;37144:2;37148:8;37158:5;37165:4;37138:5;:32::i;:::-;37015:163;;;:::o;37437:1775::-;37576:20;37599:13;;37576:36;;37641:1;37627:16;;:2;:16;;;37623:48;;37652:19;;;;;;;;;;;;;;37623:48;37698:1;37686:8;:13;37682:44;;37708:18;;;;;;;;;;;;;;37682:44;37739:61;37769:1;37773:2;37777:12;37791:8;37739:21;:61::i;:::-;38112:8;38077:12;:16;38090:2;38077:16;;;;;;;;;;;;;;;:24;;;:44;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;38176:8;38136:12;:16;38149:2;38136:16;;;;;;;;;;;;;;;:29;;;:49;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;38235:2;38202:11;:25;38214:12;38202:25;;;;;;;;;;;:30;;;:35;;;;;;;;;;;;;;;;;;38302:15;38252:11;:25;38264:12;38252:25;;;;;;;;;;;:40;;;:66;;;;;;;;;;;;;;;;;;38335:20;38358:12;38335:35;;38385:11;38414:8;38399:12;:23;38385:37;;38443:4;:23;;;;;38451:15;:2;:13;;;:15::i;:::-;38443:23;38439:641;;;38487:314;38543:12;38539:2;38518:38;;38535:1;38518:38;;;;;;;;;;;;38584:69;38623:1;38627:2;38631:14;;;;;;38647:5;38584:30;:69::i;:::-;38579:174;;38689:40;;;;;;;;;;;;;;38579:174;38796:3;38780:12;:19;38487:314;;38882:12;38865:13;;:29;38861:43;;38896:8;;;38861:43;38439:641;;;38945:120;39001:14;;;;;;38997:2;38976:40;;38993:1;38976:40;;;;;;;;;;;;39060:3;39044:12;:19;38945:120;;38439:641;39110:12;39094:13;:28;;;;38052:1082;;39144:60;39173:1;39177:2;39181:12;39195:8;39144:20;:60::i;:::-;37565:1647;37437:1775;;;;:::o;-1:-1:-1:-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;:::-;;;;;;;;;;;;;;;;;;;;;:::o;7:75:1:-;40:6;73:2;67:9;57:19;;7:75;:::o;88:117::-;197:1;194;187:12;211:117;320:1;317;310:12;334:149;370:7;410:66;403:5;399:78;388:89;;334:149;;;:::o;489:120::-;561:23;578:5;561:23;:::i;:::-;554:5;551:34;541:62;;599:1;596;589:12;541:62;489:120;:::o;615:137::-;660:5;698:6;685:20;676:29;;714:32;740:5;714:32;:::i;:::-;615:137;;;;:::o;758:327::-;816:6;865:2;853:9;844:7;840:23;836:32;833:119;;;871:79;;:::i;:::-;833:119;991:1;1016:52;1060:7;1051:6;1040:9;1036:22;1016:52;:::i;:::-;1006:62;;962:116;758:327;;;;:::o;1091:90::-;1125:7;1168:5;1161:13;1154:21;1143:32;;1091:90;;;:::o;1187:109::-;1268:21;1283:5;1268:21;:::i;:::-;1263:3;1256:34;1187:109;;:::o;1302:210::-;1389:4;1427:2;1416:9;1412:18;1404:26;;1440:65;1502:1;1491:9;1487:17;1478:6;1440:65;:::i;:::-;1302:210;;;;:::o;1518:99::-;1570:6;1604:5;1598:12;1588:22;;1518:99;;;:::o;1623:169::-;1707:11;1741:6;1736:3;1729:19;1781:4;1776:3;1772:14;1757:29;;1623:169;;;;:::o;1798:307::-;1866:1;1876:113;1890:6;1887:1;1884:13;1876:113;;;1975:1;1970:3;1966:11;1960:18;1956:1;1951:3;1947:11;1940:39;1912:2;1909:1;1905:10;1900:15;;1876:113;;;2007:6;2004:1;2001:13;1998:101;;;2087:1;2078:6;2073:3;2069:16;2062:27;1998:101;1847:258;1798:307;;;:::o;2111:102::-;2152:6;2203:2;2199:7;2194:2;2187:5;2183:14;2179:28;2169:38;;2111:102;;;:::o;2219:364::-;2307:3;2335:39;2368:5;2335:39;:::i;:::-;2390:71;2454:6;2449:3;2390:71;:::i;:::-;2383:78;;2470:52;2515:6;2510:3;2503:4;2496:5;2492:16;2470:52;:::i;:::-;2547:29;2569:6;2547:29;:::i;:::-;2542:3;2538:39;2531:46;;2311:272;2219:364;;;;:::o;2589:313::-;2702:4;2740:2;2729:9;2725:18;2717:26;;2789:9;2783:4;2779:20;2775:1;2764:9;2760:17;2753:47;2817:78;2890:4;2881:6;2817:78;:::i;:::-;2809:86;;2589:313;;;;:::o;2908:77::-;2945:7;2974:5;2963:16;;2908:77;;;:::o;2991:122::-;3064:24;3082:5;3064:24;:::i;:::-;3057:5;3054:35;3044:63;;3103:1;3100;3093:12;3044:63;2991:122;:::o;3119:139::-;3165:5;3203:6;3190:20;3181:29;;3219:33;3246:5;3219:33;:::i;:::-;3119:139;;;;:::o;3264:329::-;3323:6;3372:2;3360:9;3351:7;3347:23;3343:32;3340:119;;;3378:79;;:::i;:::-;3340:119;3498:1;3523:53;3568:7;3559:6;3548:9;3544:22;3523:53;:::i;:::-;3513:63;;3469:117;3264:329;;;;:::o;3599:126::-;3636:7;3676:42;3669:5;3665:54;3654:65;;3599:126;;;:::o;3731:96::-;3768:7;3797:24;3815:5;3797:24;:::i;:::-;3786:35;;3731:96;;;:::o;3833:118::-;3920:24;3938:5;3920:24;:::i;:::-;3915:3;3908:37;3833:118;;:::o;3957:222::-;4050:4;4088:2;4077:9;4073:18;4065:26;;4101:71;4169:1;4158:9;4154:17;4145:6;4101:71;:::i;:::-;3957:222;;;;:::o;4185:122::-;4258:24;4276:5;4258:24;:::i;:::-;4251:5;4248:35;4238:63;;4297:1;4294;4287:12;4238:63;4185:122;:::o;4313:139::-;4359:5;4397:6;4384:20;4375:29;;4413:33;4440:5;4413:33;:::i;:::-;4313:139;;;;:::o;4458:474::-;4526:6;4534;4583:2;4571:9;4562:7;4558:23;4554:32;4551:119;;;4589:79;;:::i;:::-;4551:119;4709:1;4734:53;4779:7;4770:6;4759:9;4755:22;4734:53;:::i;:::-;4724:63;;4680:117;4836:2;4862:53;4907:7;4898:6;4887:9;4883:22;4862:53;:::i;:::-;4852:63;;4807:118;4458:474;;;;;:::o;4938:118::-;5025:24;5043:5;5025:24;:::i;:::-;5020:3;5013:37;4938:118;;:::o;5062:222::-;5155:4;5193:2;5182:9;5178:18;5170:26;;5206:71;5274:1;5263:9;5259:17;5250:6;5206:71;:::i;:::-;5062:222;;;;:::o;5290:619::-;5367:6;5375;5383;5432:2;5420:9;5411:7;5407:23;5403:32;5400:119;;;5438:79;;:::i;:::-;5400:119;5558:1;5583:53;5628:7;5619:6;5608:9;5604:22;5583:53;:::i;:::-;5573:63;;5529:117;5685:2;5711:53;5756:7;5747:6;5736:9;5732:22;5711:53;:::i;:::-;5701:63;;5656:118;5813:2;5839:53;5884:7;5875:6;5864:9;5860:22;5839:53;:::i;:::-;5829:63;;5784:118;5290:619;;;;;:::o;5915:117::-;6024:1;6021;6014:12;6038:117;6147:1;6144;6137:12;6161:180;6209:77;6206:1;6199:88;6306:4;6303:1;6296:15;6330:4;6327:1;6320:15;6347:281;6430:27;6452:4;6430:27;:::i;:::-;6422:6;6418:40;6560:6;6548:10;6545:22;6524:18;6512:10;6509:34;6506:62;6503:88;;;6571:18;;:::i;:::-;6503:88;6611:10;6607:2;6600:22;6390:238;6347:281;;:::o;6634:129::-;6668:6;6695:20;;:::i;:::-;6685:30;;6724:33;6752:4;6744:6;6724:33;:::i;:::-;6634:129;;;:::o;6769:308::-;6831:4;6921:18;6913:6;6910:30;6907:56;;;6943:18;;:::i;:::-;6907:56;6981:29;7003:6;6981:29;:::i;:::-;6973:37;;7065:4;7059;7055:15;7047:23;;6769:308;;;:::o;7083:154::-;7167:6;7162:3;7157;7144:30;7229:1;7220:6;7215:3;7211:16;7204:27;7083:154;;;:::o;7243:412::-;7321:5;7346:66;7362:49;7404:6;7362:49;:::i;:::-;7346:66;:::i;:::-;7337:75;;7435:6;7428:5;7421:21;7473:4;7466:5;7462:16;7511:3;7502:6;7497:3;7493:16;7490:25;7487:112;;;7518:79;;:::i;:::-;7487:112;7608:41;7642:6;7637:3;7632;7608:41;:::i;:::-;7327:328;7243:412;;;;;:::o;7675:340::-;7731:5;7780:3;7773:4;7765:6;7761:17;7757:27;7747:122;;7788:79;;:::i;:::-;7747:122;7905:6;7892:20;7930:79;8005:3;7997:6;7990:4;7982:6;7978:17;7930:79;:::i;:::-;7921:88;;7737:278;7675:340;;;;:::o;8021:509::-;8090:6;8139:2;8127:9;8118:7;8114:23;8110:32;8107:119;;;8145:79;;:::i;:::-;8107:119;8293:1;8282:9;8278:17;8265:31;8323:18;8315:6;8312:30;8309:117;;;8345:79;;:::i;:::-;8309:117;8450:63;8505:7;8496:6;8485:9;8481:22;8450:63;:::i;:::-;8440:73;;8236:287;8021:509;;;;:::o;8536:329::-;8595:6;8644:2;8632:9;8623:7;8619:23;8615:32;8612:119;;;8650:79;;:::i;:::-;8612:119;8770:1;8795:53;8840:7;8831:6;8820:9;8816:22;8795:53;:::i;:::-;8785:63;;8741:117;8536:329;;;;:::o;8871:116::-;8941:21;8956:5;8941:21;:::i;:::-;8934:5;8931:32;8921:60;;8977:1;8974;8967:12;8921:60;8871:116;:::o;8993:133::-;9036:5;9074:6;9061:20;9052:29;;9090:30;9114:5;9090:30;:::i;:::-;8993:133;;;;:::o;9132:323::-;9188:6;9237:2;9225:9;9216:7;9212:23;9208:32;9205:119;;;9243:79;;:::i;:::-;9205:119;9363:1;9388:50;9430:7;9421:6;9410:9;9406:22;9388:50;:::i;:::-;9378:60;;9334:114;9132:323;;;;:::o;9461:468::-;9526:6;9534;9583:2;9571:9;9562:7;9558:23;9554:32;9551:119;;;9589:79;;:::i;:::-;9551:119;9709:1;9734:53;9779:7;9770:6;9759:9;9755:22;9734:53;:::i;:::-;9724:63;;9680:117;9836:2;9862:50;9904:7;9895:6;9884:9;9880:22;9862:50;:::i;:::-;9852:60;;9807:115;9461:468;;;;;:::o;9935:307::-;9996:4;10086:18;10078:6;10075:30;10072:56;;;10108:18;;:::i;:::-;10072:56;10146:29;10168:6;10146:29;:::i;:::-;10138:37;;10230:4;10224;10220:15;10212:23;;9935:307;;;:::o;10248:410::-;10325:5;10350:65;10366:48;10407:6;10366:48;:::i;:::-;10350:65;:::i;:::-;10341:74;;10438:6;10431:5;10424:21;10476:4;10469:5;10465:16;10514:3;10505:6;10500:3;10496:16;10493:25;10490:112;;;10521:79;;:::i;:::-;10490:112;10611:41;10645:6;10640:3;10635;10611:41;:::i;:::-;10331:327;10248:410;;;;;:::o;10677:338::-;10732:5;10781:3;10774:4;10766:6;10762:17;10758:27;10748:122;;10789:79;;:::i;:::-;10748:122;10906:6;10893:20;10931:78;11005:3;10997:6;10990:4;10982:6;10978:17;10931:78;:::i;:::-;10922:87;;10738:277;10677:338;;;;:::o;11021:943::-;11116:6;11124;11132;11140;11189:3;11177:9;11168:7;11164:23;11160:33;11157:120;;;11196:79;;:::i;:::-;11157:120;11316:1;11341:53;11386:7;11377:6;11366:9;11362:22;11341:53;:::i;:::-;11331:63;;11287:117;11443:2;11469:53;11514:7;11505:6;11494:9;11490:22;11469:53;:::i;:::-;11459:63;;11414:118;11571:2;11597:53;11642:7;11633:6;11622:9;11618:22;11597:53;:::i;:::-;11587:63;;11542:118;11727:2;11716:9;11712:18;11699:32;11758:18;11750:6;11747:30;11744:117;;;11780:79;;:::i;:::-;11744:117;11885:62;11939:7;11930:6;11919:9;11915:22;11885:62;:::i;:::-;11875:72;;11670:287;11021:943;;;;;;;:::o;11970:474::-;12038:6;12046;12095:2;12083:9;12074:7;12070:23;12066:32;12063:119;;;12101:79;;:::i;:::-;12063:119;12221:1;12246:53;12291:7;12282:6;12271:9;12267:22;12246:53;:::i;:::-;12236:63;;12192:117;12348:2;12374:53;12419:7;12410:6;12399:9;12395:22;12374:53;:::i;:::-;12364:63;;12319:118;11970:474;;;;;:::o;12450:180::-;12498:77;12495:1;12488:88;12595:4;12592:1;12585:15;12619:4;12616:1;12609:15;12636:320;12680:6;12717:1;12711:4;12707:12;12697:22;;12764:1;12758:4;12754:12;12785:18;12775:81;;12841:4;12833:6;12829:17;12819:27;;12775:81;12903:2;12895:6;12892:14;12872:18;12869:38;12866:84;;12922:18;;:::i;:::-;12866:84;12687:269;12636:320;;;:::o;12962:182::-;13102:34;13098:1;13090:6;13086:14;13079:58;12962:182;:::o;13150:366::-;13292:3;13313:67;13377:2;13372:3;13313:67;:::i;:::-;13306:74;;13389:93;13478:3;13389:93;:::i;:::-;13507:2;13502:3;13498:12;13491:19;;13150:366;;;:::o;13522:419::-;13688:4;13726:2;13715:9;13711:18;13703:26;;13775:9;13769:4;13765:20;13761:1;13750:9;13746:17;13739:47;13803:131;13929:4;13803:131;:::i;:::-;13795:139;;13522:419;;;:::o;13947:181::-;14087:33;14083:1;14075:6;14071:14;14064:57;13947:181;:::o;14134:366::-;14276:3;14297:67;14361:2;14356:3;14297:67;:::i;:::-;14290:74;;14373:93;14462:3;14373:93;:::i;:::-;14491:2;14486:3;14482:12;14475:19;;14134:366;;;:::o;14506:419::-;14672:4;14710:2;14699:9;14695:18;14687:26;;14759:9;14753:4;14749:20;14745:1;14734:9;14730:17;14723:47;14787:131;14913:4;14787:131;:::i;:::-;14779:139;;14506:419;;;:::o;14931:180::-;14979:77;14976:1;14969:88;15076:4;15073:1;15066:15;15100:4;15097:1;15090:15;15117:180;15165:77;15162:1;15155:88;15262:4;15259:1;15252:15;15286:4;15283:1;15276:15;15303:185;15343:1;15360:20;15378:1;15360:20;:::i;:::-;15355:25;;15394:20;15412:1;15394:20;:::i;:::-;15389:25;;15433:1;15423:35;;15438:18;;:::i;:::-;15423:35;15480:1;15477;15473:9;15468:14;;15303:185;;;;:::o;15494:170::-;15634:22;15630:1;15622:6;15618:14;15611:46;15494:170;:::o;15670:366::-;15812:3;15833:67;15897:2;15892:3;15833:67;:::i;:::-;15826:74;;15909:93;15998:3;15909:93;:::i;:::-;16027:2;16022:3;16018:12;16011:19;;15670:366;;;:::o;16042:419::-;16208:4;16246:2;16235:9;16231:18;16223:26;;16295:9;16289:4;16285:20;16281:1;16270:9;16266:17;16259:47;16323:131;16449:4;16323:131;:::i;:::-;16315:139;;16042:419;;;:::o;16467:305::-;16507:3;16526:20;16544:1;16526:20;:::i;:::-;16521:25;;16560:20;16578:1;16560:20;:::i;:::-;16555:25;;16714:1;16646:66;16642:74;16639:1;16636:81;16633:107;;;16720:18;;:::i;:::-;16633:107;16764:1;16761;16757:9;16750:16;;16467:305;;;;:::o;16778:170::-;16918:22;16914:1;16906:6;16902:14;16895:46;16778:170;:::o;16954:366::-;17096:3;17117:67;17181:2;17176:3;17117:67;:::i;:::-;17110:74;;17193:93;17282:3;17193:93;:::i;:::-;17311:2;17306:3;17302:12;17295:19;;16954:366;;;:::o;17326:419::-;17492:4;17530:2;17519:9;17515:18;17507:26;;17579:9;17573:4;17569:20;17565:1;17554:9;17550:17;17543:47;17607:131;17733:4;17607:131;:::i;:::-;17599:139;;17326:419;;;:::o;17751:166::-;17891:18;17887:1;17879:6;17875:14;17868:42;17751:166;:::o;17923:366::-;18065:3;18086:67;18150:2;18145:3;18086:67;:::i;:::-;18079:74;;18162:93;18251:3;18162:93;:::i;:::-;18280:2;18275:3;18271:12;18264:19;;17923:366;;;:::o;18295:419::-;18461:4;18499:2;18488:9;18484:18;18476:26;;18548:9;18542:4;18538:20;18534:1;18523:9;18519:17;18512:47;18576:131;18702:4;18576:131;:::i;:::-;18568:139;;18295:419;;;:::o;18720:169::-;18860:21;18856:1;18848:6;18844:14;18837:45;18720:169;:::o;18895:366::-;19037:3;19058:67;19122:2;19117:3;19058:67;:::i;:::-;19051:74;;19134:93;19223:3;19134:93;:::i;:::-;19252:2;19247:3;19243:12;19236:19;;18895:366;;;:::o;19267:419::-;19433:4;19471:2;19460:9;19456:18;19448:26;;19520:9;19514:4;19510:20;19506:1;19495:9;19491:17;19484:47;19548:131;19674:4;19548:131;:::i;:::-;19540:139;;19267:419;;;:::o;19692:348::-;19732:7;19755:20;19773:1;19755:20;:::i;:::-;19750:25;;19789:20;19807:1;19789:20;:::i;:::-;19784:25;;19977:1;19909:66;19905:74;19902:1;19899:81;19894:1;19887:9;19880:17;19876:105;19873:131;;;19984:18;;:::i;:::-;19873:131;20032:1;20029;20025:9;20014:20;;19692:348;;;;:::o;20046:191::-;20086:4;20106:20;20124:1;20106:20;:::i;:::-;20101:25;;20140:20;20158:1;20140:20;:::i;:::-;20135:25;;20179:1;20176;20173:8;20170:34;;;20184:18;;:::i;:::-;20170:34;20229:1;20226;20222:9;20214:17;;20046:191;;;;:::o;20243:169::-;20383:21;20379:1;20371:6;20367:14;20360:45;20243:169;:::o;20418:366::-;20560:3;20581:67;20645:2;20640:3;20581:67;:::i;:::-;20574:74;;20657:93;20746:3;20657:93;:::i;:::-;20775:2;20770:3;20766:12;20759:19;;20418:366;;;:::o;20790:419::-;20956:4;20994:2;20983:9;20979:18;20971:26;;21043:9;21037:4;21033:20;21029:1;21018:9;21014:17;21007:47;21071:131;21197:4;21071:131;:::i;:::-;21063:139;;20790:419;;;:::o;21215:172::-;21355:24;21351:1;21343:6;21339:14;21332:48;21215:172;:::o;21393:366::-;21535:3;21556:67;21620:2;21615:3;21556:67;:::i;:::-;21549:74;;21632:93;21721:3;21632:93;:::i;:::-;21750:2;21745:3;21741:12;21734:19;;21393:366;;;:::o;21765:419::-;21931:4;21969:2;21958:9;21954:18;21946:26;;22018:9;22012:4;22008:20;22004:1;21993:9;21989:17;21982:47;22046:131;22172:4;22046:131;:::i;:::-;22038:139;;21765:419;;;:::o;22190:148::-;22292:11;22329:3;22314:18;;22190:148;;;;:::o;22344:377::-;22450:3;22478:39;22511:5;22478:39;:::i;:::-;22533:89;22615:6;22610:3;22533:89;:::i;:::-;22526:96;;22631:52;22676:6;22671:3;22664:4;22657:5;22653:16;22631:52;:::i;:::-;22708:6;22703:3;22699:16;22692:23;;22454:267;22344:377;;;;:::o;22727:435::-;22907:3;22929:95;23020:3;23011:6;22929:95;:::i;:::-;22922:102;;23041:95;23132:3;23123:6;23041:95;:::i;:::-;23034:102;;23153:3;23146:10;;22727:435;;;;;:::o;23168:225::-;23308:34;23304:1;23296:6;23292:14;23285:58;23377:8;23372:2;23364:6;23360:15;23353:33;23168:225;:::o;23399:366::-;23541:3;23562:67;23626:2;23621:3;23562:67;:::i;:::-;23555:74;;23638:93;23727:3;23638:93;:::i;:::-;23756:2;23751:3;23747:12;23740:19;;23399:366;;;:::o;23771:419::-;23937:4;23975:2;23964:9;23960:18;23952:26;;24024:9;24018:4;24014:20;24010:1;23999:9;23995:17;23988:47;24052:131;24178:4;24052:131;:::i;:::-;24044:139;;23771:419;;;:::o;24196:179::-;24336:31;24332:1;24324:6;24320:14;24313:55;24196:179;:::o;24381:366::-;24523:3;24544:67;24608:2;24603:3;24544:67;:::i;:::-;24537:74;;24620:93;24709:3;24620:93;:::i;:::-;24738:2;24733:3;24729:12;24722:19;;24381:366;;;:::o;24753:419::-;24919:4;24957:2;24946:9;24942:18;24934:26;;25006:9;25000:4;24996:20;24992:1;24981:9;24977:17;24970:47;25034:131;25160:4;25034:131;:::i;:::-;25026:139;;24753:419;;;:::o;25178:147::-;25279:11;25316:3;25301:18;;25178:147;;;;:::o;25331:114::-;;:::o;25451:398::-;25610:3;25631:83;25712:1;25707:3;25631:83;:::i;:::-;25624:90;;25723:93;25812:3;25723:93;:::i;:::-;25841:1;25836:3;25832:11;25825:18;;25451:398;;;:::o;25855:379::-;26039:3;26061:147;26204:3;26061:147;:::i;:::-;26054:154;;26225:3;26218:10;;25855:379;;;:::o;26240:245::-;26380:34;26376:1;26368:6;26364:14;26357:58;26449:28;26444:2;26436:6;26432:15;26425:53;26240:245;:::o;26491:366::-;26633:3;26654:67;26718:2;26713:3;26654:67;:::i;:::-;26647:74;;26730:93;26819:3;26730:93;:::i;:::-;26848:2;26843:3;26839:12;26832:19;;26491:366;;;:::o;26863:419::-;27029:4;27067:2;27056:9;27052:18;27044:26;;27116:9;27110:4;27106:20;27102:1;27091:9;27087:17;27080:47;27144:131;27270:4;27144:131;:::i;:::-;27136:139;;26863:419;;;:::o;27288:98::-;27339:6;27373:5;27367:12;27357:22;;27288:98;;;:::o;27392:168::-;27475:11;27509:6;27504:3;27497:19;27549:4;27544:3;27540:14;27525:29;;27392:168;;;;:::o;27566:360::-;27652:3;27680:38;27712:5;27680:38;:::i;:::-;27734:70;27797:6;27792:3;27734:70;:::i;:::-;27727:77;;27813:52;27858:6;27853:3;27846:4;27839:5;27835:16;27813:52;:::i;:::-;27890:29;27912:6;27890:29;:::i;:::-;27885:3;27881:39;27874:46;;27656:270;27566:360;;;;:::o;27932:640::-;28127:4;28165:3;28154:9;28150:19;28142:27;;28179:71;28247:1;28236:9;28232:17;28223:6;28179:71;:::i;:::-;28260:72;28328:2;28317:9;28313:18;28304:6;28260:72;:::i;:::-;28342;28410:2;28399:9;28395:18;28386:6;28342:72;:::i;:::-;28461:9;28455:4;28451:20;28446:2;28435:9;28431:18;28424:48;28489:76;28560:4;28551:6;28489:76;:::i;:::-;28481:84;;27932:640;;;;;;;:::o;28578:141::-;28634:5;28665:6;28659:13;28650:22;;28681:32;28707:5;28681:32;:::i;:::-;28578:141;;;;:::o;28725:349::-;28794:6;28843:2;28831:9;28822:7;28818:23;28814:32;28811:119;;;28849:79;;:::i;:::-;28811:119;28969:1;28994:63;29049:7;29040:6;29029:9;29025:22;28994:63;:::i;:::-;28984:73;;28940:127;28725:349;;;;:::o;29080:233::-;29119:3;29142:24;29160:5;29142:24;:::i;:::-;29133:33;;29188:66;29181:5;29178:77;29175:103;;29258:18;;:::i;:::-;29175:103;29305:1;29298:5;29294:13;29287:20;;29080:233;;;:::o;29319:176::-;29351:1;29368:20;29386:1;29368:20;:::i;:::-;29363:25;;29402:20;29420:1;29402:20;:::i;:::-;29397:25;;29441:1;29431:35;;29446:18;;:::i;:::-;29431:35;29487:1;29484;29480:9;29475:14;;29319:176;;;;:::o;29501:180::-;29549:77;29546:1;29539:88;29646:4;29643:1;29636:15;29670:4;29667:1;29660:15

Swarm Source

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