ETH Price: $3,536.34 (+4.41%)

Token

Sky King (Sora)
 

Overview

Max Total Supply

333 Sora

Holders

298

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A
Balance
1 Sora
0x6926aff443f188380bfb49d466bfb09b16f7d875
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:
SkyKing

Compiler Version
v0.8.17+commit.8df45f5f

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

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

/**
 *Submitted for verification at Etherscan.io on 2022-12-03
*/

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


// SPDX-License-Identifier: MIT
//Developer Info: anon duh



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

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



abstract contract OperatorFilterer {
    error OperatorNotAllowed(address operator);

    IOperatorFilterRegistry constant operatorFilterRegistry =
        IOperatorFilterRegistry(0x000000000000AAeB6D7670E522A718067333cd4E);

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

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



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

    constructor() OperatorFilterer(DEFAULT_SUBSCRIPTION, true) {}
}
    pragma solidity ^0.8.7;
    
    contract SkyKing  is ERC721A, DefaultOperatorFilterer , Ownable {
    using Strings for uint256;


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

  
  

  uint256 public cost = 0 ether;
 
  

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

   mapping (address => uint8) public NFTPerPublicAddress;

 
  
  
 
  

  constructor() ERC721A("Sky King", "Sora") {
  }


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

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


    _safeMint(msg.sender , _mintAmount);

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

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

     delete _amountPerAddress;
     delete totalSupply;
  }

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

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



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

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


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

}

    
  

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


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

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

  }

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

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

  }

 

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


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

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

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

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

Contract Security Audit

Contract ABI

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

