ETH Price: $3,167.98 (-4.09%)
Gas: 9 Gwei

Token

Cave Goblins (CAVEG)
 

Overview

Max Total Supply

2,777 CAVEG

Holders

553

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A

Other Info

Balance
3 CAVEG
0x37f7be01a006efc949c215c86a8ce51a93f5ac6a
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:
CaveGoblins

Compiler Version
v0.8.7+commit.e28d00a7

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

/**
 *Submitted for verification at Etherscan.io on 2022-05-23
*/

/**
 *Submitted for verification at Etherscan.io on 2022-05-19
*/

// SPDX-License-Identifier: MIT

/**
 * @title Cave Goblins contract
 * @dev Extends ERC721A - thanks azuki
 */

// File: @openzeppelin/contracts/token/ERC20/IERC20.sol


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

pragma solidity ^0.8.0;

/**
 * @dev Interface of the ERC20 standard as defined in the EIP.
 */
interface IERC20 {
    /**
     * @dev Returns the amount of tokens in existence.
     */
    function totalSupply() external view returns (uint256);

    /**
     * @dev Returns the amount of tokens owned by `account`.
     */
    function balanceOf(address account) external view returns (uint256);

    /**
     * @dev Moves `amount` tokens from the caller's account to `to`.
     *
     * Returns a boolean value indicating whether the operation succeeded.
     *
     * Emits a {Transfer} event.
     */
    function transfer(address to, uint256 amount) external returns (bool);

    /**
     * @dev Returns the remaining number of tokens that `spender` will be
     * allowed to spend on behalf of `owner` through {transferFrom}. This is
     * zero by default.
     *
     * This value changes when {approve} or {transferFrom} are called.
     */
    function allowance(address owner, address spender) external view returns (uint256);

    /**
     * @dev Sets `amount` as the allowance of `spender` over the caller's tokens.
     *
     * Returns a boolean value indicating whether the operation succeeded.
     *
     * IMPORTANT: Beware that changing an allowance with this method brings the risk
     * that someone may use both the old and the new allowance by unfortunate
     * transaction ordering. One possible solution to mitigate this race
     * condition is to first reduce the spender's allowance to 0 and set the
     * desired value afterwards:
     * https://github.com/ethereum/EIPs/issues/20#issuecomment-263524729
     *
     * Emits an {Approval} event.
     */
    function approve(address spender, uint256 amount) external returns (bool);

    /**
     * @dev Moves `amount` tokens from `from` to `to` using the
     * allowance mechanism. `amount` is then deducted from the caller's
     * allowance.
     *
     * Returns a boolean value indicating whether the operation succeeded.
     *
     * Emits a {Transfer} event.
     */
    function transferFrom(
        address from,
        address to,
        uint256 amount
    ) external returns (bool);

    /**
     * @dev Emitted when `value` tokens are moved from one account (`from`) to
     * another (`to`).
     *
     * Note that `value` may be zero.
     */
    event Transfer(address indexed from, address indexed to, uint256 value);

    /**
     * @dev Emitted when the allowance of a `spender` for an `owner` is set by
     * a call to {approve}. `value` is the new allowance.
     */
    event Approval(address indexed owner, address indexed spender, uint256 value);
}

// 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/access/Ownable.sol


// OpenZeppelin Contracts v4.4.1 (access/Ownable.sol)

pragma solidity ^0.8.0;


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

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

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

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

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

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

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

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

// 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/ERC20/utils/SafeERC20.sol


// OpenZeppelin Contracts v4.4.1 (token/ERC20/utils/SafeERC20.sol)

pragma solidity ^0.8.0;



/**
 * @title SafeERC20
 * @dev Wrappers around ERC20 operations that throw on failure (when the token
 * contract returns false). Tokens that return no value (and instead revert or
 * throw on failure) are also supported, non-reverting calls are assumed to be
 * successful.
 * To use this library you can add a `using SafeERC20 for IERC20;` statement to your contract,
 * which allows you to call the safe operations as `token.safeTransfer(...)`, etc.
 */
library SafeERC20 {
    using Address for address;

    function safeTransfer(
        IERC20 token,
        address to,
        uint256 value
    ) internal {
        _callOptionalReturn(token, abi.encodeWithSelector(token.transfer.selector, to, value));
    }

    function safeTransferFrom(
        IERC20 token,
        address from,
        address to,
        uint256 value
    ) internal {
        _callOptionalReturn(token, abi.encodeWithSelector(token.transferFrom.selector, from, to, value));
    }

    /**
     * @dev Deprecated. This function has issues similar to the ones found in
     * {IERC20-approve}, and its usage is discouraged.
     *
     * Whenever possible, use {safeIncreaseAllowance} and
     * {safeDecreaseAllowance} instead.
     */
    function safeApprove(
        IERC20 token,
        address spender,
        uint256 value
    ) internal {
        // safeApprove should only be called when setting an initial allowance,
        // or when resetting it to zero. To increase and decrease it, use
        // 'safeIncreaseAllowance' and 'safeDecreaseAllowance'
        require(
            (value == 0) || (token.allowance(address(this), spender) == 0),
            "SafeERC20: approve from non-zero to non-zero allowance"
        );
        _callOptionalReturn(token, abi.encodeWithSelector(token.approve.selector, spender, value));
    }

    function safeIncreaseAllowance(
        IERC20 token,
        address spender,
        uint256 value
    ) internal {
        uint256 newAllowance = token.allowance(address(this), spender) + value;
        _callOptionalReturn(token, abi.encodeWithSelector(token.approve.selector, spender, newAllowance));
    }

    function safeDecreaseAllowance(
        IERC20 token,
        address spender,
        uint256 value
    ) internal {
        unchecked {
            uint256 oldAllowance = token.allowance(address(this), spender);
            require(oldAllowance >= value, "SafeERC20: decreased allowance below zero");
            uint256 newAllowance = oldAllowance - value;
            _callOptionalReturn(token, abi.encodeWithSelector(token.approve.selector, spender, newAllowance));
        }
    }

    /**
     * @dev Imitates a Solidity high-level call (i.e. a regular function call to a contract), relaxing the requirement
     * on the return value: the return value is optional (but if data is returned, it must not be false).
     * @param token The token targeted by the call.
     * @param data The call data (encoded using abi.encode or one of its variants).
     */
    function _callOptionalReturn(IERC20 token, bytes memory data) private {
        // We need to perform a low level call here, to bypass Solidity's return data size checking mechanism, since
        // we're implementing it ourselves. We use {Address.functionCall} to perform this call, which verifies that
        // the target address contains contract code and also asserts for success in the low-level call.

        bytes memory returndata = address(token).functionCall(data, "SafeERC20: low-level call failed");
        if (returndata.length > 0) {
            // Return data is optional
            require(abi.decode(returndata, (bool)), "SafeERC20: ERC20 operation did not succeed");
        }
    }
}


// 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: contracts/TwistedToonz.sol


// Creator: Chiru Labs

pragma solidity ^0.8.0;









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

    struct TokenOwnership {
        address addr;
        uint64 startTimestamp;
    }

    struct AddressData {
        uint128 balance;
        uint128 numberMinted;
    }

    uint256 internal currentIndex;

    // Token name
    string private _name;

    // Token symbol
    string private _symbol;

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

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

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

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

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

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

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

    /**
     * @dev See {IERC721Enumerable-tokenOfOwnerByIndex}.
     * This read function is O(totalSupply). If calling from a separate contract, be sure to test gas first.
     * It may also degrade with extremely large collection sizes (e.g >> 10000), test for your use case.
     */
    function tokenOfOwnerByIndex(address owner, uint256 index) public view override returns (uint256) {
        require(index < balanceOf(owner), "ERC721A: owner index out of bounds");
        uint256 numMintedSoFar = totalSupply();
        uint256 tokenIdsIdx;
        address currOwnershipAddr;

        // Counter overflow is impossible as the loop breaks when uint256 i is equal to another uint256 numMintedSoFar.
        unchecked {
            for (uint256 i; i < numMintedSoFar; i++) {
                TokenOwnership memory ownership = _ownerships[i];
                if (ownership.addr != address(0)) {
                    currOwnershipAddr = ownership.addr;
                }
                if (currOwnershipAddr == owner) {
                    if (tokenIdsIdx == index) {
                        return i;
                    }
                    tokenIdsIdx++;
                }
            }
        }

        revert("ERC721A: unable to get token of owner by index");
    }

    /**
     * @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 ||
            interfaceId == type(IERC721Enumerable).interfaceId ||
            super.supportsInterface(interfaceId);
    }

    /**
     * @dev See {IERC721-balanceOf}.
     */
    function balanceOf(address owner) public view override returns (uint256) {
        require(owner != address(0), "ERC721A: balance query for the zero address");
        return uint256(_addressData[owner].balance);
    }

    function _numberMinted(address owner) internal view returns (uint256) {
        require(owner != address(0), "ERC721A: number minted query for the zero address");
        return uint256(_addressData[owner].numberMinted);
    }

    /**
     * Gas spent here starts off proportional to the maximum mint batch size.
     * It gradually moves to O(1) as tokens get transferred around in the collection over time.
     */
    function ownershipOf(uint256 tokenId) internal view returns (TokenOwnership memory) {
        require(_exists(tokenId), "ERC721A: owner query for nonexistent token");

        unchecked {
            for (uint256 curr = tokenId; curr >= 0; curr--) {
                TokenOwnership memory ownership = _ownerships[curr];
                if (ownership.addr != address(0)) {
                    return ownership;
                }
            }
        }

        revert("ERC721A: unable to determine the owner of token");
    }

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

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

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

    /**
     * @dev See {IERC721Metadata-tokenURI}.
     */
    function tokenURI(uint256 tokenId) public view virtual override returns (string memory) {
        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 override {
        address owner = ERC721A.ownerOf(tokenId);
        require(to != owner, "ERC721A: approval to current owner");

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

        _approve(to, tokenId, owner);
    }

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

        return _tokenApprovals[tokenId];
    }

    /**
     * @dev See {IERC721-setApprovalForAll}.
     */
    function setApprovalForAll(address operator, bool approved) public override {
        require(operator != _msgSender(), "ERC721A: approve to caller");

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

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

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

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

    /**
     * @dev See {IERC721-safeTransferFrom}.
     */
    function safeTransferFrom(
        address from,
        address to,
        uint256 tokenId,
        bytes memory _data
    ) public override {
        _transfer(from, to, tokenId);
        require(
            _checkOnERC721Received(from, to, tokenId, _data),
            "ERC721A: 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`),
     */
    function _exists(uint256 tokenId) internal view returns (bool) {
        return tokenId < currentIndex;
    }

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

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

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

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

        // Overflows are incredibly unrealistic.
        // balance or numberMinted overflow if current value of either + quantity > 3.4e38 (2**128) - 1
        // updatedIndex overflows if currentIndex + quantity > 1.56e77 (2**256) - 1
        unchecked {
            _addressData[to].balance += uint128(quantity);
            _addressData[to].numberMinted += uint128(quantity);

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

            uint256 updatedIndex = startTokenId;

            for (uint256 i; i < quantity; i++) {
                emit Transfer(address(0), to, updatedIndex);
                if (safe) {
                    require(
                        _checkOnERC721Received(address(0), to, updatedIndex, _data),
                        "ERC721A: transfer to non ERC721Receiver implementer"
                    );
                }

                updatedIndex++;
            }

            currentIndex = updatedIndex;
        }

        _afterTokenTransfers(address(0), to, startTokenId, quantity);
    }

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

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

        require(isApprovedOrOwner, "ERC721A: transfer caller is not owner nor approved");

        require(prevOwnership.addr == from, "ERC721A: transfer from incorrect owner");
        require(to != address(0), "ERC721A: transfer to the zero address");

        _beforeTokenTransfers(from, to, tokenId, 1);

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

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

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

            // If the ownership slot of tokenId+1 is not explicitly set, that means the transfer initiator owns it.
            // Set the slot of tokenId+1 explicitly in storage to maintain correctness for ownerOf(tokenId+1) calls.
            uint256 nextTokenId = tokenId + 1;
            if (_ownerships[nextTokenId].addr == address(0)) {
                if (_exists(nextTokenId)) {
                    _ownerships[nextTokenId].addr = prevOwnership.addr;
                    _ownerships[nextTokenId].startTimestamp = prevOwnership.startTimestamp;
                }
            }
        }

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

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

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

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

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

contract CaveGoblins is ERC721A, Ownable, ReentrancyGuard {

  string public        baseURI;
  uint public          price             = 0.003 ether;
  uint public          maxPerTx          = 5;
  uint public          maxPerWallet      = 10;
  uint public          totalFree         = 1000;
  uint public          maxSupply         = 2777;
  uint public          nextOwnerToExplicitlySet;
  bool public          mintEnabled;

  constructor() ERC721A("Cave Goblins", "CAVEG"){
  }

  function mint(uint256 amt) external payable
  {
    uint cost = price;
    if(totalSupply() + amt < totalFree + 1) {
      cost = 0;
    }
    require(mintEnabled, "Minting is not live yet, hold on cave goblins.");
    require(msg.sender == tx.origin,"Be yourself, honey.");
    require(msg.value == amt * cost,"Please send the exact amount.");
    require( amt < maxPerTx + 1, "Max per TX reached.");
    require(numberMinted(msg.sender) + amt <= maxPerWallet,"Too many per wallet!");
    require(totalSupply() + amt < maxSupply + 1,"No more cave goblins");


    _safeMint(msg.sender, amt);
  }

  function ownerBatchMint(uint256 amt) external onlyOwner
  {
    require(totalSupply() + amt < maxSupply + 1,"too many!");

    _safeMint(msg.sender, amt);
  }

  function toggleMinting() external onlyOwner {
      mintEnabled = !mintEnabled;
  }

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

  function setBaseURI(string calldata baseURI_) external onlyOwner {
    baseURI = baseURI_;
  }

  function setPrice(uint256 price_) external onlyOwner {
      price = price_;
  }

  function setTotalFree(uint256 totalFree_) external onlyOwner {
      totalFree = totalFree_;
  }

  function setMaxPerTx(uint256 maxPerTx_) external onlyOwner {
      maxPerTx = maxPerTx_;
  }

  function setmaxSupply(uint256 maxSupply_) external onlyOwner {
      maxSupply = maxSupply_;
  }

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

  function withdraw() external onlyOwner nonReentrant {
    (bool success, ) = msg.sender.call{value: address(this).balance}("");
    require(success, "Transfer failed.");
  }

}

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":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"baseURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"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":"maxPerTx","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxPerWallet","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"amt","type":"uint256"}],"name":"mint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"mintEnabled","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"nextOwnerToExplicitlySet","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"numberMinted","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"amt","type":"uint256"}],"name":"ownerBatchMint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"price","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"_data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"baseURI_","type":"string"}],"name":"setBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"maxPerTx_","type":"uint256"}],"name":"setMaxPerTx","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"price_","type":"uint256"}],"name":"setPrice","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"totalFree_","type":"uint256"}],"name":"setTotalFree","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"maxSupply_","type":"uint256"}],"name":"setmaxSupply","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"toggleMinting","outputs":[],"stateMutability":"nonpayable","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":"totalFree","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"withdraw","outputs":[],"stateMutability":"nonpayable","type":"function"}]

