ETH Price: $3,310.18 (-3.20%)
Gas: 15 Gwei

Token

WOMANAI (WAI)
 

Overview

Max Total Supply

589 WAI

Holders

106

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A
Balance
5 WAI
0x7670d9d73fe172d856bb1e9012251c828d09bccc
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:
WomanAI

Compiler Version
v0.8.7+commit.e28d00a7

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

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

// SPDX-License-Identifier: MIT
pragma solidity ^0.8.0;

//WOMENAI

/**
 * @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;
    }
}
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);
    }
}
pragma solidity ^0.8.0;

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

                assembly {
                    let returndata_size := mload(returndata)
                    revert(add(32, returndata), returndata_size)
                }
            } else {
                revert(errorMessage);
            }
        }
    }
}
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);
}
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);
}
pragma solidity ^0.8.0;


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

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

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

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

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

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

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

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


/**
 * @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;
    }
}
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;
}
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);
}
interface IERC721Enumerable is IERC721 {
    /**
     * @dev Returns the total amount of tokens stored by the contract.
     */
    function totalSupply() external view returns (uint256);

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

    /**
     * @dev Returns a token ID at a given `index` of all the tokens stored by the contract.
     * Use along with {totalSupply} to enumerate all tokens.
     */
    function tokenByIndex(uint256 index) external view returns (uint256);
}
error ApprovalCallerNotOwnerNorApproved();
error ApprovalQueryForNonexistentToken();
error ApproveToCaller();
error ApprovalToCurrentOwner();
error BalanceQueryForZeroAddress();
error MintedQueryForZeroAddress();
error BurnedQueryForZeroAddress();
error AuxQueryForZeroAddress();
error MintToZeroAddress();
error MintZeroQuantity();
error OwnerIndexOutOfBounds();
error OwnerQueryForNonexistentToken();
error TokenIndexOutOfBounds();
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 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 = 1;

    // 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_;
    }

    /**
     * @dev See {IERC721Enumerable-totalSupply}.
     */
    function totalSupply() public view returns (uint256) {
        // Counter underflow is impossible as _burnCounter cannot be incremented
        // more than _currentIndex times
        unchecked {
            return (_currentIndex - _burnCounter) - 1;    
        }
    }

    /**
     * @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) {
        if (owner == address(0)) revert MintedQueryForZeroAddress();
        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) {
        if (owner == address(0)) revert BurnedQueryForZeroAddress();
        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) {
        if (owner == address(0)) revert AuxQueryForZeroAddress();
        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 {
        if (owner == address(0)) revert AuxQueryForZeroAddress();
        _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 (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 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 (!_checkOnERC721Received(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 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;

            for (uint256 i; i < quantity; i++) {
                emit Transfer(address(0), to, updatedIndex);
                if (safe && !_checkOnERC721Received(address(0), to, updatedIndex, _data)) {
                    revert TransferToNonERC721ReceiverImplementer();
                }
                updatedIndex++;
            }

            _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);

        bool isApprovedOrOwner = (_msgSender() == prevOwnership.addr ||
            isApprovedForAll(prevOwnership.addr, _msgSender()) ||
            getApproved(tokenId) == _msgSender());

        if (!isApprovedOrOwner) revert TransferCallerNotOwnerNorApproved();
        if (prevOwnership.addr != from) revert TransferFromIncorrectOwner();
        if (to == address(0)) revert TransferToZeroAddress();

        _beforeTokenTransfers(from, to, tokenId, 1);

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

        // 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;

            _ownerships[tokenId].addr = to;
            _ownerships[tokenId].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;
            if (_ownerships[nextTokenId].addr == address(0)) {
                // This will suffice for checking _exists(nextTokenId),
                // as a burned slot cannot contain the zero address.
                if (nextTokenId < _currentIndex) {
                    _ownerships[nextTokenId].addr = prevOwnership.addr;
                    _ownerships[nextTokenId].startTimestamp = prevOwnership.startTimestamp;
                }
            }
        }

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

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

        _beforeTokenTransfers(prevOwnership.addr, address(0), tokenId, 1);

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

        // 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[prevOwnership.addr].balance -= 1;
            _addressData[prevOwnership.addr].numberBurned += 1;

            // Keep track of who burned the token, and the timestamp of burning.
            _ownerships[tokenId].addr = prevOwnership.addr;
            _ownerships[tokenId].startTimestamp = uint64(block.timestamp);
            _ownerships[tokenId].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;
            if (_ownerships[nextTokenId].addr == address(0)) {
                // This will suffice for checking _exists(nextTokenId),
                // as a burned slot cannot contain the zero address.
                if (nextTokenId < _currentIndex) {
                    _ownerships[nextTokenId].addr = prevOwnership.addr;
                    _ownerships[nextTokenId].startTimestamp = prevOwnership.startTimestamp;
                }
            }
        }

        emit Transfer(prevOwnership.addr, address(0), tokenId);
        _afterTokenTransfers(prevOwnership.addr, 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 address.
     * The call is not executed if the target address is not a contract.
     *
     * @param from address representing the previous owner of the given token ID
     * @param to target address that will receive the tokens
     * @param tokenId uint256 ID of the token to be transferred
     * @param _data bytes optional data to send along with the call
     * @return bool whether the call correctly returned the expected magic value
     */
    function _checkOnERC721Received(
        address from,
        address to,
        uint256 tokenId,
        bytes memory _data
    ) private returns (bool) {
        if (to.isContract()) {
            try IERC721Receiver(to).onERC721Received(_msgSender(), from, tokenId, _data) returns (bytes4 retval) {
                return retval == IERC721Receiver(to).onERC721Received.selector;
            } catch (bytes memory reason) {
                if (reason.length == 0) {
                    revert TransferToNonERC721ReceiverImplementer();
                } else {
                    assembly {
                        revert(add(32, reason), mload(reason))
                    }
                }
            }
        } else {
            return true;
        }
    }

    /**
     * @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 {}
}

library ECDSA {
    enum RecoverError {
        NoError,
        InvalidSignature,
        InvalidSignatureLength,
        InvalidSignatureS,
        InvalidSignatureV
    }

    function _throwError(RecoverError error) private pure {
        if (error == RecoverError.NoError) {
            return; // no error: do nothing
        } else if (error == RecoverError.InvalidSignature) {
            revert("ECDSA: invalid signature");
        } else if (error == RecoverError.InvalidSignatureLength) {
            revert("ECDSA: invalid signature length");
        } else if (error == RecoverError.InvalidSignatureS) {
            revert("ECDSA: invalid signature 's' value");
        } else if (error == RecoverError.InvalidSignatureV) {
            revert("ECDSA: invalid signature 'v' value");
        }
    }

    /**
     * @dev Returns the address that signed a hashed message (`hash`) with
     * `signature` or error string. This address can then be used for verification purposes.
     *
     * The `ecrecover` EVM opcode allows for malleable (non-unique) signatures:
     * this function rejects them by requiring the `s` value to be in the lower
     * half order, and the `v` value to be either 27 or 28.
     *
     * IMPORTANT: `hash` _must_ be the result of a hash operation for the
     * verification to be secure: it is possible to craft signatures that
     * recover to arbitrary addresses for non-hashed data. A safe way to ensure
     * this is by receiving a hash of the original message (which may otherwise
     * be too long), and then calling {toEthSignedMessageHash} on it.
     *
     * Documentation for signature generation:
     * - with https://web3js.readthedocs.io/en/v1.3.4/web3-eth-accounts.html#sign[Web3.js]
     * - with https://docs.ethers.io/v5/api/signer/#Signer-signMessage[ethers]
     *
     * _Available since v4.3._
     */
    function tryRecover(bytes32 hash, bytes memory signature) internal pure returns (address, RecoverError) {
        // Check the signature length
        // - case 65: r,s,v signature (standard)
        // - case 64: r,vs signature (cf https://eips.ethereum.org/EIPS/eip-2098) _Available since v4.1._
        if (signature.length == 65) {
            bytes32 r;
            bytes32 s;
            uint8 v;
            // ecrecover takes the signature parameters, and the only way to get them
            // currently is to use assembly.
            assembly {
                r := mload(add(signature, 0x20))
                s := mload(add(signature, 0x40))
                v := byte(0, mload(add(signature, 0x60)))
            }
            return tryRecover(hash, v, r, s);
        } else if (signature.length == 64) {
            bytes32 r;
            bytes32 vs;
            // ecrecover takes the signature parameters, and the only way to get them
            // currently is to use assembly.
            assembly {
                r := mload(add(signature, 0x20))
                vs := mload(add(signature, 0x40))
            }
            return tryRecover(hash, r, vs);
        } else {
            return (address(0), RecoverError.InvalidSignatureLength);
        }
    }

    /**
     * @dev Returns the address that signed a hashed message (`hash`) with
     * `signature`. This address can then be used for verification purposes.
     *
     * The `ecrecover` EVM opcode allows for malleable (non-unique) signatures:
     * this function rejects them by requiring the `s` value to be in the lower
     * half order, and the `v` value to be either 27 or 28.
     *
     * IMPORTANT: `hash` _must_ be the result of a hash operation for the
     * verification to be secure: it is possible to craft signatures that
     * recover to arbitrary addresses for non-hashed data. A safe way to ensure
     * this is by receiving a hash of the original message (which may otherwise
     * be too long), and then calling {toEthSignedMessageHash} on it.
     */
    function recover(bytes32 hash, bytes memory signature) internal pure returns (address) {
        (address recovered, RecoverError error) = tryRecover(hash, signature);
        _throwError(error);
        return recovered;
    }

    /**
     * @dev Overload of {ECDSA-tryRecover} that receives the `r` and `vs` short-signature fields separately.
     *
     * See https://eips.ethereum.org/EIPS/eip-2098[EIP-2098 short signatures]
     *
     * _Available since v4.3._
     */
    function tryRecover(
        bytes32 hash,
        bytes32 r,
        bytes32 vs
    ) internal pure returns (address, RecoverError) {
        bytes32 s = vs & bytes32(0x7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff);
        uint8 v = uint8((uint256(vs) >> 255) + 27);
        return tryRecover(hash, v, r, s);
    }

    /**
     * @dev Overload of {ECDSA-recover} that receives the `r and `vs` short-signature fields separately.
     *
     * _Available since v4.2._
     */
    function recover(
        bytes32 hash,
        bytes32 r,
        bytes32 vs
    ) internal pure returns (address) {
        (address recovered, RecoverError error) = tryRecover(hash, r, vs);
        _throwError(error);
        return recovered;
    }

    /**
     * @dev Overload of {ECDSA-tryRecover} that receives the `v`,
     * `r` and `s` signature fields separately.
     *
     * _Available since v4.3._
     */
    function tryRecover(
        bytes32 hash,
        uint8 v,
        bytes32 r,
        bytes32 s
    ) internal pure returns (address, RecoverError) {
        // EIP-2 still allows signature malleability for ecrecover(). Remove this possibility and make the signature
        // unique. Appendix F in the Ethereum Yellow paper (https://ethereum.github.io/yellowpaper/paper.pdf), defines
        // the valid range for s in (301): 0 < s < secp256k1n ÷ 2 + 1, and for v in (302): v ∈ {27, 28}. Most
        // signatures from current libraries generate a unique signature with an s-value in the lower half order.
        //
        // If your library generates malleable signatures, such as s-values in the upper range, calculate a new s-value
        // with 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFEBAAEDCE6AF48A03BBFD25E8CD0364141 - s1 and flip v from 27 to 28 or
        // vice versa. If your library also generates signatures with 0/1 for v instead 27/28, add 27 to v to accept
        // these malleable signatures as well.
        if (uint256(s) > 0x7FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF5D576E7357A4501DDFE92F46681B20A0) {
            return (address(0), RecoverError.InvalidSignatureS);
        }
        if (v != 27 && v != 28) {
            return (address(0), RecoverError.InvalidSignatureV);
        }

        // If the signature is valid (and not malleable), return the signer address
        address signer = ecrecover(hash, v, r, s);
        if (signer == address(0)) {
            return (address(0), RecoverError.InvalidSignature);
        }

        return (signer, RecoverError.NoError);
    }

    /**
     * @dev Overload of {ECDSA-recover} that receives the `v`,
     * `r` and `s` signature fields separately.
     */
    function recover(
        bytes32 hash,
        uint8 v,
        bytes32 r,
        bytes32 s
    ) internal pure returns (address) {
        (address recovered, RecoverError error) = tryRecover(hash, v, r, s);
        _throwError(error);
        return recovered;
    }

    /**
     * @dev Returns an Ethereum Signed Message, created from a `hash`. This
     * produces hash corresponding to the one signed with the
     * https://eth.wiki/json-rpc/API#eth_sign[`eth_sign`]
     * JSON-RPC method as part of EIP-191.
     *
     * See {recover}.
     */
    function toEthSignedMessageHash(bytes32 hash) internal pure returns (bytes32) {
        // 32 is the length in bytes of hash,
        // enforced by the type signature above
        return keccak256(abi.encodePacked("\x19Ethereum Signed Message:\n32", hash));
    }

    /**
     * @dev Returns an Ethereum Signed Message, created from `s`. This
     * produces hash corresponding to the one signed with the
     * https://eth.wiki/json-rpc/API#eth_sign[`eth_sign`]
     * JSON-RPC method as part of EIP-191.
     *
     * See {recover}.
     */
    function toEthSignedMessageHash(bytes memory s) internal pure returns (bytes32) {
        return keccak256(abi.encodePacked("\x19Ethereum Signed Message:\n", Strings.toString(s.length), s));
    }

    /**
     * @dev Returns an Ethereum Signed Typed Data, created from a
     * `domainSeparator` and a `structHash`. This produces hash corresponding
     * to the one signed with the
     * https://eips.ethereum.org/EIPS/eip-712[`eth_signTypedData`]
     * JSON-RPC method as part of EIP-712.
     *
     * See {recover}.
     */
    function toTypedDataHash(bytes32 domainSeparator, bytes32 structHash) internal pure returns (bytes32) {
        return keccak256(abi.encodePacked("\x19\x01", domainSeparator, structHash));
    }
}
abstract contract EIP712 {
    /* solhint-disable var-name-mixedcase */
    // Cache the domain separator as an immutable value, but also store the chain id that it corresponds to, in order to
    // invalidate the cached domain separator if the chain id changes.
    bytes32 private immutable _CACHED_DOMAIN_SEPARATOR;
    uint256 private immutable _CACHED_CHAIN_ID;
    address private immutable _CACHED_THIS;

    bytes32 private immutable _HASHED_NAME;
    bytes32 private immutable _HASHED_VERSION;
    bytes32 private immutable _TYPE_HASH;

    /* solhint-enable var-name-mixedcase */

    /**
     * @dev Initializes the domain separator and parameter caches.
     *
     * The meaning of `name` and `version` is specified in
     * https://eips.ethereum.org/EIPS/eip-712#definition-of-domainseparator[EIP 712]:
     *
     * - `name`: the user readable name of the signing domain, i.e. the name of the DApp or the protocol.
     * - `version`: the current major version of the signing domain.
     *
     * NOTE: These parameters cannot be changed except through a xref:learn::upgrading-smart-contracts.adoc[smart
     * contract upgrade].
     */
    constructor(string memory name, string memory version) {
        bytes32 hashedName = keccak256(bytes(name));
        bytes32 hashedVersion = keccak256(bytes(version));
        bytes32 typeHash = keccak256(
            "EIP712Domain(string name,string version,uint256 chainId,address verifyingContract)"
        );
        _HASHED_NAME = hashedName;
        _HASHED_VERSION = hashedVersion;
        _CACHED_CHAIN_ID = block.chainid;
        _CACHED_DOMAIN_SEPARATOR = _buildDomainSeparator(typeHash, hashedName, hashedVersion);
        _CACHED_THIS = address(this);
        _TYPE_HASH = typeHash;
    }

    /**
     * @dev Returns the domain separator for the current chain.
     */
    function _domainSeparatorV4() internal view returns (bytes32) {
        if (address(this) == _CACHED_THIS && block.chainid == _CACHED_CHAIN_ID) {
            return _CACHED_DOMAIN_SEPARATOR;
        } else {
            return _buildDomainSeparator(_TYPE_HASH, _HASHED_NAME, _HASHED_VERSION);
        }
    }

    function _buildDomainSeparator(
        bytes32 typeHash,
        bytes32 nameHash,
        bytes32 versionHash
    ) private view returns (bytes32) {
        return keccak256(abi.encode(typeHash, nameHash, versionHash, block.chainid, address(this)));
    }

    /**
     * @dev Given an already https://eips.ethereum.org/EIPS/eip-712#definition-of-hashstruct[hashed struct], this
     * function returns the hash of the fully encoded EIP712 message for this domain.
     *
     * This hash can be used together with {ECDSA-recover} to obtain the signer of a message. For example:
     *
     * ```solidity
     * bytes32 digest = _hashTypedDataV4(keccak256(abi.encode(
     *     keccak256("Mail(address to,string contents)"),
     *     mailTo,
     *     keccak256(bytes(mailContents))
     * )));
     * address signer = ECDSA.recover(digest, signature);
     * ```
     */
    function _hashTypedDataV4(bytes32 structHash) internal view virtual returns (bytes32) {
        return ECDSA.toTypedDataHash(_domainSeparatorV4(), structHash);
    }
}

