ETH Price: $2,618.42 (-2.13%)

Token

strongestwarrior (SZS)
 

Overview

Max Total Supply

144 SZS

Holders

73

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A
Balance
2 SZS
0x3fe3a8fe534ae4fcd8fe355832deae0bc344fd02
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:
strongestwarrior

Compiler Version
v0.8.9+commit.e5eed63a

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

/**
 *Submitted for verification at Etherscan.io on 2022-10-01
*/

// File: strongestwarrior.sol

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

// File: ceshi.sol

/**
 *Submitted for verification at Etherscan.io on 2022-06-08
*/


// 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/no.sol



pragma solidity >=0.8.9 <0.9.0;




// Smart contract for  Test
contract strongestwarrior is ERC721A, Ownable, ReentrancyGuard {

  using Strings for uint256;

  uint256 public maxSupply = 10;
  uint256 public price = 0.004 ether;
  uint256 public cost;
  uint256 public maxPerWallet  = 10;
  uint256 public totalFree = 5;
  uint256 public maxMintAmountPerTx = 5;
  uint256 public maxPerFree = 2;
  uint256 public maxPerFreeWallet = 2;


  string public uriPrefix = 'ipfs://QmNm56AyYgmRFsn3KKM7fJ16Ax9WNrrdCy1t8xsYdcXQrJ/';
  string public uriSuffix = '.json';

  constructor() ERC721A("strongestwarrior", "SZS") {
  }

  modifier mintCompliance(uint256 _mintAmount) {
    require(_mintAmount > 0 && _mintAmount <= maxMintAmountPerTx, 'Invalid mint amount!');
    require(totalSupply() + _mintAmount <= maxSupply, 'Max supply exceeded!');
    _;
  }

  modifier mintPriceCompliance(uint256 _mintAmount) {
    require(msg.value >= cost * _mintAmount, 'Insufficient funds!');
    _;
  }

  function mint(uint256 _mintAmount) public payable mintCompliance(_mintAmount) mintPriceCompliance(_mintAmount) {
    cost = price;
    if(totalSupply() + _mintAmount < totalFree + 1) {
      cost = 0;
      require(_mintAmount <= maxPerFree && cost == 0, "Too many Free mints!");
      require(numberMinted(msg.sender) + _mintAmount <= maxPerFreeWallet,"No More Free!");
    }
    require(numberMinted(msg.sender) + _mintAmount <= maxPerWallet,"Too many per wallet!");
    _safeMint(_msgSender(), _mintAmount);
  }
  
  function airdrop(uint256 _mintAmount, address _receiver) public mintCompliance(_mintAmount) onlyOwner {
    _safeMint(_receiver, _mintAmount);
  }

  function numberMinted(address owner) public view returns (uint256) {
    return _numberMinted(owner);
  }
  
  function setCost(uint256 _cost) public onlyOwner {
    price = _cost;
  }

  function setMaxSupply(uint256 _maxSupply) public onlyOwner {
    maxSupply = _maxSupply;
  }

  function setMaxPerFree(uint256 _maxPerFree) public onlyOwner {
    maxPerFree = _maxPerFree;
  }

  function setMaxPerWallet(uint256 _maxPerWallet) public onlyOwner {
    maxPerWallet = _maxPerWallet;
  }

  function setTotalFree(uint256 _totalFree) public onlyOwner {
    totalFree = _totalFree;
  }

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

  function setMaxPerFreeWallet(uint256 _maxPerFreeWallet) public onlyOwner {
    maxPerFreeWallet = _maxPerFreeWallet;
  }

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

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

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

  function withdraw() public onlyOwner nonReentrant {
    (bool os, ) = payable(owner()).call{value: address(this).balance}('');
    require(os);
  }

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

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

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

Contract Security Audit

Contract ABI

[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"inputs":[],"name":"ApprovalCallerNotOwnerNorApproved","type":"error"},{"inputs":[],"name":"ApprovalQueryForNonexistentToken","type":"error"},{"inputs":[],"name":"ApprovalToCurrentOwner","type":"error"},{"inputs":[],"name":"ApproveToCaller","type":"error"},{"inputs":[],"name":"BalanceQueryForZeroAddress","type":"error"},{"inputs":[],"name":"MintToZeroAddress","type":"error"},{"inputs":[],"name":"MintZeroQuantity","type":"error"},{"inputs":[],"name":"OwnerQueryForNonexistentToken","type":"error"},{"inputs":[],"name":"TransferCallerNotOwnerNorApproved","type":"error"},{"inputs":[],"name":"TransferFromIncorrectOwner","type":"error"},{"inputs":[],"name":"TransferToNonERC721ReceiverImplementer","type":"error"},{"inputs":[],"name":"TransferToZeroAddress","type":"error"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"approved","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[{"internalType":"uint256","name":"_mintAmount","type":"uint256"},{"internalType":"address","name":"_receiver","type":"address"}],"name":"airdrop","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"cost","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxMintAmountPerTx","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxPerFree","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxPerFreeWallet","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxPerWallet","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_mintAmount","type":"uint256"}],"name":"mint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"numberMinted","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"price","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"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":"uint256","name":"_cost","type":"uint256"}],"name":"setCost","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_maxMintAmountPerTx","type":"uint256"}],"name":"setMaxMintAmountPerTx","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_maxPerFree","type":"uint256"}],"name":"setMaxPerFree","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_maxPerFreeWallet","type":"uint256"}],"name":"setMaxPerFreeWallet","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_maxPerWallet","type":"uint256"}],"name":"setMaxPerWallet","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_maxSupply","type":"uint256"}],"name":"setMaxSupply","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_totalFree","type":"uint256"}],"name":"setTotalFree","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_uriPrefix","type":"string"}],"name":"setUriPrefix","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_uriSuffix","type":"string"}],"name":"setUriSuffix","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"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":"totalFree","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"uriPrefix","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"uriSuffix","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"withdraw","outputs":[],"stateMutability":"nonpayable","type":"function"}]