60806040526040518060400160405280600581526020017f2e6a736f6e000000000000000000000000000000000000000000000000000000815250600a90816200004a919062000718565b506000600c5561014d600d60006101000a81548161ffff021916908361ffff1602179055506001600d60026101000a81548160ff021916908360ff1602179055506001600d60036101000a81548160ff021916908360ff1602179055506001600d60046101000a81548160ff0219169083151502179055506000600d60056101000a81548160ff021916908315150217905550348015620000ea57600080fd5b50733cc6cdda760b79bafa08df41ecfa224f810dceb660016040518060400160405280600881526020017f536b79204b696e670000000000000000000000000000000000000000000000008152506040518060400160405280600481526020017f536f72610000000000000000000000000000000000000000000000000000000081525081600290816200017f919062000718565b50806003908162000191919062000718565b50620001a2620003c760201b60201c565b600081905550505060006daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff163b11156200039f57801562000265576daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff16637d3e3dbe30846040518363ffffffff1660e01b81526004016200022b92919062000844565b600060405180830381600087803b1580156200024657600080fd5b505af11580156200025b573d6000803e3d6000fd5b505050506200039e565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16146200031f576daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff1663a0af290330846040518363ffffffff1660e01b8152600401620002e592919062000844565b600060405180830381600087803b1580156200030057600080fd5b505af115801562000315573d6000803e3d6000fd5b505050506200039d565b6daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff16634420e486306040518263ffffffff1660e01b815260040162000368919062000871565b600060405180830381600087803b1580156200038357600080fd5b505af115801562000398573d6000803e3d6000fd5b505050505b5b5b5050620003c1620003b5620003d060201b60201c565b620003d860201b60201c565b6200088e565b60006001905090565b600033905090565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b600081519050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b600060028204905060018216806200052057607f821691505b602082108103620005365762000535620004d8565b5b50919050565b60008190508160005260206000209050919050565b60006020601f8301049050919050565b600082821b905092915050565b600060088302620005a07fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8262000561565b620005ac868362000561565b95508019841693508086168417925050509392505050565b6000819050919050565b6000819050919050565b6000620005f9620005f3620005ed84620005c4565b620005ce565b620005c4565b9050919050565b6000819050919050565b6200061583620005d8565b6200062d620006248262000600565b8484546200056e565b825550505050565b600090565b6200064462000635565b620006518184846200060a565b505050565b5b8181101562000679576200066d6000826200063a565b60018101905062000657565b5050565b601f821115620006c85762000692816200053c565b6200069d8462000551565b81016020851015620006ad578190505b620006c5620006bc8562000551565b83018262000656565b50505b505050565b600082821c905092915050565b6000620006ed60001984600802620006cd565b1980831691505092915050565b6000620007088383620006da565b9150826002028217905092915050565b62000723826200049e565b67ffffffffffffffff8111156200073f576200073e620004a9565b5b6200074b825462000507565b620007588282856200067d565b600060209050601f8311600181146200079057600084156200077b578287015190505b620007878582620006fa565b865550620007f7565b601f198416620007a0866200053c565b60005b82811015620007ca57848901518255600182019150602085019450602081019050620007a3565b86831015620007ea5784890151620007e6601f891682620006da565b8355505b6001600288020188555050505b505050505050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b60006200082c82620007ff565b9050919050565b6200083e816200081f565b82525050565b60006040820190506200085b600083018562000833565b6200086a602083018462000833565b9392505050565b600060208201905062000888600083018462000833565b92915050565b614973806200089e6000396000f3fe60806040526004361061021a5760003560e01c806370a0823111610123578063b88d4fde116100ab578063e94053c71161006f578063e94053c714610760578063e985e9c51461079d578063eef440af146107da578063f2fde38b14610805578063f8bf51721461082e5761021a565b8063b88d4fde1461068a578063c87b56dd146106b3578063cffb6e20146106f0578063d5abeb0114610719578063e757d2b5146107445761021a565b806394354fd0116100f257806394354fd0146105b757806395d89b41146105e2578063a22cb4651461060d578063a475b5dd14610636578063aa062290146106615761021a565b806370a082311461050f578063715018a61461054c5780637ec4a659146105635780638da5cb5b1461058c5761021a565b80632f6f98e1116101a657806342842e0e1161017557806342842e0e1461042c57806344a0d68a146104555780634d9c18481461047e5780635c975abb146104a75780636352211e146104d25761021a565b80632f6f98e1146103be57806337a66d85146103e75780633bd64968146103fe5780633ccfd60b146104155761021a565b8063095ea7b3116101ed578063095ea7b3146102ed5780631067fcc71461031657806313faede61461033f57806318160ddd1461036a57806323b872dd146103955761021a565b806301ffc9a71461021f57806306421c2f1461025c57806306fdde0314610285578063081812fc146102b0575b600080fd5b34801561022b57600080fd5b5061024660048036038101906102419190613607565b610859565b604051610253919061364f565b60405180910390f35b34801561026857600080fd5b50610283600480360381019061027e91906136a4565b61093b565b005b34801561029157600080fd5b5061029a6109d7565b6040516102a79190613761565b60405180910390f35b3480156102bc57600080fd5b506102d760048036038101906102d291906137b9565b610a69565b6040516102e49190613827565b60405180910390f35b3480156102f957600080fd5b50610314600480360381019061030f919061386e565b610ae5565b005b34801561032257600080fd5b5061033d600480360381019061033891906139e3565b610bef565b005b34801561034b57600080fd5b50610354610c7e565b6040516103619190613a3b565b60405180910390f35b34801561037657600080fd5b5061037f610c84565b60405161038c9190613a3b565b60405180910390f35b3480156103a157600080fd5b506103bc60048036038101906103b79190613a56565b610c9b565b005b3480156103ca57600080fd5b506103e560048036038101906103e09190613aa9565b610e7d565b005b3480156103f357600080fd5b506103fc610f8a565b005b34801561040a57600080fd5b50610413611032565b005b34801561042157600080fd5b5061042a6110da565b005b34801561043857600080fd5b50610453600480360381019061044e9190613a56565b6111a5565b005b34801561046157600080fd5b5061047c600480360381019061047791906137b9565b611387565b005b34801561048a57600080fd5b506104a560048036038101906104a09190613b22565b61140d565b005b3480156104b357600080fd5b506104bc6114ab565b6040516104c9919061364f565b60405180910390f35b3480156104de57600080fd5b506104f960048036038101906104f491906137b9565b6114be565b6040516105069190613827565b60405180910390f35b34801561051b57600080fd5b5061053660048036038101906105319190613b4f565b6114d4565b6040516105439190613a3b565b60405180910390f35b34801561055857600080fd5b506105616115a3565b005b34801561056f57600080fd5b5061058a600480360381019061058591906139e3565b61162b565b005b34801561059857600080fd5b506105a16116ba565b6040516105ae9190613827565b60405180910390f35b3480156105c357600080fd5b506105cc6116e4565b6040516105d99190613b8b565b60405180910390f35b3480156105ee57600080fd5b506105f76116f7565b6040516106049190613761565b60405180910390f35b34801561061957600080fd5b50610634600480360381019061062f9190613bd2565b611789565b005b34801561064257600080fd5b5061064b611900565b604051610658919061364f565b60405180910390f35b34801561066d57600080fd5b5061068860048036038101906106839190613b22565b611913565b005b34801561069657600080fd5b506106b160048036038101906106ac9190613cb3565b6119ad565b005b3480156106bf57600080fd5b506106da60048036038101906106d591906137b9565b611b92565b6040516106e79190613761565b60405180910390f35b3480156106fc57600080fd5b5061071760048036038101906107129190613d96565b611cea565b005b34801561072557600080fd5b5061072e611e53565b60405161073b9190613e05565b60405180910390f35b61075e60048036038101906107599190613b22565b611e67565b005b34801561076c57600080fd5b5061078760048036038101906107829190613b4f565b612171565b6040516107949190613b8b565b60405180910390f35b3480156107a957600080fd5b506107c460048036038101906107bf9190613e20565b612191565b6040516107d1919061364f565b60405180910390f35b3480156107e657600080fd5b506107ef612225565b6040516107fc9190613761565b60405180910390f35b34801561081157600080fd5b5061082c60048036038101906108279190613b4f565b6122b3565b005b34801561083a57600080fd5b506108436123aa565b6040516108509190613b8b565b60405180910390f35b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916148061092457507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b806109345750610933826123bd565b5b9050919050565b610943612427565b73ffffffffffffffffffffffffffffffffffffffff166109616116ba565b73ffffffffffffffffffffffffffffffffffffffff16146109b7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016109ae90613eac565b60405180910390fd5b80600d60006101000a81548161ffff021916908361ffff16021790555050565b6060600280546109e690613efb565b80601f0160208091040260200160405190810160405280929190818152602001828054610a1290613efb565b8015610a5f5780601f10610a3457610100808354040283529160200191610a5f565b820191906000526020600020905b815481529060010190602001808311610a4257829003601f168201915b5050505050905090565b6000610a748261242f565b610aaa576040517fcf4700e400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6006600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b6000610af0826114be565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603610b57576040517f943f7b8c00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16610b76612427565b73ffffffffffffffffffffffffffffffffffffffff1614158015610ba85750610ba681610ba1612427565b612191565b155b15610bdf576040517fcfb3b94200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b610bea83838361247d565b505050565b610bf7612427565b73ffffffffffffffffffffffffffffffffffffffff16610c156116ba565b73ffffffffffffffffffffffffffffffffffffffff1614610c6b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c6290613eac565b60405180910390fd5b80600b9081610c7a91906140d8565b5050565b600c5481565b6000610c8e61252f565b6001546000540303905090565b8260006daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff163b1115610e6b573373ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603610d0d57610d08848484612538565b610e77565b6daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff1663c617113430336040518363ffffffff1660e01b8152600401610d569291906141aa565b602060405180830381865afa158015610d73573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610d9791906141e8565b8015610e2957506daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff1663c617113430836040518363ffffffff1660e01b8152600401610de79291906141aa565b602060405180830381865afa158015610e04573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610e2891906141e8565b5b610e6a57336040517fede71dcc000000000000000000000000000000000000000000000000000000008152600401610e619190613827565b60405180910390fd5b5b610e76848484612538565b5b50505050565b610e85612427565b73ffffffffffffffffffffffffffffffffffffffff16610ea36116ba565b73ffffffffffffffffffffffffffffffffffffffff1614610ef9576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ef090613eac565b60405180910390fd5b6000610f03610c84565b9050600d60009054906101000a900461ffff1661ffff168382610f269190614244565b61ffff161115610f6b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f62906142c6565b60405180910390fd5b610f79828461ffff16612548565b600092506000915060009050505050565b610f92612427565b73ffffffffffffffffffffffffffffffffffffffff16610fb06116ba565b73ffffffffffffffffffffffffffffffffffffffff1614611006576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ffd90613eac565b60405180910390fd5b600d60049054906101000a900460ff1615600d60046101000a81548160ff021916908315150217905550565b61103a612427565b73ffffffffffffffffffffffffffffffffffffffff166110586116ba565b73ffffffffffffffffffffffffffffffffffffffff16146110ae576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110a590613eac565b60405180910390fd5b600d60059054906101000a900460ff1615600d60056101000a81548160ff021916908315150217905550565b6110e2612427565b73ffffffffffffffffffffffffffffffffffffffff166111006116ba565b73ffffffffffffffffffffffffffffffffffffffff1614611156576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161114d90613eac565b60405180910390fd5b60004790503373ffffffffffffffffffffffffffffffffffffffff166108fc829081150290604051600060405180830381858888f193505050501580156111a1573d6000803e3d6000fd5b5050565b8260006daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff163b1115611375573373ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff160361121757611212848484612566565b611381565b6daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff1663c617113430336040518363ffffffff1660e01b81526004016112609291906141aa565b602060405180830381865afa15801561127d573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906112a191906141e8565b801561133357506daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff1663c617113430836040518363ffffffff1660e01b81526004016112f19291906141aa565b602060405180830381865afa15801561130e573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061133291906141e8565b5b61137457336040517fede71dcc00000000000000000000000000000000000000000000000000000000815260040161136b9190613827565b60405180910390fd5b5b611380848484612566565b5b50505050565b61138f612427565b73ffffffffffffffffffffffffffffffffffffffff166113ad6116ba565b73ffffffffffffffffffffffffffffffffffffffff1614611403576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113fa90613eac565b60405180910390fd5b80600c8190555050565b611415612427565b73ffffffffffffffffffffffffffffffffffffffff166114336116ba565b73ffffffffffffffffffffffffffffffffffffffff1614611489576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161148090613eac565b60405180910390fd5b80600d60036101000a81548160ff021916908360ff1602179055506000905050565b600d60049054906101000a900460ff1681565b60006114c982612586565b600001519050919050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff160361153b576040517f8f4eb60400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600560008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160009054906101000a900467ffffffffffffffff1667ffffffffffffffff169050919050565b6115ab612427565b73ffffffffffffffffffffffffffffffffffffffff166115c96116ba565b73ffffffffffffffffffffffffffffffffffffffff161461161f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161161690613eac565b60405180910390fd5b6116296000612815565b565b611633612427565b73ffffffffffffffffffffffffffffffffffffffff166116516116ba565b73ffffffffffffffffffffffffffffffffffffffff16146116a7576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161169e90613eac565b60405180910390fd5b80600990816116b691906140d8565b5050565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b600d60029054906101000a900460ff1681565b60606003805461170690613efb565b80601f016020809104026020016040519081016040528092919081815260200182805461173290613efb565b801561177f5780601f106117545761010080835404028352916020019161177f565b820191906000526020600020905b81548152906001019060200180831161176257829003601f168201915b5050505050905090565b611791612427565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16036117f5576040517fb06307db00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8060076000611802612427565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff166118af612427565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31836040516118f4919061364f565b60405180910390a35050565b600d60059054906101000a900460ff1681565b61191b612427565b73ffffffffffffffffffffffffffffffffffffffff166119396116ba565b73ffffffffffffffffffffffffffffffffffffffff161461198f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161198690613eac565b60405180910390fd5b80600d60026101000a81548160ff021916908360ff16021790555050565b8360006daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff163b1115611b7e573373ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603611a2057611a1b858585856128db565b611b8b565b6daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff1663c617113430336040518363ffffffff1660e01b8152600401611a699291906141aa565b602060405180830381865afa158015611a86573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611aaa91906141e8565b8015611b3c57506daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff1663c617113430836040518363ffffffff1660e01b8152600401611afa9291906141aa565b602060405180830381865afa158015611b17573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611b3b91906141e8565b5b611b7d57336040517fede71dcc000000000000000000000000000000000000000000000000000000008152600401611b749190613827565b60405180910390fd5b5b611b8a858585856128db565b5b5050505050565b6060611b9d8261242f565b611bdc576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611bd390614358565b60405180910390fd5b60001515600d60059054906101000a900460ff16151503611c8957600b8054611c0490613efb565b80601f0160208091040260200160405190810160405280929190818152602001828054611c3090613efb565b8015611c7d5780601f10611c5257610100808354040283529160200191611c7d565b820191906000526020600020905b815481529060010190602001808311611c6057829003601f168201915b50505050509050611ce5565b6000611c93612957565b90506000815111611cb35760405180602001604052806000815250611ce1565b80611cbd846129e9565b600a604051602001611cd193929190614437565b6040516020818303038152906040525b9150505b919050565b611cf2612427565b73ffffffffffffffffffffffffffffffffffffffff16611d106116ba565b73ffffffffffffffffffffffffffffffffffffffff1614611d66576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d5d90613eac565b60405180910390fd5b6000611d70610c84565b90506000838390508560ff16611d869190614468565b9050600d60009054906101000a900461ffff1661ffff16818361ffff16611dad91906144aa565b1115611dee576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611de5906142c6565b60405180910390fd5b60005b84849050811015611e4357611e30858583818110611e1257611e116144de565b5b9050602002016020810190611e279190613b4f565b8760ff16612548565b8080611e3b9061450d565b915050611df1565b5060009450600091505050505050565b600d60009054906101000a900461ffff1681565b6000611e71610c84565b90506000600e60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff169050600d60009054906101000a900461ffff1661ffff168360ff1683611ee89190614244565b61ffff161115611f2d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f24906142c6565b60405180910390fd5b600d60029054906101000a900460ff1660ff168184611f4c9190614555565b60ff161115611f90576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f87906145d6565b60405180910390fd5b600d60049054906101000a900460ff1615611fe0576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611fd790614642565b60405180910390fd5b600d60039054906101000a900460ff1660ff168160ff1610612054578260ff16600c5461200d9190614468565b34101561204f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612046906146ae565b60405180910390fd5b6120f4565b600081846120629190614555565b9050600d60039054906101000a900460ff1660ff168160ff1611156120f257600d60039054906101000a900460ff168161209c91906146ce565b90508060ff16600c546120af9190614468565b3410156120f1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016120e8906146ae565b60405180910390fd5b5b505b612101338460ff16612548565b808361210d9190614555565b600e60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff021916908360ff1602179055506000915060009250505050565b600e6020528060005260406000206000915054906101000a900460ff1681565b6000600760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b600b805461223290613efb565b80601f016020809104026020016040519081016040528092919081815260200182805461225e90613efb565b80156122ab5780601f10612280576101008083540402835291602001916122ab565b820191906000526020600020905b81548152906001019060200180831161228e57829003601f168201915b505050505081565b6122bb612427565b73ffffffffffffffffffffffffffffffffffffffff166122d96116ba565b73ffffffffffffffffffffffffffffffffffffffff161461232f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161232690613eac565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff160361239e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161239590614775565b60405180910390fd5b6123a781612815565b50565b600d60039054906101000a900460ff1681565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b600033905090565b60008161243a61252f565b11158015612449575060005482105b8015612476575060046000838152602001908152602001600020600001601c9054906101000a900460ff16155b9050919050565b826006600084815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b60006001905090565b612543838383612b49565b505050565b612562828260405180602001604052806000815250612ffd565b5050565b612581838383604051806020016040528060008152506119ad565b505050565b61258e613558565b60008290508061259c61252f565b111580156125ab575060005481105b156127de576000600460008381526020019081526020016000206040518060600160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815260200160008201601c9054906101000a900460ff161515151581525050905080604001516127dc57600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff16146126c0578092505050612810565b5b6001156127db57818060019003925050600460008381526020019081526020016000206040518060600160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815260200160008201601c9054906101000a900460ff1615151515815250509050600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff16146127d6578092505050612810565b6126c1565b5b505b6040517fdf2d9b4200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b919050565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b6128e6848484612b49565b6129058373ffffffffffffffffffffffffffffffffffffffff1661300f565b801561291a575061291884848484613032565b155b15612951576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b50505050565b60606009805461296690613efb565b80601f016020809104026020016040519081016040528092919081815260200182805461299290613efb565b80156129df5780601f106129b4576101008083540402835291602001916129df565b820191906000526020600020905b8154815290600101906020018083116129c257829003601f168201915b5050505050905090565b606060008203612a30576040518060400160405280600181526020017f30000000000000000000000000000000000000000000000000000000000000008152509050612b44565b600082905060005b60008214612a62578080612a4b9061450d565b915050600a82612a5b91906147c4565b9150612a38565b60008167ffffffffffffffff811115612a7e57612a7d6138b8565b5b6040519080825280601f01601f191660200182016040528015612ab05781602001600182028036833780820191505090505b5090505b60008514612b3d57600182612ac991906147f5565b9150600a85612ad89190614829565b6030612ae491906144aa565b60f81b818381518110612afa57612af96144de565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a85612b3691906147c4565b9450612ab4565b8093505050505b919050565b6000612b5482612586565b90508373ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff1614612bbf576040517fa114810000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b60008473ffffffffffffffffffffffffffffffffffffffff16612be0612427565b73ffffffffffffffffffffffffffffffffffffffff161480612c0f5750612c0e85612c09612427565b612191565b5b80612c545750612c1d612427565b73ffffffffffffffffffffffffffffffffffffffff16612c3c84610a69565b73ffffffffffffffffffffffffffffffffffffffff16145b905080612c8d576040517f59c896be00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1603612cf3576040517fea553b3400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b612d008585856001613182565b612d0c6000848761247d565b6001600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a900467ffffffffffffffff160392506101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055506001600560008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a900467ffffffffffffffff160192506101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055506000600460008581526020019081526020016000209050848160000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550428160000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff16021790555060006001850190506000600460008381526020019081526020016000209050600073ffffffffffffffffffffffffffffffffffffffff168160000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1603612f8b576000548214612f8a57878160000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555084602001518160000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055505b5b505050828473ffffffffffffffffffffffffffffffffffffffff168673ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4612ff68585856001613188565b5050505050565b61300a838383600161318e565b505050565b6000808273ffffffffffffffffffffffffffffffffffffffff163b119050919050565b60008373ffffffffffffffffffffffffffffffffffffffff1663150b7a02613058612427565b8786866040518563ffffffff1660e01b815260040161307a94939291906148af565b6020604051808303816000875af19250505080156130b657506040513d601f19601f820116820180604052508101906130b39190614910565b60015b61312f573d80600081146130e6576040519150601f19603f3d011682016040523d82523d6000602084013e6130eb565b606091505b506000815103613127576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050949350505050565b50505050565b50505050565b600080549050600073ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff16036131fa576040517f2e07630000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b60008403613234576040517fb562e8dd00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6132416000868387613182565b83600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a900467ffffffffffffffff160192506101000a81548167ffffffffffffffff021916908367ffffffffffffffff16021790555083600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160088282829054906101000a900467ffffffffffffffff160192506101000a81548167ffffffffffffffff021916908367ffffffffffffffff160217905550846004600083815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550426004600083815260200190815260200160002060000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff16021790555060008190506000858201905083801561340b575061340a8773ffffffffffffffffffffffffffffffffffffffff1661300f565b5b156134d0575b818773ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a46134806000888480600101955088613032565b6134b6576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8082036134115782600054146134cb57600080fd5b61353b565b5b818060010192508773ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a48082036134d1575b8160008190555050506135516000868387613188565b5050505050565b6040518060600160405280600073ffffffffffffffffffffffffffffffffffffffff168152602001600067ffffffffffffffff1681526020016000151581525090565b6000604051905090565b600080fd5b600080fd5b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b6135e4816135af565b81146135ef57600080fd5b50565b600081359050613601816135db565b92915050565b60006020828403121561361d5761361c6135a5565b5b600061362b848285016135f2565b91505092915050565b60008115159050919050565b61364981613634565b82525050565b60006020820190506136646000830184613640565b92915050565b600061ffff82169050919050565b6136818161366a565b811461368c57600080fd5b50565b60008135905061369e81613678565b92915050565b6000602082840312156136ba576136b96135a5565b5b60006136c88482850161368f565b91505092915050565b600081519050919050565b600082825260208201905092915050565b60005b8381101561370b5780820151818401526020810190506136f0565b60008484015250505050565b6000601f19601f8301169050919050565b6000613733826136d1565b61373d81856136dc565b935061374d8185602086016136ed565b61375681613717565b840191505092915050565b6000602082019050818103600083015261377b8184613728565b905092915050565b6000819050919050565b61379681613783565b81146137a157600080fd5b50565b6000813590506137b38161378d565b92915050565b6000602082840312156137cf576137ce6135a5565b5b60006137dd848285016137a4565b91505092915050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000613811826137e6565b9050919050565b61382181613806565b82525050565b600060208201905061383c6000830184613818565b92915050565b61384b81613806565b811461385657600080fd5b50565b60008135905061386881613842565b92915050565b60008060408385031215613885576138846135a5565b5b600061389385828601613859565b92505060206138a4858286016137a4565b9150509250929050565b600080fd5b600080fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6138f082613717565b810181811067ffffffffffffffff8211171561390f5761390e6138b8565b5b80604052505050565b600061392261359b565b905061392e82826138e7565b919050565b600067ffffffffffffffff82111561394e5761394d6138b8565b5b61395782613717565b9050602081019050919050565b82818337600083830152505050565b600061398661398184613933565b613918565b9050828152602081018484840111156139a2576139a16138b3565b5b6139ad848285613964565b509392505050565b600082601f8301126139ca576139c96138ae565b5b81356139da848260208601613973565b91505092915050565b6000602082840312156139f9576139f86135a5565b5b600082013567ffffffffffffffff811115613a1757613a166135aa565b5b613a23848285016139b5565b91505092915050565b613a3581613783565b82525050565b6000602082019050613a506000830184613a2c565b92915050565b600080600060608486031215613a6f57613a6e6135a5565b5b6000613a7d86828701613859565b9350506020613a8e86828701613859565b9250506040613a9f868287016137a4565b9150509250925092565b60008060408385031215613ac057613abf6135a5565b5b6000613ace8582860161368f565b9250506020613adf85828601613859565b9150509250929050565b600060ff82169050919050565b613aff81613ae9565b8114613b0a57600080fd5b50565b600081359050613b1c81613af6565b92915050565b600060208284031215613b3857613b376135a5565b5b6000613b4684828501613b0d565b91505092915050565b600060208284031215613b6557613b646135a5565b5b6000613b7384828501613859565b91505092915050565b613b8581613ae9565b82525050565b6000602082019050613ba06000830184613b7c565b92915050565b613baf81613634565b8114613bba57600080fd5b50565b600081359050613bcc81613ba6565b92915050565b60008060408385031215613be957613be86135a5565b5b6000613bf785828601613859565b9250506020613c0885828601613bbd565b9150509250929050565b600067ffffffffffffffff821115613c2d57613c2c6138b8565b5b613c3682613717565b9050602081019050919050565b6000613c56613c5184613c12565b613918565b905082815260208101848484011115613c7257613c716138b3565b5b613c7d848285613964565b509392505050565b600082601f830112613c9a57613c996138ae565b5b8135613caa848260208601613c43565b91505092915050565b60008060008060808587031215613ccd57613ccc6135a5565b5b6000613cdb87828801613859565b9450506020613cec87828801613859565b9350506040613cfd878288016137a4565b925050606085013567ffffffffffffffff811115613d1e57613d1d6135aa565b5b613d2a87828801613c85565b91505092959194509250565b600080fd5b600080fd5b60008083601f840112613d5657613d556138ae565b5b8235905067ffffffffffffffff811115613d7357613d72613d36565b5b602083019150836020820283011115613d8f57613d8e613d3b565b5b9250929050565b600080600060408486031215613daf57613dae6135a5565b5b6000613dbd86828701613b0d565b935050602084013567ffffffffffffffff811115613dde57613ddd6135aa565b5b613dea86828701613d40565b92509250509250925092565b613dff8161366a565b82525050565b6000602082019050613e1a6000830184613df6565b92915050565b60008060408385031215613e3757613e366135a5565b5b6000613e4585828601613859565b9250506020613e5685828601613859565b9150509250929050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b6000613e966020836136dc565b9150613ea182613e60565b602082019050919050565b60006020820190508181036000830152613ec581613e89565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b60006002820490506001821680613f1357607f821691505b602082108103613f2657613f25613ecc565b5b50919050565b60008190508160005260206000209050919050565b60006020601f8301049050919050565b600082821b905092915050565b600060088302613f8e7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82613f51565b613f988683613f51565b95508019841693508086168417925050509392505050565b6000819050919050565b6000613fd5613fd0613fcb84613783565b613fb0565b613783565b9050919050565b6000819050919050565b613fef83613fba565b614003613ffb82613fdc565b848454613f5e565b825550505050565b600090565b61401861400b565b614023818484613fe6565b505050565b5b818110156140475761403c600082614010565b600181019050614029565b5050565b601f82111561408c5761405d81613f2c565b61406684613f41565b81016020851015614075578190505b61408961408185613f41565b830182614028565b50505b505050565b600082821c905092915050565b60006140af60001984600802614091565b1980831691505092915050565b60006140c8838361409e565b9150826002028217905092915050565b6140e1826136d1565b67ffffffffffffffff8111156140fa576140f96138b8565b5b6141048254613efb565b61410f82828561404b565b600060209050601f8311600181146141425760008415614130578287015190505b61413a85826140bc565b8655506141a2565b601f19841661415086613f2c565b60005b8281101561417857848901518255600182019150602085019450602081019050614153565b868310156141955784890151614191601f89168261409e565b8355505b6001600288020188555050505b505050505050565b60006040820190506141bf6000830185613818565b6141cc6020830184613818565b9392505050565b6000815190506141e281613ba6565b92915050565b6000602082840312156141fe576141fd6135a5565b5b600061420c848285016141d3565b91505092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b600061424f8261366a565b915061425a8361366a565b9250828201905061ffff81111561427457614273614215565b5b92915050565b7f45786365656473206d617820737570706c792e00000000000000000000000000600082015250565b60006142b06013836136dc565b91506142bb8261427a565b602082019050919050565b600060208201905081810360008301526142df816142a3565b9050919050565b7f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008201527f6e6578697374656e7420746f6b656e0000000000000000000000000000000000602082015250565b6000614342602f836136dc565b915061434d826142e6565b604082019050919050565b6000602082019050818103600083015261437181614335565b9050919050565b600081905092915050565b600061438e826136d1565b6143988185614378565b93506143a88185602086016136ed565b80840191505092915050565b600081546143c181613efb565b6143cb8186614378565b945060018216600081146143e657600181146143fb5761442e565b60ff198316865281151582028601935061442e565b61440485613f2c565b60005b8381101561442657815481890152600182019150602081019050614407565b838801955050505b50505092915050565b60006144438286614383565b915061444f8285614383565b915061445b82846143b4565b9150819050949350505050565b600061447382613783565b915061447e83613783565b925082820261448c81613783565b915082820484148315176144a3576144a2614215565b5b5092915050565b60006144b582613783565b91506144c083613783565b92508282019050808211156144d8576144d7614215565b5b92915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b600061451882613783565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff820361454a57614549614215565b5b600182019050919050565b600061456082613ae9565b915061456b83613ae9565b9250828201905060ff81111561458457614583614215565b5b92915050565b7f45786365656473206d617820706572207472616e73616374696f6e2e00000000600082015250565b60006145c0601c836136dc565b91506145cb8261458a565b602082019050919050565b600060208201905081810360008301526145ef816145b3565b9050919050565b7f54686520636f6e74726163742069732070617573656421000000000000000000600082015250565b600061462c6017836136dc565b9150614637826145f6565b602082019050919050565b6000602082019050818103600083015261465b8161461f565b9050919050565b7f496e73756666696369656e742066756e64732100000000000000000000000000600082015250565b60006146986013836136dc565b91506146a382614662565b602082019050919050565b600060208201905081810360008301526146c78161468b565b9050919050565b60006146d982613ae9565b91506146e483613ae9565b9250828203905060ff8111156146fd576146fc614215565b5b92915050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b600061475f6026836136dc565b915061476a82614703565b604082019050919050565b6000602082019050818103600083015261478e81614752565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b60006147cf82613783565b91506147da83613783565b9250826147ea576147e9614795565b5b828204905092915050565b600061480082613783565b915061480b83613783565b925082820390508181111561482357614822614215565b5b92915050565b600061483482613783565b915061483f83613783565b92508261484f5761484e614795565b5b828206905092915050565b600081519050919050565b600082825260208201905092915050565b60006148818261485a565b61488b8185614865565b935061489b8185602086016136ed565b6148a481613717565b840191505092915050565b60006080820190506148c46000830187613818565b6148d16020830186613818565b6148de6040830185613a2c565b81810360608301526148f08184614876565b905095945050505050565b60008151905061490a816135db565b92915050565b600060208284031215614926576149256135a5565b5b6000614934848285016148fb565b9150509291505056fea26469706673582212208b3a9a00580199d9fce892b3ebbdf6bfe838aee28816a1fd8f8469386b87f10e64736f6c63430008110033