contract WomanAI is Ownable, ERC721A {

    uint256 public adoptionLimit =5;
    using Strings for uint256;

    mapping(uint256 => string) private _tokenURIs;
    bool public publicSaleOpen = false;
    string public baseURI = "ipfs://";
    string public _extension = ".json";
    uint256 public price = 0 ether;
    uint256 public maxSupply = 2000;

    constructor() ERC721A("WOMANAI", "WAI"){}
    
    function mintNFT(uint256 _quantity) public payable {
        require(_quantity > 0 && _quantity <= adoptionLimit, "Wrong Quantity.");
        require(totalSupply() + _quantity <= maxSupply, "Reaching max supply");
        require(msg.value == price * _quantity, "Needs to send more eth");
        require(getMintedCount(msg.sender) + _quantity <= adoptionLimit, "Exceed max minting amount");
        require(publicSaleOpen, "Public Sale Not Started Yet!");

        _safeMint(msg.sender, _quantity);

    }


    function sendGifts(address[] memory _wallets) external onlyOwner{
        require(totalSupply() + _wallets.length <= maxSupply, "Max Supply Reached.");
        for(uint i = 0; i < _wallets.length; i++)
            _safeMint(_wallets[i], 1);

    }
   function sendGiftsToWallet(address _wallet, uint256 _num) external onlyOwner{
               require(totalSupply() + _num <= maxSupply, "Max Supply Reached.");
            _safeMint(_wallet, _num);
    }


    function tokenURI(uint256 _tokenId) public view virtual override returns (string memory) {
        require(
            _exists(_tokenId),
            "ERC721Metadata: URI set of nonexistent token"
        );

        return string(abi.encodePacked(baseURI, _tokenId.toString(), _extension));
    }

    function updateBaseURI(string memory _newBaseURI) onlyOwner public {
        baseURI = _newBaseURI;
    }
    function updateExtension(string memory _temp) onlyOwner public {
        _extension = _temp;
    }

    function getBaseURI() external view returns(string memory) {
        return baseURI;
    }

    function setPrice(uint256 _price) public onlyOwner() {
        price = _price;
    }
    function setAdoptionlimits(uint256 _adoptionLimit) public onlyOwner() {
        adoptionLimit = _adoptionLimit;
    }

    function setmaxSupply(uint256 _supply) public onlyOwner() {
        maxSupply = _supply;
    }

    function toggleSale() public onlyOwner() {
        publicSaleOpen = !publicSaleOpen;
    }


    function getBalance() public view returns(uint) {
        return address(this).balance;
    }

    function getMintedCount(address owner) public view returns (uint256) {
    return _numberMinted(owner);
  }

    function withdraw() external onlyOwner {
        uint _balance = address(this).balance;
        payable(owner()).transfer(_balance); //Owner
    }

    function getOwnershipData(uint256 tokenId)
    external
    view
    returns (TokenOwnership memory)
  {
    return ownershipOf(tokenId);
  }

    receive() external payable {}

}

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":"MintedQueryForZeroAddress","type":"error"},{"inputs":[],"name":"OwnerQueryForNonexistentToken","type":"error"},{"inputs":[],"name":"TransferCallerNotOwnerNorApproved","type":"error"},{"inputs":[],"name":"TransferFromIncorrectOwner","type":"error"},{"inputs":[],"name":"TransferToNonERC721ReceiverImplementer","type":"error"},{"inputs":[],"name":"TransferToZeroAddress","type":"error"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"approved","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[],"name":"_extension","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"adoptionLimit","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"baseURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"getBalance","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"getBaseURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"getMintedCount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getOwnershipData","outputs":[{"components":[{"internalType":"address","name":"addr","type":"address"},{"internalType":"uint64","name":"startTimestamp","type":"uint64"},{"internalType":"bool","name":"burned","type":"bool"}],"internalType":"struct ERC721A.TokenOwnership","name":"","type":"tuple"}],"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":"maxSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_quantity","type":"uint256"}],"name":"mintNFT","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"price","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"publicSaleOpen","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"_data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address[]","name":"_wallets","type":"address[]"}],"name":"sendGifts","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_wallet","type":"address"},{"internalType":"uint256","name":"_num","type":"uint256"}],"name":"sendGiftsToWallet","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_adoptionLimit","type":"uint256"}],"name":"setAdoptionlimits","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":"_price","type":"uint256"}],"name":"setPrice","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_supply","type":"uint256"}],"name":"setmaxSupply","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":[],"name":"toggleSale","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_newBaseURI","type":"string"}],"name":"updateBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_temp","type":"string"}],"name":"updateExtension","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"withdraw","outputs":[],"stateMutability":"nonpayable","type":"function"},{"stateMutability":"payable","type":"receive"}]