6080604052600a8055660e35fa931a0000600b55600a600d556005600e556005600f5560026010556002601155604051806060016040528060368152602001620043fa60369139601290805190602001906200005d92919062000275565b506040518060400160405280600581526020017f2e6a736f6e00000000000000000000000000000000000000000000000000000081525060139080519060200190620000ab92919062000275565b50348015620000b957600080fd5b506040518060400160405280601081526020017f7374726f6e6765737477617272696f72000000000000000000000000000000008152506040518060400160405280600381526020017f535a53000000000000000000000000000000000000000000000000000000000081525081600290805190602001906200013e92919062000275565b5080600390805190602001906200015792919062000275565b50620001686200019e60201b60201c565b60008190555050506200019062000184620001a760201b60201c565b620001af60201b60201c565b60016009819055506200038a565b60006001905090565b600033905090565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b828054620002839062000354565b90600052602060002090601f016020900481019282620002a75760008555620002f3565b82601f10620002c257805160ff1916838001178555620002f3565b82800160010185558215620002f3579182015b82811115620002f2578251825591602001919060010190620002d5565b5b50905062000302919062000306565b5090565b5b808211156200032157600081600090555060010162000307565b5090565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b600060028204905060018216806200036d57607f821691505b6020821081141562000384576200038362000325565b5b50919050565b614060806200039a6000396000f3fe60806040526004361061023b5760003560e01c8063715018a61161012e578063b88d4fde116100ab578063dc33e6811161006f578063dc33e6811461082a578063e268e4d314610867578063e945971c14610890578063e985e9c5146108b9578063f2fde38b146108f65761023b565b8063b88d4fde14610745578063bc63f02e1461076e578063c7c39ffc14610797578063c87b56dd146107c2578063d5abeb01146107ff5761023b565b8063a035b1fe116100f2578063a035b1fe14610681578063a0712d68146106ac578063a09fa941146106c8578063a22cb465146106f3578063b071401b1461071c5761023b565b8063715018a6146105c05780637ec4a659146105d75780638da5cb5b1461060057806394354fd01461062b57806395d89b41146106565761023b565b806342842e0e116101bc5780635e85d3a3116101805780635e85d3a3146104c957806362b99ad4146104f25780636352211e1461051d5780636f8b44b01461055a57806370a08231146105835761023b565b806342842e0e146103f857806344a0d68a14610421578063453c23101461044a5780635503a0e814610475578063563aaf11146104a05761023b565b806316ba10e01161020357806316ba10e01461033957806318160ddd1461036257806323b872dd1461038d578063333e44e6146103b65780633ccfd60b146103e15761023b565b806301ffc9a71461024057806306fdde031461027d578063081812fc146102a8578063095ea7b3146102e557806313faede61461030e575b600080fd5b34801561024c57600080fd5b506102676004803603810190610262919061307e565b61091f565b60405161027491906130c6565b60405180910390f35b34801561028957600080fd5b50610292610a01565b60405161029f919061317a565b60405180910390f35b3480156102b457600080fd5b506102cf60048036038101906102ca91906131d2565b610a93565b6040516102dc9190613240565b60405180910390f35b3480156102f157600080fd5b5061030c60048036038101906103079190613287565b610b0f565b005b34801561031a57600080fd5b50610323610c1a565b60405161033091906132d6565b60405180910390f35b34801561034557600080fd5b50610360600480360381019061035b9190613426565b610c20565b005b34801561036e57600080fd5b50610377610cb6565b60405161038491906132d6565b60405180910390f35b34801561039957600080fd5b506103b460048036038101906103af919061346f565b610ccd565b005b3480156103c257600080fd5b506103cb610cdd565b6040516103d891906132d6565b60405180910390f35b3480156103ed57600080fd5b506103f6610ce3565b005b34801561040457600080fd5b5061041f600480360381019061041a919061346f565b610e35565b005b34801561042d57600080fd5b50610448600480360381019061044391906131d2565b610e55565b005b34801561045657600080fd5b5061045f610edb565b60405161046c91906132d6565b60405180910390f35b34801561048157600080fd5b5061048a610ee1565b604051610497919061317a565b60405180910390f35b3480156104ac57600080fd5b506104c760048036038101906104c291906131d2565b610f6f565b005b3480156104d557600080fd5b506104f060048036038101906104eb91906131d2565b610ff5565b005b3480156104fe57600080fd5b5061050761107b565b604051610514919061317a565b60405180910390f35b34801561052957600080fd5b50610544600480360381019061053f91906131d2565b611109565b6040516105519190613240565b60405180910390f35b34801561056657600080fd5b50610581600480360381019061057c91906131d2565b61111f565b005b34801561058f57600080fd5b506105aa60048036038101906105a591906134c2565b6111a5565b6040516105b791906132d6565b60405180910390f35b3480156105cc57600080fd5b506105d5611275565b005b3480156105e357600080fd5b506105fe60048036038101906105f99190613426565b6112fd565b005b34801561060c57600080fd5b50610615611393565b6040516106229190613240565b60405180910390f35b34801561063757600080fd5b506106406113bd565b60405161064d91906132d6565b60405180910390f35b34801561066257600080fd5b5061066b6113c3565b604051610678919061317a565b60405180910390f35b34801561068d57600080fd5b50610696611455565b6040516106a391906132d6565b60405180910390f35b6106c660048036038101906106c191906131d2565b61145b565b005b3480156106d457600080fd5b506106dd6116a8565b6040516106ea91906132d6565b60405180910390f35b3480156106ff57600080fd5b5061071a6004803603810190610715919061351b565b6116ae565b005b34801561072857600080fd5b50610743600480360381019061073e91906131d2565b611826565b005b34801561075157600080fd5b5061076c600480360381019061076791906135fc565b6118ac565b005b34801561077a57600080fd5b506107956004803603810190610790919061367f565b611928565b005b3480156107a357600080fd5b506107ac611a5c565b6040516107b991906132d6565b60405180910390f35b3480156107ce57600080fd5b506107e960048036038101906107e491906131d2565b611a62565b6040516107f6919061317a565b60405180910390f35b34801561080b57600080fd5b50610814611b0c565b60405161082191906132d6565b60405180910390f35b34801561083657600080fd5b50610851600480360381019061084c91906134c2565b611b12565b60405161085e91906132d6565b60405180910390f35b34801561087357600080fd5b5061088e600480360381019061088991906131d2565b611b24565b005b34801561089c57600080fd5b506108b760048036038101906108b291906131d2565b611baa565b005b3480156108c557600080fd5b506108e060048036038101906108db91906136bf565b611c30565b6040516108ed91906130c6565b60405180910390f35b34801561090257600080fd5b5061091d600480360381019061091891906134c2565b611cc4565b005b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614806109ea57507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b806109fa57506109f982611dbc565b5b9050919050565b606060028054610a109061372e565b80601f0160208091040260200160405190810160405280929190818152602001828054610a3c9061372e565b8015610a895780601f10610a5e57610100808354040283529160200191610a89565b820191906000526020600020905b815481529060010190602001808311610a6c57829003601f168201915b5050505050905090565b6000610a9e82611e26565b610ad4576040517fcf4700e400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6006600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b6000610b1a82611109565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610b82576040517f943f7b8c00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16610ba1611e74565b73ffffffffffffffffffffffffffffffffffffffff1614158015610bd35750610bd181610bcc611e74565b611c30565b155b15610c0a576040517fcfb3b94200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b610c15838383611e7c565b505050565b600c5481565b610c28611e74565b73ffffffffffffffffffffffffffffffffffffffff16610c46611393565b73ffffffffffffffffffffffffffffffffffffffff1614610c9c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c93906137ac565b60405180910390fd5b8060139080519060200190610cb2929190612f2c565b5050565b6000610cc0611f2e565b6001546000540303905090565b610cd8838383611f37565b505050565b600e5481565b610ceb611e74565b73ffffffffffffffffffffffffffffffffffffffff16610d09611393565b73ffffffffffffffffffffffffffffffffffffffff1614610d5f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d56906137ac565b60405180910390fd5b60026009541415610da5576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d9c90613818565b60405180910390fd5b60026009819055506000610db7611393565b73ffffffffffffffffffffffffffffffffffffffff1647604051610dda90613869565b60006040518083038185875af1925050503d8060008114610e17576040519150601f19603f3d011682016040523d82523d6000602084013e610e1c565b606091505b5050905080610e2a57600080fd5b506001600981905550565b610e50838383604051806020016040528060008152506118ac565b505050565b610e5d611e74565b73ffffffffffffffffffffffffffffffffffffffff16610e7b611393565b73ffffffffffffffffffffffffffffffffffffffff1614610ed1576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ec8906137ac565b60405180910390fd5b80600b8190555050565b600d5481565b60138054610eee9061372e565b80601f0160208091040260200160405190810160405280929190818152602001828054610f1a9061372e565b8015610f675780601f10610f3c57610100808354040283529160200191610f67565b820191906000526020600020905b815481529060010190602001808311610f4a57829003601f168201915b505050505081565b610f77611e74565b73ffffffffffffffffffffffffffffffffffffffff16610f95611393565b73ffffffffffffffffffffffffffffffffffffffff1614610feb576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610fe2906137ac565b60405180910390fd5b80600e8190555050565b610ffd611e74565b73ffffffffffffffffffffffffffffffffffffffff1661101b611393565b73ffffffffffffffffffffffffffffffffffffffff1614611071576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611068906137ac565b60405180910390fd5b8060118190555050565b601280546110889061372e565b80601f01602080910402602001604051908101604052809291908181526020018280546110b49061372e565b80156111015780601f106110d657610100808354040283529160200191611101565b820191906000526020600020905b8154815290600101906020018083116110e457829003601f168201915b505050505081565b6000611114826123ed565b600001519050919050565b611127611e74565b73ffffffffffffffffffffffffffffffffffffffff16611145611393565b73ffffffffffffffffffffffffffffffffffffffff161461119b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611192906137ac565b60405180910390fd5b80600a8190555050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141561120d576040517f8f4eb60400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600560008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160009054906101000a900467ffffffffffffffff1667ffffffffffffffff169050919050565b61127d611e74565b73ffffffffffffffffffffffffffffffffffffffff1661129b611393565b73ffffffffffffffffffffffffffffffffffffffff16146112f1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112e8906137ac565b60405180910390fd5b6112fb600061267c565b565b611305611e74565b73ffffffffffffffffffffffffffffffffffffffff16611323611393565b73ffffffffffffffffffffffffffffffffffffffff1614611379576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611370906137ac565b60405180910390fd5b806012908051906020019061138f929190612f2c565b5050565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b600f5481565b6060600380546113d29061372e565b80601f01602080910402602001604051908101604052809291908181526020018280546113fe9061372e565b801561144b5780601f106114205761010080835404028352916020019161144b565b820191906000526020600020905b81548152906001019060200180831161142e57829003601f168201915b5050505050905090565b600b5481565b8060008111801561146e5750600f548111155b6114ad576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114a4906138ca565b60405180910390fd5b600a54816114b9610cb6565b6114c39190613919565b1115611504576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114fb906139bb565b60405180910390fd5b8180600c5461151391906139db565b341015611555576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161154c90613a81565b60405180910390fd5b600b54600c819055506001600e5461156d9190613919565b83611576610cb6565b6115809190613919565b101561163a576000600c8190555060105483111580156115a257506000600c54145b6115e1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115d890613aed565b60405180910390fd5b601154836115ee33611b12565b6115f89190613919565b1115611639576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161163090613b59565b60405180910390fd5b5b600d548361164733611b12565b6116519190613919565b1115611692576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161168990613bc5565b60405180910390fd5b6116a361169d611e74565b84612742565b505050565b60115481565b6116b6611e74565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141561171b576040517fb06307db00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8060076000611728611e74565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff166117d5611e74565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c318360405161181a91906130c6565b60405180910390a35050565b61182e611e74565b73ffffffffffffffffffffffffffffffffffffffff1661184c611393565b73ffffffffffffffffffffffffffffffffffffffff16146118a2576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611899906137ac565b60405180910390fd5b80600f8190555050565b6118b7848484611f37565b6118d68373ffffffffffffffffffffffffffffffffffffffff16612760565b80156118eb57506118e984848484612783565b155b15611922576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b50505050565b8160008111801561193b5750600f548111155b61197a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611971906138ca565b60405180910390fd5b600a5481611986610cb6565b6119909190613919565b11156119d1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016119c8906139bb565b60405180910390fd5b6119d9611e74565b73ffffffffffffffffffffffffffffffffffffffff166119f7611393565b73ffffffffffffffffffffffffffffffffffffffff1614611a4d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a44906137ac565b60405180910390fd5b611a578284612742565b505050565b60105481565b6060611a6d82611e26565b611aac576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611aa390613c57565b60405180910390fd5b6000611ab66128e3565b90506000815111611ad65760405180602001604052806000815250611b04565b80611ae084612975565b6013604051602001611af493929190613d47565b6040516020818303038152906040525b915050919050565b600a5481565b6000611b1d82612ad6565b9050919050565b611b2c611e74565b73ffffffffffffffffffffffffffffffffffffffff16611b4a611393565b73ffffffffffffffffffffffffffffffffffffffff1614611ba0576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b97906137ac565b60405180910390fd5b80600d8190555050565b611bb2611e74565b73ffffffffffffffffffffffffffffffffffffffff16611bd0611393565b73ffffffffffffffffffffffffffffffffffffffff1614611c26576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c1d906137ac565b60405180910390fd5b8060108190555050565b6000600760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b611ccc611e74565b73ffffffffffffffffffffffffffffffffffffffff16611cea611393565b73ffffffffffffffffffffffffffffffffffffffff1614611d40576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d37906137ac565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415611db0576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611da790613dea565b60405180910390fd5b611db98161267c565b50565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b600081611e31611f2e565b11158015611e40575060005482105b8015611e6d575060046000838152602001908152602001600020600001601c9054906101000a900460ff16155b9050919050565b600033905090565b826006600084815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b60006001905090565b6000611f42826123ed565b90508373ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff1614611fad576040517fa114810000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b60008473ffffffffffffffffffffffffffffffffffffffff16611fce611e74565b73ffffffffffffffffffffffffffffffffffffffff161480611ffd5750611ffc85611ff7611e74565b611c30565b5b80612042575061200b611e74565b73ffffffffffffffffffffffffffffffffffffffff1661202a84610a93565b73ffffffffffffffffffffffffffffffffffffffff16145b90508061207b576040517f59c896be00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1614156120e2576040517fea553b3400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6120ef8585856001612b40565b6120fb60008487611e7c565b6001600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a900467ffffffffffffffff160392506101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055506001600560008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a900467ffffffffffffffff160192506101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055506000600460008581526020019081526020016000209050848160000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550428160000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff16021790555060006001850190506000600460008381526020019081526020016000209050600073ffffffffffffffffffffffffffffffffffffffff168160000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16141561237b57600054821461237a57878160000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555084602001518160000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055505b5b505050828473ffffffffffffffffffffffffffffffffffffffff168673ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a46123e68585856001612b46565b5050505050565b6123f5612fb2565b600082905080612403611f2e565b11158015612412575060005481105b15612645576000600460008381526020019081526020016000206040518060600160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815260200160008201601c9054906101000a900460ff1615151515815250509050806040015161264357600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff1614612527578092505050612677565b5b60011561264257818060019003925050600460008381526020019081526020016000206040518060600160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815260200160008201601c9054906101000a900460ff1615151515815250509050600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff161461263d578092505050612677565b612528565b5b505b6040517fdf2d9b4200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b919050565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b61275c828260405180602001604052806000815250612b4c565b5050565b6000808273ffffffffffffffffffffffffffffffffffffffff163b119050919050565b60008373ffffffffffffffffffffffffffffffffffffffff1663150b7a026127a9611e74565b8786866040518563ffffffff1660e01b81526004016127cb9493929190613e5f565b602060405180830381600087803b1580156127e557600080fd5b505af192505050801561281657506040513d601f19601f820116820180604052508101906128139190613ec0565b60015b612890573d8060008114612846576040519150601f19603f3d011682016040523d82523d6000602084013e61284b565b606091505b50600081511415612888576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050949350505050565b6060601280546128f29061372e565b80601f016020809104026020016040519081016040528092919081815260200182805461291e9061372e565b801561296b5780601f106129405761010080835404028352916020019161296b565b820191906000526020600020905b81548152906001019060200180831161294e57829003601f168201915b5050505050905090565b606060008214156129bd576040518060400160405280600181526020017f30000000000000000000000000000000000000000000000000000000000000008152509050612ad1565b600082905060005b600082146129ef5780806129d890613eed565b915050600a826129e89190613f65565b91506129c5565b60008167ffffffffffffffff811115612a0b57612a0a6132fb565b5b6040519080825280601f01601f191660200182016040528015612a3d5781602001600182028036833780820191505090505b5090505b60008514612aca57600182612a569190613f96565b9150600a85612a659190613fca565b6030612a719190613919565b60f81b818381518110612a8757612a86613ffb565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a85612ac39190613f65565b9450612a41565b8093505050505b919050565b6000600560008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160089054906101000a900467ffffffffffffffff1667ffffffffffffffff169050919050565b50505050565b50505050565b612b598383836001612b5e565b505050565b600080549050600073ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff161415612bcb576040517f2e07630000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6000841415612c06576040517fb562e8dd00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b612c136000868387612b40565b83600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a900467ffffffffffffffff160192506101000a81548167ffffffffffffffff021916908367ffffffffffffffff16021790555083600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160088282829054906101000a900467ffffffffffffffff160192506101000a81548167ffffffffffffffff021916908367ffffffffffffffff160217905550846004600083815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550426004600083815260200190815260200160002060000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff160217905550600081905060008582019050838015612ddd5750612ddc8773ffffffffffffffffffffffffffffffffffffffff16612760565b5b15612ea3575b818773ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4612e526000888480600101955088612783565b612e88576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b80821415612de3578260005414612e9e57600080fd5b612f0f565b5b818060010192508773ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a480821415612ea4575b816000819055505050612f256000868387612b46565b5050505050565b828054612f389061372e565b90600052602060002090601f016020900481019282612f5a5760008555612fa1565b82601f10612f7357805160ff1916838001178555612fa1565b82800160010185558215612fa1579182015b82811115612fa0578251825591602001919060010190612f85565b5b509050612fae9190612ff5565b5090565b6040518060600160405280600073ffffffffffffffffffffffffffffffffffffffff168152602001600067ffffffffffffffff1681526020016000151581525090565b5b8082111561300e576000816000905550600101612ff6565b5090565b6000604051905090565b600080fd5b600080fd5b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b61305b81613026565b811461306657600080fd5b50565b60008135905061307881613052565b92915050565b6000602082840312156130945761309361301c565b5b60006130a284828501613069565b91505092915050565b60008115159050919050565b6130c0816130ab565b82525050565b60006020820190506130db60008301846130b7565b92915050565b600081519050919050565b600082825260208201905092915050565b60005b8381101561311b578082015181840152602081019050613100565b8381111561312a576000848401525b50505050565b6000601f19601f8301169050919050565b600061314c826130e1565b61315681856130ec565b93506131668185602086016130fd565b61316f81613130565b840191505092915050565b600060208201905081810360008301526131948184613141565b905092915050565b6000819050919050565b6131af8161319c565b81146131ba57600080fd5b50565b6000813590506131cc816131a6565b92915050565b6000602082840312156131e8576131e761301c565b5b60006131f6848285016131bd565b91505092915050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b600061322a826131ff565b9050919050565b61323a8161321f565b82525050565b60006020820190506132556000830184613231565b92915050565b6132648161321f565b811461326f57600080fd5b50565b6000813590506132818161325b565b92915050565b6000806040838503121561329e5761329d61301c565b5b60006132ac85828601613272565b92505060206132bd858286016131bd565b9150509250929050565b6132d08161319c565b82525050565b60006020820190506132eb60008301846132c7565b92915050565b600080fd5b600080fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b61333382613130565b810181811067ffffffffffffffff82111715613352576133516132fb565b5b80604052505050565b6000613365613012565b9050613371828261332a565b919050565b600067ffffffffffffffff821115613391576133906132fb565b5b61339a82613130565b9050602081019050919050565b82818337600083830152505050565b60006133c96133c484613376565b61335b565b9050828152602081018484840111156133e5576133e46132f6565b5b6133f08482856133a7565b509392505050565b600082601f83011261340d5761340c6132f1565b5b813561341d8482602086016133b6565b91505092915050565b60006020828403121561343c5761343b61301c565b5b600082013567ffffffffffffffff81111561345a57613459613021565b5b613466848285016133f8565b91505092915050565b6000806000606084860312156134885761348761301c565b5b600061349686828701613272565b93505060206134a786828701613272565b92505060406134b8868287016131bd565b9150509250925092565b6000602082840312156134d8576134d761301c565b5b60006134e684828501613272565b91505092915050565b6134f8816130ab565b811461350357600080fd5b50565b600081359050613515816134ef565b92915050565b600080604083850312156135325761353161301c565b5b600061354085828601613272565b925050602061355185828601613506565b9150509250929050565b600067ffffffffffffffff821115613576576135756132fb565b5b61357f82613130565b9050602081019050919050565b600061359f61359a8461355b565b61335b565b9050828152602081018484840111156135bb576135ba6132f6565b5b6135c68482856133a7565b509392505050565b600082601f8301126135e3576135e26132f1565b5b81356135f384826020860161358c565b91505092915050565b600080600080608085870312156136165761361561301c565b5b600061362487828801613272565b945050602061363587828801613272565b9350506040613646878288016131bd565b925050606085013567ffffffffffffffff81111561366757613666613021565b5b613673878288016135ce565b91505092959194509250565b600080604083850312156136965761369561301c565b5b60006136a4858286016131bd565b92505060206136b585828601613272565b9150509250929050565b600080604083850312156136d6576136d561301c565b5b60006136e485828601613272565b92505060206136f585828601613272565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b6000600282049050600182168061374657607f821691505b6020821081141561375a576137596136ff565b5b50919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b60006137966020836130ec565b91506137a182613760565b602082019050919050565b600060208201905081810360008301526137c581613789565b9050919050565b7f5265656e7472616e637947756172643a207265656e7472616e742063616c6c00600082015250565b6000613802601f836130ec565b915061380d826137cc565b602082019050919050565b60006020820190508181036000830152613831816137f5565b9050919050565b600081905092915050565b50565b6000613853600083613838565b915061385e82613843565b600082019050919050565b600061387482613846565b9150819050919050565b7f496e76616c6964206d696e7420616d6f756e7421000000000000000000000000600082015250565b60006138b46014836130ec565b91506138bf8261387e565b602082019050919050565b600060208201905081810360008301526138e3816138a7565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b60006139248261319c565b915061392f8361319c565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115613964576139636138ea565b5b828201905092915050565b7f4d617820737570706c7920657863656564656421000000000000000000000000600082015250565b60006139a56014836130ec565b91506139b08261396f565b602082019050919050565b600060208201905081810360008301526139d481613998565b9050919050565b60006139e68261319c565b91506139f18361319c565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0483118215151615613a2a57613a296138ea565b5b828202905092915050565b7f496e73756666696369656e742066756e64732100000000000000000000000000600082015250565b6000613a6b6013836130ec565b9150613a7682613a35565b602082019050919050565b60006020820190508181036000830152613a9a81613a5e565b9050919050565b7f546f6f206d616e792046726565206d696e747321000000000000000000000000600082015250565b6000613ad76014836130ec565b9150613ae282613aa1565b602082019050919050565b60006020820190508181036000830152613b0681613aca565b9050919050565b7f4e6f204d6f726520467265652100000000000000000000000000000000000000600082015250565b6000613b43600d836130ec565b9150613b4e82613b0d565b602082019050919050565b60006020820190508181036000830152613b7281613b36565b9050919050565b7f546f6f206d616e79207065722077616c6c657421000000000000000000000000600082015250565b6000613baf6014836130ec565b9150613bba82613b79565b602082019050919050565b60006020820190508181036000830152613bde81613ba2565b9050919050565b7f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008201527f6e6578697374656e7420746f6b656e0000000000000000000000000000000000602082015250565b6000613c41602f836130ec565b9150613c4c82613be5565b604082019050919050565b60006020820190508181036000830152613c7081613c34565b9050919050565b600081905092915050565b6000613c8d826130e1565b613c978185613c77565b9350613ca78185602086016130fd565b80840191505092915050565b60008190508160005260206000209050919050565b60008154613cd58161372e565b613cdf8186613c77565b94506001821660008114613cfa5760018114613d0b57613d3e565b60ff19831686528186019350613d3e565b613d1485613cb3565b60005b83811015613d3657815481890152600182019150602081019050613d17565b838801955050505b50505092915050565b6000613d538286613c82565b9150613d5f8285613c82565b9150613d6b8284613cc8565b9150819050949350505050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b6000613dd46026836130ec565b9150613ddf82613d78565b604082019050919050565b60006020820190508181036000830152613e0381613dc7565b9050919050565b600081519050919050565b600082825260208201905092915050565b6000613e3182613e0a565b613e3b8185613e15565b9350613e4b8185602086016130fd565b613e5481613130565b840191505092915050565b6000608082019050613e746000830187613231565b613e816020830186613231565b613e8e60408301856132c7565b8181036060830152613ea08184613e26565b905095945050505050565b600081519050613eba81613052565b92915050565b600060208284031215613ed657613ed561301c565b5b6000613ee484828501613eab565b91505092915050565b6000613ef88261319c565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff821415613f2b57613f2a6138ea565b5b600182019050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b6000613f708261319c565b9150613f7b8361319c565b925082613f8b57613f8a613f36565b5b828204905092915050565b6000613fa18261319c565b9150613fac8361319c565b925082821015613fbf57613fbe6138ea565b5b828203905092915050565b6000613fd58261319c565b9150613fe08361319c565b925082613ff057613fef613f36565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fdfea26469706673582212209763bf13cb33c9ec00c217911f8b2ab52a372d22c68a03294c8dea9db51ef40864736f6c63430008090033697066733a2f2f516d4e6d3536417959676d5246736e334b4b4d37664a3136417839574e727264437931743878735964635851724a2f

