ETH Price: $3,428.60 (-1.69%)
Gas: 3 Gwei

Token

Cranky Ape Yacht Club (CAYC)
 

Overview

Max Total Supply

7,777 CAYC

Holders

3,395

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A
Balance
1 CAYC
0x145df293285d76a035b6932510869ebd43db6671
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:
CrankyApeYachtClub

Compiler Version
v0.8.9+commit.e5eed63a

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

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

// SPDX-License-Identifier: MIT

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

// OpenZeppelin Contracts v4.4.1 (utils/Strings.sol)
                              
pragma solidity ^0.8.0;

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

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

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

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

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

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


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

pragma solidity ^0.8.0;

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

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

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


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

pragma solidity ^0.8.1;

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

        return account.code.length > 0;
    }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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


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

pragma solidity ^0.8.0;

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

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


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

pragma solidity ^0.8.0;

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

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


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

pragma solidity ^0.8.0;


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

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


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

pragma solidity ^0.8.0;


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

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

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

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

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

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

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

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

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

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

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

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

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


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

pragma solidity ^0.8.0;


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

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

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

// File: contracts/new.sol




pragma solidity ^0.8.4;








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

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

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

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

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

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

    // Token name
    string private _name;

    // Token symbol
    string private _symbol;

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

        _approve(to, tokenId, owner);
    }

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

        return _tokenApprovals[tokenId];
    }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

        _beforeTokenTransfers(from, to, tokenId, 1);

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

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

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

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

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

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

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

        address from = prevOwnership.addr;

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

            if (!isApprovedOrOwner) revert TransferCallerNotOwnerNorApproved();
        }

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

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

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

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

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

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

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

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

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

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

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

abstract contract Ownable is Context {
    address private _owner;

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

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

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

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

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

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

    /**
     * @dev Transfers ownership of the contract to a new account (`newOwner`).
     * Internal function without access restriction.
     */
    function _transferOwnership(address newOwner) internal virtual {
        address oldOwner = _owner;
        _owner = newOwner;
        emit OwnershipTransferred(oldOwner, newOwner);
    }
}
    pragma solidity ^0.8.7;
    
    contract CrankyApeYachtClub is ERC721A, Ownable {
    using Strings for uint256;


  string private uriPrefix ;
  string private uriSuffix = ".json";
  string public hiddenURL;

  
  

  uint256 public cost = 0.0035 ether;
  uint256 public whiteListCost = 0 ;
  

  uint16 public maxSupply = 7777;
  uint8 public maxMintAmountPerTx = 20;
    uint8 public maxFreeMintAmountPerWallet = 2;
                                                             
  bool public WLpaused = true;
  bool public paused = true;
  bool public reveal =false;
  mapping (address => uint8) public NFTPerWLAddress;
   mapping (address => uint8) public NFTPerPublicAddress;
  mapping (address => bool) public isWhitelisted;
 
  
  
 
  

  constructor() ERC721A("Cranky Ape Yacht Club", "CAYC") {
  }

  
 
  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, "Excedes 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, "Excedes 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 setWLPaused() external onlyOwner {
    WLpaused = !WLpaused;
  }
  function setWLCost(uint256 _cost) external onlyOwner {
    whiteListCost = _cost;
    delete _cost;
  }



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

}

    
  function addToPresaleWhitelist(address[] calldata entries) external onlyOwner {
        for(uint8 i = 0; i < entries.length; i++) {
            isWhitelisted[entries[i]] = true;
        }   
    }

    function removeFromPresaleWhitelist(address[] calldata entries) external onlyOwner {
        for(uint8 i = 0; i < entries.length; i++) {
             isWhitelisted[entries[i]] = false;
        }
    }

function whitelistMint(uint8 _mintAmount) external payable {
        
    
        uint8 nft = NFTPerWLAddress[msg.sender];
       require(isWhitelisted[msg.sender],  "You are not whitelisted");

       require (nft + _mintAmount <= maxMintAmountPerTx, "Exceeds max  limit  per address");
      


    require(!WLpaused, "Whitelist minting is over!");
         if(nft >= maxFreeMintAmountPerWallet)
    {
    require(msg.value >= whiteListCost * _mintAmount, "Insufficient funds!");
    }
    else {
         uint8 costAmount = _mintAmount + nft;
        if(costAmount > maxFreeMintAmountPerWallet)
       {
        costAmount = costAmount - maxFreeMintAmountPerWallet;
        require(msg.value >= whiteListCost * costAmount, "Insufficient funds!");
       }
       
         
    }
    
    

     _safeMint(msg.sender , _mintAmount);
      NFTPerWLAddress[msg.sender] =nft + _mintAmount;
     
      delete _mintAmount;
       delete nft;
    
    }

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


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

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

Contract Security Audit

Contract ABI

[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"inputs":[],"name":"ApprovalCallerNotOwnerNorApproved","type":"error"},{"inputs":[],"name":"ApprovalQueryForNonexistentToken","type":"error"},{"inputs":[],"name":"ApprovalToCurrentOwner","type":"error"},{"inputs":[],"name":"ApproveToCaller","type":"error"},{"inputs":[],"name":"BalanceQueryForZeroAddress","type":"error"},{"inputs":[],"name":"MintToZeroAddress","type":"error"},{"inputs":[],"name":"MintZeroQuantity","type":"error"},{"inputs":[],"name":"OwnerQueryForNonexistentToken","type":"error"},{"inputs":[],"name":"TransferCallerNotOwnerNorApproved","type":"error"},{"inputs":[],"name":"TransferFromIncorrectOwner","type":"error"},{"inputs":[],"name":"TransferToNonERC721ReceiverImplementer","type":"error"},{"inputs":[],"name":"TransferToZeroAddress","type":"error"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"approved","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[{"internalType":"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":"address","name":"","type":"address"}],"name":"NFTPerWLAddress","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":[],"name":"WLpaused","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address[]","name":"entries","type":"address[]"}],"name":"addToPresaleWhitelist","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":[{"internalType":"address","name":"","type":"address"}],"name":"isWhitelisted","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":[{"internalType":"address[]","name":"entries","type":"address[]"}],"name":"removeFromPresaleWhitelist","outputs":[],"stateMutability":"nonpayable","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":"uint256","name":"_cost","type":"uint256"}],"name":"setWLCost","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"setWLPaused","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":"whiteListCost","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint8","name":"_mintAmount","type":"uint8"}],"name":"whitelistMint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"withdraw","outputs":[],"stateMutability":"nonpayable","type":"function"}]