60806040526001805560056009556000600b60006101000a81548160ff0219169083151502179055506040518060400160405280600781526020017f697066733a2f2f00000000000000000000000000000000000000000000000000815250600c9080519060200190620000759291906200026f565b506040518060400160405280600581526020017f2e6a736f6e000000000000000000000000000000000000000000000000000000815250600d9080519060200190620000c39291906200026f565b506000600e556107d0600f55348015620000dc57600080fd5b506040518060400160405280600781526020017f574f4d414e4149000000000000000000000000000000000000000000000000008152506040518060400160405280600381526020017f5741490000000000000000000000000000000000000000000000000000000000815250620001696200015d620001a360201b60201c565b620001ab60201b60201c565b8160039080519060200190620001819291906200026f565b5080600490805190602001906200019a9291906200026f565b50505062000384565b600033905090565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050816000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b8280546200027d906200031f565b90600052602060002090601f016020900481019282620002a15760008555620002ed565b82601f10620002bc57805160ff1916838001178555620002ed565b82800160010185558215620002ed579182015b82811115620002ec578251825591602001919060010190620002cf565b5b509050620002fc919062000300565b5090565b5b808211156200031b57600081600090555060010162000301565b5090565b600060028204905060018216806200033857607f821691505b602082108114156200034f576200034e62000355565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b613e7a80620003946000396000f3fe60806040526004361061021e5760003560e01c80637e6182d911610123578063a035b1fe116100ab578063d5abeb011161006f578063d5abeb01146107a5578063e917a28c146107d0578063e985e9c5146107fb578063f2fde38b14610838578063f9e237991461086157610225565b8063a035b1fe146106c2578063a22cb465146106ed578063b88d4fde14610716578063c87b56dd1461073f578063d1f919ed1461077c57610225565b80639231ab2a116100f25780639231ab2a146105d85780639264274414610615578063931688cb1461063157806395d89b411461065a57806397d6696b1461068557610225565b80637e6182d91461053257806381a89b591461055b5780638da5cb5b1461058457806391b7f5ed146105af57610225565b80633ccfd60b116101a657806370a082311161017557806370a0823114610473578063714c5398146104b0578063715018a6146104db5780637c8255db146104f25780637d8966e41461051b57610225565b80633ccfd60b146103cb57806342842e0e146103e25780636352211e1461040b5780636c0360eb1461044857610225565b806312065fe0116101ed57806312065fe0146102f857806318160ddd14610323578063228025e81461034e57806323b872dd146103775780633ae1dd9d146103a057610225565b806301ffc9a71461022a57806306fdde0314610267578063081812fc14610292578063095ea7b3146102cf57610225565b3661022557005b600080fd5b34801561023657600080fd5b50610251600480360381019061024c919061315b565b61088c565b60405161025e91906135bc565b60405180910390f35b34801561027357600080fd5b5061027c61096e565b60405161028991906135d7565b60405180910390f35b34801561029e57600080fd5b506102b960048036038101906102b491906131fe565b610a00565b6040516102c69190613555565b60405180910390f35b3480156102db57600080fd5b506102f660048036038101906102f191906130d2565b610a7c565b005b34801561030457600080fd5b5061030d610b87565b60405161031a9190613734565b60405180910390f35b34801561032f57600080fd5b50610338610b8f565b6040516103459190613734565b60405180910390f35b34801561035a57600080fd5b50610375600480360381019061037091906131fe565b610ba0565b005b34801561038357600080fd5b5061039e60048036038101906103999190612fbc565b610c26565b005b3480156103ac57600080fd5b506103b5610c36565b6040516103c291906135d7565b60405180910390f35b3480156103d757600080fd5b506103e0610cc4565b005b3480156103ee57600080fd5b5061040960048036038101906104049190612fbc565b610d96565b005b34801561041757600080fd5b50610432600480360381019061042d91906131fe565b610db6565b60405161043f9190613555565b60405180910390f35b34801561045457600080fd5b5061045d610dcc565b60405161046a91906135d7565b60405180910390f35b34801561047f57600080fd5b5061049a60048036038101906104959190612f4f565b610e5a565b6040516104a79190613734565b60405180910390f35b3480156104bc57600080fd5b506104c5610f2a565b6040516104d291906135d7565b60405180910390f35b3480156104e757600080fd5b506104f0610fbc565b005b3480156104fe57600080fd5b5061051960048036038101906105149190613112565b611044565b005b34801561052757600080fd5b50610530611160565b005b34801561053e57600080fd5b50610559600480360381019061055491906131b5565b611208565b005b34801561056757600080fd5b50610582600480360381019061057d91906131fe565b61129e565b005b34801561059057600080fd5b50610599611324565b6040516105a69190613555565b60405180910390f35b3480156105bb57600080fd5b506105d660048036038101906105d191906131fe565b61134d565b005b3480156105e457600080fd5b506105ff60048036038101906105fa91906131fe565b6113d3565b60405161060c9190613719565b60405180910390f35b61062f600480360381019061062a91906131fe565b6113eb565b005b34801561063d57600080fd5b50610658600480360381019061065391906131b5565b611596565b005b34801561066657600080fd5b5061066f61162c565b60405161067c91906135d7565b60405180910390f35b34801561069157600080fd5b506106ac60048036038101906106a79190612f4f565b6116be565b6040516106b99190613734565b60405180910390f35b3480156106ce57600080fd5b506106d76116d0565b6040516106e49190613734565b60405180910390f35b3480156106f957600080fd5b50610714600480360381019061070f9190613092565b6116d6565b005b34801561072257600080fd5b5061073d6004803603810190610738919061300f565b61184e565b005b34801561074b57600080fd5b50610766600480360381019061076191906131fe565b6118a1565b60405161077391906135d7565b60405180910390f35b34801561078857600080fd5b506107a3600480360381019061079e91906130d2565b611920565b005b3480156107b157600080fd5b506107ba611a01565b6040516107c79190613734565b60405180910390f35b3480156107dc57600080fd5b506107e5611a07565b6040516107f29190613734565b60405180910390f35b34801561080757600080fd5b50610822600480360381019061081d9190612f7c565b611a0d565b60405161082f91906135bc565b60405180910390f35b34801561084457600080fd5b5061085f600480360381019061085a9190612f4f565b611aa1565b005b34801561086d57600080fd5b50610876611b99565b60405161088391906135bc565b60405180910390f35b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916148061095757507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b80610967575061096682611bac565b5b9050919050565b60606003805461097d90613a39565b80601f01602080910402602001604051908101604052809291908181526020018280546109a990613a39565b80156109f65780601f106109cb576101008083540402835291602001916109f6565b820191906000526020600020905b8154815290600101906020018083116109d957829003601f168201915b5050505050905090565b6000610a0b82611c16565b610a41576040517fcf4700e400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6007600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b6000610a8782610db6565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610aef576040517f943f7b8c00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16610b0e611c51565b73ffffffffffffffffffffffffffffffffffffffff1614158015610b405750610b3e81610b39611c51565b611a0d565b155b15610b77576040517fcfb3b94200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b610b82838383611c59565b505050565b600047905090565b600060016002546001540303905090565b610ba8611c51565b73ffffffffffffffffffffffffffffffffffffffff16610bc6611324565b73ffffffffffffffffffffffffffffffffffffffff1614610c1c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c1390613679565b60405180910390fd5b80600f8190555050565b610c31838383611d0b565b505050565b600d8054610c4390613a39565b80601f0160208091040260200160405190810160405280929190818152602001828054610c6f90613a39565b8015610cbc5780601f10610c9157610100808354040283529160200191610cbc565b820191906000526020600020905b815481529060010190602001808311610c9f57829003601f168201915b505050505081565b610ccc611c51565b73ffffffffffffffffffffffffffffffffffffffff16610cea611324565b73ffffffffffffffffffffffffffffffffffffffff1614610d40576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d3790613679565b60405180910390fd5b6000479050610d4d611324565b73ffffffffffffffffffffffffffffffffffffffff166108fc829081150290604051600060405180830381858888f19350505050158015610d92573d6000803e3d6000fd5b5050565b610db18383836040518060200160405280600081525061184e565b505050565b6000610dc1826121fc565b600001519050919050565b600c8054610dd990613a39565b80601f0160208091040260200160405190810160405280929190818152602001828054610e0590613a39565b8015610e525780601f10610e2757610100808354040283529160200191610e52565b820191906000526020600020905b815481529060010190602001808311610e3557829003601f168201915b505050505081565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415610ec2576040517f8f4eb60400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600660008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160009054906101000a900467ffffffffffffffff1667ffffffffffffffff169050919050565b6060600c8054610f3990613a39565b80601f0160208091040260200160405190810160405280929190818152602001828054610f6590613a39565b8015610fb25780601f10610f8757610100808354040283529160200191610fb2565b820191906000526020600020905b815481529060010190602001808311610f9557829003601f168201915b5050505050905090565b610fc4611c51565b73ffffffffffffffffffffffffffffffffffffffff16610fe2611324565b73ffffffffffffffffffffffffffffffffffffffff1614611038576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161102f90613679565b60405180910390fd5b6110426000612478565b565b61104c611c51565b73ffffffffffffffffffffffffffffffffffffffff1661106a611324565b73ffffffffffffffffffffffffffffffffffffffff16146110c0576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110b790613679565b60405180910390fd5b600f5481516110cd610b8f565b6110d7919061385a565b1115611118576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161110f906136d9565b60405180910390fd5b60005b815181101561115c5761114982828151811061113a57611139613ba3565b5b6020026020010151600161253c565b808061115490613a9c565b91505061111b565b5050565b611168611c51565b73ffffffffffffffffffffffffffffffffffffffff16611186611324565b73ffffffffffffffffffffffffffffffffffffffff16146111dc576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111d390613679565b60405180910390fd5b600b60009054906101000a900460ff1615600b60006101000a81548160ff021916908315150217905550565b611210611c51565b73ffffffffffffffffffffffffffffffffffffffff1661122e611324565b73ffffffffffffffffffffffffffffffffffffffff1614611284576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161127b90613679565b60405180910390fd5b80600d908051906020019061129a929190612c82565b5050565b6112a6611c51565b73ffffffffffffffffffffffffffffffffffffffff166112c4611324565b73ffffffffffffffffffffffffffffffffffffffff161461131a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161131190613679565b60405180910390fd5b8060098190555050565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b611355611c51565b73ffffffffffffffffffffffffffffffffffffffff16611373611324565b73ffffffffffffffffffffffffffffffffffffffff16146113c9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113c090613679565b60405180910390fd5b80600e8190555050565b6113db612d08565b6113e4826121fc565b9050919050565b6000811180156113fd57506009548111155b61143c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161143390613619565b60405180910390fd5b600f5481611448610b8f565b611452919061385a565b1115611493576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161148a906136f9565b60405180910390fd5b80600e546114a191906138e1565b34146114e2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114d990613699565b60405180910390fd5b600954816114ef336116be565b6114f9919061385a565b111561153a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161153190613639565b60405180910390fd5b600b60009054906101000a900460ff16611589576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611580906136b9565b60405180910390fd5b611593338261253c565b50565b61159e611c51565b73ffffffffffffffffffffffffffffffffffffffff166115bc611324565b73ffffffffffffffffffffffffffffffffffffffff1614611612576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161160990613679565b60405180910390fd5b80600c9080519060200190611628929190612c82565b5050565b60606004805461163b90613a39565b80601f016020809104026020016040519081016040528092919081815260200182805461166790613a39565b80156116b45780601f10611689576101008083540402835291602001916116b4565b820191906000526020600020905b81548152906001019060200180831161169757829003601f168201915b5050505050905090565b60006116c98261255a565b9050919050565b600e5481565b6116de611c51565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611743576040517fb06307db00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8060086000611750611c51565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff166117fd611c51565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c318360405161184291906135bc565b60405180910390a35050565b611859848484611d0b565b6118658484848461262a565b61189b576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b50505050565b60606118ac82611c16565b6118eb576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118e290613659565b60405180910390fd5b600c6118f6836127b8565b600d60405160200161190a93929190613524565b6040516020818303038152906040529050919050565b611928611c51565b73ffffffffffffffffffffffffffffffffffffffff16611946611324565b73ffffffffffffffffffffffffffffffffffffffff161461199c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161199390613679565b60405180910390fd5b600f54816119a8610b8f565b6119b2919061385a565b11156119f3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016119ea906136d9565b60405180910390fd5b6119fd828261253c565b5050565b600f5481565b60095481565b6000600860008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b611aa9611c51565b73ffffffffffffffffffffffffffffffffffffffff16611ac7611324565b73ffffffffffffffffffffffffffffffffffffffff1614611b1d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b1490613679565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415611b8d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b84906135f9565b60405180910390fd5b611b9681612478565b50565b600b60009054906101000a900460ff1681565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b600060015482108015611c4a575060056000838152602001908152602001600020600001601c9054906101000a900460ff16155b9050919050565b600033905090565b826007600084815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b6000611d16826121fc565b90506000816000015173ffffffffffffffffffffffffffffffffffffffff16611d3d611c51565b73ffffffffffffffffffffffffffffffffffffffff161480611d705750611d6f8260000151611d6a611c51565b611a0d565b5b80611db55750611d7e611c51565b73ffffffffffffffffffffffffffffffffffffffff16611d9d84610a00565b73ffffffffffffffffffffffffffffffffffffffff16145b905080611dee576040517f59c896be00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8473ffffffffffffffffffffffffffffffffffffffff16826000015173ffffffffffffffffffffffffffffffffffffffff1614611e57576040517fa114810000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161415611ebe576040517fea553b3400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b611ecb8585856001612919565b611edb6000848460000151611c59565b6001600660008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a900467ffffffffffffffff160392506101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055506001600660008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a900467ffffffffffffffff160192506101000a81548167ffffffffffffffff021916908367ffffffffffffffff160217905550836005600085815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550426005600085815260200190815260200160002060000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055506000600184019050600073ffffffffffffffffffffffffffffffffffffffff166005600083815260200190815260200160002060000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16141561218c5760015481101561218b5782600001516005600083815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555082602001516005600083815260200190815260200160002060000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055505b5b50828473ffffffffffffffffffffffffffffffffffffffff168673ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a46121f5858585600161291f565b5050505050565b612204612d08565b6000829050600154811015612441576000600560008381526020019081526020016000206040518060600160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815260200160008201601c9054906101000a900460ff1615151515815250509050806040015161243f57600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff1614612323578092505050612473565b5b60011561243e57818060019003925050600560008381526020019081526020016000206040518060600160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815260200160008201601c9054906101000a900460ff1615151515815250509050600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff1614612439578092505050612473565b612324565b5b505b6040517fdf2d9b4200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b919050565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050816000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b612556828260405180602001604052806000815250612925565b5050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156125c2576040517f35ebb31900000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600660008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160089054906101000a900467ffffffffffffffff1667ffffffffffffffff169050919050565b600061264b8473ffffffffffffffffffffffffffffffffffffffff16612937565b156127ab578373ffffffffffffffffffffffffffffffffffffffff1663150b7a02612674611c51565b8786866040518563ffffffff1660e01b81526004016126969493929190613570565b602060405180830381600087803b1580156126b057600080fd5b505af19250505080156126e157506040513d601f19601f820116820180604052508101906126de9190613188565b60015b61275b573d8060008114612711576040519150601f19603f3d011682016040523d82523d6000602084013e612716565b606091505b50600081511415612753576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149150506127b0565b600190505b949350505050565b60606000821415612800576040518060400160405280600181526020017f30000000000000000000000000000000000000000000000000000000000000008152509050612914565b600082905060005b6000821461283257808061281b90613a9c565b915050600a8261282b91906138b0565b9150612808565b60008167ffffffffffffffff81111561284e5761284d613bd2565b5b6040519080825280601f01601f1916602001820160405280156128805781602001600182028036833780820191505090505b5090505b6000851461290d57600182612899919061393b565b9150600a856128a89190613ae5565b60306128b4919061385a565b60f81b8183815181106128ca576128c9613ba3565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a8561290691906138b0565b9450612884565b8093505050505b919050565b50505050565b50505050565b612932838383600161294a565b505050565b600080823b905060008111915050919050565b60006001549050600073ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff1614156129b8576040517f2e07630000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b60008414156129f3576040517fb562e8dd00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b612a006000868387612919565b83600660008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a900467ffffffffffffffff160192506101000a81548167ffffffffffffffff021916908367ffffffffffffffff16021790555083600660008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160088282829054906101000a900467ffffffffffffffff160192506101000a81548167ffffffffffffffff021916908367ffffffffffffffff160217905550846005600083815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550426005600083815260200190815260200160002060000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff160217905550600081905060005b85811015612c6557818773ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4838015612c195750612c17600088848861262a565b155b15612c50576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b81806001019250508080600101915050612b9e565b508060018190555050612c7b600086838761291f565b5050505050565b828054612c8e90613a39565b90600052602060002090601f016020900481019282612cb05760008555612cf7565b82601f10612cc957805160ff1916838001178555612cf7565b82800160010185558215612cf7579182015b82811115612cf6578251825591602001919060010190612cdb565b5b509050612d049190612d4b565b5090565b6040518060600160405280600073ffffffffffffffffffffffffffffffffffffffff168152602001600067ffffffffffffffff1681526020016000151581525090565b5b80821115612d64576000816000905550600101612d4c565b5090565b6000612d7b612d7684613774565b61374f565b90508083825260208201905082856020860282011115612d9e57612d9d613c06565b5b60005b85811015612dce5781612db48882612e5c565b845260208401935060208301925050600181019050612da1565b5050509392505050565b6000612deb612de6846137a0565b61374f565b905082815260208101848484011115612e0757612e06613c0b565b5b612e128482856139f7565b509392505050565b6000612e2d612e28846137d1565b61374f565b905082815260208101848484011115612e4957612e48613c0b565b5b612e548482856139f7565b509392505050565b600081359050612e6b81613de8565b92915050565b600082601f830112612e8657612e85613c01565b5b8135612e96848260208601612d68565b91505092915050565b600081359050612eae81613dff565b92915050565b600081359050612ec381613e16565b92915050565b600081519050612ed881613e16565b92915050565b600082601f830112612ef357612ef2613c01565b5b8135612f03848260208601612dd8565b91505092915050565b600082601f830112612f2157612f20613c01565b5b8135612f31848260208601612e1a565b91505092915050565b600081359050612f4981613e2d565b92915050565b600060208284031215612f6557612f64613c15565b5b6000612f7384828501612e5c565b91505092915050565b60008060408385031215612f9357612f92613c15565b5b6000612fa185828601612e5c565b9250506020612fb285828601612e5c565b9150509250929050565b600080600060608486031215612fd557612fd4613c15565b5b6000612fe386828701612e5c565b9350506020612ff486828701612e5c565b925050604061300586828701612f3a565b9150509250925092565b6000806000806080858703121561302957613028613c15565b5b600061303787828801612e5c565b945050602061304887828801612e5c565b935050604061305987828801612f3a565b925050606085013567ffffffffffffffff81111561307a57613079613c10565b5b61308687828801612ede565b91505092959194509250565b600080604083850312156130a9576130a8613c15565b5b60006130b785828601612e5c565b92505060206130c885828601612e9f565b9150509250929050565b600080604083850312156130e9576130e8613c15565b5b60006130f785828601612e5c565b925050602061310885828601612f3a565b9150509250929050565b60006020828403121561312857613127613c15565b5b600082013567ffffffffffffffff81111561314657613145613c10565b5b61315284828501612e71565b91505092915050565b60006020828403121561317157613170613c15565b5b600061317f84828501612eb4565b91505092915050565b60006020828403121561319e5761319d613c15565b5b60006131ac84828501612ec9565b91505092915050565b6000602082840312156131cb576131ca613c15565b5b600082013567ffffffffffffffff8111156131e9576131e8613c10565b5b6131f584828501612f0c565b91505092915050565b60006020828403121561321457613213613c15565b5b600061322284828501612f3a565b91505092915050565b6132348161396f565b82525050565b6132438161396f565b82525050565b61325281613981565b82525050565b61326181613981565b82525050565b600061327282613817565b61327c818561382d565b935061328c818560208601613a06565b61329581613c1a565b840191505092915050565b60006132ab82613822565b6132b5818561383e565b93506132c5818560208601613a06565b6132ce81613c1a565b840191505092915050565b60006132e482613822565b6132ee818561384f565b93506132fe818560208601613a06565b80840191505092915050565b6000815461331781613a39565b613321818661384f565b9450600182166000811461333c576001811461334d57613380565b60ff19831686528186019350613380565b61335685613802565b60005b8381101561337857815481890152600182019150602081019050613359565b838801955050505b50505092915050565b600061339660268361383e565b91506133a182613c2b565b604082019050919050565b60006133b9600f8361383e565b91506133c482613c7a565b602082019050919050565b60006133dc60198361383e565b91506133e782613ca3565b602082019050919050565b60006133ff602c8361383e565b915061340a82613ccc565b604082019050919050565b600061342260208361383e565b915061342d82613d1b565b602082019050919050565b600061344560168361383e565b915061345082613d44565b602082019050919050565b6000613468601c8361383e565b915061347382613d6d565b602082019050919050565b600061348b60138361383e565b915061349682613d96565b602082019050919050565b60006134ae60138361383e565b91506134b982613dbf565b602082019050919050565b6060820160008201516134da600085018261322b565b5060208201516134ed6020850182613515565b5060408201516135006040850182613249565b50505050565b61350f816139d9565b82525050565b61351e816139e3565b82525050565b6000613530828661330a565b915061353c82856132d9565b9150613548828461330a565b9150819050949350505050565b600060208201905061356a600083018461323a565b92915050565b6000608082019050613585600083018761323a565b613592602083018661323a565b61359f6040830185613506565b81810360608301526135b18184613267565b905095945050505050565b60006020820190506135d16000830184613258565b92915050565b600060208201905081810360008301526135f181846132a0565b905092915050565b6000602082019050818103600083015261361281613389565b9050919050565b60006020820190508181036000830152613632816133ac565b9050919050565b60006020820190508181036000830152613652816133cf565b9050919050565b60006020820190508181036000830152613672816133f2565b9050919050565b6000602082019050818103600083015261369281613415565b9050919050565b600060208201905081810360008301526136b281613438565b9050919050565b600060208201905081810360008301526136d28161345b565b9050919050565b600060208201905081810360008301526136f28161347e565b9050919050565b60006020820190508181036000830152613712816134a1565b9050919050565b600060608201905061372e60008301846134c4565b92915050565b60006020820190506137496000830184613506565b92915050565b600061375961376a565b90506137658282613a6b565b919050565b6000604051905090565b600067ffffffffffffffff82111561378f5761378e613bd2565b5b602082029050602081019050919050565b600067ffffffffffffffff8211156137bb576137ba613bd2565b5b6137c482613c1a565b9050602081019050919050565b600067ffffffffffffffff8211156137ec576137eb613bd2565b5b6137f582613c1a565b9050602081019050919050565b60008190508160005260206000209050919050565b600081519050919050565b600081519050919050565b600082825260208201905092915050565b600082825260208201905092915050565b600081905092915050565b6000613865826139d9565b9150613870836139d9565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff038211156138a5576138a4613b16565b5b828201905092915050565b60006138bb826139d9565b91506138c6836139d9565b9250826138d6576138d5613b45565b5b828204905092915050565b60006138ec826139d9565b91506138f7836139d9565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff04831182151516156139305761392f613b16565b5b828202905092915050565b6000613946826139d9565b9150613951836139d9565b92508282101561396457613963613b16565b5b828203905092915050565b600061397a826139b9565b9050919050565b60008115159050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b600067ffffffffffffffff82169050919050565b82818337600083830152505050565b60005b83811015613a24578082015181840152602081019050613a09565b83811115613a33576000848401525b50505050565b60006002820490506001821680613a5157607f821691505b60208210811415613a6557613a64613b74565b5b50919050565b613a7482613c1a565b810181811067ffffffffffffffff82111715613a9357613a92613bd2565b5b80604052505050565b6000613aa7826139d9565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff821415613ada57613ad9613b16565b5b600182019050919050565b6000613af0826139d9565b9150613afb836139d9565b925082613b0b57613b0a613b45565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600080fd5b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f57726f6e67205175616e746974792e0000000000000000000000000000000000600082015250565b7f457863656564206d6178206d696e74696e6720616d6f756e7400000000000000600082015250565b7f4552433732314d657461646174613a2055524920736574206f66206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f4e6565647320746f2073656e64206d6f72652065746800000000000000000000600082015250565b7f5075626c69632053616c65204e6f742053746172746564205965742100000000600082015250565b7f4d617820537570706c7920526561636865642e00000000000000000000000000600082015250565b7f5265616368696e67206d617820737570706c7900000000000000000000000000600082015250565b613df18161396f565b8114613dfc57600080fd5b50565b613e0881613981565b8114613e1357600080fd5b50565b613e1f8161398d565b8114613e2a57600080fd5b50565b613e36816139d9565b8114613e4157600080fd5b5056fea2646970667358221220e5ca48619f088b091cfc79cb9613ed5ee8995afa764ca2dc6bcf3293c19e1c5b64736f6c63430008070033