Deployed Bytecode

0x60806040526004361061021a5760003560e01c806370a0823111610123578063b88d4fde116100ab578063e94053c71161006f578063e94053c714610760578063e985e9c51461079d578063eef440af146107da578063f2fde38b14610805578063f8bf51721461082e5761021a565b8063b88d4fde1461068a578063c87b56dd146106b3578063cffb6e20146106f0578063d5abeb0114610719578063e757d2b5146107445761021a565b806394354fd0116100f257806394354fd0146105b757806395d89b41146105e2578063a22cb4651461060d578063a475b5dd14610636578063aa062290146106615761021a565b806370a082311461050f578063715018a61461054c5780637ec4a659146105635780638da5cb5b1461058c5761021a565b80632f6f98e1116101a657806342842e0e1161017557806342842e0e1461042c57806344a0d68a146104555780634d9c18481461047e5780635c975abb146104a75780636352211e146104d25761021a565b80632f6f98e1146103be57806337a66d85146103e75780633bd64968146103fe5780633ccfd60b146104155761021a565b8063095ea7b3116101ed578063095ea7b3146102ed5780631067fcc71461031657806313faede61461033f57806318160ddd1461036a57806323b872dd146103955761021a565b806301ffc9a71461021f57806306421c2f1461025c57806306fdde0314610285578063081812fc146102b0575b600080fd5b34801561022b57600080fd5b5061024660048036038101906102419190613607565b610859565b604051610253919061364f565b60405180910390f35b34801561026857600080fd5b50610283600480360381019061027e91906136a4565b61093b565b005b34801561029157600080fd5b5061029a6109d7565b6040516102a79190613761565b60405180910390f35b3480156102bc57600080fd5b506102d760048036038101906102d291906137b9565b610a69565b6040516102e49190613827565b60405180910390f35b3480156102f957600080fd5b50610314600480360381019061030f919061386e565b610ae5565b005b34801561032257600080fd5b5061033d600480360381019061033891906139e3565b610bef565b005b34801561034b57600080fd5b50610354610c7e565b6040516103619190613a3b565b60405180910390f35b34801561037657600080fd5b5061037f610c84565b60405161038c9190613a3b565b60405180910390f35b3480156103a157600080fd5b506103bc60048036038101906103b79190613a56565b610c9b565b005b3480156103ca57600080fd5b506103e560048036038101906103e09190613aa9565b610e7d565b005b3480156103f357600080fd5b506103fc610f8a565b005b34801561040a57600080fd5b50610413611032565b005b34801561042157600080fd5b5061042a6110da565b005b34801561043857600080fd5b50610453600480360381019061044e9190613a56565b6111a5565b005b34801561046157600080fd5b5061047c600480360381019061047791906137b9565b611387565b005b34801561048a57600080fd5b506104a560048036038101906104a09190613b22565b61140d565b005b3480156104b357600080fd5b506104bc6114ab565b6040516104c9919061364f565b60405180910390f35b3480156104de57600080fd5b506104f960048036038101906104f491906137b9565b6114be565b6040516105069190613827565b60405180910390f35b34801561051b57600080fd5b5061053660048036038101906105319190613b4f565b6114d4565b6040516105439190613a3b565b60405180910390f35b34801561055857600080fd5b506105616115a3565b005b34801561056f57600080fd5b5061058a600480360381019061058591906139e3565b61162b565b005b34801561059857600080fd5b506105a16116ba565b6040516105ae9190613827565b60405180910390f35b3480156105c357600080fd5b506105cc6116e4565b6040516105d99190613b8b565b60405180910390f35b3480156105ee57600080fd5b506105f76116f7565b6040516106049190613761565b60405180910390f35b34801561061957600080fd5b50610634600480360381019061062f9190613bd2565b611789565b005b34801561064257600080fd5b5061064b611900565b604051610658919061364f565b60405180910390f35b34801561066d57600080fd5b5061068860048036038101906106839190613b22565b611913565b005b34801561069657600080fd5b506106b160048036038101906106ac9190613cb3565b6119ad565b005b3480156106bf57600080fd5b506106da60048036038101906106d591906137b9565b611b92565b6040516106e79190613761565b60405180910390f35b3480156106fc57600080fd5b5061071760048036038101906107129190613d96565b611cea565b005b34801561072557600080fd5b5061072e611e53565b60405161073b9190613e05565b60405180910390f35b61075e60048036038101906107599190613b22565b611e67565b005b34801561076c57600080fd5b5061078760048036038101906107829190613b4f565b612171565b6040516107949190613b8b565b60405180910390f35b3480156107a957600080fd5b506107c460048036038101906107bf9190613e20565b612191565b6040516107d1919061364f565b60405180910390f35b3480156107e657600080fd5b506107ef612225565b6040516107fc9190613761565b60405180910390f35b34801561081157600080fd5b5061082c60048036038101906108279190613b4f565b6122b3565b005b34801561083a57600080fd5b506108436123aa565b6040516108509190613b8b565b60405180910390f35b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916148061092457507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b806109345750610933826123bd565b5b9050919050565b610943612427565b73ffffffffffffffffffffffffffffffffffffffff166109616116ba565b73ffffffffffffffffffffffffffffffffffffffff16146109b7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016109ae90613eac565b60405180910390fd5b80600d60006101000a81548161ffff021916908361ffff16021790555050565b6060600280546109e690613efb565b80601f0160208091040260200160405190810160405280929190818152602001828054610a1290613efb565b8015610a5f5780601f10610a3457610100808354040283529160200191610a5f565b820191906000526020600020905b815481529060010190602001808311610a4257829003601f168201915b5050505050905090565b6000610a748261242f565b610aaa576040517fcf4700e400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6006600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b6000610af0826114be565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603610b57576040517f943f7b8c00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16610b76612427565b73ffffffffffffffffffffffffffffffffffffffff1614158015610ba85750610ba681610ba1612427565b612191565b155b15610bdf576040517fcfb3b94200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b610bea83838361247d565b505050565b610bf7612427565b73ffffffffffffffffffffffffffffffffffffffff16610c156116ba565b73ffffffffffffffffffffffffffffffffffffffff1614610c6b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c6290613eac565b60405180910390fd5b80600b9081610c7a91906140d8565b5050565b600c5481565b6000610c8e61252f565b6001546000540303905090565b8260006daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff163b1115610e6b573373ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603610d0d57610d08848484612538565b610e77565b6daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff1663c617113430336040518363ffffffff1660e01b8152600401610d569291906141aa565b602060405180830381865afa158015610d73573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610d9791906141e8565b8015610e2957506daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff1663c617113430836040518363ffffffff1660e01b8152600401610de79291906141aa565b602060405180830381865afa158015610e04573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610e2891906141e8565b5b610e6a57336040517fede71dcc000000000000000000000000000000000000000000000000000000008152600401610e619190613827565b60405180910390fd5b5b610e76848484612538565b5b50505050565b610e85612427565b73ffffffffffffffffffffffffffffffffffffffff16610ea36116ba565b73ffffffffffffffffffffffffffffffffffffffff1614610ef9576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ef090613eac565b60405180910390fd5b6000610f03610c84565b9050600d60009054906101000a900461ffff1661ffff168382610f269190614244565b61ffff161115610f6b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f62906142c6565b60405180910390fd5b610f79828461ffff16612548565b600092506000915060009050505050565b610f92612427565b73ffffffffffffffffffffffffffffffffffffffff16610fb06116ba565b73ffffffffffffffffffffffffffffffffffffffff1614611006576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ffd90613eac565b60405180910390fd5b600d60049054906101000a900460ff1615600d60046101000a81548160ff021916908315150217905550565b61103a612427565b73ffffffffffffffffffffffffffffffffffffffff166110586116ba565b73ffffffffffffffffffffffffffffffffffffffff16146110ae576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110a590613eac565b60405180910390fd5b600d60059054906101000a900460ff1615600d60056101000a81548160ff021916908315150217905550565b6110e2612427565b73ffffffffffffffffffffffffffffffffffffffff166111006116ba565b73ffffffffffffffffffffffffffffffffffffffff1614611156576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161114d90613eac565b60405180910390fd5b60004790503373ffffffffffffffffffffffffffffffffffffffff166108fc829081150290604051600060405180830381858888f193505050501580156111a1573d6000803e3d6000fd5b5050565b8260006daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff163b1115611375573373ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff160361121757611212848484612566565b611381565b6daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff1663c617113430336040518363ffffffff1660e01b81526004016112609291906141aa565b602060405180830381865afa15801561127d573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906112a191906141e8565b801561133357506daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff1663c617113430836040518363ffffffff1660e01b81526004016112f19291906141aa565b602060405180830381865afa15801561130e573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061133291906141e8565b5b61137457336040517fede71dcc00000000000000000000000000000000000000000000000000000000815260040161136b9190613827565b60405180910390fd5b5b611380848484612566565b5b50505050565b61138f612427565b73ffffffffffffffffffffffffffffffffffffffff166113ad6116ba565b73ffffffffffffffffffffffffffffffffffffffff1614611403576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113fa90613eac565b60405180910390fd5b80600c8190555050565b611415612427565b73ffffffffffffffffffffffffffffffffffffffff166114336116ba565b73ffffffffffffffffffffffffffffffffffffffff1614611489576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161148090613eac565b60405180910390fd5b80600d60036101000a81548160ff021916908360ff1602179055506000905050565b600d60049054906101000a900460ff1681565b60006114c982612586565b600001519050919050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff160361153b576040517f8f4eb60400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600560008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160009054906101000a900467ffffffffffffffff1667ffffffffffffffff169050919050565b6115ab612427565b73ffffffffffffffffffffffffffffffffffffffff166115c96116ba565b73ffffffffffffffffffffffffffffffffffffffff161461161f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161161690613eac565b60405180910390fd5b6116296000612815565b565b611633612427565b73ffffffffffffffffffffffffffffffffffffffff166116516116ba565b73ffffffffffffffffffffffffffffffffffffffff16146116a7576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161169e90613eac565b60405180910390fd5b80600990816116b691906140d8565b5050565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b600d60029054906101000a900460ff1681565b60606003805461170690613efb565b80601f016020809104026020016040519081016040528092919081815260200182805461173290613efb565b801561177f5780601f106117545761010080835404028352916020019161177f565b820191906000526020600020905b81548152906001019060200180831161176257829003601f168201915b5050505050905090565b611791612427565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16036117f5576040517fb06307db00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8060076000611802612427565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff166118af612427565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31836040516118f4919061364f565b60405180910390a35050565b600d60059054906101000a900460ff1681565b61191b612427565b73ffffffffffffffffffffffffffffffffffffffff166119396116ba565b73ffffffffffffffffffffffffffffffffffffffff161461198f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161198690613eac565b60405180910390fd5b80600d60026101000a81548160ff021916908360ff16021790555050565b8360006daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff163b1115611b7e573373ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603611a2057611a1b858585856128db565b611b8b565b6daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff1663c617113430336040518363ffffffff1660e01b8152600401611a699291906141aa565b602060405180830381865afa158015611a86573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611aaa91906141e8565b8015611b3c57506daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff1663c617113430836040518363ffffffff1660e01b8152600401611afa9291906141aa565b602060405180830381865afa158015611b17573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611b3b91906141e8565b5b611b7d57336040517fede71dcc000000000000000000000000000000000000000000000000000000008152600401611b749190613827565b60405180910390fd5b5b611b8a858585856128db565b5b5050505050565b6060611b9d8261242f565b611bdc576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611bd390614358565b60405180910390fd5b60001515600d60059054906101000a900460ff16151503611c8957600b8054611c0490613efb565b80601f0160208091040260200160405190810160405280929190818152602001828054611c3090613efb565b8015611c7d5780601f10611c5257610100808354040283529160200191611c7d565b820191906000526020600020905b815481529060010190602001808311611c6057829003601f168201915b50505050509050611ce5565b6000611c93612957565b90506000815111611cb35760405180602001604052806000815250611ce1565b80611cbd846129e9565b600a604051602001611cd193929190614437565b6040516020818303038152906040525b9150505b919050565b611cf2612427565b73ffffffffffffffffffffffffffffffffffffffff16611d106116ba565b73ffffffffffffffffffffffffffffffffffffffff1614611d66576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d5d90613eac565b60405180910390fd5b6000611d70610c84565b90506000838390508560ff16611d869190614468565b9050600d60009054906101000a900461ffff1661ffff16818361ffff16611dad91906144aa565b1115611dee576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611de5906142c6565b60405180910390fd5b60005b84849050811015611e4357611e30858583818110611e1257611e116144de565b5b9050602002016020810190611e279190613b4f565b8760ff16612548565b8080611e3b9061450d565b915050611df1565b5060009450600091505050505050565b600d60009054906101000a900461ffff1681565b6000611e71610c84565b90506000600e60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff169050600d60009054906101000a900461ffff1661ffff168360ff1683611ee89190614244565b61ffff161115611f2d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f24906142c6565b60405180910390fd5b600d60029054906101000a900460ff1660ff168184611f4c9190614555565b60ff161115611f90576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f87906145d6565b60405180910390fd5b600d60049054906101000a900460ff1615611fe0576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611fd790614642565b60405180910390fd5b600d60039054906101000a900460ff1660ff168160ff1610612054578260ff16600c5461200d9190614468565b34101561204f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612046906146ae565b60405180910390fd5b6120f4565b600081846120629190614555565b9050600d60039054906101000a900460ff1660ff168160ff1611156120f257600d60039054906101000a900460ff168161209c91906146ce565b90508060ff16600c546120af9190614468565b3410156120f1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016120e8906146ae565b60405180910390fd5b5b505b612101338460ff16612548565b808361210d9190614555565b600e60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff021916908360ff1602179055506000915060009250505050565b600e6020528060005260406000206000915054906101000a900460ff1681565b6000600760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b600b805461223290613efb565b80601f016020809104026020016040519081016040528092919081815260200182805461225e90613efb565b80156122ab5780601f10612280576101008083540402835291602001916122ab565b820191906000526020600020905b81548152906001019060200180831161228e57829003601f168201915b505050505081565b6122bb612427565b73ffffffffffffffffffffffffffffffffffffffff166122d96116ba565b73ffffffffffffffffffffffffffffffffffffffff161461232f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161232690613eac565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff160361239e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161239590614775565b60405180910390fd5b6123a781612815565b50565b600d60039054906101000a900460ff1681565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b600033905090565b60008161243a61252f565b11158015612449575060005482105b8015612476575060046000838152602001908152602001600020600001601c9054906101000a900460ff16155b9050919050565b826006600084815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b60006001905090565b612543838383612b49565b505050565b612562828260405180602001604052806000815250612ffd565b5050565b612581838383604051806020016040528060008152506119ad565b505050565b61258e613558565b60008290508061259c61252f565b111580156125ab575060005481105b156127de576000600460008381526020019081526020016000206040518060600160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815260200160008201601c9054906101000a900460ff161515151581525050905080604001516127dc57600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff16146126c0578092505050612810565b5b6001156127db57818060019003925050600460008381526020019081526020016000206040518060600160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815260200160008201601c9054906101000a900460ff1615151515815250509050600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff16146127d6578092505050612810565b6126c1565b5b505b6040517fdf2d9b4200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b919050565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b6128e6848484612b49565b6129058373ffffffffffffffffffffffffffffffffffffffff1661300f565b801561291a575061291884848484613032565b155b15612951576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b50505050565b60606009805461296690613efb565b80601f016020809104026020016040519081016040528092919081815260200182805461299290613efb565b80156129df5780601f106129b4576101008083540402835291602001916129df565b820191906000526020600020905b8154815290600101906020018083116129c257829003601f168201915b5050505050905090565b606060008203612a30576040518060400160405280600181526020017f30000000000000000000000000000000000000000000000000000000000000008152509050612b44565b600082905060005b60008214612a62578080612a4b9061450d565b915050600a82612a5b91906147c4565b9150612a38565b60008167ffffffffffffffff811115612a7e57612a7d6138b8565b5b6040519080825280601f01601f191660200182016040528015612ab05781602001600182028036833780820191505090505b5090505b60008514612b3d57600182612ac991906147f5565b9150600a85612ad89190614829565b6030612ae491906144aa565b60f81b818381518110612afa57612af96144de565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a85612b3691906147c4565b9450612ab4565b8093505050505b919050565b6000612b5482612586565b90508373ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff1614612bbf576040517fa114810000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b60008473ffffffffffffffffffffffffffffffffffffffff16612be0612427565b73ffffffffffffffffffffffffffffffffffffffff161480612c0f5750612c0e85612c09612427565b612191565b5b80612c545750612c1d612427565b73ffffffffffffffffffffffffffffffffffffffff16612c3c84610a69565b73ffffffffffffffffffffffffffffffffffffffff16145b905080612c8d576040517f59c896be00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1603612cf3576040517fea553b3400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b612d008585856001613182565b612d0c6000848761247d565b6001600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a900467ffffffffffffffff160392506101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055506001600560008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a900467ffffffffffffffff160192506101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055506000600460008581526020019081526020016000209050848160000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550428160000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff16021790555060006001850190506000600460008381526020019081526020016000209050600073ffffffffffffffffffffffffffffffffffffffff168160000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1603612f8b576000548214612f8a57878160000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555084602001518160000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055505b5b505050828473ffffffffffffffffffffffffffffffffffffffff168673ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4612ff68585856001613188565b5050505050565b61300a838383600161318e565b505050565b6000808273ffffffffffffffffffffffffffffffffffffffff163b119050919050565b60008373ffffffffffffffffffffffffffffffffffffffff1663150b7a02613058612427565b8786866040518563ffffffff1660e01b815260040161307a94939291906148af565b6020604051808303816000875af19250505080156130b657506040513d601f19601f820116820180604052508101906130b39190614910565b60015b61312f573d80600081146130e6576040519150601f19603f3d011682016040523d82523d6000602084013e6130eb565b606091505b506000815103613127576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050949350505050565b50505050565b50505050565b600080549050600073ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff16036131fa576040517f2e07630000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b60008403613234576040517fb562e8dd00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6132416000868387613182565b83600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a900467ffffffffffffffff160192506101000a81548167ffffffffffffffff021916908367ffffffffffffffff16021790555083600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160088282829054906101000a900467ffffffffffffffff160192506101000a81548167ffffffffffffffff021916908367ffffffffffffffff160217905550846004600083815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550426004600083815260200190815260200160002060000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff16021790555060008190506000858201905083801561340b575061340a8773ffffffffffffffffffffffffffffffffffffffff1661300f565b5b156134d0575b818773ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a46134806000888480600101955088613032565b6134b6576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8082036134115782600054146134cb57600080fd5b61353b565b5b818060010192508773ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a48082036134d1575b8160008190555050506135516000868387613188565b5050505050565b6040518060600160405280600073ffffffffffffffffffffffffffffffffffffffff168152602001600067ffffffffffffffff1681526020016000151581525090565b6000604051905090565b600080fd5b600080fd5b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b6135e4816135af565b81146135ef57600080fd5b50565b600081359050613601816135db565b92915050565b60006020828403121561361d5761361c6135a5565b5b600061362b848285016135f2565b91505092915050565b60008115159050919050565b61364981613634565b82525050565b60006020820190506136646000830184613640565b92915050565b600061ffff82169050919050565b6136818161366a565b811461368c57600080fd5b50565b60008135905061369e81613678565b92915050565b6000602082840312156136ba576136b96135a5565b5b60006136c88482850161368f565b91505092915050565b600081519050919050565b600082825260208201905092915050565b60005b8381101561370b5780820151818401526020810190506136f0565b60008484015250505050565b6000601f19601f8301169050919050565b6000613733826136d1565b61373d81856136dc565b935061374d8185602086016136ed565b61375681613717565b840191505092915050565b6000602082019050818103600083015261377b8184613728565b905092915050565b6000819050919050565b61379681613783565b81146137a157600080fd5b50565b6000813590506137b38161378d565b92915050565b6000602082840312156137cf576137ce6135a5565b5b60006137dd848285016137a4565b91505092915050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000613811826137e6565b9050919050565b61382181613806565b82525050565b600060208201905061383c6000830184613818565b92915050565b61384b81613806565b811461385657600080fd5b50565b60008135905061386881613842565b92915050565b60008060408385031215613885576138846135a5565b5b600061389385828601613859565b92505060206138a4858286016137a4565b9150509250929050565b600080fd5b600080fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6138f082613717565b810181811067ffffffffffffffff8211171561390f5761390e6138b8565b5b80604052505050565b600061392261359b565b905061392e82826138e7565b919050565b600067ffffffffffffffff82111561394e5761394d6138b8565b5b61395782613717565b9050602081019050919050565b82818337600083830152505050565b600061398661398184613933565b613918565b9050828152602081018484840111156139a2576139a16138b3565b5b6139ad848285613964565b509392505050565b600082601f8301126139ca576139c96138ae565b5b81356139da848260208601613973565b91505092915050565b6000602082840312156139f9576139f86135a5565b5b600082013567ffffffffffffffff811115613a1757613a166135aa565b5b613a23848285016139b5565b91505092915050565b613a3581613783565b82525050565b6000602082019050613a506000830184613a2c565b92915050565b600080600060608486031215613a6f57613a6e6135a5565b5b6000613a7d86828701613859565b9350506020613a8e86828701613859565b9250506040613a9f868287016137a4565b9150509250925092565b60008060408385031215613ac057613abf6135a5565b5b6000613ace8582860161368f565b9250506020613adf85828601613859565b9150509250929050565b600060ff82169050919050565b613aff81613ae9565b8114613b0a57600080fd5b50565b600081359050613b1c81613af6565b92915050565b600060208284031215613b3857613b376135a5565b5b6000613b4684828501613b0d565b91505092915050565b600060208284031215613b6557613b646135a5565b5b6000613b7384828501613859565b91505092915050565b613b8581613ae9565b82525050565b6000602082019050613ba06000830184613b7c565b92915050565b613baf81613634565b8114613bba57600080fd5b50565b600081359050613bcc81613ba6565b92915050565b60008060408385031215613be957613be86135a5565b5b6000613bf785828601613859565b9250506020613c0885828601613bbd565b9150509250929050565b600067ffffffffffffffff821115613c2d57613c2c6138b8565b5b613c3682613717565b9050602081019050919050565b6000613c56613c5184613c12565b613918565b905082815260208101848484011115613c7257613c716138b3565b5b613c7d848285613964565b509392505050565b600082601f830112613c9a57613c996138ae565b5b8135613caa848260208601613c43565b91505092915050565b60008060008060808587031215613ccd57613ccc6135a5565b5b6000613cdb87828801613859565b9450506020613cec87828801613859565b9350506040613cfd878288016137a4565b925050606085013567ffffffffffffffff811115613d1e57613d1d6135aa565b5b613d2a87828801613c85565b91505092959194509250565b600080fd5b600080fd5b60008083601f840112613d5657613d556138ae565b5b8235905067ffffffffffffffff811115613d7357613d72613d36565b5b602083019150836020820283011115613d8f57613d8e613d3b565b5b9250929050565b600080600060408486031215613daf57613dae6135a5565b5b6000613dbd86828701613b0d565b935050602084013567ffffffffffffffff811115613dde57613ddd6135aa565b5b613dea86828701613d40565b92509250509250925092565b613dff8161366a565b82525050565b6000602082019050613e1a6000830184613df6565b92915050565b60008060408385031215613e3757613e366135a5565b5b6000613e4585828601613859565b9250506020613e5685828601613859565b9150509250929050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b6000613e966020836136dc565b9150613ea182613e60565b602082019050919050565b60006020820190508181036000830152613ec581613e89565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b60006002820490506001821680613f1357607f821691505b602082108103613f2657613f25613ecc565b5b50919050565b60008190508160005260206000209050919050565b60006020601f8301049050919050565b600082821b905092915050565b600060088302613f8e7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82613f51565b613f988683613f51565b95508019841693508086168417925050509392505050565b6000819050919050565b6000613fd5613fd0613fcb84613783565b613fb0565b613783565b9050919050565b6000819050919050565b613fef83613fba565b614003613ffb82613fdc565b848454613f5e565b825550505050565b600090565b61401861400b565b614023818484613fe6565b505050565b5b818110156140475761403c600082614010565b600181019050614029565b5050565b601f82111561408c5761405d81613f2c565b61406684613f41565b81016020851015614075578190505b61408961408185613f41565b830182614028565b50505b505050565b600082821c905092915050565b60006140af60001984600802614091565b1980831691505092915050565b60006140c8838361409e565b9150826002028217905092915050565b6140e1826136d1565b67ffffffffffffffff8111156140fa576140f96138b8565b5b6141048254613efb565b61410f82828561404b565b600060209050601f8311600181146141425760008415614130578287015190505b61413a85826140bc565b8655506141a2565b601f19841661415086613f2c565b60005b8281101561417857848901518255600182019150602085019450602081019050614153565b868310156141955784890151614191601f89168261409e565b8355505b6001600288020188555050505b505050505050565b60006040820190506141bf6000830185613818565b6141cc6020830184613818565b9392505050565b6000815190506141e281613ba6565b92915050565b6000602082840312156141fe576141fd6135a5565b5b600061420c848285016141d3565b91505092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b600061424f8261366a565b915061425a8361366a565b9250828201905061ffff81111561427457614273614215565b5b92915050565b7f45786365656473206d617820737570706c792e00000000000000000000000000600082015250565b60006142b06013836136dc565b91506142bb8261427a565b602082019050919050565b600060208201905081810360008301526142df816142a3565b9050919050565b7f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008201527f6e6578697374656e7420746f6b656e0000000000000000000000000000000000602082015250565b6000614342602f836136dc565b915061434d826142e6565b604082019050919050565b6000602082019050818103600083015261437181614335565b9050919050565b600081905092915050565b600061438e826136d1565b6143988185614378565b93506143a88185602086016136ed565b80840191505092915050565b600081546143c181613efb565b6143cb8186614378565b945060018216600081146143e657600181146143fb5761442e565b60ff198316865281151582028601935061442e565b61440485613f2c565b60005b8381101561442657815481890152600182019150602081019050614407565b838801955050505b50505092915050565b60006144438286614383565b915061444f8285614383565b915061445b82846143b4565b9150819050949350505050565b600061447382613783565b915061447e83613783565b925082820261448c81613783565b915082820484148315176144a3576144a2614215565b5b5092915050565b60006144b582613783565b91506144c083613783565b92508282019050808211156144d8576144d7614215565b5b92915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b600061451882613783565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff820361454a57614549614215565b5b600182019050919050565b600061456082613ae9565b915061456b83613ae9565b9250828201905060ff81111561458457614583614215565b5b92915050565b7f45786365656473206d617820706572207472616e73616374696f6e2e00000000600082015250565b60006145c0601c836136dc565b91506145cb8261458a565b602082019050919050565b600060208201905081810360008301526145ef816145b3565b9050919050565b7f54686520636f6e74726163742069732070617573656421000000000000000000600082015250565b600061462c6017836136dc565b9150614637826145f6565b602082019050919050565b6000602082019050818103600083015261465b8161461f565b9050919050565b7f496e73756666696369656e742066756e64732100000000000000000000000000600082015250565b60006146986013836136dc565b91506146a382614662565b602082019050919050565b600060208201905081810360008301526146c78161468b565b9050919050565b60006146d982613ae9565b91506146e483613ae9565b9250828203905060ff8111156146fd576146fc614215565b5b92915050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b600061475f6026836136dc565b915061476a82614703565b604082019050919050565b6000602082019050818103600083015261478e81614752565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b60006147cf82613783565b91506147da83613783565b9250826147ea576147e9614795565b5b828204905092915050565b600061480082613783565b915061480b83613783565b925082820390508181111561482357614822614215565b5b92915050565b600061483482613783565b915061483f83613783565b92508261484f5761484e614795565b5b828206905092915050565b600081519050919050565b600082825260208201905092915050565b60006148818261485a565b61488b8185614865565b935061489b8185602086016136ed565b6148a481613717565b840191505092915050565b60006080820190506148c46000830187613818565b6148d16020830186613818565b6148de6040830185613a2c565b81810360608301526148f08184614876565b905095945050505050565b60008151905061490a816135db565b92915050565b600060208284031215614926576149256135a5565b5b6000614934848285016148fb565b9150509291505056fea26469706673582212208b3a9a00580199d9fce892b3ebbdf6bfe838aee28816a1fd8f8469386b87f10e64736f6c63430008110033

