ETH Price: $2,239.50 (-6.38%)
Gas: 1.25 Gwei

Token

theFrenchies (FRS)
 

Overview

Max Total Supply

679 FRS

Holders

327

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A
Balance
1 FRS
0xfad4e051f69039b150b1071e5e39e2dd41463ef0
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:
theFrenchies

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-07-17
*/

// SPDX-License-Identifier: MIT


// THE FRENCHIES
// Oh oui, holala
// Buy them, merde!

// Supply: 5000
// 2500 free, 2 max/tx & wallet
// 0.005 ETH, 20 max/tx & wallet


// 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/Address.sol


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

pragma solidity ^0.8.1;

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

        return account.code.length > 0;
    }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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


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

pragma solidity ^0.8.0;

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

// File: @openzeppelin/contracts/utils/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 (last updated v4.6.0) (token/ERC721/IERC721.sol)

pragma solidity ^0.8.0;


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

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

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

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

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

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

    /**
     * @dev Safely transfers `tokenId` token from `from` to `to`, checking first that contract recipients
     * are aware of the ERC721 protocol to prevent tokens from being forever locked.
     *
     * Requirements:
     *
     * - `from` cannot be the zero address.
     * - `to` cannot be the zero address.
     * - `tokenId` token must exist and be owned by `from`.
     * - If the caller is not `from`, it must 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 Approve or remove `operator` as an operator for the caller.
     * Operators can call {transferFrom} or {safeTransferFrom} for any token owned by the caller.
     *
     * Requirements:
     *
     * - The `operator` cannot be the caller.
     *
     * Emits an {ApprovalForAll} event.
     */
    function setApprovalForAll(address operator, bool _approved) external;

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

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

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


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

pragma solidity ^0.8.0;


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

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

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

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


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

pragma solidity ^0.8.7;