Deployed Bytecode

0x60806040526004361061023b5760003560e01c8063715018a61161012e578063b88d4fde116100ab578063dc33e6811161006f578063dc33e6811461082a578063e268e4d314610867578063e945971c14610890578063e985e9c5146108b9578063f2fde38b146108f65761023b565b8063b88d4fde14610745578063bc63f02e1461076e578063c7c39ffc14610797578063c87b56dd146107c2578063d5abeb01146107ff5761023b565b8063a035b1fe116100f2578063a035b1fe14610681578063a0712d68146106ac578063a09fa941146106c8578063a22cb465146106f3578063b071401b1461071c5761023b565b8063715018a6146105c05780637ec4a659146105d75780638da5cb5b1461060057806394354fd01461062b57806395d89b41146106565761023b565b806342842e0e116101bc5780635e85d3a3116101805780635e85d3a3146104c957806362b99ad4146104f25780636352211e1461051d5780636f8b44b01461055a57806370a08231146105835761023b565b806342842e0e146103f857806344a0d68a14610421578063453c23101461044a5780635503a0e814610475578063563aaf11146104a05761023b565b806316ba10e01161020357806316ba10e01461033957806318160ddd1461036257806323b872dd1461038d578063333e44e6146103b65780633ccfd60b146103e15761023b565b806301ffc9a71461024057806306fdde031461027d578063081812fc146102a8578063095ea7b3146102e557806313faede61461030e575b600080fd5b34801561024c57600080fd5b506102676004803603810190610262919061307e565b61091f565b60405161027491906130c6565b60405180910390f35b34801561028957600080fd5b50610292610a01565b60405161029f919061317a565b60405180910390f35b3480156102b457600080fd5b506102cf60048036038101906102ca91906131d2565b610a93565b6040516102dc9190613240565b60405180910390f35b3480156102f157600080fd5b5061030c60048036038101906103079190613287565b610b0f565b005b34801561031a57600080fd5b50610323610c1a565b60405161033091906132d6565b60405180910390f35b34801561034557600080fd5b50610360600480360381019061035b9190613426565b610c20565b005b34801561036e57600080fd5b50610377610cb6565b60405161038491906132d6565b60405180910390f35b34801561039957600080fd5b506103b460048036038101906103af919061346f565b610ccd565b005b3480156103c257600080fd5b506103cb610cdd565b6040516103d891906132d6565b60405180910390f35b3480156103ed57600080fd5b506103f6610ce3565b005b34801561040457600080fd5b5061041f600480360381019061041a919061346f565b610e35565b005b34801561042d57600080fd5b50610448600480360381019061044391906131d2565b610e55565b005b34801561045657600080fd5b5061045f610edb565b60405161046c91906132d6565b60405180910390f35b34801561048157600080fd5b5061048a610ee1565b604051610497919061317a565b60405180910390f35b3480156104ac57600080fd5b506104c760048036038101906104c291906131d2565b610f6f565b005b3480156104d557600080fd5b506104f060048036038101906104eb91906131d2565b610ff5565b005b3480156104fe57600080fd5b5061050761107b565b604051610514919061317a565b60405180910390f35b34801561052957600080fd5b50610544600480360381019061053f91906131d2565b611109565b6040516105519190613240565b60405180910390f35b34801561056657600080fd5b50610581600480360381019061057c91906131d2565b61111f565b005b34801561058f57600080fd5b506105aa60048036038101906105a591906134c2565b6111a5565b6040516105b791906132d6565b60405180910390f35b3480156105cc57600080fd5b506105d5611275565b005b3480156105e357600080fd5b506105fe60048036038101906105f99190613426565b6112fd565b005b34801561060c57600080fd5b50610615611393565b6040516106229190613240565b60405180910390f35b34801561063757600080fd5b506106406113bd565b60405161064d91906132d6565b60405180910390f35b34801561066257600080fd5b5061066b6113c3565b604051610678919061317a565b60405180910390f35b34801561068d57600080fd5b50610696611455565b6040516106a391906132d6565b60405180910390f35b6106c660048036038101906106c191906131d2565b61145b565b005b3480156106d457600080fd5b506106dd6116a8565b6040516106ea91906132d6565b60405180910390f35b3480156106ff57600080fd5b5061071a6004803603810190610715919061351b565b6116ae565b005b34801561072857600080fd5b50610743600480360381019061073e91906131d2565b611826565b005b34801561075157600080fd5b5061076c600480360381019061076791906135fc565b6118ac565b005b34801561077a57600080fd5b506107956004803603810190610790919061367f565b611928565b005b3480156107a357600080fd5b506107ac611a5c565b6040516107b991906132d6565b60405180910390f35b3480156107ce57600080fd5b506107e960048036038101906107e491906131d2565b611a62565b6040516107f6919061317a565b60405180910390f35b34801561080b57600080fd5b50610814611b0c565b60405161082191906132d6565b60405180910390f35b34801561083657600080fd5b50610851600480360381019061084c91906134c2565b611b12565b60405161085e91906132d6565b60405180910390f35b34801561087357600080fd5b5061088e600480360381019061088991906131d2565b611b24565b005b34801561089c57600080fd5b506108b760048036038101906108b291906131d2565b611baa565b005b3480156108c557600080fd5b506108e060048036038101906108db91906136bf565b611c30565b6040516108ed91906130c6565b60405180910390f35b34801561090257600080fd5b5061091d600480360381019061091891906134c2565b611cc4565b005b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614806109ea57507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b806109fa57506109f982611dbc565b5b9050919050565b606060028054610a109061372e565b80601f0160208091040260200160405190810160405280929190818152602001828054610a3c9061372e565b8015610a895780601f10610a5e57610100808354040283529160200191610a89565b820191906000526020600020905b815481529060010190602001808311610a6c57829003601f168201915b5050505050905090565b6000610a9e82611e26565b610ad4576040517fcf4700e400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6006600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b6000610b1a82611109565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610b82576040517f943f7b8c00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16610ba1611e74565b73ffffffffffffffffffffffffffffffffffffffff1614158015610bd35750610bd181610bcc611e74565b611c30565b155b15610c0a576040517fcfb3b94200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b610c15838383611e7c565b505050565b600c5481565b610c28611e74565b73ffffffffffffffffffffffffffffffffffffffff16610c46611393565b73ffffffffffffffffffffffffffffffffffffffff1614610c9c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c93906137ac565b60405180910390fd5b8060139080519060200190610cb2929190612f2c565b5050565b6000610cc0611f2e565b6001546000540303905090565b610cd8838383611f37565b505050565b600e5481565b610ceb611e74565b73ffffffffffffffffffffffffffffffffffffffff16610d09611393565b73ffffffffffffffffffffffffffffffffffffffff1614610d5f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d56906137ac565b60405180910390fd5b60026009541415610da5576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d9c90613818565b60405180910390fd5b60026009819055506000610db7611393565b73ffffffffffffffffffffffffffffffffffffffff1647604051610dda90613869565b60006040518083038185875af1925050503d8060008114610e17576040519150601f19603f3d011682016040523d82523d6000602084013e610e1c565b606091505b5050905080610e2a57600080fd5b506001600981905550565b610e50838383604051806020016040528060008152506118ac565b505050565b610e5d611e74565b73ffffffffffffffffffffffffffffffffffffffff16610e7b611393565b73ffffffffffffffffffffffffffffffffffffffff1614610ed1576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ec8906137ac565b60405180910390fd5b80600b8190555050565b600d5481565b60138054610eee9061372e565b80601f0160208091040260200160405190810160405280929190818152602001828054610f1a9061372e565b8015610f675780601f10610f3c57610100808354040283529160200191610f67565b820191906000526020600020905b815481529060010190602001808311610f4a57829003601f168201915b505050505081565b610f77611e74565b73ffffffffffffffffffffffffffffffffffffffff16610f95611393565b73ffffffffffffffffffffffffffffffffffffffff1614610feb576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610fe2906137ac565b60405180910390fd5b80600e8190555050565b610ffd611e74565b73ffffffffffffffffffffffffffffffffffffffff1661101b611393565b73ffffffffffffffffffffffffffffffffffffffff1614611071576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611068906137ac565b60405180910390fd5b8060118190555050565b601280546110889061372e565b80601f01602080910402602001604051908101604052809291908181526020018280546110b49061372e565b80156111015780601f106110d657610100808354040283529160200191611101565b820191906000526020600020905b8154815290600101906020018083116110e457829003601f168201915b505050505081565b6000611114826123ed565b600001519050919050565b611127611e74565b73ffffffffffffffffffffffffffffffffffffffff16611145611393565b73ffffffffffffffffffffffffffffffffffffffff161461119b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611192906137ac565b60405180910390fd5b80600a8190555050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141561120d576040517f8f4eb60400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600560008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160009054906101000a900467ffffffffffffffff1667ffffffffffffffff169050919050565b61127d611e74565b73ffffffffffffffffffffffffffffffffffffffff1661129b611393565b73ffffffffffffffffffffffffffffffffffffffff16146112f1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112e8906137ac565b60405180910390fd5b6112fb600061267c565b565b611305611e74565b73ffffffffffffffffffffffffffffffffffffffff16611323611393565b73ffffffffffffffffffffffffffffffffffffffff1614611379576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611370906137ac565b60405180910390fd5b806012908051906020019061138f929190612f2c565b5050565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b600f5481565b6060600380546113d29061372e565b80601f01602080910402602001604051908101604052809291908181526020018280546113fe9061372e565b801561144b5780601f106114205761010080835404028352916020019161144b565b820191906000526020600020905b81548152906001019060200180831161142e57829003601f168201915b5050505050905090565b600b5481565b8060008111801561146e5750600f548111155b6114ad576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114a4906138ca565b60405180910390fd5b600a54816114b9610cb6565b6114c39190613919565b1115611504576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114fb906139bb565b60405180910390fd5b8180600c5461151391906139db565b341015611555576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161154c90613a81565b60405180910390fd5b600b54600c819055506001600e5461156d9190613919565b83611576610cb6565b6115809190613919565b101561163a576000600c8190555060105483111580156115a257506000600c54145b6115e1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115d890613aed565b60405180910390fd5b601154836115ee33611b12565b6115f89190613919565b1115611639576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161163090613b59565b60405180910390fd5b5b600d548361164733611b12565b6116519190613919565b1115611692576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161168990613bc5565b60405180910390fd5b6116a361169d611e74565b84612742565b505050565b60115481565b6116b6611e74565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141561171b576040517fb06307db00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8060076000611728611e74565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff166117d5611e74565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c318360405161181a91906130c6565b60405180910390a35050565b61182e611e74565b73ffffffffffffffffffffffffffffffffffffffff1661184c611393565b73ffffffffffffffffffffffffffffffffffffffff16146118a2576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611899906137ac565b60405180910390fd5b80600f8190555050565b6118b7848484611f37565b6118d68373ffffffffffffffffffffffffffffffffffffffff16612760565b80156118eb57506118e984848484612783565b155b15611922576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b50505050565b8160008111801561193b5750600f548111155b61197a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611971906138ca565b60405180910390fd5b600a5481611986610cb6565b6119909190613919565b11156119d1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016119c8906139bb565b60405180910390fd5b6119d9611e74565b73ffffffffffffffffffffffffffffffffffffffff166119f7611393565b73ffffffffffffffffffffffffffffffffffffffff1614611a4d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a44906137ac565b60405180910390fd5b611a578284612742565b505050565b60105481565b6060611a6d82611e26565b611aac576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611aa390613c57565b60405180910390fd5b6000611ab66128e3565b90506000815111611ad65760405180602001604052806000815250611b04565b80611ae084612975565b6013604051602001611af493929190613d47565b6040516020818303038152906040525b915050919050565b600a5481565b6000611b1d82612ad6565b9050919050565b611b2c611e74565b73ffffffffffffffffffffffffffffffffffffffff16611b4a611393565b73ffffffffffffffffffffffffffffffffffffffff1614611ba0576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b97906137ac565b60405180910390fd5b80600d8190555050565b611bb2611e74565b73ffffffffffffffffffffffffffffffffffffffff16611bd0611393565b73ffffffffffffffffffffffffffffffffffffffff1614611c26576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c1d906137ac565b60405180910390fd5b8060108190555050565b6000600760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b611ccc611e74565b73ffffffffffffffffffffffffffffffffffffffff16611cea611393565b73ffffffffffffffffffffffffffffffffffffffff1614611d40576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d37906137ac565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415611db0576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611da790613dea565b60405180910390fd5b611db98161267c565b50565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b600081611e31611f2e565b11158015611e40575060005482105b8015611e6d575060046000838152602001908152602001600020600001601c9054906101000a900460ff16155b9050919050565b600033905090565b826006600084815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b60006001905090565b6000611f42826123ed565b90508373ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff1614611fad576040517fa114810000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b60008473ffffffffffffffffffffffffffffffffffffffff16611fce611e74565b73ffffffffffffffffffffffffffffffffffffffff161480611ffd5750611ffc85611ff7611e74565b611c30565b5b80612042575061200b611e74565b73ffffffffffffffffffffffffffffffffffffffff1661202a84610a93565b73ffffffffffffffffffffffffffffffffffffffff16145b90508061207b576040517f59c896be00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1614156120e2576040517fea553b3400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6120ef8585856001612b40565b6120fb60008487611e7c565b6001600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a900467ffffffffffffffff160392506101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055506001600560008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a900467ffffffffffffffff160192506101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055506000600460008581526020019081526020016000209050848160000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550428160000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff16021790555060006001850190506000600460008381526020019081526020016000209050600073ffffffffffffffffffffffffffffffffffffffff168160000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16141561237b57600054821461237a57878160000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555084602001518160000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055505b5b505050828473ffffffffffffffffffffffffffffffffffffffff168673ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a46123e68585856001612b46565b5050505050565b6123f5612fb2565b600082905080612403611f2e565b11158015612412575060005481105b15612645576000600460008381526020019081526020016000206040518060600160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815260200160008201601c9054906101000a900460ff1615151515815250509050806040015161264357600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff1614612527578092505050612677565b5b60011561264257818060019003925050600460008381526020019081526020016000206040518060600160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815260200160008201601c9054906101000a900460ff1615151515815250509050600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff161461263d578092505050612677565b612528565b5b505b6040517fdf2d9b4200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b919050565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b61275c828260405180602001604052806000815250612b4c565b5050565b6000808273ffffffffffffffffffffffffffffffffffffffff163b119050919050565b60008373ffffffffffffffffffffffffffffffffffffffff1663150b7a026127a9611e74565b8786866040518563ffffffff1660e01b81526004016127cb9493929190613e5f565b602060405180830381600087803b1580156127e557600080fd5b505af192505050801561281657506040513d601f19601f820116820180604052508101906128139190613ec0565b60015b612890573d8060008114612846576040519150601f19603f3d011682016040523d82523d6000602084013e61284b565b606091505b50600081511415612888576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050949350505050565b6060601280546128f29061372e565b80601f016020809104026020016040519081016040528092919081815260200182805461291e9061372e565b801561296b5780601f106129405761010080835404028352916020019161296b565b820191906000526020600020905b81548152906001019060200180831161294e57829003601f168201915b5050505050905090565b606060008214156129bd576040518060400160405280600181526020017f30000000000000000000000000000000000000000000000000000000000000008152509050612ad1565b600082905060005b600082146129ef5780806129d890613eed565b915050600a826129e89190613f65565b91506129c5565b60008167ffffffffffffffff811115612a0b57612a0a6132fb565b5b6040519080825280601f01601f191660200182016040528015612a3d5781602001600182028036833780820191505090505b5090505b60008514612aca57600182612a569190613f96565b9150600a85612a659190613fca565b6030612a719190613919565b60f81b818381518110612a8757612a86613ffb565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a85612ac39190613f65565b9450612a41565b8093505050505b919050565b6000600560008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160089054906101000a900467ffffffffffffffff1667ffffffffffffffff169050919050565b50505050565b50505050565b612b598383836001612b5e565b505050565b600080549050600073ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff161415612bcb576040517f2e07630000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6000841415612c06576040517fb562e8dd00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b612c136000868387612b40565b83600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a900467ffffffffffffffff160192506101000a81548167ffffffffffffffff021916908367ffffffffffffffff16021790555083600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160088282829054906101000a900467ffffffffffffffff160192506101000a81548167ffffffffffffffff021916908367ffffffffffffffff160217905550846004600083815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550426004600083815260200190815260200160002060000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff160217905550600081905060008582019050838015612ddd5750612ddc8773ffffffffffffffffffffffffffffffffffffffff16612760565b5b15612ea3575b818773ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4612e526000888480600101955088612783565b612e88576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b80821415612de3578260005414612e9e57600080fd5b612f0f565b5b818060010192508773ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a480821415612ea4575b816000819055505050612f256000868387612b46565b5050505050565b828054612f389061372e565b90600052602060002090601f016020900481019282612f5a5760008555612fa1565b82601f10612f7357805160ff1916838001178555612fa1565b82800160010185558215612fa1579182015b82811115612fa0578251825591602001919060010190612f85565b5b509050612fae9190612ff5565b5090565b6040518060600160405280600073ffffffffffffffffffffffffffffffffffffffff168152602001600067ffffffffffffffff1681526020016000151581525090565b5b8082111561300e576000816000905550600101612ff6565b5090565b6000604051905090565b600080fd5b600080fd5b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b61305b81613026565b811461306657600080fd5b50565b60008135905061307881613052565b92915050565b6000602082840312156130945761309361301c565b5b60006130a284828501613069565b91505092915050565b60008115159050919050565b6130c0816130ab565b82525050565b60006020820190506130db60008301846130b7565b92915050565b600081519050919050565b600082825260208201905092915050565b60005b8381101561311b578082015181840152602081019050613100565b8381111561312a576000848401525b50505050565b6000601f19601f8301169050919050565b600061314c826130e1565b61315681856130ec565b93506131668185602086016130fd565b61316f81613130565b840191505092915050565b600060208201905081810360008301526131948184613141565b905092915050565b6000819050919050565b6131af8161319c565b81146131ba57600080fd5b50565b6000813590506131cc816131a6565b92915050565b6000602082840312156131e8576131e761301c565b5b60006131f6848285016131bd565b91505092915050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b600061322a826131ff565b9050919050565b61323a8161321f565b82525050565b60006020820190506132556000830184613231565b92915050565b6132648161321f565b811461326f57600080fd5b50565b6000813590506132818161325b565b92915050565b6000806040838503121561329e5761329d61301c565b5b60006132ac85828601613272565b92505060206132bd858286016131bd565b9150509250929050565b6132d08161319c565b82525050565b60006020820190506132eb60008301846132c7565b92915050565b600080fd5b600080fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b61333382613130565b810181811067ffffffffffffffff82111715613352576133516132fb565b5b80604052505050565b6000613365613012565b9050613371828261332a565b919050565b600067ffffffffffffffff821115613391576133906132fb565b5b61339a82613130565b9050602081019050919050565b82818337600083830152505050565b60006133c96133c484613376565b61335b565b9050828152602081018484840111156133e5576133e46132f6565b5b6133f08482856133a7565b509392505050565b600082601f83011261340d5761340c6132f1565b5b813561341d8482602086016133b6565b91505092915050565b60006020828403121561343c5761343b61301c565b5b600082013567ffffffffffffffff81111561345a57613459613021565b5b613466848285016133f8565b91505092915050565b6000806000606084860312156134885761348761301c565b5b600061349686828701613272565b93505060206134a786828701613272565b92505060406134b8868287016131bd565b9150509250925092565b6000602082840312156134d8576134d761301c565b5b60006134e684828501613272565b91505092915050565b6134f8816130ab565b811461350357600080fd5b50565b600081359050613515816134ef565b92915050565b600080604083850312156135325761353161301c565b5b600061354085828601613272565b925050602061355185828601613506565b9150509250929050565b600067ffffffffffffffff821115613576576135756132fb565b5b61357f82613130565b9050602081019050919050565b600061359f61359a8461355b565b61335b565b9050828152602081018484840111156135bb576135ba6132f6565b5b6135c68482856133a7565b509392505050565b600082601f8301126135e3576135e26132f1565b5b81356135f384826020860161358c565b91505092915050565b600080600080608085870312156136165761361561301c565b5b600061362487828801613272565b945050602061363587828801613272565b9350506040613646878288016131bd565b925050606085013567ffffffffffffffff81111561366757613666613021565b5b613673878288016135ce565b91505092959194509250565b600080604083850312156136965761369561301c565b5b60006136a4858286016131bd565b92505060206136b585828601613272565b9150509250929050565b600080604083850312156136d6576136d561301c565b5b60006136e485828601613272565b92505060206136f585828601613272565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b6000600282049050600182168061374657607f821691505b6020821081141561375a576137596136ff565b5b50919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b60006137966020836130ec565b91506137a182613760565b602082019050919050565b600060208201905081810360008301526137c581613789565b9050919050565b7f5265656e7472616e637947756172643a207265656e7472616e742063616c6c00600082015250565b6000613802601f836130ec565b915061380d826137cc565b602082019050919050565b60006020820190508181036000830152613831816137f5565b9050919050565b600081905092915050565b50565b6000613853600083613838565b915061385e82613843565b600082019050919050565b600061387482613846565b9150819050919050565b7f496e76616c6964206d696e7420616d6f756e7421000000000000000000000000600082015250565b60006138b46014836130ec565b91506138bf8261387e565b602082019050919050565b600060208201905081810360008301526138e3816138a7565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b60006139248261319c565b915061392f8361319c565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115613964576139636138ea565b5b828201905092915050565b7f4d617820737570706c7920657863656564656421000000000000000000000000600082015250565b60006139a56014836130ec565b91506139b08261396f565b602082019050919050565b600060208201905081810360008301526139d481613998565b9050919050565b60006139e68261319c565b91506139f18361319c565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0483118215151615613a2a57613a296138ea565b5b828202905092915050565b7f496e73756666696369656e742066756e64732100000000000000000000000000600082015250565b6000613a6b6013836130ec565b9150613a7682613a35565b602082019050919050565b60006020820190508181036000830152613a9a81613a5e565b9050919050565b7f546f6f206d616e792046726565206d696e747321000000000000000000000000600082015250565b6000613ad76014836130ec565b9150613ae282613aa1565b602082019050919050565b60006020820190508181036000830152613b0681613aca565b9050919050565b7f4e6f204d6f726520467265652100000000000000000000000000000000000000600082015250565b6000613b43600d836130ec565b9150613b4e82613b0d565b602082019050919050565b60006020820190508181036000830152613b7281613b36565b9050919050565b7f546f6f206d616e79207065722077616c6c657421000000000000000000000000600082015250565b6000613baf6014836130ec565b9150613bba82613b79565b602082019050919050565b60006020820190508181036000830152613bde81613ba2565b9050919050565b7f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008201527f6e6578697374656e7420746f6b656e0000000000000000000000000000000000602082015250565b6000613c41602f836130ec565b9150613c4c82613be5565b604082019050919050565b60006020820190508181036000830152613c7081613c34565b9050919050565b600081905092915050565b6000613c8d826130e1565b613c978185613c77565b9350613ca78185602086016130fd565b80840191505092915050565b60008190508160005260206000209050919050565b60008154613cd58161372e565b613cdf8186613c77565b94506001821660008114613cfa5760018114613d0b57613d3e565b60ff19831686528186019350613d3e565b613d1485613cb3565b60005b83811015613d3657815481890152600182019150602081019050613d17565b838801955050505b50505092915050565b6000613d538286613c82565b9150613d5f8285613c82565b9150613d6b8284613cc8565b9150819050949350505050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b6000613dd46026836130ec565b9150613ddf82613d78565b604082019050919050565b60006020820190508181036000830152613e0381613dc7565b9050919050565b600081519050919050565b600082825260208201905092915050565b6000613e3182613e0a565b613e3b8185613e15565b9350613e4b8185602086016130fd565b613e5481613130565b840191505092915050565b6000608082019050613e746000830187613231565b613e816020830186613231565b613e8e60408301856132c7565b8181036060830152613ea08184613e26565b905095945050505050565b600081519050613eba81613052565b92915050565b600060208284031215613ed657613ed561301c565b5b6000613ee484828501613eab565b91505092915050565b6000613ef88261319c565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff821415613f2b57613f2a6138ea565b5b600182019050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b6000613f708261319c565b9150613f7b8361319c565b925082613f8b57613f8a613f36565b5b828204905092915050565b6000613fa18261319c565b9150613fac8361319c565b925082821015613fbf57613fbe6138ea565b5b828203905092915050565b6000613fd58261319c565b9150613fe08361319c565b925082613ff057613fef613f36565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fdfea26469706673582212209763bf13cb33c9ec00c217911f8b2ab52a372d22c68a03294c8dea9db51ef40864736f6c63430008090033

