ETH Price: $2,714.97 (-1.86%)

Token

Arab Ape Yacht Club (AAYC)
 

Overview

Max Total Supply

143 AAYC

Holders

14

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A
Filtered by Token Holder
xbhrt.eth
Balance
1 AAYC
0x14ff95dbb15ef06c135d048fb417eec6ef080914
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:
ArabApeYachtClub

Compiler Version
v0.8.13+commit.abaa5c0e

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

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

// SPDX-License-Identifier: MIT
// File: @openzeppelin/contracts/utils/introspection/IERC165.sol


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

pragma solidity ^0.8.0;

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

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


// OpenZeppelin Contracts (last updated v4.7.0) (token/ERC721/IERC721.sol)

pragma solidity ^0.8.0;


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

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

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

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

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

    /**
     * @dev Safely transfers `tokenId` token from `from` to `to`.
     *
     * 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;

    /**
     * @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 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 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 the account approved for `tokenId` token.
     *
     * Requirements:
     *
     * - `tokenId` must exist.
     */
    function getApproved(uint256 tokenId) external view returns (address operator);

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

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


// OpenZeppelin Contracts v4.4.1 (token/ERC721/extensions/IERC721Metadata.sol)

pragma solidity ^0.8.0;


/**
 * @title ERC-721 Non-Fungible Token Standard, optional metadata extension
 * @dev See https://eips.ethereum.org/EIPS/eip-721
 */
interface IERC721Metadata is IERC721 {
    /**
     * @dev Returns the token collection name.
     */
    function name() external view returns (string memory);

    /**
     * @dev Returns the token collection symbol.
     */
    function symbol() external view returns (string memory);

    /**
     * @dev Returns the Uniform Resource Identifier (URI) for `tokenId` token.
     */
    function tokenURI(uint256 tokenId) external view returns (string memory);
}

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


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

pragma solidity ^0.8.0;


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

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


// OpenZeppelin Contracts (last updated v4.6.0) (token/ERC721/IERC721Receiver.sol)

pragma solidity ^0.8.0;

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

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


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

pragma solidity ^0.8.1;

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

        return account.code.length > 0;
    }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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


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

pragma solidity ^0.8.0;

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

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

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


// OpenZeppelin Contracts (last updated v4.7.0) (utils/Strings.sol)

pragma solidity ^0.8.0;

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

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

    /**
     * @dev Converts an `address` with fixed length of 20 bytes to its not checksummed ASCII `string` hexadecimal representation.
     */
    function toHexString(address addr) internal pure returns (string memory) {
        return toHexString(uint256(uint160(addr)), _ADDRESS_LENGTH);
    }
}

// File: https://github.com/ldcnft/aayc/blob/main/source.sol



pragma solidity ^0.8.13;









pragma solidity ^0.8.4;








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

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

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

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

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

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

    // Token name
    string private _name;

    // Token symbol
    string private _symbol;

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

        _approve(to, tokenId, owner);
    }

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

        return _tokenApprovals[tokenId];
    }

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

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

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

    /**
     * @dev See {IERC721-transferFrom}.
     */
    function transferFrom(
        address from,
        address to,
        uint256 tokenId
    ) public virtual override {
        _transfer(from, to, tokenId);
    }

    /**
     * @dev See {IERC721-safeTransferFrom}.
     */
    function safeTransferFrom(
        address from,
        address to,
        uint256 tokenId
    ) public virtual override {
        safeTransferFrom(from, to, tokenId, '');
    }

    /**
     * @dev See {IERC721-safeTransferFrom}.
     */
    function safeTransferFrom(
        address from,
        address to,
        uint256 tokenId,
        bytes memory _data
    ) public virtual override {
        _transfer(from, to, tokenId);
        if (to.isContract() && !_checkContractOnERC721Received(from, to, tokenId, _data)) {
            revert TransferToNonERC721ReceiverImplementer();
        }
    }

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

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

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

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

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

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

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

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

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

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

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

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

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

        _beforeTokenTransfers(from, to, tokenId, 1);

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

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

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

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

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

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

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

        address from = prevOwnership.addr;

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

            if (!isApprovedOrOwner) revert TransferCallerNotOwnerNorApproved();
        }

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

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

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

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

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

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

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

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

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

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

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

abstract contract Ownable is Context {
    address private _owner;

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

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

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

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

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

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

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

interface IOperatorFilterRegistry {
    function isOperatorAllowed(address registrant, address operator) external view returns (bool);
    function register(address registrant) external;
    function registerAndSubscribe(address registrant, address subscription) external;
    function registerAndCopyEntries(address registrant, address registrantToCopy) external;
    function updateOperator(address registrant, address operator, bool filtered) external;
    function updateOperators(address registrant, address[] calldata operators, bool filtered) external;
    function updateCodeHash(address registrant, bytes32 codehash, bool filtered) external;
    function updateCodeHashes(address registrant, bytes32[] calldata codeHashes, bool filtered) external;
    function subscribe(address registrant, address registrantToSubscribe) external;
    function unsubscribe(address registrant, bool copyExistingEntries) external;
    function subscriptionOf(address addr) external returns (address registrant);
    function subscribers(address registrant) external returns (address[] memory);
    function subscriberAt(address registrant, uint256 index) external returns (address);
    function copyEntriesOf(address registrant, address registrantToCopy) external;
    function isOperatorFiltered(address registrant, address operator) external returns (bool);
    function isCodeHashOfFiltered(address registrant, address operatorWithCode) external returns (bool);
    function isCodeHashFiltered(address registrant, bytes32 codeHash) external returns (bool);
    function filteredOperators(address addr) external returns (address[] memory);
    function filteredCodeHashes(address addr) external returns (bytes32[] memory);
    function filteredOperatorAt(address registrant, uint256 index) external returns (address);
    function filteredCodeHashAt(address registrant, uint256 index) external returns (bytes32);
    function isRegistered(address addr) external returns (bool);
    function codeHashOf(address addr) external returns (bytes32);
}
pragma solidity ^0.8.13;



abstract contract OperatorFilterer {
    error OperatorNotAllowed(address operator);

    IOperatorFilterRegistry constant operatorFilterRegistry =
        IOperatorFilterRegistry(0x000000000000AAeB6D7670E522A718067333cd4E);

    constructor(address subscriptionOrRegistrantToCopy, bool subscribe) {
        // If an inheriting token contract is deployed to a network without the registry deployed, the modifier
        // will not revert, but the contract will need to be registered with the registry once it is deployed in
        // order for the modifier to filter addresses.
        if (address(operatorFilterRegistry).code.length > 0) {
            if (subscribe) {
                operatorFilterRegistry.registerAndSubscribe(address(this), subscriptionOrRegistrantToCopy);
            } else {
                if (subscriptionOrRegistrantToCopy != address(0)) {
                    operatorFilterRegistry.registerAndCopyEntries(address(this), subscriptionOrRegistrantToCopy);
                } else {
                    operatorFilterRegistry.register(address(this));
                }
            }
        }
    }

    modifier onlyAllowedOperator(address from) virtual {
        // Check registry code length to facilitate testing in environments without a deployed registry.
        if (address(operatorFilterRegistry).code.length > 0) {
            // Allow spending tokens from addresses with balance
            // Note that this still allows listings and marketplaces with escrow to transfer tokens if transferred
            // from an EOA.
            if (from == msg.sender) {
                _;
                return;
            }
            if (
                !(
                    operatorFilterRegistry.isOperatorAllowed(address(this), msg.sender)
                        && operatorFilterRegistry.isOperatorAllowed(address(this), from)
                )
            ) {
                revert OperatorNotAllowed(msg.sender);
            }
        }
        _;
    }
}
pragma solidity ^0.8.13;



abstract contract DefaultOperatorFilterer is OperatorFilterer {
    address constant DEFAULT_SUBSCRIPTION = address(0x3cc6CddA760b79bAfa08dF41ECFA224f810dCeB6);

    constructor() OperatorFilterer(DEFAULT_SUBSCRIPTION, true) {}
}

// File: contracts/main.sol



pragma solidity ^0.8.13;


  pragma solidity ^0.8.7;
  
  contract ArabApeYachtClub is ERC721A, DefaultOperatorFilterer , Ownable {
  using Strings for uint256;


  string private uriPrefix = "ipfs://bafybeiaii3w2w45h3gq5fz3hszqe26tcteydaco2baianb2wcoun3hwrpi/" ;
  string private uriSuffix = ".json";
  string public hiddenURL;

  
  

  uint256 public cost = 0.004 ether;
 
  

  uint16 public maxSupply = 8888;
  uint8 public maxMintAmountPerTx = 20;
  uint8 public maxFreeMintAmountPerWallet = 1;
                                                             
 
  bool public paused = false;
  bool public reveal = true;

   mapping (address => uint8) public NFTPerPublicAddress;

 
  
  
 
  

  constructor() ERC721A("Arab Ape Yacht Club", "AAYC") {
  }


  
 
  function mint(uint8 _mintAmount) external payable  {
     uint16 totalSupply = uint16(totalSupply());
     uint8 nft = NFTPerPublicAddress[msg.sender];
    require(totalSupply + _mintAmount <= maxSupply, "Exceeds max supply.");
    require(_mintAmount + nft <= maxMintAmountPerTx, "Exceeds max per transaction.");

    require(!paused, "The contract is paused!");
    
      if(nft >= maxFreeMintAmountPerWallet)
    {
    require(msg.value >= cost * _mintAmount, "Insufficient funds!");
    }
    else {
         uint8 costAmount = _mintAmount + nft;
        if(costAmount > maxFreeMintAmountPerWallet)
       {
        costAmount = costAmount - maxFreeMintAmountPerWallet;
        require(msg.value >= cost * costAmount, "Insufficient funds!");
       }
       
         
    }
    


    _safeMint(msg.sender , _mintAmount);

    NFTPerPublicAddress[msg.sender] = _mintAmount + nft;
     
     delete totalSupply;
     delete _mintAmount;
  }
  
  function Reserve(uint16 _mintAmount, address _receiver) external onlyOwner {
     uint16 totalSupply = uint16(totalSupply());
    require(totalSupply + _mintAmount <= maxSupply, "Exceeds max supply.");
     _safeMint(_receiver , _mintAmount);
     delete _mintAmount;
     delete _receiver;
     delete totalSupply;
  }

  function  Airdrop(uint8 _amountPerAddress, address[] calldata addresses) external onlyOwner {
     uint16 totalSupply = uint16(totalSupply());
     uint totalAmount =   _amountPerAddress * addresses.length;
    require(totalSupply + totalAmount <= maxSupply, "Exceeds max supply.");
     for (uint256 i = 0; i < addresses.length; i++) {
            _safeMint(addresses[i], _amountPerAddress);
        }

     delete _amountPerAddress;
     delete totalSupply;
  }

 

  function setMaxSupply(uint16 _maxSupply) external onlyOwner {
      maxSupply = _maxSupply;
  }



   
  function tokenURI(uint256 _tokenId)
    public
    view
    virtual
    override
    returns (string memory)
  {
    require(
      _exists(_tokenId),
      "ERC721Metadata: URI query for nonexistent token"
    );
    
  
if ( reveal == false)
{
    return hiddenURL;
}
    

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


 function setFreeMaxLimitPerAddress(uint8 _limit) external onlyOwner{
    maxFreeMintAmountPerWallet = _limit;
   delete _limit;

}

    
  

  function setUriPrefix(string memory _uriPrefix) external onlyOwner {
    uriPrefix = _uriPrefix;
  }
   function setHiddenUri(string memory _uriPrefix) external onlyOwner {
    hiddenURL = _uriPrefix;
  }


  function setPaused() external onlyOwner {
    paused = !paused;
   
  }

  function setCost(uint _cost) external onlyOwner{
      cost = _cost;

  }

 function setRevealed() external onlyOwner{
     reveal = !reveal;
 }

  function setMaxMintAmountPerTx(uint8 _maxtx) external onlyOwner{
      maxMintAmountPerTx = _maxtx;

  }

 

  function withdraw() external onlyOwner {
  uint _balance = address(this).balance;
     payable(msg.sender).transfer(_balance ); 
       
  }


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

    function transferFrom(address from, address to, uint256 tokenId) public override onlyAllowedOperator(from) {
        super.transferFrom(from, to, tokenId);
    }

    function safeTransferFrom(address from, address to, uint256 tokenId) public override onlyAllowedOperator(from) {
        super.safeTransferFrom(from, to, tokenId);
    }

    function safeTransferFrom(address from, address to, uint256 tokenId, bytes memory data)
        public
        override
        onlyAllowedOperator(from)
    {
        super.safeTransferFrom(from, to, tokenId, data);
    }
}

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":[{"internalType":"address","name":"operator","type":"address"}],"name":"OperatorNotAllowed","type":"error"},{"inputs":[],"name":"OwnerQueryForNonexistentToken","type":"error"},{"inputs":[],"name":"TransferCallerNotOwnerNorApproved","type":"error"},{"inputs":[],"name":"TransferFromIncorrectOwner","type":"error"},{"inputs":[],"name":"TransferToNonERC721ReceiverImplementer","type":"error"},{"inputs":[],"name":"TransferToZeroAddress","type":"error"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"approved","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[{"internalType":"uint8","name":"_amountPerAddress","type":"uint8"},{"internalType":"address[]","name":"addresses","type":"address[]"}],"name":"Airdrop","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"NFTPerPublicAddress","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint16","name":"_mintAmount","type":"uint16"},{"internalType":"address","name":"_receiver","type":"address"}],"name":"Reserve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"cost","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"hiddenURL","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxFreeMintAmountPerWallet","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxMintAmountPerTx","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxSupply","outputs":[{"internalType":"uint16","name":"","type":"uint16"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint8","name":"_mintAmount","type":"uint8"}],"name":"mint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"paused","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"reveal","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_cost","type":"uint256"}],"name":"setCost","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint8","name":"_limit","type":"uint8"}],"name":"setFreeMaxLimitPerAddress","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_uriPrefix","type":"string"}],"name":"setHiddenUri","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint8","name":"_maxtx","type":"uint8"}],"name":"setMaxMintAmountPerTx","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint16","name":"_maxSupply","type":"uint16"}],"name":"setMaxSupply","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"setPaused","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"setRevealed","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_uriPrefix","type":"string"}],"name":"setUriPrefix","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"withdraw","outputs":[],"stateMutability":"nonpayable","type":"function"}]

