ETH Price: $2,988.31 (-2.06%)
Gas: 2 Gwei

Token

OnChainKevin (DERP)
 

Overview

Max Total Supply

571 DERP

Holders

103

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A
Filtered by Token Holder
beckerdom.eth
Balance
10 DERP
0x762c9b870d381631c93be4330894414c5bbc6716
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:
OnChainKevin

Compiler Version
v0.8.12+commit.f00d7308

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

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

// File: contracts/OnChainKevinLib.sol


pragma solidity ^0.8.12;

library OnChainKevinLib {
    string internal constant TABLE =
        "ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789+/";

    function encode(bytes memory data) internal pure returns (string memory) {
        if (data.length == 0) return "";

        // load the table into memory
        string memory table = TABLE;

        // multiply by 4/3 rounded up
        uint256 encodedLen = 4 * ((data.length + 2) / 3);

        // add some extra buffer at the end required for the writing
        string memory result = new string(encodedLen + 32);

        assembly {
            // set the actual output length
            mstore(result, encodedLen)

            // prepare the lookup table
            let tablePtr := add(table, 1)

            // input ptr
            let dataPtr := data
            let endPtr := add(dataPtr, mload(data))

            // result ptr, jump over length
            let resultPtr := add(result, 32)

            // run over the input, 3 bytes at a time
            for {

            } lt(dataPtr, endPtr) {

            } {
                dataPtr := add(dataPtr, 3)

                // read 3 bytes
                let input := mload(dataPtr)

                // write 4 characters
                mstore(
                    resultPtr,
                    shl(248, mload(add(tablePtr, and(shr(18, input), 0x3F))))
                )
                resultPtr := add(resultPtr, 1)
                mstore(
                    resultPtr,
                    shl(248, mload(add(tablePtr, and(shr(12, input), 0x3F))))
                )
                resultPtr := add(resultPtr, 1)
                mstore(
                    resultPtr,
                    shl(248, mload(add(tablePtr, and(shr(6, input), 0x3F))))
                )
                resultPtr := add(resultPtr, 1)
                mstore(
                    resultPtr,
                    shl(248, mload(add(tablePtr, and(input, 0x3F))))
                )
                resultPtr := add(resultPtr, 1)
            }

            // padding with '='
            switch mod(mload(data), 3)
            case 1 {
                mstore(sub(resultPtr, 2), shl(240, 0x3d3d))
            }
            case 2 {
                mstore(sub(resultPtr, 1), shl(248, 0x3d))
            }
        }

        return result;
    }

    /**
     * @dev Converts a `uint256` to its ASCII `string` decimal representation.
     */
    function toString(uint256 value) internal pure returns (string memory) {
        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);
    }

    function parseInt(string memory _a)
        internal
        pure
        returns (uint8 _parsedInt)
    {
        bytes memory bresult = bytes(_a);
        uint8 mint = 0;
        for (uint8 i = 0; i < bresult.length; i++) {
            if (
                (uint8(uint8(bresult[i])) >= 48) &&
                (uint8(uint8(bresult[i])) <= 57)
            ) {
                mint *= 10;
                mint += uint8(bresult[i]) - 48;
            }
        }
        return mint;
    }

    function _substring(
        string memory str,
        uint256 startIndex,
        uint256 endIndex
    ) internal pure returns (string memory) {
        bytes memory strBytes = bytes(str);
        bytes memory result = new bytes(endIndex - startIndex);
        for (uint256 i = startIndex; i < endIndex; i++) {
            result[i - startIndex] = strBytes[i];
        }
        return string(result);
    }

    function isContract(address account) internal view returns (bool) {
        // This method relies on extcodesize, which returns 0 for contracts in
        // construction, since the code is only stored at the end of the
        // constructor execution.

        uint256 size;
        assembly {
            size := extcodesize(account)
        }
        return size > 0;
    }
}
// File: @openzeppelin/contracts/utils/Counters.sol


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

pragma solidity ^0.8.0;

/**
 * @title Counters
 * @author Matt Condon (@shrugs)
 * @dev Provides counters that can only be incremented, decremented or reset. This can be used e.g. to track the number
 * of elements in a mapping, issuing ERC721 ids, or counting request ids.
 *
 * Include with `using Counters for Counters.Counter;`
 */
library Counters {
    struct Counter {
        // This variable should never be directly accessed by users of the library: interactions must be restricted to
        // the library's function. As of Solidity v0.5.2, this cannot be enforced, though there is a proposal to add
        // this feature: see https://github.com/ethereum/solidity/issues/4637
        uint256 _value; // default: 0
    }

    function current(Counter storage counter) internal view returns (uint256) {
        return counter._value;
    }

    function increment(Counter storage counter) internal {
        unchecked {
            counter._value += 1;
        }
    }

    function decrement(Counter storage counter) internal {
        uint256 value = counter._value;
        require(value > 0, "Counter: decrement overflow");
        unchecked {
            counter._value = value - 1;
        }
    }

    function reset(Counter storage counter) internal {
        counter._value = 0;
    }
}

// File: @openzeppelin/contracts/security/ReentrancyGuard.sol


// OpenZeppelin Contracts v4.4.1 (security/ReentrancyGuard.sol)

pragma solidity ^0.8.0;

/**
 * @dev Contract module that helps prevent reentrant calls to a function.
 *
 * Inheriting from `ReentrancyGuard` will make the {nonReentrant} modifier
 * available, which can be applied to functions to make sure there are no nested
 * (reentrant) calls to them.
 *
 * Note that because there is a single `nonReentrant` guard, functions marked as
 * `nonReentrant` may not call one another. This can be worked around by making
 * those functions `private`, and then adding `external` `nonReentrant` entry
 * points to them.
 *
 * TIP: If you would like to learn more about reentrancy and alternative ways
 * to protect against it, check out our blog post
 * https://blog.openzeppelin.com/reentrancy-after-istanbul/[Reentrancy After Istanbul].
 */
abstract contract ReentrancyGuard {
    // Booleans are more expensive than uint256 or any type that takes up a full
    // word because each write operation emits an extra SLOAD to first read the
    // slot's contents, replace the bits taken up by the boolean, and then write
    // back. This is the compiler's defense against contract upgrades and
    // pointer aliasing, and it cannot be disabled.

    // The values being non-zero value makes deployment a bit more expensive,
    // but in exchange the refund on every call to nonReentrant will be lower in
    // amount. Since refunds are capped to a percentage of the total
    // transaction's gas, it is best to keep them low in cases like this one, to
    // increase the likelihood of the full refund coming into effect.
    uint256 private constant _NOT_ENTERED = 1;
    uint256 private constant _ENTERED = 2;

    uint256 private _status;

    constructor() {
        _status = _NOT_ENTERED;
    }

    /**
     * @dev Prevents a contract from calling itself, directly or indirectly.
     * Calling a `nonReentrant` function from another `nonReentrant`
     * function is not supported. It is possible to prevent this from happening
     * by making the `nonReentrant` function external, and making it call a
     * `private` function that does the actual work.
     */
    modifier nonReentrant() {
        // On the first call to nonReentrant, _notEntered will be true
        require(_status != _ENTERED, "ReentrancyGuard: reentrant call");

        // Any calls to nonReentrant after this point will fail
        _status = _ENTERED;

        _;

        // By storing the original value once again, a refund is triggered (see
        // https://eips.ethereum.org/EIPS/eip-2200)
        _status = _NOT_ENTERED;
    }
}

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


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

pragma solidity ^0.8.0;

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

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

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

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

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

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


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

pragma solidity ^0.8.0;

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

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

// File: @openzeppelin/contracts/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/IERC721Enumerable.sol


// OpenZeppelin Contracts (last updated v4.5.0) (token/ERC721/extensions/IERC721Enumerable.sol)

pragma solidity ^0.8.0;


/**
 * @title ERC-721 Non-Fungible Token Standard, optional enumeration extension
 * @dev See https://eips.ethereum.org/EIPS/eip-721
 */
interface IERC721Enumerable is IERC721 {
    /**
     * @dev Returns the total amount of tokens stored by the contract.
     */
    function totalSupply() external view returns (uint256);

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

    /**
     * @dev Returns a token ID at a given `index` of all the tokens stored by the contract.
     * Use along with {totalSupply} to enumerate all tokens.
     */
    function tokenByIndex(uint256 index) external view returns (uint256);
}

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


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

pragma solidity ^0.8.0;


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

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

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

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


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

pragma solidity ^0.8.0;








/**
 * @dev Implementation of https://eips.ethereum.org/EIPS/eip-721[ERC721] Non-Fungible Token Standard, including
 * the Metadata extension, but not including the Enumerable extension, which is available separately as
 * {ERC721Enumerable}.
 */