6080604052660aa87bee538000600a556005600b55600a600c556103e8600d55610ad9600e553480156200003257600080fd5b506040518060400160405280600c81526020017f4361766520476f626c696e7300000000000000000000000000000000000000008152506040518060400160405280600581526020017f43415645470000000000000000000000000000000000000000000000000000008152508160019080519060200190620000b7929190620001cf565b508060029080519060200190620000d0929190620001cf565b505050620000f3620000e76200010160201b60201c565b6200010960201b60201c565b6001600881905550620002e4565b600033905090565b6000600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600760006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b828054620001dd906200027f565b90600052602060002090601f0160209004810192826200020157600085556200024d565b82601f106200021c57805160ff19168380011785556200024d565b828001600101855582156200024d579182015b828111156200024c5782518255916020019190600101906200022f565b5b5090506200025c919062000260565b5090565b5b808211156200027b57600081600090555060010162000261565b5090565b600060028204905060018216806200029857607f821691505b60208210811415620002af57620002ae620002b5565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b61498480620002f46000396000f3fe60806040526004361061021a5760003560e01c8063715018a611610123578063b88d4fde116100ab578063d7224ba01161006f578063d7224ba01461079c578063dc33e681146107c7578063e985e9c514610804578063f2fde38b14610841578063f968adbe1461086a5761021a565b8063b88d4fde146106b7578063c6f6f216146106e0578063c87b56dd14610709578063d123973014610746578063d5abeb01146107715761021a565b806391b7f5ed116100f257806391b7f5ed146105f357806395d89b411461061c578063a035b1fe14610647578063a0712d6814610672578063a22cb4651461068e5761021a565b8063715018a6146105715780637d55094d146105885780638da5cb5b1461059f5780638db89f07146105ca5761021a565b80633ccfd60b116101a657806355f804b31161017557806355f804b31461047a578063563aaf11146104a35780636352211e146104cc5780636c0360eb1461050957806370a08231146105345761021a565b80633ccfd60b146103d257806342842e0e146103e9578063453c2310146104125780634f6ccce71461043d5761021a565b806318160ddd116101ed57806318160ddd146102ed578063228025e81461031857806323b872dd146103415780632f745c591461036a578063333e44e6146103a75761021a565b806301ffc9a71461021f57806306fdde031461025c578063081812fc14610287578063095ea7b3146102c4575b600080fd5b34801561022b57600080fd5b50610246600480360381019061024191906132bc565b610895565b604051610253919061391a565b60405180910390f35b34801561026857600080fd5b506102716109df565b60405161027e9190613935565b60405180910390f35b34801561029357600080fd5b506102ae60048036038101906102a99190613363565b610a71565b6040516102bb91906138b3565b60405180910390f35b3480156102d057600080fd5b506102eb60048036038101906102e6919061327c565b610af6565b005b3480156102f957600080fd5b50610302610c0f565b60405161030f9190613cf7565b60405180910390f35b34801561032457600080fd5b5061033f600480360381019061033a9190613363565b610c18565b005b34801561034d57600080fd5b5061036860048036038101906103639190613166565b610c9e565b005b34801561037657600080fd5b50610391600480360381019061038c919061327c565b610cae565b60405161039e9190613cf7565b60405180910390f35b3480156103b357600080fd5b506103bc610ea0565b6040516103c99190613cf7565b60405180910390f35b3480156103de57600080fd5b506103e7610ea6565b005b3480156103f557600080fd5b50610410600480360381019061040b9190613166565b611027565b005b34801561041e57600080fd5b50610427611047565b6040516104349190613cf7565b60405180910390f35b34801561044957600080fd5b50610464600480360381019061045f9190613363565b61104d565b6040516104719190613cf7565b60405180910390f35b34801561048657600080fd5b506104a1600480360381019061049c9190613316565b6110a0565b005b3480156104af57600080fd5b506104ca60048036038101906104c59190613363565b611132565b005b3480156104d857600080fd5b506104f360048036038101906104ee9190613363565b6111b8565b60405161050091906138b3565b60405180910390f35b34801561051557600080fd5b5061051e6111ce565b60405161052b9190613935565b60405180910390f35b34801561054057600080fd5b5061055b600480360381019061055691906130f9565b61125c565b6040516105689190613cf7565b60405180910390f35b34801561057d57600080fd5b50610586611345565b005b34801561059457600080fd5b5061059d6113cd565b005b3480156105ab57600080fd5b506105b4611475565b6040516105c191906138b3565b60405180910390f35b3480156105d657600080fd5b506105f160048036038101906105ec9190613363565b61149f565b005b3480156105ff57600080fd5b5061061a60048036038101906106159190613363565b61158a565b005b34801561062857600080fd5b50610631611610565b60405161063e9190613935565b60405180910390f35b34801561065357600080fd5b5061065c6116a2565b6040516106699190613cf7565b60405180910390f35b61068c60048036038101906106879190613363565b6116a8565b005b34801561069a57600080fd5b506106b560048036038101906106b0919061323c565b6118fe565b005b3480156106c357600080fd5b506106de60048036038101906106d991906131b9565b611a7f565b005b3480156106ec57600080fd5b5061070760048036038101906107029190613363565b611adb565b005b34801561071557600080fd5b50610730600480360381019061072b9190613363565b611b61565b60405161073d9190613935565b60405180910390f35b34801561075257600080fd5b5061075b611c09565b604051610768919061391a565b60405180910390f35b34801561077d57600080fd5b50610786611c1c565b6040516107939190613cf7565b60405180910390f35b3480156107a857600080fd5b506107b1611c22565b6040516107be9190613cf7565b60405180910390f35b3480156107d357600080fd5b506107ee60048036038101906107e991906130f9565b611c28565b6040516107fb9190613cf7565b60405180910390f35b34801561081057600080fd5b5061082b60048036038101906108269190613126565b611c3a565b604051610838919061391a565b60405180910390f35b34801561084d57600080fd5b50610868600480360381019061086391906130f9565b611cce565b005b34801561087657600080fd5b5061087f611dc6565b60405161088c9190613cf7565b60405180910390f35b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916148061096057507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b806109c857507f780e9d63000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b806109d857506109d782611dcc565b5b9050919050565b6060600180546109ee90613f81565b80601f0160208091040260200160405190810160405280929190818152602001828054610a1a90613f81565b8015610a675780601f10610a3c57610100808354040283529160200191610a67565b820191906000526020600020905b815481529060010190602001808311610a4a57829003601f168201915b5050505050905090565b6000610a7c82611e36565b610abb576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ab290613cd7565b60405180910390fd5b6005600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b6000610b01826111b8565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610b72576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b6990613bb7565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16610b91611e43565b73ffffffffffffffffffffffffffffffffffffffff161480610bc05750610bbf81610bba611e43565b611c3a565b5b610bff576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610bf690613ab7565b60405180910390fd5b610c0a838383611e4b565b505050565b60008054905090565b610c20611e43565b73ffffffffffffffffffffffffffffffffffffffff16610c3e611475565b73ffffffffffffffffffffffffffffffffffffffff1614610c94576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c8b90613b17565b60405180910390fd5b80600e8190555050565b610ca9838383611efd565b505050565b6000610cb98361125c565b8210610cfa576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610cf190613957565b60405180910390fd5b6000610d04610c0f565b905060008060005b83811015610e5e576000600360008381526020019081526020016000206040518060400160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815250509050600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff1614610dfe57806000015192505b8773ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610e505786841415610e47578195505050505050610e9a565b83806001019450505b508080600101915050610d0c565b506040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e9190613c77565b60405180910390fd5b92915050565b600d5481565b610eae611e43565b73ffffffffffffffffffffffffffffffffffffffff16610ecc611475565b73ffffffffffffffffffffffffffffffffffffffff1614610f22576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f1990613b17565b60405180910390fd5b60026008541415610f68576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f5f90613c97565b60405180910390fd5b600260088190555060003373ffffffffffffffffffffffffffffffffffffffff1647604051610f969061389e565b60006040518083038185875af1925050503d8060008114610fd3576040519150601f19603f3d011682016040523d82523d6000602084013e610fd8565b606091505b505090508061101c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161101390613bd7565b60405180910390fd5b506001600881905550565b61104283838360405180602001604052806000815250611a7f565b505050565b600c5481565b6000611057610c0f565b8210611098576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161108f906139f7565b60405180910390fd5b819050919050565b6110a8611e43565b73ffffffffffffffffffffffffffffffffffffffff166110c6611475565b73ffffffffffffffffffffffffffffffffffffffff161461111c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161111390613b17565b60405180910390fd5b81816009919061112d929190612eed565b505050565b61113a611e43565b73ffffffffffffffffffffffffffffffffffffffff16611158611475565b73ffffffffffffffffffffffffffffffffffffffff16146111ae576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111a590613b17565b60405180910390fd5b80600d8190555050565b60006111c38261243d565b600001519050919050565b600980546111db90613f81565b80601f016020809104026020016040519081016040528092919081815260200182805461120790613f81565b80156112545780601f1061122957610100808354040283529160200191611254565b820191906000526020600020905b81548152906001019060200180831161123757829003601f168201915b505050505081565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156112cd576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112c490613ad7565b60405180910390fd5b600460008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160009054906101000a90046fffffffffffffffffffffffffffffffff166fffffffffffffffffffffffffffffffff169050919050565b61134d611e43565b73ffffffffffffffffffffffffffffffffffffffff1661136b611475565b73ffffffffffffffffffffffffffffffffffffffff16146113c1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113b890613b17565b60405180910390fd5b6113cb60006125d7565b565b6113d5611e43565b73ffffffffffffffffffffffffffffffffffffffff166113f3611475565b73ffffffffffffffffffffffffffffffffffffffff1614611449576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161144090613b17565b60405180910390fd5b601060009054906101000a900460ff1615601060006101000a81548160ff021916908315150217905550565b6000600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b6114a7611e43565b73ffffffffffffffffffffffffffffffffffffffff166114c5611475565b73ffffffffffffffffffffffffffffffffffffffff161461151b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161151290613b17565b60405180910390fd5b6001600e5461152a9190613db6565b81611533610c0f565b61153d9190613db6565b1061157d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161157490613a77565b60405180910390fd5b611587338261269d565b50565b611592611e43565b73ffffffffffffffffffffffffffffffffffffffff166115b0611475565b73ffffffffffffffffffffffffffffffffffffffff1614611606576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115fd90613b17565b60405180910390fd5b80600a8190555050565b60606002805461161f90613f81565b80601f016020809104026020016040519081016040528092919081815260200182805461164b90613f81565b80156116985780601f1061166d57610100808354040283529160200191611698565b820191906000526020600020905b81548152906001019060200180831161167b57829003601f168201915b5050505050905090565b600a5481565b6000600a5490506001600d546116be9190613db6565b826116c7610c0f565b6116d19190613db6565b10156116dc57600090505b601060009054906101000a900460ff1661172b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161172290613a57565b60405180910390fd5b3273ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff1614611799576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161179090613997565b60405180910390fd5b80826117a59190613e3d565b34146117e6576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117dd90613b97565b60405180910390fd5b6001600b546117f59190613db6565b8210611836576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161182d90613c57565b60405180910390fd5b600c548261184333611c28565b61184d9190613db6565b111561188e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611885906139d7565b60405180910390fd5b6001600e5461189d9190613db6565b826118a6610c0f565b6118b09190613db6565b106118f0576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118e790613a97565b60405180910390fd5b6118fa338361269d565b5050565b611906611e43565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611974576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161196b90613b57565b60405180910390fd5b8060066000611981611e43565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff16611a2e611e43565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c3183604051611a73919061391a565b60405180910390a35050565b611a8a848484611efd565b611a96848484846126bb565b611ad5576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611acc90613bf7565b60405180910390fd5b50505050565b611ae3611e43565b73ffffffffffffffffffffffffffffffffffffffff16611b01611475565b73ffffffffffffffffffffffffffffffffffffffff1614611b57576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b4e90613b17565b60405180910390fd5b80600b8190555050565b6060611b6c82611e36565b611bab576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ba290613b37565b60405180910390fd5b6000611bb5612852565b9050600081511415611bd65760405180602001604052806000815250611c01565b80611be0846128e4565b604051602001611bf192919061387a565b6040516020818303038152906040525b915050919050565b601060009054906101000a900460ff1681565b600e5481565b600f5481565b6000611c3382612a45565b9050919050565b6000600660008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b611cd6611e43565b73ffffffffffffffffffffffffffffffffffffffff16611cf4611475565b73ffffffffffffffffffffffffffffffffffffffff1614611d4a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d4190613b17565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415611dba576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611db190613977565b60405180910390fd5b611dc3816125d7565b50565b600b5481565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b6000805482109050919050565b600033905090565b826005600084815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b6000611f088261243d565b90506000816000015173ffffffffffffffffffffffffffffffffffffffff16611f2f611e43565b73ffffffffffffffffffffffffffffffffffffffff161480611f8b5750611f54611e43565b73ffffffffffffffffffffffffffffffffffffffff16611f7384610a71565b73ffffffffffffffffffffffffffffffffffffffff16145b80611fa75750611fa68260000151611fa1611e43565b611c3a565b5b905080611fe9576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611fe090613b77565b60405180910390fd5b8473ffffffffffffffffffffffffffffffffffffffff16826000015173ffffffffffffffffffffffffffffffffffffffff161461205b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161205290613af7565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1614156120cb576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016120c290613a17565b60405180910390fd5b6120d88585856001612b2e565b6120e86000848460000151611e4b565b6001600460008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a90046fffffffffffffffffffffffffffffffff160392506101000a8154816fffffffffffffffffffffffffffffffff02191690836fffffffffffffffffffffffffffffffff1602179055506001600460008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a90046fffffffffffffffffffffffffffffffff160192506101000a8154816fffffffffffffffffffffffffffffffff02191690836fffffffffffffffffffffffffffffffff160217905550836003600085815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550426003600085815260200190815260200160002060000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055506000600184019050600073ffffffffffffffffffffffffffffffffffffffff166003600083815260200190815260200160002060000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614156123cd5761232c81611e36565b156123cc5782600001516003600083815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555082602001516003600083815260200190815260200160002060000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055505b5b50828473ffffffffffffffffffffffffffffffffffffffff168673ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a46124368585856001612b34565b5050505050565b612445612f73565b61244e82611e36565b61248d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612484906139b7565b60405180910390fd5b60008290505b60008110612596576000600360008381526020019081526020016000206040518060400160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815250509050600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff16146125875780925050506125d2565b50808060019003915050612493565b506040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016125c990613cb7565b60405180910390fd5b919050565b6000600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600760006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b6126b7828260405180602001604052806000815250612b3a565b5050565b60006126dc8473ffffffffffffffffffffffffffffffffffffffff16612b4c565b15612845578373ffffffffffffffffffffffffffffffffffffffff1663150b7a02612705611e43565b8786866040518563ffffffff1660e01b815260040161272794939291906138ce565b602060405180830381600087803b15801561274157600080fd5b505af192505050801561277257506040513d601f19601f8201168201806040525081019061276f91906132e9565b60015b6127f5573d80600081146127a2576040519150601f19603f3d011682016040523d82523d6000602084013e6127a7565b606091505b506000815114156127ed576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016127e490613bf7565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161491505061284a565b600190505b949350505050565b60606009805461286190613f81565b80601f016020809104026020016040519081016040528092919081815260200182805461288d90613f81565b80156128da5780601f106128af576101008083540402835291602001916128da565b820191906000526020600020905b8154815290600101906020018083116128bd57829003601f168201915b5050505050905090565b6060600082141561292c576040518060400160405280600181526020017f30000000000000000000000000000000000000000000000000000000000000008152509050612a40565b600082905060005b6000821461295e57808061294790613fe4565b915050600a826129579190613e0c565b9150612934565b60008167ffffffffffffffff81111561297a5761297961411a565b5b6040519080825280601f01601f1916602001820160405280156129ac5781602001600182028036833780820191505090505b5090505b60008514612a39576001826129c59190613e97565b9150600a856129d4919061402d565b60306129e09190613db6565b60f81b8183815181106129f6576129f56140eb565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a85612a329190613e0c565b94506129b0565b8093505050505b919050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415612ab6576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612aad90613a37565b60405180910390fd5b600460008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160109054906101000a90046fffffffffffffffffffffffffffffffff166fffffffffffffffffffffffffffffffff169050919050565b50505050565b50505050565b612b478383836001612b6f565b505050565b6000808273ffffffffffffffffffffffffffffffffffffffff163b119050919050565b600080549050600073ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff161415612be5576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612bdc90613c17565b60405180910390fd5b6000841415612c29576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612c2090613c37565b60405180910390fd5b612c366000868387612b2e565b83600460008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a90046fffffffffffffffffffffffffffffffff160192506101000a8154816fffffffffffffffffffffffffffffffff02191690836fffffffffffffffffffffffffffffffff16021790555083600460008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160108282829054906101000a90046fffffffffffffffffffffffffffffffff160192506101000a8154816fffffffffffffffffffffffffffffffff02191690836fffffffffffffffffffffffffffffffff160217905550846003600083815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550426003600083815260200190815260200160002060000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff160217905550600081905060005b85811015612ed057818773ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a48315612ebb57612e7b60008884886126bb565b612eba576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612eb190613bf7565b60405180910390fd5b5b81806001019250508080600101915050612e04565b508060008190555050612ee66000868387612b34565b5050505050565b828054612ef990613f81565b90600052602060002090601f016020900481019282612f1b5760008555612f62565b82601f10612f3457803560ff1916838001178555612f62565b82800160010185558215612f62579182015b82811115612f61578235825591602001919060010190612f46565b5b509050612f6f9190612fad565b5090565b6040518060400160405280600073ffffffffffffffffffffffffffffffffffffffff168152602001600067ffffffffffffffff1681525090565b5b80821115612fc6576000816000905550600101612fae565b5090565b6000612fdd612fd884613d37565b613d12565b905082815260208101848484011115612ff957612ff8614158565b5b613004848285613f3f565b509392505050565b60008135905061301b816148f2565b92915050565b60008135905061303081614909565b92915050565b60008135905061304581614920565b92915050565b60008151905061305a81614920565b92915050565b600082601f8301126130755761307461414e565b5b8135613085848260208601612fca565b91505092915050565b60008083601f8401126130a4576130a361414e565b5b8235905067ffffffffffffffff8111156130c1576130c0614149565b5b6020830191508360018202830111156130dd576130dc614153565b5b9250929050565b6000813590506130f381614937565b92915050565b60006020828403121561310f5761310e614162565b5b600061311d8482850161300c565b91505092915050565b6000806040838503121561313d5761313c614162565b5b600061314b8582860161300c565b925050602061315c8582860161300c565b9150509250929050565b60008060006060848603121561317f5761317e614162565b5b600061318d8682870161300c565b935050602061319e8682870161300c565b92505060406131af868287016130e4565b9150509250925092565b600080600080608085870312156131d3576131d2614162565b5b60006131e18782880161300c565b94505060206131f28782880161300c565b9350506040613203878288016130e4565b925050606085013567ffffffffffffffff8111156132245761322361415d565b5b61323087828801613060565b91505092959194509250565b6000806040838503121561325357613252614162565b5b60006132618582860161300c565b925050602061327285828601613021565b9150509250929050565b6000806040838503121561329357613292614162565b5b60006132a18582860161300c565b92505060206132b2858286016130e4565b9150509250929050565b6000602082840312156132d2576132d1614162565b5b60006132e084828501613036565b91505092915050565b6000602082840312156132ff576132fe614162565b5b600061330d8482850161304b565b91505092915050565b6000806020838503121561332d5761332c614162565b5b600083013567ffffffffffffffff81111561334b5761334a61415d565b5b6133578582860161308e565b92509250509250929050565b60006020828403121561337957613378614162565b5b6000613387848285016130e4565b91505092915050565b61339981613ecb565b82525050565b6133a881613edd565b82525050565b60006133b982613d68565b6133c38185613d7e565b93506133d3818560208601613f4e565b6133dc81614167565b840191505092915050565b60006133f282613d73565b6133fc8185613d9a565b935061340c818560208601613f4e565b61341581614167565b840191505092915050565b600061342b82613d73565b6134358185613dab565b9350613445818560208601613f4e565b80840191505092915050565b600061345e602283613d9a565b915061346982614178565b604082019050919050565b6000613481602683613d9a565b915061348c826141c7565b604082019050919050565b60006134a4601383613d9a565b91506134af82614216565b602082019050919050565b60006134c7602a83613d9a565b91506134d28261423f565b604082019050919050565b60006134ea601483613d9a565b91506134f58261428e565b602082019050919050565b600061350d602383613d9a565b9150613518826142b7565b604082019050919050565b6000613530602583613d9a565b915061353b82614306565b604082019050919050565b6000613553603183613d9a565b915061355e82614355565b604082019050919050565b6000613576602e83613d9a565b9150613581826143a4565b604082019050919050565b6000613599600983613d9a565b91506135a4826143f3565b602082019050919050565b60006135bc601483613d9a565b91506135c78261441c565b602082019050919050565b60006135df603983613d9a565b91506135ea82614445565b604082019050919050565b6000613602602b83613d9a565b915061360d82614494565b604082019050919050565b6000613625602683613d9a565b9150613630826144e3565b604082019050919050565b6000613648602083613d9a565b915061365382614532565b602082019050919050565b600061366b602f83613d9a565b91506136768261455b565b604082019050919050565b600061368e601a83613d9a565b9150613699826145aa565b602082019050919050565b60006136b1603283613d9a565b91506136bc826145d3565b604082019050919050565b60006136d4601d83613d9a565b91506136df82614622565b602082019050919050565b60006136f7602283613d9a565b91506137028261464b565b604082019050919050565b600061371a600083613d8f565b91506137258261469a565b600082019050919050565b600061373d601083613d9a565b91506137488261469d565b602082019050919050565b6000613760603383613d9a565b915061376b826146c6565b604082019050919050565b6000613783602183613d9a565b915061378e82614715565b604082019050919050565b60006137a6602883613d9a565b91506137b182614764565b604082019050919050565b60006137c9601383613d9a565b91506137d4826147b3565b602082019050919050565b60006137ec602e83613d9a565b91506137f7826147dc565b604082019050919050565b600061380f601f83613d9a565b915061381a8261482b565b602082019050919050565b6000613832602f83613d9a565b915061383d82614854565b604082019050919050565b6000613855602d83613d9a565b9150613860826148a3565b604082019050919050565b61387481613f35565b82525050565b60006138868285613420565b91506138928284613420565b91508190509392505050565b60006138a98261370d565b9150819050919050565b60006020820190506138c86000830184613390565b92915050565b60006080820190506138e36000830187613390565b6138f06020830186613390565b6138fd604083018561386b565b818103606083015261390f81846133ae565b905095945050505050565b600060208201905061392f600083018461339f565b92915050565b6000602082019050818103600083015261394f81846133e7565b905092915050565b6000602082019050818103600083015261397081613451565b9050919050565b6000602082019050818103600083015261399081613474565b9050919050565b600060208201905081810360008301526139b081613497565b9050919050565b600060208201905081810360008301526139d0816134ba565b9050919050565b600060208201905081810360008301526139f0816134dd565b9050919050565b60006020820190508181036000830152613a1081613500565b9050919050565b60006020820190508181036000830152613a3081613523565b9050919050565b60006020820190508181036000830152613a5081613546565b9050919050565b60006020820190508181036000830152613a7081613569565b9050919050565b60006020820190508181036000830152613a908161358c565b9050919050565b60006020820190508181036000830152613ab0816135af565b9050919050565b60006020820190508181036000830152613ad0816135d2565b9050919050565b60006020820190508181036000830152613af0816135f5565b9050919050565b60006020820190508181036000830152613b1081613618565b9050919050565b60006020820190508181036000830152613b308161363b565b9050919050565b60006020820190508181036000830152613b508161365e565b9050919050565b60006020820190508181036000830152613b7081613681565b9050919050565b60006020820190508181036000830152613b90816136a4565b9050919050565b60006020820190508181036000830152613bb0816136c7565b9050919050565b60006020820190508181036000830152613bd0816136ea565b9050919050565b60006020820190508181036000830152613bf081613730565b9050919050565b60006020820190508181036000830152613c1081613753565b9050919050565b60006020820190508181036000830152613c3081613776565b9050919050565b60006020820190508181036000830152613c5081613799565b9050919050565b60006020820190508181036000830152613c70816137bc565b9050919050565b60006020820190508181036000830152613c90816137df565b9050919050565b60006020820190508181036000830152613cb081613802565b9050919050565b60006020820190508181036000830152613cd081613825565b9050919050565b60006020820190508181036000830152613cf081613848565b9050919050565b6000602082019050613d0c600083018461386b565b92915050565b6000613d1c613d2d565b9050613d288282613fb3565b919050565b6000604051905090565b600067ffffffffffffffff821115613d5257613d5161411a565b5b613d5b82614167565b9050602081019050919050565b600081519050919050565b600081519050919050565b600082825260208201905092915050565b600081905092915050565b600082825260208201905092915050565b600081905092915050565b6000613dc182613f35565b9150613dcc83613f35565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115613e0157613e0061405e565b5b828201905092915050565b6000613e1782613f35565b9150613e2283613f35565b925082613e3257613e3161408d565b5b828204905092915050565b6000613e4882613f35565b9150613e5383613f35565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0483118215151615613e8c57613e8b61405e565b5b828202905092915050565b6000613ea282613f35565b9150613ead83613f35565b925082821015613ec057613ebf61405e565b5b828203905092915050565b6000613ed682613f15565b9050919050565b60008115159050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b82818337600083830152505050565b60005b83811015613f6c578082015181840152602081019050613f51565b83811115613f7b576000848401525b50505050565b60006002820490506001821680613f9957607f821691505b60208210811415613fad57613fac6140bc565b5b50919050565b613fbc82614167565b810181811067ffffffffffffffff82111715613fdb57613fda61411a565b5b80604052505050565b6000613fef82613f35565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8214156140225761402161405e565b5b600182019050919050565b600061403882613f35565b915061404383613f35565b9250826140535761405261408d565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600080fd5b600080fd5b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b7f455243373231413a206f776e657220696e646578206f7574206f6620626f756e60008201527f6473000000000000000000000000000000000000000000000000000000000000602082015250565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f426520796f757273656c662c20686f6e65792e00000000000000000000000000600082015250565b7f455243373231413a206f776e657220717565727920666f72206e6f6e6578697360008201527f74656e7420746f6b656e00000000000000000000000000000000000000000000602082015250565b7f546f6f206d616e79207065722077616c6c657421000000000000000000000000600082015250565b7f455243373231413a20676c6f62616c20696e646578206f7574206f6620626f7560008201527f6e64730000000000000000000000000000000000000000000000000000000000602082015250565b7f455243373231413a207472616e7366657220746f20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b7f455243373231413a206e756d626572206d696e74656420717565727920666f7260008201527f20746865207a65726f2061646472657373000000000000000000000000000000602082015250565b7f4d696e74696e67206973206e6f74206c697665207965742c20686f6c64206f6e60008201527f206361766520676f626c696e732e000000000000000000000000000000000000602082015250565b7f746f6f206d616e79210000000000000000000000000000000000000000000000600082015250565b7f4e6f206d6f7265206361766520676f626c696e73000000000000000000000000600082015250565b7f455243373231413a20617070726f76652063616c6c6572206973206e6f74206f60008201527f776e6572206e6f7220617070726f76656420666f7220616c6c00000000000000602082015250565b7f455243373231413a2062616c616e636520717565727920666f7220746865207a60008201527f65726f2061646472657373000000000000000000000000000000000000000000602082015250565b7f455243373231413a207472616e736665722066726f6d20696e636f727265637460008201527f206f776e65720000000000000000000000000000000000000000000000000000602082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008201527f6e6578697374656e7420746f6b656e0000000000000000000000000000000000602082015250565b7f455243373231413a20617070726f766520746f2063616c6c6572000000000000600082015250565b7f455243373231413a207472616e736665722063616c6c6572206973206e6f742060008201527f6f776e6572206e6f7220617070726f7665640000000000000000000000000000602082015250565b7f506c656173652073656e642074686520657861637420616d6f756e742e000000600082015250565b7f455243373231413a20617070726f76616c20746f2063757272656e74206f776e60008201527f6572000000000000000000000000000000000000000000000000000000000000602082015250565b50565b7f5472616e73666572206661696c65642e00000000000000000000000000000000600082015250565b7f455243373231413a207472616e7366657220746f206e6f6e204552433732315260008201527f6563656976657220696d706c656d656e74657200000000000000000000000000602082015250565b7f455243373231413a206d696e7420746f20746865207a65726f2061646472657360008201527f7300000000000000000000000000000000000000000000000000000000000000602082015250565b7f455243373231413a207175616e74697479206d7573742062652067726561746560008201527f72207468616e2030000000000000000000000000000000000000000000000000602082015250565b7f4d61782070657220545820726561636865642e00000000000000000000000000600082015250565b7f455243373231413a20756e61626c6520746f2067657420746f6b656e206f662060008201527f6f776e657220627920696e646578000000000000000000000000000000000000602082015250565b7f5265656e7472616e637947756172643a207265656e7472616e742063616c6c00600082015250565b7f455243373231413a20756e61626c6520746f2064657465726d696e652074686560008201527f206f776e6572206f6620746f6b656e0000000000000000000000000000000000602082015250565b7f455243373231413a20617070726f76656420717565727920666f72206e6f6e6560008201527f78697374656e7420746f6b656e00000000000000000000000000000000000000602082015250565b6148fb81613ecb565b811461490657600080fd5b50565b61491281613edd565b811461491d57600080fd5b50565b61492981613ee9565b811461493457600080fd5b50565b61494081613f35565b811461494b57600080fd5b5056fea26469706673582212208723bcfbf7b00a8416ee71c1cff345bea2601f0fb0c6bb4ae61efe1294a0981164736f6c63430008070033