60806040526040518060400160405280600581526020017f2e6a736f6e000000000000000000000000000000000000000000000000000000815250600a908051906020019062000051929190620002c7565b50660c6f3b40b6c000600c556000600d55611e61600e60006101000a81548161ffff021916908361ffff1602179055506014600e60026101000a81548160ff021916908360ff1602179055506002600e60036101000a81548160ff021916908360ff1602179055506001600e60046101000a81548160ff0219169083151502179055506001600e60056101000a81548160ff0219169083151502179055506000600e60066101000a81548160ff0219169083151502179055503480156200011757600080fd5b506040518060400160405280601581526020017f4372616e6b792041706520596163687420436c756200000000000000000000008152506040518060400160405280600481526020017f434159430000000000000000000000000000000000000000000000000000000081525081600290805190602001906200019c929190620002c7565b508060039080519060200190620001b5929190620002c7565b50620001c6620001f460201b60201c565b6000819055505050620001ee620001e2620001f960201b60201c565b6200020160201b60201c565b620003dc565b600090565b600033905090565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b828054620002d590620003a6565b90600052602060002090601f016020900481019282620002f9576000855562000345565b82601f106200031457805160ff191683800117855562000345565b8280016001018555821562000345579182015b828111156200034457825182559160200191906001019062000327565b5b50905062000354919062000358565b5090565b5b808211156200037357600081600090555060010162000359565b5090565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b60006002820490506001821680620003bf57607f821691505b60208210811415620003d657620003d562000377565b5b50919050565b614d1f80620003ec6000396000f3fe60806040526004361061027d5760003560e01c806370a082311161014f578063a475b5dd116100c1578063d5abeb011161007a578063d5abeb0114610916578063e94053c714610941578063e985e9c51461097e578063eef440af146109bb578063f2fde38b146109e6578063f8bf517214610a0f5761027d565b8063a475b5dd1461080a578063aa06229014610835578063b88d4fde1461085e578063c87b56dd14610887578063cffb6e20146108c4578063d1d19213146108ed5761027d565b80638e07484c116101135780638e07484c1461070e5780638f65fe0a146107375780639257e0441461076057806394354fd01461078b57806395d89b41146107b6578063a22cb465146107e15761027d565b806370a082311461063b578063715018a6146106785780637ec4a6591461068f5780637f6e9093146106b85780638da5cb5b146106e35761027d565b806337a66d85116101f35780634d9c1848116101ac5780634d9c18481461053557806359bf5dbb1461055e5780635c975abb1461059b57806360e85cde146105c65780636352211e146105e25780636ecd23061461061f5761027d565b806337a66d85146104615780633af32abf146104785780633bd64968146104b55780633ccfd60b146104cc57806342842e0e146104e357806344a0d68a1461050c5761027d565b8063095ea7b311610245578063095ea7b3146103675780631067fcc71461039057806313faede6146103b957806318160ddd146103e457806323b872dd1461040f5780632f6f98e1146104385761027d565b806301ffc9a71461028257806306421c2f146102bf57806306fdde03146102e8578063081812fc14610313578063093cfa6314610350575b600080fd5b34801561028e57600080fd5b506102a960048036038101906102a49190613a1c565b610a3a565b6040516102b69190613a64565b60405180910390f35b3480156102cb57600080fd5b506102e660048036038101906102e19190613ab9565b610b1c565b005b3480156102f457600080fd5b506102fd610bb8565b60405161030a9190613b7f565b60405180910390f35b34801561031f57600080fd5b5061033a60048036038101906103359190613bd7565b610c4a565b6040516103479190613c45565b60405180910390f35b34801561035c57600080fd5b50610365610cc6565b005b34801561037357600080fd5b5061038e60048036038101906103899190613c8c565b610d6e565b005b34801561039c57600080fd5b506103b760048036038101906103b29190613e01565b610e79565b005b3480156103c557600080fd5b506103ce610f0f565b6040516103db9190613e59565b60405180910390f35b3480156103f057600080fd5b506103f9610f15565b6040516104069190613e59565b60405180910390f35b34801561041b57600080fd5b5061043660048036038101906104319190613e74565b610f2c565b005b34801561044457600080fd5b5061045f600480360381019061045a9190613ec7565b610f3c565b005b34801561046d57600080fd5b50610476611049565b005b34801561048457600080fd5b5061049f600480360381019061049a9190613f07565b61110c565b6040516104ac9190613a64565b60405180910390f35b3480156104c157600080fd5b506104ca61112c565b005b3480156104d857600080fd5b506104e16111d4565b005b3480156104ef57600080fd5b5061050a60048036038101906105059190613e74565b61129f565b005b34801561051857600080fd5b50610533600480360381019061052e9190613bd7565b6112bf565b005b34801561054157600080fd5b5061055c60048036038101906105579190613f6d565b611345565b005b34801561056a57600080fd5b5061058560048036038101906105809190613f07565b6113e3565b6040516105929190613fa9565b60405180910390f35b3480156105a757600080fd5b506105b0611403565b6040516105bd9190613a64565b60405180910390f35b6105e060048036038101906105db9190613f6d565b611416565b005b3480156105ee57600080fd5b5061060960048036038101906106049190613bd7565b611736565b6040516106169190613c45565b60405180910390f35b61063960048036038101906106349190613f6d565b61174c565b005b34801561064757600080fd5b50610662600480360381019061065d9190613f07565b611a56565b60405161066f9190613e59565b60405180910390f35b34801561068457600080fd5b5061068d611b26565b005b34801561069b57600080fd5b506106b660048036038101906106b19190613e01565b611bae565b005b3480156106c457600080fd5b506106cd611c44565b6040516106da9190613a64565b60405180910390f35b3480156106ef57600080fd5b506106f8611c57565b6040516107059190613c45565b60405180910390f35b34801561071a57600080fd5b5061073560048036038101906107309190614024565b611c81565b005b34801561074357600080fd5b5061075e60048036038101906107599190614024565b611da8565b005b34801561076c57600080fd5b50610775611ecf565b6040516107829190613e59565b60405180910390f35b34801561079757600080fd5b506107a0611ed5565b6040516107ad9190613fa9565b60405180910390f35b3480156107c257600080fd5b506107cb611ee8565b6040516107d89190613b7f565b60405180910390f35b3480156107ed57600080fd5b506108086004803603810190610803919061409d565b611f7a565b005b34801561081657600080fd5b5061081f6120f2565b60405161082c9190613a64565b60405180910390f35b34801561084157600080fd5b5061085c60048036038101906108579190613f6d565b612105565b005b34801561086a57600080fd5b506108856004803603810190610880919061417e565b61219f565b005b34801561089357600080fd5b506108ae60048036038101906108a99190613bd7565b61221b565b6040516108bb9190613b7f565b60405180910390f35b3480156108d057600080fd5b506108eb60048036038101906108e69190614201565b612374565b005b3480156108f957600080fd5b50610914600480360381019061090f9190613bd7565b6124dd565b005b34801561092257600080fd5b5061092b612567565b6040516109389190614270565b60405180910390f35b34801561094d57600080fd5b5061096860048036038101906109639190613f07565b61257b565b6040516109759190613fa9565b60405180910390f35b34801561098a57600080fd5b506109a560048036038101906109a0919061428b565b61259b565b6040516109b29190613a64565b60405180910390f35b3480156109c757600080fd5b506109d061262f565b6040516109dd9190613b7f565b60405180910390f35b3480156109f257600080fd5b50610a0d6004803603810190610a089190613f07565b6126bd565b005b348015610a1b57600080fd5b50610a246127b5565b604051610a319190613fa9565b60405180910390f35b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161480610b0557507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b80610b155750610b14826127c8565b5b9050919050565b610b24612832565b73ffffffffffffffffffffffffffffffffffffffff16610b42611c57565b73ffffffffffffffffffffffffffffffffffffffff1614610b98576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b8f90614317565b60405180910390fd5b80600e60006101000a81548161ffff021916908361ffff16021790555050565b606060028054610bc790614366565b80601f0160208091040260200160405190810160405280929190818152602001828054610bf390614366565b8015610c405780601f10610c1557610100808354040283529160200191610c40565b820191906000526020600020905b815481529060010190602001808311610c2357829003601f168201915b5050505050905090565b6000610c558261283a565b610c8b576040517fcf4700e400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6006600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b610cce612832565b73ffffffffffffffffffffffffffffffffffffffff16610cec611c57565b73ffffffffffffffffffffffffffffffffffffffff1614610d42576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d3990614317565b60405180910390fd5b600e60049054906101000a900460ff1615600e60046101000a81548160ff021916908315150217905550565b6000610d7982611736565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610de1576040517f943f7b8c00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16610e00612832565b73ffffffffffffffffffffffffffffffffffffffff1614158015610e325750610e3081610e2b612832565b61259b565b155b15610e69576040517fcfb3b94200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b610e74838383612888565b505050565b610e81612832565b73ffffffffffffffffffffffffffffffffffffffff16610e9f611c57565b73ffffffffffffffffffffffffffffffffffffffff1614610ef5576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610eec90614317565b60405180910390fd5b80600b9080519060200190610f0b9291906138ca565b5050565b600c5481565b6000610f1f61293a565b6001546000540303905090565b610f3783838361293f565b505050565b610f44612832565b73ffffffffffffffffffffffffffffffffffffffff16610f62611c57565b73ffffffffffffffffffffffffffffffffffffffff1614610fb8576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610faf90614317565b60405180910390fd5b6000610fc2610f15565b9050600e60009054906101000a900461ffff1661ffff168382610fe591906143c7565b61ffff16111561102a576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110219061444b565b60405180910390fd5b611038828461ffff16612df5565b600092506000915060009050505050565b611051612832565b73ffffffffffffffffffffffffffffffffffffffff1661106f611c57565b73ffffffffffffffffffffffffffffffffffffffff16146110c5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110bc90614317565b60405180910390fd5b600e60059054906101000a900460ff1615600e60056101000a81548160ff0219169083151502179055506001600e60046101000a81548160ff021916908315150217905550565b60116020528060005260406000206000915054906101000a900460ff1681565b611134612832565b73ffffffffffffffffffffffffffffffffffffffff16611152611c57565b73ffffffffffffffffffffffffffffffffffffffff16146111a8576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161119f90614317565b60405180910390fd5b600e60069054906101000a900460ff1615600e60066101000a81548160ff021916908315150217905550565b6111dc612832565b73ffffffffffffffffffffffffffffffffffffffff166111fa611c57565b73ffffffffffffffffffffffffffffffffffffffff1614611250576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161124790614317565b60405180910390fd5b60004790503373ffffffffffffffffffffffffffffffffffffffff166108fc829081150290604051600060405180830381858888f1935050505015801561129b573d6000803e3d6000fd5b5050565b6112ba8383836040518060200160405280600081525061219f565b505050565b6112c7612832565b73ffffffffffffffffffffffffffffffffffffffff166112e5611c57565b73ffffffffffffffffffffffffffffffffffffffff161461133b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161133290614317565b60405180910390fd5b80600c8190555050565b61134d612832565b73ffffffffffffffffffffffffffffffffffffffff1661136b611c57565b73ffffffffffffffffffffffffffffffffffffffff16146113c1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113b890614317565b60405180910390fd5b80600e60036101000a81548160ff021916908360ff1602179055506000905050565b600f6020528060005260406000206000915054906101000a900460ff1681565b600e60059054906101000a900460ff1681565b6000600f60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff169050601160003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff166114f3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114ea906144b7565b60405180910390fd5b600e60029054906101000a900460ff1660ff16828261151291906144d7565b60ff161115611556576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161154d9061455a565b60405180910390fd5b600e60049054906101000a900460ff16156115a6576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161159d906145c6565b60405180910390fd5b600e60039054906101000a900460ff1660ff168160ff161061161a578160ff16600d546115d391906145e6565b341015611615576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161160c9061468c565b60405180910390fd5b6116ba565b6000818361162891906144d7565b9050600e60039054906101000a900460ff1660ff168160ff1611156116b857600e60039054906101000a900460ff168161166291906146ac565b90508060ff16600d5461167591906145e6565b3410156116b7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116ae9061468c565b60405180910390fd5b5b505b6116c7338360ff16612df5565b81816116d391906144d7565b600f60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff021916908360ff16021790555060009150600090505050565b600061174182612e13565b600001519050919050565b6000611756610f15565b90506000601060003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff169050600e60009054906101000a900461ffff1661ffff168360ff16836117cd91906143c7565b61ffff161115611812576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118099061472c565b60405180910390fd5b600e60029054906101000a900460ff1660ff16818461183191906144d7565b60ff161115611875576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161186c90614798565b60405180910390fd5b600e60059054906101000a900460ff16156118c5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118bc90614804565b60405180910390fd5b600e60039054906101000a900460ff1660ff168160ff1610611939578260ff16600c546118f291906145e6565b341015611934576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161192b9061468c565b60405180910390fd5b6119d9565b6000818461194791906144d7565b9050600e60039054906101000a900460ff1660ff168160ff1611156119d757600e60039054906101000a900460ff168161198191906146ac565b90508060ff16600c5461199491906145e6565b3410156119d6576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016119cd9061468c565b60405180910390fd5b5b505b6119e6338460ff16612df5565b80836119f291906144d7565b601060003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff021916908360ff1602179055506000915060009250505050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611abe576040517f8f4eb60400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600560008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160009054906101000a900467ffffffffffffffff1667ffffffffffffffff169050919050565b611b2e612832565b73ffffffffffffffffffffffffffffffffffffffff16611b4c611c57565b73ffffffffffffffffffffffffffffffffffffffff1614611ba2576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b9990614317565b60405180910390fd5b611bac60006130a2565b565b611bb6612832565b73ffffffffffffffffffffffffffffffffffffffff16611bd4611c57565b73ffffffffffffffffffffffffffffffffffffffff1614611c2a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c2190614317565b60405180910390fd5b8060099080519060200190611c409291906138ca565b5050565b600e60049054906101000a900460ff1681565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b611c89612832565b73ffffffffffffffffffffffffffffffffffffffff16611ca7611c57565b73ffffffffffffffffffffffffffffffffffffffff1614611cfd576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611cf490614317565b60405180910390fd5b60005b828290508160ff161015611da35760016011600085858560ff16818110611d2a57611d29614824565b5b9050602002016020810190611d3f9190613f07565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508080611d9b90614853565b915050611d00565b505050565b611db0612832565b73ffffffffffffffffffffffffffffffffffffffff16611dce611c57565b73ffffffffffffffffffffffffffffffffffffffff1614611e24576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e1b90614317565b60405180910390fd5b60005b828290508160ff161015611eca5760006011600085858560ff16818110611e5157611e50614824565b5b9050602002016020810190611e669190613f07565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508080611ec290614853565b915050611e27565b505050565b600d5481565b600e60029054906101000a900460ff1681565b606060038054611ef790614366565b80601f0160208091040260200160405190810160405280929190818152602001828054611f2390614366565b8015611f705780601f10611f4557610100808354040283529160200191611f70565b820191906000526020600020905b815481529060010190602001808311611f5357829003601f168201915b5050505050905090565b611f82612832565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611fe7576040517fb06307db00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8060076000611ff4612832565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff166120a1612832565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31836040516120e69190613a64565b60405180910390a35050565b600e60069054906101000a900460ff1681565b61210d612832565b73ffffffffffffffffffffffffffffffffffffffff1661212b611c57565b73ffffffffffffffffffffffffffffffffffffffff1614612181576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161217890614317565b60405180910390fd5b80600e60026101000a81548160ff021916908360ff16021790555050565b6121aa84848461293f565b6121c98373ffffffffffffffffffffffffffffffffffffffff16613168565b80156121de57506121dc8484848461318b565b155b15612215576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b50505050565b60606122268261283a565b612265576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161225c906148ef565b60405180910390fd5b60001515600e60069054906101000a900460ff161515141561231357600b805461228e90614366565b80601f01602080910402602001604051908101604052809291908181526020018280546122ba90614366565b80156123075780601f106122dc57610100808354040283529160200191612307565b820191906000526020600020905b8154815290600101906020018083116122ea57829003601f168201915b5050505050905061236f565b600061231d6132eb565b9050600081511161233d576040518060200160405280600081525061236b565b806123478461337d565b600a60405160200161235b939291906149df565b6040516020818303038152906040525b9150505b919050565b61237c612832565b73ffffffffffffffffffffffffffffffffffffffff1661239a611c57565b73ffffffffffffffffffffffffffffffffffffffff16146123f0576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016123e790614317565b60405180910390fd5b60006123fa610f15565b90506000838390508560ff1661241091906145e6565b9050600e60009054906101000a900461ffff1661ffff16818361ffff166124379190614a10565b1115612478576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161246f9061444b565b60405180910390fd5b60005b848490508110156124cd576124ba85858381811061249c5761249b614824565b5b90506020020160208101906124b19190613f07565b8760ff16612df5565b80806124c590614a66565b91505061247b565b5060009450600091505050505050565b6124e5612832565b73ffffffffffffffffffffffffffffffffffffffff16612503611c57565b73ffffffffffffffffffffffffffffffffffffffff1614612559576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161255090614317565b60405180910390fd5b80600d819055506000905050565b600e60009054906101000a900461ffff1681565b60106020528060005260406000206000915054906101000a900460ff1681565b6000600760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b600b805461263c90614366565b80601f016020809104026020016040519081016040528092919081815260200182805461266890614366565b80156126b55780601f1061268a576101008083540402835291602001916126b5565b820191906000526020600020905b81548152906001019060200180831161269857829003601f168201915b505050505081565b6126c5612832565b73ffffffffffffffffffffffffffffffffffffffff166126e3611c57565b73ffffffffffffffffffffffffffffffffffffffff1614612739576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161273090614317565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614156127a9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016127a090614b21565b60405180910390fd5b6127b2816130a2565b50565b600e60039054906101000a900460ff1681565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b600033905090565b60008161284561293a565b11158015612854575060005482105b8015612881575060046000838152602001908152602001600020600001601c9054906101000a900460ff16155b9050919050565b826006600084815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b600090565b600061294a82612e13565b90508373ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff16146129b5576040517fa114810000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b60008473ffffffffffffffffffffffffffffffffffffffff166129d6612832565b73ffffffffffffffffffffffffffffffffffffffff161480612a055750612a04856129ff612832565b61259b565b5b80612a4a5750612a13612832565b73ffffffffffffffffffffffffffffffffffffffff16612a3284610c4a565b73ffffffffffffffffffffffffffffffffffffffff16145b905080612a83576040517f59c896be00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161415612aea576040517fea553b3400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b612af785858560016134de565b612b0360008487612888565b6001600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a900467ffffffffffffffff160392506101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055506001600560008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a900467ffffffffffffffff160192506101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055506000600460008581526020019081526020016000209050848160000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550428160000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff16021790555060006001850190506000600460008381526020019081526020016000209050600073ffffffffffffffffffffffffffffffffffffffff168160000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff161415612d83576000548214612d8257878160000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555084602001518160000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055505b5b505050828473ffffffffffffffffffffffffffffffffffffffff168673ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4612dee85858560016134e4565b5050505050565b612e0f8282604051806020016040528060008152506134ea565b5050565b612e1b613950565b600082905080612e2961293a565b11158015612e38575060005481105b1561306b576000600460008381526020019081526020016000206040518060600160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815260200160008201601c9054906101000a900460ff1615151515815250509050806040015161306957600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff1614612f4d57809250505061309d565b5b60011561306857818060019003925050600460008381526020019081526020016000206040518060600160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815260200160008201601c9054906101000a900460ff1615151515815250509050600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff161461306357809250505061309d565b612f4e565b5b505b6040517fdf2d9b4200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b919050565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b6000808273ffffffffffffffffffffffffffffffffffffffff163b119050919050565b60008373ffffffffffffffffffffffffffffffffffffffff1663150b7a026131b1612832565b8786866040518563ffffffff1660e01b81526004016131d39493929190614b96565b602060405180830381600087803b1580156131ed57600080fd5b505af192505050801561321e57506040513d601f19601f8201168201806040525081019061321b9190614bf7565b60015b613298573d806000811461324e576040519150601f19603f3d011682016040523d82523d6000602084013e613253565b606091505b50600081511415613290576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050949350505050565b6060600980546132fa90614366565b80601f016020809104026020016040519081016040528092919081815260200182805461332690614366565b80156133735780601f1061334857610100808354040283529160200191613373565b820191906000526020600020905b81548152906001019060200180831161335657829003601f168201915b5050505050905090565b606060008214156133c5576040518060400160405280600181526020017f300000000000000000000000000000000000000000000000000000000000000081525090506134d9565b600082905060005b600082146133f75780806133e090614a66565b915050600a826133f09190614c53565b91506133cd565b60008167ffffffffffffffff81111561341357613412613cd6565b5b6040519080825280601f01601f1916602001820160405280156134455781602001600182028036833780820191505090505b5090505b600085146134d25760018261345e9190614c84565b9150600a8561346d9190614cb8565b60306134799190614a10565b60f81b81838151811061348f5761348e614824565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a856134cb9190614c53565b9450613449565b8093505050505b919050565b50505050565b50505050565b6134f783838360016134fc565b505050565b600080549050600073ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff161415613569576040517f2e07630000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b60008414156135a4576040517fb562e8dd00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6135b160008683876134de565b83600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a900467ffffffffffffffff160192506101000a81548167ffffffffffffffff021916908367ffffffffffffffff16021790555083600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160088282829054906101000a900467ffffffffffffffff160192506101000a81548167ffffffffffffffff021916908367ffffffffffffffff160217905550846004600083815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550426004600083815260200190815260200160002060000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff16021790555060008190506000858201905083801561377b575061377a8773ffffffffffffffffffffffffffffffffffffffff16613168565b5b15613841575b818773ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a46137f0600088848060010195508861318b565b613826576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8082141561378157826000541461383c57600080fd5b6138ad565b5b818060010192508773ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a480821415613842575b8160008190555050506138c360008683876134e4565b5050505050565b8280546138d690614366565b90600052602060002090601f0160209004810192826138f8576000855561393f565b82601f1061391157805160ff191683800117855561393f565b8280016001018555821561393f579182015b8281111561393e578251825591602001919060010190613923565b5b50905061394c9190613993565b5090565b6040518060600160405280600073ffffffffffffffffffffffffffffffffffffffff168152602001600067ffffffffffffffff1681526020016000151581525090565b5b808211156139ac576000816000905550600101613994565b5090565b6000604051905090565b600080fd5b600080fd5b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b6139f9816139c4565b8114613a0457600080fd5b50565b600081359050613a16816139f0565b92915050565b600060208284031215613a3257613a316139ba565b5b6000613a4084828501613a07565b91505092915050565b60008115159050919050565b613a5e81613a49565b82525050565b6000602082019050613a796000830184613a55565b92915050565b600061ffff82169050919050565b613a9681613a7f565b8114613aa157600080fd5b50565b600081359050613ab381613a8d565b92915050565b600060208284031215613acf57613ace6139ba565b5b6000613add84828501613aa4565b91505092915050565b600081519050919050565b600082825260208201905092915050565b60005b83811015613b20578082015181840152602081019050613b05565b83811115613b2f576000848401525b50505050565b6000601f19601f8301169050919050565b6000613b5182613ae6565b613b5b8185613af1565b9350613b6b818560208601613b02565b613b7481613b35565b840191505092915050565b60006020820190508181036000830152613b998184613b46565b905092915050565b6000819050919050565b613bb481613ba1565b8114613bbf57600080fd5b50565b600081359050613bd181613bab565b92915050565b600060208284031215613bed57613bec6139ba565b5b6000613bfb84828501613bc2565b91505092915050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000613c2f82613c04565b9050919050565b613c3f81613c24565b82525050565b6000602082019050613c5a6000830184613c36565b92915050565b613c6981613c24565b8114613c7457600080fd5b50565b600081359050613c8681613c60565b92915050565b60008060408385031215613ca357613ca26139ba565b5b6000613cb185828601613c77565b9250506020613cc285828601613bc2565b9150509250929050565b600080fd5b600080fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b613d0e82613b35565b810181811067ffffffffffffffff82111715613d2d57613d2c613cd6565b5b80604052505050565b6000613d406139b0565b9050613d4c8282613d05565b919050565b600067ffffffffffffffff821115613d6c57613d6b613cd6565b5b613d7582613b35565b9050602081019050919050565b82818337600083830152505050565b6000613da4613d9f84613d51565b613d36565b905082815260208101848484011115613dc057613dbf613cd1565b5b613dcb848285613d82565b509392505050565b600082601f830112613de857613de7613ccc565b5b8135613df8848260208601613d91565b91505092915050565b600060208284031215613e1757613e166139ba565b5b600082013567ffffffffffffffff811115613e3557613e346139bf565b5b613e4184828501613dd3565b91505092915050565b613e5381613ba1565b82525050565b6000602082019050613e6e6000830184613e4a565b92915050565b600080600060608486031215613e8d57613e8c6139ba565b5b6000613e9b86828701613c77565b9350506020613eac86828701613c77565b9250506040613ebd86828701613bc2565b9150509250925092565b60008060408385031215613ede57613edd6139ba565b5b6000613eec85828601613aa4565b9250506020613efd85828601613c77565b9150509250929050565b600060208284031215613f1d57613f1c6139ba565b5b6000613f2b84828501613c77565b91505092915050565b600060ff82169050919050565b613f4a81613f34565b8114613f5557600080fd5b50565b600081359050613f6781613f41565b92915050565b600060208284031215613f8357613f826139ba565b5b6000613f9184828501613f58565b91505092915050565b613fa381613f34565b82525050565b6000602082019050613fbe6000830184613f9a565b92915050565b600080fd5b600080fd5b60008083601f840112613fe457613fe3613ccc565b5b8235905067ffffffffffffffff81111561400157614000613fc4565b5b60208301915083602082028301111561401d5761401c613fc9565b5b9250929050565b6000806020838503121561403b5761403a6139ba565b5b600083013567ffffffffffffffff811115614059576140586139bf565b5b61406585828601613fce565b92509250509250929050565b61407a81613a49565b811461408557600080fd5b50565b60008135905061409781614071565b92915050565b600080604083850312156140b4576140b36139ba565b5b60006140c285828601613c77565b92505060206140d385828601614088565b9150509250929050565b600067ffffffffffffffff8211156140f8576140f7613cd6565b5b61410182613b35565b9050602081019050919050565b600061412161411c846140dd565b613d36565b90508281526020810184848401111561413d5761413c613cd1565b5b614148848285613d82565b509392505050565b600082601f83011261416557614164613ccc565b5b813561417584826020860161410e565b91505092915050565b60008060008060808587031215614198576141976139ba565b5b60006141a687828801613c77565b94505060206141b787828801613c77565b93505060406141c887828801613bc2565b925050606085013567ffffffffffffffff8111156141e9576141e86139bf565b5b6141f587828801614150565b91505092959194509250565b60008060006040848603121561421a576142196139ba565b5b600061422886828701613f58565b935050602084013567ffffffffffffffff811115614249576142486139bf565b5b61425586828701613fce565b92509250509250925092565b61426a81613a7f565b82525050565b60006020820190506142856000830184614261565b92915050565b600080604083850312156142a2576142a16139ba565b5b60006142b085828601613c77565b92505060206142c185828601613c77565b9150509250929050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b6000614301602083613af1565b915061430c826142cb565b602082019050919050565b60006020820190508181036000830152614330816142f4565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b6000600282049050600182168061437e57607f821691505b6020821081141561439257614391614337565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b60006143d282613a7f565b91506143dd83613a7f565b92508261ffff038211156143f4576143f3614398565b5b828201905092915050565b7f45786365646573206d617820737570706c792e00000000000000000000000000600082015250565b6000614435601383613af1565b9150614440826143ff565b602082019050919050565b6000602082019050818103600083015261446481614428565b9050919050565b7f596f7520617265206e6f742077686974656c6973746564000000000000000000600082015250565b60006144a1601783613af1565b91506144ac8261446b565b602082019050919050565b600060208201905081810360008301526144d081614494565b9050919050565b60006144e282613f34565b91506144ed83613f34565b92508260ff0382111561450357614502614398565b5b828201905092915050565b7f45786365656473206d617820206c696d69742020706572206164647265737300600082015250565b6000614544601f83613af1565b915061454f8261450e565b602082019050919050565b6000602082019050818103600083015261457381614537565b9050919050565b7f57686974656c697374206d696e74696e67206973206f76657221000000000000600082015250565b60006145b0601a83613af1565b91506145bb8261457a565b602082019050919050565b600060208201905081810360008301526145df816145a3565b9050919050565b60006145f182613ba1565b91506145fc83613ba1565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff048311821515161561463557614634614398565b5b828202905092915050565b7f496e73756666696369656e742066756e64732100000000000000000000000000600082015250565b6000614676601383613af1565b915061468182614640565b602082019050919050565b600060208201905081810360008301526146a581614669565b9050919050565b60006146b782613f34565b91506146c283613f34565b9250828210156146d5576146d4614398565b5b828203905092915050565b7f45786365656473206d617820737570706c792e00000000000000000000000000600082015250565b6000614716601383613af1565b9150614721826146e0565b602082019050919050565b6000602082019050818103600083015261474581614709565b9050919050565b7f45786365656473206d617820706572207472616e73616374696f6e2e00000000600082015250565b6000614782601c83613af1565b915061478d8261474c565b602082019050919050565b600060208201905081810360008301526147b181614775565b9050919050565b7f54686520636f6e74726163742069732070617573656421000000000000000000600082015250565b60006147ee601783613af1565b91506147f9826147b8565b602082019050919050565b6000602082019050818103600083015261481d816147e1565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b600061485e82613f34565b915060ff82141561487257614871614398565b5b600182019050919050565b7f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008201527f6e6578697374656e7420746f6b656e0000000000000000000000000000000000602082015250565b60006148d9602f83613af1565b91506148e48261487d565b604082019050919050565b60006020820190508181036000830152614908816148cc565b9050919050565b600081905092915050565b600061492582613ae6565b61492f818561490f565b935061493f818560208601613b02565b80840191505092915050565b60008190508160005260206000209050919050565b6000815461496d81614366565b614977818661490f565b9450600182166000811461499257600181146149a3576149d6565b60ff198316865281860193506149d6565b6149ac8561494b565b60005b838110156149ce578154818901526001820191506020810190506149af565b838801955050505b50505092915050565b60006149eb828661491a565b91506149f7828561491a565b9150614a038284614960565b9150819050949350505050565b6000614a1b82613ba1565b9150614a2683613ba1565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115614a5b57614a5a614398565b5b828201905092915050565b6000614a7182613ba1565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff821415614aa457614aa3614398565b5b600182019050919050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b6000614b0b602683613af1565b9150614b1682614aaf565b604082019050919050565b60006020820190508181036000830152614b3a81614afe565b9050919050565b600081519050919050565b600082825260208201905092915050565b6000614b6882614b41565b614b728185614b4c565b9350614b82818560208601613b02565b614b8b81613b35565b840191505092915050565b6000608082019050614bab6000830187613c36565b614bb86020830186613c36565b614bc56040830185613e4a565b8181036060830152614bd78184614b5d565b905095945050505050565b600081519050614bf1816139f0565b92915050565b600060208284031215614c0d57614c0c6139ba565b5b6000614c1b84828501614be2565b91505092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b6000614c5e82613ba1565b9150614c6983613ba1565b925082614c7957614c78614c24565b5b828204905092915050565b6000614c8f82613ba1565b9150614c9a83613ba1565b925082821015614cad57614cac614398565b5b828203905092915050565b6000614cc382613ba1565b9150614cce83613ba1565b925082614cde57614cdd614c24565b5b82820690509291505056fea264697066735822122006413b55a6292a68c68e29c091685c2794ebdf25498134856a71d412bae0caaf64736f6c63430008090033