Deployed Bytecode Sourcemap

48728:4738:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;24617:305;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;51289:97;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;27730:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;29233:204;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;28796:371;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;52163:102;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;48942:29;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;23866:303;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;52885:163;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;50369:326;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;52273:74;;;;;;;;;;;;;:::i;:::-;;52434:70;;;;;;;;;;;;;:::i;:::-;;52628:144;;;;;;;;;;;;;:::i;:::-;;53056:171;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;52353:76;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;51904:134;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;49175:25;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;27538:125;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;24986:206;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;43439:103;;;;;;;;;;;;;:::i;:::-;;52056:102;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;42787:87;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;49019:35;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;27899:104;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;29509:287;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;49205:25;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;52510:107;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;53235:228;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;51401:490;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;50701:473;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;48985:29;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;49381:980;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;49238:53;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;29867:164;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;48902:23;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;43697:201;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;49061:43;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;24617:305;24719:4;24771:25;24756:40;;;:11;:40;;;;:105;;;;24828:33;24813:48;;;:11;:48;;;;24756:105;:158;;;;24878:36;24902:11;24878:23;:36::i;:::-;24756:158;24736:178;;24617:305;;;:::o;51289:97::-;43018:12;:10;:12::i;:::-;43007:23;;:7;:5;:7::i;:::-;:23;;;42999:69;;;;;;;;;;;;:::i;:::-;;;;;;;;;51370:10:::1;51358:9;;:22;;;;;;;;;;;;;;;;;;51289:97:::0;:::o;27730:100::-;27784:13;27817:5;27810:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;27730:100;:::o;29233:204::-;29301:7;29326:16;29334:7;29326;:16::i;:::-;29321:64;;29351:34;;;;;;;;;;;;;;29321:64;29405:15;:24;29421:7;29405:24;;;;;;;;;;;;;;;;;;;;;29398:31;;29233:204;;;:::o;28796:371::-;28869:13;28885:24;28901:7;28885:15;:24::i;:::-;28869:40;;28930:5;28924:11;;:2;:11;;;28920:48;;28944:24;;;;;;;;;;;;;;28920:48;29001:5;28985:21;;:12;:10;:12::i;:::-;:21;;;;:63;;;;;29011:37;29028:5;29035:12;:10;:12::i;:::-;29011:16;:37::i;:::-;29010:38;28985:63;28981:138;;;29072:35;;;;;;;;;;;;;;28981:138;29131:28;29140:2;29144:7;29153:5;29131:8;:28::i;:::-;28858:309;28796:371;;:::o;52163:102::-;43018:12;:10;:12::i;:::-;43007:23;;:7;:5;:7::i;:::-;:23;;;42999:69;;;;;;;;;;;;:::i;:::-;;;;;;;;;52249:10:::1;52237:9;:22;;;;;;:::i;:::-;;52163:102:::0;:::o;48942:29::-;;;;:::o;23866:303::-;23910:7;24135:15;:13;:15::i;:::-;24120:12;;24104:13;;:28;:46;24097:53;;23866:303;:::o;52885:163::-;52986:4;47749:1;46563:42;47703:43;;;:47;47699:699;;;47990:10;47982:18;;:4;:18;;;47978:85;;53003:37:::1;53022:4;53028:2;53032:7;53003:18;:37::i;:::-;48041:7:::0;;47978:85;46563:42;48123:40;;;48172:4;48179:10;48123:67;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;:157;;;;;46563:42;48219:40;;;48268:4;48275;48219:61;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;48123:157;48077:310;;48360:10;48341:30;;;;;;;;;;;:::i;:::-;;;;;;;;48077:310;47699:699;53003:37:::1;53022:4;53028:2;53032:7;53003:18;:37::i;:::-;52885:163:::0;;;;;:::o;50369:326::-;43018:12;:10;:12::i;:::-;43007:23;;:7;:5;:7::i;:::-;:23;;;42999:69;;;;;;;;;;;;:::i;:::-;;;;;;;;;50452:18:::1;50480:13;:11;:13::i;:::-;50452:42;;50538:9;;;;;;;;;;;50509:38;;50523:11;50509;:25;;;;:::i;:::-;:38;;;;50501:70;;;;;;;;;;;;:::i;:::-;;;;;;;;;50579:34;50589:9;50601:11;50579:34;;:9;:34::i;:::-;50621:18;;;50647:16;;;50671:18;;;50444:251;50369:326:::0;;:::o;52273:74::-;43018:12;:10;:12::i;:::-;43007:23;;:7;:5;:7::i;:::-;:23;;;42999:69;;;;;;;;;;;;:::i;:::-;;;;;;;;;52330:6:::1;;;;;;;;;;;52329:7;52320:6;;:16;;;;;;;;;;;;;;;;;;52273:74::o:0;52434:70::-;43018:12;:10;:12::i;:::-;43007:23;;:7;:5;:7::i;:::-;:23;;;42999:69;;;;;;;;;;;;:::i;:::-;;;;;;;;;52493:6:::1;;;;;;;;;;;52492:7;52483:6;;:16;;;;;;;;;;;;;;;;;;52434:70::o:0;52628:144::-;43018:12;:10;:12::i;:::-;43007:23;;:7;:5;:7::i;:::-;:23;;;42999:69;;;;;;;;;;;;:::i;:::-;;;;;;;;;52672:13:::1;52688:21;52672:37;;52725:10;52717:28;;:39;52746:8;52717:39;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;52667:105;52628:144::o:0;53056:171::-;53161:4;47749:1;46563:42;47703:43;;;:47;47699:699;;;47990:10;47982:18;;:4;:18;;;47978:85;;53178:41:::1;53201:4;53207:2;53211:7;53178:22;:41::i;:::-;48041:7:::0;;47978:85;46563:42;48123:40;;;48172:4;48179:10;48123:67;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;:157;;;;;46563:42;48219:40;;;48268:4;48275;48219:61;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;48123:157;48077:310;;48360:10;48341:30;;;;;;;;;;;:::i;:::-;;;;;;;;48077:310;47699:699;53178:41:::1;53201:4;53207:2;53211:7;53178:22;:41::i;:::-;53056:171:::0;;;;;:::o;52353:76::-;43018:12;:10;:12::i;:::-;43007:23;;:7;:5;:7::i;:::-;:23;;;42999:69;;;;;;;;;;;;:::i;:::-;;;;;;;;;52416:5:::1;52409:4;:12;;;;52353:76:::0;:::o;51904:134::-;43018:12;:10;:12::i;:::-;43007:23;;:7;:5;:7::i;:::-;:23;;;42999:69;;;;;;;;;;;;:::i;:::-;;;;;;;;;52007:6:::1;51978:26;;:35;;;;;;;;;;;;;;;;;;52019:13;;;51904:134:::0;:::o;49175:25::-;;;;;;;;;;;;;:::o;27538:125::-;27602:7;27629:21;27642:7;27629:12;:21::i;:::-;:26;;;27622:33;;27538:125;;;:::o;24986:206::-;25050:7;25091:1;25074:19;;:5;:19;;;25070:60;;25102:28;;;;;;;;;;;;;;25070:60;25156:12;:19;25169:5;25156:19;;;;;;;;;;;;;;;:27;;;;;;;;;;;;25148:36;;25141:43;;24986:206;;;:::o;43439:103::-;43018:12;:10;:12::i;:::-;43007:23;;:7;:5;:7::i;:::-;:23;;;42999:69;;;;;;;;;;;;:::i;:::-;;;;;;;;;43504:30:::1;43531:1;43504:18;:30::i;:::-;43439:103::o:0;52056:102::-;43018:12;:10;:12::i;:::-;43007:23;;:7;:5;:7::i;:::-;:23;;;42999:69;;;;;;;;;;;;:::i;:::-;;;;;;;;;52142:10:::1;52130:9;:22;;;;;;:::i;:::-;;52056:102:::0;:::o;42787:87::-;42833:7;42860:6;;;;;;;;;;;42853:13;;42787:87;:::o;49019:35::-;;;;;;;;;;;;;:::o;27899:104::-;27955:13;27988:7;27981:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;27899:104;:::o;29509:287::-;29620:12;:10;:12::i;:::-;29608:24;;:8;:24;;;29604:54;;29641:17;;;;;;;;;;;;;;29604:54;29716:8;29671:18;:32;29690:12;:10;:12::i;:::-;29671:32;;;;;;;;;;;;;;;:42;29704:8;29671:42;;;;;;;;;;;;;;;;:53;;;;;;;;;;;;;;;;;;29769:8;29740:48;;29755:12;:10;:12::i;:::-;29740:48;;;29779:8;29740:48;;;;;;:::i;:::-;;;;;;;;29509:287;;:::o;49205:25::-;;;;;;;;;;;;;:::o;52510:107::-;43018:12;:10;:12::i;:::-;43007:23;;:7;:5;:7::i;:::-;:23;;;42999:69;;;;;;;;;;;;:::i;:::-;;;;;;;;;52603:6:::1;52582:18;;:27;;;;;;;;;;;;;;;;;;52510:107:::0;:::o;53235:228::-;53386:4;47749:1;46563:42;47703:43;;;:47;47699:699;;;47990:10;47982:18;;:4;:18;;;47978:85;;53408:47:::1;53431:4;53437:2;53441:7;53450:4;53408:22;:47::i;:::-;48041:7:::0;;47978:85;46563:42;48123:40;;;48172:4;48179:10;48123:67;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;:157;;;;;46563:42;48219:40;;;48268:4;48275;48219:61;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;48123:157;48077:310;;48360:10;48341:30;;;;;;;;;;;:::i;:::-;;;;;;;;48077:310;47699:699;53408:47:::1;53431:4;53437:2;53441:7;53450:4;53408:22;:47::i;:::-;53235:228:::0;;;;;;:::o;51401:490::-;51500:13;51541:17;51549:8;51541:7;:17::i;:::-;51525:98;;;;;;;;;;;;:::i;:::-;;;;;;;;;51651:5;51641:15;;:6;;;;;;;;;;;:15;;;51636:50;;51673:9;51666:16;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;51636:50;51700:28;51731:10;:8;:10::i;:::-;51700:41;;51786:1;51761:14;51755:28;:32;:130;;;;;;;;;;;;;;;;;51823:14;51839:19;:8;:17;:19::i;:::-;51860:9;51806:64;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;51755:130;51748:137;;;51401:490;;;;:::o;50701:473::-;43018:12;:10;:12::i;:::-;43007:23;;:7;:5;:7::i;:::-;:23;;;42999:69;;;;;;;;;;;;:::i;:::-;;;;;;;;;50801:18:::1;50829:13;:11;:13::i;:::-;50801:42;;50851:16;50892:9;;:16;;50872:17;:36;;;;;;:::i;:::-;50851:57;;50952:9;;;;;;;;;;;50923:38;;50937:11;50923;:25;;;;;;:::i;:::-;:38;;50915:70;;;;;;;;;;;;:::i;:::-;;;;;;;;;50998:9;50993:116;51017:9;;:16;;51013:1;:20;50993:116;;;51055:42;51065:9;;51075:1;51065:12;;;;;;;:::i;:::-;;;;;;;;;;;;;;;:::i;:::-;51079:17;51055:42;;:9;:42::i;:::-;51035:3;;;;;:::i;:::-;;;;50993:116;;;;51118:24;;;51150:18;;;50793:381;;50701:473:::0;;;:::o;48985:29::-;;;;;;;;;;;;;:::o;49381:980::-;49444:18;49472:13;:11;:13::i;:::-;49444:42;;49494:9;49506:19;:31;49526:10;49506:31;;;;;;;;;;;;;;;;;;;;;;;;;49494:43;;49581:9;;;;;;;;;;;49552:38;;49566:11;49552:25;;:11;:25;;;;:::i;:::-;:38;;;;49544:70;;;;;;;;;;;;:::i;:::-;;;;;;;;;49650:18;;;;;;;;;;;49629:39;;49643:3;49629:11;:17;;;;:::i;:::-;:39;;;;49621:80;;;;;;;;;;;;:::i;:::-;;;;;;;;;49719:6;;;;;;;;;;;49718:7;49710:43;;;;;;;;;;;;:::i;:::-;;;;;;;;;49778:26;;;;;;;;;;;49771:33;;:3;:33;;;49768:417;;49846:11;49839:18;;:4;;:18;;;;:::i;:::-;49826:9;:31;;49818:63;;;;;;;;;;;;:::i;:::-;;;;;;;;;49768:417;;;49912:16;49945:3;49931:11;:17;;;;:::i;:::-;49912:36;;49975:26;;;;;;;;;;;49962:39;;:10;:39;;;49959:199;;;50048:26;;;;;;;;;;;50035:10;:39;;;;:::i;:::-;50022:52;;50113:10;50106:17;;:4;;:17;;;;:::i;:::-;50093:9;:30;;50085:62;;;;;;;;;;;;:::i;:::-;;;;;;;;;49959:199;49900:285;49768:417;50201:35;50211:10;50224:11;50201:35;;:9;:35::i;:::-;50293:3;50279:11;:17;;;;:::i;:::-;50245:19;:31;50265:10;50245:31;;;;;;;;;;;;;;;;:51;;;;;;;;;;;;;;;;;;50311:18;;;50337;;;49436:925;;49381:980;:::o;49238:53::-;;;;;;;;;;;;;;;;;;;;;;:::o;29867:164::-;29964:4;29988:18;:25;30007:5;29988:25;;;;;;;;;;;;;;;:35;30014:8;29988:35;;;;;;;;;;;;;;;;;;;;;;;;;29981:42;;29867:164;;;;:::o;48902:23::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;43697:201::-;43018:12;:10;:12::i;:::-;43007:23;;:7;:5;:7::i;:::-;:23;;;42999:69;;;;;;;;;;;;:::i;:::-;;;;;;;;;43806:1:::1;43786:22;;:8;:22;;::::0;43778:73:::1;;;;;;;;;;;;:::i;:::-;;;;;;;;;43862:28;43881:8;43862:18;:28::i;:::-;43697:201:::0;:::o;49061:43::-;;;;;;;;;;;;;:::o;14542:157::-;14627:4;14666:25;14651:40;;;:11;:40;;;;14644:47;;14542:157;;;:::o;3012:98::-;3065:7;3092:10;3085:17;;3012:98;:::o;31219:187::-;31276:4;31319:7;31300:15;:13;:15::i;:::-;:26;;:53;;;;;31340:13;;31330:7;:23;31300:53;:98;;;;;31371:11;:20;31383:7;31371:20;;;;;;;;;;;:27;;;;;;;;;;;;31370:28;31300:98;31293:105;;31219:187;;;:::o;39389:196::-;39531:2;39504:15;:24;39520:7;39504:24;;;;;;;;;;;;:29;;;;;;;;;;;;;;;;;;39569:7;39565:2;39549:28;;39558:5;39549:28;;;;;;;;;;;;39389:196;;;:::o;51182:101::-;51247:7;51274:1;51267:8;;51182:101;:::o;30098:170::-;30232:28;30242:4;30248:2;30252:7;30232:9;:28::i;:::-;30098:170;;;:::o;31414:104::-;31483:27;31493:2;31497:8;31483:27;;;;;;;;;;;;:9;:27::i;:::-;31414:104;;:::o;30339:185::-;30477:39;30494:4;30500:2;30504:7;30477:39;;;;;;;;;;;;:16;:39::i;:::-;30339:185;;;:::o;26367:1109::-;26429:21;;:::i;:::-;26463:12;26478:7;26463:22;;26546:4;26527:15;:13;:15::i;:::-;:23;;:47;;;;;26561:13;;26554:4;:20;26527:47;26523:886;;;26595:31;26629:11;:17;26641:4;26629:17;;;;;;;;;;;26595:51;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;26670:9;:16;;;26665:729;;26741:1;26715:28;;:9;:14;;;:28;;;26711:101;;26779:9;26772:16;;;;;;26711:101;27114:261;27121:4;27114:261;;;27154:6;;;;;;;;27199:11;:17;27211:4;27199:17;;;;;;;;;;;27187:29;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;27273:1;27247:28;;:9;:14;;;:28;;;27243:109;;27315:9;27308:16;;;;;;27243:109;27114:261;;;26665:729;26576:833;26523:886;27437:31;;;;;;;;;;;;;;26367:1109;;;;:::o;44058:191::-;44132:16;44151:6;;;;;;;;;;;44132:25;;44177:8;44168:6;;:17;;;;;;;;;;;;;;;;;;44232:8;44201:40;;44222:8;44201:40;;;;;;;;;;;;44121:128;44058:191;:::o;30595:369::-;30762:28;30772:4;30778:2;30782:7;30762:9;:28::i;:::-;30805:15;:2;:13;;;:15::i;:::-;:76;;;;;30825:56;30856:4;30862:2;30866:7;30875:5;30825:30;:56::i;:::-;30824:57;30805:76;30801:156;;;30905:40;;;;;;;;;;;;;;30801:156;30595:369;;;;:::o;52780:97::-;52833:13;52862:9;52855:16;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;52780:97;:::o;574:723::-;630:13;860:1;851:5;:10;847:53;;878:10;;;;;;;;;;;;;;;;;;;;;847:53;910:12;925:5;910:20;;941:14;966:78;981:1;973:4;:9;966:78;;999:8;;;;;:::i;:::-;;;;1030:2;1022:10;;;;;:::i;:::-;;;966:78;;;1054:19;1086:6;1076:17;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1054:39;;1104:154;1120:1;1111:5;:10;1104:154;;1148:1;1138:11;;;;;:::i;:::-;;;1215:2;1207:5;:10;;;;:::i;:::-;1194:2;:24;;;;:::i;:::-;1181:39;;1164:6;1171;1164:14;;;;;;;;:::i;:::-;;;;;:56;;;;;;;;;;;1244:2;1235:11;;;;;:::i;:::-;;;1104:154;;;1282:6;1268:21;;;;;574:723;;;;:::o;34332:2130::-;34447:35;34485:21;34498:7;34485:12;:21::i;:::-;34447:59;;34545:4;34523:26;;:13;:18;;;:26;;;34519:67;;34558:28;;;;;;;;;;;;;;34519:67;34599:22;34641:4;34625:20;;:12;:10;:12::i;:::-;:20;;;:73;;;;34662:36;34679:4;34685:12;:10;:12::i;:::-;34662:16;:36::i;:::-;34625:73;:126;;;;34739:12;:10;:12::i;:::-;34715:36;;:20;34727:7;34715:11;:20::i;:::-;:36;;;34625:126;34599:153;;34770:17;34765:66;;34796:35;;;;;;;;;;;;;;34765:66;34860:1;34846:16;;:2;:16;;;34842:52;;34871:23;;;;;;;;;;;;;;34842:52;34907:43;34929:4;34935:2;34939:7;34948:1;34907:21;:43::i;:::-;35015:35;35032:1;35036:7;35045:4;35015:8;:35::i;:::-;35376:1;35346:12;:18;35359:4;35346:18;;;;;;;;;;;;;;;:26;;;:31;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;35420:1;35392:12;:16;35405:2;35392:16;;;;;;;;;;;;;;;:24;;;:29;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;35438:31;35472:11;:20;35484:7;35472:20;;;;;;;;;;;35438:54;;35523:2;35507:8;:13;;;:18;;;;;;;;;;;;;;;;;;35573:15;35540:8;:23;;;:49;;;;;;;;;;;;;;;;;;35841:19;35873:1;35863:7;:11;35841:33;;35889:31;35923:11;:24;35935:11;35923:24;;;;;;;;;;;35889:58;;35991:1;35966:27;;:8;:13;;;;;;;;;;;;:27;;;35962:384;;36176:13;;36161:11;:28;36157:174;;36230:4;36214:8;:13;;;:20;;;;;;;;;;;;;;;;;;36283:13;:28;;;36257:8;:23;;;:54;;;;;;;;;;;;;;;;;;36157:174;35962:384;35321:1036;;;36393:7;36389:2;36374:27;;36383:4;36374:27;;;;;;;;;;;;36412:42;36433:4;36439:2;36443:7;36452:1;36412:20;:42::i;:::-;34436:2026;;34332:2130;;;:::o;31881:163::-;32004:32;32010:2;32014:8;32024:5;32031:4;32004:5;:32::i;:::-;31881:163;;;:::o;4459:326::-;4519:4;4776:1;4754:7;:19;;;:23;4747:30;;4459:326;;;:::o;40077:667::-;40240:4;40277:2;40261:36;;;40298:12;:10;:12::i;:::-;40312:4;40318:7;40327:5;40261:72;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;40257:480;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;40512:1;40495:6;:13;:18;40491:235;;40541:40;;;;;;;;;;;;;;40491:235;40684:6;40678:13;40669:6;40665:2;40661:15;40654:38;40257:480;40390:45;;;40380:55;;;:6;:55;;;;40373:62;;;40077:667;;;;;;:::o;41392:159::-;;;;;:::o;42210:158::-;;;;;:::o;32303:1775::-;32442:20;32465:13;;32442:36;;32507:1;32493:16;;:2;:16;;;32489:48;;32518:19;;;;;;;;;;;;;;32489:48;32564:1;32552:8;:13;32548:44;;32574:18;;;;;;;;;;;;;;32548:44;32605:61;32635:1;32639:2;32643:12;32657:8;32605:21;:61::i;:::-;32978:8;32943:12;:16;32956:2;32943:16;;;;;;;;;;;;;;;:24;;;:44;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;33042:8;33002:12;:16;33015:2;33002:16;;;;;;;;;;;;;;;:29;;;:49;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;33101:2;33068:11;:25;33080:12;33068:25;;;;;;;;;;;:30;;;:35;;;;;;;;;;;;;;;;;;33168:15;33118:11;:25;33130:12;33118:25;;;;;;;;;;;:40;;;:66;;;;;;;;;;;;;;;;;;33201:20;33224:12;33201:35;;33251:11;33280:8;33265:12;:23;33251:37;;33309:4;:23;;;;;33317:15;:2;:13;;;:15::i;:::-;33309:23;33305:641;;;33353:314;33409:12;33405:2;33384:38;;33401:1;33384:38;;;;;;;;;;;;33450:69;33489:1;33493:2;33497:14;;;;;;33513:5;33450:30;:69::i;:::-;33445:174;;33555:40;;;;;;;;;;;;;;33445:174;33662:3;33646:12;:19;33353:314;;33748:12;33731:13;;:29;33727:43;;33762:8;;;33727:43;33305:641;;;33811:120;33867:14;;;;;;33863:2;33842:40;;33859:1;33842:40;;;;;;;;;;;;33926:3;33910:12;:19;33811:120;;33305:641;33976:12;33960:13;:28;;;;32918:1082;;34010:60;34039:1;34043:2;34047:12;34061:8;34010:20;:60::i;:::-;32431:1647;32303:1775;;;;:::o;-1:-1:-1:-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::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:246::-;2576:1;2586:113;2600:6;2597:1;2594:13;2586:113;;;2685:1;2680:3;2676:11;2670:18;2666:1;2661:3;2657:11;2650:39;2622:2;2619:1;2615:10;2610:15;;2586:113;;;2733:1;2724:6;2719:3;2715:16;2708:27;2557:184;2495:246;;;:::o;2747:102::-;2788:6;2839:2;2835:7;2830:2;2823:5;2819:14;2815:28;2805:38;;2747:102;;;:::o;2855:377::-;2943:3;2971:39;3004:5;2971:39;:::i;:::-;3026:71;3090:6;3085:3;3026:71;:::i;:::-;3019:78;;3106:65;3164:6;3159:3;3152:4;3145:5;3141:16;3106:65;:::i;:::-;3196:29;3218:6;3196:29;:::i;:::-;3191:3;3187:39;3180:46;;2947:285;2855:377;;;;:::o;3238:313::-;3351:4;3389:2;3378:9;3374:18;3366:26;;3438:9;3432:4;3428:20;3424:1;3413:9;3409:17;3402:47;3466:78;3539:4;3530:6;3466:78;:::i;:::-;3458:86;;3238:313;;;;:::o;3557:77::-;3594:7;3623:5;3612:16;;3557:77;;;:::o;3640:122::-;3713:24;3731:5;3713:24;:::i;:::-;3706:5;3703:35;3693:63;;3752:1;3749;3742:12;3693:63;3640:122;:::o;3768:139::-;3814:5;3852:6;3839:20;3830:29;;3868:33;3895:5;3868:33;:::i;:::-;3768:139;;;;:::o;3913:329::-;3972:6;4021:2;4009:9;4000:7;3996:23;3992:32;3989:119;;;4027:79;;:::i;:::-;3989:119;4147:1;4172:53;4217:7;4208:6;4197:9;4193:22;4172:53;:::i;:::-;4162:63;;4118:117;3913:329;;;;:::o;4248:126::-;4285:7;4325:42;4318:5;4314:54;4303:65;;4248:126;;;:::o;4380:96::-;4417:7;4446:24;4464:5;4446:24;:::i;:::-;4435:35;;4380:96;;;:::o;4482:118::-;4569:24;4587:5;4569:24;:::i;:::-;4564:3;4557:37;4482:118;;:::o;4606:222::-;4699:4;4737:2;4726:9;4722:18;4714:26;;4750:71;4818:1;4807:9;4803:17;4794:6;4750:71;:::i;:::-;4606:222;;;;:::o;4834:122::-;4907:24;4925:5;4907:24;:::i;:::-;4900:5;4897:35;4887:63;;4946:1;4943;4936:12;4887:63;4834:122;:::o;4962:139::-;5008:5;5046:6;5033:20;5024:29;;5062:33;5089:5;5062:33;:::i;:::-;4962:139;;;;:::o;5107:474::-;5175:6;5183;5232:2;5220:9;5211:7;5207:23;5203:32;5200:119;;;5238:79;;:::i;:::-;5200:119;5358:1;5383:53;5428:7;5419:6;5408:9;5404:22;5383:53;:::i;:::-;5373:63;;5329:117;5485:2;5511:53;5556:7;5547:6;5536:9;5532:22;5511:53;:::i;:::-;5501:63;;5456:118;5107:474;;;;;:::o;5587:117::-;5696:1;5693;5686:12;5710:117;5819:1;5816;5809:12;5833:180;5881:77;5878:1;5871:88;5978:4;5975:1;5968:15;6002:4;5999:1;5992:15;6019:281;6102:27;6124:4;6102:27;:::i;:::-;6094:6;6090:40;6232:6;6220:10;6217:22;6196:18;6184:10;6181:34;6178:62;6175:88;;;6243:18;;:::i;:::-;6175:88;6283:10;6279:2;6272:22;6062:238;6019:281;;:::o;6306:129::-;6340:6;6367:20;;:::i;:::-;6357:30;;6396:33;6424:4;6416:6;6396:33;:::i;:::-;6306:129;;;:::o;6441:308::-;6503:4;6593:18;6585:6;6582:30;6579:56;;;6615:18;;:::i;:::-;6579:56;6653:29;6675:6;6653:29;:::i;:::-;6645:37;;6737:4;6731;6727:15;6719:23;;6441:308;;;:::o;6755:146::-;6852:6;6847:3;6842;6829:30;6893:1;6884:6;6879:3;6875:16;6868:27;6755:146;;;:::o;6907:425::-;6985:5;7010:66;7026:49;7068:6;7026:49;:::i;:::-;7010:66;:::i;:::-;7001:75;;7099:6;7092:5;7085:21;7137:4;7130:5;7126:16;7175:3;7166:6;7161:3;7157:16;7154:25;7151:112;;;7182:79;;:::i;:::-;7151:112;7272:54;7319:6;7314:3;7309;7272:54;:::i;:::-;6991:341;6907:425;;;;;:::o;7352:340::-;7408:5;7457:3;7450:4;7442:6;7438:17;7434:27;7424:122;;7465:79;;:::i;:::-;7424:122;7582:6;7569:20;7607:79;7682:3;7674:6;7667:4;7659:6;7655:17;7607:79;:::i;:::-;7598:88;;7414:278;7352:340;;;;:::o;7698:509::-;7767:6;7816:2;7804:9;7795:7;7791:23;7787:32;7784:119;;;7822:79;;:::i;:::-;7784:119;7970:1;7959:9;7955:17;7942:31;8000:18;7992:6;7989:30;7986:117;;;8022:79;;:::i;:::-;7986:117;8127:63;8182:7;8173:6;8162:9;8158:22;8127:63;:::i;:::-;8117:73;;7913:287;7698:509;;;;:::o;8213:118::-;8300:24;8318:5;8300:24;:::i;:::-;8295:3;8288:37;8213:118;;:::o;8337:222::-;8430:4;8468:2;8457:9;8453:18;8445:26;;8481:71;8549:1;8538:9;8534:17;8525:6;8481:71;:::i;:::-;8337:222;;;;:::o;8565:619::-;8642:6;8650;8658;8707:2;8695:9;8686:7;8682:23;8678:32;8675:119;;;8713:79;;:::i;:::-;8675:119;8833:1;8858:53;8903:7;8894:6;8883:9;8879:22;8858:53;:::i;:::-;8848:63;;8804:117;8960:2;8986:53;9031:7;9022:6;9011:9;9007:22;8986:53;:::i;:::-;8976:63;;8931:118;9088:2;9114:53;9159:7;9150:6;9139:9;9135:22;9114:53;:::i;:::-;9104:63;;9059:118;8565:619;;;;;:::o;9190:472::-;9257:6;9265;9314:2;9302:9;9293:7;9289:23;9285:32;9282:119;;;9320:79;;:::i;:::-;9282:119;9440:1;9465:52;9509:7;9500:6;9489:9;9485:22;9465:52;:::i;:::-;9455:62;;9411:116;9566:2;9592:53;9637:7;9628:6;9617:9;9613:22;9592:53;:::i;:::-;9582:63;;9537:118;9190:472;;;;;:::o;9668:86::-;9703:7;9743:4;9736:5;9732:16;9721:27;;9668:86;;;:::o;9760:118::-;9831:22;9847:5;9831:22;:::i;:::-;9824:5;9821:33;9811:61;;9868:1;9865;9858:12;9811:61;9760:118;:::o;9884:135::-;9928:5;9966:6;9953:20;9944:29;;9982:31;10007:5;9982:31;:::i;:::-;9884:135;;;;:::o;10025:325::-;10082:6;10131:2;10119:9;10110:7;10106:23;10102:32;10099:119;;;10137:79;;:::i;:::-;10099:119;10257:1;10282:51;10325:7;10316:6;10305:9;10301:22;10282:51;:::i;:::-;10272:61;;10228:115;10025:325;;;;:::o;10356:329::-;10415:6;10464:2;10452:9;10443:7;10439:23;10435:32;10432:119;;;10470:79;;:::i;:::-;10432:119;10590:1;10615:53;10660:7;10651:6;10640:9;10636:22;10615:53;:::i;:::-;10605:63;;10561:117;10356:329;;;;:::o;10691:112::-;10774:22;10790:5;10774:22;:::i;:::-;10769:3;10762:35;10691:112;;:::o;10809:214::-;10898:4;10936:2;10925:9;10921:18;10913:26;;10949:67;11013:1;11002:9;10998:17;10989:6;10949:67;:::i;:::-;10809:214;;;;:::o;11029:116::-;11099:21;11114:5;11099:21;:::i;:::-;11092:5;11089:32;11079:60;;11135:1;11132;11125:12;11079:60;11029:116;:::o;11151:133::-;11194:5;11232:6;11219:20;11210:29;;11248:30;11272:5;11248:30;:::i;:::-;11151:133;;;;:::o;11290:468::-;11355:6;11363;11412:2;11400:9;11391:7;11387:23;11383:32;11380:119;;;11418:79;;:::i;:::-;11380:119;11538:1;11563:53;11608:7;11599:6;11588:9;11584:22;11563:53;:::i;:::-;11553:63;;11509:117;11665:2;11691:50;11733:7;11724:6;11713:9;11709:22;11691:50;:::i;:::-;11681:60;;11636:115;11290:468;;;;;:::o;11764:307::-;11825:4;11915:18;11907:6;11904:30;11901:56;;;11937:18;;:::i;:::-;11901:56;11975:29;11997:6;11975:29;:::i;:::-;11967:37;;12059:4;12053;12049:15;12041:23;;11764:307;;;:::o;12077:423::-;12154:5;12179:65;12195:48;12236:6;12195:48;:::i;:::-;12179:65;:::i;:::-;12170:74;;12267:6;12260:5;12253:21;12305:4;12298:5;12294:16;12343:3;12334:6;12329:3;12325:16;12322:25;12319:112;;;12350:79;;:::i;:::-;12319:112;12440:54;12487:6;12482:3;12477;12440:54;:::i;:::-;12160:340;12077:423;;;;;:::o;12519:338::-;12574:5;12623:3;12616:4;12608:6;12604:17;12600:27;12590:122;;12631:79;;:::i;:::-;12590:122;12748:6;12735:20;12773:78;12847:3;12839:6;12832:4;12824:6;12820:17;12773:78;:::i;:::-;12764:87;;12580:277;12519:338;;;;:::o;12863:943::-;12958:6;12966;12974;12982;13031:3;13019:9;13010:7;13006:23;13002:33;12999:120;;;13038:79;;:::i;:::-;12999:120;13158:1;13183:53;13228:7;13219:6;13208:9;13204:22;13183:53;:::i;:::-;13173:63;;13129:117;13285:2;13311:53;13356:7;13347:6;13336:9;13332:22;13311:53;:::i;:::-;13301:63;;13256:118;13413:2;13439:53;13484:7;13475:6;13464:9;13460:22;13439:53;:::i;:::-;13429:63;;13384:118;13569:2;13558:9;13554:18;13541:32;13600:18;13592:6;13589:30;13586:117;;;13622:79;;:::i;:::-;13586:117;13727:62;13781:7;13772:6;13761:9;13757:22;13727:62;:::i;:::-;13717:72;;13512:287;12863:943;;;;;;;:::o;13812:117::-;13921:1;13918;13911:12;13935:117;14044:1;14041;14034:12;14075:568;14148:8;14158:6;14208:3;14201:4;14193:6;14189:17;14185:27;14175:122;;14216:79;;:::i;:::-;14175:122;14329:6;14316:20;14306:30;;14359:18;14351:6;14348:30;14345:117;;;14381:79;;:::i;:::-;14345:117;14495:4;14487:6;14483:17;14471:29;;14549:3;14541:4;14533:6;14529:17;14519:8;14515:32;14512:41;14509:128;;;14556:79;;:::i;:::-;14509:128;14075:568;;;;;:::o;14649:700::-;14742:6;14750;14758;14807:2;14795:9;14786:7;14782:23;14778:32;14775:119;;;14813:79;;:::i;:::-;14775:119;14933:1;14958:51;15001:7;14992:6;14981:9;14977:22;14958:51;:::i;:::-;14948:61;;14904:115;15086:2;15075:9;15071:18;15058:32;15117:18;15109:6;15106:30;15103:117;;;15139:79;;:::i;:::-;15103:117;15252:80;15324:7;15315:6;15304:9;15300:22;15252:80;:::i;:::-;15234:98;;;;15029:313;14649:700;;;;;:::o;15355:115::-;15440:23;15457:5;15440:23;:::i;:::-;15435:3;15428:36;15355:115;;:::o;15476:218::-;15567:4;15605:2;15594:9;15590:18;15582:26;;15618:69;15684:1;15673:9;15669:17;15660:6;15618:69;:::i;:::-;15476:218;;;;:::o;15700:474::-;15768:6;15776;15825:2;15813:9;15804:7;15800:23;15796:32;15793:119;;;15831:79;;:::i;:::-;15793:119;15951:1;15976:53;16021:7;16012:6;16001:9;15997:22;15976:53;:::i;:::-;15966:63;;15922:117;16078:2;16104:53;16149:7;16140:6;16129:9;16125:22;16104:53;:::i;:::-;16094:63;;16049:118;15700:474;;;;;:::o;16180:182::-;16320:34;16316:1;16308:6;16304:14;16297:58;16180:182;:::o;16368:366::-;16510:3;16531:67;16595:2;16590:3;16531:67;:::i;:::-;16524:74;;16607:93;16696:3;16607:93;:::i;:::-;16725:2;16720:3;16716:12;16709:19;;16368:366;;;:::o;16740:419::-;16906:4;16944:2;16933:9;16929:18;16921:26;;16993:9;16987:4;16983:20;16979:1;16968:9;16964:17;16957:47;17021:131;17147:4;17021:131;:::i;:::-;17013:139;;16740:419;;;:::o;17165:180::-;17213:77;17210:1;17203:88;17310:4;17307:1;17300:15;17334:4;17331:1;17324:15;17351:320;17395:6;17432:1;17426:4;17422:12;17412:22;;17479:1;17473:4;17469:12;17500:18;17490:81;;17556:4;17548:6;17544:17;17534:27;;17490:81;17618:2;17610:6;17607:14;17587:18;17584:38;17581:84;;17637:18;;:::i;:::-;17581:84;17402:269;17351:320;;;:::o;17677:141::-;17726:4;17749:3;17741:11;;17772:3;17769:1;17762:14;17806:4;17803:1;17793:18;17785:26;;17677:141;;;:::o;17824:93::-;17861:6;17908:2;17903;17896:5;17892:14;17888:23;17878:33;;17824:93;;;:::o;17923:107::-;17967:8;18017:5;18011:4;18007:16;17986:37;;17923:107;;;;:::o;18036:393::-;18105:6;18155:1;18143:10;18139:18;18178:97;18208:66;18197:9;18178:97;:::i;:::-;18296:39;18326:8;18315:9;18296:39;:::i;:::-;18284:51;;18368:4;18364:9;18357:5;18353:21;18344:30;;18417:4;18407:8;18403:19;18396:5;18393:30;18383:40;;18112:317;;18036:393;;;;;:::o;18435:60::-;18463:3;18484:5;18477:12;;18435:60;;;:::o;18501:142::-;18551:9;18584:53;18602:34;18611:24;18629:5;18611:24;:::i;:::-;18602:34;:::i;:::-;18584:53;:::i;:::-;18571:66;;18501:142;;;:::o;18649:75::-;18692:3;18713:5;18706:12;;18649:75;;;:::o;18730:269::-;18840:39;18871:7;18840:39;:::i;:::-;18901:91;18950:41;18974:16;18950:41;:::i;:::-;18942:6;18935:4;18929:11;18901:91;:::i;:::-;18895:4;18888:105;18806:193;18730:269;;;:::o;19005:73::-;19050:3;19005:73;:::o;19084:189::-;19161:32;;:::i;:::-;19202:65;19260:6;19252;19246:4;19202:65;:::i;:::-;19137:136;19084:189;;:::o;19279:186::-;19339:120;19356:3;19349:5;19346:14;19339:120;;;19410:39;19447:1;19440:5;19410:39;:::i;:::-;19383:1;19376:5;19372:13;19363:22;;19339:120;;;19279:186;;:::o;19471:543::-;19572:2;19567:3;19564:11;19561:446;;;19606:38;19638:5;19606:38;:::i;:::-;19690:29;19708:10;19690:29;:::i;:::-;19680:8;19676:44;19873:2;19861:10;19858:18;19855:49;;;19894:8;19879:23;;19855:49;19917:80;19973:22;19991:3;19973:22;:::i;:::-;19963:8;19959:37;19946:11;19917:80;:::i;:::-;19576:431;;19561:446;19471:543;;;:::o;20020:117::-;20074:8;20124:5;20118:4;20114:16;20093:37;;20020:117;;;;:::o;20143:169::-;20187:6;20220:51;20268:1;20264:6;20256:5;20253:1;20249:13;20220:51;:::i;:::-;20216:56;20301:4;20295;20291:15;20281:25;;20194:118;20143:169;;;;:::o;20317:295::-;20393:4;20539:29;20564:3;20558:4;20539:29;:::i;:::-;20531:37;;20601:3;20598:1;20594:11;20588:4;20585:21;20577:29;;20317:295;;;;:::o;20617:1395::-;20734:37;20767:3;20734:37;:::i;:::-;20836:18;20828:6;20825:30;20822:56;;;20858:18;;:::i;:::-;20822:56;20902:38;20934:4;20928:11;20902:38;:::i;:::-;20987:67;21047:6;21039;21033:4;20987:67;:::i;:::-;21081:1;21105:4;21092:17;;21137:2;21129:6;21126:14;21154:1;21149:618;;;;21811:1;21828:6;21825:77;;;21877:9;21872:3;21868:19;21862:26;21853:35;;21825:77;21928:67;21988:6;21981:5;21928:67;:::i;:::-;21922:4;21915:81;21784:222;21119:887;;21149:618;21201:4;21197:9;21189:6;21185:22;21235:37;21267:4;21235:37;:::i;:::-;21294:1;21308:208;21322:7;21319:1;21316:14;21308:208;;;21401:9;21396:3;21392:19;21386:26;21378:6;21371:42;21452:1;21444:6;21440:14;21430:24;;21499:2;21488:9;21484:18;21471:31;;21345:4;21342:1;21338:12;21333:17;;21308:208;;;21544:6;21535:7;21532:19;21529:179;;;21602:9;21597:3;21593:19;21587:26;21645:48;21687:4;21679:6;21675:17;21664:9;21645:48;:::i;:::-;21637:6;21630:64;21552:156;21529:179;21754:1;21750;21742:6;21738:14;21734:22;21728:4;21721:36;21156:611;;;21119:887;;20709:1303;;;20617:1395;;:::o;22018:332::-;22139:4;22177:2;22166:9;22162:18;22154:26;;22190:71;22258:1;22247:9;22243:17;22234:6;22190:71;:::i;:::-;22271:72;22339:2;22328:9;22324:18;22315:6;22271:72;:::i;:::-;22018:332;;;;;:::o;22356:137::-;22410:5;22441:6;22435:13;22426:22;;22457:30;22481:5;22457:30;:::i;:::-;22356:137;;;;:::o;22499:345::-;22566:6;22615:2;22603:9;22594:7;22590:23;22586:32;22583:119;;;22621:79;;:::i;:::-;22583:119;22741:1;22766:61;22819:7;22810:6;22799:9;22795:22;22766:61;:::i;:::-;22756:71;;22712:125;22499:345;;;;:::o;22850:180::-;22898:77;22895:1;22888:88;22995:4;22992:1;22985:15;23019:4;23016:1;23009:15;23036:193;23075:3;23094:19;23111:1;23094:19;:::i;:::-;23089:24;;23127:19;23144:1;23127:19;:::i;:::-;23122:24;;23169:1;23166;23162:9;23155:16;;23192:6;23187:3;23184:15;23181:41;;;23202:18;;:::i;:::-;23181:41;23036:193;;;;:::o;23235:169::-;23375:21;23371:1;23363:6;23359:14;23352:45;23235:169;:::o;23410:366::-;23552:3;23573:67;23637:2;23632:3;23573:67;:::i;:::-;23566:74;;23649:93;23738:3;23649:93;:::i;:::-;23767:2;23762:3;23758:12;23751:19;;23410:366;;;:::o;23782:419::-;23948:4;23986:2;23975:9;23971:18;23963:26;;24035:9;24029:4;24025:20;24021:1;24010:9;24006:17;23999:47;24063:131;24189:4;24063:131;:::i;:::-;24055:139;;23782:419;;;:::o;24207:234::-;24347:34;24343:1;24335:6;24331:14;24324:58;24416:17;24411:2;24403:6;24399:15;24392:42;24207:234;:::o;24447:366::-;24589:3;24610:67;24674:2;24669:3;24610:67;:::i;:::-;24603:74;;24686:93;24775:3;24686:93;:::i;:::-;24804:2;24799:3;24795:12;24788:19;;24447:366;;;:::o;24819:419::-;24985:4;25023:2;25012:9;25008:18;25000:26;;25072:9;25066:4;25062:20;25058:1;25047:9;25043:17;25036:47;25100:131;25226:4;25100:131;:::i;:::-;25092:139;;24819:419;;;:::o;25244:148::-;25346:11;25383:3;25368:18;;25244:148;;;;:::o;25398:390::-;25504:3;25532:39;25565:5;25532:39;:::i;:::-;25587:89;25669:6;25664:3;25587:89;:::i;:::-;25580:96;;25685:65;25743:6;25738:3;25731:4;25724:5;25720:16;25685:65;:::i;:::-;25775:6;25770:3;25766:16;25759:23;;25508:280;25398:390;;;;:::o;25818:874::-;25921:3;25958:5;25952:12;25987:36;26013:9;25987:36;:::i;:::-;26039:89;26121:6;26116:3;26039:89;:::i;:::-;26032:96;;26159:1;26148:9;26144:17;26175:1;26170:166;;;;26350:1;26345:341;;;;26137:549;;26170:166;26254:4;26250:9;26239;26235:25;26230:3;26223:38;26316:6;26309:14;26302:22;26294:6;26290:35;26285:3;26281:45;26274:52;;26170:166;;26345:341;26412:38;26444:5;26412:38;:::i;:::-;26472:1;26486:154;26500:6;26497:1;26494:13;26486:154;;;26574:7;26568:14;26564:1;26559:3;26555:11;26548:35;26624:1;26615:7;26611:15;26600:26;;26522:4;26519:1;26515:12;26510:17;;26486:154;;;26669:6;26664:3;26660:16;26653:23;;26352:334;;26137:549;;25925:767;;25818:874;;;;:::o;26698:589::-;26923:3;26945:95;27036:3;27027:6;26945:95;:::i;:::-;26938:102;;27057:95;27148:3;27139:6;27057:95;:::i;:::-;27050:102;;27169:92;27257:3;27248:6;27169:92;:::i;:::-;27162:99;;27278:3;27271:10;;26698:589;;;;;;:::o;27293:410::-;27333:7;27356:20;27374:1;27356:20;:::i;:::-;27351:25;;27390:20;27408:1;27390:20;:::i;:::-;27385:25;;27445:1;27442;27438:9;27467:30;27485:11;27467:30;:::i;:::-;27456:41;;27646:1;27637:7;27633:15;27630:1;27627:22;27607:1;27600:9;27580:83;27557:139;;27676:18;;:::i;:::-;27557:139;27341:362;27293:410;;;;:::o;27709:191::-;27749:3;27768:20;27786:1;27768:20;:::i;:::-;27763:25;;27802:20;27820:1;27802:20;:::i;:::-;27797:25;;27845:1;27842;27838:9;27831:16;;27866:3;27863:1;27860:10;27857:36;;;27873:18;;:::i;:::-;27857:36;27709:191;;;;:::o;27906:180::-;27954:77;27951:1;27944:88;28051:4;28048:1;28041:15;28075:4;28072:1;28065:15;28092:233;28131:3;28154:24;28172:5;28154:24;:::i;:::-;28145:33;;28200:66;28193:5;28190:77;28187:103;;28270:18;;:::i;:::-;28187:103;28317:1;28310:5;28306:13;28299:20;;28092:233;;;:::o;28331:188::-;28369:3;28388:18;28404:1;28388:18;:::i;:::-;28383:23;;28420:18;28436:1;28420:18;:::i;:::-;28415:23;;28461:1;28458;28454:9;28447:16;;28484:4;28479:3;28476:13;28473:39;;;28492:18;;:::i;:::-;28473:39;28331:188;;;;:::o;28525:178::-;28665:30;28661:1;28653:6;28649:14;28642:54;28525:178;:::o;28709:366::-;28851:3;28872:67;28936:2;28931:3;28872:67;:::i;:::-;28865:74;;28948:93;29037:3;28948:93;:::i;:::-;29066:2;29061:3;29057:12;29050:19;;28709:366;;;:::o;29081:419::-;29247:4;29285:2;29274:9;29270:18;29262:26;;29334:9;29328:4;29324:20;29320:1;29309:9;29305:17;29298:47;29362:131;29488:4;29362:131;:::i;:::-;29354:139;;29081:419;;;:::o;29506:173::-;29646:25;29642:1;29634:6;29630:14;29623:49;29506:173;:::o;29685:366::-;29827:3;29848:67;29912:2;29907:3;29848:67;:::i;:::-;29841:74;;29924:93;30013:3;29924:93;:::i;:::-;30042:2;30037:3;30033:12;30026:19;;29685:366;;;:::o;30057:419::-;30223:4;30261:2;30250:9;30246:18;30238:26;;30310:9;30304:4;30300:20;30296:1;30285:9;30281:17;30274:47;30338:131;30464:4;30338:131;:::i;:::-;30330:139;;30057:419;;;:::o;30482:169::-;30622:21;30618:1;30610:6;30606:14;30599:45;30482:169;:::o;30657:366::-;30799:3;30820:67;30884:2;30879:3;30820:67;:::i;:::-;30813:74;;30896:93;30985:3;30896:93;:::i;:::-;31014:2;31009:3;31005:12;30998:19;;30657:366;;;:::o;31029:419::-;31195:4;31233:2;31222:9;31218:18;31210:26;;31282:9;31276:4;31272:20;31268:1;31257:9;31253:17;31246:47;31310:131;31436:4;31310:131;:::i;:::-;31302:139;;31029:419;;;:::o;31454:191::-;31492:4;31512:18;31528:1;31512:18;:::i;:::-;31507:23;;31544:18;31560:1;31544:18;:::i;:::-;31539:23;;31586:1;31583;31579:9;31571:17;;31610:4;31604;31601:14;31598:40;;;31618:18;;:::i;:::-;31598:40;31454:191;;;;:::o;31651:225::-;31791:34;31787:1;31779:6;31775:14;31768:58;31860:8;31855:2;31847:6;31843:15;31836:33;31651:225;:::o;31882:366::-;32024:3;32045:67;32109:2;32104:3;32045:67;:::i;:::-;32038:74;;32121:93;32210:3;32121:93;:::i;:::-;32239:2;32234:3;32230:12;32223:19;;31882:366;;;:::o;32254:419::-;32420:4;32458:2;32447:9;32443:18;32435:26;;32507:9;32501:4;32497:20;32493:1;32482:9;32478:17;32471:47;32535:131;32661:4;32535:131;:::i;:::-;32527:139;;32254:419;;;:::o;32679:180::-;32727:77;32724:1;32717:88;32824:4;32821:1;32814:15;32848:4;32845:1;32838:15;32865:185;32905:1;32922:20;32940:1;32922:20;:::i;:::-;32917:25;;32956:20;32974:1;32956:20;:::i;:::-;32951:25;;32995:1;32985:35;;33000:18;;:::i;:::-;32985:35;33042:1;33039;33035:9;33030:14;;32865:185;;;;:::o;33056:194::-;33096:4;33116:20;33134:1;33116:20;:::i;:::-;33111:25;;33150:20;33168:1;33150:20;:::i;:::-;33145:25;;33194:1;33191;33187:9;33179:17;;33218:1;33212:4;33209:11;33206:37;;;33223:18;;:::i;:::-;33206:37;33056:194;;;;:::o;33256:176::-;33288:1;33305:20;33323:1;33305:20;:::i;:::-;33300:25;;33339:20;33357:1;33339:20;:::i;:::-;33334:25;;33378:1;33368:35;;33383:18;;:::i;:::-;33368:35;33424:1;33421;33417:9;33412:14;;33256:176;;;;:::o;33438:98::-;33489:6;33523:5;33517:12;33507:22;;33438:98;;;:::o;33542:168::-;33625:11;33659:6;33654:3;33647:19;33699:4;33694:3;33690:14;33675:29;;33542:168;;;;:::o;33716:373::-;33802:3;33830:38;33862:5;33830:38;:::i;:::-;33884:70;33947:6;33942:3;33884:70;:::i;:::-;33877:77;;33963:65;34021:6;34016:3;34009:4;34002:5;33998:16;33963:65;:::i;:::-;34053:29;34075:6;34053:29;:::i;:::-;34048:3;34044:39;34037:46;;33806:283;33716:373;;;;:::o;34095:640::-;34290:4;34328:3;34317:9;34313:19;34305:27;;34342:71;34410:1;34399:9;34395:17;34386:6;34342:71;:::i;:::-;34423:72;34491:2;34480:9;34476:18;34467:6;34423:72;:::i;:::-;34505;34573:2;34562:9;34558:18;34549:6;34505:72;:::i;:::-;34624:9;34618:4;34614:20;34609:2;34598:9;34594:18;34587:48;34652:76;34723:4;34714:6;34652:76;:::i;:::-;34644:84;;34095:640;;;;;;;:::o;34741:141::-;34797:5;34828:6;34822:13;34813:22;;34844:32;34870:5;34844:32;:::i;:::-;34741:141;;;;:::o;34888:349::-;34957:6;35006:2;34994:9;34985:7;34981:23;34977:32;34974:119;;;35012:79;;:::i;:::-;34974:119;35132:1;35157:63;35212:7;35203:6;35192:9;35188:22;35157:63;:::i;:::-;35147:73;;35103:127;34888:349;;;;:::o

Swarm Source

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