contract ERC721 is Context, ERC165, IERC721, IERC721Metadata {
    using Address for address;
    using Strings for uint256;

    // Token name
    string private _name;

    // Token symbol
    string private _symbol;

    // Mapping from token ID to owner address
    mapping(uint256 => address) private _owners;

    // Mapping owner address to token count
    mapping(address => uint256) private _balances;

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

    /**
     * @dev Initializes the contract by setting a `name` and a `symbol` to the token collection.
     */
    constructor(string memory name_, string memory symbol_) {
        _name = name_;
        _symbol = symbol_;
    }

    /**
     * @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 virtual override returns (uint256) {
        require(owner != address(0), "ERC721: balance query for the zero address");
        return _balances[owner];
    }

    /**
     * @dev See {IERC721-ownerOf}.
     */
    function ownerOf(uint256 tokenId) public view virtual override returns (address) {
        address owner = _owners[tokenId];
        require(owner != address(0), "ERC721: owner query for nonexistent token");
        return owner;
    }

    /**
     * @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) {
        require(_exists(tokenId), "ERC721Metadata: URI query for nonexistent token");

        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 virtual override {
        address owner = ERC721.ownerOf(tokenId);
        require(to != owner, "ERC721: approval to current owner");

        require(
            _msgSender() == owner || isApprovedForAll(owner, _msgSender()),
            "ERC721: approve caller is not owner nor approved for all"
        );

        _approve(to, tokenId);
    }

    /**
     * @dev See {IERC721-getApproved}.
     */
    function getApproved(uint256 tokenId) public view virtual override returns (address) {
        require(_exists(tokenId), "ERC721: approved query for nonexistent token");

        return _tokenApprovals[tokenId];
    }

    /**
     * @dev See {IERC721-setApprovalForAll}.
     */
    function setApprovalForAll(address operator, bool approved) public virtual override {
        _setApprovalForAll(_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 {
        //solhint-disable-next-line max-line-length
        require(_isApprovedOrOwner(_msgSender(), tokenId), "ERC721: transfer caller is not owner nor approved");

        _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 {
        require(_isApprovedOrOwner(_msgSender(), tokenId), "ERC721: transfer caller is not owner nor approved");
        _safeTransfer(from, to, tokenId, _data);
    }

    /**
     * @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.
     *
     * `_data` is additional data, it has no specified format and it is sent in call to `to`.
     *
     * This internal function is equivalent to {safeTransferFrom}, and can be used to e.g.
     * implement alternative mechanisms to perform token transfer, such as signature-based.
     *
     * Requirements:
     *
     * - `from` cannot be the zero address.
     * - `to` cannot be the zero address.
     * - `tokenId` token must exist and be owned by `from`.
     * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer.
     *
     * Emits a {Transfer} event.
     */
    function _safeTransfer(
        address from,
        address to,
        uint256 tokenId,
        bytes memory _data
    ) internal virtual {
        _transfer(from, to, tokenId);
        require(_checkOnERC721Received(from, to, tokenId, _data), "ERC721: transfer to non ERC721Receiver implementer");
    }

    /**
     * @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`),
     * and stop existing when they are burned (`_burn`).
     */
    function _exists(uint256 tokenId) internal view virtual returns (bool) {
        return _owners[tokenId] != address(0);
    }

    /**
     * @dev Returns whether `spender` is allowed to manage `tokenId`.
     *
     * Requirements:
     *
     * - `tokenId` must exist.
     */
    function _isApprovedOrOwner(address spender, uint256 tokenId) internal view virtual returns (bool) {
        require(_exists(tokenId), "ERC721: operator query for nonexistent token");
        address owner = ERC721.ownerOf(tokenId);
        return (spender == owner || getApproved(tokenId) == spender || isApprovedForAll(owner, spender));
    }

    /**
     * @dev Safely mints `tokenId` and transfers it to `to`.
     *
     * Requirements:
     *
     * - `tokenId` must not exist.
     * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer.
     *
     * Emits a {Transfer} event.
     */
    function _safeMint(address to, uint256 tokenId) internal virtual {
        _safeMint(to, tokenId, "");
    }

    /**
     * @dev Same as {xref-ERC721-_safeMint-address-uint256-}[`_safeMint`], with an additional `data` parameter which is
     * forwarded in {IERC721Receiver-onERC721Received} to contract recipients.
     */
    function _safeMint(
        address to,
        uint256 tokenId,
        bytes memory _data
    ) internal virtual {
        _mint(to, tokenId);
        require(
            _checkOnERC721Received(address(0), to, tokenId, _data),
            "ERC721: transfer to non ERC721Receiver implementer"
        );
    }

    /**
     * @dev Mints `tokenId` and transfers it to `to`.
     *
     * WARNING: Usage of this method is discouraged, use {_safeMint} whenever possible
     *
     * Requirements:
     *
     * - `tokenId` must not exist.
     * - `to` cannot be the zero address.
     *
     * Emits a {Transfer} event.
     */
    function _mint(address to, uint256 tokenId) internal virtual {
        require(to != address(0), "ERC721: mint to the zero address");
        require(!_exists(tokenId), "ERC721: token already minted");

        _beforeTokenTransfer(address(0), to, tokenId);

        _balances[to] += 1;
        _owners[tokenId] = to;

        emit Transfer(address(0), to, tokenId);

        _afterTokenTransfer(address(0), to, tokenId);
    }

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

        _beforeTokenTransfer(owner, address(0), tokenId);

        // Clear approvals
        _approve(address(0), tokenId);

        _balances[owner] -= 1;
        delete _owners[tokenId];

        emit Transfer(owner, address(0), tokenId);

        _afterTokenTransfer(owner, address(0), tokenId);
    }

    /**
     * @dev Transfers `tokenId` from `from` to `to`.
     *  As opposed to {transferFrom}, this imposes no restrictions on msg.sender.
     *
     * 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
    ) internal virtual {
        require(ERC721.ownerOf(tokenId) == from, "ERC721: transfer from incorrect owner");
        require(to != address(0), "ERC721: transfer to the zero address");

        _beforeTokenTransfer(from, to, tokenId);

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

        _balances[from] -= 1;
        _balances[to] += 1;
        _owners[tokenId] = to;

        emit Transfer(from, to, tokenId);

        _afterTokenTransfer(from, to, tokenId);
    }

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

    /**
     * @dev Approve `operator` to operate on all of `owner` tokens
     *
     * Emits a {ApprovalForAll} event.
     */
    function _setApprovalForAll(
        address owner,
        address operator,
        bool approved
    ) internal virtual {
        require(owner != operator, "ERC721: approve to caller");
        _operatorApprovals[owner][operator] = approved;
        emit ApprovalForAll(owner, operator, approved);
    }

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

    /**
     * @dev Hook that is called before any token transfer. This includes minting
     * and burning.
     *
     * 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, ``from``'s `tokenId` will be burned.
     * - `from` and `to` are never both zero.
     *
     * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks].
     */
    function _beforeTokenTransfer(
        address from,
        address to,
        uint256 tokenId
    ) internal virtual {}

    /**
     * @dev Hook that is called after any transfer of tokens. This includes
     * minting and burning.
     *
     * Calling conditions:
     *
     * - when `from` and `to` are both non-zero.
     * - `from` and `to` are never both zero.
     *
     * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks].
     */
    function _afterTokenTransfer(
        address from,
        address to,
        uint256 tokenId
    ) internal virtual {}
}

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


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

pragma solidity ^0.8.0;



/**
 * @dev This implements an optional extension of {ERC721} defined in the EIP that adds
 * enumerability of all the token ids in the contract as well as all token ids owned by each
 * account.
 */
abstract contract ERC721Enumerable is ERC721, IERC721Enumerable {
    // Mapping from owner to list of owned token IDs
    mapping(address => mapping(uint256 => uint256)) private _ownedTokens;

    // Mapping from token ID to index of the owner tokens list
    mapping(uint256 => uint256) private _ownedTokensIndex;

    // Array with all token ids, used for enumeration
    uint256[] private _allTokens;

    // Mapping from token id to position in the allTokens array
    mapping(uint256 => uint256) private _allTokensIndex;

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

    /**
     * @dev See {IERC721Enumerable-tokenOfOwnerByIndex}.
     */
    function tokenOfOwnerByIndex(address owner, uint256 index) public view virtual override returns (uint256) {
        require(index < ERC721.balanceOf(owner), "ERC721Enumerable: owner index out of bounds");
        return _ownedTokens[owner][index];
    }

    /**
     * @dev See {IERC721Enumerable-totalSupply}.
     */
    function totalSupply() public view virtual override returns (uint256) {
        return _allTokens.length;
    }

    /**
     * @dev See {IERC721Enumerable-tokenByIndex}.
     */
    function tokenByIndex(uint256 index) public view virtual override returns (uint256) {
        require(index < ERC721Enumerable.totalSupply(), "ERC721Enumerable: global index out of bounds");
        return _allTokens[index];
    }

    /**
     * @dev Hook that is called before any token transfer. This includes minting
     * and burning.
     *
     * 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, ``from``'s `tokenId` will be burned.
     * - `from` cannot be the zero address.
     * - `to` cannot be the zero address.
     *
     * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks].
     */
    function _beforeTokenTransfer(
        address from,
        address to,
        uint256 tokenId
    ) internal virtual override {
        super._beforeTokenTransfer(from, to, tokenId);

        if (from == address(0)) {
            _addTokenToAllTokensEnumeration(tokenId);
        } else if (from != to) {
            _removeTokenFromOwnerEnumeration(from, tokenId);
        }
        if (to == address(0)) {
            _removeTokenFromAllTokensEnumeration(tokenId);
        } else if (to != from) {
            _addTokenToOwnerEnumeration(to, tokenId);
        }
    }

    /**
     * @dev Private function to add a token to this extension's ownership-tracking data structures.
     * @param to address representing the new owner of the given token ID
     * @param tokenId uint256 ID of the token to be added to the tokens list of the given address
     */
    function _addTokenToOwnerEnumeration(address to, uint256 tokenId) private {
        uint256 length = ERC721.balanceOf(to);
        _ownedTokens[to][length] = tokenId;
        _ownedTokensIndex[tokenId] = length;
    }

    /**
     * @dev Private function to add a token to this extension's token tracking data structures.
     * @param tokenId uint256 ID of the token to be added to the tokens list
     */
    function _addTokenToAllTokensEnumeration(uint256 tokenId) private {
        _allTokensIndex[tokenId] = _allTokens.length;
        _allTokens.push(tokenId);
    }

    /**
     * @dev Private function to remove a token from this extension's ownership-tracking data structures. Note that
     * while the token is not assigned a new owner, the `_ownedTokensIndex` mapping is _not_ updated: this allows for
     * gas optimizations e.g. when performing a transfer operation (avoiding double writes).
     * This has O(1) time complexity, but alters the order of the _ownedTokens array.
     * @param from address representing the previous owner of the given token ID
     * @param tokenId uint256 ID of the token to be removed from the tokens list of the given address
     */
    function _removeTokenFromOwnerEnumeration(address from, uint256 tokenId) private {
        // To prevent a gap in from's tokens array, we store the last token in the index of the token to delete, and
        // then delete the last slot (swap and pop).

        uint256 lastTokenIndex = ERC721.balanceOf(from) - 1;
        uint256 tokenIndex = _ownedTokensIndex[tokenId];

        // When the token to delete is the last token, the swap operation is unnecessary
        if (tokenIndex != lastTokenIndex) {
            uint256 lastTokenId = _ownedTokens[from][lastTokenIndex];

            _ownedTokens[from][tokenIndex] = lastTokenId; // Move the last token to the slot of the to-delete token
            _ownedTokensIndex[lastTokenId] = tokenIndex; // Update the moved token's index
        }

        // This also deletes the contents at the last position of the array
        delete _ownedTokensIndex[tokenId];
        delete _ownedTokens[from][lastTokenIndex];
    }

    /**
     * @dev Private function to remove a token from this extension's token tracking data structures.
     * This has O(1) time complexity, but alters the order of the _allTokens array.
     * @param tokenId uint256 ID of the token to be removed from the tokens list
     */
    function _removeTokenFromAllTokensEnumeration(uint256 tokenId) private {
        // To prevent a gap in the tokens array, we store the last token in the index of the token to delete, and
        // then delete the last slot (swap and pop).

        uint256 lastTokenIndex = _allTokens.length - 1;
        uint256 tokenIndex = _allTokensIndex[tokenId];

        // When the token to delete is the last token, the swap operation is unnecessary. However, since this occurs so
        // rarely (when the last minted token is burnt) that we still do the swap here to avoid the gas cost of adding
        // an 'if' statement (like in _removeTokenFromOwnerEnumeration)
        uint256 lastTokenId = _allTokens[lastTokenIndex];

        _allTokens[tokenIndex] = lastTokenId; // Move the last token to the slot of the to-delete token
        _allTokensIndex[lastTokenId] = tokenIndex; // Update the moved token's index

        // This also deletes the contents at the last position of the array
        delete _allTokensIndex[tokenId];
        _allTokens.pop();
    }
}

// File: contracts/OnChainKevin.sol


pragma solidity ^0.8.12;






//  ______     __   __     ______     __  __     ______     __     __   __     __  __     ______     __   __   __     __   __    
// /\  __ \   /\ "-.\ \   /\  ___\   /\ \_\ \   /\  __ \   /\ \   /\ "-.\ \   /\ \/ /    /\  ___\   /\ \ / /  /\ \   /\ "-.\ \   
// \ \ \/\ \  \ \ \-.  \  \ \ \____  \ \  __ \  \ \  __ \  \ \ \  \ \ \-.  \  \ \  _"-.  \ \  __\   \ \ \'/   \ \ \  \ \ \-.  \  
//  \ \_____\  \ \_\\"\_\  \ \_____\  \ \_\ \_\  \ \_\ \_\  \ \_\  \ \_\\"\_\  \ \_\ \_\  \ \_____\  \ \__|    \ \_\  \ \_\\"\_\ 
//   \/_____/   \/_/ \/_/   \/_____/   \/_/\/_/   \/_/\/_/   \/_/   \/_/ \/_/   \/_/\/_/   \/_____/   \/_/      \/_/   \/_/ \/_/ 
                                                                                                                              


contract OnChainKevin is ERC721Enumerable, ReentrancyGuard {
    using OnChainKevinLib for uint8;
    using Counters for Counters.Counter;
    Counters.Counter private _tokenIds;
    Counters.Counter private _reservedTokenIds;

    mapping(string => bool) hashToMinted;
    mapping(uint256 => string) internal tokenIdToHash;
    mapping(address => uint256) public earlyAccessMintedCounts;
    mapping(address => uint256) private founderMintCountsRemaining;
    mapping(uint256 => string[][]) public traitTypes;

    //uint256s
    uint256 SEED_NONCE = 0;

    uint256 private constant MAX_KEVINS = 2000;
    uint256 private constant FOUNDERS_RESERVE_AMOUNT = 50;
    uint256 private constant FREE_EARLY_RESERVE_AMOUNT = 500;

    uint256 private constant MAX_PUBLIC_KEVINS = MAX_KEVINS - FOUNDERS_RESERVE_AMOUNT;
    uint256 private constant MINT_PRICE = 0.02 ether;
    uint256 private constant MAX_PER_MINT = 10;
    uint256 private constant MAX_PER_EARLY_ACCESS_ADDRESS = 10;
  
    string public baseURI = "https://onchainkevin.com/api/";
    uint256 public constant numLayers = 9;
    uint16[][numLayers] private TIERS;
    string[] private TRAIT_INDEX_NAME = [
        "Lasers",
        "Head Accessory",
        "Mouth",
        "Face Accessory",
        "Eyes",
        "Nose",
        "Shirt",
        "Skin",
        "Background"
    ];

    address _owner;

    constructor() ERC721("OnChainKevin", "DERP") {
        _owner = msg.sender;

        // *SHOUTOUT* to Anonymice and Chain Runners for the inspiration.

        //Lasers
        TIERS[0] = [2, 5, 10, 30, 40, 50, 1863];
        //Head Accessory
        TIERS[1] = [10, 15, 20, 35, 50, 60, 65, 70, 75, 80, 90, 95, 150, 170, 180, 190, 200, 215, 230];
        //Mouth
        TIERS[2] = [40, 80, 100, 120, 160, 200, 250, 300, 350, 400];
        //Face Accessory
        TIERS[3] = [10, 15, 20, 35, 50, 60, 70, 75, 80, 110, 115, 160, 220, 230, 240, 250, 260];
        //Eyes
        TIERS[4] = [200, 250, 280, 290, 300, 330, 350];
        //Nose
        TIERS[5] = [200, 300, 400, 500, 600];
        //Shirt
        TIERS[6] = [40, 45, 55, 65, 80, 85, 95, 100, 110, 115, 120, 150, 220, 230, 240, 250];
        //Skin
        TIERS[7] = [50, 750, 1200];
        //Background
        TIERS[8] = [10, 80, 100, 180, 200, 210, 220, 230, 240, 260, 270];
    }

    modifier whenPublicSaleActive() {
        require(isPublicSaleOpen(), "Public sale not open");
        _;
    }

    modifier whenEarlyAccessActive() {
        require(isEarlyAccessOpen(), "Early access not open");
        _;
    }

    /*
  __  __ _     _   _             ___             _   _             
 |  \/  (_)_ _| |_(_)_ _  __ _  | __|  _ _ _  __| |_(_)___ _ _  ___
 | |\/| | | ' \  _| | ' \/ _` | | _| || | ' \/ _|  _| / _ \ ' \(_-<
 |_|  |_|_|_||_\__|_|_||_\__, | |_| \_,_|_||_\__|\__|_\___/_||_/__/
                         |___/                                     
   */

    /**
     * @dev Converts a digit from 0 - 2000 into its corresponding rarity based on the given rarity tier.
     * @param _randinput The input from 0 - 2000 to use for rarity gen.
     * @param _rarityTier The tier to use.
     */
    function rarityGen(uint256 _randinput, uint8 _rarityTier)
        internal
        view
        returns (string memory)
    {
        uint16 currentLowerBound = 0;
        for (uint8 i = 0; i < TIERS[_rarityTier].length; i++) {
            uint16 thisPercentage = TIERS[_rarityTier][i];
            if (
                _randinput >= currentLowerBound &&
                _randinput < currentLowerBound + thisPercentage
            ) return i.toString();
            currentLowerBound = currentLowerBound + thisPercentage;
        }

        revert();
    }

    /**
     * @dev Generates a 18 digit hash from a tokenId, address, and random number.
     * @param _t The token id to be used within the hash.
     * @param _a The address to be used within the hash.
     * @param _c The custom nonce to be used within the hash.
     */
    function hash(
        uint256 _t,
        address _a,
        uint256 _c
    ) internal returns (string memory) {
        require(_c < 19, "Too many layers");

        // This will generate a 18 character string.
        string memory currentHash = "";

        for (uint8 i = 0; i < numLayers; i++) {
            SEED_NONCE++;
            uint16 _randinput = uint16(
                uint256(
                    keccak256(
                        abi.encodePacked(
                            block.timestamp,
                            block.difficulty,
                            _t,
                            _a,
                            _c,
                            SEED_NONCE
                        )
                    )
                ) % MAX_KEVINS
            );

            string memory rarity = rarityGen(_randinput, i);

            if (OnChainKevinLib.parseInt(rarity) < 10) {
                currentHash = string(
                    abi.encodePacked(currentHash, "0", rarity)
                );
            } else {
                currentHash = string(
                    abi.encodePacked(currentHash, rarity)
                );
            }

        }

        if (hashToMinted[currentHash]) return hash(_t, _a, _c + 1);

        return currentHash;
    }

    function mint(uint256 tokenId) internal {
        tokenIdToHash[tokenId] = hash(tokenId, msg.sender, 0);
        hashToMinted[tokenIdToHash[tokenId]] = true;

        _safeMint(msg.sender, tokenId);
    }

    function mintPublicSale(uint256 _count) external payable nonReentrant whenPublicSaleActive returns (uint256, uint256) {
        require(_count > 0 && _count <= MAX_PER_MINT, "Invalid Kevin count");
        require(_tokenIds.current() + _count <= MAX_PUBLIC_KEVINS, "All OnChainKevins are gone");
        require(_count * MINT_PRICE == msg.value, "Incorrect amount of ether sent");

        uint256 firstMintedId = _tokenIds.current() + 1;

        for (uint256 i = 0; i < _count; i++) {
            _tokenIds.increment();
            mint(_tokenIds.current());
        }

        return (firstMintedId, _count);
    }

    function mintEarlyAccess(uint256 _count) external payable nonReentrant whenEarlyAccessActive returns (uint256, uint256) {
        require(_count != 0, "Invalid Kevin count");
        require(_tokenIds.current() + _count <= FREE_EARLY_RESERVE_AMOUNT, "Early access has concluded.");

        uint256 userMintedAmount = earlyAccessMintedCounts[msg.sender] + _count;
        require(userMintedAmount <= MAX_PER_EARLY_ACCESS_ADDRESS, "Exceeded max early access mints allowed.");

        uint256 firstMintedId = _tokenIds.current() + 1;
        for (uint256 i = 0; i < _count; i++) {
            _tokenIds.increment();
            mint(_tokenIds.current());
        }
        earlyAccessMintedCounts[msg.sender] = userMintedAmount;
        return (firstMintedId, _count);
    }

    function allocateFounderMint(address _addr, uint256 _count) public onlyOwner nonReentrant {
        founderMintCountsRemaining[_addr] = _count;
    }

    function founderMint(uint256 _count) public nonReentrant returns (uint256, uint256) {
        require(_reservedTokenIds.current() + _count <= FOUNDERS_RESERVE_AMOUNT, "All reserved Kevins have been minted");
        require(founderMintCountsRemaining[msg.sender] >= _count, "You cannot mint this many reserved Kevins");

        uint256 firstMintedId = MAX_PUBLIC_KEVINS + _reservedTokenIds.current() + 1;
        for (uint256 i = 0; i < _count; i++) {
            _reservedTokenIds.increment();
            mint(MAX_PUBLIC_KEVINS + _reservedTokenIds.current());
        }
        founderMintCountsRemaining[msg.sender] -= _count;
        return (firstMintedId, _count);
    }

    /*
 ____     ___   ____  ___        _____  __ __  ____     __ ______  ____  ___   ____   _____
|    \   /  _] /    ||   \      |     ||  |  ||    \   /  ]      ||    |/   \ |    \ / ___/
|  D  ) /  [_ |  o  ||    \     |   __||  |  ||  _  | /  /|      | |  ||     ||  _  (   \_ 
|    / |    _]|     ||  D  |    |  |_  |  |  ||  |  |/  / |_|  |_| |  ||  O  ||  |  |\__  |
|    \ |   [_ |  _  ||     |    |   _] |  :  ||  |  /   \_  |  |   |  ||     ||  |  |/  \ |
|  .  \|     ||  |  ||     |    |  |   |     ||  |  \     | |  |   |  ||     ||  |  |\    |
|__|\_||_____||__|__||_____|    |__|    \__,_||__|__|\____| |__|  |____|\___/ |__|__| \___|
                                                                                           
*/

    function isPublicSaleOpen() public view returns (bool) {
        return _tokenIds.current() >= FREE_EARLY_RESERVE_AMOUNT && _tokenIds.current() < MAX_PUBLIC_KEVINS;
    }

    function isEarlyAccessOpen() public view returns (bool) {
        return !isPublicSaleOpen() && _reservedTokenIds.current() >= FOUNDERS_RESERVE_AMOUNT && _tokenIds.current() < MAX_PUBLIC_KEVINS;
    }

    function getRemainingFounderMints(address _addr) public view returns (uint256) {
        return founderMintCountsRemaining[_addr];
    }

    /**
     * @dev Hash to SVG function
     */
    function hashToSVG(string memory _hash)
        public
        view
        returns (string memory)
    {
        string memory svgString = '<svg id="kevin" width="100%" height="100%" version="1.1" viewBox="0 0 32 32" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink"><style>#kevin{background-image:url(data:image/png;base64,';
        uint8 thisTraitIndex;

        for (uint8 i = 0; i < numLayers - 1; i++) {
            thisTraitIndex = OnChainKevinLib.parseInt(
                OnChainKevinLib._substring(_hash, (i * 2), (i * 2) + 2)
            );
            svgString = string(
                abi.encodePacked(
                    svgString,
                    traitTypes[i][thisTraitIndex][1],
                    "),url(data:image/png;base64,"
                )
            );
        }

        thisTraitIndex = OnChainKevinLib.parseInt(
            OnChainKevinLib._substring(_hash, 16, 18)
        );

        return string(
            abi.encodePacked(
                "data:image/svg+xml;base64,",
                OnChainKevinLib.encode(
                    bytes(
                        string(
                            abi.encodePacked(
                                svgString,
                                traitTypes[8][thisTraitIndex][1],
                                ");background-repeat:no-repeat;background-size:contain;background-position:center;image-rendering:-webkit-optimize-contrast;-ms-interpolation-mode:nearest-neighbor;image-rendering:-moz-crisp-edges;image-rendering:pixelated;</style></svg>"
                            )
                        )
                    )
                )
            )
        );
    }

    /**
     * @dev Hash to metadata function
     */
    function hashToMetadata(string memory _hash)
        public
        view
        returns (string memory)
    {
        string memory metadataString;

        for (uint8 i = 0; i < numLayers; i++) {
            uint8 thisTraitIndex = OnChainKevinLib.parseInt(
                OnChainKevinLib._substring(_hash, (i * 2), (i * 2) + 2)
            );

            metadataString = string(
                abi.encodePacked(
                    metadataString,
                    '{"trait_type":"',
                    TRAIT_INDEX_NAME[i],
                    '","value":"',
                    traitTypes[i][thisTraitIndex][0],
                    '"}'
                )
            );

            if (i != 8)
                metadataString = string(abi.encodePacked(metadataString, ","));
        }

        return string(abi.encodePacked("[", metadataString, "]"));
    }

    function tokenURI(uint256 _tokenId)
        public
        view
        override
        returns (string memory)
    {
        require(_exists(_tokenId), "Invalid token");

        return string(abi.encodePacked(baseURI, OnChainKevinLib.toString(_tokenId), "?dna=", tokenIdToHash[_tokenId]));
    }

    /**
     * @dev Returns a hash for a given tokenId
     * @param _tokenId The tokenId to return the hash for.
     */
    function _tokenIdToHash(uint256 _tokenId)
        public
        view
        returns (string memory)
    {
        string memory tokenHash = tokenIdToHash[_tokenId];

        return tokenHash;
    }

    /**
     * @dev Returns the wallet of a given wallet. Mainly for ease for frontend devs.
     * @param _wallet The wallet to get the tokens of.
     */
    function walletOfOwner(address _wallet)
        public
        view
        returns (uint256[] memory)
    {
        uint256 tokenCount = balanceOf(_wallet);

        uint256[] memory tokensId = new uint256[](tokenCount);
        for (uint256 i; i < tokenCount; i++) {
            tokensId[i] = tokenOfOwnerByIndex(_wallet, i);
        }
        return tokensId;
    }

    /*

  ___   __    __  ____     ___  ____       _____  __ __  ____     __ ______  ____  ___   ____   _____
 /   \ |  |__|  ||    \   /  _]|    \     |     ||  |  ||    \   /  ]      ||    |/   \ |    \ / ___/
|     ||  |  |  ||  _  | /  [_ |  D  )    |   __||  |  ||  _  | /  /|      | |  ||     ||  _  (   \_ 
|  O  ||  |  |  ||  |  ||    _]|    /     |  |_  |  |  ||  |  |/  / |_|  |_| |  ||  O  ||  |  |\__  |
|     ||  `  '  ||  |  ||   [_ |    \     |   _] |  :  ||  |  /   \_  |  |   |  ||     ||  |  |/  \ |
|     | \      / |  |  ||     ||  .  \    |  |   |     ||  |  \     | |  |   |  ||     ||  |  |\    |
 \___/   \_/\_/  |__|__||_____||__|\_|    |__|    \__,_||__|__|\____| |__|  |____|\___/ |__|__| \___|
                                                                                                     


    */

    /**
     * @dev Change baseURI.
     */
    function changeBaseURI(string memory _baseURI) public onlyOwner {
        baseURI = _baseURI;
    }

    /**
     * @dev Add a trait type
     * @param _traitTypeIndex The trait type index
     * @param traits Array of traits to add
     */

    function addTraitType(uint256 _traitTypeIndex, string[][] memory traits)
        public
        onlyOwner
    {
        traitTypes[_traitTypeIndex] = traits;

        return;
    }

    /**
     * @dev Transfers ownership
     * @param _newOwner The new owner
     */
    function transferOwnership(address _newOwner) public onlyOwner {
        _owner = _newOwner;
    }

    /**
     * @dev Modifier to only allow owner to call functions
     */
    modifier onlyOwner() {
        require(_owner == msg.sender);
        _;
    }
}

Contract Security Audit

Contract ABI

[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"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":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[{"internalType":"uint256","name":"_tokenId","type":"uint256"}],"name":"_tokenIdToHash","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_traitTypeIndex","type":"uint256"},{"internalType":"string[][]","name":"traits","type":"string[][]"}],"name":"addTraitType","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_addr","type":"address"},{"internalType":"uint256","name":"_count","type":"uint256"}],"name":"allocateFounderMint","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":"baseURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"string","name":"_baseURI","type":"string"}],"name":"changeBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"earlyAccessMintedCounts","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_count","type":"uint256"}],"name":"founderMint","outputs":[{"internalType":"uint256","name":"","type":"uint256"},{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_addr","type":"address"}],"name":"getRemainingFounderMints","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"string","name":"_hash","type":"string"}],"name":"hashToMetadata","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"string","name":"_hash","type":"string"}],"name":"hashToSVG","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":"isEarlyAccessOpen","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"isPublicSaleOpen","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_count","type":"uint256"}],"name":"mintEarlyAccess","outputs":[{"internalType":"uint256","name":"","type":"uint256"},{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_count","type":"uint256"}],"name":"mintPublicSale","outputs":[{"internalType":"uint256","name":"","type":"uint256"},{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"numLayers","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"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":"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":"index","type":"uint256"}],"name":"tokenByIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"uint256","name":"index","type":"uint256"}],"name":"tokenOfOwnerByIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"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":"uint256","name":"","type":"uint256"},{"internalType":"uint256","name":"","type":"uint256"},{"internalType":"uint256","name":"","type":"uint256"}],"name":"traitTypes","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_wallet","type":"address"}],"name":"walletOfOwner","outputs":[{"internalType":"uint256[]","name":"","type":"uint256[]"}],"stateMutability":"view","type":"function"}]