Deployed Bytecode

0x60806040526004361061027d5760003560e01c806370a082311161014f578063a475b5dd116100c1578063d5abeb011161007a578063d5abeb0114610916578063e94053c714610941578063e985e9c51461097e578063eef440af146109bb578063f2fde38b146109e6578063f8bf517214610a0f5761027d565b8063a475b5dd1461080a578063aa06229014610835578063b88d4fde1461085e578063c87b56dd14610887578063cffb6e20146108c4578063d1d19213146108ed5761027d565b80638e07484c116101135780638e07484c1461070e5780638f65fe0a146107375780639257e0441461076057806394354fd01461078b57806395d89b41146107b6578063a22cb465146107e15761027d565b806370a082311461063b578063715018a6146106785780637ec4a6591461068f5780637f6e9093146106b85780638da5cb5b146106e35761027d565b806337a66d85116101f35780634d9c1848116101ac5780634d9c18481461053557806359bf5dbb1461055e5780635c975abb1461059b57806360e85cde146105c65780636352211e146105e25780636ecd23061461061f5761027d565b806337a66d85146104615780633af32abf146104785780633bd64968146104b55780633ccfd60b146104cc57806342842e0e146104e357806344a0d68a1461050c5761027d565b8063095ea7b311610245578063095ea7b3146103675780631067fcc71461039057806313faede6146103b957806318160ddd146103e457806323b872dd1461040f5780632f6f98e1146104385761027d565b806301ffc9a71461028257806306421c2f146102bf57806306fdde03146102e8578063081812fc14610313578063093cfa6314610350575b600080fd5b34801561028e57600080fd5b506102a960048036038101906102a49190613a1c565b610a3a565b6040516102b69190613a64565b60405180910390f35b3480156102cb57600080fd5b506102e660048036038101906102e19190613ab9565b610b1c565b005b3480156102f457600080fd5b506102fd610bb8565b60405161030a9190613b7f565b60405180910390f35b34801561031f57600080fd5b5061033a60048036038101906103359190613bd7565b610c4a565b6040516103479190613c45565b60405180910390f35b34801561035c57600080fd5b50610365610cc6565b005b34801561037357600080fd5b5061038e60048036038101906103899190613c8c565b610d6e565b005b34801561039c57600080fd5b506103b760048036038101906103b29190613e01565b610e79565b005b3480156103c557600080fd5b506103ce610f0f565b6040516103db9190613e59565b60405180910390f35b3480156103f057600080fd5b506103f9610f15565b6040516104069190613e59565b60405180910390f35b34801561041b57600080fd5b5061043660048036038101906104319190613e74565b610f2c565b005b34801561044457600080fd5b5061045f600480360381019061045a9190613ec7565b610f3c565b005b34801561046d57600080fd5b50610476611049565b005b34801561048457600080fd5b5061049f600480360381019061049a9190613f07565b61110c565b6040516104ac9190613a64565b60405180910390f35b3480156104c157600080fd5b506104ca61112c565b005b3480156104d857600080fd5b506104e16111d4565b005b3480156104ef57600080fd5b5061050a60048036038101906105059190613e74565b61129f565b005b34801561051857600080fd5b50610533600480360381019061052e9190613bd7565b6112bf565b005b34801561054157600080fd5b5061055c60048036038101906105579190613f6d565b611345565b005b34801561056a57600080fd5b5061058560048036038101906105809190613f07565b6113e3565b6040516105929190613fa9565b60405180910390f35b3480156105a757600080fd5b506105b0611403565b6040516105bd9190613a64565b60405180910390f35b6105e060048036038101906105db9190613f6d565b611416565b005b3480156105ee57600080fd5b5061060960048036038101906106049190613bd7565b611736565b6040516106169190613c45565b60405180910390f35b61063960048036038101906106349190613f6d565b61174c565b005b34801561064757600080fd5b50610662600480360381019061065d9190613f07565b611a56565b60405161066f9190613e59565b60405180910390f35b34801561068457600080fd5b5061068d611b26565b005b34801561069b57600080fd5b506106b660048036038101906106b19190613e01565b611bae565b005b3480156106c457600080fd5b506106cd611c44565b6040516106da9190613a64565b60405180910390f35b3480156106ef57600080fd5b506106f8611c57565b6040516107059190613c45565b60405180910390f35b34801561071a57600080fd5b5061073560048036038101906107309190614024565b611c81565b005b34801561074357600080fd5b5061075e60048036038101906107599190614024565b611da8565b005b34801561076c57600080fd5b50610775611ecf565b6040516107829190613e59565b60405180910390f35b34801561079757600080fd5b506107a0611ed5565b6040516107ad9190613fa9565b60405180910390f35b3480156107c257600080fd5b506107cb611ee8565b6040516107d89190613b7f565b60405180910390f35b3480156107ed57600080fd5b506108086004803603810190610803919061409d565b611f7a565b005b34801561081657600080fd5b5061081f6120f2565b60405161082c9190613a64565b60405180910390f35b34801561084157600080fd5b5061085c60048036038101906108579190613f6d565b612105565b005b34801561086a57600080fd5b506108856004803603810190610880919061417e565b61219f565b005b34801561089357600080fd5b506108ae60048036038101906108a99190613bd7565b61221b565b6040516108bb9190613b7f565b60405180910390f35b3480156108d057600080fd5b506108eb60048036038101906108e69190614201565b612374565b005b3480156108f957600080fd5b50610914600480360381019061090f9190613bd7565b6124dd565b005b34801561092257600080fd5b5061092b612567565b6040516109389190614270565b60405180910390f35b34801561094d57600080fd5b5061096860048036038101906109639190613f07565b61257b565b6040516109759190613fa9565b60405180910390f35b34801561098a57600080fd5b506109a560048036038101906109a0919061428b565b61259b565b6040516109b29190613a64565b60405180910390f35b3480156109c757600080fd5b506109d061262f565b6040516109dd9190613b7f565b60405180910390f35b3480156109f257600080fd5b50610a0d6004803603810190610a089190613f07565b6126bd565b005b348015610a1b57600080fd5b50610a246127b5565b604051610a319190613fa9565b60405180910390f35b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161480610b0557507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b80610b155750610b14826127c8565b5b9050919050565b610b24612832565b73ffffffffffffffffffffffffffffffffffffffff16610b42611c57565b73ffffffffffffffffffffffffffffffffffffffff1614610b98576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b8f90614317565b60405180910390fd5b80600e60006101000a81548161ffff021916908361ffff16021790555050565b606060028054610bc790614366565b80601f0160208091040260200160405190810160405280929190818152602001828054610bf390614366565b8015610c405780601f10610c1557610100808354040283529160200191610c40565b820191906000526020600020905b815481529060010190602001808311610c2357829003601f168201915b5050505050905090565b6000610c558261283a565b610c8b576040517fcf4700e400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6006600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b610cce612832565b73ffffffffffffffffffffffffffffffffffffffff16610cec611c57565b73ffffffffffffffffffffffffffffffffffffffff1614610d42576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d3990614317565b60405180910390fd5b600e60049054906101000a900460ff1615600e60046101000a81548160ff021916908315150217905550565b6000610d7982611736565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610de1576040517f943f7b8c00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16610e00612832565b73ffffffffffffffffffffffffffffffffffffffff1614158015610e325750610e3081610e2b612832565b61259b565b155b15610e69576040517fcfb3b94200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b610e74838383612888565b505050565b610e81612832565b73ffffffffffffffffffffffffffffffffffffffff16610e9f611c57565b73ffffffffffffffffffffffffffffffffffffffff1614610ef5576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610eec90614317565b60405180910390fd5b80600b9080519060200190610f0b9291906138ca565b5050565b600c5481565b6000610f1f61293a565b6001546000540303905090565b610f3783838361293f565b505050565b610f44612832565b73ffffffffffffffffffffffffffffffffffffffff16610f62611c57565b73ffffffffffffffffffffffffffffffffffffffff1614610fb8576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610faf90614317565b60405180910390fd5b6000610fc2610f15565b9050600e60009054906101000a900461ffff1661ffff168382610fe591906143c7565b61ffff16111561102a576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110219061444b565b60405180910390fd5b611038828461ffff16612df5565b600092506000915060009050505050565b611051612832565b73ffffffffffffffffffffffffffffffffffffffff1661106f611c57565b73ffffffffffffffffffffffffffffffffffffffff16146110c5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110bc90614317565b60405180910390fd5b600e60059054906101000a900460ff1615600e60056101000a81548160ff0219169083151502179055506001600e60046101000a81548160ff021916908315150217905550565b60116020528060005260406000206000915054906101000a900460ff1681565b611134612832565b73ffffffffffffffffffffffffffffffffffffffff16611152611c57565b73ffffffffffffffffffffffffffffffffffffffff16146111a8576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161119f90614317565b60405180910390fd5b600e60069054906101000a900460ff1615600e60066101000a81548160ff021916908315150217905550565b6111dc612832565b73ffffffffffffffffffffffffffffffffffffffff166111fa611c57565b73ffffffffffffffffffffffffffffffffffffffff1614611250576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161124790614317565b60405180910390fd5b60004790503373ffffffffffffffffffffffffffffffffffffffff166108fc829081150290604051600060405180830381858888f1935050505015801561129b573d6000803e3d6000fd5b5050565b6112ba8383836040518060200160405280600081525061219f565b505050565b6112c7612832565b73ffffffffffffffffffffffffffffffffffffffff166112e5611c57565b73ffffffffffffffffffffffffffffffffffffffff161461133b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161133290614317565b60405180910390fd5b80600c8190555050565b61134d612832565b73ffffffffffffffffffffffffffffffffffffffff1661136b611c57565b73ffffffffffffffffffffffffffffffffffffffff16146113c1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113b890614317565b60405180910390fd5b80600e60036101000a81548160ff021916908360ff1602179055506000905050565b600f6020528060005260406000206000915054906101000a900460ff1681565b600e60059054906101000a900460ff1681565b6000600f60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff169050601160003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff166114f3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114ea906144b7565b60405180910390fd5b600e60029054906101000a900460ff1660ff16828261151291906144d7565b60ff161115611556576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161154d9061455a565b60405180910390fd5b600e60049054906101000a900460ff16156115a6576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161159d906145c6565b60405180910390fd5b600e60039054906101000a900460ff1660ff168160ff161061161a578160ff16600d546115d391906145e6565b341015611615576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161160c9061468c565b60405180910390fd5b6116ba565b6000818361162891906144d7565b9050600e60039054906101000a900460ff1660ff168160ff1611156116b857600e60039054906101000a900460ff168161166291906146ac565b90508060ff16600d5461167591906145e6565b3410156116b7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116ae9061468c565b60405180910390fd5b5b505b6116c7338360ff16612df5565b81816116d391906144d7565b600f60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff021916908360ff16021790555060009150600090505050565b600061174182612e13565b600001519050919050565b6000611756610f15565b90506000601060003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff169050600e60009054906101000a900461ffff1661ffff168360ff16836117cd91906143c7565b61ffff161115611812576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118099061472c565b60405180910390fd5b600e60029054906101000a900460ff1660ff16818461183191906144d7565b60ff161115611875576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161186c90614798565b60405180910390fd5b600e60059054906101000a900460ff16156118c5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118bc90614804565b60405180910390fd5b600e60039054906101000a900460ff1660ff168160ff1610611939578260ff16600c546118f291906145e6565b341015611934576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161192b9061468c565b60405180910390fd5b6119d9565b6000818461194791906144d7565b9050600e60039054906101000a900460ff1660ff168160ff1611156119d757600e60039054906101000a900460ff168161198191906146ac565b90508060ff16600c5461199491906145e6565b3410156119d6576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016119cd9061468c565b60405180910390fd5b5b505b6119e6338460ff16612df5565b80836119f291906144d7565b601060003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff021916908360ff1602179055506000915060009250505050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611abe576040517f8f4eb60400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600560008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160009054906101000a900467ffffffffffffffff1667ffffffffffffffff169050919050565b611b2e612832565b73ffffffffffffffffffffffffffffffffffffffff16611b4c611c57565b73ffffffffffffffffffffffffffffffffffffffff1614611ba2576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b9990614317565b60405180910390fd5b611bac60006130a2565b565b611bb6612832565b73ffffffffffffffffffffffffffffffffffffffff16611bd4611c57565b73ffffffffffffffffffffffffffffffffffffffff1614611c2a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c2190614317565b60405180910390fd5b8060099080519060200190611c409291906138ca565b5050565b600e60049054906101000a900460ff1681565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b611c89612832565b73ffffffffffffffffffffffffffffffffffffffff16611ca7611c57565b73ffffffffffffffffffffffffffffffffffffffff1614611cfd576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611cf490614317565b60405180910390fd5b60005b828290508160ff161015611da35760016011600085858560ff16818110611d2a57611d29614824565b5b9050602002016020810190611d3f9190613f07565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508080611d9b90614853565b915050611d00565b505050565b611db0612832565b73ffffffffffffffffffffffffffffffffffffffff16611dce611c57565b73ffffffffffffffffffffffffffffffffffffffff1614611e24576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e1b90614317565b60405180910390fd5b60005b828290508160ff161015611eca5760006011600085858560ff16818110611e5157611e50614824565b5b9050602002016020810190611e669190613f07565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508080611ec290614853565b915050611e27565b505050565b600d5481565b600e60029054906101000a900460ff1681565b606060038054611ef790614366565b80601f0160208091040260200160405190810160405280929190818152602001828054611f2390614366565b8015611f705780601f10611f4557610100808354040283529160200191611f70565b820191906000526020600020905b815481529060010190602001808311611f5357829003601f168201915b5050505050905090565b611f82612832565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611fe7576040517fb06307db00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8060076000611ff4612832565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff166120a1612832565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31836040516120e69190613a64565b60405180910390a35050565b600e60069054906101000a900460ff1681565b61210d612832565b73ffffffffffffffffffffffffffffffffffffffff1661212b611c57565b73ffffffffffffffffffffffffffffffffffffffff1614612181576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161217890614317565b60405180910390fd5b80600e60026101000a81548160ff021916908360ff16021790555050565b6121aa84848461293f565b6121c98373ffffffffffffffffffffffffffffffffffffffff16613168565b80156121de57506121dc8484848461318b565b155b15612215576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b50505050565b60606122268261283a565b612265576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161225c906148ef565b60405180910390fd5b60001515600e60069054906101000a900460ff161515141561231357600b805461228e90614366565b80601f01602080910402602001604051908101604052809291908181526020018280546122ba90614366565b80156123075780601f106122dc57610100808354040283529160200191612307565b820191906000526020600020905b8154815290600101906020018083116122ea57829003601f168201915b5050505050905061236f565b600061231d6132eb565b9050600081511161233d576040518060200160405280600081525061236b565b806123478461337d565b600a60405160200161235b939291906149df565b6040516020818303038152906040525b9150505b919050565b61237c612832565b73ffffffffffffffffffffffffffffffffffffffff1661239a611c57565b73ffffffffffffffffffffffffffffffffffffffff16146123f0576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016123e790614317565b60405180910390fd5b60006123fa610f15565b90506000838390508560ff1661241091906145e6565b9050600e60009054906101000a900461ffff1661ffff16818361ffff166124379190614a10565b1115612478576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161246f9061444b565b60405180910390fd5b60005b848490508110156124cd576124ba85858381811061249c5761249b614824565b5b90506020020160208101906124b19190613f07565b8760ff16612df5565b80806124c590614a66565b91505061247b565b5060009450600091505050505050565b6124e5612832565b73ffffffffffffffffffffffffffffffffffffffff16612503611c57565b73ffffffffffffffffffffffffffffffffffffffff1614612559576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161255090614317565b60405180910390fd5b80600d819055506000905050565b600e60009054906101000a900461ffff1681565b60106020528060005260406000206000915054906101000a900460ff1681565b6000600760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b600b805461263c90614366565b80601f016020809104026020016040519081016040528092919081815260200182805461266890614366565b80156126b55780601f1061268a576101008083540402835291602001916126b5565b820191906000526020600020905b81548152906001019060200180831161269857829003601f168201915b505050505081565b6126c5612832565b73ffffffffffffffffffffffffffffffffffffffff166126e3611c57565b73ffffffffffffffffffffffffffffffffffffffff1614612739576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161273090614317565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614156127a9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016127a090614b21565b60405180910390fd5b6127b2816130a2565b50565b600e60039054906101000a900460ff1681565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b600033905090565b60008161284561293a565b11158015612854575060005482105b8015612881575060046000838152602001908152602001600020600001601c9054906101000a900460ff16155b9050919050565b826006600084815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b600090565b600061294a82612e13565b90508373ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff16146129b5576040517fa114810000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b60008473ffffffffffffffffffffffffffffffffffffffff166129d6612832565b73ffffffffffffffffffffffffffffffffffffffff161480612a055750612a04856129ff612832565b61259b565b5b80612a4a5750612a13612832565b73ffffffffffffffffffffffffffffffffffffffff16612a3284610c4a565b73ffffffffffffffffffffffffffffffffffffffff16145b905080612a83576040517f59c896be00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161415612aea576040517fea553b3400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b612af785858560016134de565b612b0360008487612888565b6001600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a900467ffffffffffffffff160392506101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055506001600560008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a900467ffffffffffffffff160192506101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055506000600460008581526020019081526020016000209050848160000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550428160000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff16021790555060006001850190506000600460008381526020019081526020016000209050600073ffffffffffffffffffffffffffffffffffffffff168160000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff161415612d83576000548214612d8257878160000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555084602001518160000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055505b5b505050828473ffffffffffffffffffffffffffffffffffffffff168673ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4612dee85858560016134e4565b5050505050565b612e0f8282604051806020016040528060008152506134ea565b5050565b612e1b613950565b600082905080612e2961293a565b11158015612e38575060005481105b1561306b576000600460008381526020019081526020016000206040518060600160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815260200160008201601c9054906101000a900460ff1615151515815250509050806040015161306957600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff1614612f4d57809250505061309d565b5b60011561306857818060019003925050600460008381526020019081526020016000206040518060600160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815260200160008201601c9054906101000a900460ff1615151515815250509050600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff161461306357809250505061309d565b612f4e565b5b505b6040517fdf2d9b4200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b919050565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b6000808273ffffffffffffffffffffffffffffffffffffffff163b119050919050565b60008373ffffffffffffffffffffffffffffffffffffffff1663150b7a026131b1612832565b8786866040518563ffffffff1660e01b81526004016131d39493929190614b96565b602060405180830381600087803b1580156131ed57600080fd5b505af192505050801561321e57506040513d601f19601f8201168201806040525081019061321b9190614bf7565b60015b613298573d806000811461324e576040519150601f19603f3d011682016040523d82523d6000602084013e613253565b606091505b50600081511415613290576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050949350505050565b6060600980546132fa90614366565b80601f016020809104026020016040519081016040528092919081815260200182805461332690614366565b80156133735780601f1061334857610100808354040283529160200191613373565b820191906000526020600020905b81548152906001019060200180831161335657829003601f168201915b5050505050905090565b606060008214156133c5576040518060400160405280600181526020017f300000000000000000000000000000000000000000000000000000000000000081525090506134d9565b600082905060005b600082146133f75780806133e090614a66565b915050600a826133f09190614c53565b91506133cd565b60008167ffffffffffffffff81111561341357613412613cd6565b5b6040519080825280601f01601f1916602001820160405280156134455781602001600182028036833780820191505090505b5090505b600085146134d25760018261345e9190614c84565b9150600a8561346d9190614cb8565b60306134799190614a10565b60f81b81838151811061348f5761348e614824565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a856134cb9190614c53565b9450613449565b8093505050505b919050565b50505050565b50505050565b6134f783838360016134fc565b505050565b600080549050600073ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff161415613569576040517f2e07630000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b60008414156135a4576040517fb562e8dd00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6135b160008683876134de565b83600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a900467ffffffffffffffff160192506101000a81548167ffffffffffffffff021916908367ffffffffffffffff16021790555083600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160088282829054906101000a900467ffffffffffffffff160192506101000a81548167ffffffffffffffff021916908367ffffffffffffffff160217905550846004600083815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550426004600083815260200190815260200160002060000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff16021790555060008190506000858201905083801561377b575061377a8773ffffffffffffffffffffffffffffffffffffffff16613168565b5b15613841575b818773ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a46137f0600088848060010195508861318b565b613826576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8082141561378157826000541461383c57600080fd5b6138ad565b5b818060010192508773ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a480821415613842575b8160008190555050506138c360008683876134e4565b5050505050565b8280546138d690614366565b90600052602060002090601f0160209004810192826138f8576000855561393f565b82601f1061391157805160ff191683800117855561393f565b8280016001018555821561393f579182015b8281111561393e578251825591602001919060010190613923565b5b50905061394c9190613993565b5090565b6040518060600160405280600073ffffffffffffffffffffffffffffffffffffffff168152602001600067ffffffffffffffff1681526020016000151581525090565b5b808211156139ac576000816000905550600101613994565b5090565b6000604051905090565b600080fd5b600080fd5b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b6139f9816139c4565b8114613a0457600080fd5b50565b600081359050613a16816139f0565b92915050565b600060208284031215613a3257613a316139ba565b5b6000613a4084828501613a07565b91505092915050565b60008115159050919050565b613a5e81613a49565b82525050565b6000602082019050613a796000830184613a55565b92915050565b600061ffff82169050919050565b613a9681613a7f565b8114613aa157600080fd5b50565b600081359050613ab381613a8d565b92915050565b600060208284031215613acf57613ace6139ba565b5b6000613add84828501613aa4565b91505092915050565b600081519050919050565b600082825260208201905092915050565b60005b83811015613b20578082015181840152602081019050613b05565b83811115613b2f576000848401525b50505050565b6000601f19601f8301169050919050565b6000613b5182613ae6565b613b5b8185613af1565b9350613b6b818560208601613b02565b613b7481613b35565b840191505092915050565b60006020820190508181036000830152613b998184613b46565b905092915050565b6000819050919050565b613bb481613ba1565b8114613bbf57600080fd5b50565b600081359050613bd181613bab565b92915050565b600060208284031215613bed57613bec6139ba565b5b6000613bfb84828501613bc2565b91505092915050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000613c2f82613c04565b9050919050565b613c3f81613c24565b82525050565b6000602082019050613c5a6000830184613c36565b92915050565b613c6981613c24565b8114613c7457600080fd5b50565b600081359050613c8681613c60565b92915050565b60008060408385031215613ca357613ca26139ba565b5b6000613cb185828601613c77565b9250506020613cc285828601613bc2565b9150509250929050565b600080fd5b600080fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b613d0e82613b35565b810181811067ffffffffffffffff82111715613d2d57613d2c613cd6565b5b80604052505050565b6000613d406139b0565b9050613d4c8282613d05565b919050565b600067ffffffffffffffff821115613d6c57613d6b613cd6565b5b613d7582613b35565b9050602081019050919050565b82818337600083830152505050565b6000613da4613d9f84613d51565b613d36565b905082815260208101848484011115613dc057613dbf613cd1565b5b613dcb848285613d82565b509392505050565b600082601f830112613de857613de7613ccc565b5b8135613df8848260208601613d91565b91505092915050565b600060208284031215613e1757613e166139ba565b5b600082013567ffffffffffffffff811115613e3557613e346139bf565b5b613e4184828501613dd3565b91505092915050565b613e5381613ba1565b82525050565b6000602082019050613e6e6000830184613e4a565b92915050565b600080600060608486031215613e8d57613e8c6139ba565b5b6000613e9b86828701613c77565b9350506020613eac86828701613c77565b9250506040613ebd86828701613bc2565b9150509250925092565b60008060408385031215613ede57613edd6139ba565b5b6000613eec85828601613aa4565b9250506020613efd85828601613c77565b9150509250929050565b600060208284031215613f1d57613f1c6139ba565b5b6000613f2b84828501613c77565b91505092915050565b600060ff82169050919050565b613f4a81613f34565b8114613f5557600080fd5b50565b600081359050613f6781613f41565b92915050565b600060208284031215613f8357613f826139ba565b5b6000613f9184828501613f58565b91505092915050565b613fa381613f34565b82525050565b6000602082019050613fbe6000830184613f9a565b92915050565b600080fd5b600080fd5b60008083601f840112613fe457613fe3613ccc565b5b8235905067ffffffffffffffff81111561400157614000613fc4565b5b60208301915083602082028301111561401d5761401c613fc9565b5b9250929050565b6000806020838503121561403b5761403a6139ba565b5b600083013567ffffffffffffffff811115614059576140586139bf565b5b61406585828601613fce565b92509250509250929050565b61407a81613a49565b811461408557600080fd5b50565b60008135905061409781614071565b92915050565b600080604083850312156140b4576140b36139ba565b5b60006140c285828601613c77565b92505060206140d385828601614088565b9150509250929050565b600067ffffffffffffffff8211156140f8576140f7613cd6565b5b61410182613b35565b9050602081019050919050565b600061412161411c846140dd565b613d36565b90508281526020810184848401111561413d5761413c613cd1565b5b614148848285613d82565b509392505050565b600082601f83011261416557614164613ccc565b5b813561417584826020860161410e565b91505092915050565b60008060008060808587031215614198576141976139ba565b5b60006141a687828801613c77565b94505060206141b787828801613c77565b93505060406141c887828801613bc2565b925050606085013567ffffffffffffffff8111156141e9576141e86139bf565b5b6141f587828801614150565b91505092959194509250565b60008060006040848603121561421a576142196139ba565b5b600061422886828701613f58565b935050602084013567ffffffffffffffff811115614249576142486139bf565b5b61425586828701613fce565b92509250509250925092565b61426a81613a7f565b82525050565b60006020820190506142856000830184614261565b92915050565b600080604083850312156142a2576142a16139ba565b5b60006142b085828601613c77565b92505060206142c185828601613c77565b9150509250929050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b6000614301602083613af1565b915061430c826142cb565b602082019050919050565b60006020820190508181036000830152614330816142f4565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b6000600282049050600182168061437e57607f821691505b6020821081141561439257614391614337565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b60006143d282613a7f565b91506143dd83613a7f565b92508261ffff038211156143f4576143f3614398565b5b828201905092915050565b7f45786365646573206d617820737570706c792e00000000000000000000000000600082015250565b6000614435601383613af1565b9150614440826143ff565b602082019050919050565b6000602082019050818103600083015261446481614428565b9050919050565b7f596f7520617265206e6f742077686974656c6973746564000000000000000000600082015250565b60006144a1601783613af1565b91506144ac8261446b565b602082019050919050565b600060208201905081810360008301526144d081614494565b9050919050565b60006144e282613f34565b91506144ed83613f34565b92508260ff0382111561450357614502614398565b5b828201905092915050565b7f45786365656473206d617820206c696d69742020706572206164647265737300600082015250565b6000614544601f83613af1565b915061454f8261450e565b602082019050919050565b6000602082019050818103600083015261457381614537565b9050919050565b7f57686974656c697374206d696e74696e67206973206f76657221000000000000600082015250565b60006145b0601a83613af1565b91506145bb8261457a565b602082019050919050565b600060208201905081810360008301526145df816145a3565b9050919050565b60006145f182613ba1565b91506145fc83613ba1565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff048311821515161561463557614634614398565b5b828202905092915050565b7f496e73756666696369656e742066756e64732100000000000000000000000000600082015250565b6000614676601383613af1565b915061468182614640565b602082019050919050565b600060208201905081810360008301526146a581614669565b9050919050565b60006146b782613f34565b91506146c283613f34565b9250828210156146d5576146d4614398565b5b828203905092915050565b7f45786365656473206d617820737570706c792e00000000000000000000000000600082015250565b6000614716601383613af1565b9150614721826146e0565b602082019050919050565b6000602082019050818103600083015261474581614709565b9050919050565b7f45786365656473206d617820706572207472616e73616374696f6e2e00000000600082015250565b6000614782601c83613af1565b915061478d8261474c565b602082019050919050565b600060208201905081810360008301526147b181614775565b9050919050565b7f54686520636f6e74726163742069732070617573656421000000000000000000600082015250565b60006147ee601783613af1565b91506147f9826147b8565b602082019050919050565b6000602082019050818103600083015261481d816147e1565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b600061485e82613f34565b915060ff82141561487257614871614398565b5b600182019050919050565b7f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008201527f6e6578697374656e7420746f6b656e0000000000000000000000000000000000602082015250565b60006148d9602f83613af1565b91506148e48261487d565b604082019050919050565b60006020820190508181036000830152614908816148cc565b9050919050565b600081905092915050565b600061492582613ae6565b61492f818561490f565b935061493f818560208601613b02565b80840191505092915050565b60008190508160005260206000209050919050565b6000815461496d81614366565b614977818661490f565b9450600182166000811461499257600181146149a3576149d6565b60ff198316865281860193506149d6565b6149ac8561494b565b60005b838110156149ce578154818901526001820191506020810190506149af565b838801955050505b50505092915050565b60006149eb828661491a565b91506149f7828561491a565b9150614a038284614960565b9150819050949350505050565b6000614a1b82613ba1565b9150614a2683613ba1565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115614a5b57614a5a614398565b5b828201905092915050565b6000614a7182613ba1565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff821415614aa457614aa3614398565b5b600182019050919050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b6000614b0b602683613af1565b9150614b1682614aaf565b604082019050919050565b60006020820190508181036000830152614b3a81614afe565b9050919050565b600081519050919050565b600082825260208201905092915050565b6000614b6882614b41565b614b728185614b4c565b9350614b82818560208601613b02565b614b8b81613b35565b840191505092915050565b6000608082019050614bab6000830187613c36565b614bb86020830186613c36565b614bc56040830185613e4a565b8181036060830152614bd78184614b5d565b905095945050505050565b600081519050614bf1816139f0565b92915050565b600060208284031215614c0d57614c0c6139ba565b5b6000614c1b84828501614be2565b91505092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b6000614c5e82613ba1565b9150614c6983613ba1565b925082614c7957614c78614c24565b5b828204905092915050565b6000614c8f82613ba1565b9150614c9a83613ba1565b925082821015614cad57614cac614398565b5b828203905092915050565b6000614cc382613ba1565b9150614cce83613ba1565b925082614cde57614cdd614c24565b5b82820690509291505056fea264697066735822122006413b55a6292a68c68e29c091685c2794ebdf25498134856a71d412bae0caaf64736f6c63430008090033