Deployed Bytecode

0x60806040526004361061021a5760003560e01c8063715018a611610123578063b88d4fde116100ab578063d7224ba01161006f578063d7224ba01461079c578063dc33e681146107c7578063e985e9c514610804578063f2fde38b14610841578063f968adbe1461086a5761021a565b8063b88d4fde146106b7578063c6f6f216146106e0578063c87b56dd14610709578063d123973014610746578063d5abeb01146107715761021a565b806391b7f5ed116100f257806391b7f5ed146105f357806395d89b411461061c578063a035b1fe14610647578063a0712d6814610672578063a22cb4651461068e5761021a565b8063715018a6146105715780637d55094d146105885780638da5cb5b1461059f5780638db89f07146105ca5761021a565b80633ccfd60b116101a657806355f804b31161017557806355f804b31461047a578063563aaf11146104a35780636352211e146104cc5780636c0360eb1461050957806370a08231146105345761021a565b80633ccfd60b146103d257806342842e0e146103e9578063453c2310146104125780634f6ccce71461043d5761021a565b806318160ddd116101ed57806318160ddd146102ed578063228025e81461031857806323b872dd146103415780632f745c591461036a578063333e44e6146103a75761021a565b806301ffc9a71461021f57806306fdde031461025c578063081812fc14610287578063095ea7b3146102c4575b600080fd5b34801561022b57600080fd5b50610246600480360381019061024191906132bc565b610895565b604051610253919061391a565b60405180910390f35b34801561026857600080fd5b506102716109df565b60405161027e9190613935565b60405180910390f35b34801561029357600080fd5b506102ae60048036038101906102a99190613363565b610a71565b6040516102bb91906138b3565b60405180910390f35b3480156102d057600080fd5b506102eb60048036038101906102e6919061327c565b610af6565b005b3480156102f957600080fd5b50610302610c0f565b60405161030f9190613cf7565b60405180910390f35b34801561032457600080fd5b5061033f600480360381019061033a9190613363565b610c18565b005b34801561034d57600080fd5b5061036860048036038101906103639190613166565b610c9e565b005b34801561037657600080fd5b50610391600480360381019061038c919061327c565b610cae565b60405161039e9190613cf7565b60405180910390f35b3480156103b357600080fd5b506103bc610ea0565b6040516103c99190613cf7565b60405180910390f35b3480156103de57600080fd5b506103e7610ea6565b005b3480156103f557600080fd5b50610410600480360381019061040b9190613166565b611027565b005b34801561041e57600080fd5b50610427611047565b6040516104349190613cf7565b60405180910390f35b34801561044957600080fd5b50610464600480360381019061045f9190613363565b61104d565b6040516104719190613cf7565b60405180910390f35b34801561048657600080fd5b506104a1600480360381019061049c9190613316565b6110a0565b005b3480156104af57600080fd5b506104ca60048036038101906104c59190613363565b611132565b005b3480156104d857600080fd5b506104f360048036038101906104ee9190613363565b6111b8565b60405161050091906138b3565b60405180910390f35b34801561051557600080fd5b5061051e6111ce565b60405161052b9190613935565b60405180910390f35b34801561054057600080fd5b5061055b600480360381019061055691906130f9565b61125c565b6040516105689190613cf7565b60405180910390f35b34801561057d57600080fd5b50610586611345565b005b34801561059457600080fd5b5061059d6113cd565b005b3480156105ab57600080fd5b506105b4611475565b6040516105c191906138b3565b60405180910390f35b3480156105d657600080fd5b506105f160048036038101906105ec9190613363565b61149f565b005b3480156105ff57600080fd5b5061061a60048036038101906106159190613363565b61158a565b005b34801561062857600080fd5b50610631611610565b60405161063e9190613935565b60405180910390f35b34801561065357600080fd5b5061065c6116a2565b6040516106699190613cf7565b60405180910390f35b61068c60048036038101906106879190613363565b6116a8565b005b34801561069a57600080fd5b506106b560048036038101906106b0919061323c565b6118fe565b005b3480156106c357600080fd5b506106de60048036038101906106d991906131b9565b611a7f565b005b3480156106ec57600080fd5b5061070760048036038101906107029190613363565b611adb565b005b34801561071557600080fd5b50610730600480360381019061072b9190613363565b611b61565b60405161073d9190613935565b60405180910390f35b34801561075257600080fd5b5061075b611c09565b604051610768919061391a565b60405180910390f35b34801561077d57600080fd5b50610786611c1c565b6040516107939190613cf7565b60405180910390f35b3480156107a857600080fd5b506107b1611c22565b6040516107be9190613cf7565b60405180910390f35b3480156107d357600080fd5b506107ee60048036038101906107e991906130f9565b611c28565b6040516107fb9190613cf7565b60405180910390f35b34801561081057600080fd5b5061082b60048036038101906108269190613126565b611c3a565b604051610838919061391a565b60405180910390f35b34801561084d57600080fd5b50610868600480360381019061086391906130f9565b611cce565b005b34801561087657600080fd5b5061087f611dc6565b60405161088c9190613cf7565b60405180910390f35b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916148061096057507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b806109c857507f780e9d63000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b806109d857506109d782611dcc565b5b9050919050565b6060600180546109ee90613f81565b80601f0160208091040260200160405190810160405280929190818152602001828054610a1a90613f81565b8015610a675780601f10610a3c57610100808354040283529160200191610a67565b820191906000526020600020905b815481529060010190602001808311610a4a57829003601f168201915b5050505050905090565b6000610a7c82611e36565b610abb576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ab290613cd7565b60405180910390fd5b6005600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b6000610b01826111b8565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610b72576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b6990613bb7565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16610b91611e43565b73ffffffffffffffffffffffffffffffffffffffff161480610bc05750610bbf81610bba611e43565b611c3a565b5b610bff576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610bf690613ab7565b60405180910390fd5b610c0a838383611e4b565b505050565b60008054905090565b610c20611e43565b73ffffffffffffffffffffffffffffffffffffffff16610c3e611475565b73ffffffffffffffffffffffffffffffffffffffff1614610c94576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c8b90613b17565b60405180910390fd5b80600e8190555050565b610ca9838383611efd565b505050565b6000610cb98361125c565b8210610cfa576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610cf190613957565b60405180910390fd5b6000610d04610c0f565b905060008060005b83811015610e5e576000600360008381526020019081526020016000206040518060400160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815250509050600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff1614610dfe57806000015192505b8773ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610e505786841415610e47578195505050505050610e9a565b83806001019450505b508080600101915050610d0c565b506040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e9190613c77565b60405180910390fd5b92915050565b600d5481565b610eae611e43565b73ffffffffffffffffffffffffffffffffffffffff16610ecc611475565b73ffffffffffffffffffffffffffffffffffffffff1614610f22576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f1990613b17565b60405180910390fd5b60026008541415610f68576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f5f90613c97565b60405180910390fd5b600260088190555060003373ffffffffffffffffffffffffffffffffffffffff1647604051610f969061389e565b60006040518083038185875af1925050503d8060008114610fd3576040519150601f19603f3d011682016040523d82523d6000602084013e610fd8565b606091505b505090508061101c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161101390613bd7565b60405180910390fd5b506001600881905550565b61104283838360405180602001604052806000815250611a7f565b505050565b600c5481565b6000611057610c0f565b8210611098576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161108f906139f7565b60405180910390fd5b819050919050565b6110a8611e43565b73ffffffffffffffffffffffffffffffffffffffff166110c6611475565b73ffffffffffffffffffffffffffffffffffffffff161461111c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161111390613b17565b60405180910390fd5b81816009919061112d929190612eed565b505050565b61113a611e43565b73ffffffffffffffffffffffffffffffffffffffff16611158611475565b73ffffffffffffffffffffffffffffffffffffffff16146111ae576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111a590613b17565b60405180910390fd5b80600d8190555050565b60006111c38261243d565b600001519050919050565b600980546111db90613f81565b80601f016020809104026020016040519081016040528092919081815260200182805461120790613f81565b80156112545780601f1061122957610100808354040283529160200191611254565b820191906000526020600020905b81548152906001019060200180831161123757829003601f168201915b505050505081565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156112cd576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112c490613ad7565b60405180910390fd5b600460008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160009054906101000a90046fffffffffffffffffffffffffffffffff166fffffffffffffffffffffffffffffffff169050919050565b61134d611e43565b73ffffffffffffffffffffffffffffffffffffffff1661136b611475565b73ffffffffffffffffffffffffffffffffffffffff16146113c1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113b890613b17565b60405180910390fd5b6113cb60006125d7565b565b6113d5611e43565b73ffffffffffffffffffffffffffffffffffffffff166113f3611475565b73ffffffffffffffffffffffffffffffffffffffff1614611449576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161144090613b17565b60405180910390fd5b601060009054906101000a900460ff1615601060006101000a81548160ff021916908315150217905550565b6000600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b6114a7611e43565b73ffffffffffffffffffffffffffffffffffffffff166114c5611475565b73ffffffffffffffffffffffffffffffffffffffff161461151b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161151290613b17565b60405180910390fd5b6001600e5461152a9190613db6565b81611533610c0f565b61153d9190613db6565b1061157d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161157490613a77565b60405180910390fd5b611587338261269d565b50565b611592611e43565b73ffffffffffffffffffffffffffffffffffffffff166115b0611475565b73ffffffffffffffffffffffffffffffffffffffff1614611606576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115fd90613b17565b60405180910390fd5b80600a8190555050565b60606002805461161f90613f81565b80601f016020809104026020016040519081016040528092919081815260200182805461164b90613f81565b80156116985780601f1061166d57610100808354040283529160200191611698565b820191906000526020600020905b81548152906001019060200180831161167b57829003601f168201915b5050505050905090565b600a5481565b6000600a5490506001600d546116be9190613db6565b826116c7610c0f565b6116d19190613db6565b10156116dc57600090505b601060009054906101000a900460ff1661172b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161172290613a57565b60405180910390fd5b3273ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff1614611799576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161179090613997565b60405180910390fd5b80826117a59190613e3d565b34146117e6576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117dd90613b97565b60405180910390fd5b6001600b546117f59190613db6565b8210611836576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161182d90613c57565b60405180910390fd5b600c548261184333611c28565b61184d9190613db6565b111561188e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611885906139d7565b60405180910390fd5b6001600e5461189d9190613db6565b826118a6610c0f565b6118b09190613db6565b106118f0576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118e790613a97565b60405180910390fd5b6118fa338361269d565b5050565b611906611e43565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611974576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161196b90613b57565b60405180910390fd5b8060066000611981611e43565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff16611a2e611e43565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c3183604051611a73919061391a565b60405180910390a35050565b611a8a848484611efd565b611a96848484846126bb565b611ad5576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611acc90613bf7565b60405180910390fd5b50505050565b611ae3611e43565b73ffffffffffffffffffffffffffffffffffffffff16611b01611475565b73ffffffffffffffffffffffffffffffffffffffff1614611b57576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b4e90613b17565b60405180910390fd5b80600b8190555050565b6060611b6c82611e36565b611bab576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ba290613b37565b60405180910390fd5b6000611bb5612852565b9050600081511415611bd65760405180602001604052806000815250611c01565b80611be0846128e4565b604051602001611bf192919061387a565b6040516020818303038152906040525b915050919050565b601060009054906101000a900460ff1681565b600e5481565b600f5481565b6000611c3382612a45565b9050919050565b6000600660008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b611cd6611e43565b73ffffffffffffffffffffffffffffffffffffffff16611cf4611475565b73ffffffffffffffffffffffffffffffffffffffff1614611d4a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d4190613b17565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415611dba576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611db190613977565b60405180910390fd5b611dc3816125d7565b50565b600b5481565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b6000805482109050919050565b600033905090565b826005600084815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b6000611f088261243d565b90506000816000015173ffffffffffffffffffffffffffffffffffffffff16611f2f611e43565b73ffffffffffffffffffffffffffffffffffffffff161480611f8b5750611f54611e43565b73ffffffffffffffffffffffffffffffffffffffff16611f7384610a71565b73ffffffffffffffffffffffffffffffffffffffff16145b80611fa75750611fa68260000151611fa1611e43565b611c3a565b5b905080611fe9576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611fe090613b77565b60405180910390fd5b8473ffffffffffffffffffffffffffffffffffffffff16826000015173ffffffffffffffffffffffffffffffffffffffff161461205b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161205290613af7565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1614156120cb576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016120c290613a17565b60405180910390fd5b6120d88585856001612b2e565b6120e86000848460000151611e4b565b6001600460008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a90046fffffffffffffffffffffffffffffffff160392506101000a8154816fffffffffffffffffffffffffffffffff02191690836fffffffffffffffffffffffffffffffff1602179055506001600460008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a90046fffffffffffffffffffffffffffffffff160192506101000a8154816fffffffffffffffffffffffffffffffff02191690836fffffffffffffffffffffffffffffffff160217905550836003600085815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550426003600085815260200190815260200160002060000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055506000600184019050600073ffffffffffffffffffffffffffffffffffffffff166003600083815260200190815260200160002060000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614156123cd5761232c81611e36565b156123cc5782600001516003600083815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555082602001516003600083815260200190815260200160002060000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055505b5b50828473ffffffffffffffffffffffffffffffffffffffff168673ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a46124368585856001612b34565b5050505050565b612445612f73565b61244e82611e36565b61248d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612484906139b7565b60405180910390fd5b60008290505b60008110612596576000600360008381526020019081526020016000206040518060400160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815250509050600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff16146125875780925050506125d2565b50808060019003915050612493565b506040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016125c990613cb7565b60405180910390fd5b919050565b6000600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600760006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b6126b7828260405180602001604052806000815250612b3a565b5050565b60006126dc8473ffffffffffffffffffffffffffffffffffffffff16612b4c565b15612845578373ffffffffffffffffffffffffffffffffffffffff1663150b7a02612705611e43565b8786866040518563ffffffff1660e01b815260040161272794939291906138ce565b602060405180830381600087803b15801561274157600080fd5b505af192505050801561277257506040513d601f19601f8201168201806040525081019061276f91906132e9565b60015b6127f5573d80600081146127a2576040519150601f19603f3d011682016040523d82523d6000602084013e6127a7565b606091505b506000815114156127ed576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016127e490613bf7565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161491505061284a565b600190505b949350505050565b60606009805461286190613f81565b80601f016020809104026020016040519081016040528092919081815260200182805461288d90613f81565b80156128da5780601f106128af576101008083540402835291602001916128da565b820191906000526020600020905b8154815290600101906020018083116128bd57829003601f168201915b5050505050905090565b6060600082141561292c576040518060400160405280600181526020017f30000000000000000000000000000000000000000000000000000000000000008152509050612a40565b600082905060005b6000821461295e57808061294790613fe4565b915050600a826129579190613e0c565b9150612934565b60008167ffffffffffffffff81111561297a5761297961411a565b5b6040519080825280601f01601f1916602001820160405280156129ac5781602001600182028036833780820191505090505b5090505b60008514612a39576001826129c59190613e97565b9150600a856129d4919061402d565b60306129e09190613db6565b60f81b8183815181106129f6576129f56140eb565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a85612a329190613e0c565b94506129b0565b8093505050505b919050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415612ab6576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612aad90613a37565b60405180910390fd5b600460008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160109054906101000a90046fffffffffffffffffffffffffffffffff166fffffffffffffffffffffffffffffffff169050919050565b50505050565b50505050565b612b478383836001612b6f565b505050565b6000808273ffffffffffffffffffffffffffffffffffffffff163b119050919050565b600080549050600073ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff161415612be5576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612bdc90613c17565b60405180910390fd5b6000841415612c29576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612c2090613c37565b60405180910390fd5b612c366000868387612b2e565b83600460008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a90046fffffffffffffffffffffffffffffffff160192506101000a8154816fffffffffffffffffffffffffffffffff02191690836fffffffffffffffffffffffffffffffff16021790555083600460008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160108282829054906101000a90046fffffffffffffffffffffffffffffffff160192506101000a8154816fffffffffffffffffffffffffffffffff02191690836fffffffffffffffffffffffffffffffff160217905550846003600083815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550426003600083815260200190815260200160002060000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff160217905550600081905060005b85811015612ed057818773ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a48315612ebb57612e7b60008884886126bb565b612eba576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612eb190613bf7565b60405180910390fd5b5b81806001019250508080600101915050612e04565b508060008190555050612ee66000868387612b34565b5050505050565b828054612ef990613f81565b90600052602060002090601f016020900481019282612f1b5760008555612f62565b82601f10612f3457803560ff1916838001178555612f62565b82800160010185558215612f62579182015b82811115612f61578235825591602001919060010190612f46565b5b509050612f6f9190612fad565b5090565b6040518060400160405280600073ffffffffffffffffffffffffffffffffffffffff168152602001600067ffffffffffffffff1681525090565b5b80821115612fc6576000816000905550600101612fae565b5090565b6000612fdd612fd884613d37565b613d12565b905082815260208101848484011115612ff957612ff8614158565b5b613004848285613f3f565b509392505050565b60008135905061301b816148f2565b92915050565b60008135905061303081614909565b92915050565b60008135905061304581614920565b92915050565b60008151905061305a81614920565b92915050565b600082601f8301126130755761307461414e565b5b8135613085848260208601612fca565b91505092915050565b60008083601f8401126130a4576130a361414e565b5b8235905067ffffffffffffffff8111156130c1576130c0614149565b5b6020830191508360018202830111156130dd576130dc614153565b5b9250929050565b6000813590506130f381614937565b92915050565b60006020828403121561310f5761310e614162565b5b600061311d8482850161300c565b91505092915050565b6000806040838503121561313d5761313c614162565b5b600061314b8582860161300c565b925050602061315c8582860161300c565b9150509250929050565b60008060006060848603121561317f5761317e614162565b5b600061318d8682870161300c565b935050602061319e8682870161300c565b92505060406131af868287016130e4565b9150509250925092565b600080600080608085870312156131d3576131d2614162565b5b60006131e18782880161300c565b94505060206131f28782880161300c565b9350506040613203878288016130e4565b925050606085013567ffffffffffffffff8111156132245761322361415d565b5b61323087828801613060565b91505092959194509250565b6000806040838503121561325357613252614162565b5b60006132618582860161300c565b925050602061327285828601613021565b9150509250929050565b6000806040838503121561329357613292614162565b5b60006132a18582860161300c565b92505060206132b2858286016130e4565b9150509250929050565b6000602082840312156132d2576132d1614162565b5b60006132e084828501613036565b91505092915050565b6000602082840312156132ff576132fe614162565b5b600061330d8482850161304b565b91505092915050565b6000806020838503121561332d5761332c614162565b5b600083013567ffffffffffffffff81111561334b5761334a61415d565b5b6133578582860161308e565b92509250509250929050565b60006020828403121561337957613378614162565b5b6000613387848285016130e4565b91505092915050565b61339981613ecb565b82525050565b6133a881613edd565b82525050565b60006133b982613d68565b6133c38185613d7e565b93506133d3818560208601613f4e565b6133dc81614167565b840191505092915050565b60006133f282613d73565b6133fc8185613d9a565b935061340c818560208601613f4e565b61341581614167565b840191505092915050565b600061342b82613d73565b6134358185613dab565b9350613445818560208601613f4e565b80840191505092915050565b600061345e602283613d9a565b915061346982614178565b604082019050919050565b6000613481602683613d9a565b915061348c826141c7565b604082019050919050565b60006134a4601383613d9a565b91506134af82614216565b602082019050919050565b60006134c7602a83613d9a565b91506134d28261423f565b604082019050919050565b60006134ea601483613d9a565b91506134f58261428e565b602082019050919050565b600061350d602383613d9a565b9150613518826142b7565b604082019050919050565b6000613530602583613d9a565b915061353b82614306565b604082019050919050565b6000613553603183613d9a565b915061355e82614355565b604082019050919050565b6000613576602e83613d9a565b9150613581826143a4565b604082019050919050565b6000613599600983613d9a565b91506135a4826143f3565b602082019050919050565b60006135bc601483613d9a565b91506135c78261441c565b602082019050919050565b60006135df603983613d9a565b91506135ea82614445565b604082019050919050565b6000613602602b83613d9a565b915061360d82614494565b604082019050919050565b6000613625602683613d9a565b9150613630826144e3565b604082019050919050565b6000613648602083613d9a565b915061365382614532565b602082019050919050565b600061366b602f83613d9a565b91506136768261455b565b604082019050919050565b600061368e601a83613d9a565b9150613699826145aa565b602082019050919050565b60006136b1603283613d9a565b91506136bc826145d3565b604082019050919050565b60006136d4601d83613d9a565b91506136df82614622565b602082019050919050565b60006136f7602283613d9a565b91506137028261464b565b604082019050919050565b600061371a600083613d8f565b91506137258261469a565b600082019050919050565b600061373d601083613d9a565b91506137488261469d565b602082019050919050565b6000613760603383613d9a565b915061376b826146c6565b604082019050919050565b6000613783602183613d9a565b915061378e82614715565b604082019050919050565b60006137a6602883613d9a565b91506137b182614764565b604082019050919050565b60006137c9601383613d9a565b91506137d4826147b3565b602082019050919050565b60006137ec602e83613d9a565b91506137f7826147dc565b604082019050919050565b600061380f601f83613d9a565b915061381a8261482b565b602082019050919050565b6000613832602f83613d9a565b915061383d82614854565b604082019050919050565b6000613855602d83613d9a565b9150613860826148a3565b604082019050919050565b61387481613f35565b82525050565b60006138868285613420565b91506138928284613420565b91508190509392505050565b60006138a98261370d565b9150819050919050565b60006020820190506138c86000830184613390565b92915050565b60006080820190506138e36000830187613390565b6138f06020830186613390565b6138fd604083018561386b565b818103606083015261390f81846133ae565b905095945050505050565b600060208201905061392f600083018461339f565b92915050565b6000602082019050818103600083015261394f81846133e7565b905092915050565b6000602082019050818103600083015261397081613451565b9050919050565b6000602082019050818103600083015261399081613474565b9050919050565b600060208201905081810360008301526139b081613497565b9050919050565b600060208201905081810360008301526139d0816134ba565b9050919050565b600060208201905081810360008301526139f0816134dd565b9050919050565b60006020820190508181036000830152613a1081613500565b9050919050565b60006020820190508181036000830152613a3081613523565b9050919050565b60006020820190508181036000830152613a5081613546565b9050919050565b60006020820190508181036000830152613a7081613569565b9050919050565b60006020820190508181036000830152613a908161358c565b9050919050565b60006020820190508181036000830152613ab0816135af565b9050919050565b60006020820190508181036000830152613ad0816135d2565b9050919050565b60006020820190508181036000830152613af0816135f5565b9050919050565b60006020820190508181036000830152613b1081613618565b9050919050565b60006020820190508181036000830152613b308161363b565b9050919050565b60006020820190508181036000830152613b508161365e565b9050919050565b60006020820190508181036000830152613b7081613681565b9050919050565b60006020820190508181036000830152613b90816136a4565b9050919050565b60006020820190508181036000830152613bb0816136c7565b9050919050565b60006020820190508181036000830152613bd0816136ea565b9050919050565b60006020820190508181036000830152613bf081613730565b9050919050565b60006020820190508181036000830152613c1081613753565b9050919050565b60006020820190508181036000830152613c3081613776565b9050919050565b60006020820190508181036000830152613c5081613799565b9050919050565b60006020820190508181036000830152613c70816137bc565b9050919050565b60006020820190508181036000830152613c90816137df565b9050919050565b60006020820190508181036000830152613cb081613802565b9050919050565b60006020820190508181036000830152613cd081613825565b9050919050565b60006020820190508181036000830152613cf081613848565b9050919050565b6000602082019050613d0c600083018461386b565b92915050565b6000613d1c613d2d565b9050613d288282613fb3565b919050565b6000604051905090565b600067ffffffffffffffff821115613d5257613d5161411a565b5b613d5b82614167565b9050602081019050919050565b600081519050919050565b600081519050919050565b600082825260208201905092915050565b600081905092915050565b600082825260208201905092915050565b600081905092915050565b6000613dc182613f35565b9150613dcc83613f35565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115613e0157613e0061405e565b5b828201905092915050565b6000613e1782613f35565b9150613e2283613f35565b925082613e3257613e3161408d565b5b828204905092915050565b6000613e4882613f35565b9150613e5383613f35565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0483118215151615613e8c57613e8b61405e565b5b828202905092915050565b6000613ea282613f35565b9150613ead83613f35565b925082821015613ec057613ebf61405e565b5b828203905092915050565b6000613ed682613f15565b9050919050565b60008115159050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b82818337600083830152505050565b60005b83811015613f6c578082015181840152602081019050613f51565b83811115613f7b576000848401525b50505050565b60006002820490506001821680613f9957607f821691505b60208210811415613fad57613fac6140bc565b5b50919050565b613fbc82614167565b810181811067ffffffffffffffff82111715613fdb57613fda61411a565b5b80604052505050565b6000613fef82613f35565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8214156140225761402161405e565b5b600182019050919050565b600061403882613f35565b915061404383613f35565b9250826140535761405261408d565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600080fd5b600080fd5b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b7f455243373231413a206f776e657220696e646578206f7574206f6620626f756e60008201527f6473000000000000000000000000000000000000000000000000000000000000602082015250565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f426520796f757273656c662c20686f6e65792e00000000000000000000000000600082015250565b7f455243373231413a206f776e657220717565727920666f72206e6f6e6578697360008201527f74656e7420746f6b656e00000000000000000000000000000000000000000000602082015250565b7f546f6f206d616e79207065722077616c6c657421000000000000000000000000600082015250565b7f455243373231413a20676c6f62616c20696e646578206f7574206f6620626f7560008201527f6e64730000000000000000000000000000000000000000000000000000000000602082015250565b7f455243373231413a207472616e7366657220746f20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b7f455243373231413a206e756d626572206d696e74656420717565727920666f7260008201527f20746865207a65726f2061646472657373000000000000000000000000000000602082015250565b7f4d696e74696e67206973206e6f74206c697665207965742c20686f6c64206f6e60008201527f206361766520676f626c696e732e000000000000000000000000000000000000602082015250565b7f746f6f206d616e79210000000000000000000000000000000000000000000000600082015250565b7f4e6f206d6f7265206361766520676f626c696e73000000000000000000000000600082015250565b7f455243373231413a20617070726f76652063616c6c6572206973206e6f74206f60008201527f776e6572206e6f7220617070726f76656420666f7220616c6c00000000000000602082015250565b7f455243373231413a2062616c616e636520717565727920666f7220746865207a60008201527f65726f2061646472657373000000000000000000000000000000000000000000602082015250565b7f455243373231413a207472616e736665722066726f6d20696e636f727265637460008201527f206f776e65720000000000000000000000000000000000000000000000000000602082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008201527f6e6578697374656e7420746f6b656e0000000000000000000000000000000000602082015250565b7f455243373231413a20617070726f766520746f2063616c6c6572000000000000600082015250565b7f455243373231413a207472616e736665722063616c6c6572206973206e6f742060008201527f6f776e6572206e6f7220617070726f7665640000000000000000000000000000602082015250565b7f506c656173652073656e642074686520657861637420616d6f756e742e000000600082015250565b7f455243373231413a20617070726f76616c20746f2063757272656e74206f776e60008201527f6572000000000000000000000000000000000000000000000000000000000000602082015250565b50565b7f5472616e73666572206661696c65642e00000000000000000000000000000000600082015250565b7f455243373231413a207472616e7366657220746f206e6f6e204552433732315260008201527f6563656976657220696d706c656d656e74657200000000000000000000000000602082015250565b7f455243373231413a206d696e7420746f20746865207a65726f2061646472657360008201527f7300000000000000000000000000000000000000000000000000000000000000602082015250565b7f455243373231413a207175616e74697479206d7573742062652067726561746560008201527f72207468616e2030000000000000000000000000000000000000000000000000602082015250565b7f4d61782070657220545820726561636865642e00000000000000000000000000600082015250565b7f455243373231413a20756e61626c6520746f2067657420746f6b656e206f662060008201527f6f776e657220627920696e646578000000000000000000000000000000000000602082015250565b7f5265656e7472616e637947756172643a207265656e7472616e742063616c6c00600082015250565b7f455243373231413a20756e61626c6520746f2064657465726d696e652074686560008201527f206f776e6572206f6620746f6b656e0000000000000000000000000000000000602082015250565b7f455243373231413a20617070726f76656420717565727920666f72206e6f6e6560008201527f78697374656e7420746f6b656e00000000000000000000000000000000000000602082015250565b6148fb81613ecb565b811461490657600080fd5b50565b61491281613edd565b811461491d57600080fd5b50565b61492981613ee9565b811461493457600080fd5b50565b61494081613f35565b811461494b57600080fd5b5056fea26469706673582212208723bcfbf7b00a8416ee71c1cff345bea2601f0fb0c6bb4ae61efe1294a0981164736f6c63430008070033