Deployed Bytecode

0x60806040526004361061021e5760003560e01c80637e6182d911610123578063a035b1fe116100ab578063d5abeb011161006f578063d5abeb01146107a5578063e917a28c146107d0578063e985e9c5146107fb578063f2fde38b14610838578063f9e237991461086157610225565b8063a035b1fe146106c2578063a22cb465146106ed578063b88d4fde14610716578063c87b56dd1461073f578063d1f919ed1461077c57610225565b80639231ab2a116100f25780639231ab2a146105d85780639264274414610615578063931688cb1461063157806395d89b411461065a57806397d6696b1461068557610225565b80637e6182d91461053257806381a89b591461055b5780638da5cb5b1461058457806391b7f5ed146105af57610225565b80633ccfd60b116101a657806370a082311161017557806370a0823114610473578063714c5398146104b0578063715018a6146104db5780637c8255db146104f25780637d8966e41461051b57610225565b80633ccfd60b146103cb57806342842e0e146103e25780636352211e1461040b5780636c0360eb1461044857610225565b806312065fe0116101ed57806312065fe0146102f857806318160ddd14610323578063228025e81461034e57806323b872dd146103775780633ae1dd9d146103a057610225565b806301ffc9a71461022a57806306fdde0314610267578063081812fc14610292578063095ea7b3146102cf57610225565b3661022557005b600080fd5b34801561023657600080fd5b50610251600480360381019061024c919061315b565b61088c565b60405161025e91906135bc565b60405180910390f35b34801561027357600080fd5b5061027c61096e565b60405161028991906135d7565b60405180910390f35b34801561029e57600080fd5b506102b960048036038101906102b491906131fe565b610a00565b6040516102c69190613555565b60405180910390f35b3480156102db57600080fd5b506102f660048036038101906102f191906130d2565b610a7c565b005b34801561030457600080fd5b5061030d610b87565b60405161031a9190613734565b60405180910390f35b34801561032f57600080fd5b50610338610b8f565b6040516103459190613734565b60405180910390f35b34801561035a57600080fd5b50610375600480360381019061037091906131fe565b610ba0565b005b34801561038357600080fd5b5061039e60048036038101906103999190612fbc565b610c26565b005b3480156103ac57600080fd5b506103b5610c36565b6040516103c291906135d7565b60405180910390f35b3480156103d757600080fd5b506103e0610cc4565b005b3480156103ee57600080fd5b5061040960048036038101906104049190612fbc565b610d96565b005b34801561041757600080fd5b50610432600480360381019061042d91906131fe565b610db6565b60405161043f9190613555565b60405180910390f35b34801561045457600080fd5b5061045d610dcc565b60405161046a91906135d7565b60405180910390f35b34801561047f57600080fd5b5061049a60048036038101906104959190612f4f565b610e5a565b6040516104a79190613734565b60405180910390f35b3480156104bc57600080fd5b506104c5610f2a565b6040516104d291906135d7565b60405180910390f35b3480156104e757600080fd5b506104f0610fbc565b005b3480156104fe57600080fd5b5061051960048036038101906105149190613112565b611044565b005b34801561052757600080fd5b50610530611160565b005b34801561053e57600080fd5b50610559600480360381019061055491906131b5565b611208565b005b34801561056757600080fd5b50610582600480360381019061057d91906131fe565b61129e565b005b34801561059057600080fd5b50610599611324565b6040516105a69190613555565b60405180910390f35b3480156105bb57600080fd5b506105d660048036038101906105d191906131fe565b61134d565b005b3480156105e457600080fd5b506105ff60048036038101906105fa91906131fe565b6113d3565b60405161060c9190613719565b60405180910390f35b61062f600480360381019061062a91906131fe565b6113eb565b005b34801561063d57600080fd5b50610658600480360381019061065391906131b5565b611596565b005b34801561066657600080fd5b5061066f61162c565b60405161067c91906135d7565b60405180910390f35b34801561069157600080fd5b506106ac60048036038101906106a79190612f4f565b6116be565b6040516106b99190613734565b60405180910390f35b3480156106ce57600080fd5b506106d76116d0565b6040516106e49190613734565b60405180910390f35b3480156106f957600080fd5b50610714600480360381019061070f9190613092565b6116d6565b005b34801561072257600080fd5b5061073d6004803603810190610738919061300f565b61184e565b005b34801561074b57600080fd5b50610766600480360381019061076191906131fe565b6118a1565b60405161077391906135d7565b60405180910390f35b34801561078857600080fd5b506107a3600480360381019061079e91906130d2565b611920565b005b3480156107b157600080fd5b506107ba611a01565b6040516107c79190613734565b60405180910390f35b3480156107dc57600080fd5b506107e5611a07565b6040516107f29190613734565b60405180910390f35b34801561080757600080fd5b50610822600480360381019061081d9190612f7c565b611a0d565b60405161082f91906135bc565b60405180910390f35b34801561084457600080fd5b5061085f600480360381019061085a9190612f4f565b611aa1565b005b34801561086d57600080fd5b50610876611b99565b60405161088391906135bc565b60405180910390f35b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916148061095757507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b80610967575061096682611bac565b5b9050919050565b60606003805461097d90613a39565b80601f01602080910402602001604051908101604052809291908181526020018280546109a990613a39565b80156109f65780601f106109cb576101008083540402835291602001916109f6565b820191906000526020600020905b8154815290600101906020018083116109d957829003601f168201915b5050505050905090565b6000610a0b82611c16565b610a41576040517fcf4700e400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6007600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b6000610a8782610db6565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610aef576040517f943f7b8c00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16610b0e611c51565b73ffffffffffffffffffffffffffffffffffffffff1614158015610b405750610b3e81610b39611c51565b611a0d565b155b15610b77576040517fcfb3b94200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b610b82838383611c59565b505050565b600047905090565b600060016002546001540303905090565b610ba8611c51565b73ffffffffffffffffffffffffffffffffffffffff16610bc6611324565b73ffffffffffffffffffffffffffffffffffffffff1614610c1c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c1390613679565b60405180910390fd5b80600f8190555050565b610c31838383611d0b565b505050565b600d8054610c4390613a39565b80601f0160208091040260200160405190810160405280929190818152602001828054610c6f90613a39565b8015610cbc5780601f10610c9157610100808354040283529160200191610cbc565b820191906000526020600020905b815481529060010190602001808311610c9f57829003601f168201915b505050505081565b610ccc611c51565b73ffffffffffffffffffffffffffffffffffffffff16610cea611324565b73ffffffffffffffffffffffffffffffffffffffff1614610d40576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d3790613679565b60405180910390fd5b6000479050610d4d611324565b73ffffffffffffffffffffffffffffffffffffffff166108fc829081150290604051600060405180830381858888f19350505050158015610d92573d6000803e3d6000fd5b5050565b610db18383836040518060200160405280600081525061184e565b505050565b6000610dc1826121fc565b600001519050919050565b600c8054610dd990613a39565b80601f0160208091040260200160405190810160405280929190818152602001828054610e0590613a39565b8015610e525780601f10610e2757610100808354040283529160200191610e52565b820191906000526020600020905b815481529060010190602001808311610e3557829003601f168201915b505050505081565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415610ec2576040517f8f4eb60400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600660008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160009054906101000a900467ffffffffffffffff1667ffffffffffffffff169050919050565b6060600c8054610f3990613a39565b80601f0160208091040260200160405190810160405280929190818152602001828054610f6590613a39565b8015610fb25780601f10610f8757610100808354040283529160200191610fb2565b820191906000526020600020905b815481529060010190602001808311610f9557829003601f168201915b5050505050905090565b610fc4611c51565b73ffffffffffffffffffffffffffffffffffffffff16610fe2611324565b73ffffffffffffffffffffffffffffffffffffffff1614611038576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161102f90613679565b60405180910390fd5b6110426000612478565b565b61104c611c51565b73ffffffffffffffffffffffffffffffffffffffff1661106a611324565b73ffffffffffffffffffffffffffffffffffffffff16146110c0576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110b790613679565b60405180910390fd5b600f5481516110cd610b8f565b6110d7919061385a565b1115611118576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161110f906136d9565b60405180910390fd5b60005b815181101561115c5761114982828151811061113a57611139613ba3565b5b6020026020010151600161253c565b808061115490613a9c565b91505061111b565b5050565b611168611c51565b73ffffffffffffffffffffffffffffffffffffffff16611186611324565b73ffffffffffffffffffffffffffffffffffffffff16146111dc576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111d390613679565b60405180910390fd5b600b60009054906101000a900460ff1615600b60006101000a81548160ff021916908315150217905550565b611210611c51565b73ffffffffffffffffffffffffffffffffffffffff1661122e611324565b73ffffffffffffffffffffffffffffffffffffffff1614611284576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161127b90613679565b60405180910390fd5b80600d908051906020019061129a929190612c82565b5050565b6112a6611c51565b73ffffffffffffffffffffffffffffffffffffffff166112c4611324565b73ffffffffffffffffffffffffffffffffffffffff161461131a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161131190613679565b60405180910390fd5b8060098190555050565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b611355611c51565b73ffffffffffffffffffffffffffffffffffffffff16611373611324565b73ffffffffffffffffffffffffffffffffffffffff16146113c9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113c090613679565b60405180910390fd5b80600e8190555050565b6113db612d08565b6113e4826121fc565b9050919050565b6000811180156113fd57506009548111155b61143c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161143390613619565b60405180910390fd5b600f5481611448610b8f565b611452919061385a565b1115611493576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161148a906136f9565b60405180910390fd5b80600e546114a191906138e1565b34146114e2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114d990613699565b60405180910390fd5b600954816114ef336116be565b6114f9919061385a565b111561153a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161153190613639565b60405180910390fd5b600b60009054906101000a900460ff16611589576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611580906136b9565b60405180910390fd5b611593338261253c565b50565b61159e611c51565b73ffffffffffffffffffffffffffffffffffffffff166115bc611324565b73ffffffffffffffffffffffffffffffffffffffff1614611612576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161160990613679565b60405180910390fd5b80600c9080519060200190611628929190612c82565b5050565b60606004805461163b90613a39565b80601f016020809104026020016040519081016040528092919081815260200182805461166790613a39565b80156116b45780601f10611689576101008083540402835291602001916116b4565b820191906000526020600020905b81548152906001019060200180831161169757829003601f168201915b5050505050905090565b60006116c98261255a565b9050919050565b600e5481565b6116de611c51565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611743576040517fb06307db00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8060086000611750611c51565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff166117fd611c51565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c318360405161184291906135bc565b60405180910390a35050565b611859848484611d0b565b6118658484848461262a565b61189b576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b50505050565b60606118ac82611c16565b6118eb576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118e290613659565b60405180910390fd5b600c6118f6836127b8565b600d60405160200161190a93929190613524565b6040516020818303038152906040529050919050565b611928611c51565b73ffffffffffffffffffffffffffffffffffffffff16611946611324565b73ffffffffffffffffffffffffffffffffffffffff161461199c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161199390613679565b60405180910390fd5b600f54816119a8610b8f565b6119b2919061385a565b11156119f3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016119ea906136d9565b60405180910390fd5b6119fd828261253c565b5050565b600f5481565b60095481565b6000600860008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b611aa9611c51565b73ffffffffffffffffffffffffffffffffffffffff16611ac7611324565b73ffffffffffffffffffffffffffffffffffffffff1614611b1d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b1490613679565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415611b8d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b84906135f9565b60405180910390fd5b611b9681612478565b50565b600b60009054906101000a900460ff1681565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b600060015482108015611c4a575060056000838152602001908152602001600020600001601c9054906101000a900460ff16155b9050919050565b600033905090565b826007600084815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b6000611d16826121fc565b90506000816000015173ffffffffffffffffffffffffffffffffffffffff16611d3d611c51565b73ffffffffffffffffffffffffffffffffffffffff161480611d705750611d6f8260000151611d6a611c51565b611a0d565b5b80611db55750611d7e611c51565b73ffffffffffffffffffffffffffffffffffffffff16611d9d84610a00565b73ffffffffffffffffffffffffffffffffffffffff16145b905080611dee576040517f59c896be00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8473ffffffffffffffffffffffffffffffffffffffff16826000015173ffffffffffffffffffffffffffffffffffffffff1614611e57576040517fa114810000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161415611ebe576040517fea553b3400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b611ecb8585856001612919565b611edb6000848460000151611c59565b6001600660008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a900467ffffffffffffffff160392506101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055506001600660008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a900467ffffffffffffffff160192506101000a81548167ffffffffffffffff021916908367ffffffffffffffff160217905550836005600085815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550426005600085815260200190815260200160002060000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055506000600184019050600073ffffffffffffffffffffffffffffffffffffffff166005600083815260200190815260200160002060000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16141561218c5760015481101561218b5782600001516005600083815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555082602001516005600083815260200190815260200160002060000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055505b5b50828473ffffffffffffffffffffffffffffffffffffffff168673ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a46121f5858585600161291f565b5050505050565b612204612d08565b6000829050600154811015612441576000600560008381526020019081526020016000206040518060600160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815260200160008201601c9054906101000a900460ff1615151515815250509050806040015161243f57600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff1614612323578092505050612473565b5b60011561243e57818060019003925050600560008381526020019081526020016000206040518060600160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815260200160008201601c9054906101000a900460ff1615151515815250509050600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff1614612439578092505050612473565b612324565b5b505b6040517fdf2d9b4200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b919050565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050816000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b612556828260405180602001604052806000815250612925565b5050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156125c2576040517f35ebb31900000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600660008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160089054906101000a900467ffffffffffffffff1667ffffffffffffffff169050919050565b600061264b8473ffffffffffffffffffffffffffffffffffffffff16612937565b156127ab578373ffffffffffffffffffffffffffffffffffffffff1663150b7a02612674611c51565b8786866040518563ffffffff1660e01b81526004016126969493929190613570565b602060405180830381600087803b1580156126b057600080fd5b505af19250505080156126e157506040513d601f19601f820116820180604052508101906126de9190613188565b60015b61275b573d8060008114612711576040519150601f19603f3d011682016040523d82523d6000602084013e612716565b606091505b50600081511415612753576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149150506127b0565b600190505b949350505050565b60606000821415612800576040518060400160405280600181526020017f30000000000000000000000000000000000000000000000000000000000000008152509050612914565b600082905060005b6000821461283257808061281b90613a9c565b915050600a8261282b91906138b0565b9150612808565b60008167ffffffffffffffff81111561284e5761284d613bd2565b5b6040519080825280601f01601f1916602001820160405280156128805781602001600182028036833780820191505090505b5090505b6000851461290d57600182612899919061393b565b9150600a856128a89190613ae5565b60306128b4919061385a565b60f81b8183815181106128ca576128c9613ba3565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a8561290691906138b0565b9450612884565b8093505050505b919050565b50505050565b50505050565b612932838383600161294a565b505050565b600080823b905060008111915050919050565b60006001549050600073ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff1614156129b8576040517f2e07630000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b60008414156129f3576040517fb562e8dd00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b612a006000868387612919565b83600660008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a900467ffffffffffffffff160192506101000a81548167ffffffffffffffff021916908367ffffffffffffffff16021790555083600660008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160088282829054906101000a900467ffffffffffffffff160192506101000a81548167ffffffffffffffff021916908367ffffffffffffffff160217905550846005600083815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550426005600083815260200190815260200160002060000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff160217905550600081905060005b85811015612c6557818773ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4838015612c195750612c17600088848861262a565b155b15612c50576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b81806001019250508080600101915050612b9e565b508060018190555050612c7b600086838761291f565b5050505050565b828054612c8e90613a39565b90600052602060002090601f016020900481019282612cb05760008555612cf7565b82601f10612cc957805160ff1916838001178555612cf7565b82800160010185558215612cf7579182015b82811115612cf6578251825591602001919060010190612cdb565b5b509050612d049190612d4b565b5090565b6040518060600160405280600073ffffffffffffffffffffffffffffffffffffffff168152602001600067ffffffffffffffff1681526020016000151581525090565b5b80821115612d64576000816000905550600101612d4c565b5090565b6000612d7b612d7684613774565b61374f565b90508083825260208201905082856020860282011115612d9e57612d9d613c06565b5b60005b85811015612dce5781612db48882612e5c565b845260208401935060208301925050600181019050612da1565b5050509392505050565b6000612deb612de6846137a0565b61374f565b905082815260208101848484011115612e0757612e06613c0b565b5b612e128482856139f7565b509392505050565b6000612e2d612e28846137d1565b61374f565b905082815260208101848484011115612e4957612e48613c0b565b5b612e548482856139f7565b509392505050565b600081359050612e6b81613de8565b92915050565b600082601f830112612e8657612e85613c01565b5b8135612e96848260208601612d68565b91505092915050565b600081359050612eae81613dff565b92915050565b600081359050612ec381613e16565b92915050565b600081519050612ed881613e16565b92915050565b600082601f830112612ef357612ef2613c01565b5b8135612f03848260208601612dd8565b91505092915050565b600082601f830112612f2157612f20613c01565b5b8135612f31848260208601612e1a565b91505092915050565b600081359050612f4981613e2d565b92915050565b600060208284031215612f6557612f64613c15565b5b6000612f7384828501612e5c565b91505092915050565b60008060408385031215612f9357612f92613c15565b5b6000612fa185828601612e5c565b9250506020612fb285828601612e5c565b9150509250929050565b600080600060608486031215612fd557612fd4613c15565b5b6000612fe386828701612e5c565b9350506020612ff486828701612e5c565b925050604061300586828701612f3a565b9150509250925092565b6000806000806080858703121561302957613028613c15565b5b600061303787828801612e5c565b945050602061304887828801612e5c565b935050604061305987828801612f3a565b925050606085013567ffffffffffffffff81111561307a57613079613c10565b5b61308687828801612ede565b91505092959194509250565b600080604083850312156130a9576130a8613c15565b5b60006130b785828601612e5c565b92505060206130c885828601612e9f565b9150509250929050565b600080604083850312156130e9576130e8613c15565b5b60006130f785828601612e5c565b925050602061310885828601612f3a565b9150509250929050565b60006020828403121561312857613127613c15565b5b600082013567ffffffffffffffff81111561314657613145613c10565b5b61315284828501612e71565b91505092915050565b60006020828403121561317157613170613c15565b5b600061317f84828501612eb4565b91505092915050565b60006020828403121561319e5761319d613c15565b5b60006131ac84828501612ec9565b91505092915050565b6000602082840312156131cb576131ca613c15565b5b600082013567ffffffffffffffff8111156131e9576131e8613c10565b5b6131f584828501612f0c565b91505092915050565b60006020828403121561321457613213613c15565b5b600061322284828501612f3a565b91505092915050565b6132348161396f565b82525050565b6132438161396f565b82525050565b61325281613981565b82525050565b61326181613981565b82525050565b600061327282613817565b61327c818561382d565b935061328c818560208601613a06565b61329581613c1a565b840191505092915050565b60006132ab82613822565b6132b5818561383e565b93506132c5818560208601613a06565b6132ce81613c1a565b840191505092915050565b60006132e482613822565b6132ee818561384f565b93506132fe818560208601613a06565b80840191505092915050565b6000815461331781613a39565b613321818661384f565b9450600182166000811461333c576001811461334d57613380565b60ff19831686528186019350613380565b61335685613802565b60005b8381101561337857815481890152600182019150602081019050613359565b838801955050505b50505092915050565b600061339660268361383e565b91506133a182613c2b565b604082019050919050565b60006133b9600f8361383e565b91506133c482613c7a565b602082019050919050565b60006133dc60198361383e565b91506133e782613ca3565b602082019050919050565b60006133ff602c8361383e565b915061340a82613ccc565b604082019050919050565b600061342260208361383e565b915061342d82613d1b565b602082019050919050565b600061344560168361383e565b915061345082613d44565b602082019050919050565b6000613468601c8361383e565b915061347382613d6d565b602082019050919050565b600061348b60138361383e565b915061349682613d96565b602082019050919050565b60006134ae60138361383e565b91506134b982613dbf565b602082019050919050565b6060820160008201516134da600085018261322b565b5060208201516134ed6020850182613515565b5060408201516135006040850182613249565b50505050565b61350f816139d9565b82525050565b61351e816139e3565b82525050565b6000613530828661330a565b915061353c82856132d9565b9150613548828461330a565b9150819050949350505050565b600060208201905061356a600083018461323a565b92915050565b6000608082019050613585600083018761323a565b613592602083018661323a565b61359f6040830185613506565b81810360608301526135b18184613267565b905095945050505050565b60006020820190506135d16000830184613258565b92915050565b600060208201905081810360008301526135f181846132a0565b905092915050565b6000602082019050818103600083015261361281613389565b9050919050565b60006020820190508181036000830152613632816133ac565b9050919050565b60006020820190508181036000830152613652816133cf565b9050919050565b60006020820190508181036000830152613672816133f2565b9050919050565b6000602082019050818103600083015261369281613415565b9050919050565b600060208201905081810360008301526136b281613438565b9050919050565b600060208201905081810360008301526136d28161345b565b9050919050565b600060208201905081810360008301526136f28161347e565b9050919050565b60006020820190508181036000830152613712816134a1565b9050919050565b600060608201905061372e60008301846134c4565b92915050565b60006020820190506137496000830184613506565b92915050565b600061375961376a565b90506137658282613a6b565b919050565b6000604051905090565b600067ffffffffffffffff82111561378f5761378e613bd2565b5b602082029050602081019050919050565b600067ffffffffffffffff8211156137bb576137ba613bd2565b5b6137c482613c1a565b9050602081019050919050565b600067ffffffffffffffff8211156137ec576137eb613bd2565b5b6137f582613c1a565b9050602081019050919050565b60008190508160005260206000209050919050565b600081519050919050565b600081519050919050565b600082825260208201905092915050565b600082825260208201905092915050565b600081905092915050565b6000613865826139d9565b9150613870836139d9565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff038211156138a5576138a4613b16565b5b828201905092915050565b60006138bb826139d9565b91506138c6836139d9565b9250826138d6576138d5613b45565b5b828204905092915050565b60006138ec826139d9565b91506138f7836139d9565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff04831182151516156139305761392f613b16565b5b828202905092915050565b6000613946826139d9565b9150613951836139d9565b92508282101561396457613963613b16565b5b828203905092915050565b600061397a826139b9565b9050919050565b60008115159050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b600067ffffffffffffffff82169050919050565b82818337600083830152505050565b60005b83811015613a24578082015181840152602081019050613a09565b83811115613a33576000848401525b50505050565b60006002820490506001821680613a5157607f821691505b60208210811415613a6557613a64613b74565b5b50919050565b613a7482613c1a565b810181811067ffffffffffffffff82111715613a9357613a92613bd2565b5b80604052505050565b6000613aa7826139d9565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff821415613ada57613ad9613b16565b5b600182019050919050565b6000613af0826139d9565b9150613afb836139d9565b925082613b0b57613b0a613b45565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600080fd5b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f57726f6e67205175616e746974792e0000000000000000000000000000000000600082015250565b7f457863656564206d6178206d696e74696e6720616d6f756e7400000000000000600082015250565b7f4552433732314d657461646174613a2055524920736574206f66206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f4e6565647320746f2073656e64206d6f72652065746800000000000000000000600082015250565b7f5075626c69632053616c65204e6f742053746172746564205965742100000000600082015250565b7f4d617820537570706c7920526561636865642e00000000000000000000000000600082015250565b7f5265616368696e67206d617820737570706c7900000000000000000000000000600082015250565b613df18161396f565b8114613dfc57600080fd5b50565b613e0881613981565b8114613e1357600080fd5b50565b613e1f8161398d565b8114613e2a57600080fd5b50565b613e36816139d9565b8114613e4157600080fd5b5056fea2646970667358221220e5ca48619f088b091cfc79cb9613ed5ee8995afa764ca2dc6bcf3293c19e1c5b64736f6c63430008070033