Deployed Bytecode Sourcemap

44147:5818:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;24471:305;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;46766:97;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;27584:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;29087:204;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;47376:75;;;;;;;;;;;;;:::i;:::-;;28650:371;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;49231:102;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;44345:34;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;23720:303;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;29952:170;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;45951:326;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;49341:91;;;;;;;;;;;;;:::i;:::-;;44822:46;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;49519:70;;;;;;;;;;;;;:::i;:::-;;49713:144;;;;;;;;;;;;;:::i;:::-;;30193:185;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;49438:76;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;47570:134;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;44709:49;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;44649:25;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;48132:986;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;27392:125;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;44967:976;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;24840:206;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;43293:103;;;;;;;;;;;;;:::i;:::-;;49124:102;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;44617:27;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;42641:87;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;47716:200;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;47924:204;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;44384:32;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;44463:36;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;27753:104;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;29363:287;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;44679:25;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;49595:107;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;30449:369;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;46878:490;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;46283:472;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;47455:106;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;44428:30;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;44764:53;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;29721:164;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;44305:23;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;43551:201;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;44506:43;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;24471:305;24573:4;24625:25;24610:40;;;:11;:40;;;;:105;;;;24682:33;24667:48;;;:11;:48;;;;24610:105;:158;;;;24732:36;24756:11;24732:23;:36::i;:::-;24610:158;24590:178;;24471:305;;;:::o;46766:97::-;42872:12;:10;:12::i;:::-;42861:23;;:7;:5;:7::i;:::-;:23;;;42853:69;;;;;;;;;;;;:::i;:::-;;;;;;;;;46847:10:::1;46835:9;;:22;;;;;;;;;;;;;;;;;;46766:97:::0;:::o;27584:100::-;27638:13;27671:5;27664:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;27584:100;:::o;29087:204::-;29155:7;29180:16;29188:7;29180;:16::i;:::-;29175:64;;29205:34;;;;;;;;;;;;;;29175:64;29259:15;:24;29275:7;29259:24;;;;;;;;;;;;;;;;;;;;;29252:31;;29087:204;;;:::o;47376:75::-;42872:12;:10;:12::i;:::-;42861:23;;:7;:5;:7::i;:::-;:23;;;42853:69;;;;;;;;;;;;:::i;:::-;;;;;;;;;47437:8:::1;;;;;;;;;;;47436:9;47425:8;;:20;;;;;;;;;;;;;;;;;;47376:75::o:0;28650:371::-;28723:13;28739:24;28755:7;28739:15;:24::i;:::-;28723:40;;28784:5;28778:11;;:2;:11;;;28774:48;;;28798:24;;;;;;;;;;;;;;28774:48;28855:5;28839:21;;:12;:10;:12::i;:::-;:21;;;;:63;;;;;28865:37;28882:5;28889:12;:10;:12::i;:::-;28865:16;:37::i;:::-;28864:38;28839:63;28835:138;;;28926:35;;;;;;;;;;;;;;28835:138;28985:28;28994:2;28998:7;29007:5;28985:8;:28::i;:::-;28712:309;28650:371;;:::o;49231:102::-;42872:12;:10;:12::i;:::-;42861:23;;:7;:5;:7::i;:::-;:23;;;42853:69;;;;;;;;;;;;:::i;:::-;;;;;;;;;49317:10:::1;49305:9;:22;;;;;;;;;;;;:::i;:::-;;49231:102:::0;:::o;44345:34::-;;;;:::o;23720:303::-;23764:7;23989:15;:13;:15::i;:::-;23974:12;;23958:13;;:28;:46;23951:53;;23720:303;:::o;29952:170::-;30086:28;30096:4;30102:2;30106:7;30086:9;:28::i;:::-;29952:170;;;:::o;45951:326::-;42872:12;:10;:12::i;:::-;42861:23;;:7;:5;:7::i;:::-;:23;;;42853:69;;;;;;;;;;;;:::i;:::-;;;;;;;;;46034:18:::1;46062:13;:11;:13::i;:::-;46034:42;;46120:9;;;;;;;;;;;46091:38;;46105:11;46091;:25;;;;:::i;:::-;:38;;;;46083:70;;;;;;;;;;;;:::i;:::-;;;;;;;;;46161:34;46171:9;46183:11;46161:34;;:9;:34::i;:::-;46203:18;;;46229:16;;;46253:18;;;46026:251;45951:326:::0;;:::o;49341:91::-;42872:12;:10;:12::i;:::-;42861:23;;:7;:5;:7::i;:::-;:23;;;42853:69;;;;;;;;;;;;:::i;:::-;;;;;;;;;49398:6:::1;;;;;;;;;;;49397:7;49388:6;;:16;;;;;;;;;;;;;;;;;;49422:4;49411:8;;:15;;;;;;;;;;;;;;;;;;49341:91::o:0;44822:46::-;;;;;;;;;;;;;;;;;;;;;;:::o;49519:70::-;42872:12;:10;:12::i;:::-;42861:23;;:7;:5;:7::i;:::-;:23;;;42853:69;;;;;;;;;;;;:::i;:::-;;;;;;;;;49578:6:::1;;;;;;;;;;;49577:7;49568:6;;:16;;;;;;;;;;;;;;;;;;49519:70::o:0;49713:144::-;42872:12;:10;:12::i;:::-;42861:23;;:7;:5;:7::i;:::-;:23;;;42853:69;;;;;;;;;;;;:::i;:::-;;;;;;;;;49757:13:::1;49773:21;49757:37;;49810:10;49802:28;;:39;49831:8;49802:39;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;49752:105;49713:144::o:0;30193:185::-;30331:39;30348:4;30354:2;30358:7;30331:39;;;;;;;;;;;;:16;:39::i;:::-;30193:185;;;:::o;49438:76::-;42872:12;:10;:12::i;:::-;42861:23;;:7;:5;:7::i;:::-;:23;;;42853:69;;;;;;;;;;;;:::i;:::-;;;;;;;;;49501:5:::1;49494:4;:12;;;;49438:76:::0;:::o;47570:134::-;42872:12;:10;:12::i;:::-;42861:23;;:7;:5;:7::i;:::-;:23;;;42853:69;;;;;;;;;;;;:::i;:::-;;;;;;;;;47673:6:::1;47644:26;;:35;;;;;;;;;;;;;;;;;;47685:13;;;47570:134:::0;:::o;44709:49::-;;;;;;;;;;;;;;;;;;;;;;:::o;44649:25::-;;;;;;;;;;;;;:::o;48132:986::-;48218:9;48230:15;:27;48246:10;48230:27;;;;;;;;;;;;;;;;;;;;;;;;;48218:39;;48275:13;:25;48289:10;48275:25;;;;;;;;;;;;;;;;;;;;;;;;;48267:62;;;;;;;;;;;;:::i;:::-;;;;;;;;;48371:18;;;;;;;;;;;48350:39;;48356:11;48350:3;:17;;;;:::i;:::-;:39;;;;48341:84;;;;;;;;;;;;:::i;:::-;;;;;;;;;48453:8;;;;;;;;;;;48452:9;48444:48;;;;;;;;;;;;:::i;:::-;;;;;;;;;48514:26;;;;;;;;;;;48507:33;;:3;:33;;;48504:435;;48591:11;48575:27;;:13;;:27;;;;:::i;:::-;48562:9;:40;;48554:72;;;;;;;;;;;;:::i;:::-;;;;;;;;;48504:435;;;48657:16;48690:3;48676:11;:17;;;;:::i;:::-;48657:36;;48720:26;;;;;;;;;;;48707:39;;:10;:39;;;48704:208;;;48793:26;;;;;;;;;;;48780:10;:39;;;;:::i;:::-;48767:52;;48867:10;48851:26;;:13;;:26;;;;:::i;:::-;48838:9;:39;;48830:71;;;;;;;;;;;;:::i;:::-;;;;;;;;;48704:208;48645:294;48504:435;48960:35;48970:10;48983:11;48960:35;;:9;:35::i;:::-;49039:11;49033:3;:17;;;;:::i;:::-;49004:15;:27;49020:10;49004:27;;;;;;;;;;;;;;;;:46;;;;;;;;;;;;;;;;;;49066:18;;;49094:10;;;48191:927;48132:986;:::o;27392:125::-;27456:7;27483:21;27496:7;27483:12;:21::i;:::-;:26;;;27476:33;;27392:125;;;:::o;44967:976::-;45026:18;45054:13;:11;:13::i;:::-;45026:42;;45076:9;45088:19;:31;45108:10;45088:31;;;;;;;;;;;;;;;;;;;;;;;;;45076:43;;45163:9;;;;;;;;;;;45134:38;;45148:11;45134:25;;:11;:25;;;;:::i;:::-;:38;;;;45126:70;;;;;;;;;;;;:::i;:::-;;;;;;;;;45232:18;;;;;;;;;;;45211:39;;45225:3;45211:11;:17;;;;:::i;:::-;:39;;;;45203:80;;;;;;;;;;;;:::i;:::-;;;;;;;;;45301:6;;;;;;;;;;;45300:7;45292:43;;;;;;;;;;;;:::i;:::-;;;;;;;;;45360:26;;;;;;;;;;;45353:33;;:3;:33;;;45350:417;;45428:11;45421:18;;:4;;:18;;;;:::i;:::-;45408:9;:31;;45400:63;;;;;;;;;;;;:::i;:::-;;;;;;;;;45350:417;;;45494:16;45527:3;45513:11;:17;;;;:::i;:::-;45494:36;;45557:26;;;;;;;;;;;45544:39;;:10;:39;;;45541:199;;;45630:26;;;;;;;;;;;45617:10;:39;;;;:::i;:::-;45604:52;;45695:10;45688:17;;:4;;:17;;;;:::i;:::-;45675:9;:30;;45667:62;;;;;;;;;;;;:::i;:::-;;;;;;;;;45541:199;45482:285;45350:417;45783:35;45793:10;45806:11;45783:35;;:9;:35::i;:::-;45875:3;45861:11;:17;;;;:::i;:::-;45827:19;:31;45847:10;45827:31;;;;;;;;;;;;;;;;:51;;;;;;;;;;;;;;;;;;45893:18;;;45919;;;45018:925;;44967:976;:::o;24840:206::-;24904:7;24945:1;24928:19;;:5;:19;;;24924:60;;;24956:28;;;;;;;;;;;;;;24924:60;25010:12;:19;25023:5;25010:19;;;;;;;;;;;;;;;:27;;;;;;;;;;;;25002:36;;24995:43;;24840:206;;;:::o;43293:103::-;42872:12;:10;:12::i;:::-;42861:23;;:7;:5;:7::i;:::-;:23;;;42853:69;;;;;;;;;;;;:::i;:::-;;;;;;;;;43358:30:::1;43385:1;43358:18;:30::i;:::-;43293:103::o:0;49124:102::-;42872:12;:10;:12::i;:::-;42861:23;;:7;:5;:7::i;:::-;:23;;;42853:69;;;;;;;;;;;;:::i;:::-;;;;;;;;;49210:10:::1;49198:9;:22;;;;;;;;;;;;:::i;:::-;;49124:102:::0;:::o;44617:27::-;;;;;;;;;;;;;:::o;42641:87::-;42687:7;42714:6;;;;;;;;;;;42707:13;;42641:87;:::o;47716:200::-;42872:12;:10;:12::i;:::-;42861:23;;:7;:5;:7::i;:::-;:23;;;42853:69;;;;;;;;;;;;:::i;:::-;;;;;;;;;47809:7:::1;47805:101;47826:7;;:14;;47822:1;:18;;;47805:101;;;47890:4;47862:13;:25;47876:7;;47884:1;47876:10;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;:::i;:::-;47862:25;;;;;;;;;;;;;;;;:32;;;;;;;;;;;;;;;;;;47842:3;;;;;:::i;:::-;;;;47805:101;;;;47716:200:::0;;:::o;47924:204::-;42872:12;:10;:12::i;:::-;42861:23;;:7;:5;:7::i;:::-;:23;;;42853:69;;;;;;;;;;;;:::i;:::-;;;;;;;;;48022:7:::1;48018:103;48039:7;;:14;;48035:1;:18;;;48018:103;;;48104:5;48076:13;:25;48090:7;;48098:1;48090:10;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;:::i;:::-;48076:25;;;;;;;;;;;;;;;;:33;;;;;;;;;;;;;;;;;;48055:3;;;;;:::i;:::-;;;;48018:103;;;;47924:204:::0;;:::o;44384:32::-;;;;:::o;44463:36::-;;;;;;;;;;;;;:::o;27753:104::-;27809:13;27842:7;27835:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;27753:104;:::o;29363:287::-;29474:12;:10;:12::i;:::-;29462:24;;:8;:24;;;29458:54;;;29495:17;;;;;;;;;;;;;;29458:54;29570:8;29525:18;:32;29544:12;:10;:12::i;:::-;29525:32;;;;;;;;;;;;;;;:42;29558:8;29525:42;;;;;;;;;;;;;;;;:53;;;;;;;;;;;;;;;;;;29623:8;29594:48;;29609:12;:10;:12::i;:::-;29594:48;;;29633:8;29594:48;;;;;;:::i;:::-;;;;;;;;29363:287;;:::o;44679:25::-;;;;;;;;;;;;;:::o;49595:107::-;42872:12;:10;:12::i;:::-;42861:23;;:7;:5;:7::i;:::-;:23;;;42853:69;;;;;;;;;;;;:::i;:::-;;;;;;;;;49688:6:::1;49667:18;;:27;;;;;;;;;;;;;;;;;;49595:107:::0;:::o;30449:369::-;30616:28;30626:4;30632:2;30636:7;30616:9;:28::i;:::-;30659:15;:2;:13;;;:15::i;:::-;:76;;;;;30679:56;30710:4;30716:2;30720:7;30729:5;30679:30;:56::i;:::-;30678:57;30659:76;30655:156;;;30759:40;;;;;;;;;;;;;;30655:156;30449:369;;;;:::o;46878:490::-;46977:13;47018:17;47026:8;47018:7;:17::i;:::-;47002:98;;;;;;;;;;;;:::i;:::-;;;;;;;;;47128:5;47118:15;;:6;;;;;;;;;;;:15;;;47113:50;;;47150:9;47143:16;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;47113:50;47177:28;47208:10;:8;:10::i;:::-;47177:41;;47263:1;47238:14;47232:28;:32;:130;;;;;;;;;;;;;;;;;47300:14;47316:19;:8;:17;:19::i;:::-;47337:9;47283:64;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;47232:130;47225:137;;;46878:490;;;;:::o;46283:472::-;42872:12;:10;:12::i;:::-;42861:23;;:7;:5;:7::i;:::-;:23;;;42853:69;;;;;;;;;;;;:::i;:::-;;;;;;;;;46382:18:::1;46410:13;:11;:13::i;:::-;46382:42;;46432:16;46473:9;;:16;;46453:17;:36;;;;;;:::i;:::-;46432:57;;46533:9;;;;;;;;;;;46504:38;;46518:11;46504;:25;;;;;;:::i;:::-;:38;;46496:70;;;;;;;;;;;;:::i;:::-;;;;;;;;;46579:9;46574:116;46598:9;;:16;;46594:1;:20;46574:116;;;46636:42;46646:9;;46656:1;46646:12;;;;;;;:::i;:::-;;;;;;;;;;;;;;;:::i;:::-;46660:17;46636:42;;:9;:42::i;:::-;46616:3;;;;;:::i;:::-;;;;46574:116;;;;46699:24;;;46731:18;;;46374:381;;46283:472:::0;;;:::o;47455:106::-;42872:12;:10;:12::i;:::-;42861:23;;:7;:5;:7::i;:::-;:23;;;42853:69;;;;;;;;;;;;:::i;:::-;;;;;;;;;47531:5:::1;47515:13;:21;;;;47543:12;;;47455:106:::0;:::o;44428:30::-;;;;;;;;;;;;;:::o;44764:53::-;;;;;;;;;;;;;;;;;;;;;;:::o;29721:164::-;29818:4;29842:18;:25;29861:5;29842:25;;;;;;;;;;;;;;;:35;29868:8;29842:35;;;;;;;;;;;;;;;;;;;;;;;;;29835:42;;29721:164;;;;:::o;44305:23::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;43551:201::-;42872:12;:10;:12::i;:::-;42861:23;;:7;:5;:7::i;:::-;:23;;;42853:69;;;;;;;;;;;;:::i;:::-;;;;;;;;;43660:1:::1;43640:22;;:8;:22;;;;43632:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;43716:28;43735:8;43716:18;:28::i;:::-;43551:201:::0;:::o;44506:43::-;;;;;;;;;;;;;:::o;14396:157::-;14481:4;14520:25;14505:40;;;:11;:40;;;;14498:47;;14396:157;;;:::o;2866:98::-;2919:7;2946:10;2939:17;;2866:98;:::o;31073:187::-;31130:4;31173:7;31154:15;:13;:15::i;:::-;:26;;:53;;;;;31194:13;;31184:7;:23;31154:53;:98;;;;;31225:11;:20;31237:7;31225:20;;;;;;;;;;;:27;;;;;;;;;;;;31224:28;31154:98;31147:105;;31073:187;;;:::o;39243:196::-;39385:2;39358:15;:24;39374:7;39358:24;;;;;;;;;;;;:29;;;;;;;;;;;;;;;;;;39423:7;39419:2;39403:28;;39412:5;39403:28;;;;;;;;;;;;39243:196;;;:::o;23494:92::-;23550:7;23494:92;:::o;34186:2130::-;34301:35;34339:21;34352:7;34339:12;:21::i;:::-;34301:59;;34399:4;34377:26;;:13;:18;;;:26;;;34373:67;;34412:28;;;;;;;;;;;;;;34373:67;34453:22;34495:4;34479:20;;:12;:10;:12::i;:::-;:20;;;:73;;;;34516:36;34533:4;34539:12;:10;:12::i;:::-;34516:16;:36::i;:::-;34479:73;:126;;;;34593:12;:10;:12::i;:::-;34569:36;;:20;34581:7;34569:11;:20::i;:::-;:36;;;34479:126;34453:153;;34624:17;34619:66;;34650:35;;;;;;;;;;;;;;34619:66;34714:1;34700:16;;:2;:16;;;34696:52;;;34725:23;;;;;;;;;;;;;;34696:52;34761:43;34783:4;34789:2;34793:7;34802:1;34761:21;:43::i;:::-;34869:35;34886:1;34890:7;34899:4;34869:8;:35::i;:::-;35230:1;35200:12;:18;35213:4;35200:18;;;;;;;;;;;;;;;:26;;;:31;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;35274:1;35246:12;:16;35259:2;35246:16;;;;;;;;;;;;;;;:24;;;:29;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;35292:31;35326:11;:20;35338:7;35326:20;;;;;;;;;;;35292:54;;35377:2;35361:8;:13;;;:18;;;;;;;;;;;;;;;;;;35427:15;35394:8;:23;;;:49;;;;;;;;;;;;;;;;;;35695:19;35727:1;35717:7;:11;35695:33;;35743:31;35777:11;:24;35789:11;35777:24;;;;;;;;;;;35743:58;;35845:1;35820:27;;:8;:13;;;;;;;;;;;;:27;;;35816:384;;;36030:13;;36015:11;:28;36011:174;;36084:4;36068:8;:13;;;:20;;;;;;;;;;;;;;;;;;36137:13;:28;;;36111:8;:23;;;:54;;;;;;;;;;;;;;;;;;36011:174;35816:384;35175:1036;;;36247:7;36243:2;36228:27;;36237:4;36228:27;;;;;;;;;;;;36266:42;36287:4;36293:2;36297:7;36306:1;36266:20;:42::i;:::-;34290:2026;;34186:2130;;;:::o;31268:104::-;31337:27;31347:2;31351:8;31337:27;;;;;;;;;;;;:9;:27::i;:::-;31268:104;;:::o;26221:1109::-;26283:21;;:::i;:::-;26317:12;26332:7;26317:22;;26400:4;26381:15;:13;:15::i;:::-;:23;;:47;;;;;26415:13;;26408:4;:20;26381:47;26377:886;;;26449:31;26483:11;:17;26495:4;26483:17;;;;;;;;;;;26449:51;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;26524:9;:16;;;26519:729;;26595:1;26569:28;;:9;:14;;;:28;;;26565:101;;26633:9;26626:16;;;;;;26565:101;26968:261;26975:4;26968:261;;;27008:6;;;;;;;;27053:11;:17;27065:4;27053:17;;;;;;;;;;;27041:29;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;27127:1;27101:28;;:9;:14;;;:28;;;27097:109;;27169:9;27162:16;;;;;;27097:109;26968:261;;;26519:729;26430:833;26377:886;27291:31;;;;;;;;;;;;;;26221:1109;;;;:::o;43912:191::-;43986:16;44005:6;;;;;;;;;;;43986:25;;44031:8;44022:6;;:17;;;;;;;;;;;;;;;;;;44086:8;44055:40;;44076:8;44055:40;;;;;;;;;;;;43975:128;43912:191;:::o;4313:326::-;4373:4;4630:1;4608:7;:19;;;:23;4601:30;;4313:326;;;:::o;39931:667::-;40094:4;40131:2;40115:36;;;40152:12;:10;:12::i;:::-;40166:4;40172:7;40181:5;40115:72;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;40111:480;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;40366:1;40349:6;:13;:18;40345:235;;;40395:40;;;;;;;;;;;;;;40345:235;40538:6;40532:13;40523:6;40519:2;40515:15;40508:38;40111:480;40244:45;;;40234:55;;;:6;:55;;;;40227:62;;;39931:667;;;;;;:::o;49865:97::-;49918:13;49947:9;49940:16;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;49865:97;:::o;428:723::-;484:13;714:1;705:5;:10;701:53;;;732:10;;;;;;;;;;;;;;;;;;;;;701:53;764:12;779:5;764:20;;795:14;820:78;835:1;827:4;:9;820:78;;853:8;;;;;:::i;:::-;;;;884:2;876:10;;;;;:::i;:::-;;;820:78;;;908:19;940:6;930:17;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;908:39;;958:154;974:1;965:5;:10;958:154;;1002:1;992:11;;;;;:::i;:::-;;;1069:2;1061:5;:10;;;;:::i;:::-;1048:2;:24;;;;:::i;:::-;1035:39;;1018:6;1025;1018:14;;;;;;;;:::i;:::-;;;;;:56;;;;;;;;;;;1098:2;1089:11;;;;;:::i;:::-;;;958:154;;;1136:6;1122:21;;;;;428:723;;;;:::o;41246:159::-;;;;;:::o;42064:158::-;;;;;:::o;31735:163::-;31858:32;31864:2;31868:8;31878:5;31885:4;31858:5;:32::i;:::-;31735:163;;;:::o;32157:1775::-;32296:20;32319:13;;32296:36;;32361:1;32347:16;;:2;:16;;;32343:48;;;32372:19;;;;;;;;;;;;;;32343:48;32418:1;32406:8;:13;32402:44;;;32428:18;;;;;;;;;;;;;;32402:44;32459:61;32489:1;32493:2;32497:12;32511:8;32459:21;:61::i;:::-;32832:8;32797:12;:16;32810:2;32797:16;;;;;;;;;;;;;;;:24;;;:44;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;32896:8;32856:12;:16;32869:2;32856:16;;;;;;;;;;;;;;;:29;;;:49;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;32955:2;32922:11;:25;32934:12;32922:25;;;;;;;;;;;:30;;;:35;;;;;;;;;;;;;;;;;;33022:15;32972:11;:25;32984:12;32972:25;;;;;;;;;;;:40;;;:66;;;;;;;;;;;;;;;;;;33055:20;33078:12;33055:35;;33105:11;33134:8;33119:12;:23;33105:37;;33163:4;:23;;;;;33171:15;:2;:13;;;:15::i;:::-;33163:23;33159:641;;;33207:314;33263:12;33259:2;33238:38;;33255:1;33238:38;;;;;;;;;;;;33304:69;33343:1;33347:2;33351:14;;;;;;33367:5;33304:30;:69::i;:::-;33299:174;;33409:40;;;;;;;;;;;;;;33299:174;33516:3;33500:12;:19;;33207:314;;33602:12;33585:13;;:29;33581:43;;33616:8;;;33581:43;33159:641;;;33665:120;33721:14;;;;;;33717:2;33696:40;;33713:1;33696:40;;;;;;;;;;;;33780:3;33764:12;:19;;33665:120;;33159:641;33830:12;33814:13;:28;;;;32772:1082;;33864:60;33893:1;33897:2;33901:12;33915:8;33864:20;:60::i;:::-;32285:1647;32157: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:329::-;9770:6;9819:2;9807:9;9798:7;9794:23;9790:32;9787:119;;;9825:79;;:::i;:::-;9787:119;9945:1;9970:53;10015:7;10006:6;9995:9;9991:22;9970:53;:::i;:::-;9960:63;;9916:117;9711:329;;;;:::o;10046:86::-;10081:7;10121:4;10114:5;10110:16;10099:27;;10046:86;;;:::o;10138:118::-;10209:22;10225:5;10209:22;:::i;:::-;10202:5;10199:33;10189:61;;10246:1;10243;10236:12;10189:61;10138:118;:::o;10262:135::-;10306:5;10344:6;10331:20;10322:29;;10360:31;10385:5;10360:31;:::i;:::-;10262:135;;;;:::o;10403:325::-;10460:6;10509:2;10497:9;10488:7;10484:23;10480:32;10477:119;;;10515:79;;:::i;:::-;10477:119;10635:1;10660:51;10703:7;10694:6;10683:9;10679:22;10660:51;:::i;:::-;10650:61;;10606:115;10403:325;;;;:::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:117::-;11181:1;11178;11171:12;11195:117;11304:1;11301;11294:12;11335:568;11408:8;11418:6;11468:3;11461:4;11453:6;11449:17;11445:27;11435:122;;11476:79;;:::i;:::-;11435:122;11589:6;11576:20;11566:30;;11619:18;11611:6;11608:30;11605:117;;;11641:79;;:::i;:::-;11605:117;11755:4;11747:6;11743:17;11731:29;;11809:3;11801:4;11793:6;11789:17;11779:8;11775:32;11772:41;11769:128;;;11816:79;;:::i;:::-;11769:128;11335:568;;;;;:::o;11909:559::-;11995:6;12003;12052:2;12040:9;12031:7;12027:23;12023:32;12020:119;;;12058:79;;:::i;:::-;12020:119;12206:1;12195:9;12191:17;12178:31;12236:18;12228:6;12225:30;12222:117;;;12258:79;;:::i;:::-;12222:117;12371:80;12443:7;12434:6;12423:9;12419:22;12371:80;:::i;:::-;12353:98;;;;12149:312;11909:559;;;;;:::o;12474:116::-;12544:21;12559:5;12544:21;:::i;:::-;12537:5;12534:32;12524:60;;12580:1;12577;12570:12;12524:60;12474:116;:::o;12596:133::-;12639:5;12677:6;12664:20;12655:29;;12693:30;12717:5;12693:30;:::i;:::-;12596:133;;;;:::o;12735:468::-;12800:6;12808;12857:2;12845:9;12836:7;12832:23;12828:32;12825:119;;;12863:79;;:::i;:::-;12825:119;12983:1;13008:53;13053:7;13044:6;13033:9;13029:22;13008:53;:::i;:::-;12998:63;;12954:117;13110:2;13136:50;13178:7;13169:6;13158:9;13154:22;13136:50;:::i;:::-;13126:60;;13081:115;12735:468;;;;;:::o;13209:307::-;13270:4;13360:18;13352:6;13349:30;13346:56;;;13382:18;;:::i;:::-;13346:56;13420:29;13442:6;13420:29;:::i;:::-;13412:37;;13504:4;13498;13494:15;13486:23;;13209:307;;;:::o;13522:410::-;13599:5;13624:65;13640:48;13681:6;13640:48;:::i;:::-;13624:65;:::i;:::-;13615:74;;13712:6;13705:5;13698:21;13750:4;13743:5;13739:16;13788:3;13779:6;13774:3;13770:16;13767:25;13764:112;;;13795:79;;:::i;:::-;13764:112;13885:41;13919:6;13914:3;13909;13885:41;:::i;:::-;13605:327;13522:410;;;;;:::o;13951:338::-;14006:5;14055:3;14048:4;14040:6;14036:17;14032:27;14022:122;;14063:79;;:::i;:::-;14022:122;14180:6;14167:20;14205:78;14279:3;14271:6;14264:4;14256:6;14252:17;14205:78;:::i;:::-;14196:87;;14012:277;13951:338;;;;:::o;14295:943::-;14390:6;14398;14406;14414;14463:3;14451:9;14442:7;14438:23;14434:33;14431:120;;;14470:79;;:::i;:::-;14431:120;14590:1;14615:53;14660:7;14651:6;14640:9;14636:22;14615:53;:::i;:::-;14605:63;;14561:117;14717:2;14743:53;14788:7;14779:6;14768:9;14764:22;14743:53;:::i;:::-;14733:63;;14688:118;14845:2;14871:53;14916:7;14907:6;14896:9;14892:22;14871:53;:::i;:::-;14861:63;;14816:118;15001:2;14990:9;14986:18;14973:32;15032:18;15024:6;15021:30;15018:117;;;15054:79;;:::i;:::-;15018:117;15159:62;15213:7;15204:6;15193:9;15189:22;15159:62;:::i;:::-;15149:72;;14944:287;14295:943;;;;;;;:::o;15244:700::-;15337:6;15345;15353;15402:2;15390:9;15381:7;15377:23;15373:32;15370:119;;;15408:79;;:::i;:::-;15370:119;15528:1;15553:51;15596:7;15587:6;15576:9;15572:22;15553:51;:::i;:::-;15543:61;;15499:115;15681:2;15670:9;15666:18;15653:32;15712:18;15704:6;15701:30;15698:117;;;15734:79;;:::i;:::-;15698:117;15847:80;15919:7;15910:6;15899:9;15895:22;15847:80;:::i;:::-;15829:98;;;;15624:313;15244:700;;;;;:::o;15950:115::-;16035:23;16052:5;16035:23;:::i;:::-;16030:3;16023:36;15950:115;;:::o;16071:218::-;16162:4;16200:2;16189:9;16185:18;16177:26;;16213:69;16279:1;16268:9;16264:17;16255:6;16213:69;:::i;:::-;16071:218;;;;:::o;16295:474::-;16363:6;16371;16420:2;16408:9;16399:7;16395:23;16391:32;16388:119;;;16426:79;;:::i;:::-;16388:119;16546:1;16571:53;16616:7;16607:6;16596:9;16592:22;16571:53;:::i;:::-;16561:63;;16517:117;16673:2;16699:53;16744:7;16735:6;16724:9;16720:22;16699:53;:::i;:::-;16689:63;;16644:118;16295:474;;;;;:::o;16775:182::-;16915:34;16911:1;16903:6;16899:14;16892:58;16775:182;:::o;16963:366::-;17105:3;17126:67;17190:2;17185:3;17126:67;:::i;:::-;17119:74;;17202:93;17291:3;17202:93;:::i;:::-;17320:2;17315:3;17311:12;17304:19;;16963:366;;;:::o;17335:419::-;17501:4;17539:2;17528:9;17524:18;17516:26;;17588:9;17582:4;17578:20;17574:1;17563:9;17559:17;17552:47;17616:131;17742:4;17616:131;:::i;:::-;17608:139;;17335:419;;;:::o;17760:180::-;17808:77;17805:1;17798:88;17905:4;17902:1;17895:15;17929:4;17926:1;17919:15;17946:320;17990:6;18027:1;18021:4;18017:12;18007:22;;18074:1;18068:4;18064:12;18095:18;18085:81;;18151:4;18143:6;18139:17;18129:27;;18085:81;18213:2;18205:6;18202:14;18182:18;18179:38;18176:84;;;18232:18;;:::i;:::-;18176:84;17997:269;17946:320;;;:::o;18272:180::-;18320:77;18317:1;18310:88;18417:4;18414:1;18407:15;18441:4;18438:1;18431:15;18458:242;18497:3;18516:19;18533:1;18516:19;:::i;:::-;18511:24;;18549:19;18566:1;18549:19;:::i;:::-;18544:24;;18642:1;18634:6;18630:14;18627:1;18624:21;18621:47;;;18648:18;;:::i;:::-;18621:47;18692:1;18689;18685:9;18678:16;;18458:242;;;;:::o;18706:169::-;18846:21;18842:1;18834:6;18830:14;18823:45;18706:169;:::o;18881:366::-;19023:3;19044:67;19108:2;19103:3;19044:67;:::i;:::-;19037:74;;19120:93;19209:3;19120:93;:::i;:::-;19238:2;19233:3;19229:12;19222:19;;18881:366;;;:::o;19253:419::-;19419:4;19457:2;19446:9;19442:18;19434:26;;19506:9;19500:4;19496:20;19492:1;19481:9;19477:17;19470:47;19534:131;19660:4;19534:131;:::i;:::-;19526:139;;19253:419;;;:::o;19678:173::-;19818:25;19814:1;19806:6;19802:14;19795:49;19678:173;:::o;19857:366::-;19999:3;20020:67;20084:2;20079:3;20020:67;:::i;:::-;20013:74;;20096:93;20185:3;20096:93;:::i;:::-;20214:2;20209:3;20205:12;20198:19;;19857:366;;;:::o;20229:419::-;20395:4;20433:2;20422:9;20418:18;20410:26;;20482:9;20476:4;20472:20;20468:1;20457:9;20453:17;20446:47;20510:131;20636:4;20510:131;:::i;:::-;20502:139;;20229:419;;;:::o;20654:237::-;20692:3;20711:18;20727:1;20711:18;:::i;:::-;20706:23;;20743:18;20759:1;20743:18;:::i;:::-;20738:23;;20833:1;20827:4;20823:12;20820:1;20817:19;20814:45;;;20839:18;;:::i;:::-;20814:45;20883:1;20880;20876:9;20869:16;;20654:237;;;;:::o;20897:181::-;21037:33;21033:1;21025:6;21021:14;21014:57;20897:181;:::o;21084:366::-;21226:3;21247:67;21311:2;21306:3;21247:67;:::i;:::-;21240:74;;21323:93;21412:3;21323:93;:::i;:::-;21441:2;21436:3;21432:12;21425:19;;21084:366;;;:::o;21456:419::-;21622:4;21660:2;21649:9;21645:18;21637:26;;21709:9;21703:4;21699:20;21695:1;21684:9;21680:17;21673:47;21737:131;21863:4;21737:131;:::i;:::-;21729:139;;21456:419;;;:::o;21881:176::-;22021:28;22017:1;22009:6;22005:14;21998:52;21881:176;:::o;22063:366::-;22205:3;22226:67;22290:2;22285:3;22226:67;:::i;:::-;22219:74;;22302:93;22391:3;22302:93;:::i;:::-;22420:2;22415:3;22411:12;22404:19;;22063:366;;;:::o;22435:419::-;22601:4;22639:2;22628:9;22624:18;22616:26;;22688:9;22682:4;22678:20;22674:1;22663:9;22659:17;22652:47;22716:131;22842:4;22716:131;:::i;:::-;22708:139;;22435:419;;;:::o;22860:348::-;22900:7;22923:20;22941:1;22923:20;:::i;:::-;22918:25;;22957:20;22975:1;22957:20;:::i;:::-;22952:25;;23145:1;23077:66;23073:74;23070:1;23067:81;23062:1;23055:9;23048:17;23044:105;23041:131;;;23152:18;;:::i;:::-;23041:131;23200:1;23197;23193:9;23182:20;;22860:348;;;;:::o;23214:169::-;23354:21;23350:1;23342:6;23338:14;23331:45;23214:169;:::o;23389:366::-;23531:3;23552:67;23616:2;23611:3;23552:67;:::i;:::-;23545:74;;23628:93;23717:3;23628:93;:::i;:::-;23746:2;23741:3;23737:12;23730:19;;23389:366;;;:::o;23761:419::-;23927:4;23965:2;23954:9;23950:18;23942:26;;24014:9;24008:4;24004:20;24000:1;23989:9;23985:17;23978:47;24042:131;24168:4;24042:131;:::i;:::-;24034:139;;23761:419;;;:::o;24186:185::-;24224:4;24244:18;24260:1;24244:18;:::i;:::-;24239:23;;24276:18;24292:1;24276:18;:::i;:::-;24271:23;;24313:1;24310;24307:8;24304:34;;;24318:18;;:::i;:::-;24304:34;24363:1;24360;24356:9;24348:17;;24186:185;;;;:::o;24377:169::-;24517:21;24513:1;24505:6;24501:14;24494:45;24377:169;:::o;24552:366::-;24694:3;24715:67;24779:2;24774:3;24715:67;:::i;:::-;24708:74;;24791:93;24880:3;24791:93;:::i;:::-;24909:2;24904:3;24900:12;24893:19;;24552:366;;;:::o;24924:419::-;25090:4;25128:2;25117:9;25113:18;25105:26;;25177:9;25171:4;25167:20;25163:1;25152:9;25148:17;25141:47;25205:131;25331:4;25205:131;:::i;:::-;25197:139;;24924:419;;;:::o;25349:178::-;25489:30;25485:1;25477:6;25473:14;25466:54;25349:178;:::o;25533:366::-;25675:3;25696:67;25760:2;25755:3;25696:67;:::i;:::-;25689:74;;25772:93;25861:3;25772:93;:::i;:::-;25890:2;25885:3;25881:12;25874:19;;25533:366;;;:::o;25905:419::-;26071:4;26109:2;26098:9;26094:18;26086:26;;26158:9;26152:4;26148:20;26144:1;26133:9;26129:17;26122:47;26186:131;26312:4;26186:131;:::i;:::-;26178:139;;25905:419;;;:::o;26330:173::-;26470:25;26466:1;26458:6;26454:14;26447:49;26330:173;:::o;26509:366::-;26651:3;26672:67;26736:2;26731:3;26672:67;:::i;:::-;26665:74;;26748:93;26837:3;26748:93;:::i;:::-;26866:2;26861:3;26857:12;26850:19;;26509:366;;;:::o;26881:419::-;27047:4;27085:2;27074:9;27070:18;27062:26;;27134:9;27128:4;27124:20;27120:1;27109:9;27105:17;27098:47;27162:131;27288:4;27162:131;:::i;:::-;27154:139;;26881:419;;;:::o;27306:180::-;27354:77;27351:1;27344:88;27451:4;27448:1;27441:15;27475:4;27472:1;27465:15;27492:167;27529:3;27552:22;27568:5;27552:22;:::i;:::-;27543:31;;27596:4;27589:5;27586:15;27583:41;;;27604:18;;:::i;:::-;27583:41;27651:1;27644:5;27640:13;27633:20;;27492:167;;;:::o;27665:234::-;27805:34;27801:1;27793:6;27789:14;27782:58;27874:17;27869:2;27861:6;27857:15;27850:42;27665:234;:::o;27905:366::-;28047:3;28068:67;28132:2;28127:3;28068:67;:::i;:::-;28061:74;;28144:93;28233:3;28144:93;:::i;:::-;28262:2;28257:3;28253:12;28246:19;;27905:366;;;:::o;28277:419::-;28443:4;28481:2;28470:9;28466:18;28458:26;;28530:9;28524:4;28520:20;28516:1;28505:9;28501:17;28494:47;28558:131;28684:4;28558:131;:::i;:::-;28550:139;;28277:419;;;:::o;28702:148::-;28804:11;28841:3;28826:18;;28702:148;;;;:::o;28856:377::-;28962:3;28990:39;29023:5;28990:39;:::i;:::-;29045:89;29127:6;29122:3;29045:89;:::i;:::-;29038:96;;29143:52;29188:6;29183:3;29176:4;29169:5;29165:16;29143:52;:::i;:::-;29220:6;29215:3;29211:16;29204:23;;28966:267;28856:377;;;;:::o;29239:141::-;29288:4;29311:3;29303:11;;29334:3;29331:1;29324:14;29368:4;29365:1;29355:18;29347:26;;29239:141;;;:::o;29410:845::-;29513:3;29550:5;29544:12;29579:36;29605:9;29579:36;:::i;:::-;29631:89;29713:6;29708:3;29631:89;:::i;:::-;29624:96;;29751:1;29740:9;29736:17;29767:1;29762:137;;;;29913:1;29908:341;;;;29729:520;;29762:137;29846:4;29842:9;29831;29827:25;29822:3;29815:38;29882:6;29877:3;29873:16;29866:23;;29762:137;;29908:341;29975:38;30007:5;29975:38;:::i;:::-;30035:1;30049:154;30063:6;30060:1;30057:13;30049:154;;;30137:7;30131:14;30127:1;30122:3;30118:11;30111:35;30187:1;30178:7;30174:15;30163:26;;30085:4;30082:1;30078:12;30073:17;;30049:154;;;30232:6;30227:3;30223:16;30216:23;;29915:334;;29729:520;;29517:738;;29410:845;;;;:::o;30261:589::-;30486:3;30508:95;30599:3;30590:6;30508:95;:::i;:::-;30501:102;;30620:95;30711:3;30702:6;30620:95;:::i;:::-;30613:102;;30732:92;30820:3;30811:6;30732:92;:::i;:::-;30725:99;;30841:3;30834:10;;30261:589;;;;;;:::o;30856:305::-;30896:3;30915:20;30933:1;30915:20;:::i;:::-;30910:25;;30949:20;30967:1;30949:20;:::i;:::-;30944:25;;31103:1;31035:66;31031:74;31028:1;31025:81;31022:107;;;31109:18;;:::i;:::-;31022:107;31153:1;31150;31146:9;31139:16;;30856:305;;;;:::o;31167:233::-;31206:3;31229:24;31247:5;31229:24;:::i;:::-;31220:33;;31275:66;31268:5;31265:77;31262:103;;;31345:18;;:::i;:::-;31262:103;31392:1;31385:5;31381:13;31374:20;;31167:233;;;:::o;31406:225::-;31546:34;31542:1;31534:6;31530:14;31523:58;31615:8;31610:2;31602:6;31598:15;31591:33;31406:225;:::o;31637:366::-;31779:3;31800:67;31864:2;31859:3;31800:67;:::i;:::-;31793:74;;31876:93;31965:3;31876:93;:::i;:::-;31994:2;31989:3;31985:12;31978:19;;31637:366;;;:::o;32009:419::-;32175:4;32213:2;32202:9;32198:18;32190:26;;32262:9;32256:4;32252:20;32248:1;32237:9;32233:17;32226:47;32290:131;32416:4;32290:131;:::i;:::-;32282:139;;32009:419;;;:::o;32434:98::-;32485:6;32519:5;32513:12;32503:22;;32434:98;;;:::o;32538:168::-;32621:11;32655:6;32650:3;32643:19;32695:4;32690:3;32686:14;32671:29;;32538:168;;;;:::o;32712:360::-;32798:3;32826:38;32858:5;32826:38;:::i;:::-;32880:70;32943:6;32938:3;32880:70;:::i;:::-;32873:77;;32959:52;33004:6;32999:3;32992:4;32985:5;32981:16;32959:52;:::i;:::-;33036:29;33058:6;33036:29;:::i;:::-;33031:3;33027:39;33020:46;;32802:270;32712:360;;;;:::o;33078:640::-;33273:4;33311:3;33300:9;33296:19;33288:27;;33325:71;33393:1;33382:9;33378:17;33369:6;33325:71;:::i;:::-;33406:72;33474:2;33463:9;33459:18;33450:6;33406:72;:::i;:::-;33488;33556:2;33545:9;33541:18;33532:6;33488:72;:::i;:::-;33607:9;33601:4;33597:20;33592:2;33581:9;33577:18;33570:48;33635:76;33706:4;33697:6;33635:76;:::i;:::-;33627:84;;33078:640;;;;;;;:::o;33724:141::-;33780:5;33811:6;33805:13;33796:22;;33827:32;33853:5;33827:32;:::i;:::-;33724:141;;;;:::o;33871:349::-;33940:6;33989:2;33977:9;33968:7;33964:23;33960:32;33957:119;;;33995:79;;:::i;:::-;33957:119;34115:1;34140:63;34195:7;34186:6;34175:9;34171:22;34140:63;:::i;:::-;34130:73;;34086:127;33871:349;;;;:::o;34226:180::-;34274:77;34271:1;34264:88;34371:4;34368:1;34361:15;34395:4;34392:1;34385:15;34412:185;34452:1;34469:20;34487:1;34469:20;:::i;:::-;34464:25;;34503:20;34521:1;34503:20;:::i;:::-;34498:25;;34542:1;34532:35;;34547:18;;:::i;:::-;34532:35;34589:1;34586;34582:9;34577:14;;34412:185;;;;:::o;34603:191::-;34643:4;34663:20;34681:1;34663:20;:::i;:::-;34658:25;;34697:20;34715:1;34697:20;:::i;:::-;34692:25;;34736:1;34733;34730:8;34727:34;;;34741:18;;:::i;:::-;34727:34;34786:1;34783;34779:9;34771:17;;34603:191;;;;:::o;34800:176::-;34832:1;34849:20;34867:1;34849:20;:::i;:::-;34844:25;;34883:20;34901:1;34883:20;:::i;:::-;34878:25;;34922:1;34912:35;;34927:18;;:::i;:::-;34912:35;34968:1;34965;34961:9;34956:14;;34800:176;;;;:::o

Swarm Source

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