600060125560c0604052601d60808190527f68747470733a2f2f6f6e636861696e6b6576696e2e636f6d2f6170692f00000060a090815262000045916013919062000603565b50604051806101200160405280604051806040016040528060068152602001654c617365727360d01b81525081526020016040518060400160405280600e81526020016d48656164204163636573736f727960901b81525081526020016040518060400160405280600581526020016409adeeae8d60db1b81525081526020016040518060400160405280600e81526020016d46616365204163636573736f727960901b8152508152602001604051806040016040528060048152602001634579657360e01b8152508152602001604051806040016040528060048152602001634e6f736560e01b81525081526020016040518060400160405280600581526020016414da1a5c9d60da1b81525081526020016040518060400160405280600481526020016329b5b4b760e11b81525081526020016040518060400160405280600a815260200169109858dad9dc9bdd5b9960b21b815250815250601d906009620001b292919062000692565b50348015620001c057600080fd5b50604080518082018252600c81526b27b721b430b4b725b2bb34b760a11b6020808301918252835180850190945260048452630444552560e41b908401528151919291620002119160009162000603565b5080516200022790600190602084019062000603565b50506001600a908155601e80546001600160a01b031916331781556040805160e081018252600281526005602082015290810192909252606082015260286080820152603260a082015261074760c08201526200028a91506014906007620006f2565b506040805161026081018252600a8152600f60208201526014918101919091526023606082015260326080820152603c60a0820152604160c0820152604660e0820152604b6101008201526050610120820152605a610140820152605f610160820152609661018082015260aa6101a082015260b46101c082015260be6101e082015260c861020082015260d761022082015260e6610240820152620003359060159060136200079d565b50604080516101408101825260288152605060208201526064918101919091526078606082015260a06080820181905260c89082015260fa60c082015261012c60e082015261015e6101008201526101906101208201526200039c90601690600a620006f2565b506040805161022081018252600a8152600f60208201526014918101919091526023606082015260326080820152603c60a080830191909152604660c0830152604b60e08301526050610100830152606e610120830152607361014083015261016082015260dc61018082015260e66101a082015260f06101c082015260fa6101e08201526101046102008201526200043a906017906011620006f2565b506040805160e08101825260c8815260fa602082015261011891810191909152610122606082015261012c608082015261014a60a082015261015e60c08201526200048a906018906007620006f2565b506040805160a08101825260c8815261012c6020820152610190918101919091526101f460608201526102586080820152620004cb906019906005620006f2565b50604080516102008101825260288152602d60208201526037918101919091526041606082015260506080820152605560a0820152605f60c0820152606460e0820152606e61010082015260736101208201526078610140820152609661016082015260dc61018082015260e66101a082015260f06101c082015260fa6101e08201526200055e90601a9060106200079d565b5060408051606081018252603281526102ee60208201526104b0918101919091526200058f90601b906003620006f2565b506040805161016081018252600a81526050602082015260649181019190915260b4606082015260c8608082015260d260a082015260dc60c082015260e660e082015260f061010082015261010461012082015261010e610140820152620005fc90601c90600b620006f2565b50620008bf565b828054620006119062000882565b90600052602060002090601f01602090048101928262000635576000855562000680565b82601f106200065057805160ff191683800117855562000680565b8280016001018555821562000680579182015b828111156200068057825182559160200191906001019062000663565b506200068e92915062000808565b5090565b828054828255906000526020600020908101928215620006e4579160200282015b82811115620006e45782518051620006d391849160209091019062000603565b5091602001919060010190620006b3565b506200068e9291506200081f565b82805482825590600052602060002090600f01601090048101928215620006805791602002820160005b838211156200075e57835183826101000a81548161ffff021916908361ffff16021790555092602001926002016020816001010492830192600103026200071c565b80156200078e5782816101000a81549061ffff02191690556002016020816001010492830192600103026200075e565b50506200068e92915062000808565b82805482825590600052602060002090600f01601090048101928215620006805791602002820160005b838211156200075e57835183826101000a81548161ffff021916908360ff1602179055509260200192600201602081600101049283019260010302620007c7565b5b808211156200068e576000815560010162000809565b808211156200068e57600062000836828262000840565b506001016200081f565b5080546200084e9062000882565b6000825580601f106200085f575050565b601f0160209004906000526020600020908101906200087f919062000808565b50565b600181811c908216806200089757607f821691505b60208210811415620008b957634e487b7160e01b600052602260045260246000fd5b50919050565b6137e380620008cf6000396000f3fe6080604052600436106101f85760003560e01c80636c0360eb1161010d578063a1e5995b116100a0578063c87b56dd1161006f578063c87b56dd146105af578063e985e9c5146105cf578063f252460114610618578063f2fde38b1461064e578063f42202e81461066e57600080fd5b8063a1e5995b1461053c578063a22cb4651461054f578063a966d4da1461056f578063b88d4fde1461058f57600080fd5b806389ce3074116100dc57806389ce3074146104c557806395bef055146104e557806395d89b41146104fa578063a08cdf661461050f57600080fd5b80636c0360eb146104505780636e88264b1461046557806370a08231146104855780637dd0dbb5146104a557600080fd5b806323b872dd11610190578063438b63001161015f578063438b63001461039b5780634f6ccce7146103c85780635a5e5d58146103e85780636352211e1461041057806366e338701461043057600080fd5b806323b872dd1461031b5780632f745c591461033b57806339a0c6f91461035b57806342842e0e1461037b57600080fd5b8063095ea7b3116101cc578063095ea7b3146102b05780630d0090ef146102d257806318160ddd146102e75780631a6949e31461030657600080fd5b80625ea307146101fd57806301ffc9a71461023357806306fdde0314610263578063081812fc14610278575b600080fd5b34801561020957600080fd5b5061021d610218366004612a95565b61068e565b60405161022a9190612b06565b60405180910390f35b34801561023f57600080fd5b5061025361024e366004612b2f565b610732565b604051901515815260200161022a565b34801561026f57600080fd5b5061021d61075d565b34801561028457600080fd5b50610298610293366004612a95565b6107ef565b6040516001600160a01b03909116815260200161022a565b3480156102bc57600080fd5b506102d06102cb366004612b68565b610889565b005b3480156102de57600080fd5b5061025361099f565b3480156102f357600080fd5b506008545b60405190815260200161022a565b34801561031257600080fd5b506102536109dd565b34801561032757600080fd5b506102d0610336366004612b92565b6109eb565b34801561034757600080fd5b506102f8610356366004612b68565b610a1c565b34801561036757600080fd5b506102d0610376366004612c8d565b610ab2565b34801561038757600080fd5b506102d0610396366004612b92565b610ae0565b3480156103a757600080fd5b506103bb6103b6366004612cc2565b610afb565b60405161022a9190612cdd565b3480156103d457600080fd5b506102f86103e3366004612a95565b610b9d565b6103fb6103f6366004612a95565b610c30565b6040805192835260208301919091520161022a565b34801561041c57600080fd5b5061029861042b366004612a95565b610e27565b34801561043c57600080fd5b5061021d61044b366004612c8d565b610e9e565b34801561045c57600080fd5b5061021d610fea565b34801561047157600080fd5b506102d0610480366004612d45565b611078565b34801561049157600080fd5b506102f86104a0366004612cc2565b6110ae565b3480156104b157600080fd5b506102d06104c0366004612b68565b611135565b3480156104d157600080fd5b5061021d6104e0366004612c8d565b611190565b3480156104f157600080fd5b506102f8600981565b34801561050657600080fd5b5061021d611340565b34801561051b57600080fd5b506102f861052a366004612cc2565b600f6020526000908152604090205481565b6103fb61054a366004612a95565b61134f565b34801561055b57600080fd5b506102d061056a366004612e7a565b61155b565b34801561057b57600080fd5b5061021d61058a366004612eb6565b611566565b34801561059b57600080fd5b506102d06105aa366004612ee2565b6115b7565b3480156105bb57600080fd5b5061021d6105ca366004612a95565b6115ef565b3480156105db57600080fd5b506102536105ea366004612f5e565b6001600160a01b03918216600090815260056020908152604080832093909416825291909152205460ff1690565b34801561062457600080fd5b506102f8610633366004612cc2565b6001600160a01b031660009081526010602052604090205490565b34801561065a57600080fd5b506102d0610669366004612cc2565b611688565b34801561067a57600080fd5b506103fb610689366004612a95565b6116c1565b6000818152600e60205260408120805460609291906106ac90612f91565b80601f01602080910402602001604051908101604052809291908181526020018280546106d890612f91565b80156107255780601f106106fa57610100808354040283529160200191610725565b820191906000526020600020905b81548152906001019060200180831161070857829003601f168201915b5093979650505050505050565b60006001600160e01b0319821663780e9d6360e01b148061075757506107578261187a565b92915050565b60606000805461076c90612f91565b80601f016020809104026020016040519081016040528092919081815260200182805461079890612f91565b80156107e55780601f106107ba576101008083540402835291602001916107e5565b820191906000526020600020905b8154815290600101906020018083116107c857829003601f168201915b5050505050905090565b6000818152600260205260408120546001600160a01b031661086d5760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b60648201526084015b60405180910390fd5b506000908152600460205260409020546001600160a01b031690565b600061089482610e27565b9050806001600160a01b0316836001600160a01b031614156109025760405162461bcd60e51b815260206004820152602160248201527f4552433732313a20617070726f76616c20746f2063757272656e74206f776e656044820152603960f91b6064820152608401610864565b336001600160a01b038216148061091e575061091e81336105ea565b6109905760405162461bcd60e51b815260206004820152603860248201527f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760448201527f6e6572206e6f7220617070726f76656420666f7220616c6c00000000000000006064820152608401610864565b61099a83836118ca565b505050565b60006109a96109dd565b1580156109bf575060326109bc600c5490565b10155b80156109d857506109d360326107d0612fe2565b600b54105b905090565b60006101f46109bc600b5490565b6109f53382611938565b610a115760405162461bcd60e51b815260040161086490612ff9565b61099a838383611a2f565b6000610a27836110ae565b8210610a895760405162461bcd60e51b815260206004820152602b60248201527f455243373231456e756d657261626c653a206f776e657220696e646578206f7560448201526a74206f6620626f756e647360a81b6064820152608401610864565b506001600160a01b03919091166000908152600660209081526040808320938352929052205490565b601e546001600160a01b03163314610ac957600080fd5b8051610adc9060139060208401906128b8565b5050565b61099a838383604051806020016040528060008152506115b7565b60606000610b08836110ae565b905060008167ffffffffffffffff811115610b2557610b25612bce565b604051908082528060200260200182016040528015610b4e578160200160208202803683370190505b50905060005b82811015610b9557610b668582610a1c565b828281518110610b7857610b7861304a565b602090810291909101015280610b8d81613060565b915050610b54565b509392505050565b6000610ba860085490565b8210610c0b5760405162461bcd60e51b815260206004820152602c60248201527f455243373231456e756d657261626c653a20676c6f62616c20696e646578206f60448201526b7574206f6620626f756e647360a01b6064820152608401610864565b60088281548110610c1e57610c1e61304a565b90600052602060002001549050919050565b6000806002600a541415610c565760405162461bcd60e51b81526004016108649061307b565b6002600a55610c636109dd565b610ca65760405162461bcd60e51b8152602060048201526014602482015273283ab13634b19039b0b632903737ba1037b832b760611b6044820152606401610864565b600083118015610cb75750600a8311155b610cf95760405162461bcd60e51b8152602060048201526013602482015272125b9d985b1a590812d95d9a5b8818dbdd5b9d606a1b6044820152606401610864565b610d0660326107d0612fe2565b83610d10600b5490565b610d1a91906130b2565b1115610d685760405162461bcd60e51b815260206004820152601a60248201527f416c6c204f6e436861696e4b6576696e732061726520676f6e650000000000006044820152606401610864565b34610d7a66470de4df820000856130ca565b14610dc75760405162461bcd60e51b815260206004820152601e60248201527f496e636f727265637420616d6f756e74206f662065746865722073656e7400006044820152606401610864565b6000610dd2600b5490565b610ddd9060016130b2565b905060005b84811015610e1b57610df8600b80546001019055565b610e09610e04600b5490565b611bd6565b80610e1381613060565b915050610de2565b506001600a5593915050565b6000818152600260205260408120546001600160a01b0316806107575760405162461bcd60e51b815260206004820152602960248201527f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460448201526832b73a103a37b5b2b760b91b6064820152608401610864565b60608060005b60098160ff161015610fc1576000610eea610ee586610ec48560026130e9565b60ff16610ed28660026130e9565b610edd906002613112565b60ff16611c57565b611d26565b905082601d8360ff1681548110610f0357610f0361304a565b90600052602060002001601160008560ff1681526020019081526020016000208360ff1681548110610f3757610f3761304a565b90600052602060002001600081548110610f5357610f5361304a565b90600052602060002001604051602001610f6f939291906131d1565b60405160208183030381529060405292508160ff16600814610fae5782604051602001610f9c919061323e565b60405160208183030381529060405292505b5080610fb981613263565b915050610ea4565b5080604051602001610fd39190613283565b604051602081830303815290604052915050919050565b60138054610ff790612f91565b80601f016020809104026020016040519081016040528092919081815260200182805461102390612f91565b80156110705780601f1061104557610100808354040283529160200191611070565b820191906000526020600020905b81548152906001019060200180831161105357829003601f168201915b505050505081565b601e546001600160a01b0316331461108f57600080fd5b6000828152601160209081526040909120825161099a9284019061293c565b60006001600160a01b0382166111195760405162461bcd60e51b815260206004820152602a60248201527f4552433732313a2062616c616e636520717565727920666f7220746865207a65604482015269726f206164647265737360b01b6064820152608401610864565b506001600160a01b031660009081526003602052604090205490565b601e546001600160a01b0316331461114c57600080fd5b6002600a54141561116f5760405162461bcd60e51b81526004016108649061307b565b6001600160a01b039091166000908152601060205260409020556001600a55565b6060600060405180610100016040528060d4815260200161369a60d4913990506000805b6111c060016009612fe2565b8160ff161015611272576111ea610ee5866111dc8460026130e9565b60ff16610ed28560026130e9565b915082601160008360ff1681526020019081526020016000208360ff16815481106112175761121761304a565b906000526020600020016001815481106112335761123361304a565b9060005260206000200160405160200161124e9291906132b7565b6040516020818303038152906040529250808061126a90613263565b9150506111b4565b50611283610ee58560106012611c57565b600860005260116020527f5fae251ae169e8e40026ce4ce85a026bc3adcccdc8459be361195e4cd924077f80549192506113189184919060ff85169081106112cd576112cd61304a565b906000526020600020016001815481106112e9576112e961304a565b90600052602060002001604051602001611304929190613304565b604051602081830303815290604052611ddc565b604051602001611328919061344a565b60405160208183030381529060405292505050919050565b60606001805461076c90612f91565b6000806002600a5414156113755760405162461bcd60e51b81526004016108649061307b565b6002600a5561138261099f565b6113c65760405162461bcd60e51b815260206004820152601560248201527422b0b9363c9030b1b1b2b9b9903737ba1037b832b760591b6044820152606401610864565b826114095760405162461bcd60e51b8152602060048201526013602482015272125b9d985b1a590812d95d9a5b8818dbdd5b9d606a1b6044820152606401610864565b6101f483611416600b5490565b61142091906130b2565b111561146e5760405162461bcd60e51b815260206004820152601b60248201527f4561726c79206163636573732068617320636f6e636c756465642e00000000006044820152606401610864565b336000908152600f60205260408120546114899085906130b2565b9050600a8111156114ed5760405162461bcd60e51b815260206004820152602860248201527f4578636565646564206d6178206561726c7920616363657373206d696e74732060448201526730b63637bbb2b21760c11b6064820152608401610864565b60006114f8600b5490565b6115039060016130b2565b905060005b8581101561153c5761151e600b80546001019055565b61152a610e04600b5490565b8061153481613060565b915050611508565b50336000908152600f60205260409020919091556001600a5593915050565b610adc338383611f44565b6011602052826000526040600020828154811061158257600080fd5b90600052602060002001818154811061159a57600080fd5b9060005260206000200160009250925050508054610ff790612f91565b6115c13383611938565b6115dd5760405162461bcd60e51b815260040161086490612ff9565b6115e984848484612013565b50505050565b6000818152600260205260409020546060906001600160a01b03166116465760405162461bcd60e51b815260206004820152600d60248201526c24b73b30b634b2103a37b5b2b760991b6044820152606401610864565b601361165183612046565b6000848152600e60209081526040918290209151611672949392910161348f565b6040516020818303038152906040529050919050565b601e546001600160a01b0316331461169f57600080fd5b601e80546001600160a01b0319166001600160a01b0392909216919091179055565b6000806002600a5414156116e75760405162461bcd60e51b81526004016108649061307b565b6002600a556032836116f8600c5490565b61170291906130b2565b111561175c5760405162461bcd60e51b8152602060048201526024808201527f416c6c207265736572766564204b6576696e732068617665206265656e206d696044820152631b9d195960e21b6064820152608401610864565b336000908152601060205260409020548311156117cd5760405162461bcd60e51b815260206004820152602960248201527f596f752063616e6e6f74206d696e742074686973206d616e79207265736572766044820152686564204b6576696e7360b81b6064820152608401610864565b60006117d8600c5490565b6117e560326107d0612fe2565b6117ef91906130b2565b6117fa9060016130b2565b905060005b8481101561184a57611815600c80546001019055565b611838611821600c5490565b61182e60326107d0612fe2565b610e0491906130b2565b8061184281613060565b9150506117ff565b50336000908152601060205260408120805486929061186a908490612fe2565b90915550506001600a5593915050565b60006001600160e01b031982166380ac58cd60e01b14806118ab57506001600160e01b03198216635b5e139f60e01b145b8061075757506301ffc9a760e01b6001600160e01b0319831614610757565b600081815260046020526040902080546001600160a01b0319166001600160a01b03841690811790915581906118ff82610e27565b6001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b6000818152600260205260408120546001600160a01b03166119b15760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b6064820152608401610864565b60006119bc83610e27565b9050806001600160a01b0316846001600160a01b031614806119f75750836001600160a01b03166119ec846107ef565b6001600160a01b0316145b80611a2757506001600160a01b0380821660009081526005602090815260408083209388168352929052205460ff165b949350505050565b826001600160a01b0316611a4282610e27565b6001600160a01b031614611aa65760405162461bcd60e51b815260206004820152602560248201527f4552433732313a207472616e736665722066726f6d20696e636f72726563742060448201526437bbb732b960d91b6064820152608401610864565b6001600160a01b038216611b085760405162461bcd60e51b8152602060048201526024808201527f4552433732313a207472616e7366657220746f20746865207a65726f206164646044820152637265737360e01b6064820152608401610864565b611b13838383612144565b611b1e6000826118ca565b6001600160a01b0383166000908152600360205260408120805460019290611b47908490612fe2565b90915550506001600160a01b0382166000908152600360205260408120805460019290611b759084906130b2565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b0386811691821790925591518493918716917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef91a4505050565b611be2813360006121fc565b6000828152600e602090815260409091208251611c0593919291909101906128b8565b506001600d600e6000848152602001908152602001600020604051611c2a91906134d0565b908152604051908190036020019020805491151560ff19909216919091179055611c5433826123b3565b50565b6060836000611c668585612fe2565b67ffffffffffffffff811115611c7e57611c7e612bce565b6040519080825280601f01601f191660200182016040528015611ca8576020820181803683370190505b509050845b84811015611d1a57828181518110611cc757611cc761304a565b01602001516001600160f81b03191682611ce18884612fe2565b81518110611cf157611cf161304a565b60200101906001600160f81b031916908160001a90535080611d1281613060565b915050611cad565b509150505b9392505050565b60008181805b82518160ff161015610b95576030838260ff1681518110611d4f57611d4f61304a565b016020015160f81c10801590611d8257506039838260ff1681518110611d7757611d7761304a565b016020015160f81c11155b15611dca57611d92600a836130e9565b91506030838260ff1681518110611dab57611dab61304a565b0160200151611dbd919060f81c6134dc565b611dc79083613112565b91505b80611dd481613263565b915050611d2c565b6060815160001415611dfc57505060408051602081019091526000815290565b600060405180606001604052806040815260200161376e6040913990506000600384516002611e2b91906130b2565b611e359190613515565b611e409060046130ca565b90506000611e4f8260206130b2565b67ffffffffffffffff811115611e6757611e67612bce565b6040519080825280601f01601f191660200182016040528015611e91576020820181803683370190505b509050818152600183018586518101602084015b81831015611eff5760039283018051603f601282901c811687015160f890811b8552600c83901c8216880151811b6001860152600683901c8216880151811b60028601529116860151901b93820193909352600401611ea5565b600389510660018114611f195760028114611f2a57611f36565b613d3d60f01b600119830152611f36565b603d60f81b6000198301525b509398975050505050505050565b816001600160a01b0316836001600160a01b03161415611fa65760405162461bcd60e51b815260206004820152601960248201527f4552433732313a20617070726f766520746f2063616c6c6572000000000000006044820152606401610864565b6001600160a01b03838116600081815260056020908152604080832094871680845294825291829020805460ff191686151590811790915591519182527f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a3505050565b61201e848484611a2f565b61202a848484846123cd565b6115e95760405162461bcd60e51b815260040161086490613529565b60608161206a5750506040805180820190915260018152600360fc1b602082015290565b8160005b8115612094578061207e81613060565b915061208d9050600a83613515565b915061206e565b60008167ffffffffffffffff8111156120af576120af612bce565b6040519080825280601f01601f1916602001820160405280156120d9576020820181803683370190505b5090505b8415611a27576120ee600183612fe2565b91506120fb600a8661357b565b6121069060306130b2565b60f81b81838151811061211b5761211b61304a565b60200101906001600160f81b031916908160001a90535061213d600a86613515565b94506120dd565b6001600160a01b03831661219f5761219a81600880546000838152600960205260408120829055600182018355919091527ff3f7a9fe364faab93b216da50a3214154f22a0a2b415b23a84c8169e8b636ee30155565b6121c2565b816001600160a01b0316836001600160a01b0316146121c2576121c283826124cb565b6001600160a01b0382166121d95761099a81612568565b826001600160a01b0316826001600160a01b03161461099a5761099a8282612617565b6060601382106122405760405162461bcd60e51b815260206004820152600f60248201526e546f6f206d616e79206c617965727360881b6044820152606401610864565b604080516020810190915260008082525b60098160ff16101561236d576012805490600061226d83613060565b9091555050601254604080514260208201524491810191909152606080820189905287901b6bffffffffffffffffffffffff191660808201526094810186905260b48101919091526000906107d09060d4016040516020818303038152906040528051906020012060001c6122e2919061357b565b905060006122f48261ffff168461265b565b9050600a61230182611d26565b60ff16101561233357838160405160200161231d92919061358f565b6040516020818303038152906040529350612358565b83816040516020016123469291906135cb565b60405160208183030381529060405293505b5050808061236590613263565b915050612251565b50600d8160405161237e91906135fa565b9081526040519081900360200190205460ff1615611a27576123ab85856123a68660016130b2565b6121fc565b915050611d1f565b610adc828260405180602001604052806000815250612737565b60006001600160a01b0384163b156124c057604051630a85bd0160e11b81526001600160a01b0385169063150b7a0290612411903390899088908890600401613616565b6020604051808303816000875af192505050801561244c575060408051601f3d908101601f1916820190925261244991810190613649565b60015b6124a6573d80801561247a576040519150601f19603f3d011682016040523d82523d6000602084013e61247f565b606091505b50805161249e5760405162461bcd60e51b815260040161086490613529565b805181602001fd5b6001600160e01b031916630a85bd0160e11b149050611a27565b506001949350505050565b600060016124d8846110ae565b6124e29190612fe2565b600083815260076020526040902054909150808214612535576001600160a01b03841660009081526006602090815260408083208584528252808320548484528184208190558352600790915290208190555b5060009182526007602090815260408084208490556001600160a01b039094168352600681528383209183525290812055565b60085460009061257a90600190612fe2565b600083815260096020526040812054600880549394509092849081106125a2576125a261304a565b9060005260206000200154905080600883815481106125c3576125c361304a565b60009182526020808320909101929092558281526009909152604080822084905585825281205560088054806125fb576125fb613666565b6001900381819060005260206000200160009055905550505050565b6000612622836110ae565b6001600160a01b039093166000908152600660209081526040808320868452825280832085905593825260079052919091209190915550565b60606000805b60148460ff16600981106126775761267761304a565b015460ff8216101561273157600060148560ff166009811061269b5761269b61304a565b018260ff16815481106126b0576126b061304a565b90600052602060002090601091828204019190066002029054906101000a900461ffff1690508261ffff1686101580156126f657506126ef818461367c565b61ffff1686105b15612711576127078260ff16612046565b9350505050610757565b61271b818461367c565b925050808061272990613263565b915050612661565b50600080fd5b612741838361276a565b61274e60008484846123cd565b61099a5760405162461bcd60e51b815260040161086490613529565b6001600160a01b0382166127c05760405162461bcd60e51b815260206004820181905260248201527f4552433732313a206d696e7420746f20746865207a65726f20616464726573736044820152606401610864565b6000818152600260205260409020546001600160a01b0316156128255760405162461bcd60e51b815260206004820152601c60248201527f4552433732313a20746f6b656e20616c7265616479206d696e746564000000006044820152606401610864565b61283160008383612144565b6001600160a01b038216600090815260036020526040812080546001929061285a9084906130b2565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b03861690811790915590518392907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a45050565b8280546128c490612f91565b90600052602060002090601f0160209004810192826128e6576000855561292c565b82601f106128ff57805160ff191683800117855561292c565b8280016001018555821561292c579182015b8281111561292c578251825591602001919060010190612911565b50612938929150612995565b5090565b828054828255906000526020600020908101928215612989579160200282015b8281111561298957825180516129799184916020909101906129aa565b509160200191906001019061295c565b50612938929150612a03565b5b808211156129385760008155600101612996565b8280548282559060005260206000209081019282156129f7579160200282015b828111156129f757825180516129e79184916020909101906128b8565b50916020019190600101906129ca565b50612938929150612a20565b80821115612938576000612a178282612a3d565b50600101612a03565b80821115612938576000612a348282612a5b565b50600101612a20565b5080546000825590600052602060002090810190611c549190612a20565b508054612a6790612f91565b6000825580601f10612a77575050565b601f016020900490600052602060002090810190611c549190612995565b600060208284031215612aa757600080fd5b5035919050565b60005b83811015612ac9578181015183820152602001612ab1565b838111156115e95750506000910152565b60008151808452612af2816020860160208601612aae565b601f01601f19169290920160200192915050565b602081526000611d1f6020830184612ada565b6001600160e01b031981168114611c5457600080fd5b600060208284031215612b4157600080fd5b8135611d1f81612b19565b80356001600160a01b0381168114612b6357600080fd5b919050565b60008060408385031215612b7b57600080fd5b612b8483612b4c565b946020939093013593505050565b600080600060608486031215612ba757600080fd5b612bb084612b4c565b9250612bbe60208501612b4c565b9150604084013590509250925092565b634e487b7160e01b600052604160045260246000fd5b604051601f8201601f1916810167ffffffffffffffff81118282101715612c0d57612c0d612bce565b604052919050565b600067ffffffffffffffff831115612c2f57612c2f612bce565b612c42601f8401601f1916602001612be4565b9050828152838383011115612c5657600080fd5b828260208301376000602084830101529392505050565b600082601f830112612c7e57600080fd5b611d1f83833560208501612c15565b600060208284031215612c9f57600080fd5b813567ffffffffffffffff811115612cb657600080fd5b611a2784828501612c6d565b600060208284031215612cd457600080fd5b611d1f82612b4c565b6020808252825182820181905260009190848201906040850190845b81811015612d1557835183529284019291840191600101612cf9565b50909695505050505050565b600067ffffffffffffffff821115612d3b57612d3b612bce565b5060051b60200190565b60008060408385031215612d5857600080fd5b82359150602083013567ffffffffffffffff80821115612d7757600080fd5b818501915085601f830112612d8b57600080fd5b612d9d612d988335612d21565b612be4565b82358082526020808301929160051b85010188811115612dbc57600080fd5b602085015b81811015612e6b578481351115612dd757600080fd5b803586018a603f820112612dea57600080fd5b6020810135612dfb612d9882612d21565b81815260059190911b82016040019060208101908d831115612e1c57600080fd5b604084015b83811015612e55578981351115612e3757600080fd5b612e478f60408335880101612c6d565b835260209283019201612e21565b5087525050602094850194919091019050612dc1565b50959890975095505050505050565b60008060408385031215612e8d57600080fd5b612e9683612b4c565b915060208301358015158114612eab57600080fd5b809150509250929050565b600080600060608486031215612ecb57600080fd5b505081359360208301359350604090920135919050565b60008060008060808587031215612ef857600080fd5b612f0185612b4c565b9350612f0f60208601612b4c565b925060408501359150606085013567ffffffffffffffff811115612f3257600080fd5b8501601f81018713612f4357600080fd5b612f5287823560208401612c15565b91505092959194509250565b60008060408385031215612f7157600080fd5b612f7a83612b4c565b9150612f8860208401612b4c565b90509250929050565b600181811c90821680612fa557607f821691505b60208210811415612fc657634e487b7160e01b600052602260045260246000fd5b50919050565b634e487b7160e01b600052601160045260246000fd5b600082821015612ff457612ff4612fcc565b500390565b60208082526031908201527f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f6040820152701ddb995c881b9bdc88185c1c1c9bdd9959607a1b606082015260800190565b634e487b7160e01b600052603260045260246000fd5b600060001982141561307457613074612fcc565b5060010190565b6020808252601f908201527f5265656e7472616e637947756172643a207265656e7472616e742063616c6c00604082015260600190565b600082198211156130c5576130c5612fcc565b500190565b60008160001904831182151516156130e4576130e4612fcc565b500290565b600060ff821660ff84168160ff048111821515161561310a5761310a612fcc565b029392505050565b600060ff821660ff84168060ff0382111561312f5761312f612fcc565b019392505050565b8054600090600181811c908083168061315157607f831692505b602080841082141561317357634e487b7160e01b600052602260045260246000fd5b8180156131875760018114613198576131c5565b60ff198616895284890196506131c5565b60008881526020902060005b868110156131bd5781548b8201529085019083016131a4565b505084890196505b50505050505092915050565b600084516131e3818460208901612aae565b6e3d913a3930b4ba2fba3cb832911d1160891b908301908152613209600f820186613137565b6a1116113b30b63ab2911d1160a91b81529050613229600b820185613137565b61227d60f01b81526002019695505050505050565b60008251613250818460208701612aae565b600b60fa1b920191825250600101919050565b600060ff821660ff81141561327a5761327a612fcc565b60010192915050565b605b60f81b81526000825161329f816001850160208701612aae565b605d60f81b6001939091019283015250600201919050565b600083516132c9818460208801612aae565b6132d581840185613137565b7f292c75726c28646174613a696d6167652f706e673b6261736536342c000000008152601c0195945050505050565b60008351613316818460208801612aae565b61332281840185613137565b7f293b6261636b67726f756e642d7265706561743a6e6f2d7265706561743b626181527f636b67726f756e642d73697a653a636f6e7461696e3b6261636b67726f756e6460208201527f2d706f736974696f6e3a63656e7465723b696d6167652d72656e646572696e6760408201527f3a2d7765626b69742d6f7074696d697a652d636f6e74726173743b2d6d732d6960608201527f6e746572706f6c6174696f6e2d6d6f64653a6e6561726573742d6e656967686260808201527f6f723b696d6167652d72656e646572696e673a2d6d6f7a2d63726973702d656460a08201527f6765733b696d6167652d72656e646572696e673a706978656c617465643b3c2f60c08201526b39ba3cb6329f1e17b9bb339f60a11b60e082015260ec0195945050505050565b7f646174613a696d6167652f7376672b786d6c3b6261736536342c00000000000081526000825161348281601a850160208701612aae565b91909101601a0192915050565b600061349b8286613137565b84516134ab818360208901612aae565b643f646e613d60d81b91019081526134c66005820185613137565b9695505050505050565b6000611d1f8284613137565b600060ff821660ff8416808210156134f6576134f6612fcc565b90039392505050565b634e487b7160e01b600052601260045260246000fd5b600082613524576135246134ff565b500490565b60208082526032908201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560408201527131b2b4bb32b91034b6b83632b6b2b73a32b960711b606082015260800190565b60008261358a5761358a6134ff565b500690565b600083516135a1818460208801612aae565b600360fc1b90830190815283516135bf816001840160208801612aae565b01600101949350505050565b600083516135dd818460208801612aae565b8351908301906135f1818360208801612aae565b01949350505050565b6000825161360c818460208701612aae565b9190910192915050565b6001600160a01b03858116825284166020820152604081018390526080606082018190526000906134c690830184612ada565b60006020828403121561365b57600080fd5b8151611d1f81612b19565b634e487b7160e01b600052603160045260246000fd5b600061ffff8083168185168083038211156135f1576135f1612fcc56fe3c7376672069643d226b6576696e222077696474683d223130302522206865696768743d2231303025222076657273696f6e3d22312e31222076696577426f783d223020302033322033322220786d6c6e733d22687474703a2f2f7777772e77332e6f72672f323030302f7376672220786d6c6e733a786c696e6b3d22687474703a2f2f7777772e77332e6f72672f313939392f786c696e6b223e3c7374796c653e236b6576696e7b6261636b67726f756e642d696d6167653a75726c28646174613a696d6167652f706e673b6261736536342c4142434445464748494a4b4c4d4e4f505152535455565758595a6162636465666768696a6b6c6d6e6f707172737475767778797a303132333435363738392b2fa2646970667358221220b672359cdb20cf5b8d13c251a321f37c3a2756653b799255155150e60a80ce1064736f6c634300080c0033