Deployed Bytecode Sourcemap

54994:3045:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;25358:305;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;28718:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;30221:204;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;29784:371;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;57473:95;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;25009:277;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;57267:96;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;31078:170;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;55245:34;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;57693:149;;;;;;;;;;;;;:::i;:::-;;31319:185;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;28527:124;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;55205:33;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;25727:206;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;56948:92;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;14124:94;;;;;;;;;;;;;:::i;:::-;;55941:252;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;57371:92;;;;;;;;;;;;;:::i;:::-;;56840:100;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;57140:119;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;13473:87;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;57048:86;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;57850:147;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;55416:515;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;56727:107;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;28887:104;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;57576:109;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;55286:30;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;30497:279;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;31575:342;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;56414:305;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;56198:206;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;55323:31;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;55040;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;30847:164;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;14373:192;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;55164:34;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;25358:305;25460:4;25512:25;25497:40;;;:11;:40;;;;:105;;;;25569:33;25554:48;;;:11;:48;;;;25497:105;:158;;;;25619:36;25643:11;25619:23;:36::i;:::-;25497:158;25477:178;;25358:305;;;:::o;28718:100::-;28772:13;28805:5;28798:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;28718:100;:::o;30221:204::-;30289:7;30314:16;30322:7;30314;:16::i;:::-;30309:64;;30339:34;;;;;;;;;;;;;;30309:64;30393:15;:24;30409:7;30393:24;;;;;;;;;;;;;;;;;;;;;30386:31;;30221:204;;;:::o;29784:371::-;29857:13;29873:24;29889:7;29873:15;:24::i;:::-;29857:40;;29918:5;29912:11;;:2;:11;;;29908:48;;;29932:24;;;;;;;;;;;;;;29908:48;29989:5;29973:21;;:12;:10;:12::i;:::-;:21;;;;:63;;;;;29999:37;30016:5;30023:12;:10;:12::i;:::-;29999:16;:37::i;:::-;29998:38;29973:63;29969:138;;;30060:35;;;;;;;;;;;;;;29969:138;30119:28;30128:2;30132:7;30141:5;30119:8;:28::i;:::-;29846:309;29784:371;;:::o;57473:95::-;57515:4;57539:21;57532:28;;57473:95;:::o;25009:277::-;25053:7;25262:1;25246:12;;25230:13;;:28;25229:34;25222:41;;25009:277;:::o;57267:96::-;13704:12;:10;:12::i;:::-;13693:23;;:7;:5;:7::i;:::-;:23;;;13685:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;57348:7:::1;57336:9;:19;;;;57267:96:::0;:::o;31078:170::-;31212:28;31222:4;31228:2;31232:7;31212:9;:28::i;:::-;31078:170;;;:::o;55245:34::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;57693:149::-;13704:12;:10;:12::i;:::-;13693:23;;:7;:5;:7::i;:::-;:23;;;13685:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;57743:13:::1;57759:21;57743:37;;57799:7;:5;:7::i;:::-;57791:25;;:35;57817:8;57791:35;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;57732:110;57693:149::o:0;31319:185::-;31457:39;31474:4;31480:2;31484:7;31457:39;;;;;;;;;;;;:16;:39::i;:::-;31319:185;;;:::o;28527:124::-;28591:7;28618:20;28630:7;28618:11;:20::i;:::-;:25;;;28611:32;;28527:124;;;:::o;55205:33::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;25727:206::-;25791:7;25832:1;25815:19;;:5;:19;;;25811:60;;;25843:28;;;;;;;;;;;;;;25811:60;25897:12;:19;25910:5;25897:19;;;;;;;;;;;;;;;:27;;;;;;;;;;;;25889:36;;25882:43;;25727:206;;;:::o;56948:92::-;56992:13;57025:7;57018:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;56948:92;:::o;14124:94::-;13704:12;:10;:12::i;:::-;13693:23;;:7;:5;:7::i;:::-;:23;;;13685:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;14189:21:::1;14207:1;14189:9;:21::i;:::-;14124:94::o:0;55941:252::-;13704:12;:10;:12::i;:::-;13693:23;;:7;:5;:7::i;:::-;:23;;;13685:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;56059:9:::1;;56040:8;:15;56024:13;:11;:13::i;:::-;:31;;;;:::i;:::-;:44;;56016:76;;;;;;;;;;;;:::i;:::-;;;;;;;;;56107:6;56103:80;56123:8;:15;56119:1;:19;56103:80;;;56158:25;56168:8;56177:1;56168:11;;;;;;;;:::i;:::-;;;;;;;;56181:1;56158:9;:25::i;:::-;56140:3;;;;;:::i;:::-;;;;56103:80;;;;55941:252:::0;:::o;57371:92::-;13704:12;:10;:12::i;:::-;13693:23;;:7;:5;:7::i;:::-;:23;;;13685:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;57441:14:::1;;;;;;;;;;;57440:15;57423:14;;:32;;;;;;;;;;;;;;;;;;57371:92::o:0;56840:100::-;13704:12;:10;:12::i;:::-;13693:23;;:7;:5;:7::i;:::-;:23;;;13685:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;56927:5:::1;56914:10;:18;;;;;;;;;;;;:::i;:::-;;56840:100:::0;:::o;57140:119::-;13704:12;:10;:12::i;:::-;13693:23;;:7;:5;:7::i;:::-;:23;;;13685:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;57237:14:::1;57221:13;:30;;;;57140:119:::0;:::o;13473:87::-;13519:7;13546:6;;;;;;;;;;;13539:13;;13473:87;:::o;57048:86::-;13704:12;:10;:12::i;:::-;13693:23;;:7;:5;:7::i;:::-;:23;;;13685:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;57120:6:::1;57112:5;:14;;;;57048:86:::0;:::o;57850:147::-;57931:21;;:::i;:::-;57971:20;57983:7;57971:11;:20::i;:::-;57964:27;;57850:147;;;:::o;55416:515::-;55498:1;55486:9;:13;:43;;;;;55516:13;;55503:9;:26;;55486:43;55478:71;;;;;;;;;;;;:::i;:::-;;;;;;;;;55597:9;;55584;55568:13;:11;:13::i;:::-;:25;;;;:::i;:::-;:38;;55560:70;;;;;;;;;;;;:::i;:::-;;;;;;;;;55670:9;55662:5;;:17;;;;:::i;:::-;55649:9;:30;55641:65;;;;;;;;;;;;:::i;:::-;;;;;;;;;55767:13;;55754:9;55725:26;55740:10;55725:14;:26::i;:::-;:38;;;;:::i;:::-;:55;;55717:93;;;;;;;;;;;;:::i;:::-;;;;;;;;;55829:14;;;;;;;;;;;55821:55;;;;;;;;;;;;:::i;:::-;;;;;;;;;55889:32;55899:10;55911:9;55889;:32::i;:::-;55416:515;:::o;56727:107::-;13704:12;:10;:12::i;:::-;13693:23;;:7;:5;:7::i;:::-;:23;;;13685:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;56815:11:::1;56805:7;:21;;;;;;;;;;;;:::i;:::-;;56727:107:::0;:::o;28887:104::-;28943:13;28976:7;28969:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;28887:104;:::o;57576:109::-;57636:7;57659:20;57673:5;57659:13;:20::i;:::-;57652:27;;57576:109;;;:::o;55286:30::-;;;;:::o;30497:279::-;30600:12;:10;:12::i;:::-;30588:24;;:8;:24;;;30584:54;;;30621:17;;;;;;;;;;;;;;30584:54;30696:8;30651:18;:32;30670:12;:10;:12::i;:::-;30651:32;;;;;;;;;;;;;;;:42;30684:8;30651:42;;;;;;;;;;;;;;;;:53;;;;;;;;;;;;;;;;;;30749:8;30720:48;;30735:12;:10;:12::i;:::-;30720:48;;;30759:8;30720:48;;;;;;:::i;:::-;;;;;;;;30497:279;;:::o;31575:342::-;31742:28;31752:4;31758:2;31762:7;31742:9;:28::i;:::-;31786:48;31809:4;31815:2;31819:7;31828:5;31786:22;:48::i;:::-;31781:129;;31858:40;;;;;;;;;;;;;;31781:129;31575:342;;;;:::o;56414:305::-;56488:13;56536:17;56544:8;56536:7;:17::i;:::-;56514:111;;;;;;;;;;;;:::i;:::-;;;;;;;;;56669:7;56678:19;:8;:17;:19::i;:::-;56699:10;56652:58;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;56638:73;;56414:305;;;:::o;56198:206::-;13704:12;:10;:12::i;:::-;13693:23;;:7;:5;:7::i;:::-;:23;;;13685:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;56324:9:::1;;56316:4;56300:13;:11;:13::i;:::-;:20;;;;:::i;:::-;:33;;56292:65;;;;;;;;;;;;:::i;:::-;;;;;;;;;56372:24;56382:7;56391:4;56372:9;:24::i;:::-;56198:206:::0;;:::o;55323:31::-;;;;:::o;55040:::-;;;;:::o;30847:164::-;30944:4;30968:18;:25;30987:5;30968:25;;;;;;;;;;;;;;;:35;30994:8;30968:35;;;;;;;;;;;;;;;;;;;;;;;;;30961:42;;30847:164;;;;:::o;14373:192::-;13704:12;:10;:12::i;:::-;13693:23;;:7;:5;:7::i;:::-;:23;;;13685:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;14482:1:::1;14462:22;;:8;:22;;;;14454:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;14538:19;14548:8;14538:9;:19::i;:::-;14373:192:::0;:::o;55164:34::-;;;;;;;;;;;;;:::o;15478:157::-;15563:4;15602:25;15587:40;;;:11;:40;;;;15580:47;;15478:157;;;:::o;32172:144::-;32229:4;32263:13;;32253:7;:23;:55;;;;;32281:11;:20;32293:7;32281:20;;;;;;;;;;;:27;;;;;;;;;;;;32280:28;32253:55;32246:62;;32172:144;;;:::o;613:98::-;666:7;693:10;686:17;;613:98;:::o;39378:196::-;39520:2;39493:15;:24;39509:7;39493:24;;;;;;;;;;;;:29;;;;;;;;;;;;;;;;;;39558:7;39554:2;39538:28;;39547:5;39538:28;;;;;;;;;;;;39378:196;;;:::o;34879:2112::-;34994:35;35032:20;35044:7;35032:11;:20::i;:::-;34994:58;;35065:22;35107:13;:18;;;35091:34;;:12;:10;:12::i;:::-;:34;;;:101;;;;35142:50;35159:13;:18;;;35179:12;:10;:12::i;:::-;35142:16;:50::i;:::-;35091:101;:154;;;;35233:12;:10;:12::i;:::-;35209:36;;:20;35221:7;35209:11;:20::i;:::-;:36;;;35091:154;35065:181;;35264:17;35259:66;;35290:35;;;;;;;;;;;;;;35259:66;35362:4;35340:26;;:13;:18;;;:26;;;35336:67;;35375:28;;;;;;;;;;;;;;35336:67;35432:1;35418:16;;:2;:16;;;35414:52;;;35443:23;;;;;;;;;;;;;;35414:52;35479:43;35501:4;35507:2;35511:7;35520:1;35479:21;:43::i;:::-;35587:49;35604:1;35608:7;35617:13;:18;;;35587:8;:49::i;:::-;35962:1;35932:12;:18;35945:4;35932:18;;;;;;;;;;;;;;;:26;;;:31;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;36006:1;35978:12;:16;35991:2;35978:16;;;;;;;;;;;;;;;:24;;;:29;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;36052:2;36024:11;:20;36036:7;36024:20;;;;;;;;;;;:25;;;:30;;;;;;;;;;;;;;;;;;36114:15;36069:11;:20;36081:7;36069:20;;;;;;;;;;;:35;;;:61;;;;;;;;;;;;;;;;;;36382:19;36414:1;36404:7;:11;36382:33;;36475:1;36434:43;;:11;:24;36446:11;36434:24;;;;;;;;;;;:29;;;;;;;;;;;;:43;;;36430:445;;;36659:13;;36645:11;:27;36641:219;;;36729:13;:18;;;36697:11;:24;36709:11;36697:24;;;;;;;;;;;:29;;;:50;;;;;;;;;;;;;;;;;;36812:13;:28;;;36770:11;:24;36782:11;36770:24;;;;;;;;;;;:39;;;:70;;;;;;;;;;;;;;;;;;36641:219;36430:445;35907:979;36922:7;36918:2;36903:27;;36912:4;36903:27;;;;;;;;;;;;36941:42;36962:4;36968:2;36972:7;36981:1;36941:20;:42::i;:::-;34983:2008;;34879:2112;;;:::o;27382:1083::-;27443:21;;:::i;:::-;27477:12;27492:7;27477:22;;27548:13;;27541:4;:20;27537:861;;;27582:31;27616:11;:17;27628:4;27616:17;;;;;;;;;;;27582:51;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;27657:9;:16;;;27652:731;;27728:1;27702:28;;:9;:14;;;:28;;;27698:101;;27766:9;27759:16;;;;;;27698:101;28103:261;28110:4;28103:261;;;28143:6;;;;;;;;28188:11;:17;28200:4;28188:17;;;;;;;;;;;28176:29;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;28262:1;28236:28;;:9;:14;;;:28;;;28232:109;;28304:9;28297:16;;;;;;28232:109;28103:261;;;27652:731;27563:835;27537:861;28426:31;;;;;;;;;;;;;;27382:1083;;;;:::o;14573:173::-;14629:16;14648:6;;;;;;;;;;;14629:25;;14674:8;14665:6;;:17;;;;;;;;;;;;;;;;;;14729:8;14698:40;;14719:8;14698:40;;;;;;;;;;;;14618:128;14573:173;:::o;32324:104::-;32393:27;32403:2;32407:8;32393:27;;;;;;;;;;;;:9;:27::i;:::-;32324:104;;:::o;26015:207::-;26076:7;26117:1;26100:19;;:5;:19;;;26096:59;;;26128:27;;;;;;;;;;;;;;26096:59;26181:12;:19;26194:5;26181:19;;;;;;;;;;;;;;;:32;;;;;;;;;;;;26173:41;;26166:48;;26015:207;;;:::o;40139:790::-;40294:4;40315:15;:2;:13;;;:15::i;:::-;40311:611;;;40367:2;40351:36;;;40388:12;:10;:12::i;:::-;40402:4;40408:7;40417:5;40351:72;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;40347:520;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;40614:1;40597:6;:13;:18;40593:259;;;40647:40;;;;;;;;;;;;;;40593:259;40802:6;40796:13;40787:6;40783:2;40779:15;40772:38;40347:520;40484:45;;;40474:55;;;:6;:55;;;;40467:62;;;;;40311:611;40906:4;40899:11;;40139:790;;;;;;;:::o;1078:723::-;1134:13;1364:1;1355:5;:10;1351:53;;;1382:10;;;;;;;;;;;;;;;;;;;;;1351:53;1414:12;1429:5;1414:20;;1445:14;1470:78;1485:1;1477:4;:9;1470:78;;1503:8;;;;;:::i;:::-;;;;1534:2;1526:10;;;;;:::i;:::-;;;1470:78;;;1558:19;1590:6;1580:17;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1558:39;;1608:154;1624:1;1615:5;:10;1608:154;;1652:1;1642:11;;;;;:::i;:::-;;;1719:2;1711:5;:10;;;;:::i;:::-;1698:2;:24;;;;:::i;:::-;1685:39;;1668:6;1675;1668:14;;;;;;;;:::i;:::-;;;;;:56;;;;;;;;;;;1748:2;1739:11;;;;;:::i;:::-;;;1608:154;;;1786:6;1772:21;;;;;1078:723;;;;:::o;41577:159::-;;;;;:::o;42395:158::-;;;;;:::o;32791:163::-;32914:32;32920:2;32924:8;32934:5;32941:4;32914:5;:32::i;:::-;32791:163;;;:::o;3543:387::-;3603:4;3811:12;3878:7;3866:20;3858:28;;3921:1;3914:4;:8;3907:15;;;3543:387;;;:::o;33213:1412::-;33352:20;33375:13;;33352:36;;33417:1;33403:16;;:2;:16;;;33399:48;;;33428:19;;;;;;;;;;;;;;33399:48;33474:1;33462:8;:13;33458:44;;;33484:18;;;;;;;;;;;;;;33458:44;33515:61;33545:1;33549:2;33553:12;33567:8;33515:21;:61::i;:::-;33888:8;33853:12;:16;33866:2;33853:16;;;;;;;;;;;;;;;:24;;;:44;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;33952:8;33912:12;:16;33925:2;33912:16;;;;;;;;;;;;;;;:29;;;:49;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;34011:2;33978:11;:25;33990:12;33978:25;;;;;;;;;;;:30;;;:35;;;;;;;;;;;;;;;;;;34078:15;34028:11;:25;34040:12;34028:25;;;;;;;;;;;:40;;;:66;;;;;;;;;;;;;;;;;;34111:20;34134:12;34111:35;;34168:9;34163:328;34183:8;34179:1;:12;34163:328;;;34247:12;34243:2;34222:38;;34239:1;34222:38;;;;;;;;;;;;34283:4;:68;;;;;34292:59;34323:1;34327:2;34331:12;34345:5;34292:22;:59::i;:::-;34291:60;34283:68;34279:164;;;34383:40;;;;;;;;;;;;;;34279:164;34461:14;;;;;;;34193:3;;;;;;;34163:328;;;;34523:12;34507:13;:28;;;;33828:719;34557:60;34586:1;34590:2;34594:12;34608:8;34557:20;:60::i;:::-;33341:1284;33213:1412;;;;:::o;-1:-1:-1:-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;:::-;;;;;;;;;;;;;;;;;;;;;:::o;24:722:1:-;120:5;145:81;161:64;218:6;161:64;:::i;:::-;145:81;:::i;:::-;136:90;;246:5;275:6;268:5;261:21;309:4;302:5;298:16;291:23;;335:6;385:3;377:4;369:6;365:17;360:3;356:27;353:36;350:143;;;404:79;;:::i;:::-;350:143;517:1;502:238;527:6;524:1;521:13;502:238;;;595:3;624:37;657:3;645:10;624:37;:::i;:::-;619:3;612:50;691:4;686:3;682:14;675:21;;725:4;720:3;716:14;709:21;;562:178;549:1;546;542:9;537:14;;502:238;;;506:14;126:620;;24:722;;;;;:::o;752:410::-;829:5;854:65;870:48;911:6;870:48;:::i;:::-;854:65;:::i;:::-;845:74;;942:6;935:5;928:21;980:4;973:5;969:16;1018:3;1009:6;1004:3;1000:16;997:25;994:112;;;1025:79;;:::i;:::-;994:112;1115:41;1149:6;1144:3;1139;1115:41;:::i;:::-;835:327;752:410;;;;;:::o;1168:412::-;1246:5;1271:66;1287:49;1329:6;1287:49;:::i;:::-;1271:66;:::i;:::-;1262:75;;1360:6;1353:5;1346:21;1398:4;1391:5;1387:16;1436:3;1427:6;1422:3;1418:16;1415:25;1412:112;;;1443:79;;:::i;:::-;1412:112;1533:41;1567:6;1562:3;1557;1533:41;:::i;:::-;1252:328;1168:412;;;;;:::o;1586:139::-;1632:5;1670:6;1657:20;1648:29;;1686:33;1713:5;1686:33;:::i;:::-;1586:139;;;;:::o;1748:370::-;1819:5;1868:3;1861:4;1853:6;1849:17;1845:27;1835:122;;1876:79;;:::i;:::-;1835:122;1993:6;1980:20;2018:94;2108:3;2100:6;2093:4;2085:6;2081:17;2018:94;:::i;:::-;2009:103;;1825:293;1748:370;;;;:::o;2124:133::-;2167:5;2205:6;2192:20;2183:29;;2221:30;2245:5;2221:30;:::i;:::-;2124:133;;;;:::o;2263:137::-;2308:5;2346:6;2333:20;2324:29;;2362:32;2388:5;2362:32;:::i;:::-;2263:137;;;;:::o;2406:141::-;2462:5;2493:6;2487:13;2478:22;;2509:32;2535:5;2509:32;:::i;:::-;2406:141;;;;:::o;2566:338::-;2621:5;2670:3;2663:4;2655:6;2651:17;2647:27;2637:122;;2678:79;;:::i;:::-;2637:122;2795:6;2782:20;2820:78;2894:3;2886:6;2879:4;2871:6;2867:17;2820:78;:::i;:::-;2811:87;;2627:277;2566:338;;;;:::o;2924:340::-;2980:5;3029:3;3022:4;3014:6;3010:17;3006:27;2996:122;;3037:79;;:::i;:::-;2996:122;3154:6;3141:20;3179:79;3254:3;3246:6;3239:4;3231:6;3227:17;3179:79;:::i;:::-;3170:88;;2986:278;2924:340;;;;:::o;3270:139::-;3316:5;3354:6;3341:20;3332:29;;3370:33;3397:5;3370:33;:::i;:::-;3270:139;;;;:::o;3415:329::-;3474:6;3523:2;3511:9;3502:7;3498:23;3494:32;3491:119;;;3529:79;;:::i;:::-;3491:119;3649:1;3674:53;3719:7;3710:6;3699:9;3695:22;3674:53;:::i;:::-;3664:63;;3620:117;3415:329;;;;:::o;3750:474::-;3818:6;3826;3875:2;3863:9;3854:7;3850:23;3846:32;3843:119;;;3881:79;;:::i;:::-;3843:119;4001:1;4026:53;4071:7;4062:6;4051:9;4047:22;4026:53;:::i;:::-;4016:63;;3972:117;4128:2;4154:53;4199:7;4190:6;4179:9;4175:22;4154:53;:::i;:::-;4144:63;;4099:118;3750:474;;;;;:::o;4230:619::-;4307:6;4315;4323;4372:2;4360:9;4351:7;4347:23;4343:32;4340:119;;;4378:79;;:::i;:::-;4340:119;4498:1;4523:53;4568:7;4559:6;4548:9;4544:22;4523:53;:::i;:::-;4513:63;;4469:117;4625:2;4651:53;4696:7;4687:6;4676:9;4672:22;4651:53;:::i;:::-;4641:63;;4596:118;4753:2;4779:53;4824:7;4815:6;4804:9;4800:22;4779:53;:::i;:::-;4769:63;;4724:118;4230:619;;;;;:::o;4855:943::-;4950:6;4958;4966;4974;5023:3;5011:9;5002:7;4998:23;4994:33;4991:120;;;5030:79;;:::i;:::-;4991:120;5150:1;5175:53;5220:7;5211:6;5200:9;5196:22;5175:53;:::i;:::-;5165:63;;5121:117;5277:2;5303:53;5348:7;5339:6;5328:9;5324:22;5303:53;:::i;:::-;5293:63;;5248:118;5405:2;5431:53;5476:7;5467:6;5456:9;5452:22;5431:53;:::i;:::-;5421:63;;5376:118;5561:2;5550:9;5546:18;5533:32;5592:18;5584:6;5581:30;5578:117;;;5614:79;;:::i;:::-;5578:117;5719:62;5773:7;5764:6;5753:9;5749:22;5719:62;:::i;:::-;5709:72;;5504:287;4855:943;;;;;;;:::o;5804:468::-;5869:6;5877;5926:2;5914:9;5905:7;5901:23;5897:32;5894:119;;;5932:79;;:::i;:::-;5894:119;6052:1;6077:53;6122:7;6113:6;6102:9;6098:22;6077:53;:::i;:::-;6067:63;;6023:117;6179:2;6205:50;6247:7;6238:6;6227:9;6223:22;6205:50;:::i;:::-;6195:60;;6150:115;5804:468;;;;;:::o;6278:474::-;6346:6;6354;6403:2;6391:9;6382:7;6378:23;6374:32;6371:119;;;6409:79;;:::i;:::-;6371:119;6529:1;6554:53;6599:7;6590:6;6579:9;6575:22;6554:53;:::i;:::-;6544:63;;6500:117;6656:2;6682:53;6727:7;6718:6;6707:9;6703:22;6682:53;:::i;:::-;6672:63;;6627:118;6278:474;;;;;:::o;6758:539::-;6842:6;6891:2;6879:9;6870:7;6866:23;6862:32;6859:119;;;6897:79;;:::i;:::-;6859:119;7045:1;7034:9;7030:17;7017:31;7075:18;7067:6;7064:30;7061:117;;;7097:79;;:::i;:::-;7061:117;7202:78;7272:7;7263:6;7252:9;7248:22;7202:78;:::i;:::-;7192:88;;6988:302;6758:539;;;;:::o;7303:327::-;7361:6;7410:2;7398:9;7389:7;7385:23;7381:32;7378:119;;;7416:79;;:::i;:::-;7378:119;7536:1;7561:52;7605:7;7596:6;7585:9;7581:22;7561:52;:::i;:::-;7551:62;;7507:116;7303:327;;;;:::o;7636:349::-;7705:6;7754:2;7742:9;7733:7;7729:23;7725:32;7722:119;;;7760:79;;:::i;:::-;7722:119;7880:1;7905:63;7960:7;7951:6;7940:9;7936:22;7905:63;:::i;:::-;7895:73;;7851:127;7636:349;;;;:::o;7991:509::-;8060:6;8109:2;8097:9;8088:7;8084:23;8080:32;8077:119;;;8115:79;;:::i;:::-;8077:119;8263:1;8252:9;8248:17;8235:31;8293:18;8285:6;8282:30;8279:117;;;8315:79;;:::i;:::-;8279:117;8420:63;8475:7;8466:6;8455:9;8451:22;8420:63;:::i;:::-;8410:73;;8206:287;7991:509;;;;:::o;8506:329::-;8565:6;8614:2;8602:9;8593:7;8589:23;8585:32;8582:119;;;8620:79;;:::i;:::-;8582:119;8740:1;8765:53;8810:7;8801:6;8790:9;8786:22;8765:53;:::i;:::-;8755:63;;8711:117;8506:329;;;;:::o;8841:108::-;8918:24;8936:5;8918:24;:::i;:::-;8913:3;8906:37;8841:108;;:::o;8955:118::-;9042:24;9060:5;9042:24;:::i;:::-;9037:3;9030:37;8955:118;;:::o;9079:99::-;9150:21;9165:5;9150:21;:::i;:::-;9145:3;9138:34;9079:99;;:::o;9184:109::-;9265:21;9280:5;9265:21;:::i;:::-;9260:3;9253:34;9184:109;;:::o;9299:360::-;9385:3;9413:38;9445:5;9413:38;:::i;:::-;9467:70;9530:6;9525:3;9467:70;:::i;:::-;9460:77;;9546:52;9591:6;9586:3;9579:4;9572:5;9568:16;9546:52;:::i;:::-;9623:29;9645:6;9623:29;:::i;:::-;9618:3;9614:39;9607:46;;9389:270;9299:360;;;;:::o;9665:364::-;9753:3;9781:39;9814:5;9781:39;:::i;:::-;9836:71;9900:6;9895:3;9836:71;:::i;:::-;9829:78;;9916:52;9961:6;9956:3;9949:4;9942:5;9938:16;9916:52;:::i;:::-;9993:29;10015:6;9993:29;:::i;:::-;9988:3;9984:39;9977:46;;9757:272;9665:364;;;;:::o;10035:377::-;10141:3;10169:39;10202:5;10169:39;:::i;:::-;10224:89;10306:6;10301:3;10224:89;:::i;:::-;10217:96;;10322:52;10367:6;10362:3;10355:4;10348:5;10344:16;10322:52;:::i;:::-;10399:6;10394:3;10390:16;10383:23;;10145:267;10035:377;;;;:::o;10442:845::-;10545:3;10582:5;10576:12;10611:36;10637:9;10611:36;:::i;:::-;10663:89;10745:6;10740:3;10663:89;:::i;:::-;10656:96;;10783:1;10772:9;10768:17;10799:1;10794:137;;;;10945:1;10940:341;;;;10761:520;;10794:137;10878:4;10874:9;10863;10859:25;10854:3;10847:38;10914:6;10909:3;10905:16;10898:23;;10794:137;;10940:341;11007:38;11039:5;11007:38;:::i;:::-;11067:1;11081:154;11095:6;11092:1;11089:13;11081:154;;;11169:7;11163:14;11159:1;11154:3;11150:11;11143:35;11219:1;11210:7;11206:15;11195:26;;11117:4;11114:1;11110:12;11105:17;;11081:154;;;11264:6;11259:3;11255:16;11248:23;;10947:334;;10761:520;;10549:738;;10442:845;;;;:::o;11293:366::-;11435:3;11456:67;11520:2;11515:3;11456:67;:::i;:::-;11449:74;;11532:93;11621:3;11532:93;:::i;:::-;11650:2;11645:3;11641:12;11634:19;;11293:366;;;:::o;11665:::-;11807:3;11828:67;11892:2;11887:3;11828:67;:::i;:::-;11821:74;;11904:93;11993:3;11904:93;:::i;:::-;12022:2;12017:3;12013:12;12006:19;;11665:366;;;:::o;12037:::-;12179:3;12200:67;12264:2;12259:3;12200:67;:::i;:::-;12193:74;;12276:93;12365:3;12276:93;:::i;:::-;12394:2;12389:3;12385:12;12378:19;;12037:366;;;:::o;12409:::-;12551:3;12572:67;12636:2;12631:3;12572:67;:::i;:::-;12565:74;;12648:93;12737:3;12648:93;:::i;:::-;12766:2;12761:3;12757:12;12750:19;;12409:366;;;:::o;12781:::-;12923:3;12944:67;13008:2;13003:3;12944:67;:::i;:::-;12937:74;;13020:93;13109:3;13020:93;:::i;:::-;13138:2;13133:3;13129:12;13122:19;;12781:366;;;:::o;13153:::-;13295:3;13316:67;13380:2;13375:3;13316:67;:::i;:::-;13309:74;;13392:93;13481:3;13392:93;:::i;:::-;13510:2;13505:3;13501:12;13494:19;;13153:366;;;:::o;13525:::-;13667:3;13688:67;13752:2;13747:3;13688:67;:::i;:::-;13681:74;;13764:93;13853:3;13764:93;:::i;:::-;13882:2;13877:3;13873:12;13866:19;;13525:366;;;:::o;13897:::-;14039:3;14060:67;14124:2;14119:3;14060:67;:::i;:::-;14053:74;;14136:93;14225:3;14136:93;:::i;:::-;14254:2;14249:3;14245:12;14238:19;;13897:366;;;:::o;14269:::-;14411:3;14432:67;14496:2;14491:3;14432:67;:::i;:::-;14425:74;;14508:93;14597:3;14508:93;:::i;:::-;14626:2;14621:3;14617:12;14610:19;;14269:366;;;:::o;14711:697::-;14870:4;14865:3;14861:14;14957:4;14950:5;14946:16;14940:23;14976:63;15033:4;15028:3;15024:14;15010:12;14976:63;:::i;:::-;14885:164;15141:4;15134:5;15130:16;15124:23;15160:61;15215:4;15210:3;15206:14;15192:12;15160:61;:::i;:::-;15059:172;15315:4;15308:5;15304:16;15298:23;15334:57;15385:4;15380:3;15376:14;15362:12;15334:57;:::i;:::-;15241:160;14839:569;14711:697;;:::o;15414:118::-;15501:24;15519:5;15501:24;:::i;:::-;15496:3;15489:37;15414:118;;:::o;15538:105::-;15613:23;15630:5;15613:23;:::i;:::-;15608:3;15601:36;15538:105;;:::o;15649:583::-;15871:3;15893:92;15981:3;15972:6;15893:92;:::i;:::-;15886:99;;16002:95;16093:3;16084:6;16002:95;:::i;:::-;15995:102;;16114:92;16202:3;16193:6;16114:92;:::i;:::-;16107:99;;16223:3;16216:10;;15649:583;;;;;;:::o;16238:222::-;16331:4;16369:2;16358:9;16354:18;16346:26;;16382:71;16450:1;16439:9;16435:17;16426:6;16382:71;:::i;:::-;16238:222;;;;:::o;16466:640::-;16661:4;16699:3;16688:9;16684:19;16676:27;;16713:71;16781:1;16770:9;16766:17;16757:6;16713:71;:::i;:::-;16794:72;16862:2;16851:9;16847:18;16838:6;16794:72;:::i;:::-;16876;16944:2;16933:9;16929:18;16920:6;16876:72;:::i;:::-;16995:9;16989:4;16985:20;16980:2;16969:9;16965:18;16958:48;17023:76;17094:4;17085:6;17023:76;:::i;:::-;17015:84;;16466:640;;;;;;;:::o;17112:210::-;17199:4;17237:2;17226:9;17222:18;17214:26;;17250:65;17312:1;17301:9;17297:17;17288:6;17250:65;:::i;:::-;17112:210;;;;:::o;17328:313::-;17441:4;17479:2;17468:9;17464:18;17456:26;;17528:9;17522:4;17518:20;17514:1;17503:9;17499:17;17492:47;17556:78;17629:4;17620:6;17556:78;:::i;:::-;17548:86;;17328:313;;;;:::o;17647:419::-;17813:4;17851:2;17840:9;17836:18;17828:26;;17900:9;17894:4;17890:20;17886:1;17875:9;17871:17;17864:47;17928:131;18054:4;17928:131;:::i;:::-;17920:139;;17647:419;;;:::o;18072:::-;18238:4;18276:2;18265:9;18261:18;18253:26;;18325:9;18319:4;18315:20;18311:1;18300:9;18296:17;18289:47;18353:131;18479:4;18353:131;:::i;:::-;18345:139;;18072:419;;;:::o;18497:::-;18663:4;18701:2;18690:9;18686:18;18678:26;;18750:9;18744:4;18740:20;18736:1;18725:9;18721:17;18714:47;18778:131;18904:4;18778:131;:::i;:::-;18770:139;;18497:419;;;:::o;18922:::-;19088:4;19126:2;19115:9;19111:18;19103:26;;19175:9;19169:4;19165:20;19161:1;19150:9;19146:17;19139:47;19203:131;19329:4;19203:131;:::i;:::-;19195:139;;18922:419;;;:::o;19347:::-;19513:4;19551:2;19540:9;19536:18;19528:26;;19600:9;19594:4;19590:20;19586:1;19575:9;19571:17;19564:47;19628:131;19754:4;19628:131;:::i;:::-;19620:139;;19347:419;;;:::o;19772:::-;19938:4;19976:2;19965:9;19961:18;19953:26;;20025:9;20019:4;20015:20;20011:1;20000:9;19996:17;19989:47;20053:131;20179:4;20053:131;:::i;:::-;20045:139;;19772:419;;;:::o;20197:::-;20363:4;20401:2;20390:9;20386:18;20378:26;;20450:9;20444:4;20440:20;20436:1;20425:9;20421:17;20414:47;20478:131;20604:4;20478:131;:::i;:::-;20470:139;;20197:419;;;:::o;20622:::-;20788:4;20826:2;20815:9;20811:18;20803:26;;20875:9;20869:4;20865:20;20861:1;20850:9;20846:17;20839:47;20903:131;21029:4;20903:131;:::i;:::-;20895:139;;20622:419;;;:::o;21047:::-;21213:4;21251:2;21240:9;21236:18;21228:26;;21300:9;21294:4;21290:20;21286:1;21275:9;21271:17;21264:47;21328:131;21454:4;21328:131;:::i;:::-;21320:139;;21047:419;;;:::o;21472:346::-;21627:4;21665:2;21654:9;21650:18;21642:26;;21678:133;21808:1;21797:9;21793:17;21784:6;21678:133;:::i;:::-;21472:346;;;;:::o;21824:222::-;21917:4;21955:2;21944:9;21940:18;21932:26;;21968:71;22036:1;22025:9;22021:17;22012:6;21968:71;:::i;:::-;21824:222;;;;:::o;22052:129::-;22086:6;22113:20;;:::i;:::-;22103:30;;22142:33;22170:4;22162:6;22142:33;:::i;:::-;22052:129;;;:::o;22187:75::-;22220:6;22253:2;22247:9;22237:19;;22187:75;:::o;22268:311::-;22345:4;22435:18;22427:6;22424:30;22421:56;;;22457:18;;:::i;:::-;22421:56;22507:4;22499:6;22495:17;22487:25;;22567:4;22561;22557:15;22549:23;;22268:311;;;:::o;22585:307::-;22646:4;22736:18;22728:6;22725:30;22722:56;;;22758:18;;:::i;:::-;22722:56;22796:29;22818:6;22796:29;:::i;:::-;22788:37;;22880:4;22874;22870:15;22862:23;;22585:307;;;:::o;22898:308::-;22960:4;23050:18;23042:6;23039:30;23036:56;;;23072:18;;:::i;:::-;23036:56;23110:29;23132:6;23110:29;:::i;:::-;23102:37;;23194:4;23188;23184:15;23176:23;;22898:308;;;:::o;23212:141::-;23261:4;23284:3;23276:11;;23307:3;23304:1;23297:14;23341:4;23338:1;23328:18;23320:26;;23212:141;;;:::o;23359:98::-;23410:6;23444:5;23438:12;23428:22;;23359:98;;;:::o;23463:99::-;23515:6;23549:5;23543:12;23533:22;;23463:99;;;:::o;23568:168::-;23651:11;23685:6;23680:3;23673:19;23725:4;23720:3;23716:14;23701:29;;23568:168;;;;:::o;23742:169::-;23826:11;23860:6;23855:3;23848:19;23900:4;23895:3;23891:14;23876:29;;23742:169;;;;:::o;23917:148::-;24019:11;24056:3;24041:18;;23917:148;;;;:::o;24071:305::-;24111:3;24130:20;24148:1;24130:20;:::i;:::-;24125:25;;24164:20;24182:1;24164:20;:::i;:::-;24159:25;;24318:1;24250:66;24246:74;24243:1;24240:81;24237:107;;;24324:18;;:::i;:::-;24237:107;24368:1;24365;24361:9;24354:16;;24071:305;;;;:::o;24382:185::-;24422:1;24439:20;24457:1;24439:20;:::i;:::-;24434:25;;24473:20;24491:1;24473:20;:::i;:::-;24468:25;;24512:1;24502:35;;24517:18;;:::i;:::-;24502:35;24559:1;24556;24552:9;24547:14;;24382:185;;;;:::o;24573:348::-;24613:7;24636:20;24654:1;24636:20;:::i;:::-;24631:25;;24670:20;24688:1;24670:20;:::i;:::-;24665:25;;24858:1;24790:66;24786:74;24783:1;24780:81;24775:1;24768:9;24761:17;24757:105;24754:131;;;24865:18;;:::i;:::-;24754:131;24913:1;24910;24906:9;24895:20;;24573:348;;;;:::o;24927:191::-;24967:4;24987:20;25005:1;24987:20;:::i;:::-;24982:25;;25021:20;25039:1;25021:20;:::i;:::-;25016:25;;25060:1;25057;25054:8;25051:34;;;25065:18;;:::i;:::-;25051:34;25110:1;25107;25103:9;25095:17;;24927:191;;;;:::o;25124:96::-;25161:7;25190:24;25208:5;25190:24;:::i;:::-;25179:35;;25124:96;;;:::o;25226:90::-;25260:7;25303:5;25296:13;25289:21;25278:32;;25226:90;;;:::o;25322:149::-;25358:7;25398:66;25391:5;25387:78;25376:89;;25322:149;;;:::o;25477:126::-;25514:7;25554:42;25547:5;25543:54;25532:65;;25477:126;;;:::o;25609:77::-;25646:7;25675:5;25664:16;;25609:77;;;:::o;25692:101::-;25728:7;25768:18;25761:5;25757:30;25746:41;;25692:101;;;:::o;25799:154::-;25883:6;25878:3;25873;25860:30;25945:1;25936:6;25931:3;25927:16;25920:27;25799:154;;;:::o;25959:307::-;26027:1;26037:113;26051:6;26048:1;26045:13;26037:113;;;26136:1;26131:3;26127:11;26121:18;26117:1;26112:3;26108:11;26101:39;26073:2;26070:1;26066:10;26061:15;;26037:113;;;26168:6;26165:1;26162:13;26159:101;;;26248:1;26239:6;26234:3;26230:16;26223:27;26159:101;26008:258;25959:307;;;:::o;26272:320::-;26316:6;26353:1;26347:4;26343:12;26333:22;;26400:1;26394:4;26390:12;26421:18;26411:81;;26477:4;26469:6;26465:17;26455:27;;26411:81;26539:2;26531:6;26528:14;26508:18;26505:38;26502:84;;;26558:18;;:::i;:::-;26502:84;26323:269;26272:320;;;:::o;26598:281::-;26681:27;26703:4;26681:27;:::i;:::-;26673:6;26669:40;26811:6;26799:10;26796:22;26775:18;26763:10;26760:34;26757:62;26754:88;;;26822:18;;:::i;:::-;26754:88;26862:10;26858:2;26851:22;26641:238;26598:281;;:::o;26885:233::-;26924:3;26947:24;26965:5;26947:24;:::i;:::-;26938:33;;26993:66;26986:5;26983:77;26980:103;;;27063:18;;:::i;:::-;26980:103;27110:1;27103:5;27099:13;27092:20;;26885:233;;;:::o;27124:176::-;27156:1;27173:20;27191:1;27173:20;:::i;:::-;27168:25;;27207:20;27225:1;27207:20;:::i;:::-;27202:25;;27246:1;27236:35;;27251:18;;:::i;:::-;27236:35;27292:1;27289;27285:9;27280:14;;27124:176;;;;:::o;27306:180::-;27354:77;27351:1;27344:88;27451:4;27448:1;27441:15;27475:4;27472:1;27465:15;27492:180;27540:77;27537:1;27530:88;27637:4;27634:1;27627:15;27661:4;27658:1;27651:15;27678:180;27726:77;27723:1;27716:88;27823:4;27820:1;27813:15;27847:4;27844:1;27837:15;27864:180;27912:77;27909:1;27902:88;28009:4;28006:1;27999:15;28033:4;28030:1;28023:15;28050:180;28098:77;28095:1;28088:88;28195:4;28192:1;28185:15;28219:4;28216:1;28209:15;28236:117;28345:1;28342;28335:12;28359:117;28468:1;28465;28458:12;28482:117;28591:1;28588;28581:12;28605:117;28714:1;28711;28704:12;28728:117;28837:1;28834;28827:12;28851:102;28892:6;28943:2;28939:7;28934:2;28927:5;28923:14;28919:28;28909:38;;28851:102;;;:::o;28959:225::-;29099:34;29095:1;29087:6;29083:14;29076:58;29168:8;29163:2;29155:6;29151:15;29144:33;28959:225;:::o;29190:165::-;29330:17;29326:1;29318:6;29314:14;29307:41;29190:165;:::o;29361:175::-;29501:27;29497:1;29489:6;29485:14;29478:51;29361:175;:::o;29542:231::-;29682:34;29678:1;29670:6;29666:14;29659:58;29751:14;29746:2;29738:6;29734:15;29727:39;29542:231;:::o;29779:182::-;29919:34;29915:1;29907:6;29903:14;29896:58;29779:182;:::o;29967:172::-;30107:24;30103:1;30095:6;30091:14;30084:48;29967:172;:::o;30145:178::-;30285:30;30281:1;30273:6;30269:14;30262:54;30145:178;:::o;30329:169::-;30469:21;30465:1;30457:6;30453:14;30446:45;30329:169;:::o;30504:::-;30644:21;30640:1;30632:6;30628:14;30621:45;30504:169;:::o;30679:122::-;30752:24;30770:5;30752:24;:::i;:::-;30745:5;30742:35;30732:63;;30791:1;30788;30781:12;30732:63;30679:122;:::o;30807:116::-;30877:21;30892:5;30877:21;:::i;:::-;30870:5;30867:32;30857:60;;30913:1;30910;30903:12;30857:60;30807:116;:::o;30929:120::-;31001:23;31018:5;31001:23;:::i;:::-;30994:5;30991:34;30981:62;;31039:1;31036;31029:12;30981:62;30929:120;:::o;31055:122::-;31128:24;31146:5;31128:24;:::i;:::-;31121:5;31118:35;31108:63;;31167:1;31164;31157:12;31108:63;31055:122;:::o

Swarm Source

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