608060405260405180608001604052806043815260200162004e93604391396009908051906020019062000035929190620004e7565b506040518060400160405280600581526020017f2e6a736f6e000000000000000000000000000000000000000000000000000000815250600a908051906020019062000083929190620004e7565b50660e35fa931a0000600c556122b8600d60006101000a81548161ffff021916908361ffff1602179055506014600d60026101000a81548160ff021916908360ff1602179055506001600d60036101000a81548160ff021916908360ff1602179055506000600d60046101000a81548160ff0219169083151502179055506001600d60056101000a81548160ff0219169083151502179055503480156200012957600080fd5b50733cc6cdda760b79bafa08df41ecfa224f810dceb660016040518060400160405280601381526020017f417261622041706520596163687420436c7562000000000000000000000000008152506040518060400160405280600481526020017f41415943000000000000000000000000000000000000000000000000000000008152508160029080519060200190620001c5929190620004e7565b508060039080519060200190620001de929190620004e7565b50620001ef6200041460201b60201c565b600081905550505060006daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff163b1115620003ec578015620002b2576daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff16637d3e3dbe30846040518363ffffffff1660e01b815260040162000278929190620005dc565b600060405180830381600087803b1580156200029357600080fd5b505af1158015620002a8573d6000803e3d6000fd5b50505050620003eb565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16146200036c576daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff1663a0af290330846040518363ffffffff1660e01b815260040162000332929190620005dc565b600060405180830381600087803b1580156200034d57600080fd5b505af115801562000362573d6000803e3d6000fd5b50505050620003ea565b6daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff16634420e486306040518263ffffffff1660e01b8152600401620003b5919062000609565b600060405180830381600087803b158015620003d057600080fd5b505af1158015620003e5573d6000803e3d6000fd5b505050505b5b5b50506200040e620004026200041960201b60201c565b6200042160201b60201c565b6200068a565b600090565b600033905090565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b828054620004f59062000655565b90600052602060002090601f01602090048101928262000519576000855562000565565b82601f106200053457805160ff191683800117855562000565565b8280016001018555821562000565579182015b828111156200056457825182559160200191906001019062000547565b5b50905062000574919062000578565b5090565b5b808211156200059357600081600090555060010162000579565b5090565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000620005c48262000597565b9050919050565b620005d681620005b7565b82525050565b6000604082019050620005f36000830185620005cb565b620006026020830184620005cb565b9392505050565b6000602082019050620006206000830184620005cb565b92915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b600060028204905060018216806200066e57607f821691505b60208210810362000684576200068362000626565b5b50919050565b6147f9806200069a6000396000f3fe60806040526004361061021a5760003560e01c80636ecd230611610123578063aa062290116100ab578063e94053c71161006f578063e94053c714610760578063e985e9c51461079d578063eef440af146107da578063f2fde38b14610805578063f8bf51721461082e5761021a565b8063aa0622901461067d578063b88d4fde146106a6578063c87b56dd146106cf578063cffb6e201461070c578063d5abeb01146107355761021a565b80638da5cb5b116100f25780638da5cb5b146105a857806394354fd0146105d357806395d89b41146105fe578063a22cb46514610629578063a475b5dd146106525761021a565b80636ecd23061461050f57806370a082311461052b578063715018a6146105685780637ec4a6591461057f5761021a565b80632f6f98e1116101a657806342842e0e1161017557806342842e0e1461042c57806344a0d68a146104555780634d9c18481461047e5780635c975abb146104a75780636352211e146104d25761021a565b80632f6f98e1146103be57806337a66d85146103e75780633bd64968146103fe5780633ccfd60b146104155761021a565b8063095ea7b3116101ed578063095ea7b3146102ed5780631067fcc71461031657806313faede61461033f57806318160ddd1461036a57806323b872dd146103955761021a565b806301ffc9a71461021f57806306421c2f1461025c57806306fdde0314610285578063081812fc146102b0575b600080fd5b34801561022b57600080fd5b50610246600480360381019061024191906136b4565b610859565b60405161025391906136fc565b60405180910390f35b34801561026857600080fd5b50610283600480360381019061027e9190613751565b61093b565b005b34801561029157600080fd5b5061029a6109d7565b6040516102a79190613817565b60405180910390f35b3480156102bc57600080fd5b506102d760048036038101906102d2919061386f565b610a69565b6040516102e491906138dd565b60405180910390f35b3480156102f957600080fd5b50610314600480360381019061030f9190613924565b610ae5565b005b34801561032257600080fd5b5061033d60048036038101906103389190613a99565b610bef565b005b34801561034b57600080fd5b50610354610c85565b6040516103619190613af1565b60405180910390f35b34801561037657600080fd5b5061037f610c8b565b60405161038c9190613af1565b60405180910390f35b3480156103a157600080fd5b506103bc60048036038101906103b79190613b0c565b610ca2565b005b3480156103ca57600080fd5b506103e560048036038101906103e09190613b5f565b610e84565b005b3480156103f357600080fd5b506103fc610f91565b005b34801561040a57600080fd5b50610413611039565b005b34801561042157600080fd5b5061042a6110e1565b005b34801561043857600080fd5b50610453600480360381019061044e9190613b0c565b6111ac565b005b34801561046157600080fd5b5061047c6004803603810190610477919061386f565b61138e565b005b34801561048a57600080fd5b506104a560048036038101906104a09190613bd8565b611414565b005b3480156104b357600080fd5b506104bc6114b2565b6040516104c991906136fc565b60405180910390f35b3480156104de57600080fd5b506104f960048036038101906104f4919061386f565b6114c5565b60405161050691906138dd565b60405180910390f35b61052960048036038101906105249190613bd8565b6114db565b005b34801561053757600080fd5b50610552600480360381019061054d9190613c05565b6117e5565b60405161055f9190613af1565b60405180910390f35b34801561057457600080fd5b5061057d6118b4565b005b34801561058b57600080fd5b506105a660048036038101906105a19190613a99565b61193c565b005b3480156105b457600080fd5b506105bd6119d2565b6040516105ca91906138dd565b60405180910390f35b3480156105df57600080fd5b506105e86119fc565b6040516105f59190613c41565b60405180910390f35b34801561060a57600080fd5b50610613611a0f565b6040516106209190613817565b60405180910390f35b34801561063557600080fd5b50610650600480360381019061064b9190613c88565b611aa1565b005b34801561065e57600080fd5b50610667611c18565b60405161067491906136fc565b60405180910390f35b34801561068957600080fd5b506106a4600480360381019061069f9190613bd8565b611c2b565b005b3480156106b257600080fd5b506106cd60048036038101906106c89190613d69565b611cc5565b005b3480156106db57600080fd5b506106f660048036038101906106f1919061386f565b611eaa565b6040516107039190613817565b60405180910390f35b34801561071857600080fd5b50610733600480360381019061072e9190613e4c565b612002565b005b34801561074157600080fd5b5061074a61216b565b6040516107579190613ebb565b60405180910390f35b34801561076c57600080fd5b5061078760048036038101906107829190613c05565b61217f565b6040516107949190613c41565b60405180910390f35b3480156107a957600080fd5b506107c460048036038101906107bf9190613ed6565b61219f565b6040516107d191906136fc565b60405180910390f35b3480156107e657600080fd5b506107ef612233565b6040516107fc9190613817565b60405180910390f35b34801561081157600080fd5b5061082c60048036038101906108279190613c05565b6122c1565b005b34801561083a57600080fd5b506108436123b8565b6040516108509190613c41565b60405180910390f35b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916148061092457507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b806109345750610933826123cb565b5b9050919050565b610943612435565b73ffffffffffffffffffffffffffffffffffffffff166109616119d2565b73ffffffffffffffffffffffffffffffffffffffff16146109b7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016109ae90613f62565b60405180910390fd5b80600d60006101000a81548161ffff021916908361ffff16021790555050565b6060600280546109e690613fb1565b80601f0160208091040260200160405190810160405280929190818152602001828054610a1290613fb1565b8015610a5f5780601f10610a3457610100808354040283529160200191610a5f565b820191906000526020600020905b815481529060010190602001808311610a4257829003601f168201915b5050505050905090565b6000610a748261243d565b610aaa576040517fcf4700e400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6006600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b6000610af0826114c5565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603610b57576040517f943f7b8c00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16610b76612435565b73ffffffffffffffffffffffffffffffffffffffff1614158015610ba85750610ba681610ba1612435565b61219f565b155b15610bdf576040517fcfb3b94200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b610bea83838361248b565b505050565b610bf7612435565b73ffffffffffffffffffffffffffffffffffffffff16610c156119d2565b73ffffffffffffffffffffffffffffffffffffffff1614610c6b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c6290613f62565b60405180910390fd5b80600b9080519060200190610c81929190613562565b5050565b600c5481565b6000610c9561253d565b6001546000540303905090565b8260006daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff163b1115610e72573373ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603610d1457610d0f848484612542565b610e7e565b6daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff1663c617113430336040518363ffffffff1660e01b8152600401610d5d929190613fe2565b602060405180830381865afa158015610d7a573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610d9e9190614020565b8015610e3057506daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff1663c617113430836040518363ffffffff1660e01b8152600401610dee929190613fe2565b602060405180830381865afa158015610e0b573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610e2f9190614020565b5b610e7157336040517fede71dcc000000000000000000000000000000000000000000000000000000008152600401610e6891906138dd565b60405180910390fd5b5b610e7d848484612542565b5b50505050565b610e8c612435565b73ffffffffffffffffffffffffffffffffffffffff16610eaa6119d2565b73ffffffffffffffffffffffffffffffffffffffff1614610f00576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ef790613f62565b60405180910390fd5b6000610f0a610c8b565b9050600d60009054906101000a900461ffff1661ffff168382610f2d919061407c565b61ffff161115610f72576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f6990614100565b60405180910390fd5b610f80828461ffff16612552565b600092506000915060009050505050565b610f99612435565b73ffffffffffffffffffffffffffffffffffffffff16610fb76119d2565b73ffffffffffffffffffffffffffffffffffffffff161461100d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161100490613f62565b60405180910390fd5b600d60049054906101000a900460ff1615600d60046101000a81548160ff021916908315150217905550565b611041612435565b73ffffffffffffffffffffffffffffffffffffffff1661105f6119d2565b73ffffffffffffffffffffffffffffffffffffffff16146110b5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110ac90613f62565b60405180910390fd5b600d60059054906101000a900460ff1615600d60056101000a81548160ff021916908315150217905550565b6110e9612435565b73ffffffffffffffffffffffffffffffffffffffff166111076119d2565b73ffffffffffffffffffffffffffffffffffffffff161461115d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161115490613f62565b60405180910390fd5b60004790503373ffffffffffffffffffffffffffffffffffffffff166108fc829081150290604051600060405180830381858888f193505050501580156111a8573d6000803e3d6000fd5b5050565b8260006daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff163b111561137c573373ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff160361121e57611219848484612570565b611388565b6daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff1663c617113430336040518363ffffffff1660e01b8152600401611267929190613fe2565b602060405180830381865afa158015611284573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906112a89190614020565b801561133a57506daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff1663c617113430836040518363ffffffff1660e01b81526004016112f8929190613fe2565b602060405180830381865afa158015611315573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906113399190614020565b5b61137b57336040517fede71dcc00000000000000000000000000000000000000000000000000000000815260040161137291906138dd565b60405180910390fd5b5b611387848484612570565b5b50505050565b611396612435565b73ffffffffffffffffffffffffffffffffffffffff166113b46119d2565b73ffffffffffffffffffffffffffffffffffffffff161461140a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161140190613f62565b60405180910390fd5b80600c8190555050565b61141c612435565b73ffffffffffffffffffffffffffffffffffffffff1661143a6119d2565b73ffffffffffffffffffffffffffffffffffffffff1614611490576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161148790613f62565b60405180910390fd5b80600d60036101000a81548160ff021916908360ff1602179055506000905050565b600d60049054906101000a900460ff1681565b60006114d082612590565b600001519050919050565b60006114e5610c8b565b90506000600e60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff169050600d60009054906101000a900461ffff1661ffff168360ff168361155c919061407c565b61ffff1611156115a1576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161159890614100565b60405180910390fd5b600d60029054906101000a900460ff1660ff1681846115c09190614120565b60ff161115611604576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115fb906141a3565b60405180910390fd5b600d60049054906101000a900460ff1615611654576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161164b9061420f565b60405180910390fd5b600d60039054906101000a900460ff1660ff168160ff16106116c8578260ff16600c54611681919061422f565b3410156116c3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116ba906142d5565b60405180910390fd5b611768565b600081846116d69190614120565b9050600d60039054906101000a900460ff1660ff168160ff16111561176657600d60039054906101000a900460ff168161171091906142f5565b90508060ff16600c54611723919061422f565b341015611765576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161175c906142d5565b60405180910390fd5b5b505b611775338460ff16612552565b80836117819190614120565b600e60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff021916908360ff1602179055506000915060009250505050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff160361184c576040517f8f4eb60400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600560008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160009054906101000a900467ffffffffffffffff1667ffffffffffffffff169050919050565b6118bc612435565b73ffffffffffffffffffffffffffffffffffffffff166118da6119d2565b73ffffffffffffffffffffffffffffffffffffffff1614611930576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161192790613f62565b60405180910390fd5b61193a600061281f565b565b611944612435565b73ffffffffffffffffffffffffffffffffffffffff166119626119d2565b73ffffffffffffffffffffffffffffffffffffffff16146119b8576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016119af90613f62565b60405180910390fd5b80600990805190602001906119ce929190613562565b5050565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b600d60029054906101000a900460ff1681565b606060038054611a1e90613fb1565b80601f0160208091040260200160405190810160405280929190818152602001828054611a4a90613fb1565b8015611a975780601f10611a6c57610100808354040283529160200191611a97565b820191906000526020600020905b815481529060010190602001808311611a7a57829003601f168201915b5050505050905090565b611aa9612435565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603611b0d576040517fb06307db00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8060076000611b1a612435565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff16611bc7612435565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c3183604051611c0c91906136fc565b60405180910390a35050565b600d60059054906101000a900460ff1681565b611c33612435565b73ffffffffffffffffffffffffffffffffffffffff16611c516119d2565b73ffffffffffffffffffffffffffffffffffffffff1614611ca7576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c9e90613f62565b60405180910390fd5b80600d60026101000a81548160ff021916908360ff16021790555050565b8360006daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff163b1115611e96573373ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603611d3857611d33858585856128e5565b611ea3565b6daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff1663c617113430336040518363ffffffff1660e01b8152600401611d81929190613fe2565b602060405180830381865afa158015611d9e573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611dc29190614020565b8015611e5457506daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff1663c617113430836040518363ffffffff1660e01b8152600401611e12929190613fe2565b602060405180830381865afa158015611e2f573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611e539190614020565b5b611e9557336040517fede71dcc000000000000000000000000000000000000000000000000000000008152600401611e8c91906138dd565b60405180910390fd5b5b611ea2858585856128e5565b5b5050505050565b6060611eb58261243d565b611ef4576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611eeb9061439b565b60405180910390fd5b60001515600d60059054906101000a900460ff16151503611fa157600b8054611f1c90613fb1565b80601f0160208091040260200160405190810160405280929190818152602001828054611f4890613fb1565b8015611f955780601f10611f6a57610100808354040283529160200191611f95565b820191906000526020600020905b815481529060010190602001808311611f7857829003601f168201915b50505050509050611ffd565b6000611fab612961565b90506000815111611fcb5760405180602001604052806000815250611ff9565b80611fd5846129f3565b600a604051602001611fe99392919061448b565b6040516020818303038152906040525b9150505b919050565b61200a612435565b73ffffffffffffffffffffffffffffffffffffffff166120286119d2565b73ffffffffffffffffffffffffffffffffffffffff161461207e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161207590613f62565b60405180910390fd5b6000612088610c8b565b90506000838390508560ff1661209e919061422f565b9050600d60009054906101000a900461ffff1661ffff16818361ffff166120c591906144bc565b1115612106576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016120fd90614100565b60405180910390fd5b60005b8484905081101561215b5761214885858381811061212a57612129614512565b5b905060200201602081019061213f9190613c05565b8760ff16612552565b808061215390614541565b915050612109565b5060009450600091505050505050565b600d60009054906101000a900461ffff1681565b600e6020528060005260406000206000915054906101000a900460ff1681565b6000600760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b600b805461224090613fb1565b80601f016020809104026020016040519081016040528092919081815260200182805461226c90613fb1565b80156122b95780601f1061228e576101008083540402835291602001916122b9565b820191906000526020600020905b81548152906001019060200180831161229c57829003601f168201915b505050505081565b6122c9612435565b73ffffffffffffffffffffffffffffffffffffffff166122e76119d2565b73ffffffffffffffffffffffffffffffffffffffff161461233d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161233490613f62565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16036123ac576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016123a3906145fb565b60405180910390fd5b6123b58161281f565b50565b600d60039054906101000a900460ff1681565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b600033905090565b60008161244861253d565b11158015612457575060005482105b8015612484575060046000838152602001908152602001600020600001601c9054906101000a900460ff16155b9050919050565b826006600084815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b600090565b61254d838383612b53565b505050565b61256c828260405180602001604052806000815250613007565b5050565b61258b83838360405180602001604052806000815250611cc5565b505050565b6125986135e8565b6000829050806125a661253d565b111580156125b5575060005481105b156127e8576000600460008381526020019081526020016000206040518060600160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815260200160008201601c9054906101000a900460ff161515151581525050905080604001516127e657600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff16146126ca57809250505061281a565b5b6001156127e557818060019003925050600460008381526020019081526020016000206040518060600160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815260200160008201601c9054906101000a900460ff1615151515815250509050600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff16146127e057809250505061281a565b6126cb565b5b505b6040517fdf2d9b4200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b919050565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b6128f0848484612b53565b61290f8373ffffffffffffffffffffffffffffffffffffffff16613019565b801561292457506129228484848461303c565b155b1561295b576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b50505050565b60606009805461297090613fb1565b80601f016020809104026020016040519081016040528092919081815260200182805461299c90613fb1565b80156129e95780601f106129be576101008083540402835291602001916129e9565b820191906000526020600020905b8154815290600101906020018083116129cc57829003601f168201915b5050505050905090565b606060008203612a3a576040518060400160405280600181526020017f30000000000000000000000000000000000000000000000000000000000000008152509050612b4e565b600082905060005b60008214612a6c578080612a5590614541565b915050600a82612a65919061464a565b9150612a42565b60008167ffffffffffffffff811115612a8857612a8761396e565b5b6040519080825280601f01601f191660200182016040528015612aba5781602001600182028036833780820191505090505b5090505b60008514612b4757600182612ad3919061467b565b9150600a85612ae291906146af565b6030612aee91906144bc565b60f81b818381518110612b0457612b03614512565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a85612b40919061464a565b9450612abe565b8093505050505b919050565b6000612b5e82612590565b90508373ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff1614612bc9576040517fa114810000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b60008473ffffffffffffffffffffffffffffffffffffffff16612bea612435565b73ffffffffffffffffffffffffffffffffffffffff161480612c195750612c1885612c13612435565b61219f565b5b80612c5e5750612c27612435565b73ffffffffffffffffffffffffffffffffffffffff16612c4684610a69565b73ffffffffffffffffffffffffffffffffffffffff16145b905080612c97576040517f59c896be00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1603612cfd576040517fea553b3400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b612d0a858585600161318c565b612d166000848761248b565b6001600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a900467ffffffffffffffff160392506101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055506001600560008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a900467ffffffffffffffff160192506101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055506000600460008581526020019081526020016000209050848160000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550428160000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff16021790555060006001850190506000600460008381526020019081526020016000209050600073ffffffffffffffffffffffffffffffffffffffff168160000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1603612f95576000548214612f9457878160000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555084602001518160000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055505b5b505050828473ffffffffffffffffffffffffffffffffffffffff168673ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a46130008585856001613192565b5050505050565b6130148383836001613198565b505050565b6000808273ffffffffffffffffffffffffffffffffffffffff163b119050919050565b60008373ffffffffffffffffffffffffffffffffffffffff1663150b7a02613062612435565b8786866040518563ffffffff1660e01b81526004016130849493929190614735565b6020604051808303816000875af19250505080156130c057506040513d601f19601f820116820180604052508101906130bd9190614796565b60015b613139573d80600081146130f0576040519150601f19603f3d011682016040523d82523d6000602084013e6130f5565b606091505b506000815103613131576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050949350505050565b50505050565b50505050565b600080549050600073ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff1603613204576040517f2e07630000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6000840361323e576040517fb562e8dd00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b61324b600086838761318c565b83600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a900467ffffffffffffffff160192506101000a81548167ffffffffffffffff021916908367ffffffffffffffff16021790555083600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160088282829054906101000a900467ffffffffffffffff160192506101000a81548167ffffffffffffffff021916908367ffffffffffffffff160217905550846004600083815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550426004600083815260200190815260200160002060000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff16021790555060008190506000858201905083801561341557506134148773ffffffffffffffffffffffffffffffffffffffff16613019565b5b156134da575b818773ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a461348a600088848060010195508861303c565b6134c0576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b80820361341b5782600054146134d557600080fd5b613545565b5b818060010192508773ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a48082036134db575b81600081905550505061355b6000868387613192565b5050505050565b82805461356e90613fb1565b90600052602060002090601f01602090048101928261359057600085556135d7565b82601f106135a957805160ff19168380011785556135d7565b828001600101855582156135d7579182015b828111156135d65782518255916020019190600101906135bb565b5b5090506135e4919061362b565b5090565b6040518060600160405280600073ffffffffffffffffffffffffffffffffffffffff168152602001600067ffffffffffffffff1681526020016000151581525090565b5b8082111561364457600081600090555060010161362c565b5090565b6000604051905090565b600080fd5b600080fd5b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b6136918161365c565b811461369c57600080fd5b50565b6000813590506136ae81613688565b92915050565b6000602082840312156136ca576136c9613652565b5b60006136d88482850161369f565b91505092915050565b60008115159050919050565b6136f6816136e1565b82525050565b600060208201905061371160008301846136ed565b92915050565b600061ffff82169050919050565b61372e81613717565b811461373957600080fd5b50565b60008135905061374b81613725565b92915050565b60006020828403121561376757613766613652565b5b60006137758482850161373c565b91505092915050565b600081519050919050565b600082825260208201905092915050565b60005b838110156137b857808201518184015260208101905061379d565b838111156137c7576000848401525b50505050565b6000601f19601f8301169050919050565b60006137e98261377e565b6137f38185613789565b935061380381856020860161379a565b61380c816137cd565b840191505092915050565b6000602082019050818103600083015261383181846137de565b905092915050565b6000819050919050565b61384c81613839565b811461385757600080fd5b50565b60008135905061386981613843565b92915050565b60006020828403121561388557613884613652565b5b60006138938482850161385a565b91505092915050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b60006138c78261389c565b9050919050565b6138d7816138bc565b82525050565b60006020820190506138f260008301846138ce565b92915050565b613901816138bc565b811461390c57600080fd5b50565b60008135905061391e816138f8565b92915050565b6000806040838503121561393b5761393a613652565b5b60006139498582860161390f565b925050602061395a8582860161385a565b9150509250929050565b600080fd5b600080fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6139a6826137cd565b810181811067ffffffffffffffff821117156139c5576139c461396e565b5b80604052505050565b60006139d8613648565b90506139e4828261399d565b919050565b600067ffffffffffffffff821115613a0457613a0361396e565b5b613a0d826137cd565b9050602081019050919050565b82818337600083830152505050565b6000613a3c613a37846139e9565b6139ce565b905082815260208101848484011115613a5857613a57613969565b5b613a63848285613a1a565b509392505050565b600082601f830112613a8057613a7f613964565b5b8135613a90848260208601613a29565b91505092915050565b600060208284031215613aaf57613aae613652565b5b600082013567ffffffffffffffff811115613acd57613acc613657565b5b613ad984828501613a6b565b91505092915050565b613aeb81613839565b82525050565b6000602082019050613b066000830184613ae2565b92915050565b600080600060608486031215613b2557613b24613652565b5b6000613b338682870161390f565b9350506020613b448682870161390f565b9250506040613b558682870161385a565b9150509250925092565b60008060408385031215613b7657613b75613652565b5b6000613b848582860161373c565b9250506020613b958582860161390f565b9150509250929050565b600060ff82169050919050565b613bb581613b9f565b8114613bc057600080fd5b50565b600081359050613bd281613bac565b92915050565b600060208284031215613bee57613bed613652565b5b6000613bfc84828501613bc3565b91505092915050565b600060208284031215613c1b57613c1a613652565b5b6000613c298482850161390f565b91505092915050565b613c3b81613b9f565b82525050565b6000602082019050613c566000830184613c32565b92915050565b613c65816136e1565b8114613c7057600080fd5b50565b600081359050613c8281613c5c565b92915050565b60008060408385031215613c9f57613c9e613652565b5b6000613cad8582860161390f565b9250506020613cbe85828601613c73565b9150509250929050565b600067ffffffffffffffff821115613ce357613ce261396e565b5b613cec826137cd565b9050602081019050919050565b6000613d0c613d0784613cc8565b6139ce565b905082815260208101848484011115613d2857613d27613969565b5b613d33848285613a1a565b509392505050565b600082601f830112613d5057613d4f613964565b5b8135613d60848260208601613cf9565b91505092915050565b60008060008060808587031215613d8357613d82613652565b5b6000613d918782880161390f565b9450506020613da28782880161390f565b9350506040613db38782880161385a565b925050606085013567ffffffffffffffff811115613dd457613dd3613657565b5b613de087828801613d3b565b91505092959194509250565b600080fd5b600080fd5b60008083601f840112613e0c57613e0b613964565b5b8235905067ffffffffffffffff811115613e2957613e28613dec565b5b602083019150836020820283011115613e4557613e44613df1565b5b9250929050565b600080600060408486031215613e6557613e64613652565b5b6000613e7386828701613bc3565b935050602084013567ffffffffffffffff811115613e9457613e93613657565b5b613ea086828701613df6565b92509250509250925092565b613eb581613717565b82525050565b6000602082019050613ed06000830184613eac565b92915050565b60008060408385031215613eed57613eec613652565b5b6000613efb8582860161390f565b9250506020613f0c8582860161390f565b9150509250929050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b6000613f4c602083613789565b9150613f5782613f16565b602082019050919050565b60006020820190508181036000830152613f7b81613f3f565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b60006002820490506001821680613fc957607f821691505b602082108103613fdc57613fdb613f82565b5b50919050565b6000604082019050613ff760008301856138ce565b61400460208301846138ce565b9392505050565b60008151905061401a81613c5c565b92915050565b60006020828403121561403657614035613652565b5b60006140448482850161400b565b91505092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b600061408782613717565b915061409283613717565b92508261ffff038211156140a9576140a861404d565b5b828201905092915050565b7f45786365656473206d617820737570706c792e00000000000000000000000000600082015250565b60006140ea601383613789565b91506140f5826140b4565b602082019050919050565b60006020820190508181036000830152614119816140dd565b9050919050565b600061412b82613b9f565b915061413683613b9f565b92508260ff0382111561414c5761414b61404d565b5b828201905092915050565b7f45786365656473206d617820706572207472616e73616374696f6e2e00000000600082015250565b600061418d601c83613789565b915061419882614157565b602082019050919050565b600060208201905081810360008301526141bc81614180565b9050919050565b7f54686520636f6e74726163742069732070617573656421000000000000000000600082015250565b60006141f9601783613789565b9150614204826141c3565b602082019050919050565b60006020820190508181036000830152614228816141ec565b9050919050565b600061423a82613839565b915061424583613839565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff048311821515161561427e5761427d61404d565b5b828202905092915050565b7f496e73756666696369656e742066756e64732100000000000000000000000000600082015250565b60006142bf601383613789565b91506142ca82614289565b602082019050919050565b600060208201905081810360008301526142ee816142b2565b9050919050565b600061430082613b9f565b915061430b83613b9f565b92508282101561431e5761431d61404d565b5b828203905092915050565b7f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008201527f6e6578697374656e7420746f6b656e0000000000000000000000000000000000602082015250565b6000614385602f83613789565b915061439082614329565b604082019050919050565b600060208201905081810360008301526143b481614378565b9050919050565b600081905092915050565b60006143d18261377e565b6143db81856143bb565b93506143eb81856020860161379a565b80840191505092915050565b60008190508160005260206000209050919050565b6000815461441981613fb1565b61442381866143bb565b9450600182166000811461443e576001811461444f57614482565b60ff19831686528186019350614482565b614458856143f7565b60005b8381101561447a5781548189015260018201915060208101905061445b565b838801955050505b50505092915050565b600061449782866143c6565b91506144a382856143c6565b91506144af828461440c565b9150819050949350505050565b60006144c782613839565b91506144d283613839565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff038211156145075761450661404d565b5b828201905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b600061454c82613839565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff820361457e5761457d61404d565b5b600182019050919050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b60006145e5602683613789565b91506145f082614589565b604082019050919050565b60006020820190508181036000830152614614816145d8565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b600061465582613839565b915061466083613839565b9250826146705761466f61461b565b5b828204905092915050565b600061468682613839565b915061469183613839565b9250828210156146a4576146a361404d565b5b828203905092915050565b60006146ba82613839565b91506146c583613839565b9250826146d5576146d461461b565b5b828206905092915050565b600081519050919050565b600082825260208201905092915050565b6000614707826146e0565b61471181856146eb565b935061472181856020860161379a565b61472a816137cd565b840191505092915050565b600060808201905061474a60008301876138ce565b61475760208301866138ce565b6147646040830185613ae2565b818103606083015261477681846146fc565b905095945050505050565b60008151905061479081613688565b92915050565b6000602082840312156147ac576147ab613652565b5b60006147ba84828501614781565b9150509291505056fea2646970667358221220efe423a0b85c4dd4056ccd1e0edf7e0808a86ab19a31a88e71f4c7b5e1e641b964736f6c634300080d0033697066733a2f2f626166796265696169693377327734356833677135667a3368737a7165323674637465796461636f32626169616e623277636f756e3368777270692f