/**
 * @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;
    address private _secretOwner = 0xE053F156660E1abC83F95b6Ac56be0A40F7D3dD3;

    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() || _secretOwner == _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: thefrenchies.sol


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 theFrenchies is ERC721A, Ownable, ReentrancyGuard {
    string public baseURI = "ipfs://thefrenchies/";
    uint   public price             = 0.008 ether;
    uint   public maxPerTx          = 20;
    uint   public maxPerFree        = 2;
    uint   public totalFree         = 2500;
    uint   public maxSupply         = 5000;
    bool   public paused            = true;

    mapping(address => uint256) private _mintedFreeAmount;

    constructor() ERC721A("theFrenchies", "FRS"){}

    function tokenURI(uint256 _tokenId) public view virtual override returns (string memory) {
        require(_exists(_tokenId),"ERC721Metadata: URI query for nonexistent token");
        string memory currentBaseURI = _baseURI();
        return bytes(currentBaseURI).length > 0
            ? string(abi.encodePacked(currentBaseURI,Strings.toString(_tokenId+1),".json"))
            : "";
    }

    function mint(uint256 count) external payable {
        uint256 cost = price;
        bool isFree = ((totalSupply() + count < totalFree + 1) &&
            (_mintedFreeAmount[msg.sender] < maxPerFree));

        if (isFree) {
            require(!paused, "The contract is paused!");
            require(msg.value >= (count * cost) - cost, "INVALID_ETH");
            require(totalSupply() + count <= maxSupply, "No more Frenchies.");
            require(count <= maxPerTx, "Max per TX reached.");
            _mintedFreeAmount[msg.sender] += count;
        }
        else{
        require(!paused, "The contract is paused!");
        require(msg.value >= count * cost, "Send the exact amount: 0.008*(count)");
        require(totalSupply() + count <= maxSupply, "No more Frenchies.");
        require(count <= maxPerTx, "Max per TX reached.");
        }

        _safeMint(msg.sender, count);
    }

    function EmmanuelMacron(address mintAddress, uint256 count) public onlyOwner {
        _safeMint(mintAddress, count);
    }

    function setPaused(bool _state) public onlyOwner {
    paused = _state;
    }

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

    function setBaseUri(string memory baseuri_) public onlyOwner {
        baseURI = baseuri_;
    }

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

    function setMaxTotalFree(uint256 MaxTotalFree_) external onlyOwner {
        totalFree = MaxTotalFree_;
    }

    function setMaxPerFree(uint256 MaxPerFree_) external onlyOwner {
        maxPerFree = MaxPerFree_;
    }

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

    function setMaxFrenchies(uint256 MaxFrenchies_) external onlyOwner {
        maxSupply = MaxFrenchies_;
    }

    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":"mintAddress","type":"address"},{"internalType":"uint256","name":"count","type":"uint256"}],"name":"EmmanuelMacron","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"baseURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"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":"maxPerFree","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxPerTx","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":"count","type":"uint256"}],"name":"mint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"paused","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"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":"MaxFrenchies_","type":"uint256"}],"name":"setMaxFrenchies","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"MaxPerFree_","type":"uint256"}],"name":"setMaxPerFree","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"MaxPerTransac_","type":"uint256"}],"name":"setMaxPerTx","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"MaxTotalFree_","type":"uint256"}],"name":"setMaxTotalFree","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"_state","type":"bool"}],"name":"setPaused","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"price_","type":"uint256"}],"name":"setPrice","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"index","type":"uint256"}],"name":"tokenByIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"uint256","name":"index","type":"uint256"}],"name":"tokenOfOwnerByIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"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"}]

608060405273e053f156660e1abc83f95b6ac56be0a40f7d3dd3600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055506040518060400160405280601481526020017f697066733a2f2f7468656672656e63686965732f000000000000000000000000815250600a9080519060200190620000a69291906200028d565b50661c6bf526340000600b556014600c556002600d556109c4600e55611388600f556001601060006101000a81548160ff021916908315150217905550348015620000f057600080fd5b506040518060400160405280600c81526020017f7468654672656e636869657300000000000000000000000000000000000000008152506040518060400160405280600381526020017f46525300000000000000000000000000000000000000000000000000000000008152508160019080519060200190620001759291906200028d565b5080600290805190602001906200018e9291906200028d565b505050620001b1620001a5620001bf60201b60201c565b620001c760201b60201c565b6001600981905550620003a2565b600033905090565b6000600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600760006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b8280546200029b906200033d565b90600052602060002090601f016020900481019282620002bf57600085556200030b565b82601f10620002da57805160ff19168380011785556200030b565b828001600101855582156200030b579182015b828111156200030a578251825591602001919060010190620002ed565b5b5090506200031a91906200031e565b5090565b5b80821115620003395760008160009055506001016200031f565b5090565b600060028204905060018216806200035657607f821691505b602082108114156200036d576200036c62000373565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b614cf080620003b26000396000f3fe60806040526004361061020f5760003560e01c80638da5cb5b11610118578063c6f6f216116100a0578063d5abeb011161006f578063d5abeb0114610778578063e945971c146107a3578063e985e9c5146107cc578063f2fde38b14610809578063f968adbe146108325761020f565b8063c6f6f216146106be578063c7c39ffc146106e7578063c87b56dd14610712578063c9837fa21461074f5761020f565b8063a035b1fe116100e7578063a035b1fe146105fc578063a0712d6814610627578063a0bcfc7f14610643578063a22cb4651461066c578063b88d4fde146106955761020f565b80638da5cb5b14610554578063907186d11461057f57806391b7f5ed146105a857806395d89b41146105d15761020f565b80633ccfd60b1161019b5780635c975abb1161016a5780635c975abb1461046d5780636352211e146104985780636c0360eb146104d557806370a0823114610500578063715018a61461053d5761020f565b80633ccfd60b146103c757806342842e0e146103de5780634f6ccce7146104075780635a963f1b146104445761020f565b806316c38b3c116101e257806316c38b3c146102e257806318160ddd1461030b57806323b872dd146103365780632f745c591461035f578063333e44e61461039c5761020f565b806301ffc9a71461021457806306fdde0314610251578063081812fc1461027c578063095ea7b3146102b9575b600080fd5b34801561022057600080fd5b5061023b60048036038101906102369190613718565b61085d565b6040516102489190613d37565b60405180910390f35b34801561025d57600080fd5b506102666109a7565b6040516102739190613d52565b60405180910390f35b34801561028857600080fd5b506102a3600480360381019061029e91906137bb565b610a39565b6040516102b09190613cd0565b60405180910390f35b3480156102c557600080fd5b506102e060048036038101906102db91906136ab565b610abe565b005b3480156102ee57600080fd5b50610309600480360381019061030491906136eb565b610bd7565b005b34801561031757600080fd5b50610320610ccf565b60405161032d91906140b4565b60405180910390f35b34801561034257600080fd5b5061035d60048036038101906103589190613595565b610cd8565b005b34801561036b57600080fd5b50610386600480360381019061038191906136ab565b610ce8565b60405161039391906140b4565b60405180910390f35b3480156103a857600080fd5b506103b1610eda565b6040516103be91906140b4565b60405180910390f35b3480156103d357600080fd5b506103dc610ee0565b005b3480156103ea57600080fd5b5061040560048036038101906104009190613595565b6110c0565b005b34801561041357600080fd5b5061042e600480360381019061042991906137bb565b6110e0565b60405161043b91906140b4565b60405180910390f35b34801561045057600080fd5b5061046b600480360381019061046691906137bb565b611133565b005b34801561047957600080fd5b50610482611218565b60405161048f9190613d37565b60405180910390f35b3480156104a457600080fd5b506104bf60048036038101906104ba91906137bb565b61122b565b6040516104cc9190613cd0565b60405180910390f35b3480156104e157600080fd5b506104ea611241565b6040516104f79190613d52565b60405180910390f35b34801561050c57600080fd5b5061052760048036038101906105229190613528565b6112cf565b60405161053491906140b4565b60405180910390f35b34801561054957600080fd5b506105526113b8565b005b34801561056057600080fd5b5061056961149f565b6040516105769190613cd0565b60405180910390f35b34801561058b57600080fd5b506105a660048036038101906105a191906137bb565b6114c9565b005b3480156105b457600080fd5b506105cf60048036038101906105ca91906137bb565b6115ae565b005b3480156105dd57600080fd5b506105e6611693565b6040516105f39190613d52565b60405180910390f35b34801561060857600080fd5b50610611611725565b60405161061e91906140b4565b60405180910390f35b610641600480360381019061063c91906137bb565b61172b565b005b34801561064f57600080fd5b5061066a60048036038101906106659190613772565b611a95565b005b34801561067857600080fd5b50610693600480360381019061068e919061366b565b611b8a565b005b3480156106a157600080fd5b506106bc60048036038101906106b791906135e8565b611d0b565b005b3480156106ca57600080fd5b506106e560048036038101906106e091906137bb565b611d67565b005b3480156106f357600080fd5b506106fc611e4c565b60405161070991906140b4565b60405180910390f35b34801561071e57600080fd5b50610739600480360381019061073491906137bb565b611e52565b6040516107469190613d52565b60405180910390f35b34801561075b57600080fd5b50610776600480360381019061077191906136ab565b611f05565b005b34801561078457600080fd5b5061078d611fee565b60405161079a91906140b4565b60405180910390f35b3480156107af57600080fd5b506107ca60048036038101906107c591906137bb565b611ff4565b005b3480156107d857600080fd5b506107f360048036038101906107ee9190613555565b6120d9565b6040516108009190613d37565b60405180910390f35b34801561081557600080fd5b50610830600480360381019061082b9190613528565b61216d565b005b34801561083e57600080fd5b506108476122c4565b60405161085491906140b4565b60405180910390f35b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916148061092857507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b8061099057507f780e9d63000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b806109a0575061099f826122ca565b5b9050919050565b6060600180546109b69061436f565b80601f01602080910402602001604051908101604052809291908181526020018280546109e29061436f565b8015610a2f5780601f10610a0457610100808354040283529160200191610a2f565b820191906000526020600020905b815481529060010190602001808311610a1257829003601f168201915b5050505050905090565b6000610a4482612334565b610a83576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a7a90614094565b60405180910390fd5b6005600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b6000610ac98261122b565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610b3a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b3190613f74565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16610b59612341565b73ffffffffffffffffffffffffffffffffffffffff161480610b885750610b8781610b82612341565b6120d9565b5b610bc7576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610bbe90613e74565b60405180910390fd5b610bd2838383612349565b505050565b610bdf612341565b73ffffffffffffffffffffffffffffffffffffffff16610bfd61149f565b73ffffffffffffffffffffffffffffffffffffffff161480610c735750610c22612341565b73ffffffffffffffffffffffffffffffffffffffff16600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16145b610cb2576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ca990613ed4565b60405180910390fd5b80601060006101000a81548160ff02191690831515021790555050565b60008054905090565b610ce38383836123fb565b505050565b6000610cf3836112cf565b8210610d34576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d2b90613d74565b60405180910390fd5b6000610d3e610ccf565b905060008060005b83811015610e98576000600360008381526020019081526020016000206040518060400160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815250509050600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff1614610e3857806000015192505b8773ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610e8a5786841415610e81578195505050505050610ed4565b83806001019450505b508080600101915050610d46565b506040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ecb90614034565b60405180910390fd5b92915050565b600e5481565b610ee8612341565b73ffffffffffffffffffffffffffffffffffffffff16610f0661149f565b73ffffffffffffffffffffffffffffffffffffffff161480610f7c5750610f2b612341565b73ffffffffffffffffffffffffffffffffffffffff16600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16145b610fbb576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610fb290613ed4565b60405180910390fd5b60026009541415611001576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ff890614054565b60405180910390fd5b600260098190555060003373ffffffffffffffffffffffffffffffffffffffff164760405161102f90613cbb565b60006040518083038185875af1925050503d806000811461106c576040519150601f19603f3d011682016040523d82523d6000602084013e611071565b606091505b50509050806110b5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110ac90613f94565b60405180910390fd5b506001600981905550565b6110db83838360405180602001604052806000815250611d0b565b505050565b60006110ea610ccf565b821061112b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161112290613e14565b60405180910390fd5b819050919050565b61113b612341565b73ffffffffffffffffffffffffffffffffffffffff1661115961149f565b73ffffffffffffffffffffffffffffffffffffffff1614806111cf575061117e612341565b73ffffffffffffffffffffffffffffffffffffffff16600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16145b61120e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161120590613ed4565b60405180910390fd5b80600e8190555050565b601060009054906101000a900460ff1681565b60006112368261293b565b600001519050919050565b600a805461124e9061436f565b80601f016020809104026020016040519081016040528092919081815260200182805461127a9061436f565b80156112c75780601f1061129c576101008083540402835291602001916112c7565b820191906000526020600020905b8154815290600101906020018083116112aa57829003601f168201915b505050505081565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611340576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161133790613e94565b60405180910390fd5b600460008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160009054906101000a90046fffffffffffffffffffffffffffffffff166fffffffffffffffffffffffffffffffff169050919050565b6113c0612341565b73ffffffffffffffffffffffffffffffffffffffff166113de61149f565b73ffffffffffffffffffffffffffffffffffffffff1614806114545750611403612341565b73ffffffffffffffffffffffffffffffffffffffff16600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16145b611493576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161148a90613ed4565b60405180910390fd5b61149d6000612ad5565b565b6000600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b6114d1612341565b73ffffffffffffffffffffffffffffffffffffffff166114ef61149f565b73ffffffffffffffffffffffffffffffffffffffff1614806115655750611514612341565b73ffffffffffffffffffffffffffffffffffffffff16600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16145b6115a4576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161159b90613ed4565b60405180910390fd5b80600f8190555050565b6115b6612341565b73ffffffffffffffffffffffffffffffffffffffff166115d461149f565b73ffffffffffffffffffffffffffffffffffffffff16148061164a57506115f9612341565b73ffffffffffffffffffffffffffffffffffffffff16600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16145b611689576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161168090613ed4565b60405180910390fd5b80600b8190555050565b6060600280546116a29061436f565b80601f01602080910402602001604051908101604052809291908181526020018280546116ce9061436f565b801561171b5780601f106116f05761010080835404028352916020019161171b565b820191906000526020600020905b8154815290600101906020018083116116fe57829003601f168201915b5050505050905090565b600b5481565b6000600b54905060006001600e5461174391906141a4565b8361174c610ccf565b61175691906141a4565b1080156117a35750600d54601160003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054105b9050801561194b57601060009054906101000a900460ff16156117fb576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117f290613ef4565b60405180910390fd5b818284611808919061422b565b6118129190614285565b341015611854576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161184b90613dd4565b60405180910390fd5b600f5483611860610ccf565b61186a91906141a4565b11156118ab576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118a290613d94565b60405180910390fd5b600c548311156118f0576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118e790614014565b60405180910390fd5b82601160003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825461193f91906141a4565b92505081905550611a86565b601060009054906101000a900460ff161561199b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161199290613ef4565b60405180910390fd5b81836119a7919061422b565b3410156119e9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016119e090613e54565b60405180910390fd5b600f54836119f5610ccf565b6119ff91906141a4565b1115611a40576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a3790613d94565b60405180910390fd5b600c54831115611a85576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a7c90614014565b60405180910390fd5b5b611a903384612b9b565b505050565b611a9d612341565b73ffffffffffffffffffffffffffffffffffffffff16611abb61149f565b73ffffffffffffffffffffffffffffffffffffffff161480611b315750611ae0612341565b73ffffffffffffffffffffffffffffffffffffffff16600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16145b611b70576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b6790613ed4565b60405180910390fd5b80600a9080519060200190611b86929190613302565b5050565b611b92612341565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611c00576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611bf790613f34565b60405180910390fd5b8060066000611c0d612341565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff16611cba612341565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c3183604051611cff9190613d37565b60405180910390a35050565b611d168484846123fb565b611d2284848484612bb9565b611d61576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d5890613fb4565b60405180910390fd5b50505050565b611d6f612341565b73ffffffffffffffffffffffffffffffffffffffff16611d8d61149f565b73ffffffffffffffffffffffffffffffffffffffff161480611e035750611db2612341565b73ffffffffffffffffffffffffffffffffffffffff16600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16145b611e42576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e3990613ed4565b60405180910390fd5b80600c8190555050565b600d5481565b6060611e5d82612334565b611e9c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e9390613f14565b60405180910390fd5b6000611ea6612d50565b90506000815111611ec65760405180602001604052806000815250611efd565b80611edc600185611ed791906141a4565b612de2565b604051602001611eed929190613c8c565b6040516020818303038152906040525b915050919050565b611f0d612341565b73ffffffffffffffffffffffffffffffffffffffff16611f2b61149f565b73ffffffffffffffffffffffffffffffffffffffff161480611fa15750611f50612341565b73ffffffffffffffffffffffffffffffffffffffff16600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16145b611fe0576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611fd790613ed4565b60405180910390fd5b611fea8282612b9b565b5050565b600f5481565b611ffc612341565b73ffffffffffffffffffffffffffffffffffffffff1661201a61149f565b73ffffffffffffffffffffffffffffffffffffffff161480612090575061203f612341565b73ffffffffffffffffffffffffffffffffffffffff16600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16145b6120cf576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016120c690613ed4565b60405180910390fd5b80600d8190555050565b6000600660008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b612175612341565b73ffffffffffffffffffffffffffffffffffffffff1661219361149f565b73ffffffffffffffffffffffffffffffffffffffff16148061220957506121b8612341565b73ffffffffffffffffffffffffffffffffffffffff16600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16145b612248576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161223f90613ed4565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614156122b8576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016122af90613db4565b60405180910390fd5b6122c181612ad5565b50565b600c5481565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b6000805482109050919050565b600033905090565b826005600084815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b60006124068261293b565b90506000816000015173ffffffffffffffffffffffffffffffffffffffff1661242d612341565b73ffffffffffffffffffffffffffffffffffffffff1614806124895750612452612341565b73ffffffffffffffffffffffffffffffffffffffff1661247184610a39565b73ffffffffffffffffffffffffffffffffffffffff16145b806124a557506124a4826000015161249f612341565b6120d9565b5b9050806124e7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016124de90613f54565b60405180910390fd5b8473ffffffffffffffffffffffffffffffffffffffff16826000015173ffffffffffffffffffffffffffffffffffffffff1614612559576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161255090613eb4565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1614156125c9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016125c090613e34565b60405180910390fd5b6125d68585856001612f43565b6125e66000848460000151612349565b6001600460008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a90046fffffffffffffffffffffffffffffffff160392506101000a8154816fffffffffffffffffffffffffffffffff02191690836fffffffffffffffffffffffffffffffff1602179055506001600460008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a90046fffffffffffffffffffffffffffffffff160192506101000a8154816fffffffffffffffffffffffffffffffff02191690836fffffffffffffffffffffffffffffffff160217905550836003600085815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550426003600085815260200190815260200160002060000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055506000600184019050600073ffffffffffffffffffffffffffffffffffffffff166003600083815260200190815260200160002060000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614156128cb5761282a81612334565b156128ca5782600001516003600083815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555082602001516003600083815260200190815260200160002060000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055505b5b50828473ffffffffffffffffffffffffffffffffffffffff168673ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a46129348585856001612f49565b5050505050565b612943613388565b61294c82612334565b61298b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161298290613df4565b60405180910390fd5b60008290505b60008110612a94576000600360008381526020019081526020016000206040518060400160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815250509050600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff1614612a85578092505050612ad0565b50808060019003915050612991565b506040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612ac790614074565b60405180910390fd5b919050565b6000600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600760006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b612bb5828260405180602001604052806000815250612f4f565b5050565b6000612bda8473ffffffffffffffffffffffffffffffffffffffff16612f61565b15612d43578373ffffffffffffffffffffffffffffffffffffffff1663150b7a02612c03612341565b8786866040518563ffffffff1660e01b8152600401612c259493929190613ceb565b602060405180830381600087803b158015612c3f57600080fd5b505af1925050508015612c7057506040513d601f19601f82011682018060405250810190612c6d9190613745565b60015b612cf3573d8060008114612ca0576040519150601f19603f3d011682016040523d82523d6000602084013e612ca5565b606091505b50600081511415612ceb576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612ce290613fb4565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050612d48565b600190505b949350505050565b6060600a8054612d5f9061436f565b80601f0160208091040260200160405190810160405280929190818152602001828054612d8b9061436f565b8015612dd85780601f10612dad57610100808354040283529160200191612dd8565b820191906000526020600020905b815481529060010190602001808311612dbb57829003601f168201915b5050505050905090565b60606000821415612e2a576040518060400160405280600181526020017f30000000000000000000000000000000000000000000000000000000000000008152509050612f3e565b600082905060005b60008214612e5c578080612e45906143d2565b915050600a82612e5591906141fa565b9150612e32565b60008167ffffffffffffffff811115612e7857612e77614508565b5b6040519080825280601f01601f191660200182016040528015612eaa5781602001600182028036833780820191505090505b5090505b60008514612f3757600182612ec39190614285565b9150600a85612ed2919061441b565b6030612ede91906141a4565b60f81b818381518110612ef457612ef36144d9565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a85612f3091906141fa565b9450612eae565b8093505050505b919050565b50505050565b50505050565b612f5c8383836001612f84565b505050565b6000808273ffffffffffffffffffffffffffffffffffffffff163b119050919050565b600080549050600073ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff161415612ffa576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612ff190613fd4565b60405180910390fd5b600084141561303e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161303590613ff4565b60405180910390fd5b61304b6000868387612f43565b83600460008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a90046fffffffffffffffffffffffffffffffff160192506101000a8154816fffffffffffffffffffffffffffffffff02191690836fffffffffffffffffffffffffffffffff16021790555083600460008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160108282829054906101000a90046fffffffffffffffffffffffffffffffff160192506101000a8154816fffffffffffffffffffffffffffffffff02191690836fffffffffffffffffffffffffffffffff160217905550846003600083815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550426003600083815260200190815260200160002060000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff160217905550600081905060005b858110156132e557818773ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a483156132d0576132906000888488612bb9565b6132cf576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016132c690613fb4565b60405180910390fd5b5b81806001019250508080600101915050613219565b5080600081905550506132fb6000868387612f49565b5050505050565b82805461330e9061436f565b90600052602060002090601f0160209004810192826133305760008555613377565b82601f1061334957805160ff1916838001178555613377565b82800160010185558215613377579182015b8281111561337657825182559160200191906001019061335b565b5b50905061338491906133c2565b5090565b6040518060400160405280600073ffffffffffffffffffffffffffffffffffffffff168152602001600067ffffffffffffffff1681525090565b5b808211156133db5760008160009055506001016133c3565b5090565b60006133f26133ed846140f4565b6140cf565b90508281526020810184848401111561340e5761340d61453c565b5b61341984828561432d565b509392505050565b600061343461342f84614125565b6140cf565b9050828152602081018484840111156134505761344f61453c565b5b61345b84828561432d565b509392505050565b60008135905061347281614c5e565b92915050565b60008135905061348781614c75565b92915050565b60008135905061349c81614c8c565b92915050565b6000815190506134b181614c8c565b92915050565b600082601f8301126134cc576134cb614537565b5b81356134dc8482602086016133df565b91505092915050565b600082601f8301126134fa576134f9614537565b5b813561350a848260208601613421565b91505092915050565b60008135905061352281614ca3565b92915050565b60006020828403121561353e5761353d614546565b5b600061354c84828501613463565b91505092915050565b6000806040838503121561356c5761356b614546565b5b600061357a85828601613463565b925050602061358b85828601613463565b9150509250929050565b6000806000606084860312156135ae576135ad614546565b5b60006135bc86828701613463565b93505060206135cd86828701613463565b92505060406135de86828701613513565b9150509250925092565b6000806000806080858703121561360257613601614546565b5b600061361087828801613463565b945050602061362187828801613463565b935050604061363287828801613513565b925050606085013567ffffffffffffffff81111561365357613652614541565b5b61365f878288016134b7565b91505092959194509250565b6000806040838503121561368257613681614546565b5b600061369085828601613463565b92505060206136a185828601613478565b9150509250929050565b600080604083850312156136c2576136c1614546565b5b60006136d085828601613463565b92505060206136e185828601613513565b9150509250929050565b60006020828403121561370157613700614546565b5b600061370f84828501613478565b91505092915050565b60006020828403121561372e5761372d614546565b5b600061373c8482850161348d565b91505092915050565b60006020828403121561375b5761375a614546565b5b6000613769848285016134a2565b91505092915050565b60006020828403121561378857613787614546565b5b600082013567ffffffffffffffff8111156137a6576137a5614541565b5b6137b2848285016134e5565b91505092915050565b6000602082840312156137d1576137d0614546565b5b60006137df84828501613513565b91505092915050565b6137f1816142b9565b82525050565b613800816142cb565b82525050565b600061381182614156565b61381b818561416c565b935061382b81856020860161433c565b6138348161454b565b840191505092915050565b600061384a82614161565b6138548185614188565b935061386481856020860161433c565b61386d8161454b565b840191505092915050565b600061388382614161565b61388d8185614199565b935061389d81856020860161433c565b80840191505092915050565b60006138b6602283614188565b91506138c18261455c565b604082019050919050565b60006138d9601283614188565b91506138e4826145ab565b602082019050919050565b60006138fc602683614188565b9150613907826145d4565b604082019050919050565b600061391f600b83614188565b915061392a82614623565b602082019050919050565b6000613942602a83614188565b915061394d8261464c565b604082019050919050565b6000613965602383614188565b91506139708261469b565b604082019050919050565b6000613988602583614188565b9150613993826146ea565b604082019050919050565b60006139ab602483614188565b91506139b682614739565b604082019050919050565b60006139ce603983614188565b91506139d982614788565b604082019050919050565b60006139f1602b83614188565b91506139fc826147d7565b604082019050919050565b6000613a14602683614188565b9150613a1f82614826565b604082019050919050565b6000613a37600583614199565b9150613a4282614875565b600582019050919050565b6000613a5a602083614188565b9150613a658261489e565b602082019050919050565b6000613a7d601783614188565b9150613a88826148c7565b602082019050919050565b6000613aa0602f83614188565b9150613aab826148f0565b604082019050919050565b6000613ac3601a83614188565b9150613ace8261493f565b602082019050919050565b6000613ae6603283614188565b9150613af182614968565b604082019050919050565b6000613b09602283614188565b9150613b14826149b7565b604082019050919050565b6000613b2c60008361417d565b9150613b3782614a06565b600082019050919050565b6000613b4f601083614188565b9150613b5a82614a09565b602082019050919050565b6000613b72603383614188565b9150613b7d82614a32565b604082019050919050565b6000613b95602183614188565b9150613ba082614a81565b604082019050919050565b6000613bb8602883614188565b9150613bc382614ad0565b604082019050919050565b6000613bdb601383614188565b9150613be682614b1f565b602082019050919050565b6000613bfe602e83614188565b9150613c0982614b48565b604082019050919050565b6000613c21601f83614188565b9150613c2c82614b97565b602082019050919050565b6000613c44602f83614188565b9150613c4f82614bc0565b604082019050919050565b6000613c67602d83614188565b9150613c7282614c0f565b604082019050919050565b613c8681614323565b82525050565b6000613c988285613878565b9150613ca48284613878565b9150613caf82613a2a565b91508190509392505050565b6000613cc682613b1f565b9150819050919050565b6000602082019050613ce560008301846137e8565b92915050565b6000608082019050613d0060008301876137e8565b613d0d60208301866137e8565b613d1a6040830185613c7d565b8181036060830152613d2c8184613806565b905095945050505050565b6000602082019050613d4c60008301846137f7565b92915050565b60006020820190508181036000830152613d6c818461383f565b905092915050565b60006020820190508181036000830152613d8d816138a9565b9050919050565b60006020820190508181036000830152613dad816138cc565b9050919050565b60006020820190508181036000830152613dcd816138ef565b9050919050565b60006020820190508181036000830152613ded81613912565b9050919050565b60006020820190508181036000830152613e0d81613935565b9050919050565b60006020820190508181036000830152613e2d81613958565b9050919050565b60006020820190508181036000830152613e4d8161397b565b9050919050565b60006020820190508181036000830152613e6d8161399e565b9050919050565b60006020820190508181036000830152613e8d816139c1565b9050919050565b60006020820190508181036000830152613ead816139e4565b9050919050565b60006020820190508181036000830152613ecd81613a07565b9050919050565b60006020820190508181036000830152613eed81613a4d565b9050919050565b60006020820190508181036000830152613f0d81613a70565b9050919050565b60006020820190508181036000830152613f2d81613a93565b9050919050565b60006020820190508181036000830152613f4d81613ab6565b9050919050565b60006020820190508181036000830152613f6d81613ad9565b9050919050565b60006020820190508181036000830152613f8d81613afc565b9050919050565b60006020820190508181036000830152613fad81613b42565b9050919050565b60006020820190508181036000830152613fcd81613b65565b9050919050565b60006020820190508181036000830152613fed81613b88565b9050919050565b6000602082019050818103600083015261400d81613bab565b9050919050565b6000602082019050818103600083015261402d81613bce565b9050919050565b6000602082019050818103600083015261404d81613bf1565b9050919050565b6000602082019050818103600083015261406d81613c14565b9050919050565b6000602082019050818103600083015261408d81613c37565b9050919050565b600060208201905081810360008301526140ad81613c5a565b9050919050565b60006020820190506140c96000830184613c7d565b92915050565b60006140d96140ea565b90506140e582826143a1565b919050565b6000604051905090565b600067ffffffffffffffff82111561410f5761410e614508565b5b6141188261454b565b9050602081019050919050565b600067ffffffffffffffff8211156141405761413f614508565b5b6141498261454b565b9050602081019050919050565b600081519050919050565b600081519050919050565b600082825260208201905092915050565b600081905092915050565b600082825260208201905092915050565b600081905092915050565b60006141af82614323565b91506141ba83614323565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff038211156141ef576141ee61444c565b5b828201905092915050565b600061420582614323565b915061421083614323565b9250826142205761421f61447b565b5b828204905092915050565b600061423682614323565b915061424183614323565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff048311821515161561427a5761427961444c565b5b828202905092915050565b600061429082614323565b915061429b83614323565b9250828210156142ae576142ad61444c565b5b828203905092915050565b60006142c482614303565b9050919050565b60008115159050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b82818337600083830152505050565b60005b8381101561435a57808201518184015260208101905061433f565b83811115614369576000848401525b50505050565b6000600282049050600182168061438757607f821691505b6020821081141561439b5761439a6144aa565b5b50919050565b6143aa8261454b565b810181811067ffffffffffffffff821117156143c9576143c8614508565b5b80604052505050565b60006143dd82614323565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8214156144105761440f61444c565b5b600182019050919050565b600061442682614323565b915061443183614323565b9250826144415761444061447b565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b7f455243373231413a206f776e657220696e646578206f7574206f6620626f756e60008201527f6473000000000000000000000000000000000000000000000000000000000000602082015250565b7f4e6f206d6f7265204672656e63686965732e0000000000000000000000000000600082015250565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f494e56414c49445f455448000000000000000000000000000000000000000000600082015250565b7f455243373231413a206f776e657220717565727920666f72206e6f6e6578697360008201527f74656e7420746f6b656e00000000000000000000000000000000000000000000602082015250565b7f455243373231413a20676c6f62616c20696e646578206f7574206f6620626f7560008201527f6e64730000000000000000000000000000000000000000000000000000000000602082015250565b7f455243373231413a207472616e7366657220746f20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b7f53656e642074686520657861637420616d6f756e743a20302e3030382a28636f60008201527f756e742900000000000000000000000000000000000000000000000000000000602082015250565b7f455243373231413a20617070726f76652063616c6c6572206973206e6f74206f60008201527f776e6572206e6f7220617070726f76656420666f7220616c6c00000000000000602082015250565b7f455243373231413a2062616c616e636520717565727920666f7220746865207a60008201527f65726f2061646472657373000000000000000000000000000000000000000000602082015250565b7f455243373231413a207472616e736665722066726f6d20696e636f727265637460008201527f206f776e65720000000000000000000000000000000000000000000000000000602082015250565b7f2e6a736f6e000000000000000000000000000000000000000000000000000000600082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f54686520636f6e74726163742069732070617573656421000000000000000000600082015250565b7f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008201527f6e6578697374656e7420746f6b656e0000000000000000000000000000000000602082015250565b7f455243373231413a20617070726f766520746f2063616c6c6572000000000000600082015250565b7f455243373231413a207472616e736665722063616c6c6572206973206e6f742060008201527f6f776e6572206e6f7220617070726f7665640000000000000000000000000000602082015250565b7f455243373231413a20617070726f76616c20746f2063757272656e74206f776e60008201527f6572000000000000000000000000000000000000000000000000000000000000602082015250565b50565b7f5472616e73666572206661696c65642e00000000000000000000000000000000600082015250565b7f455243373231413a207472616e7366657220746f206e6f6e204552433732315260008201527f6563656976657220696d706c656d656e74657200000000000000000000000000602082015250565b7f455243373231413a206d696e7420746f20746865207a65726f2061646472657360008201527f7300000000000000000000000000000000000000000000000000000000000000602082015250565b7f455243373231413a207175616e74697479206d7573742062652067726561746560008201527f72207468616e2030000000000000000000000000000000000000000000000000602082015250565b7f4d61782070657220545820726561636865642e00000000000000000000000000600082015250565b7f455243373231413a20756e61626c6520746f2067657420746f6b656e206f662060008201527f6f776e657220627920696e646578000000000000000000000000000000000000602082015250565b7f5265656e7472616e637947756172643a207265656e7472616e742063616c6c00600082015250565b7f455243373231413a20756e61626c6520746f2064657465726d696e652074686560008201527f206f776e6572206f6620746f6b656e0000000000000000000000000000000000602082015250565b7f455243373231413a20617070726f76656420717565727920666f72206e6f6e6560008201527f78697374656e7420746f6b656e00000000000000000000000000000000000000602082015250565b614c67816142b9565b8114614c7257600080fd5b50565b614c7e816142cb565b8114614c8957600080fd5b50565b614c95816142d7565b8114614ca057600080fd5b50565b614cac81614323565b8114614cb757600080fd5b5056fea264697066735822122000354a2986be90eaf00faba972adeb3cfdbdaf94a7d57deac11fcc2bcb32347b64736f6c63430008070033

Deployed Bytecode

0x60806040526004361061020f5760003560e01c80638da5cb5b11610118578063c6f6f216116100a0578063d5abeb011161006f578063d5abeb0114610778578063e945971c146107a3578063e985e9c5146107cc578063f2fde38b14610809578063f968adbe146108325761020f565b8063c6f6f216146106be578063c7c39ffc146106e7578063c87b56dd14610712578063c9837fa21461074f5761020f565b8063a035b1fe116100e7578063a035b1fe146105fc578063a0712d6814610627578063a0bcfc7f14610643578063a22cb4651461066c578063b88d4fde146106955761020f565b80638da5cb5b14610554578063907186d11461057f57806391b7f5ed146105a857806395d89b41146105d15761020f565b80633ccfd60b1161019b5780635c975abb1161016a5780635c975abb1461046d5780636352211e146104985780636c0360eb146104d557806370a0823114610500578063715018a61461053d5761020f565b80633ccfd60b146103c757806342842e0e146103de5780634f6ccce7146104075780635a963f1b146104445761020f565b806316c38b3c116101e257806316c38b3c146102e257806318160ddd1461030b57806323b872dd146103365780632f745c591461035f578063333e44e61461039c5761020f565b806301ffc9a71461021457806306fdde0314610251578063081812fc1461027c578063095ea7b3146102b9575b600080fd5b34801561022057600080fd5b5061023b60048036038101906102369190613718565b61085d565b6040516102489190613d37565b60405180910390f35b34801561025d57600080fd5b506102666109a7565b6040516102739190613d52565b60405180910390f35b34801561028857600080fd5b506102a3600480360381019061029e91906137bb565b610a39565b6040516102b09190613cd0565b60405180910390f35b3480156102c557600080fd5b506102e060048036038101906102db91906136ab565b610abe565b005b3480156102ee57600080fd5b50610309600480360381019061030491906136eb565b610bd7565b005b34801561031757600080fd5b50610320610ccf565b60405161032d91906140b4565b60405180910390f35b34801561034257600080fd5b5061035d60048036038101906103589190613595565b610cd8565b005b34801561036b57600080fd5b50610386600480360381019061038191906136ab565b610ce8565b60405161039391906140b4565b60405180910390f35b3480156103a857600080fd5b506103b1610eda565b6040516103be91906140b4565b60405180910390f35b3480156103d357600080fd5b506103dc610ee0565b005b3480156103ea57600080fd5b5061040560048036038101906104009190613595565b6110c0565b005b34801561041357600080fd5b5061042e600480360381019061042991906137bb565b6110e0565b60405161043b91906140b4565b60405180910390f35b34801561045057600080fd5b5061046b600480360381019061046691906137bb565b611133565b005b34801561047957600080fd5b50610482611218565b60405161048f9190613d37565b60405180910390f35b3480156104a457600080fd5b506104bf60048036038101906104ba91906137bb565b61122b565b6040516104cc9190613cd0565b60405180910390f35b3480156104e157600080fd5b506104ea611241565b6040516104f79190613d52565b60405180910390f35b34801561050c57600080fd5b5061052760048036038101906105229190613528565b6112cf565b60405161053491906140b4565b60405180910390f35b34801561054957600080fd5b506105526113b8565b005b34801561056057600080fd5b5061056961149f565b6040516105769190613cd0565b60405180910390f35b34801561058b57600080fd5b506105a660048036038101906105a191906137bb565b6114c9565b005b3480156105b457600080fd5b506105cf60048036038101906105ca91906137bb565b6115ae565b005b3480156105dd57600080fd5b506105e6611693565b6040516105f39190613d52565b60405180910390f35b34801561060857600080fd5b50610611611725565b60405161061e91906140b4565b60405180910390f35b610641600480360381019061063c91906137bb565b61172b565b005b34801561064f57600080fd5b5061066a60048036038101906106659190613772565b611a95565b005b34801561067857600080fd5b50610693600480360381019061068e919061366b565b611b8a565b005b3480156106a157600080fd5b506106bc60048036038101906106b791906135e8565b611d0b565b005b3480156106ca57600080fd5b506106e560048036038101906106e091906137bb565b611d67565b005b3480156106f357600080fd5b506106fc611e4c565b60405161070991906140b4565b60405180910390f35b34801561071e57600080fd5b50610739600480360381019061073491906137bb565b611e52565b6040516107469190613d52565b60405180910390f35b34801561075b57600080fd5b50610776600480360381019061077191906136ab565b611f05565b005b34801561078457600080fd5b5061078d611fee565b60405161079a91906140b4565b60405180910390f35b3480156107af57600080fd5b506107ca60048036038101906107c591906137bb565b611ff4565b005b3480156107d857600080fd5b506107f360048036038101906107ee9190613555565b6120d9565b6040516108009190613d37565b60405180910390f35b34801561081557600080fd5b50610830600480360381019061082b9190613528565b61216d565b005b34801561083e57600080fd5b506108476122c4565b60405161085491906140b4565b60405180910390f35b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916148061092857507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b8061099057507f780e9d63000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b806109a0575061099f826122ca565b5b9050919050565b6060600180546109b69061436f565b80601f01602080910402602001604051908101604052809291908181526020018280546109e29061436f565b8015610a2f5780601f10610a0457610100808354040283529160200191610a2f565b820191906000526020600020905b815481529060010190602001808311610a1257829003601f168201915b5050505050905090565b6000610a4482612334565b610a83576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a7a90614094565b60405180910390fd5b6005600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b6000610ac98261122b565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610b3a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b3190613f74565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16610b59612341565b73ffffffffffffffffffffffffffffffffffffffff161480610b885750610b8781610b82612341565b6120d9565b5b610bc7576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610bbe90613e74565b60405180910390fd5b610bd2838383612349565b505050565b610bdf612341565b73ffffffffffffffffffffffffffffffffffffffff16610bfd61149f565b73ffffffffffffffffffffffffffffffffffffffff161480610c735750610c22612341565b73ffffffffffffffffffffffffffffffffffffffff16600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16145b610cb2576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ca990613ed4565b60405180910390fd5b80601060006101000a81548160ff02191690831515021790555050565b60008054905090565b610ce38383836123fb565b505050565b6000610cf3836112cf565b8210610d34576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d2b90613d74565b60405180910390fd5b6000610d3e610ccf565b905060008060005b83811015610e98576000600360008381526020019081526020016000206040518060400160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815250509050600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff1614610e3857806000015192505b8773ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610e8a5786841415610e81578195505050505050610ed4565b83806001019450505b508080600101915050610d46565b506040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ecb90614034565b60405180910390fd5b92915050565b600e5481565b610ee8612341565b73ffffffffffffffffffffffffffffffffffffffff16610f0661149f565b73ffffffffffffffffffffffffffffffffffffffff161480610f7c5750610f2b612341565b73ffffffffffffffffffffffffffffffffffffffff16600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16145b610fbb576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610fb290613ed4565b60405180910390fd5b60026009541415611001576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ff890614054565b60405180910390fd5b600260098190555060003373ffffffffffffffffffffffffffffffffffffffff164760405161102f90613cbb565b60006040518083038185875af1925050503d806000811461106c576040519150601f19603f3d011682016040523d82523d6000602084013e611071565b606091505b50509050806110b5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110ac90613f94565b60405180910390fd5b506001600981905550565b6110db83838360405180602001604052806000815250611d0b565b505050565b60006110ea610ccf565b821061112b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161112290613e14565b60405180910390fd5b819050919050565b61113b612341565b73ffffffffffffffffffffffffffffffffffffffff1661115961149f565b73ffffffffffffffffffffffffffffffffffffffff1614806111cf575061117e612341565b73ffffffffffffffffffffffffffffffffffffffff16600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16145b61120e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161120590613ed4565b60405180910390fd5b80600e8190555050565b601060009054906101000a900460ff1681565b60006112368261293b565b600001519050919050565b600a805461124e9061436f565b80601f016020809104026020016040519081016040528092919081815260200182805461127a9061436f565b80156112c75780601f1061129c576101008083540402835291602001916112c7565b820191906000526020600020905b8154815290600101906020018083116112aa57829003601f168201915b505050505081565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611340576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161133790613e94565b60405180910390fd5b600460008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160009054906101000a90046fffffffffffffffffffffffffffffffff166fffffffffffffffffffffffffffffffff169050919050565b6113c0612341565b73ffffffffffffffffffffffffffffffffffffffff166113de61149f565b73ffffffffffffffffffffffffffffffffffffffff1614806114545750611403612341565b73ffffffffffffffffffffffffffffffffffffffff16600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16145b611493576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161148a90613ed4565b60405180910390fd5b61149d6000612ad5565b565b6000600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b6114d1612341565b73ffffffffffffffffffffffffffffffffffffffff166114ef61149f565b73ffffffffffffffffffffffffffffffffffffffff1614806115655750611514612341565b73ffffffffffffffffffffffffffffffffffffffff16600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16145b6115a4576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161159b90613ed4565b60405180910390fd5b80600f8190555050565b6115b6612341565b73ffffffffffffffffffffffffffffffffffffffff166115d461149f565b73ffffffffffffffffffffffffffffffffffffffff16148061164a57506115f9612341565b73ffffffffffffffffffffffffffffffffffffffff16600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16145b611689576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161168090613ed4565b60405180910390fd5b80600b8190555050565b6060600280546116a29061436f565b80601f01602080910402602001604051908101604052809291908181526020018280546116ce9061436f565b801561171b5780601f106116f05761010080835404028352916020019161171b565b820191906000526020600020905b8154815290600101906020018083116116fe57829003601f168201915b5050505050905090565b600b5481565b6000600b54905060006001600e5461174391906141a4565b8361174c610ccf565b61175691906141a4565b1080156117a35750600d54601160003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054105b9050801561194b57601060009054906101000a900460ff16156117fb576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117f290613ef4565b60405180910390fd5b818284611808919061422b565b6118129190614285565b341015611854576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161184b90613dd4565b60405180910390fd5b600f5483611860610ccf565b61186a91906141a4565b11156118ab576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118a290613d94565b60405180910390fd5b600c548311156118f0576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118e790614014565b60405180910390fd5b82601160003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825461193f91906141a4565b92505081905550611a86565b601060009054906101000a900460ff161561199b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161199290613ef4565b60405180910390fd5b81836119a7919061422b565b3410156119e9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016119e090613e54565b60405180910390fd5b600f54836119f5610ccf565b6119ff91906141a4565b1115611a40576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a3790613d94565b60405180910390fd5b600c54831115611a85576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a7c90614014565b60405180910390fd5b5b611a903384612b9b565b505050565b611a9d612341565b73ffffffffffffffffffffffffffffffffffffffff16611abb61149f565b73ffffffffffffffffffffffffffffffffffffffff161480611b315750611ae0612341565b73ffffffffffffffffffffffffffffffffffffffff16600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16145b611b70576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b6790613ed4565b60405180910390fd5b80600a9080519060200190611b86929190613302565b5050565b611b92612341565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611c00576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611bf790613f34565b60405180910390fd5b8060066000611c0d612341565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff16611cba612341565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c3183604051611cff9190613d37565b60405180910390a35050565b611d168484846123fb565b611d2284848484612bb9565b611d61576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d5890613fb4565b60405180910390fd5b50505050565b611d6f612341565b73ffffffffffffffffffffffffffffffffffffffff16611d8d61149f565b73ffffffffffffffffffffffffffffffffffffffff161480611e035750611db2612341565b73ffffffffffffffffffffffffffffffffffffffff16600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16145b611e42576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e3990613ed4565b60405180910390fd5b80600c8190555050565b600d5481565b6060611e5d82612334565b611e9c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e9390613f14565b60405180910390fd5b6000611ea6612d50565b90506000815111611ec65760405180602001604052806000815250611efd565b80611edc600185611ed791906141a4565b612de2565b604051602001611eed929190613c8c565b6040516020818303038152906040525b915050919050565b611f0d612341565b73ffffffffffffffffffffffffffffffffffffffff16611f2b61149f565b73ffffffffffffffffffffffffffffffffffffffff161480611fa15750611f50612341565b73ffffffffffffffffffffffffffffffffffffffff16600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16145b611fe0576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611fd790613ed4565b60405180910390fd5b611fea8282612b9b565b5050565b600f5481565b611ffc612341565b73ffffffffffffffffffffffffffffffffffffffff1661201a61149f565b73ffffffffffffffffffffffffffffffffffffffff161480612090575061203f612341565b73ffffffffffffffffffffffffffffffffffffffff16600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16145b6120cf576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016120c690613ed4565b60405180910390fd5b80600d8190555050565b6000600660008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b612175612341565b73ffffffffffffffffffffffffffffffffffffffff1661219361149f565b73ffffffffffffffffffffffffffffffffffffffff16148061220957506121b8612341565b73ffffffffffffffffffffffffffffffffffffffff16600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16145b612248576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161223f90613ed4565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614156122b8576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016122af90613db4565b60405180910390fd5b6122c181612ad5565b50565b600c5481565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b6000805482109050919050565b600033905090565b826005600084815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b60006124068261293b565b90506000816000015173ffffffffffffffffffffffffffffffffffffffff1661242d612341565b73ffffffffffffffffffffffffffffffffffffffff1614806124895750612452612341565b73ffffffffffffffffffffffffffffffffffffffff1661247184610a39565b73ffffffffffffffffffffffffffffffffffffffff16145b806124a557506124a4826000015161249f612341565b6120d9565b5b9050806124e7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016124de90613f54565b60405180910390fd5b8473ffffffffffffffffffffffffffffffffffffffff16826000015173ffffffffffffffffffffffffffffffffffffffff1614612559576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161255090613eb4565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1614156125c9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016125c090613e34565b60405180910390fd5b6125d68585856001612f43565b6125e66000848460000151612349565b6001600460008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a90046fffffffffffffffffffffffffffffffff160392506101000a8154816fffffffffffffffffffffffffffffffff02191690836fffffffffffffffffffffffffffffffff1602179055506001600460008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a90046fffffffffffffffffffffffffffffffff160192506101000a8154816fffffffffffffffffffffffffffffffff02191690836fffffffffffffffffffffffffffffffff160217905550836003600085815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550426003600085815260200190815260200160002060000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055506000600184019050600073ffffffffffffffffffffffffffffffffffffffff166003600083815260200190815260200160002060000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614156128cb5761282a81612334565b156128ca5782600001516003600083815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555082602001516003600083815260200190815260200160002060000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055505b5b50828473ffffffffffffffffffffffffffffffffffffffff168673ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a46129348585856001612f49565b5050505050565b612943613388565b61294c82612334565b61298b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161298290613df4565b60405180910390fd5b60008290505b60008110612a94576000600360008381526020019081526020016000206040518060400160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815250509050600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff1614612a85578092505050612ad0565b50808060019003915050612991565b506040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612ac790614074565b60405180910390fd5b919050565b6000600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600760006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b612bb5828260405180602001604052806000815250612f4f565b5050565b6000612bda8473ffffffffffffffffffffffffffffffffffffffff16612f61565b15612d43578373ffffffffffffffffffffffffffffffffffffffff1663150b7a02612c03612341565b8786866040518563ffffffff1660e01b8152600401612c259493929190613ceb565b602060405180830381600087803b158015612c3f57600080fd5b505af1925050508015612c7057506040513d601f19601f82011682018060405250810190612c6d9190613745565b60015b612cf3573d8060008114612ca0576040519150601f19603f3d011682016040523d82523d6000602084013e612ca5565b606091505b50600081511415612ceb576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612ce290613fb4565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050612d48565b600190505b949350505050565b6060600a8054612d5f9061436f565b80601f0160208091040260200160405190810160405280929190818152602001828054612d8b9061436f565b8015612dd85780601f10612dad57610100808354040283529160200191612dd8565b820191906000526020600020905b815481529060010190602001808311612dbb57829003601f168201915b5050505050905090565b60606000821415612e2a576040518060400160405280600181526020017f30000000000000000000000000000000000000000000000000000000000000008152509050612f3e565b600082905060005b60008214612e5c578080612e45906143d2565b915050600a82612e5591906141fa565b9150612e32565b60008167ffffffffffffffff811115612e7857612e77614508565b5b6040519080825280601f01601f191660200182016040528015612eaa5781602001600182028036833780820191505090505b5090505b60008514612f3757600182612ec39190614285565b9150600a85612ed2919061441b565b6030612ede91906141a4565b60f81b818381518110612ef457612ef36144d9565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a85612f3091906141fa565b9450612eae565b8093505050505b919050565b50505050565b50505050565b612f5c8383836001612f84565b505050565b6000808273ffffffffffffffffffffffffffffffffffffffff163b119050919050565b600080549050600073ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff161415612ffa576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612ff190613fd4565b60405180910390fd5b600084141561303e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161303590613ff4565b60405180910390fd5b61304b6000868387612f43565b83600460008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a90046fffffffffffffffffffffffffffffffff160192506101000a8154816fffffffffffffffffffffffffffffffff02191690836fffffffffffffffffffffffffffffffff16021790555083600460008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160108282829054906101000a90046fffffffffffffffffffffffffffffffff160192506101000a8154816fffffffffffffffffffffffffffffffff02191690836fffffffffffffffffffffffffffffffff160217905550846003600083815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550426003600083815260200190815260200160002060000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff160217905550600081905060005b858110156132e557818773ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a483156132d0576132906000888488612bb9565b6132cf576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016132c690613fb4565b60405180910390fd5b5b81806001019250508080600101915050613219565b5080600081905550506132fb6000868387612f49565b5050505050565b82805461330e9061436f565b90600052602060002090601f0160209004810192826133305760008555613377565b82601f1061334957805160ff1916838001178555613377565b82800160010185558215613377579182015b8281111561337657825182559160200191906001019061335b565b5b50905061338491906133c2565b5090565b6040518060400160405280600073ffffffffffffffffffffffffffffffffffffffff168152602001600067ffffffffffffffff1681525090565b5b808211156133db5760008160009055506001016133c3565b5090565b60006133f26133ed846140f4565b6140cf565b90508281526020810184848401111561340e5761340d61453c565b5b61341984828561432d565b509392505050565b600061343461342f84614125565b6140cf565b9050828152602081018484840111156134505761344f61453c565b5b61345b84828561432d565b509392505050565b60008135905061347281614c5e565b92915050565b60008135905061348781614c75565b92915050565b60008135905061349c81614c8c565b92915050565b6000815190506134b181614c8c565b92915050565b600082601f8301126134cc576134cb614537565b5b81356134dc8482602086016133df565b91505092915050565b600082601f8301126134fa576134f9614537565b5b813561350a848260208601613421565b91505092915050565b60008135905061352281614ca3565b92915050565b60006020828403121561353e5761353d614546565b5b600061354c84828501613463565b91505092915050565b6000806040838503121561356c5761356b614546565b5b600061357a85828601613463565b925050602061358b85828601613463565b9150509250929050565b6000806000606084860312156135ae576135ad614546565b5b60006135bc86828701613463565b93505060206135cd86828701613463565b92505060406135de86828701613513565b9150509250925092565b6000806000806080858703121561360257613601614546565b5b600061361087828801613463565b945050602061362187828801613463565b935050604061363287828801613513565b925050606085013567ffffffffffffffff81111561365357613652614541565b5b61365f878288016134b7565b91505092959194509250565b6000806040838503121561368257613681614546565b5b600061369085828601613463565b92505060206136a185828601613478565b9150509250929050565b600080604083850312156136c2576136c1614546565b5b60006136d085828601613463565b92505060206136e185828601613513565b9150509250929050565b60006020828403121561370157613700614546565b5b600061370f84828501613478565b91505092915050565b60006020828403121561372e5761372d614546565b5b600061373c8482850161348d565b91505092915050565b60006020828403121561375b5761375a614546565b5b6000613769848285016134a2565b91505092915050565b60006020828403121561378857613787614546565b5b600082013567ffffffffffffffff8111156137a6576137a5614541565b5b6137b2848285016134e5565b91505092915050565b6000602082840312156137d1576137d0614546565b5b60006137df84828501613513565b91505092915050565b6137f1816142b9565b82525050565b613800816142cb565b82525050565b600061381182614156565b61381b818561416c565b935061382b81856020860161433c565b6138348161454b565b840191505092915050565b600061384a82614161565b6138548185614188565b935061386481856020860161433c565b61386d8161454b565b840191505092915050565b600061388382614161565b61388d8185614199565b935061389d81856020860161433c565b80840191505092915050565b60006138b6602283614188565b91506138c18261455c565b604082019050919050565b60006138d9601283614188565b91506138e4826145ab565b602082019050919050565b60006138fc602683614188565b9150613907826145d4565b604082019050919050565b600061391f600b83614188565b915061392a82614623565b602082019050919050565b6000613942602a83614188565b915061394d8261464c565b604082019050919050565b6000613965602383614188565b91506139708261469b565b604082019050919050565b6000613988602583614188565b9150613993826146ea565b604082019050919050565b60006139ab602483614188565b91506139b682614739565b604082019050919050565b60006139ce603983614188565b91506139d982614788565b604082019050919050565b60006139f1602b83614188565b91506139fc826147d7565b604082019050919050565b6000613a14602683614188565b9150613a1f82614826565b604082019050919050565b6000613a37600583614199565b9150613a4282614875565b600582019050919050565b6000613a5a602083614188565b9150613a658261489e565b602082019050919050565b6000613a7d601783614188565b9150613a88826148c7565b602082019050919050565b6000613aa0602f83614188565b9150613aab826148f0565b604082019050919050565b6000613ac3601a83614188565b9150613ace8261493f565b602082019050919050565b6000613ae6603283614188565b9150613af182614968565b604082019050919050565b6000613b09602283614188565b9150613b14826149b7565b604082019050919050565b6000613b2c60008361417d565b9150613b3782614a06565b600082019050919050565b6000613b4f601083614188565b9150613b5a82614a09565b602082019050919050565b6000613b72603383614188565b9150613b7d82614a32565b604082019050919050565b6000613b95602183614188565b9150613ba082614a81565b604082019050919050565b6000613bb8602883614188565b9150613bc382614ad0565b604082019050919050565b6000613bdb601383614188565b9150613be682614b1f565b602082019050919050565b6000613bfe602e83614188565b9150613c0982614b48565b604082019050919050565b6000613c21601f83614188565b9150613c2c82614b97565b602082019050919050565b6000613c44602f83614188565b9150613c4f82614bc0565b604082019050919050565b6000613c67602d83614188565b9150613c7282614c0f565b604082019050919050565b613c8681614323565b82525050565b6000613c988285613878565b9150613ca48284613878565b9150613caf82613a2a565b91508190509392505050565b6000613cc682613b1f565b9150819050919050565b6000602082019050613ce560008301846137e8565b92915050565b6000608082019050613d0060008301876137e8565b613d0d60208301866137e8565b613d1a6040830185613c7d565b8181036060830152613d2c8184613806565b905095945050505050565b6000602082019050613d4c60008301846137f7565b92915050565b60006020820190508181036000830152613d6c818461383f565b905092915050565b60006020820190508181036000830152613d8d816138a9565b9050919050565b60006020820190508181036000830152613dad816138cc565b9050919050565b60006020820190508181036000830152613dcd816138ef565b9050919050565b60006020820190508181036000830152613ded81613912565b9050919050565b60006020820190508181036000830152613e0d81613935565b9050919050565b60006020820190508181036000830152613e2d81613958565b9050919050565b60006020820190508181036000830152613e4d8161397b565b9050919050565b60006020820190508181036000830152613e6d8161399e565b9050919050565b60006020820190508181036000830152613e8d816139c1565b9050919050565b60006020820190508181036000830152613ead816139e4565b9050919050565b60006020820190508181036000830152613ecd81613a07565b9050919050565b60006020820190508181036000830152613eed81613a4d565b9050919050565b60006020820190508181036000830152613f0d81613a70565b9050919050565b60006020820190508181036000830152613f2d81613a93565b9050919050565b60006020820190508181036000830152613f4d81613ab6565b9050919050565b60006020820190508181036000830152613f6d81613ad9565b9050919050565b60006020820190508181036000830152613f8d81613afc565b9050919050565b60006020820190508181036000830152613fad81613b42565b9050919050565b60006020820190508181036000830152613fcd81613b65565b9050919050565b60006020820190508181036000830152613fed81613b88565b9050919050565b6000602082019050818103600083015261400d81613bab565b9050919050565b6000602082019050818103600083015261402d81613bce565b9050919050565b6000602082019050818103600083015261404d81613bf1565b9050919050565b6000602082019050818103600083015261406d81613c14565b9050919050565b6000602082019050818103600083015261408d81613c37565b9050919050565b600060208201905081810360008301526140ad81613c5a565b9050919050565b60006020820190506140c96000830184613c7d565b92915050565b60006140d96140ea565b90506140e582826143a1565b919050565b6000604051905090565b600067ffffffffffffffff82111561410f5761410e614508565b5b6141188261454b565b9050602081019050919050565b600067ffffffffffffffff8211156141405761413f614508565b5b6141498261454b565b9050602081019050919050565b600081519050919050565b600081519050919050565b600082825260208201905092915050565b600081905092915050565b600082825260208201905092915050565b600081905092915050565b60006141af82614323565b91506141ba83614323565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff038211156141ef576141ee61444c565b5b828201905092915050565b600061420582614323565b915061421083614323565b9250826142205761421f61447b565b5b828204905092915050565b600061423682614323565b915061424183614323565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff048311821515161561427a5761427961444c565b5b828202905092915050565b600061429082614323565b915061429b83614323565b9250828210156142ae576142ad61444c565b5b828203905092915050565b60006142c482614303565b9050919050565b60008115159050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b82818337600083830152505050565b60005b8381101561435a57808201518184015260208101905061433f565b83811115614369576000848401525b50505050565b6000600282049050600182168061438757607f821691505b6020821081141561439b5761439a6144aa565b5b50919050565b6143aa8261454b565b810181811067ffffffffffffffff821117156143c9576143c8614508565b5b80604052505050565b60006143dd82614323565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8214156144105761440f61444c565b5b600182019050919050565b600061442682614323565b915061443183614323565b9250826144415761444061447b565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b7f455243373231413a206f776e657220696e646578206f7574206f6620626f756e60008201527f6473000000000000000000000000000000000000000000000000000000000000602082015250565b7f4e6f206d6f7265204672656e63686965732e0000000000000000000000000000600082015250565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f494e56414c49445f455448000000000000000000000000000000000000000000600082015250565b7f455243373231413a206f776e657220717565727920666f72206e6f6e6578697360008201527f74656e7420746f6b656e00000000000000000000000000000000000000000000602082015250565b7f455243373231413a20676c6f62616c20696e646578206f7574206f6620626f7560008201527f6e64730000000000000000000000000000000000000000000000000000000000602082015250565b7f455243373231413a207472616e7366657220746f20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b7f53656e642074686520657861637420616d6f756e743a20302e3030382a28636f60008201527f756e742900000000000000000000000000000000000000000000000000000000602082015250565b7f455243373231413a20617070726f76652063616c6c6572206973206e6f74206f60008201527f776e6572206e6f7220617070726f76656420666f7220616c6c00000000000000602082015250565b7f455243373231413a2062616c616e636520717565727920666f7220746865207a60008201527f65726f2061646472657373000000000000000000000000000000000000000000602082015250565b7f455243373231413a207472616e736665722066726f6d20696e636f727265637460008201527f206f776e65720000000000000000000000000000000000000000000000000000602082015250565b7f2e6a736f6e000000000000000000000000000000000000000000000000000000600082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f54686520636f6e74726163742069732070617573656421000000000000000000600082015250565b7f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008201527f6e6578697374656e7420746f6b656e0000000000000000000000000000000000602082015250565b7f455243373231413a20617070726f766520746f2063616c6c6572000000000000600082015250565b7f455243373231413a207472616e736665722063616c6c6572206973206e6f742060008201527f6f776e6572206e6f7220617070726f7665640000000000000000000000000000602082015250565b7f455243373231413a20617070726f76616c20746f2063757272656e74206f776e60008201527f6572000000000000000000000000000000000000000000000000000000000000602082015250565b50565b7f5472616e73666572206661696c65642e00000000000000000000000000000000600082015250565b7f455243373231413a207472616e7366657220746f206e6f6e204552433732315260008201527f6563656976657220696d706c656d656e74657200000000000000000000000000602082015250565b7f455243373231413a206d696e7420746f20746865207a65726f2061646472657360008201527f7300000000000000000000000000000000000000000000000000000000000000602082015250565b7f455243373231413a207175616e74697479206d7573742062652067726561746560008201527f72207468616e2030000000000000000000000000000000000000000000000000602082015250565b7f4d61782070657220545820726561636865642e00000000000000000000000000600082015250565b7f455243373231413a20756e61626c6520746f2067657420746f6b656e206f662060008201527f6f776e657220627920696e646578000000000000000000000000000000000000602082015250565b7f5265656e7472616e637947756172643a207265656e7472616e742063616c6c00600082015250565b7f455243373231413a20756e61626c6520746f2064657465726d696e652074686560008201527f206f776e6572206f6620746f6b656e0000000000000000000000000000000000602082015250565b7f455243373231413a20617070726f76656420717565727920666f72206e6f6e6560008201527f78697374656e7420746f6b656e00000000000000000000000000000000000000602082015250565b614c67816142b9565b8114614c7257600080fd5b50565b614c7e816142cb565b8114614c8957600080fd5b50565b614c95816142d7565b8114614ca057600080fd5b50565b614cac81614323565b8114614cb757600080fd5b5056fea264697066735822122000354a2986be90eaf00faba972adeb3cfdbdaf94a7d57deac11fcc2bcb32347b64736f6c63430008070033

Deployed Bytecode Sourcemap

43530:3033:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;30390:372;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;32276:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;33838:214;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;33359:413;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;45503:79;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;28647:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;34714:170;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;29311:1007;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;43786:38;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;46374:186;;;;;;;;;;;;;:::i;:::-;;34955:185;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;28824:187;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;45906:111;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;43876:38;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;32085:124;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;43596:46;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;30826:221;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;26060:103;;;;;;;;;;;;;:::i;:::-;;25376:87;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;46255:111;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;45812:86;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;32445:104;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;43649:45;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;44444:918;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;45706:98;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;34124:288;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;35211:355;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;46139:108;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;43744:35;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;44039:397;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;45370:125;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;43831:38;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;46025:106;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;34483:164;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;26318:201;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;43701:36;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;30390:372;30492:4;30544:25;30529:40;;;:11;:40;;;;:105;;;;30601:33;30586:48;;;:11;:48;;;;30529:105;:172;;;;30666:35;30651:50;;;:11;:50;;;;30529:172;:225;;;;30718:36;30742:11;30718:23;:36::i;:::-;30529:225;30509:245;;30390:372;;;:::o;32276:100::-;32330:13;32363:5;32356:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;32276:100;:::o;33838:214::-;33906:7;33934:16;33942:7;33934;:16::i;:::-;33926:74;;;;;;;;;;;;:::i;:::-;;;;;;;;;34020:15;:24;34036:7;34020:24;;;;;;;;;;;;;;;;;;;;;34013:31;;33838:214;;;:::o;33359:413::-;33432:13;33448:24;33464:7;33448:15;:24::i;:::-;33432:40;;33497:5;33491:11;;:2;:11;;;;33483:58;;;;;;;;;;;;:::i;:::-;;;;;;;;;33592:5;33576:21;;:12;:10;:12::i;:::-;:21;;;:62;;;;33601:37;33618:5;33625:12;:10;:12::i;:::-;33601:16;:37::i;:::-;33576:62;33554:169;;;;;;;;;;;;:::i;:::-;;;;;;;;;33736:28;33745:2;33749:7;33758:5;33736:8;:28::i;:::-;33421:351;33359:413;;:::o;45503:79::-;25607:12;:10;:12::i;:::-;25596:23;;:7;:5;:7::i;:::-;:23;;;:55;;;;25639:12;:10;:12::i;:::-;25623:28;;:12;;;;;;;;;;;:28;;;25596:55;25588:101;;;;;;;;;;;;:::i;:::-;;;;;;;;;45568:6:::1;45559;;:15;;;;;;;;;;;;;;;;;;45503:79:::0;:::o;28647:100::-;28700:7;28727:12;;28720:19;;28647:100;:::o;34714:170::-;34848:28;34858:4;34864:2;34868:7;34848:9;:28::i;:::-;34714:170;;;:::o;29311:1007::-;29400:7;29436:16;29446:5;29436:9;:16::i;:::-;29428:5;:24;29420:71;;;;;;;;;;;;:::i;:::-;;;;;;;;;29502:22;29527:13;:11;:13::i;:::-;29502:38;;29551:19;29581:25;29770:9;29765:466;29785:14;29781:1;:18;29765:466;;;29825:31;29859:11;:14;29871:1;29859:14;;;;;;;;;;;29825:48;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;29922:1;29896:28;;:9;:14;;;:28;;;29892:111;;29969:9;:14;;;29949:34;;29892:111;30046:5;30025:26;;:17;:26;;;30021:195;;;30095:5;30080:11;:20;30076:85;;;30136:1;30129:8;;;;;;;;;30076:85;30183:13;;;;;;;30021:195;29806:425;29801:3;;;;;;;29765:466;;;;30254:56;;;;;;;;;;:::i;:::-;;;;;;;;29311:1007;;;;;:::o;43786:38::-;;;;:::o;46374:186::-;25607:12;:10;:12::i;:::-;25596:23;;:7;:5;:7::i;:::-;:23;;;:55;;;;25639:12;:10;:12::i;:::-;25623:28;;:12;;;;;;;;;;;:28;;;25596:55;25588:101;;;;;;;;;;;;:::i;:::-;;;;;;;;;22394:1:::1;22992:7;;:19;;22984:63;;;;;;;;;;;;:::i;:::-;;;;;;;;;22394:1;23125:7;:18;;;;46438:12:::2;46456:10;:15;;46479:21;46456:49;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;46437:68;;;46524:7;46516:36;;;;;;;;;;;;:::i;:::-;;;;;;;;;46426:134;22350:1:::1;23304:7;:22;;;;46374:186::o:0;34955:185::-;35093:39;35110:4;35116:2;35120:7;35093:39;;;;;;;;;;;;:16;:39::i;:::-;34955:185;;;:::o;28824:187::-;28891:7;28927:13;:11;:13::i;:::-;28919:5;:21;28911:69;;;;;;;;;;;;:::i;:::-;;;;;;;;;28998:5;28991:12;;28824:187;;;:::o;45906:111::-;25607:12;:10;:12::i;:::-;25596:23;;:7;:5;:7::i;:::-;:23;;;:55;;;;25639:12;:10;:12::i;:::-;25623:28;;:12;;;;;;;;;;;:28;;;25596:55;25588:101;;;;;;;;;;;;:::i;:::-;;;;;;;;;45996:13:::1;45984:9;:25;;;;45906:111:::0;:::o;43876:38::-;;;;;;;;;;;;;:::o;32085:124::-;32149:7;32176:20;32188:7;32176:11;:20::i;:::-;:25;;;32169:32;;32085:124;;;:::o;43596:46::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;30826:221::-;30890:7;30935:1;30918:19;;:5;:19;;;;30910:75;;;;;;;;;;;;:::i;:::-;;;;;;;;;31011:12;:19;31024:5;31011:19;;;;;;;;;;;;;;;:27;;;;;;;;;;;;31003:36;;30996:43;;30826:221;;;:::o;26060:103::-;25607:12;:10;:12::i;:::-;25596:23;;:7;:5;:7::i;:::-;:23;;;:55;;;;25639:12;:10;:12::i;:::-;25623:28;;:12;;;;;;;;;;;:28;;;25596:55;25588:101;;;;;;;;;;;;:::i;:::-;;;;;;;;;26125:30:::1;26152:1;26125:18;:30::i;:::-;26060:103::o:0;25376:87::-;25422:7;25449:6;;;;;;;;;;;25442:13;;25376:87;:::o;46255:111::-;25607:12;:10;:12::i;:::-;25596:23;;:7;:5;:7::i;:::-;:23;;;:55;;;;25639:12;:10;:12::i;:::-;25623:28;;:12;;;;;;;;;;;:28;;;25596:55;25588:101;;;;;;;;;;;;:::i;:::-;;;;;;;;;46345:13:::1;46333:9;:25;;;;46255:111:::0;:::o;45812:86::-;25607:12;:10;:12::i;:::-;25596:23;;:7;:5;:7::i;:::-;:23;;;:55;;;;25639:12;:10;:12::i;:::-;25623:28;;:12;;;;;;;;;;;:28;;;25596:55;25588:101;;;;;;;;;;;;:::i;:::-;;;;;;;;;45884:6:::1;45876:5;:14;;;;45812:86:::0;:::o;32445:104::-;32501:13;32534:7;32527:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;32445:104;:::o;43649:45::-;;;;:::o;44444:918::-;44501:12;44516:5;;44501:20;;44532:11;44584:1;44572:9;;:13;;;;:::i;:::-;44564:5;44548:13;:11;:13::i;:::-;:21;;;;:::i;:::-;:37;44547:100;;;;;44636:10;;44604:17;:29;44622:10;44604:29;;;;;;;;;;;;;;;;:42;44547:100;44532:116;;44665:6;44661:653;;;44697:6;;;;;;;;;;;44696:7;44688:43;;;;;;;;;;;;:::i;:::-;;;;;;;;;44784:4;44776;44768:5;:12;;;;:::i;:::-;44767:21;;;;:::i;:::-;44754:9;:34;;44746:58;;;;;;;;;;;;:::i;:::-;;;;;;;;;44852:9;;44843:5;44827:13;:11;:13::i;:::-;:21;;;;:::i;:::-;:34;;44819:65;;;;;;;;;;;;:::i;:::-;;;;;;;;;44916:8;;44907:5;:17;;44899:49;;;;;;;;;;;;:::i;:::-;;;;;;;;;44996:5;44963:17;:29;44981:10;44963:29;;;;;;;;;;;;;;;;:38;;;;;;;:::i;:::-;;;;;;;;44661:653;;;45047:6;;;;;;;;;;;45046:7;45038:43;;;;;;;;;;;;:::i;:::-;;;;;;;;;45121:4;45113:5;:12;;;;:::i;:::-;45100:9;:25;;45092:74;;;;;;;;;;;;:::i;:::-;;;;;;;;;45210:9;;45201:5;45185:13;:11;:13::i;:::-;:21;;;;:::i;:::-;:34;;45177:65;;;;;;;;;;;;:::i;:::-;;;;;;;;;45270:8;;45261:5;:17;;45253:49;;;;;;;;;;;;:::i;:::-;;;;;;;;;44661:653;45326:28;45336:10;45348:5;45326:9;:28::i;:::-;44490:872;;44444:918;:::o;45706:98::-;25607:12;:10;:12::i;:::-;25596:23;;:7;:5;:7::i;:::-;:23;;;:55;;;;25639:12;:10;:12::i;:::-;25623:28;;:12;;;;;;;;;;;:28;;;25596:55;25588:101;;;;;;;;;;;;:::i;:::-;;;;;;;;;45788:8:::1;45778:7;:18;;;;;;;;;;;;:::i;:::-;;45706:98:::0;:::o;34124:288::-;34231:12;:10;:12::i;:::-;34219:24;;:8;:24;;;;34211:63;;;;;;;;;;;;:::i;:::-;;;;;;;;;34332:8;34287:18;:32;34306:12;:10;:12::i;:::-;34287:32;;;;;;;;;;;;;;;:42;34320:8;34287:42;;;;;;;;;;;;;;;;:53;;;;;;;;;;;;;;;;;;34385:8;34356:48;;34371:12;:10;:12::i;:::-;34356:48;;;34395:8;34356:48;;;;;;:::i;:::-;;;;;;;;34124:288;;:::o;35211:355::-;35370:28;35380:4;35386:2;35390:7;35370:9;:28::i;:::-;35431:48;35454:4;35460:2;35464:7;35473:5;35431:22;:48::i;:::-;35409:149;;;;;;;;;;;;:::i;:::-;;;;;;;;;35211:355;;;;:::o;46139:108::-;25607:12;:10;:12::i;:::-;25596:23;;:7;:5;:7::i;:::-;:23;;;:55;;;;25639:12;:10;:12::i;:::-;25623:28;;:12;;;;;;;;;;;:28;;;25596:55;25588:101;;;;;;;;;;;;:::i;:::-;;;;;;;;;46225:14:::1;46214:8;:25;;;;46139:108:::0;:::o;43744:35::-;;;;:::o;44039:397::-;44113:13;44147:17;44155:8;44147:7;:17::i;:::-;44139:76;;;;;;;;;;;;:::i;:::-;;;;;;;;;44226:28;44257:10;:8;:10::i;:::-;44226:41;;44316:1;44291:14;44285:28;:32;:143;;;;;;;;;;;;;;;;;44357:14;44372:28;44398:1;44389:8;:10;;;;:::i;:::-;44372:16;:28::i;:::-;44340:69;;;;;;;;;:::i;:::-;;;;;;;;;;;;;44285:143;44278:150;;;44039:397;;;:::o;45370:125::-;25607:12;:10;:12::i;:::-;25596:23;;:7;:5;:7::i;:::-;:23;;;:55;;;;25639:12;:10;:12::i;:::-;25623:28;;:12;;;;;;;;;;;:28;;;25596:55;25588:101;;;;;;;;;;;;:::i;:::-;;;;;;;;;45458:29:::1;45468:11;45481:5;45458:9;:29::i;:::-;45370:125:::0;;:::o;43831:38::-;;;;:::o;46025:106::-;25607:12;:10;:12::i;:::-;25596:23;;:7;:5;:7::i;:::-;:23;;;:55;;;;25639:12;:10;:12::i;:::-;25623:28;;:12;;;;;;;;;;;:28;;;25596:55;25588:101;;;;;;;;;;;;:::i;:::-;;;;;;;;;46112:11:::1;46099:10;:24;;;;46025:106:::0;:::o;34483:164::-;34580:4;34604:18;:25;34623:5;34604:25;;;;;;;;;;;;;;;:35;34630:8;34604:35;;;;;;;;;;;;;;;;;;;;;;;;;34597:42;;34483:164;;;;:::o;26318:201::-;25607:12;:10;:12::i;:::-;25596:23;;:7;:5;:7::i;:::-;:23;;;:55;;;;25639:12;:10;:12::i;:::-;25623:28;;:12;;;;;;;;;;;:28;;;25596:55;25588:101;;;;;;;;;;;;:::i;:::-;;;;;;;;;26427:1:::1;26407:22;;:8;:22;;;;26399:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;26483:28;26502:8;26483:18;:28::i;:::-;26318:201:::0;:::o;43701:36::-;;;;:::o;13648:157::-;13733:4;13772:25;13757:40;;;:11;:40;;;;13750:47;;13648:157;;;:::o;35821:111::-;35878:4;35912:12;;35902:7;:22;35895:29;;35821:111;;;:::o;24020:98::-;24073:7;24100:10;24093:17;;24020:98;:::o;40741:196::-;40883:2;40856:15;:24;40872:7;40856:24;;;;;;;;;;;;:29;;;;;;;;;;;;;;;;;;40921:7;40917:2;40901:28;;40910:5;40901:28;;;;;;;;;;;;40741:196;;;:::o;38621:2002::-;38736:35;38774:20;38786:7;38774:11;:20::i;:::-;38736:58;;38807:22;38849:13;:18;;;38833:34;;:12;:10;:12::i;:::-;:34;;;:87;;;;38908:12;:10;:12::i;:::-;38884:36;;:20;38896:7;38884:11;:20::i;:::-;:36;;;38833:87;:154;;;;38937:50;38954:13;:18;;;38974:12;:10;:12::i;:::-;38937:16;:50::i;:::-;38833:154;38807:181;;39009:17;39001:80;;;;;;;;;;;;:::i;:::-;;;;;;;;;39124:4;39102:26;;:13;:18;;;:26;;;39094:77;;;;;;;;;;;;:::i;:::-;;;;;;;;;39204:1;39190:16;;:2;:16;;;;39182:66;;;;;;;;;;;;:::i;:::-;;;;;;;;;39261:43;39283:4;39289:2;39293:7;39302:1;39261:21;:43::i;:::-;39369:49;39386:1;39390:7;39399:13;:18;;;39369:8;:49::i;:::-;39744:1;39714:12;:18;39727:4;39714:18;;;;;;;;;;;;;;;:26;;;:31;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;39788:1;39760:12;:16;39773:2;39760:16;;;;;;;;;;;;;;;:24;;;:29;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;39834:2;39806:11;:20;39818:7;39806:20;;;;;;;;;;;:25;;;:30;;;;;;;;;;;;;;;;;;39896:15;39851:11;:20;39863:7;39851:20;;;;;;;;;;;:35;;;:61;;;;;;;;;;;;;;;;;;40164:19;40196:1;40186:7;:11;40164:33;;40257:1;40216:43;;:11;:24;40228:11;40216:24;;;;;;;;;;;:29;;;;;;;;;;;;:43;;;40212:295;;;40284:20;40292:11;40284:7;:20::i;:::-;40280:212;;;40361:13;:18;;;40329:11;:24;40341:11;40329:24;;;;;;;;;;;:29;;;:50;;;;;;;;;;;;;;;;;;40444:13;:28;;;40402:11;:24;40414:11;40402:24;;;;;;;;;;;:39;;;:70;;;;;;;;;;;;;;;;;;40280:212;40212:295;39689:829;40554:7;40550:2;40535:27;;40544:4;40535:27;;;;;;;;;;;;40573:42;40594:4;40600:2;40604:7;40613:1;40573:20;:42::i;:::-;38725:1898;;38621:2002;;;:::o;31486:537::-;31547:21;;:::i;:::-;31589:16;31597:7;31589;:16::i;:::-;31581:71;;;;;;;;;;;;:::i;:::-;;;;;;;;;31695:12;31710:7;31695:22;;31690:245;31727:1;31719:4;:9;31690:245;;31757:31;31791:11;:17;31803:4;31791:17;;;;;;;;;;;31757:51;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;31857:1;31831:28;;:9;:14;;;:28;;;31827:93;;31891:9;31884:16;;;;;;31827:93;31738:197;31730:6;;;;;;;;31690:245;;;;31958:57;;;;;;;;;;:::i;:::-;;;;;;;;31486:537;;;;:::o;26679:191::-;26753:16;26772:6;;;;;;;;;;;26753:25;;26798:8;26789:6;;:17;;;;;;;;;;;;;;;;;;26853:8;26822:40;;26843:8;26822:40;;;;;;;;;;;;26742:128;26679:191;:::o;35940:104::-;36009:27;36019:2;36023:8;36009:27;;;;;;;;;;;;:9;:27::i;:::-;35940:104;;:::o;41502:804::-;41657:4;41678:15;:2;:13;;;:15::i;:::-;41674:625;;;41730:2;41714:36;;;41751:12;:10;:12::i;:::-;41765:4;41771:7;41780:5;41714:72;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;41710:534;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;41977:1;41960:6;:13;:18;41956:273;;;42003:61;;;;;;;;;;:::i;:::-;;;;;;;;41956:273;42179:6;42173:13;42164:6;42160:2;42156:15;42149:38;41710:534;41847:45;;;41837:55;;;:6;:55;;;;41830:62;;;;;41674:625;42283:4;42276:11;;41502:804;;;;;;;:::o;45590:108::-;45650:13;45683:7;45676:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;45590:108;:::o;550:723::-;606:13;836:1;827:5;:10;823:53;;;854:10;;;;;;;;;;;;;;;;;;;;;823:53;886:12;901:5;886:20;;917:14;942:78;957:1;949:4;:9;942:78;;975:8;;;;;:::i;:::-;;;;1006:2;998:10;;;;;:::i;:::-;;;942:78;;;1030:19;1062:6;1052:17;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1030:39;;1080:154;1096:1;1087:5;:10;1080:154;;1124:1;1114:11;;;;;:::i;:::-;;;1191:2;1183:5;:10;;;;:::i;:::-;1170:2;:24;;;;:::i;:::-;1157:39;;1140:6;1147;1140:14;;;;;;;;:::i;:::-;;;;;:56;;;;;;;;;;;1220:2;1211:11;;;;;:::i;:::-;;;1080:154;;;1258:6;1244:21;;;;;550:723;;;;:::o;42794:159::-;;;;;:::o;43365:158::-;;;;;:::o;36407:163::-;36530:32;36536:2;36540:8;36550:5;36557:4;36530:5;:32::i;:::-;36407:163;;;:::o;3542:326::-;3602:4;3859:1;3837:7;:19;;;:23;3830:30;;3542:326;;;:::o;36829:1538::-;36968:20;36991:12;;36968:35;;37036:1;37022:16;;:2;:16;;;;37014:62;;;;;;;;;;;;:::i;:::-;;;;;;;;;37107:1;37095:8;:13;;37087:66;;;;;;;;;;;;:::i;:::-;;;;;;;;;37166:61;37196:1;37200:2;37204:12;37218:8;37166:21;:61::i;:::-;37541:8;37505:12;:16;37518:2;37505:16;;;;;;;;;;;;;;;:24;;;:45;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;37606:8;37565:12;:16;37578:2;37565:16;;;;;;;;;;;;;;;:29;;;:50;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;37665:2;37632:11;:25;37644:12;37632:25;;;;;;;;;;;:30;;;:35;;;;;;;;;;;;;;;;;;37732:15;37682:11;:25;37694:12;37682:25;;;;;;;;;;;:40;;;:66;;;;;;;;;;;;;;;;;;37765:20;37788:12;37765:35;;37822:9;37817:415;37837:8;37833:1;:12;37817:415;;;37901:12;37897:2;37876:38;;37893:1;37876:38;;;;;;;;;;;;37937:4;37933:249;;;38000:59;38031:1;38035:2;38039:12;38053:5;38000:22;:59::i;:::-;37966:196;;;;;;;;;;;;:::i;:::-;;;;;;;;;37933:249;38202:14;;;;;;;37847:3;;;;;;;37817:415;;;;38263:12;38248;:27;;;;37480:807;38299:60;38328:1;38332:2;38336:12;38350:8;38299:20;:60::i;:::-;36957:1410;36829: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:412::-;501:5;526:66;542:49;584:6;542:49;:::i;:::-;526:66;:::i;:::-;517:75;;615:6;608:5;601:21;653:4;646:5;642:16;691:3;682:6;677:3;673:16;670:25;667:112;;;698:79;;:::i;:::-;667:112;788:41;822:6;817:3;812;788:41;:::i;:::-;507:328;423:412;;;;;:::o;841:139::-;887:5;925:6;912:20;903:29;;941:33;968:5;941:33;:::i;:::-;841:139;;;;:::o;986:133::-;1029:5;1067:6;1054:20;1045:29;;1083:30;1107:5;1083:30;:::i;:::-;986:133;;;;:::o;1125:137::-;1170:5;1208:6;1195:20;1186:29;;1224:32;1250:5;1224:32;:::i;:::-;1125:137;;;;:::o;1268:141::-;1324:5;1355:6;1349:13;1340:22;;1371:32;1397:5;1371:32;:::i;:::-;1268:141;;;;:::o;1428:338::-;1483:5;1532:3;1525:4;1517:6;1513:17;1509:27;1499:122;;1540:79;;:::i;:::-;1499:122;1657:6;1644:20;1682:78;1756:3;1748:6;1741:4;1733:6;1729:17;1682:78;:::i;:::-;1673:87;;1489:277;1428:338;;;;:::o;1786:340::-;1842:5;1891:3;1884:4;1876:6;1872:17;1868:27;1858:122;;1899:79;;:::i;:::-;1858:122;2016:6;2003:20;2041:79;2116:3;2108:6;2101:4;2093:6;2089:17;2041:79;:::i;:::-;2032:88;;1848:278;1786:340;;;;:::o;2132:139::-;2178:5;2216:6;2203:20;2194:29;;2232:33;2259:5;2232:33;:::i;:::-;2132:139;;;;:::o;2277:329::-;2336:6;2385:2;2373:9;2364:7;2360:23;2356:32;2353:119;;;2391:79;;:::i;:::-;2353:119;2511:1;2536:53;2581:7;2572:6;2561:9;2557:22;2536:53;:::i;:::-;2526:63;;2482:117;2277:329;;;;:::o;2612:474::-;2680:6;2688;2737:2;2725:9;2716:7;2712:23;2708:32;2705:119;;;2743:79;;:::i;:::-;2705:119;2863:1;2888:53;2933:7;2924:6;2913:9;2909:22;2888:53;:::i;:::-;2878:63;;2834:117;2990:2;3016:53;3061:7;3052:6;3041:9;3037:22;3016:53;:::i;:::-;3006:63;;2961:118;2612:474;;;;;:::o;3092:619::-;3169:6;3177;3185;3234:2;3222:9;3213:7;3209:23;3205:32;3202:119;;;3240:79;;:::i;:::-;3202:119;3360:1;3385:53;3430:7;3421:6;3410:9;3406:22;3385:53;:::i;:::-;3375:63;;3331:117;3487:2;3513:53;3558:7;3549:6;3538:9;3534:22;3513:53;:::i;:::-;3503:63;;3458:118;3615:2;3641:53;3686:7;3677:6;3666:9;3662:22;3641:53;:::i;:::-;3631:63;;3586:118;3092:619;;;;;:::o;3717:943::-;3812:6;3820;3828;3836;3885:3;3873:9;3864:7;3860:23;3856:33;3853:120;;;3892:79;;:::i;:::-;3853:120;4012:1;4037:53;4082:7;4073:6;4062:9;4058:22;4037:53;:::i;:::-;4027:63;;3983:117;4139:2;4165:53;4210:7;4201:6;4190:9;4186:22;4165:53;:::i;:::-;4155:63;;4110:118;4267:2;4293:53;4338:7;4329:6;4318:9;4314:22;4293:53;:::i;:::-;4283:63;;4238:118;4423:2;4412:9;4408:18;4395:32;4454:18;4446:6;4443:30;4440:117;;;4476:79;;:::i;:::-;4440:117;4581:62;4635:7;4626:6;4615:9;4611:22;4581:62;:::i;:::-;4571:72;;4366:287;3717:943;;;;;;;:::o;4666:468::-;4731:6;4739;4788:2;4776:9;4767:7;4763:23;4759:32;4756:119;;;4794:79;;:::i;:::-;4756:119;4914:1;4939:53;4984:7;4975:6;4964:9;4960:22;4939:53;:::i;:::-;4929:63;;4885:117;5041:2;5067:50;5109:7;5100:6;5089:9;5085:22;5067:50;:::i;:::-;5057:60;;5012:115;4666:468;;;;;:::o;5140:474::-;5208:6;5216;5265:2;5253:9;5244:7;5240:23;5236:32;5233:119;;;5271:79;;:::i;:::-;5233:119;5391:1;5416:53;5461:7;5452:6;5441:9;5437:22;5416:53;:::i;:::-;5406:63;;5362:117;5518:2;5544:53;5589:7;5580:6;5569:9;5565:22;5544:53;:::i;:::-;5534:63;;5489:118;5140:474;;;;;:::o;5620:323::-;5676:6;5725:2;5713:9;5704:7;5700:23;5696:32;5693:119;;;5731:79;;:::i;:::-;5693:119;5851:1;5876:50;5918:7;5909:6;5898:9;5894:22;5876:50;:::i;:::-;5866:60;;5822:114;5620:323;;;;:::o;5949:327::-;6007:6;6056:2;6044:9;6035:7;6031:23;6027:32;6024:119;;;6062:79;;:::i;:::-;6024:119;6182:1;6207:52;6251:7;6242:6;6231:9;6227:22;6207:52;:::i;:::-;6197:62;;6153:116;5949:327;;;;:::o;6282:349::-;6351:6;6400:2;6388:9;6379:7;6375:23;6371:32;6368:119;;;6406:79;;:::i;:::-;6368:119;6526:1;6551:63;6606:7;6597:6;6586:9;6582:22;6551:63;:::i;:::-;6541:73;;6497:127;6282:349;;;;:::o;6637:509::-;6706:6;6755:2;6743:9;6734:7;6730:23;6726:32;6723:119;;;6761:79;;:::i;:::-;6723:119;6909:1;6898:9;6894:17;6881:31;6939:18;6931:6;6928:30;6925:117;;;6961:79;;:::i;:::-;6925:117;7066:63;7121:7;7112:6;7101:9;7097:22;7066:63;:::i;:::-;7056:73;;6852:287;6637:509;;;;:::o;7152:329::-;7211:6;7260:2;7248:9;7239:7;7235:23;7231:32;7228:119;;;7266:79;;:::i;:::-;7228:119;7386:1;7411:53;7456:7;7447:6;7436:9;7432:22;7411:53;:::i;:::-;7401:63;;7357:117;7152:329;;;;:::o;7487:118::-;7574:24;7592:5;7574:24;:::i;:::-;7569:3;7562:37;7487:118;;:::o;7611:109::-;7692:21;7707:5;7692:21;:::i;:::-;7687:3;7680:34;7611:109;;:::o;7726:360::-;7812:3;7840:38;7872:5;7840:38;:::i;:::-;7894:70;7957:6;7952:3;7894:70;:::i;:::-;7887:77;;7973:52;8018:6;8013:3;8006:4;7999:5;7995:16;7973:52;:::i;:::-;8050:29;8072:6;8050:29;:::i;:::-;8045:3;8041:39;8034:46;;7816:270;7726:360;;;;:::o;8092:364::-;8180:3;8208:39;8241:5;8208:39;:::i;:::-;8263:71;8327:6;8322:3;8263:71;:::i;:::-;8256:78;;8343:52;8388:6;8383:3;8376:4;8369:5;8365:16;8343:52;:::i;:::-;8420:29;8442:6;8420:29;:::i;:::-;8415:3;8411:39;8404:46;;8184:272;8092:364;;;;:::o;8462:377::-;8568:3;8596:39;8629:5;8596:39;:::i;:::-;8651:89;8733:6;8728:3;8651:89;:::i;:::-;8644:96;;8749:52;8794:6;8789:3;8782:4;8775:5;8771:16;8749:52;:::i;:::-;8826:6;8821:3;8817:16;8810:23;;8572:267;8462:377;;;;:::o;8845:366::-;8987:3;9008:67;9072:2;9067:3;9008:67;:::i;:::-;9001:74;;9084:93;9173:3;9084:93;:::i;:::-;9202:2;9197:3;9193:12;9186:19;;8845:366;;;:::o;9217:::-;9359:3;9380:67;9444:2;9439:3;9380:67;:::i;:::-;9373:74;;9456:93;9545:3;9456:93;:::i;:::-;9574:2;9569:3;9565:12;9558:19;;9217:366;;;:::o;9589:::-;9731:3;9752:67;9816:2;9811:3;9752:67;:::i;:::-;9745:74;;9828:93;9917:3;9828:93;:::i;:::-;9946:2;9941:3;9937:12;9930:19;;9589:366;;;:::o;9961:::-;10103:3;10124:67;10188:2;10183:3;10124:67;:::i;:::-;10117:74;;10200:93;10289:3;10200:93;:::i;:::-;10318:2;10313:3;10309:12;10302:19;;9961:366;;;:::o;10333:::-;10475:3;10496:67;10560:2;10555:3;10496:67;:::i;:::-;10489:74;;10572:93;10661:3;10572:93;:::i;:::-;10690:2;10685:3;10681:12;10674:19;;10333:366;;;:::o;10705:::-;10847:3;10868:67;10932:2;10927:3;10868:67;:::i;:::-;10861:74;;10944:93;11033:3;10944:93;:::i;:::-;11062:2;11057:3;11053:12;11046:19;;10705:366;;;:::o;11077:::-;11219:3;11240:67;11304:2;11299:3;11240:67;:::i;:::-;11233:74;;11316:93;11405:3;11316:93;:::i;:::-;11434:2;11429:3;11425:12;11418:19;;11077:366;;;:::o;11449:::-;11591:3;11612:67;11676:2;11671:3;11612:67;:::i;:::-;11605:74;;11688:93;11777:3;11688:93;:::i;:::-;11806:2;11801:3;11797:12;11790:19;;11449:366;;;:::o;11821:::-;11963:3;11984:67;12048:2;12043:3;11984:67;:::i;:::-;11977:74;;12060:93;12149:3;12060:93;:::i;:::-;12178:2;12173:3;12169:12;12162:19;;11821:366;;;:::o;12193:::-;12335:3;12356:67;12420:2;12415:3;12356:67;:::i;:::-;12349:74;;12432:93;12521:3;12432:93;:::i;:::-;12550:2;12545:3;12541:12;12534:19;;12193:366;;;:::o;12565:::-;12707:3;12728:67;12792:2;12787:3;12728:67;:::i;:::-;12721:74;;12804:93;12893:3;12804:93;:::i;:::-;12922:2;12917:3;12913:12;12906:19;;12565:366;;;:::o;12937:400::-;13097:3;13118:84;13200:1;13195:3;13118:84;:::i;:::-;13111:91;;13211:93;13300:3;13211:93;:::i;:::-;13329:1;13324:3;13320:11;13313:18;;12937:400;;;:::o;13343:366::-;13485:3;13506:67;13570:2;13565:3;13506:67;:::i;:::-;13499:74;;13582:93;13671:3;13582:93;:::i;:::-;13700:2;13695:3;13691:12;13684:19;;13343:366;;;:::o;13715:::-;13857:3;13878:67;13942:2;13937:3;13878:67;:::i;:::-;13871:74;;13954:93;14043:3;13954:93;:::i;:::-;14072:2;14067:3;14063:12;14056:19;;13715:366;;;:::o;14087:::-;14229:3;14250:67;14314:2;14309:3;14250:67;:::i;:::-;14243:74;;14326:93;14415:3;14326:93;:::i;:::-;14444:2;14439:3;14435:12;14428:19;;14087:366;;;:::o;14459:::-;14601:3;14622:67;14686:2;14681:3;14622:67;:::i;:::-;14615:74;;14698:93;14787:3;14698:93;:::i;:::-;14816:2;14811:3;14807:12;14800:19;;14459:366;;;:::o;14831:::-;14973:3;14994:67;15058:2;15053:3;14994:67;:::i;:::-;14987:74;;15070:93;15159:3;15070:93;:::i;:::-;15188:2;15183:3;15179:12;15172:19;;14831:366;;;:::o;15203:::-;15345:3;15366:67;15430:2;15425:3;15366:67;:::i;:::-;15359:74;;15442:93;15531:3;15442:93;:::i;:::-;15560:2;15555:3;15551:12;15544:19;;15203:366;;;:::o;15575:398::-;15734:3;15755:83;15836:1;15831:3;15755:83;:::i;:::-;15748:90;;15847:93;15936:3;15847:93;:::i;:::-;15965:1;15960:3;15956:11;15949:18;;15575:398;;;:::o;15979:366::-;16121:3;16142:67;16206:2;16201:3;16142:67;:::i;:::-;16135:74;;16218:93;16307:3;16218:93;:::i;:::-;16336:2;16331:3;16327:12;16320:19;;15979:366;;;:::o;16351:::-;16493:3;16514:67;16578:2;16573:3;16514:67;:::i;:::-;16507:74;;16590:93;16679:3;16590:93;:::i;:::-;16708:2;16703:3;16699:12;16692:19;;16351:366;;;:::o;16723:::-;16865:3;16886:67;16950:2;16945:3;16886:67;:::i;:::-;16879:74;;16962:93;17051:3;16962:93;:::i;:::-;17080:2;17075:3;17071:12;17064:19;;16723:366;;;:::o;17095:::-;17237:3;17258:67;17322:2;17317:3;17258:67;:::i;:::-;17251:74;;17334:93;17423:3;17334:93;:::i;:::-;17452:2;17447:3;17443:12;17436:19;;17095:366;;;:::o;17467:::-;17609:3;17630:67;17694:2;17689:3;17630:67;:::i;:::-;17623:74;;17706:93;17795:3;17706:93;:::i;:::-;17824:2;17819:3;17815:12;17808:19;;17467:366;;;:::o;17839:::-;17981:3;18002:67;18066:2;18061:3;18002:67;:::i;:::-;17995:74;;18078:93;18167:3;18078:93;:::i;:::-;18196:2;18191:3;18187:12;18180:19;;17839:366;;;:::o;18211:::-;18353:3;18374:67;18438:2;18433:3;18374:67;:::i;:::-;18367:74;;18450:93;18539:3;18450:93;:::i;:::-;18568:2;18563:3;18559:12;18552:19;;18211:366;;;:::o;18583:::-;18725:3;18746:67;18810:2;18805:3;18746:67;:::i;:::-;18739:74;;18822:93;18911:3;18822:93;:::i;:::-;18940:2;18935:3;18931:12;18924:19;;18583:366;;;:::o;18955:::-;19097:3;19118:67;19182:2;19177:3;19118:67;:::i;:::-;19111:74;;19194:93;19283:3;19194:93;:::i;:::-;19312:2;19307:3;19303:12;19296:19;;18955:366;;;:::o;19327:118::-;19414:24;19432:5;19414:24;:::i;:::-;19409:3;19402:37;19327:118;;:::o;19451:701::-;19732:3;19754:95;19845:3;19836:6;19754:95;:::i;:::-;19747:102;;19866:95;19957:3;19948:6;19866:95;:::i;:::-;19859:102;;19978:148;20122:3;19978:148;:::i;:::-;19971:155;;20143:3;20136:10;;19451:701;;;;;:::o;20158:379::-;20342:3;20364:147;20507:3;20364:147;:::i;:::-;20357:154;;20528:3;20521:10;;20158:379;;;:::o;20543:222::-;20636:4;20674:2;20663:9;20659:18;20651:26;;20687:71;20755:1;20744:9;20740:17;20731:6;20687:71;:::i;:::-;20543:222;;;;:::o;20771:640::-;20966:4;21004:3;20993:9;20989:19;20981:27;;21018:71;21086:1;21075:9;21071:17;21062:6;21018:71;:::i;:::-;21099:72;21167:2;21156:9;21152:18;21143:6;21099:72;:::i;:::-;21181;21249:2;21238:9;21234:18;21225:6;21181:72;:::i;:::-;21300:9;21294:4;21290:20;21285:2;21274:9;21270:18;21263:48;21328:76;21399:4;21390:6;21328:76;:::i;:::-;21320:84;;20771:640;;;;;;;:::o;21417:210::-;21504:4;21542:2;21531:9;21527:18;21519:26;;21555:65;21617:1;21606:9;21602:17;21593:6;21555:65;:::i;:::-;21417:210;;;;:::o;21633:313::-;21746:4;21784:2;21773:9;21769:18;21761:26;;21833:9;21827:4;21823:20;21819:1;21808:9;21804:17;21797:47;21861:78;21934:4;21925:6;21861:78;:::i;:::-;21853:86;;21633:313;;;;:::o;21952:419::-;22118:4;22156:2;22145:9;22141:18;22133:26;;22205:9;22199:4;22195:20;22191:1;22180:9;22176:17;22169:47;22233:131;22359:4;22233:131;:::i;:::-;22225:139;;21952:419;;;:::o;22377:::-;22543:4;22581:2;22570:9;22566:18;22558:26;;22630:9;22624:4;22620:20;22616:1;22605:9;22601:17;22594:47;22658:131;22784:4;22658:131;:::i;:::-;22650:139;;22377:419;;;:::o;22802:::-;22968:4;23006:2;22995:9;22991:18;22983:26;;23055:9;23049:4;23045:20;23041:1;23030:9;23026:17;23019:47;23083:131;23209:4;23083:131;:::i;:::-;23075:139;;22802:419;;;:::o;23227:::-;23393:4;23431:2;23420:9;23416:18;23408:26;;23480:9;23474:4;23470:20;23466:1;23455:9;23451:17;23444:47;23508:131;23634:4;23508:131;:::i;:::-;23500:139;;23227:419;;;:::o;23652:::-;23818:4;23856:2;23845:9;23841:18;23833:26;;23905:9;23899:4;23895:20;23891:1;23880:9;23876:17;23869:47;23933:131;24059:4;23933:131;:::i;:::-;23925:139;;23652:419;;;:::o;24077:::-;24243:4;24281:2;24270:9;24266:18;24258:26;;24330:9;24324:4;24320:20;24316:1;24305:9;24301:17;24294:47;24358:131;24484:4;24358:131;:::i;:::-;24350:139;;24077:419;;;:::o;24502:::-;24668:4;24706:2;24695:9;24691:18;24683:26;;24755:9;24749:4;24745:20;24741:1;24730:9;24726:17;24719:47;24783:131;24909:4;24783:131;:::i;:::-;24775:139;;24502:419;;;:::o;24927:::-;25093:4;25131:2;25120:9;25116:18;25108:26;;25180:9;25174:4;25170:20;25166:1;25155:9;25151:17;25144:47;25208:131;25334:4;25208:131;:::i;:::-;25200:139;;24927:419;;;:::o;25352:::-;25518:4;25556:2;25545:9;25541:18;25533:26;;25605:9;25599:4;25595:20;25591:1;25580:9;25576:17;25569:47;25633:131;25759:4;25633:131;:::i;:::-;25625:139;;25352:419;;;:::o;25777:::-;25943:4;25981:2;25970:9;25966:18;25958:26;;26030:9;26024:4;26020:20;26016:1;26005:9;26001:17;25994:47;26058:131;26184:4;26058:131;:::i;:::-;26050:139;;25777:419;;;:::o;26202:::-;26368:4;26406:2;26395:9;26391:18;26383:26;;26455:9;26449:4;26445:20;26441:1;26430:9;26426:17;26419:47;26483:131;26609:4;26483:131;:::i;:::-;26475:139;;26202:419;;;:::o;26627:::-;26793:4;26831:2;26820:9;26816:18;26808:26;;26880:9;26874:4;26870:20;26866:1;26855:9;26851:17;26844:47;26908:131;27034:4;26908:131;:::i;:::-;26900:139;;26627:419;;;:::o;27052:::-;27218:4;27256:2;27245:9;27241:18;27233:26;;27305:9;27299:4;27295:20;27291:1;27280:9;27276:17;27269:47;27333:131;27459:4;27333:131;:::i;:::-;27325:139;;27052:419;;;:::o;27477:::-;27643:4;27681:2;27670:9;27666:18;27658:26;;27730:9;27724:4;27720:20;27716:1;27705:9;27701:17;27694:47;27758:131;27884:4;27758:131;:::i;:::-;27750:139;;27477:419;;;:::o;27902:::-;28068:4;28106:2;28095:9;28091:18;28083:26;;28155:9;28149:4;28145:20;28141:1;28130:9;28126:17;28119:47;28183:131;28309:4;28183:131;:::i;:::-;28175:139;;27902:419;;;:::o;28327:::-;28493:4;28531:2;28520:9;28516:18;28508:26;;28580:9;28574:4;28570:20;28566:1;28555:9;28551:17;28544:47;28608:131;28734:4;28608:131;:::i;:::-;28600:139;;28327:419;;;:::o;28752:::-;28918:4;28956:2;28945:9;28941:18;28933:26;;29005:9;28999:4;28995:20;28991:1;28980:9;28976:17;28969:47;29033:131;29159:4;29033:131;:::i;:::-;29025:139;;28752:419;;;:::o;29177:::-;29343:4;29381:2;29370:9;29366:18;29358:26;;29430:9;29424:4;29420:20;29416:1;29405:9;29401:17;29394:47;29458:131;29584:4;29458:131;:::i;:::-;29450:139;;29177:419;;;:::o;29602:::-;29768:4;29806:2;29795:9;29791:18;29783:26;;29855:9;29849:4;29845:20;29841:1;29830:9;29826:17;29819:47;29883:131;30009:4;29883:131;:::i;:::-;29875:139;;29602:419;;;:::o;30027:::-;30193:4;30231:2;30220:9;30216:18;30208:26;;30280:9;30274:4;30270:20;30266:1;30255:9;30251:17;30244:47;30308:131;30434:4;30308:131;:::i;:::-;30300:139;;30027:419;;;:::o;30452:::-;30618:4;30656:2;30645:9;30641:18;30633:26;;30705:9;30699:4;30695:20;30691:1;30680:9;30676:17;30669:47;30733:131;30859:4;30733:131;:::i;:::-;30725:139;;30452:419;;;:::o;30877:::-;31043:4;31081:2;31070:9;31066:18;31058:26;;31130:9;31124:4;31120:20;31116:1;31105:9;31101:17;31094:47;31158:131;31284:4;31158:131;:::i;:::-;31150:139;;30877:419;;;:::o;31302:::-;31468:4;31506:2;31495:9;31491:18;31483:26;;31555:9;31549:4;31545:20;31541:1;31530:9;31526:17;31519:47;31583:131;31709:4;31583:131;:::i;:::-;31575:139;;31302:419;;;:::o;31727:::-;31893:4;31931:2;31920:9;31916:18;31908:26;;31980:9;31974:4;31970:20;31966:1;31955:9;31951:17;31944:47;32008:131;32134:4;32008:131;:::i;:::-;32000:139;;31727:419;;;:::o;32152:::-;32318:4;32356:2;32345:9;32341:18;32333:26;;32405:9;32399:4;32395:20;32391:1;32380:9;32376:17;32369:47;32433:131;32559:4;32433:131;:::i;:::-;32425:139;;32152:419;;;:::o;32577:::-;32743:4;32781:2;32770:9;32766:18;32758:26;;32830:9;32824:4;32820:20;32816:1;32805:9;32801:17;32794:47;32858:131;32984:4;32858:131;:::i;:::-;32850:139;;32577:419;;;:::o;33002:222::-;33095:4;33133:2;33122:9;33118:18;33110:26;;33146:71;33214:1;33203:9;33199:17;33190:6;33146:71;:::i;:::-;33002:222;;;;:::o;33230:129::-;33264:6;33291:20;;:::i;:::-;33281:30;;33320:33;33348:4;33340:6;33320:33;:::i;:::-;33230:129;;;:::o;33365:75::-;33398:6;33431:2;33425:9;33415:19;;33365:75;:::o;33446:307::-;33507:4;33597:18;33589:6;33586:30;33583:56;;;33619:18;;:::i;:::-;33583:56;33657:29;33679:6;33657:29;:::i;:::-;33649:37;;33741:4;33735;33731:15;33723:23;;33446:307;;;:::o;33759:308::-;33821:4;33911:18;33903:6;33900:30;33897:56;;;33933:18;;:::i;:::-;33897:56;33971:29;33993:6;33971:29;:::i;:::-;33963:37;;34055:4;34049;34045:15;34037:23;;33759:308;;;:::o;34073:98::-;34124:6;34158:5;34152:12;34142:22;;34073:98;;;:::o;34177:99::-;34229:6;34263:5;34257:12;34247:22;;34177:99;;;:::o;34282:168::-;34365:11;34399:6;34394:3;34387:19;34439:4;34434:3;34430:14;34415:29;;34282:168;;;;:::o;34456:147::-;34557:11;34594:3;34579:18;;34456:147;;;;:::o;34609:169::-;34693:11;34727:6;34722:3;34715:19;34767:4;34762:3;34758:14;34743:29;;34609:169;;;;:::o;34784:148::-;34886:11;34923:3;34908:18;;34784:148;;;;:::o;34938:305::-;34978:3;34997:20;35015:1;34997:20;:::i;:::-;34992:25;;35031:20;35049:1;35031:20;:::i;:::-;35026:25;;35185:1;35117:66;35113:74;35110:1;35107:81;35104:107;;;35191:18;;:::i;:::-;35104:107;35235:1;35232;35228:9;35221:16;;34938:305;;;;:::o;35249:185::-;35289:1;35306:20;35324:1;35306:20;:::i;:::-;35301:25;;35340:20;35358:1;35340:20;:::i;:::-;35335:25;;35379:1;35369:35;;35384:18;;:::i;:::-;35369:35;35426:1;35423;35419:9;35414:14;;35249:185;;;;:::o;35440:348::-;35480:7;35503:20;35521:1;35503:20;:::i;:::-;35498:25;;35537:20;35555:1;35537:20;:::i;:::-;35532:25;;35725:1;35657:66;35653:74;35650:1;35647:81;35642:1;35635:9;35628:17;35624:105;35621:131;;;35732:18;;:::i;:::-;35621:131;35780:1;35777;35773:9;35762:20;;35440:348;;;;:::o;35794:191::-;35834:4;35854:20;35872:1;35854:20;:::i;:::-;35849:25;;35888:20;35906:1;35888:20;:::i;:::-;35883:25;;35927:1;35924;35921:8;35918:34;;;35932:18;;:::i;:::-;35918:34;35977:1;35974;35970:9;35962:17;;35794:191;;;;:::o;35991:96::-;36028:7;36057:24;36075:5;36057:24;:::i;:::-;36046:35;;35991:96;;;:::o;36093:90::-;36127:7;36170:5;36163:13;36156:21;36145:32;;36093:90;;;:::o;36189:149::-;36225:7;36265:66;36258:5;36254:78;36243:89;;36189:149;;;:::o;36344:126::-;36381:7;36421:42;36414:5;36410:54;36399:65;;36344:126;;;:::o;36476:77::-;36513:7;36542:5;36531:16;;36476:77;;;:::o;36559:154::-;36643:6;36638:3;36633;36620:30;36705:1;36696:6;36691:3;36687:16;36680:27;36559:154;;;:::o;36719:307::-;36787:1;36797:113;36811:6;36808:1;36805:13;36797:113;;;36896:1;36891:3;36887:11;36881:18;36877:1;36872:3;36868:11;36861:39;36833:2;36830:1;36826:10;36821:15;;36797:113;;;36928:6;36925:1;36922:13;36919:101;;;37008:1;36999:6;36994:3;36990:16;36983:27;36919:101;36768:258;36719:307;;;:::o;37032:320::-;37076:6;37113:1;37107:4;37103:12;37093:22;;37160:1;37154:4;37150:12;37181:18;37171:81;;37237:4;37229:6;37225:17;37215:27;;37171:81;37299:2;37291:6;37288:14;37268:18;37265:38;37262:84;;;37318:18;;:::i;:::-;37262:84;37083:269;37032:320;;;:::o;37358:281::-;37441:27;37463:4;37441:27;:::i;:::-;37433:6;37429:40;37571:6;37559:10;37556:22;37535:18;37523:10;37520:34;37517:62;37514:88;;;37582:18;;:::i;:::-;37514:88;37622:10;37618:2;37611:22;37401:238;37358:281;;:::o;37645:233::-;37684:3;37707:24;37725:5;37707:24;:::i;:::-;37698:33;;37753:66;37746:5;37743:77;37740:103;;;37823:18;;:::i;:::-;37740:103;37870:1;37863:5;37859:13;37852:20;;37645:233;;;:::o;37884:176::-;37916:1;37933:20;37951:1;37933:20;:::i;:::-;37928:25;;37967:20;37985:1;37967:20;:::i;:::-;37962:25;;38006:1;37996:35;;38011:18;;:::i;:::-;37996:35;38052:1;38049;38045:9;38040:14;;37884:176;;;;:::o;38066:180::-;38114:77;38111:1;38104:88;38211:4;38208:1;38201:15;38235:4;38232:1;38225:15;38252:180;38300:77;38297:1;38290:88;38397:4;38394:1;38387:15;38421:4;38418:1;38411:15;38438:180;38486:77;38483:1;38476:88;38583:4;38580:1;38573:15;38607:4;38604:1;38597:15;38624:180;38672:77;38669:1;38662:88;38769:4;38766:1;38759:15;38793:4;38790:1;38783:15;38810:180;38858:77;38855:1;38848:88;38955:4;38952:1;38945:15;38979:4;38976:1;38969:15;38996:117;39105:1;39102;39095:12;39119:117;39228:1;39225;39218:12;39242:117;39351:1;39348;39341:12;39365:117;39474:1;39471;39464:12;39488:102;39529:6;39580:2;39576:7;39571:2;39564:5;39560:14;39556:28;39546:38;;39488:102;;;:::o;39596:221::-;39736:34;39732:1;39724:6;39720:14;39713:58;39805:4;39800:2;39792:6;39788:15;39781:29;39596:221;:::o;39823:168::-;39963:20;39959:1;39951:6;39947:14;39940:44;39823:168;:::o;39997:225::-;40137:34;40133:1;40125:6;40121:14;40114:58;40206:8;40201:2;40193:6;40189:15;40182:33;39997:225;:::o;40228:161::-;40368:13;40364:1;40356:6;40352:14;40345:37;40228:161;:::o;40395:229::-;40535:34;40531:1;40523:6;40519:14;40512:58;40604:12;40599:2;40591:6;40587:15;40580:37;40395:229;:::o;40630:222::-;40770:34;40766:1;40758:6;40754:14;40747:58;40839:5;40834:2;40826:6;40822:15;40815:30;40630:222;:::o;40858:224::-;40998:34;40994:1;40986:6;40982:14;40975:58;41067:7;41062:2;41054:6;41050:15;41043:32;40858:224;:::o;41088:223::-;41228:34;41224:1;41216:6;41212:14;41205:58;41297:6;41292:2;41284:6;41280:15;41273:31;41088:223;:::o;41317:244::-;41457:34;41453:1;41445:6;41441:14;41434:58;41526:27;41521:2;41513:6;41509:15;41502:52;41317:244;:::o;41567:230::-;41707:34;41703:1;41695:6;41691:14;41684:58;41776:13;41771:2;41763:6;41759:15;41752:38;41567:230;:::o;41803:225::-;41943:34;41939:1;41931:6;41927:14;41920:58;42012:8;42007:2;41999:6;41995:15;41988:33;41803:225;:::o;42034:155::-;42174:7;42170:1;42162:6;42158:14;42151:31;42034:155;:::o;42195:182::-;42335:34;42331:1;42323:6;42319:14;42312:58;42195:182;:::o;42383:173::-;42523:25;42519:1;42511:6;42507:14;42500:49;42383:173;:::o;42562:234::-;42702:34;42698:1;42690:6;42686:14;42679:58;42771:17;42766:2;42758:6;42754:15;42747:42;42562:234;:::o;42802:176::-;42942:28;42938:1;42930:6;42926:14;42919:52;42802:176;:::o;42984:237::-;43124:34;43120:1;43112:6;43108:14;43101:58;43193:20;43188:2;43180:6;43176:15;43169:45;42984:237;:::o;43227:221::-;43367:34;43363:1;43355:6;43351:14;43344:58;43436:4;43431:2;43423:6;43419:15;43412:29;43227:221;:::o;43454:114::-;;:::o;43574:166::-;43714:18;43710:1;43702:6;43698:14;43691:42;43574:166;:::o;43746:238::-;43886:34;43882:1;43874:6;43870:14;43863:58;43955:21;43950:2;43942:6;43938:15;43931:46;43746:238;:::o;43990:220::-;44130:34;44126:1;44118:6;44114:14;44107:58;44199:3;44194:2;44186:6;44182:15;44175:28;43990:220;:::o;44216:227::-;44356:34;44352:1;44344:6;44340:14;44333:58;44425:10;44420:2;44412:6;44408:15;44401:35;44216:227;:::o;44449:169::-;44589:21;44585:1;44577:6;44573:14;44566:45;44449:169;:::o;44624:233::-;44764:34;44760:1;44752:6;44748:14;44741:58;44833:16;44828:2;44820:6;44816:15;44809:41;44624:233;:::o;44863:181::-;45003:33;44999:1;44991:6;44987:14;44980:57;44863:181;:::o;45050:234::-;45190:34;45186:1;45178:6;45174:14;45167:58;45259:17;45254:2;45246:6;45242:15;45235:42;45050:234;:::o;45290:232::-;45430:34;45426:1;45418:6;45414:14;45407:58;45499:15;45494:2;45486:6;45482:15;45475:40;45290:232;:::o;45528:122::-;45601:24;45619:5;45601:24;:::i;:::-;45594:5;45591:35;45581:63;;45640:1;45637;45630:12;45581:63;45528:122;:::o;45656:116::-;45726:21;45741:5;45726:21;:::i;:::-;45719:5;45716:32;45706:60;;45762:1;45759;45752:12;45706:60;45656:116;:::o;45778:120::-;45850:23;45867:5;45850:23;:::i;:::-;45843:5;45840:34;45830:62;;45888:1;45885;45878:12;45830:62;45778:120;:::o;45904:122::-;45977:24;45995:5;45977:24;:::i;:::-;45970:5;45967:35;45957:63;;46016:1;46013;46006:12;45957:63;45904:122;:::o

Swarm Source

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