Deployed Bytecode

0x6080604052600436106101f85760003560e01c80636c0360eb1161010d578063a1e5995b116100a0578063c87b56dd1161006f578063c87b56dd146105af578063e985e9c5146105cf578063f252460114610618578063f2fde38b1461064e578063f42202e81461066e57600080fd5b8063a1e5995b1461053c578063a22cb4651461054f578063a966d4da1461056f578063b88d4fde1461058f57600080fd5b806389ce3074116100dc57806389ce3074146104c557806395bef055146104e557806395d89b41146104fa578063a08cdf661461050f57600080fd5b80636c0360eb146104505780636e88264b1461046557806370a08231146104855780637dd0dbb5146104a557600080fd5b806323b872dd11610190578063438b63001161015f578063438b63001461039b5780634f6ccce7146103c85780635a5e5d58146103e85780636352211e1461041057806366e338701461043057600080fd5b806323b872dd1461031b5780632f745c591461033b57806339a0c6f91461035b57806342842e0e1461037b57600080fd5b8063095ea7b3116101cc578063095ea7b3146102b05780630d0090ef146102d257806318160ddd146102e75780631a6949e31461030657600080fd5b80625ea307146101fd57806301ffc9a71461023357806306fdde0314610263578063081812fc14610278575b600080fd5b34801561020957600080fd5b5061021d610218366004612a95565b61068e565b60405161022a9190612b06565b60405180910390f35b34801561023f57600080fd5b5061025361024e366004612b2f565b610732565b604051901515815260200161022a565b34801561026f57600080fd5b5061021d61075d565b34801561028457600080fd5b50610298610293366004612a95565b6107ef565b6040516001600160a01b03909116815260200161022a565b3480156102bc57600080fd5b506102d06102cb366004612b68565b610889565b005b3480156102de57600080fd5b5061025361099f565b3480156102f357600080fd5b506008545b60405190815260200161022a565b34801561031257600080fd5b506102536109dd565b34801561032757600080fd5b506102d0610336366004612b92565b6109eb565b34801561034757600080fd5b506102f8610356366004612b68565b610a1c565b34801561036757600080fd5b506102d0610376366004612c8d565b610ab2565b34801561038757600080fd5b506102d0610396366004612b92565b610ae0565b3480156103a757600080fd5b506103bb6103b6366004612cc2565b610afb565b60405161022a9190612cdd565b3480156103d457600080fd5b506102f86103e3366004612a95565b610b9d565b6103fb6103f6366004612a95565b610c30565b6040805192835260208301919091520161022a565b34801561041c57600080fd5b5061029861042b366004612a95565b610e27565b34801561043c57600080fd5b5061021d61044b366004612c8d565b610e9e565b34801561045c57600080fd5b5061021d610fea565b34801561047157600080fd5b506102d0610480366004612d45565b611078565b34801561049157600080fd5b506102f86104a0366004612cc2565b6110ae565b3480156104b157600080fd5b506102d06104c0366004612b68565b611135565b3480156104d157600080fd5b5061021d6104e0366004612c8d565b611190565b3480156104f157600080fd5b506102f8600981565b34801561050657600080fd5b5061021d611340565b34801561051b57600080fd5b506102f861052a366004612cc2565b600f6020526000908152604090205481565b6103fb61054a366004612a95565b61134f565b34801561055b57600080fd5b506102d061056a366004612e7a565b61155b565b34801561057b57600080fd5b5061021d61058a366004612eb6565b611566565b34801561059b57600080fd5b506102d06105aa366004612ee2565b6115b7565b3480156105bb57600080fd5b5061021d6105ca366004612a95565b6115ef565b3480156105db57600080fd5b506102536105ea366004612f5e565b6001600160a01b03918216600090815260056020908152604080832093909416825291909152205460ff1690565b34801561062457600080fd5b506102f8610633366004612cc2565b6001600160a01b031660009081526010602052604090205490565b34801561065a57600080fd5b506102d0610669366004612cc2565b611688565b34801561067a57600080fd5b506103fb610689366004612a95565b6116c1565b6000818152600e60205260408120805460609291906106ac90612f91565b80601f01602080910402602001604051908101604052809291908181526020018280546106d890612f91565b80156107255780601f106106fa57610100808354040283529160200191610725565b820191906000526020600020905b81548152906001019060200180831161070857829003601f168201915b5093979650505050505050565b60006001600160e01b0319821663780e9d6360e01b148061075757506107578261187a565b92915050565b60606000805461076c90612f91565b80601f016020809104026020016040519081016040528092919081815260200182805461079890612f91565b80156107e55780601f106107ba576101008083540402835291602001916107e5565b820191906000526020600020905b8154815290600101906020018083116107c857829003601f168201915b5050505050905090565b6000818152600260205260408120546001600160a01b031661086d5760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b60648201526084015b60405180910390fd5b506000908152600460205260409020546001600160a01b031690565b600061089482610e27565b9050806001600160a01b0316836001600160a01b031614156109025760405162461bcd60e51b815260206004820152602160248201527f4552433732313a20617070726f76616c20746f2063757272656e74206f776e656044820152603960f91b6064820152608401610864565b336001600160a01b038216148061091e575061091e81336105ea565b6109905760405162461bcd60e51b815260206004820152603860248201527f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760448201527f6e6572206e6f7220617070726f76656420666f7220616c6c00000000000000006064820152608401610864565b61099a83836118ca565b505050565b60006109a96109dd565b1580156109bf575060326109bc600c5490565b10155b80156109d857506109d360326107d0612fe2565b600b54105b905090565b60006101f46109bc600b5490565b6109f53382611938565b610a115760405162461bcd60e51b815260040161086490612ff9565b61099a838383611a2f565b6000610a27836110ae565b8210610a895760405162461bcd60e51b815260206004820152602b60248201527f455243373231456e756d657261626c653a206f776e657220696e646578206f7560448201526a74206f6620626f756e647360a81b6064820152608401610864565b506001600160a01b03919091166000908152600660209081526040808320938352929052205490565b601e546001600160a01b03163314610ac957600080fd5b8051610adc9060139060208401906128b8565b5050565b61099a838383604051806020016040528060008152506115b7565b60606000610b08836110ae565b905060008167ffffffffffffffff811115610b2557610b25612bce565b604051908082528060200260200182016040528015610b4e578160200160208202803683370190505b50905060005b82811015610b9557610b668582610a1c565b828281518110610b7857610b7861304a565b602090810291909101015280610b8d81613060565b915050610b54565b509392505050565b6000610ba860085490565b8210610c0b5760405162461bcd60e51b815260206004820152602c60248201527f455243373231456e756d657261626c653a20676c6f62616c20696e646578206f60448201526b7574206f6620626f756e647360a01b6064820152608401610864565b60088281548110610c1e57610c1e61304a565b90600052602060002001549050919050565b6000806002600a541415610c565760405162461bcd60e51b81526004016108649061307b565b6002600a55610c636109dd565b610ca65760405162461bcd60e51b8152602060048201526014602482015273283ab13634b19039b0b632903737ba1037b832b760611b6044820152606401610864565b600083118015610cb75750600a8311155b610cf95760405162461bcd60e51b8152602060048201526013602482015272125b9d985b1a590812d95d9a5b8818dbdd5b9d606a1b6044820152606401610864565b610d0660326107d0612fe2565b83610d10600b5490565b610d1a91906130b2565b1115610d685760405162461bcd60e51b815260206004820152601a60248201527f416c6c204f6e436861696e4b6576696e732061726520676f6e650000000000006044820152606401610864565b34610d7a66470de4df820000856130ca565b14610dc75760405162461bcd60e51b815260206004820152601e60248201527f496e636f727265637420616d6f756e74206f662065746865722073656e7400006044820152606401610864565b6000610dd2600b5490565b610ddd9060016130b2565b905060005b84811015610e1b57610df8600b80546001019055565b610e09610e04600b5490565b611bd6565b80610e1381613060565b915050610de2565b506001600a5593915050565b6000818152600260205260408120546001600160a01b0316806107575760405162461bcd60e51b815260206004820152602960248201527f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460448201526832b73a103a37b5b2b760b91b6064820152608401610864565b60608060005b60098160ff161015610fc1576000610eea610ee586610ec48560026130e9565b60ff16610ed28660026130e9565b610edd906002613112565b60ff16611c57565b611d26565b905082601d8360ff1681548110610f0357610f0361304a565b90600052602060002001601160008560ff1681526020019081526020016000208360ff1681548110610f3757610f3761304a565b90600052602060002001600081548110610f5357610f5361304a565b90600052602060002001604051602001610f6f939291906131d1565b60405160208183030381529060405292508160ff16600814610fae5782604051602001610f9c919061323e565b60405160208183030381529060405292505b5080610fb981613263565b915050610ea4565b5080604051602001610fd39190613283565b604051602081830303815290604052915050919050565b60138054610ff790612f91565b80601f016020809104026020016040519081016040528092919081815260200182805461102390612f91565b80156110705780601f1061104557610100808354040283529160200191611070565b820191906000526020600020905b81548152906001019060200180831161105357829003601f168201915b505050505081565b601e546001600160a01b0316331461108f57600080fd5b6000828152601160209081526040909120825161099a9284019061293c565b60006001600160a01b0382166111195760405162461bcd60e51b815260206004820152602a60248201527f4552433732313a2062616c616e636520717565727920666f7220746865207a65604482015269726f206164647265737360b01b6064820152608401610864565b506001600160a01b031660009081526003602052604090205490565b601e546001600160a01b0316331461114c57600080fd5b6002600a54141561116f5760405162461bcd60e51b81526004016108649061307b565b6001600160a01b039091166000908152601060205260409020556001600a55565b6060600060405180610100016040528060d4815260200161369a60d4913990506000805b6111c060016009612fe2565b8160ff161015611272576111ea610ee5866111dc8460026130e9565b60ff16610ed28560026130e9565b915082601160008360ff1681526020019081526020016000208360ff16815481106112175761121761304a565b906000526020600020016001815481106112335761123361304a565b9060005260206000200160405160200161124e9291906132b7565b6040516020818303038152906040529250808061126a90613263565b9150506111b4565b50611283610ee58560106012611c57565b600860005260116020527f5fae251ae169e8e40026ce4ce85a026bc3adcccdc8459be361195e4cd924077f80549192506113189184919060ff85169081106112cd576112cd61304a565b906000526020600020016001815481106112e9576112e961304a565b90600052602060002001604051602001611304929190613304565b604051602081830303815290604052611ddc565b604051602001611328919061344a565b60405160208183030381529060405292505050919050565b60606001805461076c90612f91565b6000806002600a5414156113755760405162461bcd60e51b81526004016108649061307b565b6002600a5561138261099f565b6113c65760405162461bcd60e51b815260206004820152601560248201527422b0b9363c9030b1b1b2b9b9903737ba1037b832b760591b6044820152606401610864565b826114095760405162461bcd60e51b8152602060048201526013602482015272125b9d985b1a590812d95d9a5b8818dbdd5b9d606a1b6044820152606401610864565b6101f483611416600b5490565b61142091906130b2565b111561146e5760405162461bcd60e51b815260206004820152601b60248201527f4561726c79206163636573732068617320636f6e636c756465642e00000000006044820152606401610864565b336000908152600f60205260408120546114899085906130b2565b9050600a8111156114ed5760405162461bcd60e51b815260206004820152602860248201527f4578636565646564206d6178206561726c7920616363657373206d696e74732060448201526730b63637bbb2b21760c11b6064820152608401610864565b60006114f8600b5490565b6115039060016130b2565b905060005b8581101561153c5761151e600b80546001019055565b61152a610e04600b5490565b8061153481613060565b915050611508565b50336000908152600f60205260409020919091556001600a5593915050565b610adc338383611f44565b6011602052826000526040600020828154811061158257600080fd5b90600052602060002001818154811061159a57600080fd5b9060005260206000200160009250925050508054610ff790612f91565b6115c13383611938565b6115dd5760405162461bcd60e51b815260040161086490612ff9565b6115e984848484612013565b50505050565b6000818152600260205260409020546060906001600160a01b03166116465760405162461bcd60e51b815260206004820152600d60248201526c24b73b30b634b2103a37b5b2b760991b6044820152606401610864565b601361165183612046565b6000848152600e60209081526040918290209151611672949392910161348f565b6040516020818303038152906040529050919050565b601e546001600160a01b0316331461169f57600080fd5b601e80546001600160a01b0319166001600160a01b0392909216919091179055565b6000806002600a5414156116e75760405162461bcd60e51b81526004016108649061307b565b6002600a556032836116f8600c5490565b61170291906130b2565b111561175c5760405162461bcd60e51b8152602060048201526024808201527f416c6c207265736572766564204b6576696e732068617665206265656e206d696044820152631b9d195960e21b6064820152608401610864565b336000908152601060205260409020548311156117cd5760405162461bcd60e51b815260206004820152602960248201527f596f752063616e6e6f74206d696e742074686973206d616e79207265736572766044820152686564204b6576696e7360b81b6064820152608401610864565b60006117d8600c5490565b6117e560326107d0612fe2565b6117ef91906130b2565b6117fa9060016130b2565b905060005b8481101561184a57611815600c80546001019055565b611838611821600c5490565b61182e60326107d0612fe2565b610e0491906130b2565b8061184281613060565b9150506117ff565b50336000908152601060205260408120805486929061186a908490612fe2565b90915550506001600a5593915050565b60006001600160e01b031982166380ac58cd60e01b14806118ab57506001600160e01b03198216635b5e139f60e01b145b8061075757506301ffc9a760e01b6001600160e01b0319831614610757565b600081815260046020526040902080546001600160a01b0319166001600160a01b03841690811790915581906118ff82610e27565b6001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b6000818152600260205260408120546001600160a01b03166119b15760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b6064820152608401610864565b60006119bc83610e27565b9050806001600160a01b0316846001600160a01b031614806119f75750836001600160a01b03166119ec846107ef565b6001600160a01b0316145b80611a2757506001600160a01b0380821660009081526005602090815260408083209388168352929052205460ff165b949350505050565b826001600160a01b0316611a4282610e27565b6001600160a01b031614611aa65760405162461bcd60e51b815260206004820152602560248201527f4552433732313a207472616e736665722066726f6d20696e636f72726563742060448201526437bbb732b960d91b6064820152608401610864565b6001600160a01b038216611b085760405162461bcd60e51b8152602060048201526024808201527f4552433732313a207472616e7366657220746f20746865207a65726f206164646044820152637265737360e01b6064820152608401610864565b611b13838383612144565b611b1e6000826118ca565b6001600160a01b0383166000908152600360205260408120805460019290611b47908490612fe2565b90915550506001600160a01b0382166000908152600360205260408120805460019290611b759084906130b2565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b0386811691821790925591518493918716917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef91a4505050565b611be2813360006121fc565b6000828152600e602090815260409091208251611c0593919291909101906128b8565b506001600d600e6000848152602001908152602001600020604051611c2a91906134d0565b908152604051908190036020019020805491151560ff19909216919091179055611c5433826123b3565b50565b6060836000611c668585612fe2565b67ffffffffffffffff811115611c7e57611c7e612bce565b6040519080825280601f01601f191660200182016040528015611ca8576020820181803683370190505b509050845b84811015611d1a57828181518110611cc757611cc761304a565b01602001516001600160f81b03191682611ce18884612fe2565b81518110611cf157611cf161304a565b60200101906001600160f81b031916908160001a90535080611d1281613060565b915050611cad565b509150505b9392505050565b60008181805b82518160ff161015610b95576030838260ff1681518110611d4f57611d4f61304a565b016020015160f81c10801590611d8257506039838260ff1681518110611d7757611d7761304a565b016020015160f81c11155b15611dca57611d92600a836130e9565b91506030838260ff1681518110611dab57611dab61304a565b0160200151611dbd919060f81c6134dc565b611dc79083613112565b91505b80611dd481613263565b915050611d2c565b6060815160001415611dfc57505060408051602081019091526000815290565b600060405180606001604052806040815260200161376e6040913990506000600384516002611e2b91906130b2565b611e359190613515565b611e409060046130ca565b90506000611e4f8260206130b2565b67ffffffffffffffff811115611e6757611e67612bce565b6040519080825280601f01601f191660200182016040528015611e91576020820181803683370190505b509050818152600183018586518101602084015b81831015611eff5760039283018051603f601282901c811687015160f890811b8552600c83901c8216880151811b6001860152600683901c8216880151811b60028601529116860151901b93820193909352600401611ea5565b600389510660018114611f195760028114611f2a57611f36565b613d3d60f01b600119830152611f36565b603d60f81b6000198301525b509398975050505050505050565b816001600160a01b0316836001600160a01b03161415611fa65760405162461bcd60e51b815260206004820152601960248201527f4552433732313a20617070726f766520746f2063616c6c6572000000000000006044820152606401610864565b6001600160a01b03838116600081815260056020908152604080832094871680845294825291829020805460ff191686151590811790915591519182527f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a3505050565b61201e848484611a2f565b61202a848484846123cd565b6115e95760405162461bcd60e51b815260040161086490613529565b60608161206a5750506040805180820190915260018152600360fc1b602082015290565b8160005b8115612094578061207e81613060565b915061208d9050600a83613515565b915061206e565b60008167ffffffffffffffff8111156120af576120af612bce565b6040519080825280601f01601f1916602001820160405280156120d9576020820181803683370190505b5090505b8415611a27576120ee600183612fe2565b91506120fb600a8661357b565b6121069060306130b2565b60f81b81838151811061211b5761211b61304a565b60200101906001600160f81b031916908160001a90535061213d600a86613515565b94506120dd565b6001600160a01b03831661219f5761219a81600880546000838152600960205260408120829055600182018355919091527ff3f7a9fe364faab93b216da50a3214154f22a0a2b415b23a84c8169e8b636ee30155565b6121c2565b816001600160a01b0316836001600160a01b0316146121c2576121c283826124cb565b6001600160a01b0382166121d95761099a81612568565b826001600160a01b0316826001600160a01b03161461099a5761099a8282612617565b6060601382106122405760405162461bcd60e51b815260206004820152600f60248201526e546f6f206d616e79206c617965727360881b6044820152606401610864565b604080516020810190915260008082525b60098160ff16101561236d576012805490600061226d83613060565b9091555050601254604080514260208201524491810191909152606080820189905287901b6bffffffffffffffffffffffff191660808201526094810186905260b48101919091526000906107d09060d4016040516020818303038152906040528051906020012060001c6122e2919061357b565b905060006122f48261ffff168461265b565b9050600a61230182611d26565b60ff16101561233357838160405160200161231d92919061358f565b6040516020818303038152906040529350612358565b83816040516020016123469291906135cb565b60405160208183030381529060405293505b5050808061236590613263565b915050612251565b50600d8160405161237e91906135fa565b9081526040519081900360200190205460ff1615611a27576123ab85856123a68660016130b2565b6121fc565b915050611d1f565b610adc828260405180602001604052806000815250612737565b60006001600160a01b0384163b156124c057604051630a85bd0160e11b81526001600160a01b0385169063150b7a0290612411903390899088908890600401613616565b6020604051808303816000875af192505050801561244c575060408051601f3d908101601f1916820190925261244991810190613649565b60015b6124a6573d80801561247a576040519150601f19603f3d011682016040523d82523d6000602084013e61247f565b606091505b50805161249e5760405162461bcd60e51b815260040161086490613529565b805181602001fd5b6001600160e01b031916630a85bd0160e11b149050611a27565b506001949350505050565b600060016124d8846110ae565b6124e29190612fe2565b600083815260076020526040902054909150808214612535576001600160a01b03841660009081526006602090815260408083208584528252808320548484528184208190558352600790915290208190555b5060009182526007602090815260408084208490556001600160a01b039094168352600681528383209183525290812055565b60085460009061257a90600190612fe2565b600083815260096020526040812054600880549394509092849081106125a2576125a261304a565b9060005260206000200154905080600883815481106125c3576125c361304a565b60009182526020808320909101929092558281526009909152604080822084905585825281205560088054806125fb576125fb613666565b6001900381819060005260206000200160009055905550505050565b6000612622836110ae565b6001600160a01b039093166000908152600660209081526040808320868452825280832085905593825260079052919091209190915550565b60606000805b60148460ff16600981106126775761267761304a565b015460ff8216101561273157600060148560ff166009811061269b5761269b61304a565b018260ff16815481106126b0576126b061304a565b90600052602060002090601091828204019190066002029054906101000a900461ffff1690508261ffff1686101580156126f657506126ef818461367c565b61ffff1686105b15612711576127078260ff16612046565b9350505050610757565b61271b818461367c565b925050808061272990613263565b915050612661565b50600080fd5b612741838361276a565b61274e60008484846123cd565b61099a5760405162461bcd60e51b815260040161086490613529565b6001600160a01b0382166127c05760405162461bcd60e51b815260206004820181905260248201527f4552433732313a206d696e7420746f20746865207a65726f20616464726573736044820152606401610864565b6000818152600260205260409020546001600160a01b0316156128255760405162461bcd60e51b815260206004820152601c60248201527f4552433732313a20746f6b656e20616c7265616479206d696e746564000000006044820152606401610864565b61283160008383612144565b6001600160a01b038216600090815260036020526040812080546001929061285a9084906130b2565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b03861690811790915590518392907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a45050565b8280546128c490612f91565b90600052602060002090601f0160209004810192826128e6576000855561292c565b82601f106128ff57805160ff191683800117855561292c565b8280016001018555821561292c579182015b8281111561292c578251825591602001919060010190612911565b50612938929150612995565b5090565b828054828255906000526020600020908101928215612989579160200282015b8281111561298957825180516129799184916020909101906129aa565b509160200191906001019061295c565b50612938929150612a03565b5b808211156129385760008155600101612996565b8280548282559060005260206000209081019282156129f7579160200282015b828111156129f757825180516129e79184916020909101906128b8565b50916020019190600101906129ca565b50612938929150612a20565b80821115612938576000612a178282612a3d565b50600101612a03565b80821115612938576000612a348282612a5b565b50600101612a20565b5080546000825590600052602060002090810190611c549190612a20565b508054612a6790612f91565b6000825580601f10612a77575050565b601f016020900490600052602060002090810190611c549190612995565b600060208284031215612aa757600080fd5b5035919050565b60005b83811015612ac9578181015183820152602001612ab1565b838111156115e95750506000910152565b60008151808452612af2816020860160208601612aae565b601f01601f19169290920160200192915050565b602081526000611d1f6020830184612ada565b6001600160e01b031981168114611c5457600080fd5b600060208284031215612b4157600080fd5b8135611d1f81612b19565b80356001600160a01b0381168114612b6357600080fd5b919050565b60008060408385031215612b7b57600080fd5b612b8483612b4c565b946020939093013593505050565b600080600060608486031215612ba757600080fd5b612bb084612b4c565b9250612bbe60208501612b4c565b9150604084013590509250925092565b634e487b7160e01b600052604160045260246000fd5b604051601f8201601f1916810167ffffffffffffffff81118282101715612c0d57612c0d612bce565b604052919050565b600067ffffffffffffffff831115612c2f57612c2f612bce565b612c42601f8401601f1916602001612be4565b9050828152838383011115612c5657600080fd5b828260208301376000602084830101529392505050565b600082601f830112612c7e57600080fd5b611d1f83833560208501612c15565b600060208284031215612c9f57600080fd5b813567ffffffffffffffff811115612cb657600080fd5b611a2784828501612c6d565b600060208284031215612cd457600080fd5b611d1f82612b4c565b6020808252825182820181905260009190848201906040850190845b81811015612d1557835183529284019291840191600101612cf9565b50909695505050505050565b600067ffffffffffffffff821115612d3b57612d3b612bce565b5060051b60200190565b60008060408385031215612d5857600080fd5b82359150602083013567ffffffffffffffff80821115612d7757600080fd5b818501915085601f830112612d8b57600080fd5b612d9d612d988335612d21565b612be4565b82358082526020808301929160051b85010188811115612dbc57600080fd5b602085015b81811015612e6b578481351115612dd757600080fd5b803586018a603f820112612dea57600080fd5b6020810135612dfb612d9882612d21565b81815260059190911b82016040019060208101908d831115612e1c57600080fd5b604084015b83811015612e55578981351115612e3757600080fd5b612e478f60408335880101612c6d565b835260209283019201612e21565b5087525050602094850194919091019050612dc1565b50959890975095505050505050565b60008060408385031215612e8d57600080fd5b612e9683612b4c565b915060208301358015158114612eab57600080fd5b809150509250929050565b600080600060608486031215612ecb57600080fd5b505081359360208301359350604090920135919050565b60008060008060808587031215612ef857600080fd5b612f0185612b4c565b9350612f0f60208601612b4c565b925060408501359150606085013567ffffffffffffffff811115612f3257600080fd5b8501601f81018713612f4357600080fd5b612f5287823560208401612c15565b91505092959194509250565b60008060408385031215612f7157600080fd5b612f7a83612b4c565b9150612f8860208401612b4c565b90509250929050565b600181811c90821680612fa557607f821691505b60208210811415612fc657634e487b7160e01b600052602260045260246000fd5b50919050565b634e487b7160e01b600052601160045260246000fd5b600082821015612ff457612ff4612fcc565b500390565b60208082526031908201527f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f6040820152701ddb995c881b9bdc88185c1c1c9bdd9959607a1b606082015260800190565b634e487b7160e01b600052603260045260246000fd5b600060001982141561307457613074612fcc565b5060010190565b6020808252601f908201527f5265656e7472616e637947756172643a207265656e7472616e742063616c6c00604082015260600190565b600082198211156130c5576130c5612fcc565b500190565b60008160001904831182151516156130e4576130e4612fcc565b500290565b600060ff821660ff84168160ff048111821515161561310a5761310a612fcc565b029392505050565b600060ff821660ff84168060ff0382111561312f5761312f612fcc565b019392505050565b8054600090600181811c908083168061315157607f831692505b602080841082141561317357634e487b7160e01b600052602260045260246000fd5b8180156131875760018114613198576131c5565b60ff198616895284890196506131c5565b60008881526020902060005b868110156131bd5781548b8201529085019083016131a4565b505084890196505b50505050505092915050565b600084516131e3818460208901612aae565b6e3d913a3930b4ba2fba3cb832911d1160891b908301908152613209600f820186613137565b6a1116113b30b63ab2911d1160a91b81529050613229600b820185613137565b61227d60f01b81526002019695505050505050565b60008251613250818460208701612aae565b600b60fa1b920191825250600101919050565b600060ff821660ff81141561327a5761327a612fcc565b60010192915050565b605b60f81b81526000825161329f816001850160208701612aae565b605d60f81b6001939091019283015250600201919050565b600083516132c9818460208801612aae565b6132d581840185613137565b7f292c75726c28646174613a696d6167652f706e673b6261736536342c000000008152601c0195945050505050565b60008351613316818460208801612aae565b61332281840185613137565b7f293b6261636b67726f756e642d7265706561743a6e6f2d7265706561743b626181527f636b67726f756e642d73697a653a636f6e7461696e3b6261636b67726f756e6460208201527f2d706f736974696f6e3a63656e7465723b696d6167652d72656e646572696e6760408201527f3a2d7765626b69742d6f7074696d697a652d636f6e74726173743b2d6d732d6960608201527f6e746572706f6c6174696f6e2d6d6f64653a6e6561726573742d6e656967686260808201527f6f723b696d6167652d72656e646572696e673a2d6d6f7a2d63726973702d656460a08201527f6765733b696d6167652d72656e646572696e673a706978656c617465643b3c2f60c08201526b39ba3cb6329f1e17b9bb339f60a11b60e082015260ec0195945050505050565b7f646174613a696d6167652f7376672b786d6c3b6261736536342c00000000000081526000825161348281601a850160208701612aae565b91909101601a0192915050565b600061349b8286613137565b84516134ab818360208901612aae565b643f646e613d60d81b91019081526134c66005820185613137565b9695505050505050565b6000611d1f8284613137565b600060ff821660ff8416808210156134f6576134f6612fcc565b90039392505050565b634e487b7160e01b600052601260045260246000fd5b600082613524576135246134ff565b500490565b60208082526032908201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560408201527131b2b4bb32b91034b6b83632b6b2b73a32b960711b606082015260800190565b60008261358a5761358a6134ff565b500690565b600083516135a1818460208801612aae565b600360fc1b90830190815283516135bf816001840160208801612aae565b01600101949350505050565b600083516135dd818460208801612aae565b8351908301906135f1818360208801612aae565b01949350505050565b6000825161360c818460208701612aae565b9190910192915050565b6001600160a01b03858116825284166020820152604081018390526080606082018190526000906134c690830184612ada565b60006020828403121561365b57600080fd5b8151611d1f81612b19565b634e487b7160e01b600052603160045260246000fd5b600061ffff8083168185168083038211156135f1576135f1612fcc56fe3c7376672069643d226b6576696e222077696474683d223130302522206865696768743d2231303025222076657273696f6e3d22312e31222076696577426f783d223020302033322033322220786d6c6e733d22687474703a2f2f7777772e77332e6f72672f323030302f7376672220786d6c6e733a786c696e6b3d22687474703a2f2f7777772e77332e6f72672f313939392f786c696e6b223e3c7374796c653e236b6576696e7b6261636b67726f756e642d696d6167653a75726c28646174613a696d6167652f706e673b6261736536342c4142434445464748494a4b4c4d4e4f505152535455565758595a6162636465666768696a6b6c6d6e6f707172737475767778797a303132333435363738392b2fa2646970667358221220b672359cdb20cf5b8d13c251a321f37c3a2756653b799255155150e60a80ce1064736f6c634300080c0033