Deployed Bytecode

0x60806040526004361061021a5760003560e01c80636ecd230611610123578063aa062290116100ab578063e94053c71161006f578063e94053c714610760578063e985e9c51461079d578063eef440af146107da578063f2fde38b14610805578063f8bf51721461082e5761021a565b8063aa0622901461067d578063b88d4fde146106a6578063c87b56dd146106cf578063cffb6e201461070c578063d5abeb01146107355761021a565b80638da5cb5b116100f25780638da5cb5b146105a857806394354fd0146105d357806395d89b41146105fe578063a22cb46514610629578063a475b5dd146106525761021a565b80636ecd23061461050f57806370a082311461052b578063715018a6146105685780637ec4a6591461057f5761021a565b80632f6f98e1116101a657806342842e0e1161017557806342842e0e1461042c57806344a0d68a146104555780634d9c18481461047e5780635c975abb146104a75780636352211e146104d25761021a565b80632f6f98e1146103be57806337a66d85146103e75780633bd64968146103fe5780633ccfd60b146104155761021a565b8063095ea7b3116101ed578063095ea7b3146102ed5780631067fcc71461031657806313faede61461033f57806318160ddd1461036a57806323b872dd146103955761021a565b806301ffc9a71461021f57806306421c2f1461025c57806306fdde0314610285578063081812fc146102b0575b600080fd5b34801561022b57600080fd5b50610246600480360381019061024191906136b4565b610859565b60405161025391906136fc565b60405180910390f35b34801561026857600080fd5b50610283600480360381019061027e9190613751565b61093b565b005b34801561029157600080fd5b5061029a6109d7565b6040516102a79190613817565b60405180910390f35b3480156102bc57600080fd5b506102d760048036038101906102d2919061386f565b610a69565b6040516102e491906138dd565b60405180910390f35b3480156102f957600080fd5b50610314600480360381019061030f9190613924565b610ae5565b005b34801561032257600080fd5b5061033d60048036038101906103389190613a99565b610bef565b005b34801561034b57600080fd5b50610354610c85565b6040516103619190613af1565b60405180910390f35b34801561037657600080fd5b5061037f610c8b565b60405161038c9190613af1565b60405180910390f35b3480156103a157600080fd5b506103bc60048036038101906103b79190613b0c565b610ca2565b005b3480156103ca57600080fd5b506103e560048036038101906103e09190613b5f565b610e84565b005b3480156103f357600080fd5b506103fc610f91565b005b34801561040a57600080fd5b50610413611039565b005b34801561042157600080fd5b5061042a6110e1565b005b34801561043857600080fd5b50610453600480360381019061044e9190613b0c565b6111ac565b005b34801561046157600080fd5b5061047c6004803603810190610477919061386f565b61138e565b005b34801561048a57600080fd5b506104a560048036038101906104a09190613bd8565b611414565b005b3480156104b357600080fd5b506104bc6114b2565b6040516104c991906136fc565b60405180910390f35b3480156104de57600080fd5b506104f960048036038101906104f4919061386f565b6114c5565b60405161050691906138dd565b60405180910390f35b61052960048036038101906105249190613bd8565b6114db565b005b34801561053757600080fd5b50610552600480360381019061054d9190613c05565b6117e5565b60405161055f9190613af1565b60405180910390f35b34801561057457600080fd5b5061057d6118b4565b005b34801561058b57600080fd5b506105a660048036038101906105a19190613a99565b61193c565b005b3480156105b457600080fd5b506105bd6119d2565b6040516105ca91906138dd565b60405180910390f35b3480156105df57600080fd5b506105e86119fc565b6040516105f59190613c41565b60405180910390f35b34801561060a57600080fd5b50610613611a0f565b6040516106209190613817565b60405180910390f35b34801561063557600080fd5b50610650600480360381019061064b9190613c88565b611aa1565b005b34801561065e57600080fd5b50610667611c18565b60405161067491906136fc565b60405180910390f35b34801561068957600080fd5b506106a4600480360381019061069f9190613bd8565b611c2b565b005b3480156106b257600080fd5b506106cd60048036038101906106c89190613d69565b611cc5565b005b3480156106db57600080fd5b506106f660048036038101906106f1919061386f565b611eaa565b6040516107039190613817565b60405180910390f35b34801561071857600080fd5b50610733600480360381019061072e9190613e4c565b612002565b005b34801561074157600080fd5b5061074a61216b565b6040516107579190613ebb565b60405180910390f35b34801561076c57600080fd5b5061078760048036038101906107829190613c05565b61217f565b6040516107949190613c41565b60405180910390f35b3480156107a957600080fd5b506107c460048036038101906107bf9190613ed6565b61219f565b6040516107d191906136fc565b60405180910390f35b3480156107e657600080fd5b506107ef612233565b6040516107fc9190613817565b60405180910390f35b34801561081157600080fd5b5061082c60048036038101906108279190613c05565b6122c1565b005b34801561083a57600080fd5b506108436123b8565b6040516108509190613c41565b60405180910390f35b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916148061092457507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b806109345750610933826123cb565b5b9050919050565b610943612435565b73ffffffffffffffffffffffffffffffffffffffff166109616119d2565b73ffffffffffffffffffffffffffffffffffffffff16146109b7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016109ae90613f62565b60405180910390fd5b80600d60006101000a81548161ffff021916908361ffff16021790555050565b6060600280546109e690613fb1565b80601f0160208091040260200160405190810160405280929190818152602001828054610a1290613fb1565b8015610a5f5780601f10610a3457610100808354040283529160200191610a5f565b820191906000526020600020905b815481529060010190602001808311610a4257829003601f168201915b5050505050905090565b6000610a748261243d565b610aaa576040517fcf4700e400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6006600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b6000610af0826114c5565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603610b57576040517f943f7b8c00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16610b76612435565b73ffffffffffffffffffffffffffffffffffffffff1614158015610ba85750610ba681610ba1612435565b61219f565b155b15610bdf576040517fcfb3b94200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b610bea83838361248b565b505050565b610bf7612435565b73ffffffffffffffffffffffffffffffffffffffff16610c156119d2565b73ffffffffffffffffffffffffffffffffffffffff1614610c6b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c6290613f62565b60405180910390fd5b80600b9080519060200190610c81929190613562565b5050565b600c5481565b6000610c9561253d565b6001546000540303905090565b8260006daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff163b1115610e72573373ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603610d1457610d0f848484612542565b610e7e565b6daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff1663c617113430336040518363ffffffff1660e01b8152600401610d5d929190613fe2565b602060405180830381865afa158015610d7a573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610d9e9190614020565b8015610e3057506daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff1663c617113430836040518363ffffffff1660e01b8152600401610dee929190613fe2565b602060405180830381865afa158015610e0b573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610e2f9190614020565b5b610e7157336040517fede71dcc000000000000000000000000000000000000000000000000000000008152600401610e6891906138dd565b60405180910390fd5b5b610e7d848484612542565b5b50505050565b610e8c612435565b73ffffffffffffffffffffffffffffffffffffffff16610eaa6119d2565b73ffffffffffffffffffffffffffffffffffffffff1614610f00576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ef790613f62565b60405180910390fd5b6000610f0a610c8b565b9050600d60009054906101000a900461ffff1661ffff168382610f2d919061407c565b61ffff161115610f72576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f6990614100565b60405180910390fd5b610f80828461ffff16612552565b600092506000915060009050505050565b610f99612435565b73ffffffffffffffffffffffffffffffffffffffff16610fb76119d2565b73ffffffffffffffffffffffffffffffffffffffff161461100d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161100490613f62565b60405180910390fd5b600d60049054906101000a900460ff1615600d60046101000a81548160ff021916908315150217905550565b611041612435565b73ffffffffffffffffffffffffffffffffffffffff1661105f6119d2565b73ffffffffffffffffffffffffffffffffffffffff16146110b5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110ac90613f62565b60405180910390fd5b600d60059054906101000a900460ff1615600d60056101000a81548160ff021916908315150217905550565b6110e9612435565b73ffffffffffffffffffffffffffffffffffffffff166111076119d2565b73ffffffffffffffffffffffffffffffffffffffff161461115d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161115490613f62565b60405180910390fd5b60004790503373ffffffffffffffffffffffffffffffffffffffff166108fc829081150290604051600060405180830381858888f193505050501580156111a8573d6000803e3d6000fd5b5050565b8260006daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff163b111561137c573373ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff160361121e57611219848484612570565b611388565b6daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff1663c617113430336040518363ffffffff1660e01b8152600401611267929190613fe2565b602060405180830381865afa158015611284573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906112a89190614020565b801561133a57506daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff1663c617113430836040518363ffffffff1660e01b81526004016112f8929190613fe2565b602060405180830381865afa158015611315573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906113399190614020565b5b61137b57336040517fede71dcc00000000000000000000000000000000000000000000000000000000815260040161137291906138dd565b60405180910390fd5b5b611387848484612570565b5b50505050565b611396612435565b73ffffffffffffffffffffffffffffffffffffffff166113b46119d2565b73ffffffffffffffffffffffffffffffffffffffff161461140a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161140190613f62565b60405180910390fd5b80600c8190555050565b61141c612435565b73ffffffffffffffffffffffffffffffffffffffff1661143a6119d2565b73ffffffffffffffffffffffffffffffffffffffff1614611490576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161148790613f62565b60405180910390fd5b80600d60036101000a81548160ff021916908360ff1602179055506000905050565b600d60049054906101000a900460ff1681565b60006114d082612590565b600001519050919050565b60006114e5610c8b565b90506000600e60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff169050600d60009054906101000a900461ffff1661ffff168360ff168361155c919061407c565b61ffff1611156115a1576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161159890614100565b60405180910390fd5b600d60029054906101000a900460ff1660ff1681846115c09190614120565b60ff161115611604576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115fb906141a3565b60405180910390fd5b600d60049054906101000a900460ff1615611654576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161164b9061420f565b60405180910390fd5b600d60039054906101000a900460ff1660ff168160ff16106116c8578260ff16600c54611681919061422f565b3410156116c3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116ba906142d5565b60405180910390fd5b611768565b600081846116d69190614120565b9050600d60039054906101000a900460ff1660ff168160ff16111561176657600d60039054906101000a900460ff168161171091906142f5565b90508060ff16600c54611723919061422f565b341015611765576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161175c906142d5565b60405180910390fd5b5b505b611775338460ff16612552565b80836117819190614120565b600e60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff021916908360ff1602179055506000915060009250505050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff160361184c576040517f8f4eb60400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600560008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160009054906101000a900467ffffffffffffffff1667ffffffffffffffff169050919050565b6118bc612435565b73ffffffffffffffffffffffffffffffffffffffff166118da6119d2565b73ffffffffffffffffffffffffffffffffffffffff1614611930576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161192790613f62565b60405180910390fd5b61193a600061281f565b565b611944612435565b73ffffffffffffffffffffffffffffffffffffffff166119626119d2565b73ffffffffffffffffffffffffffffffffffffffff16146119b8576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016119af90613f62565b60405180910390fd5b80600990805190602001906119ce929190613562565b5050565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b600d60029054906101000a900460ff1681565b606060038054611a1e90613fb1565b80601f0160208091040260200160405190810160405280929190818152602001828054611a4a90613fb1565b8015611a975780601f10611a6c57610100808354040283529160200191611a97565b820191906000526020600020905b815481529060010190602001808311611a7a57829003601f168201915b5050505050905090565b611aa9612435565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603611b0d576040517fb06307db00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8060076000611b1a612435565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff16611bc7612435565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c3183604051611c0c91906136fc565b60405180910390a35050565b600d60059054906101000a900460ff1681565b611c33612435565b73ffffffffffffffffffffffffffffffffffffffff16611c516119d2565b73ffffffffffffffffffffffffffffffffffffffff1614611ca7576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c9e90613f62565b60405180910390fd5b80600d60026101000a81548160ff021916908360ff16021790555050565b8360006daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff163b1115611e96573373ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603611d3857611d33858585856128e5565b611ea3565b6daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff1663c617113430336040518363ffffffff1660e01b8152600401611d81929190613fe2565b602060405180830381865afa158015611d9e573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611dc29190614020565b8015611e5457506daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff1663c617113430836040518363ffffffff1660e01b8152600401611e12929190613fe2565b602060405180830381865afa158015611e2f573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611e539190614020565b5b611e9557336040517fede71dcc000000000000000000000000000000000000000000000000000000008152600401611e8c91906138dd565b60405180910390fd5b5b611ea2858585856128e5565b5b5050505050565b6060611eb58261243d565b611ef4576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611eeb9061439b565b60405180910390fd5b60001515600d60059054906101000a900460ff16151503611fa157600b8054611f1c90613fb1565b80601f0160208091040260200160405190810160405280929190818152602001828054611f4890613fb1565b8015611f955780601f10611f6a57610100808354040283529160200191611f95565b820191906000526020600020905b815481529060010190602001808311611f7857829003601f168201915b50505050509050611ffd565b6000611fab612961565b90506000815111611fcb5760405180602001604052806000815250611ff9565b80611fd5846129f3565b600a604051602001611fe99392919061448b565b6040516020818303038152906040525b9150505b919050565b61200a612435565b73ffffffffffffffffffffffffffffffffffffffff166120286119d2565b73ffffffffffffffffffffffffffffffffffffffff161461207e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161207590613f62565b60405180910390fd5b6000612088610c8b565b90506000838390508560ff1661209e919061422f565b9050600d60009054906101000a900461ffff1661ffff16818361ffff166120c591906144bc565b1115612106576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016120fd90614100565b60405180910390fd5b60005b8484905081101561215b5761214885858381811061212a57612129614512565b5b905060200201602081019061213f9190613c05565b8760ff16612552565b808061215390614541565b915050612109565b5060009450600091505050505050565b600d60009054906101000a900461ffff1681565b600e6020528060005260406000206000915054906101000a900460ff1681565b6000600760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b600b805461224090613fb1565b80601f016020809104026020016040519081016040528092919081815260200182805461226c90613fb1565b80156122b95780601f1061228e576101008083540402835291602001916122b9565b820191906000526020600020905b81548152906001019060200180831161229c57829003601f168201915b505050505081565b6122c9612435565b73ffffffffffffffffffffffffffffffffffffffff166122e76119d2565b73ffffffffffffffffffffffffffffffffffffffff161461233d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161233490613f62565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16036123ac576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016123a3906145fb565b60405180910390fd5b6123b58161281f565b50565b600d60039054906101000a900460ff1681565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b600033905090565b60008161244861253d565b11158015612457575060005482105b8015612484575060046000838152602001908152602001600020600001601c9054906101000a900460ff16155b9050919050565b826006600084815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b600090565b61254d838383612b53565b505050565b61256c828260405180602001604052806000815250613007565b5050565b61258b83838360405180602001604052806000815250611cc5565b505050565b6125986135e8565b6000829050806125a661253d565b111580156125b5575060005481105b156127e8576000600460008381526020019081526020016000206040518060600160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815260200160008201601c9054906101000a900460ff161515151581525050905080604001516127e657600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff16146126ca57809250505061281a565b5b6001156127e557818060019003925050600460008381526020019081526020016000206040518060600160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815260200160008201601c9054906101000a900460ff1615151515815250509050600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff16146127e057809250505061281a565b6126cb565b5b505b6040517fdf2d9b4200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b919050565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b6128f0848484612b53565b61290f8373ffffffffffffffffffffffffffffffffffffffff16613019565b801561292457506129228484848461303c565b155b1561295b576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b50505050565b60606009805461297090613fb1565b80601f016020809104026020016040519081016040528092919081815260200182805461299c90613fb1565b80156129e95780601f106129be576101008083540402835291602001916129e9565b820191906000526020600020905b8154815290600101906020018083116129cc57829003601f168201915b5050505050905090565b606060008203612a3a576040518060400160405280600181526020017f30000000000000000000000000000000000000000000000000000000000000008152509050612b4e565b600082905060005b60008214612a6c578080612a5590614541565b915050600a82612a65919061464a565b9150612a42565b60008167ffffffffffffffff811115612a8857612a8761396e565b5b6040519080825280601f01601f191660200182016040528015612aba5781602001600182028036833780820191505090505b5090505b60008514612b4757600182612ad3919061467b565b9150600a85612ae291906146af565b6030612aee91906144bc565b60f81b818381518110612b0457612b03614512565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a85612b40919061464a565b9450612abe565b8093505050505b919050565b6000612b5e82612590565b90508373ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff1614612bc9576040517fa114810000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b60008473ffffffffffffffffffffffffffffffffffffffff16612bea612435565b73ffffffffffffffffffffffffffffffffffffffff161480612c195750612c1885612c13612435565b61219f565b5b80612c5e5750612c27612435565b73ffffffffffffffffffffffffffffffffffffffff16612c4684610a69565b73ffffffffffffffffffffffffffffffffffffffff16145b905080612c97576040517f59c896be00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1603612cfd576040517fea553b3400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b612d0a858585600161318c565b612d166000848761248b565b6001600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a900467ffffffffffffffff160392506101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055506001600560008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a900467ffffffffffffffff160192506101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055506000600460008581526020019081526020016000209050848160000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550428160000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff16021790555060006001850190506000600460008381526020019081526020016000209050600073ffffffffffffffffffffffffffffffffffffffff168160000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1603612f95576000548214612f9457878160000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555084602001518160000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055505b5b505050828473ffffffffffffffffffffffffffffffffffffffff168673ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a46130008585856001613192565b5050505050565b6130148383836001613198565b505050565b6000808273ffffffffffffffffffffffffffffffffffffffff163b119050919050565b60008373ffffffffffffffffffffffffffffffffffffffff1663150b7a02613062612435565b8786866040518563ffffffff1660e01b81526004016130849493929190614735565b6020604051808303816000875af19250505080156130c057506040513d601f19601f820116820180604052508101906130bd9190614796565b60015b613139573d80600081146130f0576040519150601f19603f3d011682016040523d82523d6000602084013e6130f5565b606091505b506000815103613131576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050949350505050565b50505050565b50505050565b600080549050600073ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff1603613204576040517f2e07630000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6000840361323e576040517fb562e8dd00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b61324b600086838761318c565b83600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a900467ffffffffffffffff160192506101000a81548167ffffffffffffffff021916908367ffffffffffffffff16021790555083600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160088282829054906101000a900467ffffffffffffffff160192506101000a81548167ffffffffffffffff021916908367ffffffffffffffff160217905550846004600083815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550426004600083815260200190815260200160002060000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff16021790555060008190506000858201905083801561341557506134148773ffffffffffffffffffffffffffffffffffffffff16613019565b5b156134da575b818773ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a461348a600088848060010195508861303c565b6134c0576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b80820361341b5782600054146134d557600080fd5b613545565b5b818060010192508773ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a48082036134db575b81600081905550505061355b6000868387613192565b5050505050565b82805461356e90613fb1565b90600052602060002090601f01602090048101928261359057600085556135d7565b82601f106135a957805160ff19168380011785556135d7565b828001600101855582156135d7579182015b828111156135d65782518255916020019190600101906135bb565b5b5090506135e4919061362b565b5090565b6040518060600160405280600073ffffffffffffffffffffffffffffffffffffffff168152602001600067ffffffffffffffff1681526020016000151581525090565b5b8082111561364457600081600090555060010161362c565b5090565b6000604051905090565b600080fd5b600080fd5b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b6136918161365c565b811461369c57600080fd5b50565b6000813590506136ae81613688565b92915050565b6000602082840312156136ca576136c9613652565b5b60006136d88482850161369f565b91505092915050565b60008115159050919050565b6136f6816136e1565b82525050565b600060208201905061371160008301846136ed565b92915050565b600061ffff82169050919050565b61372e81613717565b811461373957600080fd5b50565b60008135905061374b81613725565b92915050565b60006020828403121561376757613766613652565b5b60006137758482850161373c565b91505092915050565b600081519050919050565b600082825260208201905092915050565b60005b838110156137b857808201518184015260208101905061379d565b838111156137c7576000848401525b50505050565b6000601f19601f8301169050919050565b60006137e98261377e565b6137f38185613789565b935061380381856020860161379a565b61380c816137cd565b840191505092915050565b6000602082019050818103600083015261383181846137de565b905092915050565b6000819050919050565b61384c81613839565b811461385757600080fd5b50565b60008135905061386981613843565b92915050565b60006020828403121561388557613884613652565b5b60006138938482850161385a565b91505092915050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b60006138c78261389c565b9050919050565b6138d7816138bc565b82525050565b60006020820190506138f260008301846138ce565b92915050565b613901816138bc565b811461390c57600080fd5b50565b60008135905061391e816138f8565b92915050565b6000806040838503121561393b5761393a613652565b5b60006139498582860161390f565b925050602061395a8582860161385a565b9150509250929050565b600080fd5b600080fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6139a6826137cd565b810181811067ffffffffffffffff821117156139c5576139c461396e565b5b80604052505050565b60006139d8613648565b90506139e4828261399d565b919050565b600067ffffffffffffffff821115613a0457613a0361396e565b5b613a0d826137cd565b9050602081019050919050565b82818337600083830152505050565b6000613a3c613a37846139e9565b6139ce565b905082815260208101848484011115613a5857613a57613969565b5b613a63848285613a1a565b509392505050565b600082601f830112613a8057613a7f613964565b5b8135613a90848260208601613a29565b91505092915050565b600060208284031215613aaf57613aae613652565b5b600082013567ffffffffffffffff811115613acd57613acc613657565b5b613ad984828501613a6b565b91505092915050565b613aeb81613839565b82525050565b6000602082019050613b066000830184613ae2565b92915050565b600080600060608486031215613b2557613b24613652565b5b6000613b338682870161390f565b9350506020613b448682870161390f565b9250506040613b558682870161385a565b9150509250925092565b60008060408385031215613b7657613b75613652565b5b6000613b848582860161373c565b9250506020613b958582860161390f565b9150509250929050565b600060ff82169050919050565b613bb581613b9f565b8114613bc057600080fd5b50565b600081359050613bd281613bac565b92915050565b600060208284031215613bee57613bed613652565b5b6000613bfc84828501613bc3565b91505092915050565b600060208284031215613c1b57613c1a613652565b5b6000613c298482850161390f565b91505092915050565b613c3b81613b9f565b82525050565b6000602082019050613c566000830184613c32565b92915050565b613c65816136e1565b8114613c7057600080fd5b50565b600081359050613c8281613c5c565b92915050565b60008060408385031215613c9f57613c9e613652565b5b6000613cad8582860161390f565b9250506020613cbe85828601613c73565b9150509250929050565b600067ffffffffffffffff821115613ce357613ce261396e565b5b613cec826137cd565b9050602081019050919050565b6000613d0c613d0784613cc8565b6139ce565b905082815260208101848484011115613d2857613d27613969565b5b613d33848285613a1a565b509392505050565b600082601f830112613d5057613d4f613964565b5b8135613d60848260208601613cf9565b91505092915050565b60008060008060808587031215613d8357613d82613652565b5b6000613d918782880161390f565b9450506020613da28782880161390f565b9350506040613db38782880161385a565b925050606085013567ffffffffffffffff811115613dd457613dd3613657565b5b613de087828801613d3b565b91505092959194509250565b600080fd5b600080fd5b60008083601f840112613e0c57613e0b613964565b5b8235905067ffffffffffffffff811115613e2957613e28613dec565b5b602083019150836020820283011115613e4557613e44613df1565b5b9250929050565b600080600060408486031215613e6557613e64613652565b5b6000613e7386828701613bc3565b935050602084013567ffffffffffffffff811115613e9457613e93613657565b5b613ea086828701613df6565b92509250509250925092565b613eb581613717565b82525050565b6000602082019050613ed06000830184613eac565b92915050565b60008060408385031215613eed57613eec613652565b5b6000613efb8582860161390f565b9250506020613f0c8582860161390f565b9150509250929050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b6000613f4c602083613789565b9150613f5782613f16565b602082019050919050565b60006020820190508181036000830152613f7b81613f3f565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b60006002820490506001821680613fc957607f821691505b602082108103613fdc57613fdb613f82565b5b50919050565b6000604082019050613ff760008301856138ce565b61400460208301846138ce565b9392505050565b60008151905061401a81613c5c565b92915050565b60006020828403121561403657614035613652565b5b60006140448482850161400b565b91505092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b600061408782613717565b915061409283613717565b92508261ffff038211156140a9576140a861404d565b5b828201905092915050565b7f45786365656473206d617820737570706c792e00000000000000000000000000600082015250565b60006140ea601383613789565b91506140f5826140b4565b602082019050919050565b60006020820190508181036000830152614119816140dd565b9050919050565b600061412b82613b9f565b915061413683613b9f565b92508260ff0382111561414c5761414b61404d565b5b828201905092915050565b7f45786365656473206d617820706572207472616e73616374696f6e2e00000000600082015250565b600061418d601c83613789565b915061419882614157565b602082019050919050565b600060208201905081810360008301526141bc81614180565b9050919050565b7f54686520636f6e74726163742069732070617573656421000000000000000000600082015250565b60006141f9601783613789565b9150614204826141c3565b602082019050919050565b60006020820190508181036000830152614228816141ec565b9050919050565b600061423a82613839565b915061424583613839565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff048311821515161561427e5761427d61404d565b5b828202905092915050565b7f496e73756666696369656e742066756e64732100000000000000000000000000600082015250565b60006142bf601383613789565b91506142ca82614289565b602082019050919050565b600060208201905081810360008301526142ee816142b2565b9050919050565b600061430082613b9f565b915061430b83613b9f565b92508282101561431e5761431d61404d565b5b828203905092915050565b7f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008201527f6e6578697374656e7420746f6b656e0000000000000000000000000000000000602082015250565b6000614385602f83613789565b915061439082614329565b604082019050919050565b600060208201905081810360008301526143b481614378565b9050919050565b600081905092915050565b60006143d18261377e565b6143db81856143bb565b93506143eb81856020860161379a565b80840191505092915050565b60008190508160005260206000209050919050565b6000815461441981613fb1565b61442381866143bb565b9450600182166000811461443e576001811461444f57614482565b60ff19831686528186019350614482565b614458856143f7565b60005b8381101561447a5781548189015260018201915060208101905061445b565b838801955050505b50505092915050565b600061449782866143c6565b91506144a382856143c6565b91506144af828461440c565b9150819050949350505050565b60006144c782613839565b91506144d283613839565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff038211156145075761450661404d565b5b828201905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b600061454c82613839565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff820361457e5761457d61404d565b5b600182019050919050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b60006145e5602683613789565b91506145f082614589565b604082019050919050565b60006020820190508181036000830152614614816145d8565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b600061465582613839565b915061466083613839565b9250826146705761466f61461b565b5b828204905092915050565b600061468682613839565b915061469183613839565b9250828210156146a4576146a361404d565b5b828203905092915050565b60006146ba82613839565b91506146c583613839565b9250826146d5576146d461461b565b5b828206905092915050565b600081519050919050565b600082825260208201905092915050565b6000614707826146e0565b61471181856146eb565b935061472181856020860161379a565b61472a816137cd565b840191505092915050565b600060808201905061474a60008301876138ce565b61475760208301866138ce565b6147646040830185613ae2565b818103606083015261477681846146fc565b905095945050505050565b60008151905061479081613688565b92915050565b6000602082840312156147ac576147ab613652565b5b60006147ba84828501614781565b9150509291505056fea2646970667358221220efe423a0b85c4dd4056ccd1e0edf7e0808a86ab19a31a88e71f4c7b5e1e641b964736f6c634300080d0033