Deployed Bytecode Sourcemap

47711:3471:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;29863:305;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;32976:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;34479:204;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;34042:371;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;47886:19;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;50434:100;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;29112:303;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;35344:170;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;47948:28;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;50540:150;;;;;;;;;;;;;:::i;:::-;;35585:185;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;49466:75;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;47910:33;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;48188;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;49863:94;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;50064:122;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;48101:82;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;32784:125;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;49547:94;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;30232:206;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;7621:103;;;;;;;;;;;;;:::i;:::-;;50328:100;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;6970:87;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;47981:37;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;33145:104;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;47847:34;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;48666:523;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;48057:35;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;34755:287;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;50192:130;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;35841:369;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;49197:148;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;48023:29;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;50806:373;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;47813:29;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;49351:107;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;49751:106;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;49647:98;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;35113:164;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;7879:201;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;29863:305;29965:4;30017:25;30002:40;;;:11;:40;;;;:105;;;;30074:33;30059:48;;;:11;:48;;;;30002:105;:158;;;;30124:36;30148:11;30124:23;:36::i;:::-;30002:158;29982:178;;29863:305;;;:::o;32976:100::-;33030:13;33063:5;33056:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;32976:100;:::o;34479:204::-;34547:7;34572:16;34580:7;34572;:16::i;:::-;34567:64;;34597:34;;;;;;;;;;;;;;34567:64;34651:15;:24;34667:7;34651:24;;;;;;;;;;;;;;;;;;;;;34644:31;;34479:204;;;:::o;34042:371::-;34115:13;34131:24;34147:7;34131:15;:24::i;:::-;34115:40;;34176:5;34170:11;;:2;:11;;;34166:48;;;34190:24;;;;;;;;;;;;;;34166:48;34247:5;34231:21;;:12;:10;:12::i;:::-;:21;;;;:63;;;;;34257:37;34274:5;34281:12;:10;:12::i;:::-;34257:16;:37::i;:::-;34256:38;34231:63;34227:138;;;34318:35;;;;;;;;;;;;;;34227:138;34377:28;34386:2;34390:7;34399:5;34377:8;:28::i;:::-;34104:309;34042:371;;:::o;47886:19::-;;;;:::o;50434:100::-;7201:12;:10;:12::i;:::-;7190:23;;:7;:5;:7::i;:::-;:23;;;7182:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;50518:10:::1;50506:9;:22;;;;;;;;;;;;:::i;:::-;;50434:100:::0;:::o;29112:303::-;29156:7;29381:15;:13;:15::i;:::-;29366:12;;29350:13;;:28;:46;29343:53;;29112:303;:::o;35344:170::-;35478:28;35488:4;35494:2;35498:7;35478:9;:28::i;:::-;35344:170;;;:::o;47948:28::-;;;;:::o;50540:150::-;7201:12;:10;:12::i;:::-;7190:23;;:7;:5;:7::i;:::-;:23;;;7182:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;1944:1:::1;2542:7;;:19;;2534:63;;;;;;;;;;;;:::i;:::-;;;;;;;;;1944:1;2675:7;:18;;;;50598:7:::2;50619;:5;:7::i;:::-;50611:21;;50640;50611:55;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;50597:69;;;50681:2;50673:11;;;::::0;::::2;;50590:100;1900:1:::1;2854:7;:22;;;;50540:150::o:0;35585:185::-;35723:39;35740:4;35746:2;35750:7;35723:39;;;;;;;;;;;;:16;:39::i;:::-;35585:185;;;:::o;49466:75::-;7201:12;:10;:12::i;:::-;7190:23;;:7;:5;:7::i;:::-;:23;;;7182:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;49530:5:::1;49522;:13;;;;49466:75:::0;:::o;47910:33::-;;;;:::o;48188:::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;49863:94::-;7201:12;:10;:12::i;:::-;7190:23;;:7;:5;:7::i;:::-;:23;;;7182:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;49941:10:::1;49929:9;:22;;;;49863:94:::0;:::o;50064:122::-;7201:12;:10;:12::i;:::-;7190:23;;:7;:5;:7::i;:::-;:23;;;7182:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;50163:17:::1;50144:16;:36;;;;50064:122:::0;:::o;48101:82::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;32784:125::-;32848:7;32875:21;32888:7;32875:12;:21::i;:::-;:26;;;32868:33;;32784:125;;;:::o;49547:94::-;7201:12;:10;:12::i;:::-;7190:23;;:7;:5;:7::i;:::-;:23;;;7182:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;49625:10:::1;49613:9;:22;;;;49547:94:::0;:::o;30232:206::-;30296:7;30337:1;30320:19;;:5;:19;;;30316:60;;;30348:28;;;;;;;;;;;;;;30316:60;30402:12;:19;30415:5;30402:19;;;;;;;;;;;;;;;:27;;;;;;;;;;;;30394:36;;30387:43;;30232:206;;;:::o;7621:103::-;7201:12;:10;:12::i;:::-;7190:23;;:7;:5;:7::i;:::-;:23;;;7182:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;7686:30:::1;7713:1;7686:18;:30::i;:::-;7621:103::o:0;50328:100::-;7201:12;:10;:12::i;:::-;7190:23;;:7;:5;:7::i;:::-;:23;;;7182:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;50412:10:::1;50400:9;:22;;;;;;;;;;;;:::i;:::-;;50328:100:::0;:::o;6970:87::-;7016:7;7043:6;;;;;;;;;;;7036:13;;6970:87;:::o;47981:37::-;;;;:::o;33145:104::-;33201:13;33234:7;33227:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;33145:104;:::o;47847:34::-;;;;:::o;48666:523::-;48731:11;48363:1;48349:11;:15;:52;;;;;48383:18;;48368:11;:33;;48349:52;48341:85;;;;;;;;;;;;:::i;:::-;;;;;;;;;48472:9;;48457:11;48441:13;:11;:13::i;:::-;:27;;;;:::i;:::-;:40;;48433:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;48764:11:::1;48611;48604:4;;:18;;;;:::i;:::-;48591:9;:31;;48583:63;;;;;;;;;;;;:::i;:::-;;;;;;;;;48791:5:::2;;48784:4;:12;;;;48848:1;48836:9;;:13;;;;:::i;:::-;48822:11;48806:13;:11;:13::i;:::-;:27;;;;:::i;:::-;:43;48803:245;;;48867:1;48860:4;:8;;;;48900:10;;48885:11;:25;;:38;;;;;48922:1;48914:4;;:9;48885:38;48877:71;;;;;;;;;;;;:::i;:::-;;;;;;;;;49007:16;;48992:11;48965:24;48978:10;48965:12;:24::i;:::-;:38;;;;:::i;:::-;:58;;48957:83;;;;;;;;;;;;:::i;:::-;;;;;;;;;48803:245;49104:12;;49089:11;49062:24;49075:10;49062:12;:24::i;:::-;:38;;;;:::i;:::-;:54;;49054:86;;;;;;;;;;;;:::i;:::-;;;;;;;;;49147:36;49157:12;:10;:12::i;:::-;49171:11;49147:9;:36::i;:::-;48513:1:::1;48666:523:::0;;:::o;48057:35::-;;;;:::o;34755:287::-;34866:12;:10;:12::i;:::-;34854:24;;:8;:24;;;34850:54;;;34887:17;;;;;;;;;;;;;;34850:54;34962:8;34917:18;:32;34936:12;:10;:12::i;:::-;34917:32;;;;;;;;;;;;;;;:42;34950:8;34917:42;;;;;;;;;;;;;;;;:53;;;;;;;;;;;;;;;;;;35015:8;34986:48;;35001:12;:10;:12::i;:::-;34986:48;;;35025:8;34986:48;;;;;;:::i;:::-;;;;;;;;34755:287;;:::o;50192:130::-;7201:12;:10;:12::i;:::-;7190:23;;:7;:5;:7::i;:::-;:23;;;7182:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;50297:19:::1;50276:18;:40;;;;50192:130:::0;:::o;35841:369::-;36008:28;36018:4;36024:2;36028:7;36008:9;:28::i;:::-;36051:15;:2;:13;;;:15::i;:::-;:76;;;;;36071:56;36102:4;36108:2;36112:7;36121:5;36071:30;:56::i;:::-;36070:57;36051:76;36047:156;;;36151:40;;;;;;;;;;;;;;36047:156;35841:369;;;;:::o;49197:148::-;49276:11;48363:1;48349:11;:15;:52;;;;;48383:18;;48368:11;:33;;48349:52;48341:85;;;;;;;;;;;;:::i;:::-;;;;;;;;;48472:9;;48457:11;48441:13;:11;:13::i;:::-;:27;;;;:::i;:::-;:40;;48433:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;7201:12:::1;:10;:12::i;:::-;7190:23;;:7;:5;:7::i;:::-;:23;;;7182:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;49306:33:::2;49316:9;49327:11;49306:9;:33::i;:::-;49197:148:::0;;;:::o;48023:29::-;;;;:::o;50806:373::-;50880:13;50910:17;50918:8;50910:7;:17::i;:::-;50902:77;;;;;;;;;;;;:::i;:::-;;;;;;;;;50988:28;51019:10;:8;:10::i;:::-;50988:41;;51074:1;51049:14;51043:28;:32;:130;;;;;;;;;;;;;;;;;51111:14;51127:19;:8;:17;:19::i;:::-;51148:9;51094:64;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;51043:130;51036:137;;;50806:373;;;:::o;47813:29::-;;;;:::o;49351:107::-;49409:7;49432:20;49446:5;49432:13;:20::i;:::-;49425:27;;49351:107;;;:::o;49751:106::-;7201:12;:10;:12::i;:::-;7190:23;;:7;:5;:7::i;:::-;:23;;;7182:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;49838:13:::1;49823:12;:28;;;;49751:106:::0;:::o;49647:98::-;7201:12;:10;:12::i;:::-;7190:23;;:7;:5;:7::i;:::-;:23;;;7182:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;49728:11:::1;49715:10;:24;;;;49647:98:::0;:::o;35113:164::-;35210:4;35234:18;:25;35253:5;35234:25;;;;;;;;;;;;;;;:35;35260:8;35234:35;;;;;;;;;;;;;;;;;;;;;;;;;35227:42;;35113:164;;;;:::o;7879:201::-;7201:12;:10;:12::i;:::-;7190:23;;:7;:5;:7::i;:::-;:23;;;7182:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;7988:1:::1;7968:22;;:8;:22;;;;7960:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;8044:28;8063:8;8044:18;:28::i;:::-;7879:201:::0;:::o;19754:157::-;19839:4;19878:25;19863:40;;;:11;:40;;;;19856:47;;19754:157;;;:::o;36465:174::-;36522:4;36565:7;36546:15;:13;:15::i;:::-;:26;;:53;;;;;36586:13;;36576:7;:23;36546:53;:85;;;;;36604:11;:20;36616:7;36604:20;;;;;;;;;;;:27;;;;;;;;;;;;36603:28;36546:85;36539:92;;36465:174;;;:::o;5694:98::-;5747:7;5774:10;5767:17;;5694:98;:::o;44622:196::-;44764:2;44737:15;:24;44753:7;44737:24;;;;;;;;;;;;:29;;;;;;;;;;;;;;;;;;44802:7;44798:2;44782:28;;44791:5;44782:28;;;;;;;;;;;;44622:196;;;:::o;49963:95::-;50028:7;50051:1;50044:8;;49963:95;:::o;39565:2130::-;39680:35;39718:21;39731:7;39718:12;:21::i;:::-;39680:59;;39778:4;39756:26;;:13;:18;;;:26;;;39752:67;;39791:28;;;;;;;;;;;;;;39752:67;39832:22;39874:4;39858:20;;:12;:10;:12::i;:::-;:20;;;:73;;;;39895:36;39912:4;39918:12;:10;:12::i;:::-;39895:16;:36::i;:::-;39858:73;:126;;;;39972:12;:10;:12::i;:::-;39948:36;;:20;39960:7;39948:11;:20::i;:::-;:36;;;39858:126;39832:153;;40003:17;39998:66;;40029:35;;;;;;;;;;;;;;39998:66;40093:1;40079:16;;:2;:16;;;40075:52;;;40104:23;;;;;;;;;;;;;;40075:52;40140:43;40162:4;40168:2;40172:7;40181:1;40140:21;:43::i;:::-;40248:35;40265:1;40269:7;40278:4;40248:8;:35::i;:::-;40609:1;40579:12;:18;40592:4;40579:18;;;;;;;;;;;;;;;:26;;;:31;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;40653:1;40625:12;:16;40638:2;40625:16;;;;;;;;;;;;;;;:24;;;:29;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;40671:31;40705:11;:20;40717:7;40705:20;;;;;;;;;;;40671:54;;40756:2;40740:8;:13;;;:18;;;;;;;;;;;;;;;;;;40806:15;40773:8;:23;;;:49;;;;;;;;;;;;;;;;;;41074:19;41106:1;41096:7;:11;41074:33;;41122:31;41156:11;:24;41168:11;41156:24;;;;;;;;;;;41122:58;;41224:1;41199:27;;:8;:13;;;;;;;;;;;;:27;;;41195:384;;;41409:13;;41394:11;:28;41390:174;;41463:4;41447:8;:13;;;:20;;;;;;;;;;;;;;;;;;41516:13;:28;;;41490:8;:23;;;:54;;;;;;;;;;;;;;;;;;41390:174;41195:384;40554:1036;;;41626:7;41622:2;41607:27;;41616:4;41607:27;;;;;;;;;;;;41645:42;41666:4;41672:2;41676:7;41685:1;41645:20;:42::i;:::-;39669:2026;;39565:2130;;;:::o;31613:1109::-;31675:21;;:::i;:::-;31709:12;31724:7;31709:22;;31792:4;31773:15;:13;:15::i;:::-;:23;;:47;;;;;31807:13;;31800:4;:20;31773:47;31769:886;;;31841:31;31875:11;:17;31887:4;31875:17;;;;;;;;;;;31841:51;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;31916:9;:16;;;31911:729;;31987:1;31961:28;;:9;:14;;;:28;;;31957:101;;32025:9;32018:16;;;;;;31957:101;32360:261;32367:4;32360:261;;;32400:6;;;;;;;;32445:11;:17;32457:4;32445:17;;;;;;;;;;;32433:29;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;32519:1;32493:28;;:9;:14;;;:28;;;32489:109;;32561:9;32554:16;;;;;;32489:109;32360:261;;;31911:729;31822:833;31769:886;32683:31;;;;;;;;;;;;;;31613:1109;;;;:::o;8240:191::-;8314:16;8333:6;;;;;;;;;;;8314:25;;8359:8;8350:6;;:17;;;;;;;;;;;;;;;;;;8414:8;8383:40;;8404:8;8383:40;;;;;;;;;;;;8303:128;8240:191;:::o;36647:104::-;36716:27;36726:2;36730:8;36716:27;;;;;;;;;;;;:9;:27::i;:::-;36647:104;;:::o;9671:326::-;9731:4;9988:1;9966:7;:19;;;:23;9959:30;;9671:326;;;:::o;45310:667::-;45473:4;45510:2;45494:36;;;45531:12;:10;:12::i;:::-;45545:4;45551:7;45560:5;45494:72;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;45490:480;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;45745:1;45728:6;:13;:18;45724:235;;;45774:40;;;;;;;;;;;;;;45724:235;45917:6;45911:13;45902:6;45898:2;45894:15;45887:38;45490:480;45623:45;;;45613:55;;;:6;:55;;;;45606:62;;;45310:667;;;;;;:::o;50696:104::-;50756:13;50785:9;50778:16;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;50696:104;:::o;3256:723::-;3312:13;3542:1;3533:5;:10;3529:53;;;3560:10;;;;;;;;;;;;;;;;;;;;;3529:53;3592:12;3607:5;3592:20;;3623:14;3648:78;3663:1;3655:4;:9;3648:78;;3681:8;;;;;:::i;:::-;;;;3712:2;3704:10;;;;;:::i;:::-;;;3648:78;;;3736:19;3768:6;3758:17;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3736:39;;3786:154;3802:1;3793:5;:10;3786:154;;3830:1;3820:11;;;;;:::i;:::-;;;3897:2;3889:5;:10;;;;:::i;:::-;3876:2;:24;;;;:::i;:::-;3863:39;;3846:6;3853;3846:14;;;;;;;;:::i;:::-;;;;;:56;;;;;;;;;;;3926:2;3917:11;;;;;:::i;:::-;;;3786:154;;;3964:6;3950:21;;;;;3256:723;;;;:::o;30520:137::-;30581:7;30616:12;:19;30629:5;30616:19;;;;;;;;;;;;;;;:32;;;;;;;;;;;;30608:41;;30601:48;;30520:137;;;:::o;46625:159::-;;;;;:::o;47443:158::-;;;;;:::o;37114:163::-;37237:32;37243:2;37247:8;37257:5;37264:4;37237:5;:32::i;:::-;37114:163;;;:::o;37536:1775::-;37675:20;37698:13;;37675:36;;37740:1;37726:16;;:2;:16;;;37722:48;;;37751:19;;;;;;;;;;;;;;37722:48;37797:1;37785:8;:13;37781:44;;;37807:18;;;;;;;;;;;;;;37781:44;37838:61;37868:1;37872:2;37876:12;37890:8;37838:21;:61::i;:::-;38211:8;38176:12;:16;38189:2;38176:16;;;;;;;;;;;;;;;:24;;;:44;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;38275:8;38235:12;:16;38248:2;38235:16;;;;;;;;;;;;;;;:29;;;:49;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;38334:2;38301:11;:25;38313:12;38301:25;;;;;;;;;;;:30;;;:35;;;;;;;;;;;;;;;;;;38401:15;38351:11;:25;38363:12;38351:25;;;;;;;;;;;:40;;;:66;;;;;;;;;;;;;;;;;;38434:20;38457:12;38434:35;;38484:11;38513:8;38498:12;:23;38484:37;;38542:4;:23;;;;;38550:15;:2;:13;;;:15::i;:::-;38542:23;38538:641;;;38586:314;38642:12;38638:2;38617:38;;38634:1;38617:38;;;;;;;;;;;;38683:69;38722:1;38726:2;38730:14;;;;;;38746:5;38683:30;:69::i;:::-;38678:174;;38788:40;;;;;;;;;;;;;;38678:174;38895:3;38879:12;:19;;38586:314;;38981:12;38964:13;;:29;38960:43;;38995:8;;;38960:43;38538:641;;;39044:120;39100:14;;;;;;39096:2;39075:40;;39092:1;39075:40;;;;;;;;;;;;39159:3;39143:12;:19;;39044:120;;38538:641;39209:12;39193:13;:28;;;;38151:1082;;39243:60;39272:1;39276:2;39280:12;39294:8;39243:20;:60::i;:::-;37664:1647;37536: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:117::-;5399:1;5396;5389:12;5413:117;5522:1;5519;5512:12;5536:180;5584:77;5581:1;5574:88;5681:4;5678:1;5671:15;5705:4;5702:1;5695:15;5722:281;5805:27;5827:4;5805:27;:::i;:::-;5797:6;5793:40;5935:6;5923:10;5920:22;5899:18;5887:10;5884:34;5881:62;5878:88;;;5946:18;;:::i;:::-;5878:88;5986:10;5982:2;5975:22;5765:238;5722:281;;:::o;6009:129::-;6043:6;6070:20;;:::i;:::-;6060:30;;6099:33;6127:4;6119:6;6099:33;:::i;:::-;6009:129;;;:::o;6144:308::-;6206:4;6296:18;6288:6;6285:30;6282:56;;;6318:18;;:::i;:::-;6282:56;6356:29;6378:6;6356:29;:::i;:::-;6348:37;;6440:4;6434;6430:15;6422:23;;6144:308;;;:::o;6458:154::-;6542:6;6537:3;6532;6519:30;6604:1;6595:6;6590:3;6586:16;6579:27;6458:154;;;:::o;6618:412::-;6696:5;6721:66;6737:49;6779:6;6737:49;:::i;:::-;6721:66;:::i;:::-;6712:75;;6810:6;6803:5;6796:21;6848:4;6841:5;6837:16;6886:3;6877:6;6872:3;6868:16;6865:25;6862:112;;;6893:79;;:::i;:::-;6862:112;6983:41;7017:6;7012:3;7007;6983:41;:::i;:::-;6702:328;6618:412;;;;;:::o;7050:340::-;7106:5;7155:3;7148:4;7140:6;7136:17;7132:27;7122:122;;7163:79;;:::i;:::-;7122:122;7280:6;7267:20;7305:79;7380:3;7372:6;7365:4;7357:6;7353:17;7305:79;:::i;:::-;7296:88;;7112:278;7050:340;;;;:::o;7396:509::-;7465:6;7514:2;7502:9;7493:7;7489:23;7485:32;7482:119;;;7520:79;;:::i;:::-;7482:119;7668:1;7657:9;7653:17;7640:31;7698:18;7690:6;7687:30;7684:117;;;7720:79;;:::i;:::-;7684:117;7825:63;7880:7;7871:6;7860:9;7856:22;7825:63;:::i;:::-;7815:73;;7611:287;7396:509;;;;:::o;7911:619::-;7988:6;7996;8004;8053:2;8041:9;8032:7;8028:23;8024:32;8021:119;;;8059:79;;:::i;:::-;8021:119;8179:1;8204:53;8249:7;8240:6;8229:9;8225:22;8204:53;:::i;:::-;8194:63;;8150:117;8306:2;8332:53;8377:7;8368:6;8357:9;8353:22;8332:53;:::i;:::-;8322:63;;8277:118;8434:2;8460:53;8505:7;8496:6;8485:9;8481:22;8460:53;:::i;:::-;8450:63;;8405:118;7911:619;;;;;:::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:468::-;9197:6;9205;9254:2;9242:9;9233:7;9229:23;9225:32;9222:119;;;9260:79;;:::i;:::-;9222:119;9380:1;9405:53;9450:7;9441:6;9430:9;9426:22;9405:53;:::i;:::-;9395:63;;9351:117;9507:2;9533:50;9575:7;9566:6;9555:9;9551:22;9533:50;:::i;:::-;9523:60;;9478:115;9132:468;;;;;:::o;9606:307::-;9667:4;9757:18;9749:6;9746:30;9743:56;;;9779:18;;:::i;:::-;9743:56;9817:29;9839:6;9817:29;:::i;:::-;9809:37;;9901:4;9895;9891:15;9883:23;;9606:307;;;:::o;9919:410::-;9996:5;10021:65;10037:48;10078:6;10037:48;:::i;:::-;10021:65;:::i;:::-;10012:74;;10109:6;10102:5;10095:21;10147:4;10140:5;10136:16;10185:3;10176:6;10171:3;10167:16;10164:25;10161:112;;;10192:79;;:::i;:::-;10161:112;10282:41;10316:6;10311:3;10306;10282:41;:::i;:::-;10002:327;9919:410;;;;;:::o;10348:338::-;10403:5;10452:3;10445:4;10437:6;10433:17;10429:27;10419:122;;10460:79;;:::i;:::-;10419:122;10577:6;10564:20;10602:78;10676:3;10668:6;10661:4;10653:6;10649:17;10602:78;:::i;:::-;10593:87;;10409:277;10348:338;;;;:::o;10692:943::-;10787:6;10795;10803;10811;10860:3;10848:9;10839:7;10835:23;10831:33;10828:120;;;10867:79;;:::i;:::-;10828:120;10987:1;11012:53;11057:7;11048:6;11037:9;11033:22;11012:53;:::i;:::-;11002:63;;10958:117;11114:2;11140:53;11185:7;11176:6;11165:9;11161:22;11140:53;:::i;:::-;11130:63;;11085:118;11242:2;11268:53;11313:7;11304:6;11293:9;11289:22;11268:53;:::i;:::-;11258:63;;11213:118;11398:2;11387:9;11383:18;11370:32;11429:18;11421:6;11418:30;11415:117;;;11451:79;;:::i;:::-;11415:117;11556:62;11610:7;11601:6;11590:9;11586:22;11556:62;:::i;:::-;11546:72;;11341:287;10692:943;;;;;;;:::o;11641:474::-;11709:6;11717;11766:2;11754:9;11745:7;11741:23;11737:32;11734:119;;;11772:79;;:::i;:::-;11734:119;11892:1;11917:53;11962:7;11953:6;11942:9;11938:22;11917:53;:::i;:::-;11907:63;;11863:117;12019:2;12045:53;12090:7;12081:6;12070:9;12066:22;12045:53;:::i;:::-;12035:63;;11990:118;11641:474;;;;;:::o;12121:::-;12189:6;12197;12246:2;12234:9;12225:7;12221:23;12217:32;12214:119;;;12252:79;;:::i;:::-;12214:119;12372:1;12397:53;12442:7;12433:6;12422:9;12418:22;12397:53;:::i;:::-;12387:63;;12343:117;12499:2;12525:53;12570:7;12561:6;12550:9;12546:22;12525:53;:::i;:::-;12515:63;;12470:118;12121:474;;;;;:::o;12601:180::-;12649:77;12646:1;12639:88;12746:4;12743:1;12736:15;12770:4;12767:1;12760:15;12787:320;12831:6;12868:1;12862:4;12858:12;12848:22;;12915:1;12909:4;12905:12;12936:18;12926:81;;12992:4;12984:6;12980:17;12970:27;;12926:81;13054:2;13046:6;13043:14;13023:18;13020:38;13017:84;;;13073:18;;:::i;:::-;13017:84;12838:269;12787:320;;;:::o;13113:182::-;13253:34;13249:1;13241:6;13237:14;13230:58;13113:182;:::o;13301:366::-;13443:3;13464:67;13528:2;13523:3;13464:67;:::i;:::-;13457:74;;13540:93;13629:3;13540:93;:::i;:::-;13658:2;13653:3;13649:12;13642:19;;13301:366;;;:::o;13673:419::-;13839:4;13877:2;13866:9;13862:18;13854:26;;13926:9;13920:4;13916:20;13912:1;13901:9;13897:17;13890:47;13954:131;14080:4;13954:131;:::i;:::-;13946:139;;13673:419;;;:::o;14098:181::-;14238:33;14234:1;14226:6;14222:14;14215:57;14098:181;:::o;14285:366::-;14427:3;14448:67;14512:2;14507:3;14448:67;:::i;:::-;14441:74;;14524:93;14613:3;14524:93;:::i;:::-;14642:2;14637:3;14633:12;14626:19;;14285:366;;;:::o;14657:419::-;14823:4;14861:2;14850:9;14846:18;14838:26;;14910:9;14904:4;14900:20;14896:1;14885:9;14881:17;14874:47;14938:131;15064:4;14938:131;:::i;:::-;14930:139;;14657:419;;;:::o;15082:147::-;15183:11;15220:3;15205:18;;15082:147;;;;:::o;15235:114::-;;:::o;15355:398::-;15514:3;15535:83;15616:1;15611:3;15535:83;:::i;:::-;15528:90;;15627:93;15716:3;15627:93;:::i;:::-;15745:1;15740:3;15736:11;15729:18;;15355:398;;;:::o;15759:379::-;15943:3;15965:147;16108:3;15965:147;:::i;:::-;15958:154;;16129:3;16122:10;;15759:379;;;:::o;16144:170::-;16284:22;16280:1;16272:6;16268:14;16261:46;16144:170;:::o;16320:366::-;16462:3;16483:67;16547:2;16542:3;16483:67;:::i;:::-;16476:74;;16559:93;16648:3;16559:93;:::i;:::-;16677:2;16672:3;16668:12;16661:19;;16320:366;;;:::o;16692:419::-;16858:4;16896:2;16885:9;16881:18;16873:26;;16945:9;16939:4;16935:20;16931:1;16920:9;16916:17;16909:47;16973:131;17099:4;16973:131;:::i;:::-;16965:139;;16692:419;;;:::o;17117:180::-;17165:77;17162:1;17155:88;17262:4;17259:1;17252:15;17286:4;17283:1;17276:15;17303:305;17343:3;17362:20;17380:1;17362:20;:::i;:::-;17357:25;;17396:20;17414:1;17396:20;:::i;:::-;17391:25;;17550:1;17482:66;17478:74;17475:1;17472:81;17469:107;;;17556:18;;:::i;:::-;17469:107;17600:1;17597;17593:9;17586:16;;17303:305;;;;:::o;17614:170::-;17754:22;17750:1;17742:6;17738:14;17731:46;17614:170;:::o;17790:366::-;17932:3;17953:67;18017:2;18012:3;17953:67;:::i;:::-;17946:74;;18029:93;18118:3;18029:93;:::i;:::-;18147:2;18142:3;18138:12;18131:19;;17790:366;;;:::o;18162:419::-;18328:4;18366:2;18355:9;18351:18;18343:26;;18415:9;18409:4;18405:20;18401:1;18390:9;18386:17;18379:47;18443:131;18569:4;18443:131;:::i;:::-;18435:139;;18162:419;;;:::o;18587:348::-;18627:7;18650:20;18668:1;18650:20;:::i;:::-;18645:25;;18684:20;18702:1;18684:20;:::i;:::-;18679:25;;18872:1;18804:66;18800:74;18797:1;18794:81;18789:1;18782:9;18775:17;18771:105;18768:131;;;18879:18;;:::i;:::-;18768:131;18927:1;18924;18920:9;18909:20;;18587:348;;;;:::o;18941:169::-;19081:21;19077:1;19069:6;19065:14;19058:45;18941:169;:::o;19116:366::-;19258:3;19279:67;19343:2;19338:3;19279:67;:::i;:::-;19272:74;;19355:93;19444:3;19355:93;:::i;:::-;19473:2;19468:3;19464:12;19457:19;;19116:366;;;:::o;19488:419::-;19654:4;19692:2;19681:9;19677:18;19669:26;;19741:9;19735:4;19731:20;19727:1;19716:9;19712:17;19705:47;19769:131;19895:4;19769:131;:::i;:::-;19761:139;;19488:419;;;:::o;19913:170::-;20053:22;20049:1;20041:6;20037:14;20030:46;19913:170;:::o;20089:366::-;20231:3;20252:67;20316:2;20311:3;20252:67;:::i;:::-;20245:74;;20328:93;20417:3;20328:93;:::i;:::-;20446:2;20441:3;20437:12;20430:19;;20089:366;;;:::o;20461:419::-;20627:4;20665:2;20654:9;20650:18;20642:26;;20714:9;20708:4;20704:20;20700:1;20689:9;20685:17;20678:47;20742:131;20868:4;20742:131;:::i;:::-;20734:139;;20461:419;;;:::o;20886:163::-;21026:15;21022:1;21014:6;21010:14;21003:39;20886:163;:::o;21055:366::-;21197:3;21218:67;21282:2;21277:3;21218:67;:::i;:::-;21211:74;;21294:93;21383:3;21294:93;:::i;:::-;21412:2;21407:3;21403:12;21396:19;;21055:366;;;:::o;21427:419::-;21593:4;21631:2;21620:9;21616:18;21608:26;;21680:9;21674:4;21670:20;21666:1;21655:9;21651:17;21644:47;21708:131;21834:4;21708:131;:::i;:::-;21700:139;;21427:419;;;:::o;21852:170::-;21992:22;21988:1;21980:6;21976:14;21969:46;21852:170;:::o;22028:366::-;22170:3;22191:67;22255:2;22250:3;22191:67;:::i;:::-;22184:74;;22267:93;22356:3;22267:93;:::i;:::-;22385:2;22380:3;22376:12;22369:19;;22028:366;;;:::o;22400:419::-;22566:4;22604:2;22593:9;22589:18;22581:26;;22653:9;22647:4;22643:20;22639:1;22628:9;22624:17;22617:47;22681:131;22807:4;22681:131;:::i;:::-;22673:139;;22400:419;;;:::o;22825:234::-;22965:34;22961:1;22953:6;22949:14;22942:58;23034:17;23029:2;23021:6;23017:15;23010:42;22825:234;:::o;23065:366::-;23207:3;23228:67;23292:2;23287:3;23228:67;:::i;:::-;23221:74;;23304:93;23393:3;23304:93;:::i;:::-;23422:2;23417:3;23413:12;23406:19;;23065:366;;;:::o;23437:419::-;23603:4;23641:2;23630:9;23626:18;23618:26;;23690:9;23684:4;23680:20;23676:1;23665:9;23661:17;23654:47;23718:131;23844:4;23718:131;:::i;:::-;23710:139;;23437:419;;;:::o;23862:148::-;23964:11;24001:3;23986:18;;23862:148;;;;:::o;24016:377::-;24122:3;24150:39;24183:5;24150:39;:::i;:::-;24205:89;24287:6;24282:3;24205:89;:::i;:::-;24198:96;;24303:52;24348:6;24343:3;24336:4;24329:5;24325:16;24303:52;:::i;:::-;24380:6;24375:3;24371:16;24364:23;;24126:267;24016:377;;;;:::o;24399:141::-;24448:4;24471:3;24463:11;;24494:3;24491:1;24484:14;24528:4;24525:1;24515:18;24507:26;;24399:141;;;:::o;24570:845::-;24673:3;24710:5;24704:12;24739:36;24765:9;24739:36;:::i;:::-;24791:89;24873:6;24868:3;24791:89;:::i;:::-;24784:96;;24911:1;24900:9;24896:17;24927:1;24922:137;;;;25073:1;25068:341;;;;24889:520;;24922:137;25006:4;25002:9;24991;24987:25;24982:3;24975:38;25042:6;25037:3;25033:16;25026:23;;24922:137;;25068:341;25135:38;25167:5;25135:38;:::i;:::-;25195:1;25209:154;25223:6;25220:1;25217:13;25209:154;;;25297:7;25291:14;25287:1;25282:3;25278:11;25271:35;25347:1;25338:7;25334:15;25323:26;;25245:4;25242:1;25238:12;25233:17;;25209:154;;;25392:6;25387:3;25383:16;25376:23;;25075:334;;24889:520;;24677:738;;24570:845;;;;:::o;25421:589::-;25646:3;25668:95;25759:3;25750:6;25668:95;:::i;:::-;25661:102;;25780:95;25871:3;25862:6;25780:95;:::i;:::-;25773:102;;25892:92;25980:3;25971:6;25892:92;:::i;:::-;25885:99;;26001:3;25994:10;;25421:589;;;;;;:::o;26016:225::-;26156:34;26152:1;26144:6;26140:14;26133:58;26225:8;26220:2;26212:6;26208:15;26201:33;26016:225;:::o;26247:366::-;26389:3;26410:67;26474:2;26469:3;26410:67;:::i;:::-;26403:74;;26486:93;26575:3;26486:93;:::i;:::-;26604:2;26599:3;26595:12;26588:19;;26247:366;;;:::o;26619:419::-;26785:4;26823:2;26812:9;26808:18;26800:26;;26872:9;26866:4;26862:20;26858:1;26847:9;26843:17;26836:47;26900:131;27026:4;26900:131;:::i;:::-;26892:139;;26619:419;;;:::o;27044:98::-;27095:6;27129:5;27123:12;27113:22;;27044:98;;;:::o;27148:168::-;27231:11;27265:6;27260:3;27253:19;27305:4;27300:3;27296:14;27281:29;;27148:168;;;;:::o;27322:360::-;27408:3;27436:38;27468:5;27436:38;:::i;:::-;27490:70;27553:6;27548:3;27490:70;:::i;:::-;27483:77;;27569:52;27614:6;27609:3;27602:4;27595:5;27591:16;27569:52;:::i;:::-;27646:29;27668:6;27646:29;:::i;:::-;27641:3;27637:39;27630:46;;27412:270;27322:360;;;;:::o;27688:640::-;27883:4;27921:3;27910:9;27906:19;27898:27;;27935:71;28003:1;27992:9;27988:17;27979:6;27935:71;:::i;:::-;28016:72;28084:2;28073:9;28069:18;28060:6;28016:72;:::i;:::-;28098;28166:2;28155:9;28151:18;28142:6;28098:72;:::i;:::-;28217:9;28211:4;28207:20;28202:2;28191:9;28187:18;28180:48;28245:76;28316:4;28307:6;28245:76;:::i;:::-;28237:84;;27688:640;;;;;;;:::o;28334:141::-;28390:5;28421:6;28415:13;28406:22;;28437:32;28463:5;28437:32;:::i;:::-;28334:141;;;;:::o;28481:349::-;28550:6;28599:2;28587:9;28578:7;28574:23;28570:32;28567:119;;;28605:79;;:::i;:::-;28567:119;28725:1;28750:63;28805:7;28796:6;28785:9;28781:22;28750:63;:::i;:::-;28740:73;;28696:127;28481:349;;;;:::o;28836:233::-;28875:3;28898:24;28916:5;28898:24;:::i;:::-;28889:33;;28944:66;28937:5;28934:77;28931:103;;;29014:18;;:::i;:::-;28931:103;29061:1;29054:5;29050:13;29043:20;;28836:233;;;:::o;29075:180::-;29123:77;29120:1;29113:88;29220:4;29217:1;29210:15;29244:4;29241:1;29234:15;29261:185;29301:1;29318:20;29336:1;29318:20;:::i;:::-;29313:25;;29352:20;29370:1;29352:20;:::i;:::-;29347:25;;29391:1;29381:35;;29396:18;;:::i;:::-;29381:35;29438:1;29435;29431:9;29426:14;;29261:185;;;;:::o;29452:191::-;29492:4;29512:20;29530:1;29512:20;:::i;:::-;29507:25;;29546:20;29564:1;29546:20;:::i;:::-;29541:25;;29585:1;29582;29579:8;29576:34;;;29590:18;;:::i;:::-;29576:34;29635:1;29632;29628:9;29620:17;;29452:191;;;;:::o;29649:176::-;29681:1;29698:20;29716:1;29698:20;:::i;:::-;29693:25;;29732:20;29750:1;29732:20;:::i;:::-;29727:25;;29771:1;29761:35;;29776:18;;:::i;:::-;29761:35;29817:1;29814;29810:9;29805:14;;29649:176;;;;:::o;29831:180::-;29879:77;29876:1;29869:88;29976:4;29973:1;29966:15;30000:4;29997:1;29990:15

Swarm Source

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