Deployed Bytecode Sourcemap

52475:14911:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;64917:207;;;;;;;;;;-1:-1:-1;64917:207:0;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;45461:224;;;;;;;;;;-1:-1:-1;45461:224:0;;;;;:::i;:::-;;:::i;:::-;;;1501:14:1;;1494:22;1476:41;;1464:2;1449:18;45461:224:0;1336:187:1;32281:100:0;;;;;;;;;;;;;:::i;33840:221::-;;;;;;;;;;-1:-1:-1;33840:221:0;;;;;:::i;:::-;;:::i;:::-;;;-1:-1:-1;;;;;1692:32:1;;;1674:51;;1662:2;1647:18;33840:221:0;1528:203:1;33363:411:0;;;;;;;;;;-1:-1:-1;33363:411:0;;;;;:::i;:::-;;:::i;:::-;;61363:202;;;;;;;;;;;;;:::i;46101:113::-;;;;;;;;;;-1:-1:-1;46189:10:0;:17;46101:113;;;2319:25:1;;;2307:2;2292:18;46101:113:0;2173:177:1;61183:172:0;;;;;;;;;;;;;:::i;34590:339::-;;;;;;;;;;-1:-1:-1;34590:339:0;;;;;:::i;:::-;;:::i;45769:256::-;;;;;;;;;;-1:-1:-1;45769:256:0;;;;;:::i;:::-;;:::i;66575:101::-;;;;;;;;;;-1:-1:-1;66575:101:0;;;;;:::i;:::-;;:::i;35000:185::-;;;;;;;;;;-1:-1:-1;35000:185:0;;;;;:::i;:::-;;:::i;65292:380::-;;;;;;;;;;-1:-1:-1;65292:380:0;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;46291:233::-;;;;;;;;;;-1:-1:-1;46291:233:0;;;;;:::i;:::-;;:::i;58138:630::-;;;;;;:::i;:::-;;:::i;:::-;;;;5068:25:1;;;5124:2;5109:18;;5102:34;;;;5041:18;58138:630:0;4894:248:1;31975:239:0;;;;;;;;;;-1:-1:-1;31975:239:0;;;;;:::i;:::-;;:::i;63571:897::-;;;;;;;;;;-1:-1:-1;63571:897:0;;;;;:::i;:::-;;:::i;53485:55::-;;;;;;;;;;;;;:::i;66831:187::-;;;;;;;;;;-1:-1:-1;66831:187:0;;;;;:::i;:::-;;:::i;31705:208::-;;;;;;;;;;-1:-1:-1;31705:208:0;;;;;:::i;:::-;;:::i;59571:151::-;;;;;;;;;;-1:-1:-1;59571:151:0;;;;;:::i;:::-;;:::i;61771:1735::-;;;;;;;;;;-1:-1:-1;61771:1735:0;;;;;:::i;:::-;;:::i;53547:37::-;;;;;;;;;;;;53583:1;53547:37;;32450:104;;;;;;;;;;;;;:::i;52812:58::-;;;;;;;;;;-1:-1:-1;52812:58:0;;;;;:::i;:::-;;;;;;;;;;;;;;58776:787;;;;;;:::i;:::-;;:::i;34133:155::-;;;;;;;;;;-1:-1:-1;34133:155:0;;;;;:::i;:::-;;:::i;52946:48::-;;;;;;;;;;-1:-1:-1;52946:48:0;;;;;:::i;:::-;;:::i;35256:328::-;;;;;;;;;;-1:-1:-1;35256:328:0;;;;;:::i;:::-;;:::i;64476:307::-;;;;;;;;;;-1:-1:-1;64476:307:0;;;;;:::i;:::-;;:::i;34359:164::-;;;;;;;;;;-1:-1:-1;34359:164:0;;;;;:::i;:::-;-1:-1:-1;;;;;34480:25:0;;;34456:4;34480:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;;;;34359:164;61573:138;;;;;;;;;;-1:-1:-1;61573:138:0;;;;;:::i;:::-;-1:-1:-1;;;;;61670:33:0;61643:7;61670:33;;;:26;:33;;;;;;;61573:138;67116:100;;;;;;;;;;-1:-1:-1;67116:100:0;;;;;:::i;:::-;;:::i;59730:687::-;;;;;;;;;;-1:-1:-1;59730:687:0;;;;;:::i;:::-;;:::i;64917:207::-;65038:23;65064;;;:13;:23;;;;;65038:49;;65007:13;;65038:23;65064;65038:49;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;65038:49:0;;64917:207;-1:-1:-1;;;;;;;64917:207:0:o;45461:224::-;45563:4;-1:-1:-1;;;;;;45587:50:0;;-1:-1:-1;;;45587:50:0;;:90;;;45641:36;45665:11;45641:23;:36::i;:::-;45580:97;45461:224;-1:-1:-1;;45461:224:0:o;32281:100::-;32335:13;32368:5;32361:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;32281:100;:::o;33840:221::-;33916:7;37183:16;;;:7;:16;;;;;;-1:-1:-1;;;;;37183:16:0;33936:73;;;;-1:-1:-1;;;33936:73:0;;9402:2:1;33936:73:0;;;9384:21:1;9441:2;9421:18;;;9414:30;9480:34;9460:18;;;9453:62;-1:-1:-1;;;9531:18:1;;;9524:42;9583:19;;33936:73:0;;;;;;;;;-1:-1:-1;34029:24:0;;;;:15;:24;;;;;;-1:-1:-1;;;;;34029:24:0;;33840:221::o;33363:411::-;33444:13;33460:23;33475:7;33460:14;:23::i;:::-;33444:39;;33508:5;-1:-1:-1;;;;;33502:11:0;:2;-1:-1:-1;;;;;33502:11:0;;;33494:57;;;;-1:-1:-1;;;33494:57:0;;9815:2:1;33494:57:0;;;9797:21:1;9854:2;9834:18;;;9827:30;9893:34;9873:18;;;9866:62;-1:-1:-1;;;9944:18:1;;;9937:31;9985:19;;33494:57:0;9613:397:1;33494:57:0;11560:10;-1:-1:-1;;;;;33586:21:0;;;;:62;;-1:-1:-1;33611:37:0;33628:5;11560:10;34359:164;:::i;33611:37::-;33564:168;;;;-1:-1:-1;;;33564:168:0;;10217:2:1;33564:168:0;;;10199:21:1;10256:2;10236:18;;;10229:30;10295:34;10275:18;;;10268:62;10366:26;10346:18;;;10339:54;10410:19;;33564:168:0;10015:420:1;33564:168:0;33745:21;33754:2;33758:7;33745:8;:21::i;:::-;33433:341;33363:411;;:::o;61363:202::-;61413:4;61438:18;:16;:18::i;:::-;61437:19;:77;;;;;53150:2;61460:27;:17;5417:14;;5325:114;61460:27;:54;;61437:77;:120;;;;-1:-1:-1;53269:36:0;53150:2;53088:4;53269:36;:::i;:::-;61518:9;5417:14;61518:39;61437:120;61430:127;;61363:202;:::o;61183:172::-;61232:4;53212:3;61256:19;:9;5417:14;;5325:114;34590:339;34785:41;11560:10;34818:7;34785:18;:41::i;:::-;34777:103;;;;-1:-1:-1;;;34777:103:0;;;;;;;:::i;:::-;34893:28;34903:4;34909:2;34913:7;34893:9;:28::i;45769:256::-;45866:7;45902:23;45919:5;45902:16;:23::i;:::-;45894:5;:31;45886:87;;;;-1:-1:-1;;;45886:87:0;;11322:2:1;45886:87:0;;;11304:21:1;11361:2;11341:18;;;11334:30;11400:34;11380:18;;;11373:62;-1:-1:-1;;;11451:18:1;;;11444:41;11502:19;;45886:87:0;11120:407:1;45886:87:0;-1:-1:-1;;;;;;45991:19:0;;;;;;;;:12;:19;;;;;;;;:26;;;;;;;;;45769:256::o;66575:101::-;67342:6;;-1:-1:-1;;;;;67342:6:0;67352:10;67342:20;67334:29;;;;;;66650:18;;::::1;::::0;:7:::1;::::0;:18:::1;::::0;::::1;::::0;::::1;:::i;:::-;;66575:101:::0;:::o;35000:185::-;35138:39;35155:4;35161:2;35165:7;35138:39;;;;;;;;;;;;:16;:39::i;65292:380::-;65380:16;65414:18;65435;65445:7;65435:9;:18::i;:::-;65414:39;;65466:25;65508:10;65494:25;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;65494:25:0;;65466:53;;65535:9;65530:109;65550:10;65546:1;:14;65530:109;;;65596:31;65616:7;65625:1;65596:19;:31::i;:::-;65582:8;65591:1;65582:11;;;;;;;;:::i;:::-;;;;;;;;;;:45;65562:3;;;;:::i;:::-;;;;65530:109;;;-1:-1:-1;65656:8:0;65292:380;-1:-1:-1;;;65292:380:0:o;46291:233::-;46366:7;46402:30;46189:10;:17;;46101:113;46402:30;46394:5;:38;46386:95;;;;-1:-1:-1;;;46386:95:0;;12006:2:1;46386:95:0;;;11988:21:1;12045:2;12025:18;;;12018:30;12084:34;12064:18;;;12057:62;-1:-1:-1;;;12135:18:1;;;12128:42;12187:19;;46386:95:0;11804:408:1;46386:95:0;46499:10;46510:5;46499:17;;;;;;;;:::i;:::-;;;;;;;;;46492:24;;46291:233;;;:::o;58138:630::-;58238:7;58247;7730:1;8328:7;;:19;;8320:63;;;;-1:-1:-1;;;8320:63:0;;;;;;;:::i;:::-;7730:1;8461:7;:18;54918::::1;:16;:18::i;:::-;54910:51;;;::::0;-1:-1:-1;;;54910:51:0;;12779:2:1;54910:51:0::1;::::0;::::1;12761:21:1::0;12818:2;12798:18;;;12791:30;-1:-1:-1;;;12837:18:1;;;12830:50;12897:18;;54910:51:0::1;12577:344:1::0;54910:51:0::1;58284:1:::2;58275:6;:10;:36;;;;;53407:2;58289:6;:22;;58275:36;58267:68;;;::::0;-1:-1:-1;;;58267:68:0;;13128:2:1;58267:68:0::2;::::0;::::2;13110:21:1::0;13167:2;13147:18;;;13140:30;-1:-1:-1;;;13186:18:1;;;13179:49;13245:18;;58267:68:0::2;12926:343:1::0;58267:68:0::2;53269:36;53150:2;53088:4;53269:36;:::i;:::-;58376:6;58354:19;:9;5417:14:::0;;5325:114;58354:19:::2;:28;;;;:::i;:::-;:49;;58346:88;;;::::0;-1:-1:-1;;;58346:88:0;;13609:2:1;58346:88:0::2;::::0;::::2;13591:21:1::0;13648:2;13628:18;;;13621:30;13687:28;13667:18;;;13660:56;13733:18;;58346:88:0::2;13407:350:1::0;58346:88:0::2;58476:9;58453:19;53350:10;58453:6:::0;:19:::2;:::i;:::-;:32;58445:75;;;::::0;-1:-1:-1;;;58445:75:0;;14137:2:1;58445:75:0::2;::::0;::::2;14119:21:1::0;14176:2;14156:18;;;14149:30;14215:32;14195:18;;;14188:60;14265:18;;58445:75:0::2;13935:354:1::0;58445:75:0::2;58533:21;58557:19;:9;5417:14:::0;;5325:114;58557:19:::2;:23;::::0;58579:1:::2;58557:23;:::i;:::-;58533:47;;58598:9;58593:125;58617:6;58613:1;:10;58593:125;;;58645:21;:9;5536:19:::0;;5554:1;5536:19;;;5447:127;58645:21:::2;58681:25;58686:19;:9;5417:14:::0;;5325:114;58686:19:::2;58681:4;:25::i;:::-;58625:3:::0;::::2;::::0;::::2;:::i;:::-;;;;58593:125;;;-1:-1:-1::0;7686:1:0;8640:7;:22;58738:13;58138:630;-1:-1:-1;;58138:630:0:o;31975:239::-;32047:7;32083:16;;;:7;:16;;;;;;-1:-1:-1;;;;;32083:16:0;32118:19;32110:73;;;;-1:-1:-1;;;32110:73:0;;14496:2:1;32110:73:0;;;14478:21:1;14535:2;14515:18;;;14508:30;14574:34;14554:18;;;14547:62;-1:-1:-1;;;14625:18:1;;;14618:39;14674:19;;32110:73:0;14294:405:1;63571:897:0;63664:13;63695:28;63741:7;63736:655;53583:1;63754;:13;;;63736:655;;;63789:20;63812:113;63855:55;63882:5;63890;:1;63894;63890:5;:::i;:::-;63855:55;;63899:5;:1;63903;63899:5;:::i;:::-;63898:11;;63908:1;63898:11;:::i;:::-;63855:55;;:26;:55::i;:::-;63812:24;:113::i;:::-;63789:136;;64023:14;64100:16;64117:1;64100:19;;;;;;;;;;:::i;:::-;;;;;;;;64178:10;:13;64189:1;64178:13;;;;;;;;;;;;;64192:14;64178:29;;;;;;;;;;:::i;:::-;;;;;;;;64208:1;64178:32;;;;;;;;:::i;:::-;;;;;;;;63984:272;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;63942:329;;64292:1;:6;;64297:1;64292:6;64288:91;;64358:14;64341:37;;;;;;;;:::i;:::-;;;;;;;;;;;;;64317:62;;64288:91;-1:-1:-1;63769:3:0;;;;:::i;:::-;;;;63736:655;;;;64439:14;64417:42;;;;;;;;:::i;:::-;;;;;;;;;;;;;64403:57;;;63571:897;;;:::o;53485:55::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;66831:187::-;67342:6;;-1:-1:-1;;;;;67342:6:0;67352:10;67342:20;67334:29;;;;;;66955:27:::1;::::0;;;:10:::1;:27;::::0;;;;;;;:36;;::::1;::::0;;::::1;::::0;::::1;:::i;31705:208::-:0;31777:7;-1:-1:-1;;;;;31805:19:0;;31797:74;;;;-1:-1:-1;;;31797:74:0;;18658:2:1;31797:74:0;;;18640:21:1;18697:2;18677:18;;;18670:30;18736:34;18716:18;;;18709:62;-1:-1:-1;;;18787:18:1;;;18780:40;18837:19;;31797:74:0;18456:406:1;31797:74:0;-1:-1:-1;;;;;;31889:16:0;;;;;:9;:16;;;;;;;31705:208::o;59571:151::-;67342:6;;-1:-1:-1;;;;;67342:6:0;67352:10;67342:20;67334:29;;;;;;7730:1:::1;8328:7;;:19;;8320:63;;;;-1:-1:-1::0;;;8320:63:0::1;;;;;;;:::i;:::-;-1:-1:-1::0;;;;;59672:33:0;;::::2;;::::0;;;:26:::2;:33;::::0;;;;:42;7686:1:::1;8461:7;8640:22:::0;59571:151::o;61771:1735::-;61859:13;61890:23;:240;;;;;;;;;;;;;;;;;;-1:-1:-1;62141:20:0;;62174:441;62196:13;62208:1;53583;62196:13;:::i;:::-;62192:1;:17;;;62174:441;;;62248:113;62291:55;62318:5;62326;:1;62330;62326:5;:::i;:::-;62291:55;;62335:5;:1;62339;62335:5;:::i;62248:113::-;62231:130;;62452:9;62484:10;:13;62495:1;62484:13;;;;;;;;;;;;;62498:14;62484:29;;;;;;;;;;:::i;:::-;;;;;;;;62514:1;62484:32;;;;;;;;:::i;:::-;;;;;;;;62413:175;;;;;;;;;:::i;:::-;;;;;;;;;;;;;62376:227;;62211:3;;;;;:::i;:::-;;;;62174:441;;;;62644:91;62683:41;62710:5;62717:2;62721;62683:26;:41::i;62644:91::-;63078:1;63067:13;;:10;:13;;;:29;;62627:108;;-1:-1:-1;62858:614:0;;63023:9;;63067:13;:29;;;;;;;;;;:::i;:::-;;;;;;;;63097:1;63067:32;;;;;;;;:::i;:::-;;;;;;;;62972:431;;;;;;;;;:::i;:::-;;;;;;;;;;;;;62858:22;:614::i;:::-;62776:711;;;;;;;;:::i;:::-;;;;;;;;;;;;;62748:750;;;;61771:1735;;;:::o;32450:104::-;32506:13;32539:7;32532:14;;;;;:::i;58776:787::-;58878:7;58887;7730:1;8328:7;;:19;;8320:63;;;;-1:-1:-1;;;8320:63:0;;;;;;;:::i;:::-;7730:1;8461:7;:18;55041:19:::1;:17;:19::i;:::-;55033:53;;;::::0;-1:-1:-1;;;55033:53:0;;21044:2:1;55033:53:0::1;::::0;::::1;21026:21:1::0;21083:2;21063:18;;;21056:30;-1:-1:-1;;;21102:18:1;;;21095:51;21163:18;;55033:53:0::1;20842:345:1::0;55033:53:0::1;58915:11:::0;58907:43:::2;;;::::0;-1:-1:-1;;;58907:43:0;;13128:2:1;58907:43:0::2;::::0;::::2;13110:21:1::0;13167:2;13147:18;;;13140:30;-1:-1:-1;;;13186:18:1;;;13179:49;13245:18;;58907:43:0::2;12926:343:1::0;58907:43:0::2;53212:3;58991:6;58969:19;:9;5417:14:::0;;5325:114;58969:19:::2;:28;;;;:::i;:::-;:57;;58961:97;;;::::0;-1:-1:-1;;;58961:97:0;;21394:2:1;58961:97:0::2;::::0;::::2;21376:21:1::0;21433:2;21413:18;;;21406:30;21472:29;21452:18;;;21445:57;21519:18;;58961:97:0::2;21192:351:1::0;58961:97:0::2;59122:10;59071:24;59098:35:::0;;;:23:::2;:35;::::0;;;;;:44:::2;::::0;59136:6;;59098:44:::2;:::i;:::-;59071:71;;53472:2;59161:16;:48;;59153:101;;;::::0;-1:-1:-1;;;59153:101:0;;21750:2:1;59153:101:0::2;::::0;::::2;21732:21:1::0;21789:2;21769:18;;;21762:30;21828:34;21808:18;;;21801:62;-1:-1:-1;;;21879:18:1;;;21872:38;21927:19;;59153:101:0::2;21548:404:1::0;59153:101:0::2;59267:21;59291:19;:9;5417:14:::0;;5325:114;59291:19:::2;:23;::::0;59313:1:::2;59291:23;:::i;:::-;59267:47;;59330:9;59325:125;59349:6;59345:1;:10;59325:125;;;59377:21;:9;5536:19:::0;;5554:1;5536:19;;;5447:127;59377:21:::2;59413:25;59418:19;:9;5417:14:::0;;5325:114;59413:25:::2;59357:3:::0;::::2;::::0;::::2;:::i;:::-;;;;59325:125;;;-1:-1:-1::0;59484:10:0::2;59460:35;::::0;;;:23:::2;:35;::::0;;;;:54;;;;7686:1;8640:7;:22;59460:54;58776:787;-1:-1:-1;;58776:787:0:o;34133:155::-;34228:52;11560:10;34261:8;34271;34228:18;:52::i;52946:48::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;35256:328::-;35431:41;11560:10;35464:7;35431:18;:41::i;:::-;35423:103;;;;-1:-1:-1;;;35423:103:0;;;;;;;:::i;:::-;35537:39;35551:4;35557:2;35561:7;35570:5;35537:13;:39::i;:::-;35256:328;;;;:::o;64476:307::-;37159:4;37183:16;;;:7;:16;;;;;;64578:13;;-1:-1:-1;;;;;37183:16:0;64609:43;;;;-1:-1:-1;;;64609:43:0;;22159:2:1;64609:43:0;;;22141:21:1;22198:2;22178:18;;;22171:30;-1:-1:-1;;;22217:18:1;;;22210:43;22270:18;;64609:43:0;21957:337:1;64609:43:0;64696:7;64705:34;64730:8;64705:24;:34::i;:::-;64750:23;;;;:13;:23;;;;;;;;;64679:95;;;;;;64750:23;64679:95;;:::i;:::-;;;;;;;;;;;;;64665:110;;64476:307;;;:::o;67116:100::-;67342:6;;-1:-1:-1;;;;;67342:6:0;67352:10;67342:20;67334:29;;;;;;67190:6:::1;:18:::0;;-1:-1:-1;;;;;;67190:18:0::1;-1:-1:-1::0;;;;;67190:18:0;;;::::1;::::0;;;::::1;::::0;;67116:100::o;59730:687::-;59796:7;59805;7730:1;8328:7;;:19;;8320:63;;;;-1:-1:-1;;;8320:63:0;;;;;;;:::i;:::-;7730:1;8461:7;:18;53150:2:::1;59863:6:::0;59833:27:::1;:17;5417:14:::0;;5325:114;59833:27:::1;:36;;;;:::i;:::-;:63;;59825:112;;;::::0;-1:-1:-1;;;59825:112:0;;23129:2:1;59825:112:0::1;::::0;::::1;23111:21:1::0;23168:2;23148:18;;;23141:30;23207:34;23187:18;;;23180:62;-1:-1:-1;;;23258:18:1;;;23251:34;23302:19;;59825:112:0::1;22927:400:1::0;59825:112:0::1;59983:10;59956:38;::::0;;;:26:::1;:38;::::0;;;;;:48;-1:-1:-1;59956:48:0::1;59948:102;;;::::0;-1:-1:-1;;;59948:102:0;;23534:2:1;59948:102:0::1;::::0;::::1;23516:21:1::0;23573:2;23553:18;;;23546:30;23612:34;23592:18;;;23585:62;-1:-1:-1;;;23663:18:1;;;23656:39;23712:19;;59948:102:0::1;23332:405:1::0;59948:102:0::1;60063:21;60107:27;:17;5417:14:::0;;5325:114;60107:27:::1;53269:36;53150:2;53088:4;53269:36;:::i;:::-;60087:47;;;;:::i;:::-;:51;::::0;60137:1:::1;60087:51;:::i;:::-;60063:75;;60154:9;60149:161;60173:6;60169:1;:10;60149:161;;;60201:29;:17;5536:19:::0;;5554:1;5536:19;;;5447:127;60201:29:::1;60245:53;60270:27;:17;5417:14:::0;;5325:114;60270:27:::1;53269:36;53150:2;53088:4;53269:36;:::i;:::-;60250:47;;;;:::i;60245:53::-;60181:3:::0;::::1;::::0;::::1;:::i;:::-;;;;60149:161;;;-1:-1:-1::0;60347:10:0::1;60320:38;::::0;;;:26:::1;:38;::::0;;;;:48;;60362:6;;60320:38;:48:::1;::::0;60362:6;;60320:48:::1;:::i;:::-;::::0;;;-1:-1:-1;;7686:1:0;8640:7;:22;60387:13;59730:687;-1:-1:-1;;59730:687:0:o;31336:305::-;31438:4;-1:-1:-1;;;;;;31475:40:0;;-1:-1:-1;;;31475:40:0;;:105;;-1:-1:-1;;;;;;;31532:48:0;;-1:-1:-1;;;31532:48:0;31475:105;:158;;;-1:-1:-1;;;;;;;;;;23119:40:0;;;31597:36;23010:157;41240:174;41315:24;;;;:15;:24;;;;;:29;;-1:-1:-1;;;;;;41315:29:0;-1:-1:-1;;;;;41315:29:0;;;;;;;;:24;;41369:23;41315:24;41369:14;:23::i;:::-;-1:-1:-1;;;;;41360:46:0;;;;;;;;;;;41240:174;;:::o;37388:348::-;37481:4;37183:16;;;:7;:16;;;;;;-1:-1:-1;;;;;37183:16:0;37498:73;;;;-1:-1:-1;;;37498:73:0;;23944:2:1;37498:73:0;;;23926:21:1;23983:2;23963:18;;;23956:30;24022:34;24002:18;;;23995:62;-1:-1:-1;;;24073:18:1;;;24066:42;24125:19;;37498:73:0;23742:408:1;37498:73:0;37582:13;37598:23;37613:7;37598:14;:23::i;:::-;37582:39;;37651:5;-1:-1:-1;;;;;37640:16:0;:7;-1:-1:-1;;;;;37640:16:0;;:51;;;;37684:7;-1:-1:-1;;;;;37660:31:0;:20;37672:7;37660:11;:20::i;:::-;-1:-1:-1;;;;;37660:31:0;;37640:51;:87;;;-1:-1:-1;;;;;;34480:25:0;;;34456:4;34480:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;37695:32;37632:96;37388:348;-1:-1:-1;;;;37388:348:0:o;40497:625::-;40656:4;-1:-1:-1;;;;;40629:31:0;:23;40644:7;40629:14;:23::i;:::-;-1:-1:-1;;;;;40629:31:0;;40621:81;;;;-1:-1:-1;;;40621:81:0;;24357:2:1;40621:81:0;;;24339:21:1;24396:2;24376:18;;;24369:30;24435:34;24415:18;;;24408:62;-1:-1:-1;;;24486:18:1;;;24479:35;24531:19;;40621:81:0;24155:401:1;40621:81:0;-1:-1:-1;;;;;40721:16:0;;40713:65;;;;-1:-1:-1;;;40713:65:0;;24763:2:1;40713:65:0;;;24745:21:1;24802:2;24782:18;;;24775:30;24841:34;24821:18;;;24814:62;-1:-1:-1;;;24892:18:1;;;24885:34;24936:19;;40713:65:0;24561:400:1;40713:65:0;40791:39;40812:4;40818:2;40822:7;40791:20;:39::i;:::-;40895:29;40912:1;40916:7;40895:8;:29::i;:::-;-1:-1:-1;;;;;40937:15:0;;;;;;:9;:15;;;;;:20;;40956:1;;40937:15;:20;;40956:1;;40937:20;:::i;:::-;;;;-1:-1:-1;;;;;;;40968:13:0;;;;;;:9;:13;;;;;:18;;40985:1;;40968:13;:18;;40985:1;;40968:18;:::i;:::-;;;;-1:-1:-1;;40997:16:0;;;;:7;:16;;;;;;:21;;-1:-1:-1;;;;;;40997:21:0;-1:-1:-1;;;;;40997:21:0;;;;;;;;;41036:27;;40997:16;;41036:27;;;;;;;33433:341;33363:411;;:::o;57921:209::-;57997:28;58002:7;58011:10;58023:1;57997:4;:28::i;:::-;57972:22;;;;:13;:22;;;;;;;;:53;;;;:22;;:53;;;;;;:::i;:::-;;58075:4;58036:12;58049:13;:22;58063:7;58049:22;;;;;;;;;;;58036:36;;;;;;:::i;:::-;;;;;;;;;;;;;;:43;;;;;-1:-1:-1;;58036:43:0;;;;;;;;;58092:30;58102:10;58114:7;58092:9;:30::i;:::-;57921:209;:::o;3633:420::-;3767:13;3823:3;3793:21;3870;3881:10;3870:8;:21;:::i;:::-;3860:32;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;3860:32:0;-1:-1:-1;3838:54:0;-1:-1:-1;3920:10:0;3903:111;3936:8;3932:1;:12;3903:111;;;3991:8;4000:1;3991:11;;;;;;;;:::i;:::-;;;;;-1:-1:-1;;;;;;3991:11:0;3966:6;3973:14;3977:10;3973:1;:14;:::i;:::-;3966:22;;;;;;;;:::i;:::-;;;;:36;-1:-1:-1;;;;;3966:36:0;;;;;;;;-1:-1:-1;3946:3:0;;;;:::i;:::-;;;;3903:111;;;-1:-1:-1;4038:6:0;-1:-1:-1;;3633:420:0;;;;;;:::o;3122:503::-;3208:16;3271:2;3208:16;;3310:286;3332:7;:14;3328:1;:18;;;3310:286;;;3419:2;3403:7;3411:1;3403:10;;;;;;;;;;:::i;:::-;;;;;;;3391:30;;;;3390:85;;;3472:2;3456:7;3464:1;3456:10;;;;;;;;;;:::i;:::-;;;;;;;3444:30;;3390:85;3368:217;;;3510:10;3518:2;3510:10;;:::i;:::-;;;3567:2;3553:7;3561:1;3553:10;;;;;;;;;;:::i;:::-;;;;;3547:22;;;3553:10;;3547:22;:::i;:::-;3539:30;;;;:::i;:::-;;;3368:217;3348:3;;;;:::i;:::-;;;;3310:286;;220:2256;278:13;308:4;:11;323:1;308:16;304:31;;;-1:-1:-1;;326:9:0;;;;;;;;;-1:-1:-1;326:9:0;;;220:2256::o;304:31::-;387:19;409:5;;;;;;;;;;;;;;;;;387:27;;466:18;512:1;493:4;:11;507:1;493:15;;;;:::i;:::-;492:21;;;;:::i;:::-;487:27;;:1;:27;:::i;:::-;466:48;-1:-1:-1;597:20:0;631:15;466:48;644:2;631:15;:::i;:::-;620:27;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;620:27:0;;597:50;;744:10;736:6;729:26;839:1;832:5;828:13;898:4;949;943:11;934:7;930:25;1045:2;1037:6;1033:15;1118:1045;1153:6;1144:7;1141:19;1118:1045;;;1223:1;1210:15;;;1291:14;;1474:4;1462:2;1458:14;;;1454:25;;1440:40;;1434:47;1429:3;1425:57;;;1364:137;;1665:2;1661:14;;;1657:25;;1643:40;;1637:47;1628:57;;1547:1;1532:17;;1567:137;1868:1;1864:13;;;1860:24;;1846:39;;1840:46;1831:56;;1735:17;;;1770:136;2062:16;;2048:31;;2042:38;2033:48;;1937:17;;;1972:128;;;;2131:17;;1118:1045;;;2236:1;2229:4;2223:11;2219:19;2257:1;2252:84;;;;2355:1;2350:82;;;;2212:220;;2252:84;-1:-1:-1;;;;;2285:17:0;;2278:43;2252:84;;2350:82;-1:-1:-1;;;;;2383:17:0;;2376:41;2212:220;-1:-1:-1;2462:6:0;;220:2256;-1:-1:-1;;;;;;;;220:2256:0:o;41556:315::-;41711:8;-1:-1:-1;;;;;41702:17:0;:5;-1:-1:-1;;;;;41702:17:0;;;41694:55;;;;-1:-1:-1;;;41694:55:0;;25827:2:1;41694:55:0;;;25809:21:1;25866:2;25846:18;;;25839:30;25905:27;25885:18;;;25878:55;25950:18;;41694:55:0;25625:349:1;41694:55:0;-1:-1:-1;;;;;41760:25:0;;;;;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;;:46;;-1:-1:-1;;41760:46:0;;;;;;;;;;41822:41;;1476::1;;;41822::0;;1449:18:1;41822:41:0;;;;;;;41556:315;;;:::o;36466:::-;36623:28;36633:4;36639:2;36643:7;36623:9;:28::i;:::-;36670:48;36693:4;36699:2;36703:7;36712:5;36670:22;:48::i;:::-;36662:111;;;;-1:-1:-1;;;36662:111:0;;;;;;;:::i;2582:532::-;2638:13;2668:10;2664:53;;-1:-1:-1;;2695:10:0;;;;;;;;;;;;-1:-1:-1;;;2695:10:0;;;;;2582:532::o;2664:53::-;2742:5;2727:12;2783:78;2790:9;;2783:78;;2816:8;;;;:::i;:::-;;-1:-1:-1;2839:10:0;;-1:-1:-1;2847:2:0;2839:10;;:::i;:::-;;;2783:78;;;2871:19;2903:6;2893:17;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;2893:17:0;;2871:39;;2921:154;2928:10;;2921:154;;2955:11;2965:1;2955:11;;:::i;:::-;;-1:-1:-1;3024:10:0;3032:2;3024:5;:10;:::i;:::-;3011:24;;:2;:24;:::i;:::-;2998:39;;2981:6;2988;2981:14;;;;;;;;:::i;:::-;;;;:56;-1:-1:-1;;;;;2981:56:0;;;;;;;;-1:-1:-1;3052:11:0;3061:2;3052:11;;:::i;:::-;;;2921:154;;47137:589;-1:-1:-1;;;;;47343:18:0;;47339:187;;47378:40;47410:7;48553:10;:17;;48526:24;;;;:15;:24;;;;;:44;;;48581:24;;;;;;;;;;;;48449:164;47378:40;47339:187;;;47448:2;-1:-1:-1;;;;;47440:10:0;:4;-1:-1:-1;;;;;47440:10:0;;47436:90;;47467:47;47500:4;47506:7;47467:32;:47::i;:::-;-1:-1:-1;;;;;47540:16:0;;47536:183;;47573:45;47610:7;47573:36;:45::i;47536:183::-;47646:4;-1:-1:-1;;;;;47640:10:0;:2;-1:-1:-1;;;;;47640:10:0;;47636:83;;47667:40;47695:2;47699:7;47667:27;:40::i;56578:1335::-;56680:13;56719:2;56714;:7;56706:35;;;;-1:-1:-1;;;56706:35:0;;26717:2:1;56706:35:0;;;26699:21:1;26756:2;26736:18;;;26729:30;-1:-1:-1;;;26775:18:1;;;26768:45;26830:18;;56706:35:0;26515:339:1;56706:35:0;56808:30;;;;;;;;;:25;:30;;;56851:953;53583:1;56869;:13;;;56851:953;;;56904:10;:12;;;:10;:12;;;:::i;:::-;;;;-1:-1:-1;;57281:10:0;;57042:276;;;57089:15;57042:276;;;27128:19:1;57135:16:0;27163:12:1;;;27156:28;;;;27200:12;;;;27193:28;;;27255:15;;;-1:-1:-1;;27251:53:1;27237:12;;;27230:75;27321:13;;;27314:29;;;27359:13;;;27352:29;;;;-1:-1:-1;;53088:4:0;;27397:13:1;;57042:276:0;;;;;;;;;;;;57006:335;;;;;;56976:384;;:397;;;;:::i;:::-;56931:457;;57405:20;57428:24;57438:10;57428:24;;57450:1;57428:9;:24::i;:::-;57405:47;;57508:2;57473:32;57498:6;57473:24;:32::i;:::-;:37;;;57469:322;;;57591:11;57609:6;57574:42;;;;;;;;;:::i;:::-;;;;;;;;;;;;;57531:104;;57469:322;;;57736:11;57749:6;57719:37;;;;;;;;;:::i;:::-;;;;;;;;;;;;;57676:99;;57469:322;56889:915;;56884:3;;;;;:::i;:::-;;;;56851:953;;;;57820:12;57833:11;57820:25;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;57816:58;;;57854:20;57859:2;57863;57867:6;:2;57872:1;57867:6;:::i;:::-;57854:4;:20::i;:::-;57847:27;;;;;38078:110;38154:26;38164:2;38168:7;38154:26;;;;;;;;;;;;:9;:26::i;42436:799::-;42591:4;-1:-1:-1;;;;;42612:13:0;;13222:19;:23;42608:620;;42648:72;;-1:-1:-1;;;42648:72:0;;-1:-1:-1;;;;;42648:36:0;;;;;:72;;11560:10;;42699:4;;42705:7;;42714:5;;42648:72;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;-1:-1:-1;42648:72:0;;;;;;;;-1:-1:-1;;42648:72:0;;;;;;;;;;;;:::i;:::-;;;42644:529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;42890:13:0;;42886:272;;42933:60;;-1:-1:-1;;;42933:60:0;;;;;;;:::i;42886:272::-;43108:6;43102:13;43093:6;43089:2;43085:15;43078:38;42644:529;-1:-1:-1;;;;;;42771:51:0;-1:-1:-1;;;42771:51:0;;-1:-1:-1;42764:58:0;;42608:620;-1:-1:-1;43212:4:0;42436:799;;;;;;:::o;49240:988::-;49506:22;49556:1;49531:22;49548:4;49531:16;:22::i;:::-;:26;;;;:::i;:::-;49568:18;49589:26;;;:17;:26;;;;;;49506:51;;-1:-1:-1;49722:28:0;;;49718:328;;-1:-1:-1;;;;;49789:18:0;;49767:19;49789:18;;;:12;:18;;;;;;;;:34;;;;;;;;;49840:30;;;;;;:44;;;49957:30;;:17;:30;;;;;:43;;;49718:328;-1:-1:-1;50142:26:0;;;;:17;:26;;;;;;;;50135:33;;;-1:-1:-1;;;;;50186:18:0;;;;;:12;:18;;;;;:34;;;;;;;50179:41;49240:988::o;50523:1079::-;50801:10;:17;50776:22;;50801:21;;50821:1;;50801:21;:::i;:::-;50833:18;50854:24;;;:15;:24;;;;;;51227:10;:26;;50776:46;;-1:-1:-1;50854:24:0;;50776:46;;51227:26;;;;;;:::i;:::-;;;;;;;;;51205:48;;51291:11;51266:10;51277;51266:22;;;;;;;;:::i;:::-;;;;;;;;;;;;:36;;;;51371:28;;;:15;:28;;;;;;;:41;;;51543:24;;;;;51536:31;51578:10;:16;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;50594:1008;;;50523:1079;:::o;48027:221::-;48112:14;48129:20;48146:2;48129:16;:20::i;:::-;-1:-1:-1;;;;;48160:16:0;;;;;;;:12;:16;;;;;;;;:24;;;;;;;;:34;;;48205:26;;;:17;:26;;;;;;:35;;;;-1:-1:-1;48027:221:0:o;55717:572::-;55825:13;55856:24;55900:7;55895:366;55917:5;55923:11;55917:18;;;;;;;;;:::i;:::-;;:25;55913:29;;;;55895:366;;;55964:21;55988:5;55994:11;55988:18;;;;;;;;;:::i;:::-;;56007:1;55988:21;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;55964:45;;56060:17;56046:31;;:10;:31;;:99;;;;-1:-1:-1;56111:34:0;56131:14;56111:17;:34;:::i;:::-;56098:47;;:10;:47;56046:99;56024:156;;;56168:12;:1;:10;;;:12::i;:::-;56161:19;;;;;;;56024:156;56215:34;56235:14;56215:17;:34;:::i;:::-;56195:54;;55949:312;55944:3;;;;;:::i;:::-;;;;55895:366;;;;56273:8;;;38415:321;38545:18;38551:2;38555:7;38545:5;:18::i;:::-;38596:54;38627:1;38631:2;38635:7;38644:5;38596:22;:54::i;:::-;38574:154;;;;-1:-1:-1;;;38574:154:0;;;;;;;:::i;39072:439::-;-1:-1:-1;;;;;39152:16:0;;39144:61;;;;-1:-1:-1;;;39144:61:0;;30107:2:1;39144:61:0;;;30089:21:1;;;30126:18;;;30119:30;30185:34;30165:18;;;30158:62;30237:18;;39144:61:0;29905:356:1;39144:61:0;37159:4;37183:16;;;:7;:16;;;;;;-1:-1:-1;;;;;37183:16:0;:30;39216:58;;;;-1:-1:-1;;;39216:58:0;;30468:2:1;39216:58:0;;;30450:21:1;30507:2;30487:18;;;30480:30;30546;30526:18;;;30519:58;30594:18;;39216:58:0;30266:352:1;39216:58:0;39287:45;39316:1;39320:2;39324:7;39287:20;:45::i;:::-;-1:-1:-1;;;;;39345:13:0;;;;;;:9;:13;;;;;:18;;39362:1;;39345:13;:18;;39362:1;;39345:18;:::i;:::-;;;;-1:-1:-1;;39374:16:0;;;;:7;:16;;;;;;:21;;-1:-1:-1;;;;;;39374:21:0;-1:-1:-1;;;;;39374:21:0;;;;;;;;39413:33;;39374:16;;;39413:33;;39374:16;;39413:33;66650:18:::1;66575:101:::0;:::o;-1:-1:-1:-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;;;;:::o;:::-;;;;;;;;;;;;;;;;;;;;:::i;14:180:1:-;73:6;126:2;114:9;105:7;101:23;97:32;94:52;;;142:1;139;132:12;94:52;-1:-1:-1;165:23:1;;14:180;-1:-1:-1;14:180:1:o;199:258::-;271:1;281:113;295:6;292:1;289:13;281:113;;;371:11;;;365:18;352:11;;;345:39;317:2;310:10;281:113;;;412:6;409:1;406:13;403:48;;;-1:-1:-1;;447:1:1;429:16;;422:27;199:258::o;462:::-;504:3;542:5;536:12;569:6;564:3;557:19;585:63;641:6;634:4;629:3;625:14;618:4;611:5;607:16;585:63;:::i;:::-;702:2;681:15;-1:-1:-1;;677:29:1;668:39;;;;709:4;664:50;;462:258;-1:-1:-1;;462:258:1:o;725:220::-;874:2;863:9;856:21;837:4;894:45;935:2;924:9;920:18;912:6;894:45;:::i;950:131::-;-1:-1:-1;;;;;;1024:32:1;;1014:43;;1004:71;;1071:1;1068;1061:12;1086:245;1144:6;1197:2;1185:9;1176:7;1172:23;1168:32;1165:52;;;1213:1;1210;1203:12;1165:52;1252:9;1239:23;1271:30;1295:5;1271:30;:::i;1736:173::-;1804:20;;-1:-1:-1;;;;;1853:31:1;;1843:42;;1833:70;;1899:1;1896;1889:12;1833:70;1736:173;;;:::o;1914:254::-;1982:6;1990;2043:2;2031:9;2022:7;2018:23;2014:32;2011:52;;;2059:1;2056;2049:12;2011:52;2082:29;2101:9;2082:29;:::i;:::-;2072:39;2158:2;2143:18;;;;2130:32;;-1:-1:-1;;;1914:254:1:o;2355:328::-;2432:6;2440;2448;2501:2;2489:9;2480:7;2476:23;2472:32;2469:52;;;2517:1;2514;2507:12;2469:52;2540:29;2559:9;2540:29;:::i;:::-;2530:39;;2588:38;2622:2;2611:9;2607:18;2588:38;:::i;:::-;2578:48;;2673:2;2662:9;2658:18;2645:32;2635:42;;2355:328;;;;;:::o;2688:127::-;2749:10;2744:3;2740:20;2737:1;2730:31;2780:4;2777:1;2770:15;2804:4;2801:1;2794:15;2820:275;2891:2;2885:9;2956:2;2937:13;;-1:-1:-1;;2933:27:1;2921:40;;2991:18;2976:34;;3012:22;;;2973:62;2970:88;;;3038:18;;:::i;:::-;3074:2;3067:22;2820:275;;-1:-1:-1;2820:275:1:o;3100:407::-;3165:5;3199:18;3191:6;3188:30;3185:56;;;3221:18;;:::i;:::-;3259:57;3304:2;3283:15;;-1:-1:-1;;3279:29:1;3310:4;3275:40;3259:57;:::i;:::-;3250:66;;3339:6;3332:5;3325:21;3379:3;3370:6;3365:3;3361:16;3358:25;3355:45;;;3396:1;3393;3386:12;3355:45;3445:6;3440:3;3433:4;3426:5;3422:16;3409:43;3499:1;3492:4;3483:6;3476:5;3472:18;3468:29;3461:40;3100:407;;;;;:::o;3512:222::-;3555:5;3608:3;3601:4;3593:6;3589:17;3585:27;3575:55;;3626:1;3623;3616:12;3575:55;3648:80;3724:3;3715:6;3702:20;3695:4;3687:6;3683:17;3648:80;:::i;3739:322::-;3808:6;3861:2;3849:9;3840:7;3836:23;3832:32;3829:52;;;3877:1;3874;3867:12;3829:52;3917:9;3904:23;3950:18;3942:6;3939:30;3936:50;;;3982:1;3979;3972:12;3936:50;4005;4047:7;4038:6;4027:9;4023:22;4005:50;:::i;4066:186::-;4125:6;4178:2;4166:9;4157:7;4153:23;4149:32;4146:52;;;4194:1;4191;4184:12;4146:52;4217:29;4236:9;4217:29;:::i;4257:632::-;4428:2;4480:21;;;4550:13;;4453:18;;;4572:22;;;4399:4;;4428:2;4651:15;;;;4625:2;4610:18;;;4399:4;4694:169;4708:6;4705:1;4702:13;4694:169;;;4769:13;;4757:26;;4838:15;;;;4803:12;;;;4730:1;4723:9;4694:169;;;-1:-1:-1;4880:3:1;;4257:632;-1:-1:-1;;;;;;4257:632:1:o;5147:192::-;5216:4;5249:18;5241:6;5238:30;5235:56;;;5271:18;;:::i;:::-;-1:-1:-1;5316:1:1;5312:14;5328:4;5308:25;;5147:192::o;5344:1856::-;5472:6;5480;5533:2;5521:9;5512:7;5508:23;5504:32;5501:52;;;5549:1;5546;5539:12;5501:52;5585:9;5572:23;5562:33;;5646:2;5635:9;5631:18;5618:32;5669:18;5710:2;5702:6;5699:14;5696:34;;;5726:1;5723;5716:12;5696:34;5764:6;5753:9;5749:22;5739:32;;5809:7;5802:4;5798:2;5794:13;5790:27;5780:55;;5831:1;5828;5821:12;5780:55;5855:83;5871:66;5933:2;5920:16;5871:66;:::i;:::-;5855:83;:::i;:::-;5984:16;;5972:29;;;6026:2;6017:12;;;;5960:3;6068:1;6064:24;6056:33;;6052:42;6106:19;;;6103:39;;;6138:1;6135;6128:12;6103:39;6170:2;6166;6162:11;6182:988;6198:6;6193:3;6190:15;6182:988;;;6277:2;6271:3;6258:17;6255:25;6252:45;;;6293:1;6290;6283:12;6252:45;6341:3;6328:17;6324:2;6320:26;6386:7;6381:2;6377;6373:11;6369:25;6359:53;;6408:1;6405;6398:12;6359:53;6456:2;6452;6448:11;6435:25;6486:69;6502:52;6551:2;6502:52;:::i;6486:69::-;6599:17;;;6697:1;6693:10;;;;6685:19;;6706:2;6681:28;;6649:2;6638:14;;;6725:21;;;6722:41;;;6759:1;6756;6749:12;6722:41;6797:2;6793;6789:11;6813:284;6831:8;6824:5;6821:19;6813:284;;;6926:2;6918:5;6905:19;6902:27;6899:47;;;6942:1;6939;6932:12;6899:47;6977:65;7034:7;7029:2;7020:5;7007:19;7003:2;6999:28;6995:37;6977:65;:::i;:::-;6963:80;;7080:2;7069:14;;;;6852;6813:284;;;-1:-1:-1;7110:18:1;;-1:-1:-1;;7157:2:1;7148:12;;;;6215;;;;;-1:-1:-1;6182:988:1;;;-1:-1:-1;5344:1856:1;;7189:5;;-1:-1:-1;5344:1856:1;-1:-1:-1;;;;;;5344:1856:1:o;7205:347::-;7270:6;7278;7331:2;7319:9;7310:7;7306:23;7302:32;7299:52;;;7347:1;7344;7337:12;7299:52;7370:29;7389:9;7370:29;:::i;:::-;7360:39;;7449:2;7438:9;7434:18;7421:32;7496:5;7489:13;7482:21;7475:5;7472:32;7462:60;;7518:1;7515;7508:12;7462:60;7541:5;7531:15;;;7205:347;;;;;:::o;7557:316::-;7634:6;7642;7650;7703:2;7691:9;7682:7;7678:23;7674:32;7671:52;;;7719:1;7716;7709:12;7671:52;-1:-1:-1;;7742:23:1;;;7812:2;7797:18;;7784:32;;-1:-1:-1;7863:2:1;7848:18;;;7835:32;;7557:316;-1:-1:-1;7557:316:1:o;7878:667::-;7973:6;7981;7989;7997;8050:3;8038:9;8029:7;8025:23;8021:33;8018:53;;;8067:1;8064;8057:12;8018:53;8090:29;8109:9;8090:29;:::i;:::-;8080:39;;8138:38;8172:2;8161:9;8157:18;8138:38;:::i;:::-;8128:48;;8223:2;8212:9;8208:18;8195:32;8185:42;;8278:2;8267:9;8263:18;8250:32;8305:18;8297:6;8294:30;8291:50;;;8337:1;8334;8327:12;8291:50;8360:22;;8413:4;8405:13;;8401:27;-1:-1:-1;8391:55:1;;8442:1;8439;8432:12;8391:55;8465:74;8531:7;8526:2;8513:16;8508:2;8504;8500:11;8465:74;:::i;:::-;8455:84;;;7878:667;;;;;;;:::o;8550:260::-;8618:6;8626;8679:2;8667:9;8658:7;8654:23;8650:32;8647:52;;;8695:1;8692;8685:12;8647:52;8718:29;8737:9;8718:29;:::i;:::-;8708:39;;8766:38;8800:2;8789:9;8785:18;8766:38;:::i;:::-;8756:48;;8550:260;;;;;:::o;8815:380::-;8894:1;8890:12;;;;8937;;;8958:61;;9012:4;9004:6;9000:17;8990:27;;8958:61;9065:2;9057:6;9054:14;9034:18;9031:38;9028:161;;;9111:10;9106:3;9102:20;9099:1;9092:31;9146:4;9143:1;9136:15;9174:4;9171:1;9164:15;9028:161;;8815:380;;;:::o;10440:127::-;10501:10;10496:3;10492:20;10489:1;10482:31;10532:4;10529:1;10522:15;10556:4;10553:1;10546:15;10572:125;10612:4;10640:1;10637;10634:8;10631:34;;;10645:18;;:::i;:::-;-1:-1:-1;10682:9:1;;10572:125::o;10702:413::-;10904:2;10886:21;;;10943:2;10923:18;;;10916:30;10982:34;10977:2;10962:18;;10955:62;-1:-1:-1;;;11048:2:1;11033:18;;11026:47;11105:3;11090:19;;10702:413::o;11532:127::-;11593:10;11588:3;11584:20;11581:1;11574:31;11624:4;11621:1;11614:15;11648:4;11645:1;11638:15;11664:135;11703:3;-1:-1:-1;;11724:17:1;;11721:43;;;11744:18;;:::i;:::-;-1:-1:-1;11791:1:1;11780:13;;11664:135::o;12217:355::-;12419:2;12401:21;;;12458:2;12438:18;;;12431:30;12497:33;12492:2;12477:18;;12470:61;12563:2;12548:18;;12217:355::o;13274:128::-;13314:3;13345:1;13341:6;13338:1;13335:13;13332:39;;;13351:18;;:::i;:::-;-1:-1:-1;13387:9:1;;13274:128::o;13762:168::-;13802:7;13868:1;13864;13860:6;13856:14;13853:1;13850:21;13845:1;13838:9;13831:17;13827:45;13824:71;;;13875:18;;:::i;:::-;-1:-1:-1;13915:9:1;;13762:168::o;14704:238::-;14742:7;14782:4;14779:1;14775:12;14814:4;14811:1;14807:12;14874:3;14868:4;14864:14;14859:3;14856:23;14849:3;14842:11;14835:19;14831:49;14828:75;;;14883:18;;:::i;:::-;14923:13;;14704:238;-1:-1:-1;;;14704:238:1:o;14947:204::-;14985:3;15021:4;15018:1;15014:12;15053:4;15050:1;15046:12;15088:3;15082:4;15078:14;15073:3;15070:23;15067:49;;;15096:18;;:::i;:::-;15132:13;;14947:204;-1:-1:-1;;;14947:204:1:o;15282:973::-;15367:12;;15332:3;;15422:1;15442:18;;;;15495;;;;15522:61;;15576:4;15568:6;15564:17;15554:27;;15522:61;15602:2;15650;15642:6;15639:14;15619:18;15616:38;15613:161;;;15696:10;15691:3;15687:20;15684:1;15677:31;15731:4;15728:1;15721:15;15759:4;15756:1;15749:15;15613:161;15790:18;15817:104;;;;15935:1;15930:319;;;;15783:466;;15817:104;-1:-1:-1;;15850:24:1;;15838:37;;15895:16;;;;-1:-1:-1;15817:104:1;;15930:319;15229:1;15222:14;;;15266:4;15253:18;;16024:1;16038:165;16052:6;16049:1;16046:13;16038:165;;;16130:14;;16117:11;;;16110:35;16173:16;;;;16067:10;;16038:165;;;16042:3;;16232:6;16227:3;16223:16;16216:23;;15783:466;;;;;;;15282:973;;;;:::o;16260:990::-;16784:3;16822:6;16816:13;16838:53;16884:6;16879:3;16872:4;16864:6;16860:17;16838:53;:::i;:::-;-1:-1:-1;;;16913:16:1;;;16938:57;;;17014:49;17059:2;17048:14;;17040:6;17014:49;:::i;:::-;-1:-1:-1;;;17072:46:1;;17004:59;-1:-1:-1;17137:46:1;17179:2;17171:11;;17163:6;17137:46;:::i;:::-;-1:-1:-1;;;17192:26:1;;17242:1;17234:10;;16260:990;-1:-1:-1;;;;;;16260:990:1:o;17255:439::-;17487:3;17525:6;17519:13;17541:53;17587:6;17582:3;17575:4;17567:6;17563:17;17541:53;:::i;:::-;-1:-1:-1;;;17616:16:1;;17641:18;;;-1:-1:-1;17686:1:1;17675:13;;17255:439;-1:-1:-1;17255:439:1:o;17699:175::-;17736:3;17780:4;17773:5;17769:16;17809:4;17800:7;17797:17;17794:43;;;17817:18;;:::i;:::-;17866:1;17853:15;;17699:175;-1:-1:-1;;17699:175:1:o;17879:572::-;-1:-1:-1;;;18237:3:1;18230:16;18212:3;18275:6;18269:13;18291:61;18345:6;18341:1;18336:3;18332:11;18325:4;18317:6;18313:17;18291:61;:::i;:::-;-1:-1:-1;;;18411:1:1;18371:16;;;;18403:10;;;18396:23;-1:-1:-1;18443:1:1;18435:10;;17879:572;-1:-1:-1;17879:572:1:o;18867:538::-;19144:3;19182:6;19176:13;19198:53;19244:6;19239:3;19232:4;19224:6;19220:17;19198:53;:::i;:::-;19270:51;19313:6;19308:3;19304:16;19296:6;19270:51;:::i;:::-;19341:30;19330:42;;19396:2;19388:11;;18867:538;-1:-1:-1;;;;;18867:538:1:o;19410:977::-;19687:3;19725:6;19719:13;19741:53;19787:6;19782:3;19775:4;19767:6;19763:17;19741:53;:::i;:::-;19813:51;19856:6;19851:3;19847:16;19839:6;19813:51;:::i;:::-;19884:34;19873:46;;19950:34;19943:4;19935:13;;19928:57;20014:34;20009:2;20001:11;;19994:55;20078:34;20073:2;20065:11;;20058:55;20143:34;20137:3;20129:12;;20122:56;20208:34;20202:3;20194:12;;20187:56;20273:34;20267:3;20259:12;;20252:56;-1:-1:-1;;;20332:3:1;20324:12;;20317:36;20377:3;20369:12;;19410:977;-1:-1:-1;;;;;19410:977:1:o;20392:445::-;20654:28;20649:3;20642:41;20624:3;20712:6;20706:13;20728:62;20783:6;20778:2;20773:3;20769:12;20762:4;20754:6;20750:17;20728:62;:::i;:::-;20810:16;;;;20828:2;20806:25;;20392:445;-1:-1:-1;;20392:445:1:o;22299:623::-;22621:3;22649:38;22683:3;22675:6;22649:38;:::i;:::-;22716:6;22710:13;22732:52;22777:6;22773:2;22766:4;22758:6;22754:17;22732:52;:::i;:::-;-1:-1:-1;;;22806:15:1;;22830:22;;;22868:48;22913:1;22902:13;;22894:6;22868:48;:::i;:::-;22861:55;22299:623;-1:-1:-1;;;;;;22299:623:1:o;24966:197::-;25094:3;25119:38;25153:3;25145:6;25119:38;:::i;25168:195::-;25206:4;25243;25240:1;25236:12;25275:4;25272:1;25268:12;25300:3;25295;25292:12;25289:38;;;25307:18;;:::i;:::-;25344:13;;;25168:195;-1:-1:-1;;;25168:195:1:o;25368:127::-;25429:10;25424:3;25420:20;25417:1;25410:31;25460:4;25457:1;25450:15;25484:4;25481:1;25474:15;25500:120;25540:1;25566;25556:35;;25571:18;;:::i;:::-;-1:-1:-1;25605:9:1;;25500:120::o;25979:414::-;26181:2;26163:21;;;26220:2;26200:18;;;26193:30;26259:34;26254:2;26239:18;;26232:62;-1:-1:-1;;;26325:2:1;26310:18;;26303:48;26383:3;26368:19;;25979:414::o;26398:112::-;26430:1;26456;26446:35;;26461:18;;:::i;:::-;-1:-1:-1;26495:9:1;;26398:112::o;27421:614::-;27701:3;27739:6;27733:13;27755:53;27801:6;27796:3;27789:4;27781:6;27777:17;27755:53;:::i;:::-;-1:-1:-1;;;27830:16:1;;;27855:18;;;27898:13;;27920:65;27898:13;27972:1;27961:13;;27954:4;27942:17;;27920:65;:::i;:::-;28005:20;28027:1;28001:28;;27421:614;-1:-1:-1;;;;27421:614:1:o;28040:470::-;28219:3;28257:6;28251:13;28273:53;28319:6;28314:3;28307:4;28299:6;28295:17;28273:53;:::i;:::-;28389:13;;28348:16;;;;28411:57;28389:13;28348:16;28445:4;28433:17;;28411:57;:::i;:::-;28484:20;;28040:470;-1:-1:-1;;;;28040:470:1:o;28515:276::-;28646:3;28684:6;28678:13;28700:53;28746:6;28741:3;28734:4;28726:6;28722:17;28700:53;:::i;:::-;28769:16;;;;;28515:276;-1:-1:-1;;28515:276:1:o;28796:489::-;-1:-1:-1;;;;;29065:15:1;;;29047:34;;29117:15;;29112:2;29097:18;;29090:43;29164:2;29149:18;;29142:34;;;29212:3;29207:2;29192:18;;29185:31;;;28990:4;;29233:46;;29259:19;;29251:6;29233:46;:::i;29290:249::-;29359:6;29412:2;29400:9;29391:7;29387:23;29383:32;29380:52;;;29428:1;29425;29418:12;29380:52;29460:9;29454:16;29479:30;29503:5;29479:30;:::i;29544:127::-;29605:10;29600:3;29596:20;29593:1;29586:31;29636:4;29633:1;29626:15;29660:4;29657:1;29650:15;29676:224;29715:3;29743:6;29776:2;29773:1;29769:10;29806:2;29803:1;29799:10;29837:3;29833:2;29829:12;29824:3;29821:21;29818:47;;;29845:18;;:::i

Swarm Source

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