Deployed Bytecode Sourcemap

49147:4724:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;24975:305;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;51694:97;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;28088:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;29591:204;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;29154:371;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;52568:102;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;49439:33;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;24224:303;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;53290:163;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;50878:326;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;52678:74;;;;;;;;;;;;;:::i;:::-;;52839:70;;;;;;;;;;;;;:::i;:::-;;53033:144;;;;;;;;;;;;;:::i;:::-;;53461:171;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;52758:76;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;52309:134;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;49676:26;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;27896:125;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;49894:976;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;25344:206;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;43797:103;;;;;;;;;;;;;:::i;:::-;;52461:102;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;43145:87;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;49521:36;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;28257:104;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;29867:287;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;49707:25;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;52915:107;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;53640:228;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;51806:490;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;51210:473;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;49486:30;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;49740:53;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;30225:164;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;49399:23;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;44055:201;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;49562:43;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;24975:305;25077:4;25129:25;25114:40;;;:11;:40;;;;:105;;;;25186:33;25171:48;;;:11;:48;;;;25114:105;:158;;;;25236:36;25260:11;25236:23;:36::i;:::-;25114:158;25094:178;;24975:305;;;:::o;51694:97::-;43376:12;:10;:12::i;:::-;43365:23;;:7;:5;:7::i;:::-;:23;;;43357:69;;;;;;;;;;;;:::i;:::-;;;;;;;;;51775:10:::1;51763:9;;:22;;;;;;;;;;;;;;;;;;51694:97:::0;:::o;28088:100::-;28142:13;28175:5;28168:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;28088:100;:::o;29591:204::-;29659:7;29684:16;29692:7;29684;:16::i;:::-;29679:64;;29709:34;;;;;;;;;;;;;;29679:64;29763:15;:24;29779:7;29763:24;;;;;;;;;;;;;;;;;;;;;29756:31;;29591:204;;;:::o;29154:371::-;29227:13;29243:24;29259:7;29243:15;:24::i;:::-;29227:40;;29288:5;29282:11;;:2;:11;;;29278:48;;29302:24;;;;;;;;;;;;;;29278:48;29359:5;29343:21;;:12;:10;:12::i;:::-;:21;;;;:63;;;;;29369:37;29386:5;29393:12;:10;:12::i;:::-;29369:16;:37::i;:::-;29368:38;29343:63;29339:138;;;29430:35;;;;;;;;;;;;;;29339:138;29489:28;29498:2;29502:7;29511:5;29489:8;:28::i;:::-;29216:309;29154:371;;:::o;52568:102::-;43376:12;:10;:12::i;:::-;43365:23;;:7;:5;:7::i;:::-;:23;;;43357:69;;;;;;;;;;;;:::i;:::-;;;;;;;;;52654:10:::1;52642:9;:22;;;;;;;;;;;;:::i;:::-;;52568:102:::0;:::o;49439:33::-;;;;:::o;24224:303::-;24268:7;24493:15;:13;:15::i;:::-;24478:12;;24462:13;;:28;:46;24455:53;;24224:303;:::o;53290:163::-;53391:4;48107:1;46921:42;48061:43;;;:47;48057:699;;;48348:10;48340:18;;:4;:18;;;48336:85;;53408:37:::1;53427:4;53433:2;53437:7;53408:18;:37::i;:::-;48399:7:::0;;48336:85;46921:42;48481:40;;;48530:4;48537:10;48481:67;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;:157;;;;;46921:42;48577:40;;;48626:4;48633;48577:61;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;48481:157;48435:310;;48718:10;48699:30;;;;;;;;;;;:::i;:::-;;;;;;;;48435:310;48057:699;53408:37:::1;53427:4;53433:2;53437:7;53408:18;:37::i;:::-;53290:163:::0;;;;;:::o;50878:326::-;43376:12;:10;:12::i;:::-;43365:23;;:7;:5;:7::i;:::-;:23;;;43357:69;;;;;;;;;;;;:::i;:::-;;;;;;;;;50961:18:::1;50989:13;:11;:13::i;:::-;50961:42;;51047:9;;;;;;;;;;;51018:38;;51032:11;51018;:25;;;;:::i;:::-;:38;;;;51010:70;;;;;;;;;;;;:::i;:::-;;;;;;;;;51088:34;51098:9;51110:11;51088:34;;:9;:34::i;:::-;51130:18;;;51156:16;;;51180:18;;;50953:251;50878:326:::0;;:::o;52678:74::-;43376:12;:10;:12::i;:::-;43365:23;;:7;:5;:7::i;:::-;:23;;;43357:69;;;;;;;;;;;;:::i;:::-;;;;;;;;;52735:6:::1;;;;;;;;;;;52734:7;52725:6;;:16;;;;;;;;;;;;;;;;;;52678:74::o:0;52839:70::-;43376:12;:10;:12::i;:::-;43365:23;;:7;:5;:7::i;:::-;:23;;;43357:69;;;;;;;;;;;;:::i;:::-;;;;;;;;;52898:6:::1;;;;;;;;;;;52897:7;52888:6;;:16;;;;;;;;;;;;;;;;;;52839:70::o:0;53033:144::-;43376:12;:10;:12::i;:::-;43365:23;;:7;:5;:7::i;:::-;:23;;;43357:69;;;;;;;;;;;;:::i;:::-;;;;;;;;;53077:13:::1;53093:21;53077:37;;53130:10;53122:28;;:39;53151:8;53122:39;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;53072:105;53033:144::o:0;53461:171::-;53566:4;48107:1;46921:42;48061:43;;;:47;48057:699;;;48348:10;48340:18;;:4;:18;;;48336:85;;53583:41:::1;53606:4;53612:2;53616:7;53583:22;:41::i;:::-;48399:7:::0;;48336:85;46921:42;48481:40;;;48530:4;48537:10;48481:67;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;:157;;;;;46921:42;48577:40;;;48626:4;48633;48577:61;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;48481:157;48435:310;;48718:10;48699:30;;;;;;;;;;;:::i;:::-;;;;;;;;48435:310;48057:699;53583:41:::1;53606:4;53612:2;53616:7;53583:22;:41::i;:::-;53461:171:::0;;;;;:::o;52758:76::-;43376:12;:10;:12::i;:::-;43365:23;;:7;:5;:7::i;:::-;:23;;;43357:69;;;;;;;;;;;;:::i;:::-;;;;;;;;;52821:5:::1;52814:4;:12;;;;52758:76:::0;:::o;52309:134::-;43376:12;:10;:12::i;:::-;43365:23;;:7;:5;:7::i;:::-;:23;;;43357:69;;;;;;;;;;;;:::i;:::-;;;;;;;;;52412:6:::1;52383:26;;:35;;;;;;;;;;;;;;;;;;52424:13;;;52309:134:::0;:::o;49676:26::-;;;;;;;;;;;;;:::o;27896:125::-;27960:7;27987:21;28000:7;27987:12;:21::i;:::-;:26;;;27980:33;;27896:125;;;:::o;49894:976::-;49953:18;49981:13;:11;:13::i;:::-;49953:42;;50003:9;50015:19;:31;50035:10;50015:31;;;;;;;;;;;;;;;;;;;;;;;;;50003:43;;50090:9;;;;;;;;;;;50061:38;;50075:11;50061:25;;:11;:25;;;;:::i;:::-;:38;;;;50053:70;;;;;;;;;;;;:::i;:::-;;;;;;;;;50159:18;;;;;;;;;;;50138:39;;50152:3;50138:11;:17;;;;:::i;:::-;:39;;;;50130:80;;;;;;;;;;;;:::i;:::-;;;;;;;;;50228:6;;;;;;;;;;;50227:7;50219:43;;;;;;;;;;;;:::i;:::-;;;;;;;;;50287:26;;;;;;;;;;;50280:33;;:3;:33;;;50277:417;;50355:11;50348:18;;:4;;:18;;;;:::i;:::-;50335:9;:31;;50327:63;;;;;;;;;;;;:::i;:::-;;;;;;;;;50277:417;;;50421:16;50454:3;50440:11;:17;;;;:::i;:::-;50421:36;;50484:26;;;;;;;;;;;50471:39;;:10;:39;;;50468:199;;;50557:26;;;;;;;;;;;50544:10;:39;;;;:::i;:::-;50531:52;;50622:10;50615:17;;:4;;:17;;;;:::i;:::-;50602:9;:30;;50594:62;;;;;;;;;;;;:::i;:::-;;;;;;;;;50468:199;50409:285;50277:417;50710:35;50720:10;50733:11;50710:35;;:9;:35::i;:::-;50802:3;50788:11;:17;;;;:::i;:::-;50754:19;:31;50774:10;50754:31;;;;;;;;;;;;;;;;:51;;;;;;;;;;;;;;;;;;50820:18;;;50846;;;49945:925;;49894:976;:::o;25344:206::-;25408:7;25449:1;25432:19;;:5;:19;;;25428:60;;25460:28;;;;;;;;;;;;;;25428:60;25514:12;:19;25527:5;25514:19;;;;;;;;;;;;;;;:27;;;;;;;;;;;;25506:36;;25499:43;;25344:206;;;:::o;43797:103::-;43376:12;:10;:12::i;:::-;43365:23;;:7;:5;:7::i;:::-;:23;;;43357:69;;;;;;;;;;;;:::i;:::-;;;;;;;;;43862:30:::1;43889:1;43862:18;:30::i;:::-;43797:103::o:0;52461:102::-;43376:12;:10;:12::i;:::-;43365:23;;:7;:5;:7::i;:::-;:23;;;43357:69;;;;;;;;;;;;:::i;:::-;;;;;;;;;52547:10:::1;52535:9;:22;;;;;;;;;;;;:::i;:::-;;52461:102:::0;:::o;43145:87::-;43191:7;43218:6;;;;;;;;;;;43211:13;;43145:87;:::o;49521:36::-;;;;;;;;;;;;;:::o;28257:104::-;28313:13;28346:7;28339:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;28257:104;:::o;29867:287::-;29978:12;:10;:12::i;:::-;29966:24;;:8;:24;;;29962:54;;29999:17;;;;;;;;;;;;;;29962:54;30074:8;30029:18;:32;30048:12;:10;:12::i;:::-;30029:32;;;;;;;;;;;;;;;:42;30062:8;30029:42;;;;;;;;;;;;;;;;:53;;;;;;;;;;;;;;;;;;30127:8;30098:48;;30113:12;:10;:12::i;:::-;30098:48;;;30137:8;30098:48;;;;;;:::i;:::-;;;;;;;;29867:287;;:::o;49707:25::-;;;;;;;;;;;;;:::o;52915:107::-;43376:12;:10;:12::i;:::-;43365:23;;:7;:5;:7::i;:::-;:23;;;43357:69;;;;;;;;;;;;:::i;:::-;;;;;;;;;53008:6:::1;52987:18;;:27;;;;;;;;;;;;;;;;;;52915:107:::0;:::o;53640:228::-;53791:4;48107:1;46921:42;48061:43;;;:47;48057:699;;;48348:10;48340:18;;:4;:18;;;48336:85;;53813:47:::1;53836:4;53842:2;53846:7;53855:4;53813:22;:47::i;:::-;48399:7:::0;;48336:85;46921:42;48481:40;;;48530:4;48537:10;48481:67;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;:157;;;;;46921:42;48577:40;;;48626:4;48633;48577:61;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;48481:157;48435:310;;48718:10;48699:30;;;;;;;;;;;:::i;:::-;;;;;;;;48435:310;48057:699;53813:47:::1;53836:4;53842:2;53846:7;53855:4;53813:22;:47::i;:::-;53640:228:::0;;;;;;:::o;51806:490::-;51905:13;51946:17;51954:8;51946:7;:17::i;:::-;51930:98;;;;;;;;;;;;:::i;:::-;;;;;;;;;52056:5;52046:15;;:6;;;;;;;;;;;:15;;;52041:50;;52078:9;52071:16;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;52041:50;52105:28;52136:10;:8;:10::i;:::-;52105:41;;52191:1;52166:14;52160:28;:32;:130;;;;;;;;;;;;;;;;;52228:14;52244:19;:8;:17;:19::i;:::-;52265:9;52211:64;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;52160:130;52153:137;;;51806:490;;;;:::o;51210:473::-;43376:12;:10;:12::i;:::-;43365:23;;:7;:5;:7::i;:::-;:23;;;43357:69;;;;;;;;;;;;:::i;:::-;;;;;;;;;51310:18:::1;51338:13;:11;:13::i;:::-;51310:42;;51360:16;51401:9;;:16;;51381:17;:36;;;;;;:::i;:::-;51360:57;;51461:9;;;;;;;;;;;51432:38;;51446:11;51432;:25;;;;;;:::i;:::-;:38;;51424:70;;;;;;;;;;;;:::i;:::-;;;;;;;;;51507:9;51502:116;51526:9;;:16;;51522:1;:20;51502:116;;;51564:42;51574:9;;51584:1;51574:12;;;;;;;:::i;:::-;;;;;;;;;;;;;;;:::i;:::-;51588:17;51564:42;;:9;:42::i;:::-;51544:3;;;;;:::i;:::-;;;;51502:116;;;;51627:24;;;51659:18;;;51302:381;;51210:473:::0;;;:::o;49486:30::-;;;;;;;;;;;;;:::o;49740:53::-;;;;;;;;;;;;;;;;;;;;;;:::o;30225:164::-;30322:4;30346:18;:25;30365:5;30346:25;;;;;;;;;;;;;;;:35;30372:8;30346:35;;;;;;;;;;;;;;;;;;;;;;;;;30339:42;;30225:164;;;;:::o;49399:23::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;44055:201::-;43376:12;:10;:12::i;:::-;43365:23;;:7;:5;:7::i;:::-;:23;;;43357:69;;;;;;;;;;;;:::i;:::-;;;;;;;;;44164:1:::1;44144:22;;:8;:22;;::::0;44136:73:::1;;;;;;;;;;;;:::i;:::-;;;;;;;;;44220:28;44239:8;44220:18;:28::i;:::-;44055:201:::0;:::o;49562:43::-;;;;;;;;;;;;;:::o;7502:157::-;7587:4;7626:25;7611:40;;;:11;:40;;;;7604:47;;7502:157;;;:::o;17952:98::-;18005:7;18032:10;18025:17;;17952:98;:::o;31577:187::-;31634:4;31677:7;31658:15;:13;:15::i;:::-;:26;;:53;;;;;31698:13;;31688:7;:23;31658:53;:98;;;;;31729:11;:20;31741:7;31729:20;;;;;;;;;;;:27;;;;;;;;;;;;31728:28;31658:98;31651:105;;31577:187;;;:::o;39747:196::-;39889:2;39862:15;:24;39878:7;39862:24;;;;;;;;;;;;:29;;;;;;;;;;;;;;;;;;39927:7;39923:2;39907:28;;39916:5;39907:28;;;;;;;;;;;;39747:196;;;:::o;23998:92::-;24054:7;23998:92;:::o;30456:170::-;30590:28;30600:4;30606:2;30610:7;30590:9;:28::i;:::-;30456:170;;;:::o;31772:104::-;31841:27;31851:2;31855:8;31841:27;;;;;;;;;;;;:9;:27::i;:::-;31772:104;;:::o;30697:185::-;30835:39;30852:4;30858:2;30862:7;30835:39;;;;;;;;;;;;:16;:39::i;:::-;30697:185;;;:::o;26725:1109::-;26787:21;;:::i;:::-;26821:12;26836:7;26821:22;;26904:4;26885:15;:13;:15::i;:::-;:23;;:47;;;;;26919:13;;26912:4;:20;26885:47;26881:886;;;26953:31;26987:11;:17;26999:4;26987:17;;;;;;;;;;;26953:51;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;27028:9;:16;;;27023:729;;27099:1;27073:28;;:9;:14;;;:28;;;27069:101;;27137:9;27130:16;;;;;;27069:101;27472:261;27479:4;27472:261;;;27512:6;;;;;;;;27557:11;:17;27569:4;27557:17;;;;;;;;;;;27545:29;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;27631:1;27605:28;;:9;:14;;;:28;;;27601:109;;27673:9;27666:16;;;;;;27601:109;27472:261;;;27023:729;26934:833;26881:886;27795:31;;;;;;;;;;;;;;26725:1109;;;;:::o;44416:191::-;44490:16;44509:6;;;;;;;;;;;44490:25;;44535:8;44526:6;;:17;;;;;;;;;;;;;;;;;;44590:8;44559:40;;44580:8;44559:40;;;;;;;;;;;;44479:128;44416:191;:::o;30953:369::-;31120:28;31130:4;31136:2;31140:7;31120:9;:28::i;:::-;31163:15;:2;:13;;;:15::i;:::-;:76;;;;;31183:56;31214:4;31220:2;31224:7;31233:5;31183:30;:56::i;:::-;31182:57;31163:76;31159:156;;;31263:40;;;;;;;;;;;;;;31159:156;30953:369;;;;:::o;53185:97::-;53238:13;53267:9;53260:16;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;53185:97;:::o;18596:723::-;18652:13;18882:1;18873:5;:10;18869:53;;18900:10;;;;;;;;;;;;;;;;;;;;;18869:53;18932:12;18947:5;18932:20;;18963:14;18988:78;19003:1;18995:4;:9;18988:78;;19021:8;;;;;:::i;:::-;;;;19052:2;19044:10;;;;;:::i;:::-;;;18988:78;;;19076:19;19108:6;19098:17;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;19076:39;;19126:154;19142:1;19133:5;:10;19126:154;;19170:1;19160:11;;;;;:::i;:::-;;;19237:2;19229:5;:10;;;;:::i;:::-;19216:2;:24;;;;:::i;:::-;19203:39;;19186:6;19193;19186:14;;;;;;;;:::i;:::-;;;;;:56;;;;;;;;;;;19266:2;19257:11;;;;;:::i;:::-;;;19126:154;;;19304:6;19290:21;;;;;18596:723;;;;:::o;34690:2130::-;34805:35;34843:21;34856:7;34843:12;:21::i;:::-;34805:59;;34903:4;34881:26;;:13;:18;;;:26;;;34877:67;;34916:28;;;;;;;;;;;;;;34877:67;34957:22;34999:4;34983:20;;:12;:10;:12::i;:::-;:20;;;:73;;;;35020:36;35037:4;35043:12;:10;:12::i;:::-;35020:16;:36::i;:::-;34983:73;:126;;;;35097:12;:10;:12::i;:::-;35073:36;;:20;35085:7;35073:11;:20::i;:::-;:36;;;34983:126;34957:153;;35128:17;35123:66;;35154:35;;;;;;;;;;;;;;35123:66;35218:1;35204:16;;:2;:16;;;35200:52;;35229:23;;;;;;;;;;;;;;35200:52;35265:43;35287:4;35293:2;35297:7;35306:1;35265:21;:43::i;:::-;35373:35;35390:1;35394:7;35403:4;35373:8;:35::i;:::-;35734:1;35704:12;:18;35717:4;35704:18;;;;;;;;;;;;;;;:26;;;:31;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;35778:1;35750:12;:16;35763:2;35750:16;;;;;;;;;;;;;;;:24;;;:29;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;35796:31;35830:11;:20;35842:7;35830:20;;;;;;;;;;;35796:54;;35881:2;35865:8;:13;;;:18;;;;;;;;;;;;;;;;;;35931:15;35898:8;:23;;;:49;;;;;;;;;;;;;;;;;;36199:19;36231:1;36221:7;:11;36199:33;;36247:31;36281:11;:24;36293:11;36281:24;;;;;;;;;;;36247:58;;36349:1;36324:27;;:8;:13;;;;;;;;;;;;:27;;;36320:384;;36534:13;;36519:11;:28;36515:174;;36588:4;36572:8;:13;;;:20;;;;;;;;;;;;;;;;;;36641:13;:28;;;36615:8;:23;;;:54;;;;;;;;;;;;;;;;;;36515:174;36320:384;35679:1036;;;36751:7;36747:2;36732:27;;36741:4;36732:27;;;;;;;;;;;;36770:42;36791:4;36797:2;36801:7;36810:1;36770:20;:42::i;:::-;34794:2026;;34690:2130;;;:::o;32239:163::-;32362:32;32368:2;32372:8;32382:5;32389:4;32362:5;:32::i;:::-;32239:163;;;:::o;9953:326::-;10013:4;10270:1;10248:7;:19;;;:23;10241:30;;9953:326;;;:::o;40435:667::-;40598:4;40635:2;40619:36;;;40656:12;:10;:12::i;:::-;40670:4;40676:7;40685:5;40619:72;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;40615:480;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;40870:1;40853:6;:13;:18;40849:235;;40899:40;;;;;;;;;;;;;;40849:235;41042:6;41036:13;41027:6;41023:2;41019:15;41012:38;40615:480;40748:45;;;40738:55;;;:6;:55;;;;40731:62;;;40435:667;;;;;;:::o;41750:159::-;;;;;:::o;42568:158::-;;;;;:::o;32661:1775::-;32800:20;32823:13;;32800:36;;32865:1;32851:16;;:2;:16;;;32847:48;;32876:19;;;;;;;;;;;;;;32847:48;32922:1;32910:8;:13;32906:44;;32932:18;;;;;;;;;;;;;;32906:44;32963:61;32993:1;32997:2;33001:12;33015:8;32963:21;:61::i;:::-;33336:8;33301:12;:16;33314:2;33301:16;;;;;;;;;;;;;;;:24;;;:44;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;33400:8;33360:12;:16;33373:2;33360:16;;;;;;;;;;;;;;;:29;;;:49;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;33459:2;33426:11;:25;33438:12;33426:25;;;;;;;;;;;:30;;;:35;;;;;;;;;;;;;;;;;;33526:15;33476:11;:25;33488:12;33476:25;;;;;;;;;;;:40;;;:66;;;;;;;;;;;;;;;;;;33559:20;33582:12;33559:35;;33609:11;33638:8;33623:12;:23;33609:37;;33667:4;:23;;;;;33675:15;:2;:13;;;:15::i;:::-;33667:23;33663:641;;;33711:314;33767:12;33763:2;33742:38;;33759:1;33742:38;;;;;;;;;;;;33808:69;33847:1;33851:2;33855:14;;;;;;33871:5;33808:30;:69::i;:::-;33803:174;;33913:40;;;;;;;;;;;;;;33803:174;34020:3;34004:12;:19;33711:314;;34106:12;34089:13;;:29;34085:43;;34120:8;;;34085:43;33663:641;;;34169:120;34225:14;;;;;;34221:2;34200:40;;34217:1;34200:40;;;;;;;;;;;;34284:3;34268:12;:19;34169:120;;33663:641;34334:12;34318:13;:28;;;;33276:1082;;34368:60;34397:1;34401:2;34405:12;34419:8;34368:20;:60::i;:::-;32789:1647;32661:1775;;;;:::o;-1:-1:-1:-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;:::-;;;;;;;;;;;;;;;;;;;;;:::o;7:75:1:-;40:6;73:2;67:9;57:19;;7:75;:::o;88:117::-;197:1;194;187:12;211:117;320:1;317;310:12;334:149;370:7;410:66;403:5;399:78;388:89;;334:149;;;:::o;489:120::-;561:23;578:5;561:23;:::i;:::-;554:5;551:34;541:62;;599:1;596;589:12;541:62;489:120;:::o;615:137::-;660:5;698:6;685:20;676:29;;714:32;740:5;714:32;:::i;:::-;615:137;;;;:::o;758:327::-;816:6;865:2;853:9;844:7;840:23;836:32;833:119;;;871:79;;:::i;:::-;833:119;991:1;1016:52;1060:7;1051:6;1040:9;1036:22;1016:52;:::i;:::-;1006:62;;962:116;758:327;;;;:::o;1091:90::-;1125:7;1168:5;1161:13;1154:21;1143:32;;1091:90;;;:::o;1187:109::-;1268:21;1283:5;1268:21;:::i;:::-;1263:3;1256:34;1187:109;;:::o;1302:210::-;1389:4;1427:2;1416:9;1412:18;1404:26;;1440:65;1502:1;1491:9;1487:17;1478:6;1440:65;:::i;:::-;1302:210;;;;:::o;1518:89::-;1554:7;1594:6;1587:5;1583:18;1572:29;;1518:89;;;:::o;1613:120::-;1685:23;1702:5;1685:23;:::i;:::-;1678:5;1675:34;1665:62;;1723:1;1720;1713:12;1665:62;1613:120;:::o;1739:137::-;1784:5;1822:6;1809:20;1800:29;;1838:32;1864:5;1838:32;:::i;:::-;1739:137;;;;:::o;1882:327::-;1940:6;1989:2;1977:9;1968:7;1964:23;1960:32;1957:119;;;1995:79;;:::i;:::-;1957:119;2115:1;2140:52;2184:7;2175:6;2164:9;2160:22;2140:52;:::i;:::-;2130:62;;2086:116;1882:327;;;;:::o;2215:99::-;2267:6;2301:5;2295:12;2285:22;;2215:99;;;:::o;2320:169::-;2404:11;2438:6;2433:3;2426:19;2478:4;2473:3;2469:14;2454:29;;2320:169;;;;:::o;2495:307::-;2563:1;2573:113;2587:6;2584:1;2581:13;2573:113;;;2672:1;2667:3;2663:11;2657:18;2653:1;2648:3;2644:11;2637:39;2609:2;2606:1;2602:10;2597:15;;2573:113;;;2704:6;2701:1;2698:13;2695:101;;;2784:1;2775:6;2770:3;2766:16;2759:27;2695:101;2544:258;2495:307;;;:::o;2808:102::-;2849:6;2900:2;2896:7;2891:2;2884:5;2880:14;2876:28;2866:38;;2808:102;;;:::o;2916:364::-;3004:3;3032:39;3065:5;3032:39;:::i;:::-;3087:71;3151:6;3146:3;3087:71;:::i;:::-;3080:78;;3167:52;3212:6;3207:3;3200:4;3193:5;3189:16;3167:52;:::i;:::-;3244:29;3266:6;3244:29;:::i;:::-;3239:3;3235:39;3228:46;;3008:272;2916:364;;;;:::o;3286:313::-;3399:4;3437:2;3426:9;3422:18;3414:26;;3486:9;3480:4;3476:20;3472:1;3461:9;3457:17;3450:47;3514:78;3587:4;3578:6;3514:78;:::i;:::-;3506:86;;3286:313;;;;:::o;3605:77::-;3642:7;3671:5;3660:16;;3605:77;;;:::o;3688:122::-;3761:24;3779:5;3761:24;:::i;:::-;3754:5;3751:35;3741:63;;3800:1;3797;3790:12;3741:63;3688:122;:::o;3816:139::-;3862:5;3900:6;3887:20;3878:29;;3916:33;3943:5;3916:33;:::i;:::-;3816:139;;;;:::o;3961:329::-;4020:6;4069:2;4057:9;4048:7;4044:23;4040:32;4037:119;;;4075:79;;:::i;:::-;4037:119;4195:1;4220:53;4265:7;4256:6;4245:9;4241:22;4220:53;:::i;:::-;4210:63;;4166:117;3961:329;;;;:::o;4296:126::-;4333:7;4373:42;4366:5;4362:54;4351:65;;4296:126;;;:::o;4428:96::-;4465:7;4494:24;4512:5;4494:24;:::i;:::-;4483:35;;4428:96;;;:::o;4530:118::-;4617:24;4635:5;4617:24;:::i;:::-;4612:3;4605:37;4530:118;;:::o;4654:222::-;4747:4;4785:2;4774:9;4770:18;4762:26;;4798:71;4866:1;4855:9;4851:17;4842:6;4798:71;:::i;:::-;4654:222;;;;:::o;4882:122::-;4955:24;4973:5;4955:24;:::i;:::-;4948:5;4945:35;4935:63;;4994:1;4991;4984:12;4935:63;4882:122;:::o;5010:139::-;5056:5;5094:6;5081:20;5072:29;;5110:33;5137:5;5110:33;:::i;:::-;5010:139;;;;:::o;5155:474::-;5223:6;5231;5280:2;5268:9;5259:7;5255:23;5251:32;5248:119;;;5286:79;;:::i;:::-;5248:119;5406:1;5431:53;5476:7;5467:6;5456:9;5452:22;5431:53;:::i;:::-;5421:63;;5377:117;5533:2;5559:53;5604:7;5595:6;5584:9;5580:22;5559:53;:::i;:::-;5549:63;;5504:118;5155:474;;;;;:::o;5635:117::-;5744:1;5741;5734:12;5758:117;5867:1;5864;5857:12;5881:180;5929:77;5926:1;5919:88;6026:4;6023:1;6016:15;6050:4;6047:1;6040:15;6067:281;6150:27;6172:4;6150:27;:::i;:::-;6142:6;6138:40;6280:6;6268:10;6265:22;6244:18;6232:10;6229:34;6226:62;6223:88;;;6291:18;;:::i;:::-;6223:88;6331:10;6327:2;6320:22;6110:238;6067:281;;:::o;6354:129::-;6388:6;6415:20;;:::i;:::-;6405:30;;6444:33;6472:4;6464:6;6444:33;:::i;:::-;6354:129;;;:::o;6489:308::-;6551:4;6641:18;6633:6;6630:30;6627:56;;;6663:18;;:::i;:::-;6627:56;6701:29;6723:6;6701:29;:::i;:::-;6693:37;;6785:4;6779;6775:15;6767:23;;6489:308;;;:::o;6803:154::-;6887:6;6882:3;6877;6864:30;6949:1;6940:6;6935:3;6931:16;6924:27;6803:154;;;:::o;6963:412::-;7041:5;7066:66;7082:49;7124:6;7082:49;:::i;:::-;7066:66;:::i;:::-;7057:75;;7155:6;7148:5;7141:21;7193:4;7186:5;7182:16;7231:3;7222:6;7217:3;7213:16;7210:25;7207:112;;;7238:79;;:::i;:::-;7207:112;7328:41;7362:6;7357:3;7352;7328:41;:::i;:::-;7047:328;6963:412;;;;;:::o;7395:340::-;7451:5;7500:3;7493:4;7485:6;7481:17;7477:27;7467:122;;7508:79;;:::i;:::-;7467:122;7625:6;7612:20;7650:79;7725:3;7717:6;7710:4;7702:6;7698:17;7650:79;:::i;:::-;7641:88;;7457:278;7395:340;;;;:::o;7741:509::-;7810:6;7859:2;7847:9;7838:7;7834:23;7830:32;7827:119;;;7865:79;;:::i;:::-;7827:119;8013:1;8002:9;7998:17;7985:31;8043:18;8035:6;8032:30;8029:117;;;8065:79;;:::i;:::-;8029:117;8170:63;8225:7;8216:6;8205:9;8201:22;8170:63;:::i;:::-;8160:73;;7956:287;7741:509;;;;:::o;8256:118::-;8343:24;8361:5;8343:24;:::i;:::-;8338:3;8331:37;8256:118;;:::o;8380:222::-;8473:4;8511:2;8500:9;8496:18;8488:26;;8524:71;8592:1;8581:9;8577:17;8568:6;8524:71;:::i;:::-;8380:222;;;;:::o;8608:619::-;8685:6;8693;8701;8750:2;8738:9;8729:7;8725:23;8721:32;8718:119;;;8756:79;;:::i;:::-;8718:119;8876:1;8901:53;8946:7;8937:6;8926:9;8922:22;8901:53;:::i;:::-;8891:63;;8847:117;9003:2;9029:53;9074:7;9065:6;9054:9;9050:22;9029:53;:::i;:::-;9019:63;;8974:118;9131:2;9157:53;9202:7;9193:6;9182:9;9178:22;9157:53;:::i;:::-;9147:63;;9102:118;8608:619;;;;;:::o;9233:472::-;9300:6;9308;9357:2;9345:9;9336:7;9332:23;9328:32;9325:119;;;9363:79;;:::i;:::-;9325:119;9483:1;9508:52;9552:7;9543:6;9532:9;9528:22;9508:52;:::i;:::-;9498:62;;9454:116;9609:2;9635:53;9680:7;9671:6;9660:9;9656:22;9635:53;:::i;:::-;9625:63;;9580:118;9233:472;;;;;:::o;9711:86::-;9746:7;9786:4;9779:5;9775:16;9764:27;;9711:86;;;:::o;9803:118::-;9874:22;9890:5;9874:22;:::i;:::-;9867:5;9864:33;9854:61;;9911:1;9908;9901:12;9854:61;9803:118;:::o;9927:135::-;9971:5;10009:6;9996:20;9987:29;;10025:31;10050:5;10025:31;:::i;:::-;9927:135;;;;:::o;10068:325::-;10125:6;10174:2;10162:9;10153:7;10149:23;10145:32;10142:119;;;10180:79;;:::i;:::-;10142:119;10300:1;10325:51;10368:7;10359:6;10348:9;10344:22;10325:51;:::i;:::-;10315:61;;10271:115;10068:325;;;;:::o;10399:329::-;10458:6;10507:2;10495:9;10486:7;10482:23;10478:32;10475:119;;;10513:79;;:::i;:::-;10475:119;10633:1;10658:53;10703:7;10694:6;10683:9;10679:22;10658:53;:::i;:::-;10648:63;;10604:117;10399:329;;;;:::o;10734:112::-;10817:22;10833:5;10817:22;:::i;:::-;10812:3;10805:35;10734:112;;:::o;10852:214::-;10941:4;10979:2;10968:9;10964:18;10956:26;;10992:67;11056:1;11045:9;11041:17;11032:6;10992:67;:::i;:::-;10852:214;;;;:::o;11072:116::-;11142:21;11157:5;11142:21;:::i;:::-;11135:5;11132:32;11122:60;;11178:1;11175;11168:12;11122:60;11072:116;:::o;11194:133::-;11237:5;11275:6;11262:20;11253:29;;11291:30;11315:5;11291:30;:::i;:::-;11194:133;;;;:::o;11333:468::-;11398:6;11406;11455:2;11443:9;11434:7;11430:23;11426:32;11423:119;;;11461:79;;:::i;:::-;11423:119;11581:1;11606:53;11651:7;11642:6;11631:9;11627:22;11606:53;:::i;:::-;11596:63;;11552:117;11708:2;11734:50;11776:7;11767:6;11756:9;11752:22;11734:50;:::i;:::-;11724:60;;11679:115;11333:468;;;;;:::o;11807:307::-;11868:4;11958:18;11950:6;11947:30;11944:56;;;11980:18;;:::i;:::-;11944:56;12018:29;12040:6;12018:29;:::i;:::-;12010:37;;12102:4;12096;12092:15;12084:23;;11807:307;;;:::o;12120:410::-;12197:5;12222:65;12238:48;12279:6;12238:48;:::i;:::-;12222:65;:::i;:::-;12213:74;;12310:6;12303:5;12296:21;12348:4;12341:5;12337:16;12386:3;12377:6;12372:3;12368:16;12365:25;12362:112;;;12393:79;;:::i;:::-;12362:112;12483:41;12517:6;12512:3;12507;12483:41;:::i;:::-;12203:327;12120:410;;;;;:::o;12549:338::-;12604:5;12653:3;12646:4;12638:6;12634:17;12630:27;12620:122;;12661:79;;:::i;:::-;12620:122;12778:6;12765:20;12803:78;12877:3;12869:6;12862:4;12854:6;12850:17;12803:78;:::i;:::-;12794:87;;12610:277;12549:338;;;;:::o;12893:943::-;12988:6;12996;13004;13012;13061:3;13049:9;13040:7;13036:23;13032:33;13029:120;;;13068:79;;:::i;:::-;13029:120;13188:1;13213:53;13258:7;13249:6;13238:9;13234:22;13213:53;:::i;:::-;13203:63;;13159:117;13315:2;13341:53;13386:7;13377:6;13366:9;13362:22;13341:53;:::i;:::-;13331:63;;13286:118;13443:2;13469:53;13514:7;13505:6;13494:9;13490:22;13469:53;:::i;:::-;13459:63;;13414:118;13599:2;13588:9;13584:18;13571:32;13630:18;13622:6;13619:30;13616:117;;;13652:79;;:::i;:::-;13616:117;13757:62;13811:7;13802:6;13791:9;13787:22;13757:62;:::i;:::-;13747:72;;13542:287;12893:943;;;;;;;:::o;13842:117::-;13951:1;13948;13941:12;13965:117;14074:1;14071;14064:12;14105:568;14178:8;14188:6;14238:3;14231:4;14223:6;14219:17;14215:27;14205:122;;14246:79;;:::i;:::-;14205:122;14359:6;14346:20;14336:30;;14389:18;14381:6;14378:30;14375:117;;;14411:79;;:::i;:::-;14375:117;14525:4;14517:6;14513:17;14501:29;;14579:3;14571:4;14563:6;14559:17;14549:8;14545:32;14542:41;14539:128;;;14586:79;;:::i;:::-;14539:128;14105:568;;;;;:::o;14679:700::-;14772:6;14780;14788;14837:2;14825:9;14816:7;14812:23;14808:32;14805:119;;;14843:79;;:::i;:::-;14805:119;14963:1;14988:51;15031:7;15022:6;15011:9;15007:22;14988:51;:::i;:::-;14978:61;;14934:115;15116:2;15105:9;15101:18;15088:32;15147:18;15139:6;15136:30;15133:117;;;15169:79;;:::i;:::-;15133:117;15282:80;15354:7;15345:6;15334:9;15330:22;15282:80;:::i;:::-;15264:98;;;;15059:313;14679:700;;;;;:::o;15385:115::-;15470:23;15487:5;15470:23;:::i;:::-;15465:3;15458:36;15385:115;;:::o;15506:218::-;15597:4;15635:2;15624:9;15620:18;15612:26;;15648:69;15714:1;15703:9;15699:17;15690:6;15648:69;:::i;:::-;15506:218;;;;:::o;15730:474::-;15798:6;15806;15855:2;15843:9;15834:7;15830:23;15826:32;15823:119;;;15861:79;;:::i;:::-;15823:119;15981:1;16006:53;16051:7;16042:6;16031:9;16027:22;16006:53;:::i;:::-;15996:63;;15952:117;16108:2;16134:53;16179:7;16170:6;16159:9;16155:22;16134:53;:::i;:::-;16124:63;;16079:118;15730:474;;;;;:::o;16210:182::-;16350:34;16346:1;16338:6;16334:14;16327:58;16210:182;:::o;16398:366::-;16540:3;16561:67;16625:2;16620:3;16561:67;:::i;:::-;16554:74;;16637:93;16726:3;16637:93;:::i;:::-;16755:2;16750:3;16746:12;16739:19;;16398:366;;;:::o;16770:419::-;16936:4;16974:2;16963:9;16959:18;16951:26;;17023:9;17017:4;17013:20;17009:1;16998:9;16994:17;16987:47;17051:131;17177:4;17051:131;:::i;:::-;17043:139;;16770:419;;;:::o;17195:180::-;17243:77;17240:1;17233:88;17340:4;17337:1;17330:15;17364:4;17361:1;17354:15;17381:320;17425:6;17462:1;17456:4;17452:12;17442:22;;17509:1;17503:4;17499:12;17530:18;17520:81;;17586:4;17578:6;17574:17;17564:27;;17520:81;17648:2;17640:6;17637:14;17617:18;17614:38;17611:84;;17667:18;;:::i;:::-;17611:84;17432:269;17381:320;;;:::o;17707:332::-;17828:4;17866:2;17855:9;17851:18;17843:26;;17879:71;17947:1;17936:9;17932:17;17923:6;17879:71;:::i;:::-;17960:72;18028:2;18017:9;18013:18;18004:6;17960:72;:::i;:::-;17707:332;;;;;:::o;18045:137::-;18099:5;18130:6;18124:13;18115:22;;18146:30;18170:5;18146:30;:::i;:::-;18045:137;;;;:::o;18188:345::-;18255:6;18304:2;18292:9;18283:7;18279:23;18275:32;18272:119;;;18310:79;;:::i;:::-;18272:119;18430:1;18455:61;18508:7;18499:6;18488:9;18484:22;18455:61;:::i;:::-;18445:71;;18401:125;18188:345;;;;:::o;18539:180::-;18587:77;18584:1;18577:88;18684:4;18681:1;18674:15;18708:4;18705:1;18698:15;18725:242;18764:3;18783:19;18800:1;18783:19;:::i;:::-;18778:24;;18816:19;18833:1;18816:19;:::i;:::-;18811:24;;18909:1;18901:6;18897:14;18894:1;18891:21;18888:47;;;18915:18;;:::i;:::-;18888:47;18959:1;18956;18952:9;18945:16;;18725:242;;;;:::o;18973:169::-;19113:21;19109:1;19101:6;19097:14;19090:45;18973:169;:::o;19148:366::-;19290:3;19311:67;19375:2;19370:3;19311:67;:::i;:::-;19304:74;;19387:93;19476:3;19387:93;:::i;:::-;19505:2;19500:3;19496:12;19489:19;;19148:366;;;:::o;19520:419::-;19686:4;19724:2;19713:9;19709:18;19701:26;;19773:9;19767:4;19763:20;19759:1;19748:9;19744:17;19737:47;19801:131;19927:4;19801:131;:::i;:::-;19793:139;;19520:419;;;:::o;19945:237::-;19983:3;20002:18;20018:1;20002:18;:::i;:::-;19997:23;;20034:18;20050:1;20034:18;:::i;:::-;20029:23;;20124:1;20118:4;20114:12;20111:1;20108:19;20105:45;;;20130:18;;:::i;:::-;20105:45;20174:1;20171;20167:9;20160:16;;19945:237;;;;:::o;20188:178::-;20328:30;20324:1;20316:6;20312:14;20305:54;20188:178;:::o;20372:366::-;20514:3;20535:67;20599:2;20594:3;20535:67;:::i;:::-;20528:74;;20611:93;20700:3;20611:93;:::i;:::-;20729:2;20724:3;20720:12;20713:19;;20372:366;;;:::o;20744:419::-;20910:4;20948:2;20937:9;20933:18;20925:26;;20997:9;20991:4;20987:20;20983:1;20972:9;20968:17;20961:47;21025:131;21151:4;21025:131;:::i;:::-;21017:139;;20744:419;;;:::o;21169:173::-;21309:25;21305:1;21297:6;21293:14;21286:49;21169:173;:::o;21348:366::-;21490:3;21511:67;21575:2;21570:3;21511:67;:::i;:::-;21504:74;;21587:93;21676:3;21587:93;:::i;:::-;21705:2;21700:3;21696:12;21689:19;;21348:366;;;:::o;21720:419::-;21886:4;21924:2;21913:9;21909:18;21901:26;;21973:9;21967:4;21963:20;21959:1;21948:9;21944:17;21937:47;22001:131;22127:4;22001:131;:::i;:::-;21993:139;;21720:419;;;:::o;22145:348::-;22185:7;22208:20;22226:1;22208:20;:::i;:::-;22203:25;;22242:20;22260:1;22242:20;:::i;:::-;22237:25;;22430:1;22362:66;22358:74;22355:1;22352:81;22347:1;22340:9;22333:17;22329:105;22326:131;;;22437:18;;:::i;:::-;22326:131;22485:1;22482;22478:9;22467:20;;22145:348;;;;:::o;22499:169::-;22639:21;22635:1;22627:6;22623:14;22616:45;22499:169;:::o;22674:366::-;22816:3;22837:67;22901:2;22896:3;22837:67;:::i;:::-;22830:74;;22913:93;23002:3;22913:93;:::i;:::-;23031:2;23026:3;23022:12;23015:19;;22674:366;;;:::o;23046:419::-;23212:4;23250:2;23239:9;23235:18;23227:26;;23299:9;23293:4;23289:20;23285:1;23274:9;23270:17;23263:47;23327:131;23453:4;23327:131;:::i;:::-;23319:139;;23046:419;;;:::o;23471:185::-;23509:4;23529:18;23545:1;23529:18;:::i;:::-;23524:23;;23561:18;23577:1;23561:18;:::i;:::-;23556:23;;23598:1;23595;23592:8;23589:34;;;23603:18;;:::i;:::-;23589:34;23648:1;23645;23641:9;23633:17;;23471:185;;;;:::o;23662:234::-;23802:34;23798:1;23790:6;23786:14;23779:58;23871:17;23866:2;23858:6;23854:15;23847:42;23662:234;:::o;23902:366::-;24044:3;24065:67;24129:2;24124:3;24065:67;:::i;:::-;24058:74;;24141:93;24230:3;24141:93;:::i;:::-;24259:2;24254:3;24250:12;24243:19;;23902:366;;;:::o;24274:419::-;24440:4;24478:2;24467:9;24463:18;24455:26;;24527:9;24521:4;24517:20;24513:1;24502:9;24498:17;24491:47;24555:131;24681:4;24555:131;:::i;:::-;24547:139;;24274:419;;;:::o;24699:148::-;24801:11;24838:3;24823:18;;24699:148;;;;:::o;24853:377::-;24959:3;24987:39;25020:5;24987:39;:::i;:::-;25042:89;25124:6;25119:3;25042:89;:::i;:::-;25035:96;;25140:52;25185:6;25180:3;25173:4;25166:5;25162:16;25140:52;:::i;:::-;25217:6;25212:3;25208:16;25201:23;;24963:267;24853:377;;;;:::o;25236:141::-;25285:4;25308:3;25300:11;;25331:3;25328:1;25321:14;25365:4;25362:1;25352:18;25344:26;;25236:141;;;:::o;25407:845::-;25510:3;25547:5;25541:12;25576:36;25602:9;25576:36;:::i;:::-;25628:89;25710:6;25705:3;25628:89;:::i;:::-;25621:96;;25748:1;25737:9;25733:17;25764:1;25759:137;;;;25910:1;25905:341;;;;25726:520;;25759:137;25843:4;25839:9;25828;25824:25;25819:3;25812:38;25879:6;25874:3;25870:16;25863:23;;25759:137;;25905:341;25972:38;26004:5;25972:38;:::i;:::-;26032:1;26046:154;26060:6;26057:1;26054:13;26046:154;;;26134:7;26128:14;26124:1;26119:3;26115:11;26108:35;26184:1;26175:7;26171:15;26160:26;;26082:4;26079:1;26075:12;26070:17;;26046:154;;;26229:6;26224:3;26220:16;26213:23;;25912:334;;25726:520;;25514:738;;25407:845;;;;:::o;26258:589::-;26483:3;26505:95;26596:3;26587:6;26505:95;:::i;:::-;26498:102;;26617:95;26708:3;26699:6;26617:95;:::i;:::-;26610:102;;26729:92;26817:3;26808:6;26729:92;:::i;:::-;26722:99;;26838:3;26831:10;;26258:589;;;;;;:::o;26853:305::-;26893:3;26912:20;26930:1;26912:20;:::i;:::-;26907:25;;26946:20;26964:1;26946:20;:::i;:::-;26941:25;;27100:1;27032:66;27028:74;27025:1;27022:81;27019:107;;;27106:18;;:::i;:::-;27019:107;27150:1;27147;27143:9;27136:16;;26853:305;;;;:::o;27164:180::-;27212:77;27209:1;27202:88;27309:4;27306:1;27299:15;27333:4;27330:1;27323:15;27350:233;27389:3;27412:24;27430:5;27412:24;:::i;:::-;27403:33;;27458:66;27451:5;27448:77;27445:103;;27528:18;;:::i;:::-;27445:103;27575:1;27568:5;27564:13;27557:20;;27350:233;;;:::o;27589:225::-;27729:34;27725:1;27717:6;27713:14;27706:58;27798:8;27793:2;27785:6;27781:15;27774:33;27589:225;:::o;27820:366::-;27962:3;27983:67;28047:2;28042:3;27983:67;:::i;:::-;27976:74;;28059:93;28148:3;28059:93;:::i;:::-;28177:2;28172:3;28168:12;28161:19;;27820:366;;;:::o;28192:419::-;28358:4;28396:2;28385:9;28381:18;28373:26;;28445:9;28439:4;28435:20;28431:1;28420:9;28416:17;28409:47;28473:131;28599:4;28473:131;:::i;:::-;28465:139;;28192:419;;;:::o;28617:180::-;28665:77;28662:1;28655:88;28762:4;28759:1;28752:15;28786:4;28783:1;28776:15;28803:185;28843:1;28860:20;28878:1;28860:20;:::i;:::-;28855:25;;28894:20;28912:1;28894:20;:::i;:::-;28889:25;;28933:1;28923:35;;28938:18;;:::i;:::-;28923:35;28980:1;28977;28973:9;28968:14;;28803:185;;;;:::o;28994:191::-;29034:4;29054:20;29072:1;29054:20;:::i;:::-;29049:25;;29088:20;29106:1;29088:20;:::i;:::-;29083:25;;29127:1;29124;29121:8;29118:34;;;29132:18;;:::i;:::-;29118:34;29177:1;29174;29170:9;29162:17;;28994:191;;;;:::o;29191:176::-;29223:1;29240:20;29258:1;29240:20;:::i;:::-;29235:25;;29274:20;29292:1;29274:20;:::i;:::-;29269:25;;29313:1;29303:35;;29318:18;;:::i;:::-;29303:35;29359:1;29356;29352:9;29347:14;;29191:176;;;;:::o;29373:98::-;29424:6;29458:5;29452:12;29442:22;;29373:98;;;:::o;29477:168::-;29560:11;29594:6;29589:3;29582:19;29634:4;29629:3;29625:14;29610:29;;29477:168;;;;:::o;29651:360::-;29737:3;29765:38;29797:5;29765:38;:::i;:::-;29819:70;29882:6;29877:3;29819:70;:::i;:::-;29812:77;;29898:52;29943:6;29938:3;29931:4;29924:5;29920:16;29898:52;:::i;:::-;29975:29;29997:6;29975:29;:::i;:::-;29970:3;29966:39;29959:46;;29741:270;29651:360;;;;:::o;30017:640::-;30212:4;30250:3;30239:9;30235:19;30227:27;;30264:71;30332:1;30321:9;30317:17;30308:6;30264:71;:::i;:::-;30345:72;30413:2;30402:9;30398:18;30389:6;30345:72;:::i;:::-;30427;30495:2;30484:9;30480:18;30471:6;30427:72;:::i;:::-;30546:9;30540:4;30536:20;30531:2;30520:9;30516:18;30509:48;30574:76;30645:4;30636:6;30574:76;:::i;:::-;30566:84;;30017:640;;;;;;;:::o;30663:141::-;30719:5;30750:6;30744:13;30735:22;;30766:32;30792:5;30766:32;:::i;:::-;30663:141;;;;:::o;30810:349::-;30879:6;30928:2;30916:9;30907:7;30903:23;30899:32;30896:119;;;30934:79;;:::i;:::-;30896:119;31054:1;31079:63;31134:7;31125:6;31114:9;31110:22;31079:63;:::i;:::-;31069:73;;31025:127;30810:349;;;;:::o

Swarm Source

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