Deployed Bytecode Sourcemap

50307:2274:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;37167:372;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;39053:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;40615:214;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;40136:413;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;35424:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;52188:98;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;41491:170;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;36088:1007;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;50557:45;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;52400:176;;;;;;;;;;;;;:::i;:::-;;41732:185;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;50509:43;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;35601:187;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;51794:96;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;51984:98;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;38862:124;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;50372:28;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;37603:221;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;10559:103;;;;;;;;;;;;;:::i;:::-;;51590:85;;;;;;;;;;;;;:::i;:::-;;9908:87;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;51421:163;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;51896:82;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;39222:104;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;50405:52;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;50804:611;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;40901:288;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;41988:355;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;52088:94;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;39397:335;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;50707:32;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;50607:45;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;50657;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;51681:107;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;41260:164;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;10817:201;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;50462:42;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;37167:372;37269:4;37321:25;37306:40;;;:11;:40;;;;:105;;;;37378:33;37363:48;;;:11;:48;;;;37306:105;:172;;;;37443:35;37428:50;;;:11;:50;;;;37306:172;:225;;;;37495:36;37519:11;37495:23;:36::i;:::-;37306:225;37286:245;;37167:372;;;:::o;39053:100::-;39107:13;39140:5;39133:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;39053:100;:::o;40615:214::-;40683:7;40711:16;40719:7;40711;:16::i;:::-;40703:74;;;;;;;;;;;;:::i;:::-;;;;;;;;;40797:15;:24;40813:7;40797:24;;;;;;;;;;;;;;;;;;;;;40790:31;;40615:214;;;:::o;40136:413::-;40209:13;40225:24;40241:7;40225:15;:24::i;:::-;40209:40;;40274:5;40268:11;;:2;:11;;;;40260:58;;;;;;;;;;;;:::i;:::-;;;;;;;;;40369:5;40353:21;;:12;:10;:12::i;:::-;:21;;;:62;;;;40378:37;40395:5;40402:12;:10;:12::i;:::-;40378:16;:37::i;:::-;40353:62;40331:169;;;;;;;;;;;;:::i;:::-;;;;;;;;;40513:28;40522:2;40526:7;40535:5;40513:8;:28::i;:::-;40198:351;40136:413;;:::o;35424:100::-;35477:7;35504:12;;35497:19;;35424:100;:::o;52188:98::-;10139:12;:10;:12::i;:::-;10128:23;;:7;:5;:7::i;:::-;:23;;;10120:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;52270:10:::1;52258:9;:22;;;;52188:98:::0;:::o;41491:170::-;41625:28;41635:4;41641:2;41645:7;41625:9;:28::i;:::-;41491:170;;;:::o;36088:1007::-;36177:7;36213:16;36223:5;36213:9;:16::i;:::-;36205:5;:24;36197:71;;;;;;;;;;;;:::i;:::-;;;;;;;;;36279:22;36304:13;:11;:13::i;:::-;36279:38;;36328:19;36358:25;36547:9;36542:466;36562:14;36558:1;:18;36542:466;;;36602:31;36636:11;:14;36648:1;36636:14;;;;;;;;;;;36602:48;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;36699:1;36673:28;;:9;:14;;;:28;;;36669:111;;36746:9;:14;;;36726:34;;36669:111;36823:5;36802:26;;:17;:26;;;36798:195;;;36872:5;36857:11;:20;36853:85;;;36913:1;36906:8;;;;;;;;;36853:85;36960:13;;;;;;;36798:195;36583:425;36578:3;;;;;;;36542:466;;;;37031:56;;;;;;;;;;:::i;:::-;;;;;;;;36088:1007;;;;;:::o;50557:45::-;;;;:::o;52400:176::-;10139:12;:10;:12::i;:::-;10128:23;;:7;:5;:7::i;:::-;:23;;;10120:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;4882:1:::1;5480:7;;:19;;5472:63;;;;;;;;;;;;:::i;:::-;;;;;;;;;4882:1;5613:7;:18;;;;52460:12:::2;52478:10;:15;;52501:21;52478:49;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;52459:68;;;52542:7;52534:36;;;;;;;;;;;;:::i;:::-;;;;;;;;;52452:124;4838:1:::1;5792:7;:22;;;;52400:176::o:0;41732:185::-;41870:39;41887:4;41893:2;41897:7;41870:39;;;;;;;;;;;;:16;:39::i;:::-;41732:185;;;:::o;50509:43::-;;;;:::o;35601:187::-;35668:7;35704:13;:11;:13::i;:::-;35696:5;:21;35688:69;;;;;;;;;;;;:::i;:::-;;;;;;;;;35775:5;35768:12;;35601:187;;;:::o;51794:96::-;10139:12;:10;:12::i;:::-;10128:23;;:7;:5;:7::i;:::-;:23;;;10120:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;51876:8:::1;;51866:7;:18;;;;;;;:::i;:::-;;51794:96:::0;;:::o;51984:98::-;10139:12;:10;:12::i;:::-;10128:23;;:7;:5;:7::i;:::-;:23;;;10120:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;52066:10:::1;52054:9;:22;;;;51984:98:::0;:::o;38862:124::-;38926:7;38953:20;38965:7;38953:11;:20::i;:::-;:25;;;38946:32;;38862:124;;;:::o;50372:28::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;37603:221::-;37667:7;37712:1;37695:19;;:5;:19;;;;37687:75;;;;;;;;;;;;:::i;:::-;;;;;;;;;37788:12;:19;37801:5;37788:19;;;;;;;;;;;;;;;:27;;;;;;;;;;;;37780:36;;37773:43;;37603:221;;;:::o;10559:103::-;10139:12;:10;:12::i;:::-;10128:23;;:7;:5;:7::i;:::-;:23;;;10120:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;10624:30:::1;10651:1;10624:18;:30::i;:::-;10559:103::o:0;51590:85::-;10139:12;:10;:12::i;:::-;10128:23;;:7;:5;:7::i;:::-;:23;;;10120:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;51658:11:::1;;;;;;;;;;;51657:12;51643:11;;:26;;;;;;;;;;;;;;;;;;51590:85::o:0;9908:87::-;9954:7;9981:6;;;;;;;;;;;9974:13;;9908:87;:::o;51421:163::-;10139:12;:10;:12::i;:::-;10128:23;;:7;:5;:7::i;:::-;:23;;;10120:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;51529:1:::1;51517:9;;:13;;;;:::i;:::-;51511:3;51495:13;:11;:13::i;:::-;:19;;;;:::i;:::-;:35;51487:56;;;;;;;;;;;;:::i;:::-;;;;;;;;;51552:26;51562:10;51574:3;51552:9;:26::i;:::-;51421:163:::0;:::o;51896:82::-;10139:12;:10;:12::i;:::-;10128:23;;:7;:5;:7::i;:::-;:23;;;10120:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;51966:6:::1;51958:5;:14;;;;51896:82:::0;:::o;39222:104::-;39278:13;39311:7;39304:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;39222:104;:::o;50405:52::-;;;;:::o;50804:611::-;50858:9;50870:5;;50858:17;;50919:1;50907:9;;:13;;;;:::i;:::-;50901:3;50885:13;:11;:13::i;:::-;:19;;;;:::i;:::-;:35;50882:65;;;50938:1;50931:8;;50882:65;50961:11;;;;;;;;;;;50953:70;;;;;;;;;;;;:::i;:::-;;;;;;;;;51052:9;51038:23;;:10;:23;;;51030:54;;;;;;;;;;;;:::i;:::-;;;;;;;;;51118:4;51112:3;:10;;;;:::i;:::-;51099:9;:23;51091:64;;;;;;;;;;;;:::i;:::-;;;;;;;;;51188:1;51177:8;;:12;;;;:::i;:::-;51171:3;:18;51162:51;;;;;;;;;;;;:::i;:::-;;;;;;;;;51262:12;;51255:3;51228:24;51241:10;51228:12;:24::i;:::-;:30;;;;:::i;:::-;:46;;51220:78;;;;;;;;;;;;:::i;:::-;;;;;;;;;51347:1;51335:9;;:13;;;;:::i;:::-;51329:3;51313:13;:11;:13::i;:::-;:19;;;;:::i;:::-;:35;51305:67;;;;;;;;;;;;:::i;:::-;;;;;;;;;51383:26;51393:10;51405:3;51383:9;:26::i;:::-;50851:564;50804:611;:::o;40901:288::-;41008:12;:10;:12::i;:::-;40996:24;;:8;:24;;;;40988:63;;;;;;;;;;;;:::i;:::-;;;;;;;;;41109:8;41064:18;:32;41083:12;:10;:12::i;:::-;41064:32;;;;;;;;;;;;;;;:42;41097:8;41064:42;;;;;;;;;;;;;;;;:53;;;;;;;;;;;;;;;;;;41162:8;41133:48;;41148:12;:10;:12::i;:::-;41133:48;;;41172:8;41133:48;;;;;;:::i;:::-;;;;;;;;40901:288;;:::o;41988:355::-;42147:28;42157:4;42163:2;42167:7;42147:9;:28::i;:::-;42208:48;42231:4;42237:2;42241:7;42250:5;42208:22;:48::i;:::-;42186:149;;;;;;;;;;;;:::i;:::-;;;;;;;;;41988:355;;;;:::o;52088:94::-;10139:12;:10;:12::i;:::-;10128:23;;:7;:5;:7::i;:::-;:23;;;10120:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;52167:9:::1;52156:8;:20;;;;52088:94:::0;:::o;39397:335::-;39470:13;39504:16;39512:7;39504;:16::i;:::-;39496:76;;;;;;;;;;;;:::i;:::-;;;;;;;;;39585:21;39609:10;:8;:10::i;:::-;39585:34;;39662:1;39643:7;39637:21;:26;;:87;;;;;;;;;;;;;;;;;39690:7;39699:18;:7;:16;:18::i;:::-;39673:45;;;;;;;;;:::i;:::-;;;;;;;;;;;;;39637:87;39630:94;;;39397:335;;;:::o;50707:32::-;;;;;;;;;;;;;:::o;50607:45::-;;;;:::o;50657:::-;;;;:::o;51681:107::-;51739:7;51762:20;51776:5;51762:13;:20::i;:::-;51755:27;;51681:107;;;:::o;41260:164::-;41357:4;41381:18;:25;41400:5;41381:25;;;;;;;;;;;;;;;:35;41407:8;41381:35;;;;;;;;;;;;;;;;;;;;;;;;;41374:42;;41260:164;;;;:::o;10817:201::-;10139:12;:10;:12::i;:::-;10128:23;;:7;:5;:7::i;:::-;:23;;;10120:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;10926:1:::1;10906:22;;:8;:22;;;;10898:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;10982:28;11001:8;10982:18;:28::i;:::-;10817:201:::0;:::o;50462:42::-;;;;:::o;26687:157::-;26772:4;26811:25;26796:40;;;:11;:40;;;;26789:47;;26687:157;;;:::o;42598:111::-;42655:4;42689:12;;42679:7;:22;42672:29;;42598:111;;;:::o;8632:98::-;8685:7;8712:10;8705:17;;8632:98;:::o;47518:196::-;47660:2;47633:15;:24;47649:7;47633:24;;;;;;;;;;;;:29;;;;;;;;;;;;;;;;;;47698:7;47694:2;47678:28;;47687:5;47678:28;;;;;;;;;;;;47518:196;;;:::o;45398:2002::-;45513:35;45551:20;45563:7;45551:11;:20::i;:::-;45513:58;;45584:22;45626:13;:18;;;45610:34;;:12;:10;:12::i;:::-;:34;;;:87;;;;45685:12;:10;:12::i;:::-;45661:36;;:20;45673:7;45661:11;:20::i;:::-;:36;;;45610:87;:154;;;;45714:50;45731:13;:18;;;45751:12;:10;:12::i;:::-;45714:16;:50::i;:::-;45610:154;45584:181;;45786:17;45778:80;;;;;;;;;;;;:::i;:::-;;;;;;;;;45901:4;45879:26;;:13;:18;;;:26;;;45871:77;;;;;;;;;;;;:::i;:::-;;;;;;;;;45981:1;45967:16;;:2;:16;;;;45959:66;;;;;;;;;;;;:::i;:::-;;;;;;;;;46038:43;46060:4;46066:2;46070:7;46079:1;46038:21;:43::i;:::-;46146:49;46163:1;46167:7;46176:13;:18;;;46146:8;:49::i;:::-;46521:1;46491:12;:18;46504:4;46491:18;;;;;;;;;;;;;;;:26;;;:31;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;46565:1;46537:12;:16;46550:2;46537:16;;;;;;;;;;;;;;;:24;;;:29;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;46611:2;46583:11;:20;46595:7;46583:20;;;;;;;;;;;:25;;;:30;;;;;;;;;;;;;;;;;;46673:15;46628:11;:20;46640:7;46628:20;;;;;;;;;;;:35;;;:61;;;;;;;;;;;;;;;;;;46941:19;46973:1;46963:7;:11;46941:33;;47034:1;46993:43;;:11;:24;47005:11;46993:24;;;;;;;;;;;:29;;;;;;;;;;;;:43;;;46989:295;;;47061:20;47069:11;47061:7;:20::i;:::-;47057:212;;;47138:13;:18;;;47106:11;:24;47118:11;47106:24;;;;;;;;;;;:29;;;:50;;;;;;;;;;;;;;;;;;47221:13;:28;;;47179:11;:24;47191:11;47179:24;;;;;;;;;;;:39;;;:70;;;;;;;;;;;;;;;;;;47057:212;46989:295;46466:829;47331:7;47327:2;47312:27;;47321:4;47312:27;;;;;;;;;;;;47350:42;47371:4;47377:2;47381:7;47390:1;47350:20;:42::i;:::-;45502:1898;;45398:2002;;;:::o;38263:537::-;38324:21;;:::i;:::-;38366:16;38374:7;38366;:16::i;:::-;38358:71;;;;;;;;;;;;:::i;:::-;;;;;;;;;38472:12;38487:7;38472:22;;38467:245;38504:1;38496:4;:9;38467:245;;38534:31;38568:11;:17;38580:4;38568:17;;;;;;;;;;;38534:51;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;38634:1;38608:28;;:9;:14;;;:28;;;38604:93;;38668:9;38661:16;;;;;;38604:93;38515:197;38507:6;;;;;;;;38467:245;;;;38735:57;;;;;;;;;;:::i;:::-;;;;;;;;38263:537;;;;:::o;11178:191::-;11252:16;11271:6;;;;;;;;;;;11252:25;;11297:8;11288:6;;:17;;;;;;;;;;;;;;;;;;11352:8;11321:40;;11342:8;11321:40;;;;;;;;;;;;11241:128;11178:191;:::o;42717:104::-;42786:27;42796:2;42800:8;42786:27;;;;;;;;;;;;:9;:27::i;:::-;42717:104;;:::o;48279:804::-;48434:4;48455:15;:2;:13;;;:15::i;:::-;48451:625;;;48507:2;48491:36;;;48528:12;:10;:12::i;:::-;48542:4;48548:7;48557:5;48491:72;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;48487:534;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;48754:1;48737:6;:13;:18;48733:273;;;48780:61;;;;;;;;;;:::i;:::-;;;;;;;;48733:273;48956:6;48950:13;48941:6;48937:2;48933:15;48926:38;48487:534;48624:45;;;48614:55;;;:6;:55;;;;48607:62;;;;;48451:625;49060:4;49053:11;;48279:804;;;;;;;:::o;52292:102::-;52352:13;52381:7;52374:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;52292:102;:::o;6194:723::-;6250:13;6480:1;6471:5;:10;6467:53;;;6498:10;;;;;;;;;;;;;;;;;;;;;6467:53;6530:12;6545:5;6530:20;;6561:14;6586:78;6601:1;6593:4;:9;6586:78;;6619:8;;;;;:::i;:::-;;;;6650:2;6642:10;;;;;:::i;:::-;;;6586:78;;;6674:19;6706:6;6696:17;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;6674:39;;6724:154;6740:1;6731:5;:10;6724:154;;6768:1;6758:11;;;;;:::i;:::-;;;6835:2;6827:5;:10;;;;:::i;:::-;6814:2;:24;;;;:::i;:::-;6801:39;;6784:6;6791;6784:14;;;;;;;;:::i;:::-;;;;;:56;;;;;;;;;;;6864:2;6855:11;;;;;:::i;:::-;;;6724:154;;;6902:6;6888:21;;;;;6194:723;;;;:::o;37832:229::-;37893:7;37938:1;37921:19;;:5;:19;;;;37913:81;;;;;;;;;;;;:::i;:::-;;;;;;;;;38020:12;:19;38033:5;38020:19;;;;;;;;;;;;;;;:32;;;;;;;;;;;;38012:41;;38005:48;;37832:229;;;:::o;49571:159::-;;;;;:::o;50142:158::-;;;;;:::o;43184:163::-;43307:32;43313:2;43317:8;43327:5;43334:4;43307:5;:32::i;:::-;43184:163;;;:::o;12609:326::-;12669:4;12926:1;12904:7;:19;;;:23;12897:30;;12609:326;;;:::o;43606:1538::-;43745:20;43768:12;;43745:35;;43813:1;43799:16;;:2;:16;;;;43791:62;;;;;;;;;;;;:::i;:::-;;;;;;;;;43884:1;43872:8;:13;;43864:66;;;;;;;;;;;;:::i;:::-;;;;;;;;;43943:61;43973:1;43977:2;43981:12;43995:8;43943:21;:61::i;:::-;44318:8;44282:12;:16;44295:2;44282:16;;;;;;;;;;;;;;;:24;;;:45;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;44383:8;44342:12;:16;44355:2;44342:16;;;;;;;;;;;;;;;:29;;;:50;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;44442:2;44409:11;:25;44421:12;44409:25;;;;;;;;;;;:30;;;:35;;;;;;;;;;;;;;;;;;44509:15;44459:11;:25;44471:12;44459:25;;;;;;;;;;;:40;;;:66;;;;;;;;;;;;;;;;;;44542:20;44565:12;44542:35;;44599:9;44594:415;44614:8;44610:1;:12;44594:415;;;44678:12;44674:2;44653:38;;44670:1;44653:38;;;;;;;;;;;;44714:4;44710:249;;;44777:59;44808:1;44812:2;44816:12;44830:5;44777:22;:59::i;:::-;44743:196;;;;;;;;;;;;:::i;:::-;;;;;;;;;44710:249;44979:14;;;;;;;44624:3;;;;;;;44594:415;;;;45040:12;45025;:27;;;;44257:807;45076:60;45105:1;45109:2;45113:12;45127:8;45076:20;:60::i;:::-;43734:1410;43606:1538;;;;:::o;-1:-1:-1:-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;;;;;;;;;;;;;;;;;:::o;:::-;;;;;;;;;;;;;;;;;;;;;:::o;7:410:1:-;84:5;109:65;125:48;166:6;125:48;:::i;:::-;109:65;:::i;:::-;100:74;;197:6;190:5;183:21;235:4;228:5;224:16;273:3;264:6;259:3;255:16;252:25;249:112;;;280:79;;:::i;:::-;249:112;370:41;404:6;399:3;394;370:41;:::i;:::-;90:327;7:410;;;;;:::o;423:139::-;469:5;507:6;494:20;485:29;;523:33;550:5;523:33;:::i;:::-;423:139;;;;:::o;568:133::-;611:5;649:6;636:20;627:29;;665:30;689:5;665:30;:::i;:::-;568:133;;;;:::o;707:137::-;752:5;790:6;777:20;768:29;;806:32;832:5;806:32;:::i;:::-;707:137;;;;:::o;850:141::-;906:5;937:6;931:13;922:22;;953:32;979:5;953:32;:::i;:::-;850:141;;;;:::o;1010:338::-;1065:5;1114:3;1107:4;1099:6;1095:17;1091:27;1081:122;;1122:79;;:::i;:::-;1081:122;1239:6;1226:20;1264:78;1338:3;1330:6;1323:4;1315:6;1311:17;1264:78;:::i;:::-;1255:87;;1071:277;1010:338;;;;:::o;1368:553::-;1426:8;1436:6;1486:3;1479:4;1471:6;1467:17;1463:27;1453:122;;1494:79;;:::i;:::-;1453:122;1607:6;1594:20;1584:30;;1637:18;1629:6;1626:30;1623:117;;;1659:79;;:::i;:::-;1623:117;1773:4;1765:6;1761:17;1749:29;;1827:3;1819:4;1811:6;1807:17;1797:8;1793:32;1790:41;1787:128;;;1834:79;;:::i;:::-;1787:128;1368:553;;;;;:::o;1927:139::-;1973:5;2011:6;1998:20;1989:29;;2027:33;2054:5;2027:33;:::i;:::-;1927:139;;;;:::o;2072:329::-;2131:6;2180:2;2168:9;2159:7;2155:23;2151:32;2148:119;;;2186:79;;:::i;:::-;2148:119;2306:1;2331:53;2376:7;2367:6;2356:9;2352:22;2331:53;:::i;:::-;2321:63;;2277:117;2072:329;;;;:::o;2407:474::-;2475:6;2483;2532:2;2520:9;2511:7;2507:23;2503:32;2500:119;;;2538:79;;:::i;:::-;2500:119;2658:1;2683:53;2728:7;2719:6;2708:9;2704:22;2683:53;:::i;:::-;2673:63;;2629:117;2785:2;2811:53;2856:7;2847:6;2836:9;2832:22;2811:53;:::i;:::-;2801:63;;2756:118;2407:474;;;;;:::o;2887:619::-;2964:6;2972;2980;3029:2;3017:9;3008:7;3004:23;3000:32;2997:119;;;3035:79;;:::i;:::-;2997:119;3155:1;3180:53;3225:7;3216:6;3205:9;3201:22;3180:53;:::i;:::-;3170:63;;3126:117;3282:2;3308:53;3353:7;3344:6;3333:9;3329:22;3308:53;:::i;:::-;3298:63;;3253:118;3410:2;3436:53;3481:7;3472:6;3461:9;3457:22;3436:53;:::i;:::-;3426:63;;3381:118;2887:619;;;;;:::o;3512:943::-;3607:6;3615;3623;3631;3680:3;3668:9;3659:7;3655:23;3651:33;3648:120;;;3687:79;;:::i;:::-;3648:120;3807:1;3832:53;3877:7;3868:6;3857:9;3853:22;3832:53;:::i;:::-;3822:63;;3778:117;3934:2;3960:53;4005:7;3996:6;3985:9;3981:22;3960:53;:::i;:::-;3950:63;;3905:118;4062:2;4088:53;4133:7;4124:6;4113:9;4109:22;4088:53;:::i;:::-;4078:63;;4033:118;4218:2;4207:9;4203:18;4190:32;4249:18;4241:6;4238:30;4235:117;;;4271:79;;:::i;:::-;4235:117;4376:62;4430:7;4421:6;4410:9;4406:22;4376:62;:::i;:::-;4366:72;;4161:287;3512:943;;;;;;;:::o;4461:468::-;4526:6;4534;4583:2;4571:9;4562:7;4558:23;4554:32;4551:119;;;4589:79;;:::i;:::-;4551:119;4709:1;4734:53;4779:7;4770:6;4759:9;4755:22;4734:53;:::i;:::-;4724:63;;4680:117;4836:2;4862:50;4904:7;4895:6;4884:9;4880:22;4862:50;:::i;:::-;4852:60;;4807:115;4461:468;;;;;:::o;4935:474::-;5003:6;5011;5060:2;5048:9;5039:7;5035:23;5031:32;5028:119;;;5066:79;;:::i;:::-;5028:119;5186:1;5211:53;5256:7;5247:6;5236:9;5232:22;5211:53;:::i;:::-;5201:63;;5157:117;5313:2;5339:53;5384:7;5375:6;5364:9;5360:22;5339:53;:::i;:::-;5329:63;;5284:118;4935:474;;;;;:::o;5415:327::-;5473:6;5522:2;5510:9;5501:7;5497:23;5493:32;5490:119;;;5528:79;;:::i;:::-;5490:119;5648:1;5673:52;5717:7;5708:6;5697:9;5693:22;5673:52;:::i;:::-;5663:62;;5619:116;5415:327;;;;:::o;5748:349::-;5817:6;5866:2;5854:9;5845:7;5841:23;5837:32;5834:119;;;5872:79;;:::i;:::-;5834:119;5992:1;6017:63;6072:7;6063:6;6052:9;6048:22;6017:63;:::i;:::-;6007:73;;5963:127;5748:349;;;;:::o;6103:529::-;6174:6;6182;6231:2;6219:9;6210:7;6206:23;6202:32;6199:119;;;6237:79;;:::i;:::-;6199:119;6385:1;6374:9;6370:17;6357:31;6415:18;6407:6;6404:30;6401:117;;;6437:79;;:::i;:::-;6401:117;6550:65;6607:7;6598:6;6587:9;6583:22;6550:65;:::i;:::-;6532:83;;;;6328:297;6103:529;;;;;:::o;6638:329::-;6697:6;6746:2;6734:9;6725:7;6721:23;6717:32;6714:119;;;6752:79;;:::i;:::-;6714:119;6872:1;6897:53;6942:7;6933:6;6922:9;6918:22;6897:53;:::i;:::-;6887:63;;6843:117;6638:329;;;;:::o;6973:118::-;7060:24;7078:5;7060:24;:::i;:::-;7055:3;7048:37;6973:118;;:::o;7097:109::-;7178:21;7193:5;7178:21;:::i;:::-;7173:3;7166:34;7097:109;;:::o;7212:360::-;7298:3;7326:38;7358:5;7326:38;:::i;:::-;7380:70;7443:6;7438:3;7380:70;:::i;:::-;7373:77;;7459:52;7504:6;7499:3;7492:4;7485:5;7481:16;7459:52;:::i;:::-;7536:29;7558:6;7536:29;:::i;:::-;7531:3;7527:39;7520:46;;7302:270;7212:360;;;;:::o;7578:364::-;7666:3;7694:39;7727:5;7694:39;:::i;:::-;7749:71;7813:6;7808:3;7749:71;:::i;:::-;7742:78;;7829:52;7874:6;7869:3;7862:4;7855:5;7851:16;7829:52;:::i;:::-;7906:29;7928:6;7906:29;:::i;:::-;7901:3;7897:39;7890:46;;7670:272;7578:364;;;;:::o;7948:377::-;8054:3;8082:39;8115:5;8082:39;:::i;:::-;8137:89;8219:6;8214:3;8137:89;:::i;:::-;8130:96;;8235:52;8280:6;8275:3;8268:4;8261:5;8257:16;8235:52;:::i;:::-;8312:6;8307:3;8303:16;8296:23;;8058:267;7948:377;;;;:::o;8331:366::-;8473:3;8494:67;8558:2;8553:3;8494:67;:::i;:::-;8487:74;;8570:93;8659:3;8570:93;:::i;:::-;8688:2;8683:3;8679:12;8672:19;;8331:366;;;:::o;8703:::-;8845:3;8866:67;8930:2;8925:3;8866:67;:::i;:::-;8859:74;;8942:93;9031:3;8942:93;:::i;:::-;9060:2;9055:3;9051:12;9044:19;;8703:366;;;:::o;9075:::-;9217:3;9238:67;9302:2;9297:3;9238:67;:::i;:::-;9231:74;;9314:93;9403:3;9314:93;:::i;:::-;9432:2;9427:3;9423:12;9416:19;;9075:366;;;:::o;9447:::-;9589:3;9610:67;9674:2;9669:3;9610:67;:::i;:::-;9603:74;;9686:93;9775:3;9686:93;:::i;:::-;9804:2;9799:3;9795:12;9788:19;;9447:366;;;:::o;9819:::-;9961:3;9982:67;10046:2;10041:3;9982:67;:::i;:::-;9975:74;;10058:93;10147:3;10058:93;:::i;:::-;10176:2;10171:3;10167:12;10160:19;;9819:366;;;:::o;10191:::-;10333:3;10354:67;10418:2;10413:3;10354:67;:::i;:::-;10347:74;;10430:93;10519:3;10430:93;:::i;:::-;10548:2;10543:3;10539:12;10532:19;;10191:366;;;:::o;10563:::-;10705:3;10726:67;10790:2;10785:3;10726:67;:::i;:::-;10719:74;;10802:93;10891:3;10802:93;:::i;:::-;10920:2;10915:3;10911:12;10904:19;;10563:366;;;:::o;10935:::-;11077:3;11098:67;11162:2;11157:3;11098:67;:::i;:::-;11091:74;;11174:93;11263:3;11174:93;:::i;:::-;11292:2;11287:3;11283:12;11276:19;;10935:366;;;:::o;11307:::-;11449:3;11470:67;11534:2;11529:3;11470:67;:::i;:::-;11463:74;;11546:93;11635:3;11546:93;:::i;:::-;11664:2;11659:3;11655:12;11648:19;;11307:366;;;:::o;11679:365::-;11821:3;11842:66;11906:1;11901:3;11842:66;:::i;:::-;11835:73;;11917:93;12006:3;11917:93;:::i;:::-;12035:2;12030:3;12026:12;12019:19;;11679:365;;;:::o;12050:366::-;12192:3;12213:67;12277:2;12272:3;12213:67;:::i;:::-;12206:74;;12289:93;12378:3;12289:93;:::i;:::-;12407:2;12402:3;12398:12;12391:19;;12050:366;;;:::o;12422:::-;12564:3;12585:67;12649:2;12644:3;12585:67;:::i;:::-;12578:74;;12661:93;12750:3;12661:93;:::i;:::-;12779:2;12774:3;12770:12;12763:19;;12422:366;;;:::o;12794:::-;12936:3;12957:67;13021:2;13016:3;12957:67;:::i;:::-;12950:74;;13033:93;13122:3;13033:93;:::i;:::-;13151:2;13146:3;13142:12;13135:19;;12794:366;;;:::o;13166:::-;13308:3;13329:67;13393:2;13388:3;13329:67;:::i;:::-;13322:74;;13405:93;13494:3;13405:93;:::i;:::-;13523:2;13518:3;13514:12;13507:19;;13166:366;;;:::o;13538:::-;13680:3;13701:67;13765:2;13760:3;13701:67;:::i;:::-;13694:74;;13777:93;13866:3;13777:93;:::i;:::-;13895:2;13890:3;13886:12;13879:19;;13538:366;;;:::o;13910:::-;14052:3;14073:67;14137:2;14132:3;14073:67;:::i;:::-;14066:74;;14149:93;14238:3;14149:93;:::i;:::-;14267:2;14262:3;14258:12;14251:19;;13910:366;;;:::o;14282:::-;14424:3;14445:67;14509:2;14504:3;14445:67;:::i;:::-;14438:74;;14521:93;14610:3;14521:93;:::i;:::-;14639:2;14634:3;14630:12;14623:19;;14282:366;;;:::o;14654:::-;14796:3;14817:67;14881:2;14876:3;14817:67;:::i;:::-;14810:74;;14893:93;14982:3;14893:93;:::i;:::-;15011:2;15006:3;15002:12;14995:19;;14654:366;;;:::o;15026:::-;15168:3;15189:67;15253:2;15248:3;15189:67;:::i;:::-;15182:74;;15265:93;15354:3;15265:93;:::i;:::-;15383:2;15378:3;15374:12;15367:19;;15026:366;;;:::o;15398:::-;15540:3;15561:67;15625:2;15620:3;15561:67;:::i;:::-;15554:74;;15637:93;15726:3;15637:93;:::i;:::-;15755:2;15750:3;15746:12;15739:19;;15398:366;;;:::o;15770:398::-;15929:3;15950:83;16031:1;16026:3;15950:83;:::i;:::-;15943:90;;16042:93;16131:3;16042:93;:::i;:::-;16160:1;16155:3;16151:11;16144:18;;15770:398;;;:::o;16174:366::-;16316:3;16337:67;16401:2;16396:3;16337:67;:::i;:::-;16330:74;;16413:93;16502:3;16413:93;:::i;:::-;16531:2;16526:3;16522:12;16515:19;;16174:366;;;:::o;16546:::-;16688:3;16709:67;16773:2;16768:3;16709:67;:::i;:::-;16702:74;;16785:93;16874:3;16785:93;:::i;:::-;16903:2;16898:3;16894:12;16887:19;;16546:366;;;:::o;16918:::-;17060:3;17081:67;17145:2;17140:3;17081:67;:::i;:::-;17074:74;;17157:93;17246:3;17157:93;:::i;:::-;17275:2;17270:3;17266:12;17259:19;;16918:366;;;:::o;17290:::-;17432:3;17453:67;17517:2;17512:3;17453:67;:::i;:::-;17446:74;;17529:93;17618:3;17529:93;:::i;:::-;17647:2;17642:3;17638:12;17631:19;;17290:366;;;:::o;17662:::-;17804:3;17825:67;17889:2;17884:3;17825:67;:::i;:::-;17818:74;;17901:93;17990:3;17901:93;:::i;:::-;18019:2;18014:3;18010:12;18003:19;;17662:366;;;:::o;18034:::-;18176:3;18197:67;18261:2;18256:3;18197:67;:::i;:::-;18190:74;;18273:93;18362:3;18273:93;:::i;:::-;18391:2;18386:3;18382:12;18375:19;;18034:366;;;:::o;18406:::-;18548:3;18569:67;18633:2;18628:3;18569:67;:::i;:::-;18562:74;;18645:93;18734:3;18645:93;:::i;:::-;18763:2;18758:3;18754:12;18747:19;;18406:366;;;:::o;18778:::-;18920:3;18941:67;19005:2;19000:3;18941:67;:::i;:::-;18934:74;;19017:93;19106:3;19017:93;:::i;:::-;19135:2;19130:3;19126:12;19119:19;;18778:366;;;:::o;19150:::-;19292:3;19313:67;19377:2;19372:3;19313:67;:::i;:::-;19306:74;;19389:93;19478:3;19389:93;:::i;:::-;19507:2;19502:3;19498:12;19491:19;;19150:366;;;:::o;19522:118::-;19609:24;19627:5;19609:24;:::i;:::-;19604:3;19597:37;19522:118;;:::o;19646:435::-;19826:3;19848:95;19939:3;19930:6;19848:95;:::i;:::-;19841:102;;19960:95;20051:3;20042:6;19960:95;:::i;:::-;19953:102;;20072:3;20065:10;;19646:435;;;;;:::o;20087:379::-;20271:3;20293:147;20436:3;20293:147;:::i;:::-;20286:154;;20457:3;20450:10;;20087:379;;;:::o;20472:222::-;20565:4;20603:2;20592:9;20588:18;20580:26;;20616:71;20684:1;20673:9;20669:17;20660:6;20616:71;:::i;:::-;20472:222;;;;:::o;20700:640::-;20895:4;20933:3;20922:9;20918:19;20910:27;;20947:71;21015:1;21004:9;21000:17;20991:6;20947:71;:::i;:::-;21028:72;21096:2;21085:9;21081:18;21072:6;21028:72;:::i;:::-;21110;21178:2;21167:9;21163:18;21154:6;21110:72;:::i;:::-;21229:9;21223:4;21219:20;21214:2;21203:9;21199:18;21192:48;21257:76;21328:4;21319:6;21257:76;:::i;:::-;21249:84;;20700:640;;;;;;;:::o;21346:210::-;21433:4;21471:2;21460:9;21456:18;21448:26;;21484:65;21546:1;21535:9;21531:17;21522:6;21484:65;:::i;:::-;21346:210;;;;:::o;21562:313::-;21675:4;21713:2;21702:9;21698:18;21690:26;;21762:9;21756:4;21752:20;21748:1;21737:9;21733:17;21726:47;21790:78;21863:4;21854:6;21790:78;:::i;:::-;21782:86;;21562:313;;;;:::o;21881:419::-;22047:4;22085:2;22074:9;22070:18;22062:26;;22134:9;22128:4;22124:20;22120:1;22109:9;22105:17;22098:47;22162:131;22288:4;22162:131;:::i;:::-;22154:139;;21881:419;;;:::o;22306:::-;22472:4;22510:2;22499:9;22495:18;22487:26;;22559:9;22553:4;22549:20;22545:1;22534:9;22530:17;22523:47;22587:131;22713:4;22587:131;:::i;:::-;22579:139;;22306:419;;;:::o;22731:::-;22897:4;22935:2;22924:9;22920:18;22912:26;;22984:9;22978:4;22974:20;22970:1;22959:9;22955:17;22948:47;23012:131;23138:4;23012:131;:::i;:::-;23004:139;;22731:419;;;:::o;23156:::-;23322:4;23360:2;23349:9;23345:18;23337:26;;23409:9;23403:4;23399:20;23395:1;23384:9;23380:17;23373:47;23437:131;23563:4;23437:131;:::i;:::-;23429:139;;23156:419;;;:::o;23581:::-;23747:4;23785:2;23774:9;23770:18;23762:26;;23834:9;23828:4;23824:20;23820:1;23809:9;23805:17;23798:47;23862:131;23988:4;23862:131;:::i;:::-;23854:139;;23581:419;;;:::o;24006:::-;24172:4;24210:2;24199:9;24195:18;24187:26;;24259:9;24253:4;24249:20;24245:1;24234:9;24230:17;24223:47;24287:131;24413:4;24287:131;:::i;:::-;24279:139;;24006:419;;;:::o;24431:::-;24597:4;24635:2;24624:9;24620:18;24612:26;;24684:9;24678:4;24674:20;24670:1;24659:9;24655:17;24648:47;24712:131;24838:4;24712:131;:::i;:::-;24704:139;;24431:419;;;:::o;24856:::-;25022:4;25060:2;25049:9;25045:18;25037:26;;25109:9;25103:4;25099:20;25095:1;25084:9;25080:17;25073:47;25137:131;25263:4;25137:131;:::i;:::-;25129:139;;24856:419;;;:::o;25281:::-;25447:4;25485:2;25474:9;25470:18;25462:26;;25534:9;25528:4;25524:20;25520:1;25509:9;25505:17;25498:47;25562:131;25688:4;25562:131;:::i;:::-;25554:139;;25281:419;;;:::o;25706:::-;25872:4;25910:2;25899:9;25895:18;25887:26;;25959:9;25953:4;25949:20;25945:1;25934:9;25930:17;25923:47;25987:131;26113:4;25987:131;:::i;:::-;25979:139;;25706:419;;;:::o;26131:::-;26297:4;26335:2;26324:9;26320:18;26312:26;;26384:9;26378:4;26374:20;26370:1;26359:9;26355:17;26348:47;26412:131;26538:4;26412:131;:::i;:::-;26404:139;;26131:419;;;:::o;26556:::-;26722:4;26760:2;26749:9;26745:18;26737:26;;26809:9;26803:4;26799:20;26795:1;26784:9;26780:17;26773:47;26837:131;26963:4;26837:131;:::i;:::-;26829:139;;26556:419;;;:::o;26981:::-;27147:4;27185:2;27174:9;27170:18;27162:26;;27234:9;27228:4;27224:20;27220:1;27209:9;27205:17;27198:47;27262:131;27388:4;27262:131;:::i;:::-;27254:139;;26981:419;;;:::o;27406:::-;27572:4;27610:2;27599:9;27595:18;27587:26;;27659:9;27653:4;27649:20;27645:1;27634:9;27630:17;27623:47;27687:131;27813:4;27687:131;:::i;:::-;27679:139;;27406:419;;;:::o;27831:::-;27997:4;28035:2;28024:9;28020:18;28012:26;;28084:9;28078:4;28074:20;28070:1;28059:9;28055:17;28048:47;28112:131;28238:4;28112:131;:::i;:::-;28104:139;;27831:419;;;:::o;28256:::-;28422:4;28460:2;28449:9;28445:18;28437:26;;28509:9;28503:4;28499:20;28495:1;28484:9;28480:17;28473:47;28537:131;28663:4;28537:131;:::i;:::-;28529:139;;28256:419;;;:::o;28681:::-;28847:4;28885:2;28874:9;28870:18;28862:26;;28934:9;28928:4;28924:20;28920:1;28909:9;28905:17;28898:47;28962:131;29088:4;28962:131;:::i;:::-;28954:139;;28681:419;;;:::o;29106:::-;29272:4;29310:2;29299:9;29295:18;29287:26;;29359:9;29353:4;29349:20;29345:1;29334:9;29330:17;29323:47;29387:131;29513:4;29387:131;:::i;:::-;29379:139;;29106:419;;;:::o;29531:::-;29697:4;29735:2;29724:9;29720:18;29712:26;;29784:9;29778:4;29774:20;29770:1;29759:9;29755:17;29748:47;29812:131;29938:4;29812:131;:::i;:::-;29804:139;;29531:419;;;:::o;29956:::-;30122:4;30160:2;30149:9;30145:18;30137:26;;30209:9;30203:4;30199:20;30195:1;30184:9;30180:17;30173:47;30237:131;30363:4;30237:131;:::i;:::-;30229:139;;29956:419;;;:::o;30381:::-;30547:4;30585:2;30574:9;30570:18;30562:26;;30634:9;30628:4;30624:20;30620:1;30609:9;30605:17;30598:47;30662:131;30788:4;30662:131;:::i;:::-;30654:139;;30381:419;;;:::o;30806:::-;30972:4;31010:2;30999:9;30995:18;30987:26;;31059:9;31053:4;31049:20;31045:1;31034:9;31030:17;31023:47;31087:131;31213:4;31087:131;:::i;:::-;31079:139;;30806:419;;;:::o;31231:::-;31397:4;31435:2;31424:9;31420:18;31412:26;;31484:9;31478:4;31474:20;31470:1;31459:9;31455:17;31448:47;31512:131;31638:4;31512:131;:::i;:::-;31504:139;;31231:419;;;:::o;31656:::-;31822:4;31860:2;31849:9;31845:18;31837:26;;31909:9;31903:4;31899:20;31895:1;31884:9;31880:17;31873:47;31937:131;32063:4;31937:131;:::i;:::-;31929:139;;31656:419;;;:::o;32081:::-;32247:4;32285:2;32274:9;32270:18;32262:26;;32334:9;32328:4;32324:20;32320:1;32309:9;32305:17;32298:47;32362:131;32488:4;32362:131;:::i;:::-;32354:139;;32081:419;;;:::o;32506:::-;32672:4;32710:2;32699:9;32695:18;32687:26;;32759:9;32753:4;32749:20;32745:1;32734:9;32730:17;32723:47;32787:131;32913:4;32787:131;:::i;:::-;32779:139;;32506:419;;;:::o;32931:::-;33097:4;33135:2;33124:9;33120:18;33112:26;;33184:9;33178:4;33174:20;33170:1;33159:9;33155:17;33148:47;33212:131;33338:4;33212:131;:::i;:::-;33204:139;;32931:419;;;:::o;33356:::-;33522:4;33560:2;33549:9;33545:18;33537:26;;33609:9;33603:4;33599:20;33595:1;33584:9;33580:17;33573:47;33637:131;33763:4;33637:131;:::i;:::-;33629:139;;33356:419;;;:::o;33781:::-;33947:4;33985:2;33974:9;33970:18;33962:26;;34034:9;34028:4;34024:20;34020:1;34009:9;34005:17;33998:47;34062:131;34188:4;34062:131;:::i;:::-;34054:139;;33781:419;;;:::o;34206:222::-;34299:4;34337:2;34326:9;34322:18;34314:26;;34350:71;34418:1;34407:9;34403:17;34394:6;34350:71;:::i;:::-;34206:222;;;;:::o;34434:129::-;34468:6;34495:20;;:::i;:::-;34485:30;;34524:33;34552:4;34544:6;34524:33;:::i;:::-;34434:129;;;:::o;34569:75::-;34602:6;34635:2;34629:9;34619:19;;34569:75;:::o;34650:307::-;34711:4;34801:18;34793:6;34790:30;34787:56;;;34823:18;;:::i;:::-;34787:56;34861:29;34883:6;34861:29;:::i;:::-;34853:37;;34945:4;34939;34935:15;34927:23;;34650:307;;;:::o;34963:98::-;35014:6;35048:5;35042:12;35032:22;;34963:98;;;:::o;35067:99::-;35119:6;35153:5;35147:12;35137:22;;35067:99;;;:::o;35172:168::-;35255:11;35289:6;35284:3;35277:19;35329:4;35324:3;35320:14;35305:29;;35172:168;;;;:::o;35346:147::-;35447:11;35484:3;35469:18;;35346:147;;;;:::o;35499:169::-;35583:11;35617:6;35612:3;35605:19;35657:4;35652:3;35648:14;35633:29;;35499:169;;;;:::o;35674:148::-;35776:11;35813:3;35798:18;;35674:148;;;;:::o;35828:305::-;35868:3;35887:20;35905:1;35887:20;:::i;:::-;35882:25;;35921:20;35939:1;35921:20;:::i;:::-;35916:25;;36075:1;36007:66;36003:74;36000:1;35997:81;35994:107;;;36081:18;;:::i;:::-;35994:107;36125:1;36122;36118:9;36111:16;;35828:305;;;;:::o;36139:185::-;36179:1;36196:20;36214:1;36196:20;:::i;:::-;36191:25;;36230:20;36248:1;36230:20;:::i;:::-;36225:25;;36269:1;36259:35;;36274:18;;:::i;:::-;36259:35;36316:1;36313;36309:9;36304:14;;36139:185;;;;:::o;36330:348::-;36370:7;36393:20;36411:1;36393:20;:::i;:::-;36388:25;;36427:20;36445:1;36427:20;:::i;:::-;36422:25;;36615:1;36547:66;36543:74;36540:1;36537:81;36532:1;36525:9;36518:17;36514:105;36511:131;;;36622:18;;:::i;:::-;36511:131;36670:1;36667;36663:9;36652:20;;36330:348;;;;:::o;36684:191::-;36724:4;36744:20;36762:1;36744:20;:::i;:::-;36739:25;;36778:20;36796:1;36778:20;:::i;:::-;36773:25;;36817:1;36814;36811:8;36808:34;;;36822:18;;:::i;:::-;36808:34;36867:1;36864;36860:9;36852:17;;36684:191;;;;:::o;36881:96::-;36918:7;36947:24;36965:5;36947:24;:::i;:::-;36936:35;;36881:96;;;:::o;36983:90::-;37017:7;37060:5;37053:13;37046:21;37035:32;;36983:90;;;:::o;37079:149::-;37115:7;37155:66;37148:5;37144:78;37133:89;;37079:149;;;:::o;37234:126::-;37271:7;37311:42;37304:5;37300:54;37289:65;;37234:126;;;:::o;37366:77::-;37403:7;37432:5;37421:16;;37366:77;;;:::o;37449:154::-;37533:6;37528:3;37523;37510:30;37595:1;37586:6;37581:3;37577:16;37570:27;37449:154;;;:::o;37609:307::-;37677:1;37687:113;37701:6;37698:1;37695:13;37687:113;;;37786:1;37781:3;37777:11;37771:18;37767:1;37762:3;37758:11;37751:39;37723:2;37720:1;37716:10;37711:15;;37687:113;;;37818:6;37815:1;37812:13;37809:101;;;37898:1;37889:6;37884:3;37880:16;37873:27;37809:101;37658:258;37609:307;;;:::o;37922:320::-;37966:6;38003:1;37997:4;37993:12;37983:22;;38050:1;38044:4;38040:12;38071:18;38061:81;;38127:4;38119:6;38115:17;38105:27;;38061:81;38189:2;38181:6;38178:14;38158:18;38155:38;38152:84;;;38208:18;;:::i;:::-;38152:84;37973:269;37922:320;;;:::o;38248:281::-;38331:27;38353:4;38331:27;:::i;:::-;38323:6;38319:40;38461:6;38449:10;38446:22;38425:18;38413:10;38410:34;38407:62;38404:88;;;38472:18;;:::i;:::-;38404:88;38512:10;38508:2;38501:22;38291:238;38248:281;;:::o;38535:233::-;38574:3;38597:24;38615:5;38597:24;:::i;:::-;38588:33;;38643:66;38636:5;38633:77;38630:103;;;38713:18;;:::i;:::-;38630:103;38760:1;38753:5;38749:13;38742:20;;38535:233;;;:::o;38774:176::-;38806:1;38823:20;38841:1;38823:20;:::i;:::-;38818:25;;38857:20;38875:1;38857:20;:::i;:::-;38852:25;;38896:1;38886:35;;38901:18;;:::i;:::-;38886:35;38942:1;38939;38935:9;38930:14;;38774:176;;;;:::o;38956:180::-;39004:77;39001:1;38994:88;39101:4;39098:1;39091:15;39125:4;39122:1;39115:15;39142:180;39190:77;39187:1;39180:88;39287:4;39284:1;39277:15;39311:4;39308:1;39301:15;39328:180;39376:77;39373:1;39366:88;39473:4;39470:1;39463:15;39497:4;39494:1;39487:15;39514:180;39562:77;39559:1;39552:88;39659:4;39656:1;39649:15;39683:4;39680:1;39673:15;39700:180;39748:77;39745:1;39738:88;39845:4;39842:1;39835:15;39869:4;39866:1;39859:15;39886:117;39995:1;39992;39985:12;40009:117;40118:1;40115;40108:12;40132:117;40241:1;40238;40231:12;40255:117;40364:1;40361;40354:12;40378:117;40487:1;40484;40477:12;40501:117;40610:1;40607;40600:12;40624:102;40665:6;40716:2;40712:7;40707:2;40700:5;40696:14;40692:28;40682:38;;40624:102;;;:::o;40732:221::-;40872:34;40868:1;40860:6;40856:14;40849:58;40941:4;40936:2;40928:6;40924:15;40917:29;40732:221;:::o;40959:225::-;41099:34;41095:1;41087:6;41083:14;41076:58;41168:8;41163:2;41155:6;41151:15;41144:33;40959:225;:::o;41190:169::-;41330:21;41326:1;41318:6;41314:14;41307:45;41190:169;:::o;41365:229::-;41505:34;41501:1;41493:6;41489:14;41482:58;41574:12;41569:2;41561:6;41557:15;41550:37;41365:229;:::o;41600:170::-;41740:22;41736:1;41728:6;41724:14;41717:46;41600:170;:::o;41776:222::-;41916:34;41912:1;41904:6;41900:14;41893:58;41985:5;41980:2;41972:6;41968:15;41961:30;41776:222;:::o;42004:224::-;42144:34;42140:1;42132:6;42128:14;42121:58;42213:7;42208:2;42200:6;42196:15;42189:32;42004:224;:::o;42234:236::-;42374:34;42370:1;42362:6;42358:14;42351:58;42443:19;42438:2;42430:6;42426:15;42419:44;42234:236;:::o;42476:233::-;42616:34;42612:1;42604:6;42600:14;42593:58;42685:16;42680:2;42672:6;42668:15;42661:41;42476:233;:::o;42715:159::-;42855:11;42851:1;42843:6;42839:14;42832:35;42715:159;:::o;42880:170::-;43020:22;43016:1;43008:6;43004:14;42997:46;42880:170;:::o;43056:244::-;43196:34;43192:1;43184:6;43180:14;43173:58;43265:27;43260:2;43252:6;43248:15;43241:52;43056:244;:::o;43306:230::-;43446:34;43442:1;43434:6;43430:14;43423:58;43515:13;43510:2;43502:6;43498:15;43491:38;43306:230;:::o;43542:225::-;43682:34;43678:1;43670:6;43666:14;43659:58;43751:8;43746:2;43738:6;43734:15;43727:33;43542:225;:::o;43773:182::-;43913:34;43909:1;43901:6;43897:14;43890:58;43773:182;:::o;43961:234::-;44101:34;44097:1;44089:6;44085:14;44078:58;44170:17;44165:2;44157:6;44153:15;44146:42;43961:234;:::o;44201:176::-;44341:28;44337:1;44329:6;44325:14;44318:52;44201:176;:::o;44383:237::-;44523:34;44519:1;44511:6;44507:14;44500:58;44592:20;44587:2;44579:6;44575:15;44568:45;44383:237;:::o;44626:179::-;44766:31;44762:1;44754:6;44750:14;44743:55;44626:179;:::o;44811:221::-;44951:34;44947:1;44939:6;44935:14;44928:58;45020:4;45015:2;45007:6;45003:15;44996:29;44811:221;:::o;45038:114::-;;:::o;45158:166::-;45298:18;45294:1;45286:6;45282:14;45275:42;45158:166;:::o;45330:238::-;45470:34;45466:1;45458:6;45454:14;45447:58;45539:21;45534:2;45526:6;45522:15;45515:46;45330:238;:::o;45574:220::-;45714:34;45710:1;45702:6;45698:14;45691:58;45783:3;45778:2;45770:6;45766:15;45759:28;45574:220;:::o;45800:227::-;45940:34;45936:1;45928:6;45924:14;45917:58;46009:10;46004:2;45996:6;45992:15;45985:35;45800:227;:::o;46033:169::-;46173:21;46169:1;46161:6;46157:14;46150:45;46033:169;:::o;46208:233::-;46348:34;46344:1;46336:6;46332:14;46325:58;46417:16;46412:2;46404:6;46400:15;46393:41;46208:233;:::o;46447:181::-;46587:33;46583:1;46575:6;46571:14;46564:57;46447:181;:::o;46634:234::-;46774:34;46770:1;46762:6;46758:14;46751:58;46843:17;46838:2;46830:6;46826:15;46819:42;46634:234;:::o;46874:232::-;47014:34;47010:1;47002:6;46998:14;46991:58;47083:15;47078:2;47070:6;47066:15;47059:40;46874:232;:::o;47112:122::-;47185:24;47203:5;47185:24;:::i;:::-;47178:5;47175:35;47165:63;;47224:1;47221;47214:12;47165:63;47112:122;:::o;47240:116::-;47310:21;47325:5;47310:21;:::i;:::-;47303:5;47300:32;47290:60;;47346:1;47343;47336:12;47290:60;47240:116;:::o;47362:120::-;47434:23;47451:5;47434:23;:::i;:::-;47427:5;47424:34;47414:62;;47472:1;47469;47462:12;47414:62;47362:120;:::o;47488:122::-;47561:24;47579:5;47561:24;:::i;:::-;47554:5;47551:35;47541:63;;47600:1;47597;47590:12;47541:63;47488:122;:::o

Swarm Source

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