ETH Price: $3,398.48 (-1.44%)
Gas: 2 Gwei

Token

SexGoblinGirl (sGG)
 

Overview

Max Total Supply

8,192 sGG

Holders

2,415

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A

Other Info

Balance
2 sGG
0xaf4d5fbf87ec03b7bcfe50fdcbd4149a758e55b6
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:
SexGoblinGirl

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-06-02
*/

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

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

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

// File: @openzeppelin/contracts/access/Ownable.sol


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

pragma solidity ^0.8.0;


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

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

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

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

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

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

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

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

// File: CESHI1.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 SexGoblinGirl is ERC721A, Ownable, ReentrancyGuard {
    string public baseURI = "ipfs://QmZwfJ2U1pGYpyCiEY48j81QtjkqGKy792SRT6bSZW78ik/";
    uint   public price             = 0.002 ether;
    uint   public maxPerTx          = 20;
    uint   public maxPerFree        = 2;
    uint   public totalFree         = 8192;
    uint   public maxSupply         = 8192;

    mapping(address => uint256) private _mintedFreeAmount;

    constructor() ERC721A("SexGoblinGirl", "sGG"){}

    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] + count <= maxPerFree));

        if (isFree) {
            cost = 0;
            _mintedFreeAmount[msg.sender] += count;
        }

        require(msg.value >= count * cost, "Please send the exact amount.");
        require(totalSupply() + count <= maxSupply, "No more");
        require(count <= maxPerTx, "Max per TX reached.");

        _safeMint(msg.sender, count);
    }

    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 withdraw() external onlyOwner nonReentrant {
        (bool success, ) = msg.sender.call{value: address(this).balance}("");
        require(success, "Transfer failed.");
    }
}

Contract Security Audit

Contract ABI

[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"approved","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"baseURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"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":"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":"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"}]

60806040526040518060600160405280603681526020016200449060369139600990805190602001906200003592919062000201565b5066071afd498d0000600a556014600b556002600c55612000600d55612000600e553480156200006457600080fd5b506040518060400160405280600d81526020017f536578476f626c696e4769726c000000000000000000000000000000000000008152506040518060400160405280600381526020017f73474700000000000000000000000000000000000000000000000000000000008152508160019080519060200190620000e992919062000201565b5080600290805190602001906200010292919062000201565b50505062000125620001196200013360201b60201c565b6200013b60201b60201c565b600160088190555062000316565b600033905090565b6000600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600760006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b8280546200020f90620002b1565b90600052602060002090601f0160209004810192826200023357600085556200027f565b82601f106200024e57805160ff19168380011785556200027f565b828001600101855582156200027f579182015b828111156200027e57825182559160200191906001019062000261565b5b5090506200028e919062000292565b5090565b5b80821115620002ad57600081600090555060010162000293565b5090565b60006002820490506001821680620002ca57607f821691505b60208210811415620002e157620002e0620002e7565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b61416a80620003266000396000f3fe6080604052600436106101c25760003560e01c8063715018a6116100f7578063a22cb46511610095578063d5abeb0111610064578063d5abeb0114610633578063e985e9c51461065e578063f2fde38b1461069b578063f968adbe146106c4576101c2565b8063a22cb46514610579578063b88d4fde146105a2578063c7c39ffc146105cb578063c87b56dd146105f6576101c2565b806395d89b41116100d157806395d89b41146104de578063a035b1fe14610509578063a0712d6814610534578063a0bcfc7f14610550576101c2565b8063715018a6146104735780638da5cb5b1461048a57806391b7f5ed146104b5576101c2565b8063333e44e6116101645780634f6ccce71161013e5780634f6ccce7146103915780636352211e146103ce5780636c0360eb1461040b57806370a0823114610436576101c2565b8063333e44e6146103265780633ccfd60b1461035157806342842e0e14610368576101c2565b8063095ea7b3116101a0578063095ea7b31461026c57806318160ddd1461029557806323b872dd146102c05780632f745c59146102e9576101c2565b806301ffc9a7146101c757806306fdde0314610204578063081812fc1461022f575b600080fd5b3480156101d357600080fd5b506101ee60048036038101906101e99190612c90565b6106ef565b6040516101fb9190613269565b60405180910390f35b34801561021057600080fd5b50610219610839565b6040516102269190613284565b60405180910390f35b34801561023b57600080fd5b5061025660048036038101906102519190612d33565b6108cb565b6040516102639190613202565b60405180910390f35b34801561027857600080fd5b50610293600480360381019061028e9190612c50565b610950565b005b3480156102a157600080fd5b506102aa610a69565b6040516102b791906135a6565b60405180910390f35b3480156102cc57600080fd5b506102e760048036038101906102e29190612b3a565b610a72565b005b3480156102f557600080fd5b50610310600480360381019061030b9190612c50565b610a82565b60405161031d91906135a6565b60405180910390f35b34801561033257600080fd5b5061033b610c74565b60405161034891906135a6565b60405180910390f35b34801561035d57600080fd5b50610366610c7a565b005b34801561037457600080fd5b5061038f600480360381019061038a9190612b3a565b610dfb565b005b34801561039d57600080fd5b506103b860048036038101906103b39190612d33565b610e1b565b6040516103c591906135a6565b60405180910390f35b3480156103da57600080fd5b506103f560048036038101906103f09190612d33565b610e6e565b6040516104029190613202565b60405180910390f35b34801561041757600080fd5b50610420610e84565b60405161042d9190613284565b60405180910390f35b34801561044257600080fd5b5061045d60048036038101906104589190612acd565b610f12565b60405161046a91906135a6565b60405180910390f35b34801561047f57600080fd5b50610488610ffb565b005b34801561049657600080fd5b5061049f611083565b6040516104ac9190613202565b60405180910390f35b3480156104c157600080fd5b506104dc60048036038101906104d79190612d33565b6110ad565b005b3480156104ea57600080fd5b506104f3611133565b6040516105009190613284565b60405180910390f35b34801561051557600080fd5b5061051e6111c5565b60405161052b91906135a6565b60405180910390f35b61054e60048036038101906105499190612d33565b6111cb565b005b34801561055c57600080fd5b5061057760048036038101906105729190612cea565b6113ab565b005b34801561058557600080fd5b506105a0600480360381019061059b9190612c10565b611441565b005b3480156105ae57600080fd5b506105c960048036038101906105c49190612b8d565b6115c2565b005b3480156105d757600080fd5b506105e061161e565b6040516105ed91906135a6565b60405180910390f35b34801561060257600080fd5b5061061d60048036038101906106189190612d33565b611624565b60405161062a9190613284565b60405180910390f35b34801561063f57600080fd5b506106486116d7565b60405161065591906135a6565b60405180910390f35b34801561066a57600080fd5b5061068560048036038101906106809190612afa565b6116dd565b6040516106929190613269565b60405180910390f35b3480156106a757600080fd5b506106c260048036038101906106bd9190612acd565b611771565b005b3480156106d057600080fd5b506106d9611869565b6040516106e691906135a6565b60405180910390f35b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614806107ba57507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b8061082257507f780e9d63000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b8061083257506108318261186f565b5b9050919050565b60606001805461084890613861565b80601f016020809104026020016040519081016040528092919081815260200182805461087490613861565b80156108c15780601f10610896576101008083540402835291602001916108c1565b820191906000526020600020905b8154815290600101906020018083116108a457829003601f168201915b5050505050905090565b60006108d6826118d9565b610915576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161090c90613586565b60405180910390fd5b6005600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b600061095b82610e6e565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614156109cc576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016109c390613466565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff166109eb6118e6565b73ffffffffffffffffffffffffffffffffffffffff161480610a1a5750610a1981610a146118e6565b6116dd565b5b610a59576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a5090613366565b60405180910390fd5b610a648383836118ee565b505050565b60008054905090565b610a7d8383836119a0565b505050565b6000610a8d83610f12565b8210610ace576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ac5906132a6565b60405180910390fd5b6000610ad8610a69565b905060008060005b83811015610c32576000600360008381526020019081526020016000206040518060400160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815250509050600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff1614610bd257806000015192505b8773ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610c245786841415610c1b578195505050505050610c6e565b83806001019450505b508080600101915050610ae0565b506040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c6590613526565b60405180910390fd5b92915050565b600d5481565b610c826118e6565b73ffffffffffffffffffffffffffffffffffffffff16610ca0611083565b73ffffffffffffffffffffffffffffffffffffffff1614610cf6576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ced906133c6565b60405180910390fd5b60026008541415610d3c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d3390613546565b60405180910390fd5b600260088190555060003373ffffffffffffffffffffffffffffffffffffffff1647604051610d6a906131ed565b60006040518083038185875af1925050503d8060008114610da7576040519150601f19603f3d011682016040523d82523d6000602084013e610dac565b606091505b5050905080610df0576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610de790613486565b60405180910390fd5b506001600881905550565b610e16838383604051806020016040528060008152506115c2565b505050565b6000610e25610a69565b8210610e66576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e5d90613326565b60405180910390fd5b819050919050565b6000610e7982611ee0565b600001519050919050565b60098054610e9190613861565b80601f0160208091040260200160405190810160405280929190818152602001828054610ebd90613861565b8015610f0a5780601f10610edf57610100808354040283529160200191610f0a565b820191906000526020600020905b815481529060010190602001808311610eed57829003601f168201915b505050505081565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415610f83576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f7a90613386565b60405180910390fd5b600460008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160009054906101000a90046fffffffffffffffffffffffffffffffff166fffffffffffffffffffffffffffffffff169050919050565b6110036118e6565b73ffffffffffffffffffffffffffffffffffffffff16611021611083565b73ffffffffffffffffffffffffffffffffffffffff1614611077576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161106e906133c6565b60405180910390fd5b611081600061207a565b565b6000600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b6110b56118e6565b73ffffffffffffffffffffffffffffffffffffffff166110d3611083565b73ffffffffffffffffffffffffffffffffffffffff1614611129576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611120906133c6565b60405180910390fd5b80600a8190555050565b60606002805461114290613861565b80601f016020809104026020016040519081016040528092919081815260200182805461116e90613861565b80156111bb5780601f10611190576101008083540402835291602001916111bb565b820191906000526020600020905b81548152906001019060200180831161119e57829003601f168201915b5050505050905090565b600a5481565b6000600a54905060006001600d546111e39190613696565b836111ec610a69565b6111f69190613696565b10801561124f5750600c5483600f60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205461124c9190613696565b11155b905080156112b2576000915082600f60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546112aa9190613696565b925050819055505b81836112be919061371d565b341015611300576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112f790613446565b60405180910390fd5b600e548361130c610a69565b6113169190613696565b1115611357576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161134e906132c6565b60405180910390fd5b600b5483111561139c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161139390613506565b60405180910390fd5b6113a63384612140565b505050565b6113b36118e6565b73ffffffffffffffffffffffffffffffffffffffff166113d1611083565b73ffffffffffffffffffffffffffffffffffffffff1614611427576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161141e906133c6565b60405180910390fd5b806009908051906020019061143d9291906128a7565b5050565b6114496118e6565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156114b7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114ae90613406565b60405180910390fd5b80600660006114c46118e6565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff166115716118e6565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31836040516115b69190613269565b60405180910390a35050565b6115cd8484846119a0565b6115d98484848461215e565b611618576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161160f906134a6565b60405180910390fd5b50505050565b600c5481565b606061162f826118d9565b61166e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611665906133e6565b60405180910390fd5b60006116786122f5565b9050600081511161169857604051806020016040528060008152506116cf565b806116ae6001856116a99190613696565b612387565b6040516020016116bf9291906131be565b6040516020818303038152906040525b915050919050565b600e5481565b6000600660008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b6117796118e6565b73ffffffffffffffffffffffffffffffffffffffff16611797611083565b73ffffffffffffffffffffffffffffffffffffffff16146117ed576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117e4906133c6565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16141561185d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611854906132e6565b60405180910390fd5b6118668161207a565b50565b600b5481565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b6000805482109050919050565b600033905090565b826005600084815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b60006119ab82611ee0565b90506000816000015173ffffffffffffffffffffffffffffffffffffffff166119d26118e6565b73ffffffffffffffffffffffffffffffffffffffff161480611a2e57506119f76118e6565b73ffffffffffffffffffffffffffffffffffffffff16611a16846108cb565b73ffffffffffffffffffffffffffffffffffffffff16145b80611a4a5750611a498260000151611a446118e6565b6116dd565b5b905080611a8c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a8390613426565b60405180910390fd5b8473ffffffffffffffffffffffffffffffffffffffff16826000015173ffffffffffffffffffffffffffffffffffffffff1614611afe576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611af5906133a6565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161415611b6e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b6590613346565b60405180910390fd5b611b7b85858560016124e8565b611b8b60008484600001516118ee565b6001600460008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a90046fffffffffffffffffffffffffffffffff160392506101000a8154816fffffffffffffffffffffffffffffffff02191690836fffffffffffffffffffffffffffffffff1602179055506001600460008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a90046fffffffffffffffffffffffffffffffff160192506101000a8154816fffffffffffffffffffffffffffffffff02191690836fffffffffffffffffffffffffffffffff160217905550836003600085815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550426003600085815260200190815260200160002060000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055506000600184019050600073ffffffffffffffffffffffffffffffffffffffff166003600083815260200190815260200160002060000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff161415611e7057611dcf816118d9565b15611e6f5782600001516003600083815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555082602001516003600083815260200190815260200160002060000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055505b5b50828473ffffffffffffffffffffffffffffffffffffffff168673ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4611ed985858560016124ee565b5050505050565b611ee861292d565b611ef1826118d9565b611f30576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f2790613306565b60405180910390fd5b60008290505b60008110612039576000600360008381526020019081526020016000206040518060400160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815250509050600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff161461202a578092505050612075565b50808060019003915050611f36565b506040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161206c90613566565b60405180910390fd5b919050565b6000600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600760006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b61215a8282604051806020016040528060008152506124f4565b5050565b600061217f8473ffffffffffffffffffffffffffffffffffffffff16612506565b156122e8578373ffffffffffffffffffffffffffffffffffffffff1663150b7a026121a86118e6565b8786866040518563ffffffff1660e01b81526004016121ca949392919061321d565b602060405180830381600087803b1580156121e457600080fd5b505af192505050801561221557506040513d601f19601f820116820180604052508101906122129190612cbd565b60015b612298573d8060008114612245576040519150601f19603f3d011682016040523d82523d6000602084013e61224a565b606091505b50600081511415612290576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612287906134a6565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149150506122ed565b600190505b949350505050565b60606009805461230490613861565b80601f016020809104026020016040519081016040528092919081815260200182805461233090613861565b801561237d5780601f106123525761010080835404028352916020019161237d565b820191906000526020600020905b81548152906001019060200180831161236057829003601f168201915b5050505050905090565b606060008214156123cf576040518060400160405280600181526020017f300000000000000000000000000000000000000000000000000000000000000081525090506124e3565b600082905060005b600082146124015780806123ea906138c4565b915050600a826123fa91906136ec565b91506123d7565b60008167ffffffffffffffff81111561241d5761241c6139fa565b5b6040519080825280601f01601f19166020018201604052801561244f5781602001600182028036833780820191505090505b5090505b600085146124dc576001826124689190613777565b9150600a85612477919061390d565b60306124839190613696565b60f81b818381518110612499576124986139cb565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a856124d591906136ec565b9450612453565b8093505050505b919050565b50505050565b50505050565b6125018383836001612529565b505050565b6000808273ffffffffffffffffffffffffffffffffffffffff163b119050919050565b600080549050600073ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff16141561259f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612596906134c6565b60405180910390fd5b60008414156125e3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016125da906134e6565b60405180910390fd5b6125f060008683876124e8565b83600460008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a90046fffffffffffffffffffffffffffffffff160192506101000a8154816fffffffffffffffffffffffffffffffff02191690836fffffffffffffffffffffffffffffffff16021790555083600460008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160108282829054906101000a90046fffffffffffffffffffffffffffffffff160192506101000a8154816fffffffffffffffffffffffffffffffff02191690836fffffffffffffffffffffffffffffffff160217905550846003600083815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550426003600083815260200190815260200160002060000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff160217905550600081905060005b8581101561288a57818773ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4831561287557612835600088848861215e565b612874576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161286b906134a6565b60405180910390fd5b5b818060010192505080806001019150506127be565b5080600081905550506128a060008683876124ee565b5050505050565b8280546128b390613861565b90600052602060002090601f0160209004810192826128d5576000855561291c565b82601f106128ee57805160ff191683800117855561291c565b8280016001018555821561291c579182015b8281111561291b578251825591602001919060010190612900565b5b5090506129299190612967565b5090565b6040518060400160405280600073ffffffffffffffffffffffffffffffffffffffff168152602001600067ffffffffffffffff1681525090565b5b80821115612980576000816000905550600101612968565b5090565b6000612997612992846135e6565b6135c1565b9050828152602081018484840111156129b3576129b2613a2e565b5b6129be84828561381f565b509392505050565b60006129d96129d484613617565b6135c1565b9050828152602081018484840111156129f5576129f4613a2e565b5b612a0084828561381f565b509392505050565b600081359050612a17816140d8565b92915050565b600081359050612a2c816140ef565b92915050565b600081359050612a4181614106565b92915050565b600081519050612a5681614106565b92915050565b600082601f830112612a7157612a70613a29565b5b8135612a81848260208601612984565b91505092915050565b600082601f830112612a9f57612a9e613a29565b5b8135612aaf8482602086016129c6565b91505092915050565b600081359050612ac78161411d565b92915050565b600060208284031215612ae357612ae2613a38565b5b6000612af184828501612a08565b91505092915050565b60008060408385031215612b1157612b10613a38565b5b6000612b1f85828601612a08565b9250506020612b3085828601612a08565b9150509250929050565b600080600060608486031215612b5357612b52613a38565b5b6000612b6186828701612a08565b9350506020612b7286828701612a08565b9250506040612b8386828701612ab8565b9150509250925092565b60008060008060808587031215612ba757612ba6613a38565b5b6000612bb587828801612a08565b9450506020612bc687828801612a08565b9350506040612bd787828801612ab8565b925050606085013567ffffffffffffffff811115612bf857612bf7613a33565b5b612c0487828801612a5c565b91505092959194509250565b60008060408385031215612c2757612c26613a38565b5b6000612c3585828601612a08565b9250506020612c4685828601612a1d565b9150509250929050565b60008060408385031215612c6757612c66613a38565b5b6000612c7585828601612a08565b9250506020612c8685828601612ab8565b9150509250929050565b600060208284031215612ca657612ca5613a38565b5b6000612cb484828501612a32565b91505092915050565b600060208284031215612cd357612cd2613a38565b5b6000612ce184828501612a47565b91505092915050565b600060208284031215612d0057612cff613a38565b5b600082013567ffffffffffffffff811115612d1e57612d1d613a33565b5b612d2a84828501612a8a565b91505092915050565b600060208284031215612d4957612d48613a38565b5b6000612d5784828501612ab8565b91505092915050565b612d69816137ab565b82525050565b612d78816137bd565b82525050565b6000612d8982613648565b612d93818561365e565b9350612da381856020860161382e565b612dac81613a3d565b840191505092915050565b6000612dc282613653565b612dcc818561367a565b9350612ddc81856020860161382e565b612de581613a3d565b840191505092915050565b6000612dfb82613653565b612e05818561368b565b9350612e1581856020860161382e565b80840191505092915050565b6000612e2e60228361367a565b9150612e3982613a4e565b604082019050919050565b6000612e5160078361367a565b9150612e5c82613a9d565b602082019050919050565b6000612e7460268361367a565b9150612e7f82613ac6565b604082019050919050565b6000612e97602a8361367a565b9150612ea282613b15565b604082019050919050565b6000612eba60238361367a565b9150612ec582613b64565b604082019050919050565b6000612edd60258361367a565b9150612ee882613bb3565b604082019050919050565b6000612f0060398361367a565b9150612f0b82613c02565b604082019050919050565b6000612f23602b8361367a565b9150612f2e82613c51565b604082019050919050565b6000612f4660268361367a565b9150612f5182613ca0565b604082019050919050565b6000612f6960058361368b565b9150612f7482613cef565b600582019050919050565b6000612f8c60208361367a565b9150612f9782613d18565b602082019050919050565b6000612faf602f8361367a565b9150612fba82613d41565b604082019050919050565b6000612fd2601a8361367a565b9150612fdd82613d90565b602082019050919050565b6000612ff560328361367a565b915061300082613db9565b604082019050919050565b6000613018601d8361367a565b915061302382613e08565b602082019050919050565b600061303b60228361367a565b915061304682613e31565b604082019050919050565b600061305e60008361366f565b915061306982613e80565b600082019050919050565b600061308160108361367a565b915061308c82613e83565b602082019050919050565b60006130a460338361367a565b91506130af82613eac565b604082019050919050565b60006130c760218361367a565b91506130d282613efb565b604082019050919050565b60006130ea60288361367a565b91506130f582613f4a565b604082019050919050565b600061310d60138361367a565b915061311882613f99565b602082019050919050565b6000613130602e8361367a565b915061313b82613fc2565b604082019050919050565b6000613153601f8361367a565b915061315e82614011565b602082019050919050565b6000613176602f8361367a565b91506131818261403a565b604082019050919050565b6000613199602d8361367a565b91506131a482614089565b604082019050919050565b6131b881613815565b82525050565b60006131ca8285612df0565b91506131d68284612df0565b91506131e182612f5c565b91508190509392505050565b60006131f882613051565b9150819050919050565b60006020820190506132176000830184612d60565b92915050565b60006080820190506132326000830187612d60565b61323f6020830186612d60565b61324c60408301856131af565b818103606083015261325e8184612d7e565b905095945050505050565b600060208201905061327e6000830184612d6f565b92915050565b6000602082019050818103600083015261329e8184612db7565b905092915050565b600060208201905081810360008301526132bf81612e21565b9050919050565b600060208201905081810360008301526132df81612e44565b9050919050565b600060208201905081810360008301526132ff81612e67565b9050919050565b6000602082019050818103600083015261331f81612e8a565b9050919050565b6000602082019050818103600083015261333f81612ead565b9050919050565b6000602082019050818103600083015261335f81612ed0565b9050919050565b6000602082019050818103600083015261337f81612ef3565b9050919050565b6000602082019050818103600083015261339f81612f16565b9050919050565b600060208201905081810360008301526133bf81612f39565b9050919050565b600060208201905081810360008301526133df81612f7f565b9050919050565b600060208201905081810360008301526133ff81612fa2565b9050919050565b6000602082019050818103600083015261341f81612fc5565b9050919050565b6000602082019050818103600083015261343f81612fe8565b9050919050565b6000602082019050818103600083015261345f8161300b565b9050919050565b6000602082019050818103600083015261347f8161302e565b9050919050565b6000602082019050818103600083015261349f81613074565b9050919050565b600060208201905081810360008301526134bf81613097565b9050919050565b600060208201905081810360008301526134df816130ba565b9050919050565b600060208201905081810360008301526134ff816130dd565b9050919050565b6000602082019050818103600083015261351f81613100565b9050919050565b6000602082019050818103600083015261353f81613123565b9050919050565b6000602082019050818103600083015261355f81613146565b9050919050565b6000602082019050818103600083015261357f81613169565b9050919050565b6000602082019050818103600083015261359f8161318c565b9050919050565b60006020820190506135bb60008301846131af565b92915050565b60006135cb6135dc565b90506135d78282613893565b919050565b6000604051905090565b600067ffffffffffffffff821115613601576136006139fa565b5b61360a82613a3d565b9050602081019050919050565b600067ffffffffffffffff821115613632576136316139fa565b5b61363b82613a3d565b9050602081019050919050565b600081519050919050565b600081519050919050565b600082825260208201905092915050565b600081905092915050565b600082825260208201905092915050565b600081905092915050565b60006136a182613815565b91506136ac83613815565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff038211156136e1576136e061393e565b5b828201905092915050565b60006136f782613815565b915061370283613815565b9250826137125761371161396d565b5b828204905092915050565b600061372882613815565b915061373383613815565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff048311821515161561376c5761376b61393e565b5b828202905092915050565b600061378282613815565b915061378d83613815565b9250828210156137a05761379f61393e565b5b828203905092915050565b60006137b6826137f5565b9050919050565b60008115159050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b82818337600083830152505050565b60005b8381101561384c578082015181840152602081019050613831565b8381111561385b576000848401525b50505050565b6000600282049050600182168061387957607f821691505b6020821081141561388d5761388c61399c565b5b50919050565b61389c82613a3d565b810181811067ffffffffffffffff821117156138bb576138ba6139fa565b5b80604052505050565b60006138cf82613815565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8214156139025761390161393e565b5b600182019050919050565b600061391882613815565b915061392383613815565b9250826139335761393261396d565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b7f455243373231413a206f776e657220696e646578206f7574206f6620626f756e60008201527f6473000000000000000000000000000000000000000000000000000000000000602082015250565b7f4e6f206d6f726500000000000000000000000000000000000000000000000000600082015250565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f455243373231413a206f776e657220717565727920666f72206e6f6e6578697360008201527f74656e7420746f6b656e00000000000000000000000000000000000000000000602082015250565b7f455243373231413a20676c6f62616c20696e646578206f7574206f6620626f7560008201527f6e64730000000000000000000000000000000000000000000000000000000000602082015250565b7f455243373231413a207472616e7366657220746f20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b7f455243373231413a20617070726f76652063616c6c6572206973206e6f74206f60008201527f776e6572206e6f7220617070726f76656420666f7220616c6c00000000000000602082015250565b7f455243373231413a2062616c616e636520717565727920666f7220746865207a60008201527f65726f2061646472657373000000000000000000000000000000000000000000602082015250565b7f455243373231413a207472616e736665722066726f6d20696e636f727265637460008201527f206f776e65720000000000000000000000000000000000000000000000000000602082015250565b7f2e6a736f6e000000000000000000000000000000000000000000000000000000600082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008201527f6e6578697374656e7420746f6b656e0000000000000000000000000000000000602082015250565b7f455243373231413a20617070726f766520746f2063616c6c6572000000000000600082015250565b7f455243373231413a207472616e736665722063616c6c6572206973206e6f742060008201527f6f776e6572206e6f7220617070726f7665640000000000000000000000000000602082015250565b7f506c656173652073656e642074686520657861637420616d6f756e742e000000600082015250565b7f455243373231413a20617070726f76616c20746f2063757272656e74206f776e60008201527f6572000000000000000000000000000000000000000000000000000000000000602082015250565b50565b7f5472616e73666572206661696c65642e00000000000000000000000000000000600082015250565b7f455243373231413a207472616e7366657220746f206e6f6e204552433732315260008201527f6563656976657220696d706c656d656e74657200000000000000000000000000602082015250565b7f455243373231413a206d696e7420746f20746865207a65726f2061646472657360008201527f7300000000000000000000000000000000000000000000000000000000000000602082015250565b7f455243373231413a207175616e74697479206d7573742062652067726561746560008201527f72207468616e2030000000000000000000000000000000000000000000000000602082015250565b7f4d61782070657220545820726561636865642e00000000000000000000000000600082015250565b7f455243373231413a20756e61626c6520746f2067657420746f6b656e206f662060008201527f6f776e657220627920696e646578000000000000000000000000000000000000602082015250565b7f5265656e7472616e637947756172643a207265656e7472616e742063616c6c00600082015250565b7f455243373231413a20756e61626c6520746f2064657465726d696e652074686560008201527f206f776e6572206f6620746f6b656e0000000000000000000000000000000000602082015250565b7f455243373231413a20617070726f76656420717565727920666f72206e6f6e6560008201527f78697374656e7420746f6b656e00000000000000000000000000000000000000602082015250565b6140e1816137ab565b81146140ec57600080fd5b50565b6140f8816137bd565b811461410357600080fd5b50565b61410f816137c9565b811461411a57600080fd5b50565b61412681613815565b811461413157600080fd5b5056fea2646970667358221220f205261dbed96db8dda02252bae7465d415ef0b497a84ad6bfcdf2cf01a4f6fe64736f6c63430008070033697066733a2f2f516d5a77664a32553170475970794369455934386a383151746a6b71474b793739325352543662535a573738696b2f

Deployed Bytecode

0x6080604052600436106101c25760003560e01c8063715018a6116100f7578063a22cb46511610095578063d5abeb0111610064578063d5abeb0114610633578063e985e9c51461065e578063f2fde38b1461069b578063f968adbe146106c4576101c2565b8063a22cb46514610579578063b88d4fde146105a2578063c7c39ffc146105cb578063c87b56dd146105f6576101c2565b806395d89b41116100d157806395d89b41146104de578063a035b1fe14610509578063a0712d6814610534578063a0bcfc7f14610550576101c2565b8063715018a6146104735780638da5cb5b1461048a57806391b7f5ed146104b5576101c2565b8063333e44e6116101645780634f6ccce71161013e5780634f6ccce7146103915780636352211e146103ce5780636c0360eb1461040b57806370a0823114610436576101c2565b8063333e44e6146103265780633ccfd60b1461035157806342842e0e14610368576101c2565b8063095ea7b3116101a0578063095ea7b31461026c57806318160ddd1461029557806323b872dd146102c05780632f745c59146102e9576101c2565b806301ffc9a7146101c757806306fdde0314610204578063081812fc1461022f575b600080fd5b3480156101d357600080fd5b506101ee60048036038101906101e99190612c90565b6106ef565b6040516101fb9190613269565b60405180910390f35b34801561021057600080fd5b50610219610839565b6040516102269190613284565b60405180910390f35b34801561023b57600080fd5b5061025660048036038101906102519190612d33565b6108cb565b6040516102639190613202565b60405180910390f35b34801561027857600080fd5b50610293600480360381019061028e9190612c50565b610950565b005b3480156102a157600080fd5b506102aa610a69565b6040516102b791906135a6565b60405180910390f35b3480156102cc57600080fd5b506102e760048036038101906102e29190612b3a565b610a72565b005b3480156102f557600080fd5b50610310600480360381019061030b9190612c50565b610a82565b60405161031d91906135a6565b60405180910390f35b34801561033257600080fd5b5061033b610c74565b60405161034891906135a6565b60405180910390f35b34801561035d57600080fd5b50610366610c7a565b005b34801561037457600080fd5b5061038f600480360381019061038a9190612b3a565b610dfb565b005b34801561039d57600080fd5b506103b860048036038101906103b39190612d33565b610e1b565b6040516103c591906135a6565b60405180910390f35b3480156103da57600080fd5b506103f560048036038101906103f09190612d33565b610e6e565b6040516104029190613202565b60405180910390f35b34801561041757600080fd5b50610420610e84565b60405161042d9190613284565b60405180910390f35b34801561044257600080fd5b5061045d60048036038101906104589190612acd565b610f12565b60405161046a91906135a6565b60405180910390f35b34801561047f57600080fd5b50610488610ffb565b005b34801561049657600080fd5b5061049f611083565b6040516104ac9190613202565b60405180910390f35b3480156104c157600080fd5b506104dc60048036038101906104d79190612d33565b6110ad565b005b3480156104ea57600080fd5b506104f3611133565b6040516105009190613284565b60405180910390f35b34801561051557600080fd5b5061051e6111c5565b60405161052b91906135a6565b60405180910390f35b61054e60048036038101906105499190612d33565b6111cb565b005b34801561055c57600080fd5b5061057760048036038101906105729190612cea565b6113ab565b005b34801561058557600080fd5b506105a0600480360381019061059b9190612c10565b611441565b005b3480156105ae57600080fd5b506105c960048036038101906105c49190612b8d565b6115c2565b005b3480156105d757600080fd5b506105e061161e565b6040516105ed91906135a6565b60405180910390f35b34801561060257600080fd5b5061061d60048036038101906106189190612d33565b611624565b60405161062a9190613284565b60405180910390f35b34801561063f57600080fd5b506106486116d7565b60405161065591906135a6565b60405180910390f35b34801561066a57600080fd5b5061068560048036038101906106809190612afa565b6116dd565b6040516106929190613269565b60405180910390f35b3480156106a757600080fd5b506106c260048036038101906106bd9190612acd565b611771565b005b3480156106d057600080fd5b506106d9611869565b6040516106e691906135a6565b60405180910390f35b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614806107ba57507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b8061082257507f780e9d63000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b8061083257506108318261186f565b5b9050919050565b60606001805461084890613861565b80601f016020809104026020016040519081016040528092919081815260200182805461087490613861565b80156108c15780601f10610896576101008083540402835291602001916108c1565b820191906000526020600020905b8154815290600101906020018083116108a457829003601f168201915b5050505050905090565b60006108d6826118d9565b610915576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161090c90613586565b60405180910390fd5b6005600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b600061095b82610e6e565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614156109cc576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016109c390613466565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff166109eb6118e6565b73ffffffffffffffffffffffffffffffffffffffff161480610a1a5750610a1981610a146118e6565b6116dd565b5b610a59576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a5090613366565b60405180910390fd5b610a648383836118ee565b505050565b60008054905090565b610a7d8383836119a0565b505050565b6000610a8d83610f12565b8210610ace576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ac5906132a6565b60405180910390fd5b6000610ad8610a69565b905060008060005b83811015610c32576000600360008381526020019081526020016000206040518060400160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815250509050600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff1614610bd257806000015192505b8773ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610c245786841415610c1b578195505050505050610c6e565b83806001019450505b508080600101915050610ae0565b506040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c6590613526565b60405180910390fd5b92915050565b600d5481565b610c826118e6565b73ffffffffffffffffffffffffffffffffffffffff16610ca0611083565b73ffffffffffffffffffffffffffffffffffffffff1614610cf6576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ced906133c6565b60405180910390fd5b60026008541415610d3c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d3390613546565b60405180910390fd5b600260088190555060003373ffffffffffffffffffffffffffffffffffffffff1647604051610d6a906131ed565b60006040518083038185875af1925050503d8060008114610da7576040519150601f19603f3d011682016040523d82523d6000602084013e610dac565b606091505b5050905080610df0576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610de790613486565b60405180910390fd5b506001600881905550565b610e16838383604051806020016040528060008152506115c2565b505050565b6000610e25610a69565b8210610e66576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e5d90613326565b60405180910390fd5b819050919050565b6000610e7982611ee0565b600001519050919050565b60098054610e9190613861565b80601f0160208091040260200160405190810160405280929190818152602001828054610ebd90613861565b8015610f0a5780601f10610edf57610100808354040283529160200191610f0a565b820191906000526020600020905b815481529060010190602001808311610eed57829003601f168201915b505050505081565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415610f83576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f7a90613386565b60405180910390fd5b600460008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160009054906101000a90046fffffffffffffffffffffffffffffffff166fffffffffffffffffffffffffffffffff169050919050565b6110036118e6565b73ffffffffffffffffffffffffffffffffffffffff16611021611083565b73ffffffffffffffffffffffffffffffffffffffff1614611077576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161106e906133c6565b60405180910390fd5b611081600061207a565b565b6000600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b6110b56118e6565b73ffffffffffffffffffffffffffffffffffffffff166110d3611083565b73ffffffffffffffffffffffffffffffffffffffff1614611129576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611120906133c6565b60405180910390fd5b80600a8190555050565b60606002805461114290613861565b80601f016020809104026020016040519081016040528092919081815260200182805461116e90613861565b80156111bb5780601f10611190576101008083540402835291602001916111bb565b820191906000526020600020905b81548152906001019060200180831161119e57829003601f168201915b5050505050905090565b600a5481565b6000600a54905060006001600d546111e39190613696565b836111ec610a69565b6111f69190613696565b10801561124f5750600c5483600f60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205461124c9190613696565b11155b905080156112b2576000915082600f60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546112aa9190613696565b925050819055505b81836112be919061371d565b341015611300576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112f790613446565b60405180910390fd5b600e548361130c610a69565b6113169190613696565b1115611357576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161134e906132c6565b60405180910390fd5b600b5483111561139c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161139390613506565b60405180910390fd5b6113a63384612140565b505050565b6113b36118e6565b73ffffffffffffffffffffffffffffffffffffffff166113d1611083565b73ffffffffffffffffffffffffffffffffffffffff1614611427576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161141e906133c6565b60405180910390fd5b806009908051906020019061143d9291906128a7565b5050565b6114496118e6565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156114b7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114ae90613406565b60405180910390fd5b80600660006114c46118e6565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff166115716118e6565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31836040516115b69190613269565b60405180910390a35050565b6115cd8484846119a0565b6115d98484848461215e565b611618576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161160f906134a6565b60405180910390fd5b50505050565b600c5481565b606061162f826118d9565b61166e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611665906133e6565b60405180910390fd5b60006116786122f5565b9050600081511161169857604051806020016040528060008152506116cf565b806116ae6001856116a99190613696565b612387565b6040516020016116bf9291906131be565b6040516020818303038152906040525b915050919050565b600e5481565b6000600660008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b6117796118e6565b73ffffffffffffffffffffffffffffffffffffffff16611797611083565b73ffffffffffffffffffffffffffffffffffffffff16146117ed576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117e4906133c6565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16141561185d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611854906132e6565b60405180910390fd5b6118668161207a565b50565b600b5481565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b6000805482109050919050565b600033905090565b826005600084815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b60006119ab82611ee0565b90506000816000015173ffffffffffffffffffffffffffffffffffffffff166119d26118e6565b73ffffffffffffffffffffffffffffffffffffffff161480611a2e57506119f76118e6565b73ffffffffffffffffffffffffffffffffffffffff16611a16846108cb565b73ffffffffffffffffffffffffffffffffffffffff16145b80611a4a5750611a498260000151611a446118e6565b6116dd565b5b905080611a8c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a8390613426565b60405180910390fd5b8473ffffffffffffffffffffffffffffffffffffffff16826000015173ffffffffffffffffffffffffffffffffffffffff1614611afe576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611af5906133a6565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161415611b6e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b6590613346565b60405180910390fd5b611b7b85858560016124e8565b611b8b60008484600001516118ee565b6001600460008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a90046fffffffffffffffffffffffffffffffff160392506101000a8154816fffffffffffffffffffffffffffffffff02191690836fffffffffffffffffffffffffffffffff1602179055506001600460008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a90046fffffffffffffffffffffffffffffffff160192506101000a8154816fffffffffffffffffffffffffffffffff02191690836fffffffffffffffffffffffffffffffff160217905550836003600085815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550426003600085815260200190815260200160002060000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055506000600184019050600073ffffffffffffffffffffffffffffffffffffffff166003600083815260200190815260200160002060000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff161415611e7057611dcf816118d9565b15611e6f5782600001516003600083815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555082602001516003600083815260200190815260200160002060000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055505b5b50828473ffffffffffffffffffffffffffffffffffffffff168673ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4611ed985858560016124ee565b5050505050565b611ee861292d565b611ef1826118d9565b611f30576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f2790613306565b60405180910390fd5b60008290505b60008110612039576000600360008381526020019081526020016000206040518060400160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815250509050600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff161461202a578092505050612075565b50808060019003915050611f36565b506040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161206c90613566565b60405180910390fd5b919050565b6000600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600760006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b61215a8282604051806020016040528060008152506124f4565b5050565b600061217f8473ffffffffffffffffffffffffffffffffffffffff16612506565b156122e8578373ffffffffffffffffffffffffffffffffffffffff1663150b7a026121a86118e6565b8786866040518563ffffffff1660e01b81526004016121ca949392919061321d565b602060405180830381600087803b1580156121e457600080fd5b505af192505050801561221557506040513d601f19601f820116820180604052508101906122129190612cbd565b60015b612298573d8060008114612245576040519150601f19603f3d011682016040523d82523d6000602084013e61224a565b606091505b50600081511415612290576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612287906134a6565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149150506122ed565b600190505b949350505050565b60606009805461230490613861565b80601f016020809104026020016040519081016040528092919081815260200182805461233090613861565b801561237d5780601f106123525761010080835404028352916020019161237d565b820191906000526020600020905b81548152906001019060200180831161236057829003601f168201915b5050505050905090565b606060008214156123cf576040518060400160405280600181526020017f300000000000000000000000000000000000000000000000000000000000000081525090506124e3565b600082905060005b600082146124015780806123ea906138c4565b915050600a826123fa91906136ec565b91506123d7565b60008167ffffffffffffffff81111561241d5761241c6139fa565b5b6040519080825280601f01601f19166020018201604052801561244f5781602001600182028036833780820191505090505b5090505b600085146124dc576001826124689190613777565b9150600a85612477919061390d565b60306124839190613696565b60f81b818381518110612499576124986139cb565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a856124d591906136ec565b9450612453565b8093505050505b919050565b50505050565b50505050565b6125018383836001612529565b505050565b6000808273ffffffffffffffffffffffffffffffffffffffff163b119050919050565b600080549050600073ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff16141561259f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612596906134c6565b60405180910390fd5b60008414156125e3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016125da906134e6565b60405180910390fd5b6125f060008683876124e8565b83600460008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a90046fffffffffffffffffffffffffffffffff160192506101000a8154816fffffffffffffffffffffffffffffffff02191690836fffffffffffffffffffffffffffffffff16021790555083600460008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160108282829054906101000a90046fffffffffffffffffffffffffffffffff160192506101000a8154816fffffffffffffffffffffffffffffffff02191690836fffffffffffffffffffffffffffffffff160217905550846003600083815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550426003600083815260200190815260200160002060000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff160217905550600081905060005b8581101561288a57818773ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4831561287557612835600088848861215e565b612874576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161286b906134a6565b60405180910390fd5b5b818060010192505080806001019150506127be565b5080600081905550506128a060008683876124ee565b5050505050565b8280546128b390613861565b90600052602060002090601f0160209004810192826128d5576000855561291c565b82601f106128ee57805160ff191683800117855561291c565b8280016001018555821561291c579182015b8281111561291b578251825591602001919060010190612900565b5b5090506129299190612967565b5090565b6040518060400160405280600073ffffffffffffffffffffffffffffffffffffffff168152602001600067ffffffffffffffff1681525090565b5b80821115612980576000816000905550600101612968565b5090565b6000612997612992846135e6565b6135c1565b9050828152602081018484840111156129b3576129b2613a2e565b5b6129be84828561381f565b509392505050565b60006129d96129d484613617565b6135c1565b9050828152602081018484840111156129f5576129f4613a2e565b5b612a0084828561381f565b509392505050565b600081359050612a17816140d8565b92915050565b600081359050612a2c816140ef565b92915050565b600081359050612a4181614106565b92915050565b600081519050612a5681614106565b92915050565b600082601f830112612a7157612a70613a29565b5b8135612a81848260208601612984565b91505092915050565b600082601f830112612a9f57612a9e613a29565b5b8135612aaf8482602086016129c6565b91505092915050565b600081359050612ac78161411d565b92915050565b600060208284031215612ae357612ae2613a38565b5b6000612af184828501612a08565b91505092915050565b60008060408385031215612b1157612b10613a38565b5b6000612b1f85828601612a08565b9250506020612b3085828601612a08565b9150509250929050565b600080600060608486031215612b5357612b52613a38565b5b6000612b6186828701612a08565b9350506020612b7286828701612a08565b9250506040612b8386828701612ab8565b9150509250925092565b60008060008060808587031215612ba757612ba6613a38565b5b6000612bb587828801612a08565b9450506020612bc687828801612a08565b9350506040612bd787828801612ab8565b925050606085013567ffffffffffffffff811115612bf857612bf7613a33565b5b612c0487828801612a5c565b91505092959194509250565b60008060408385031215612c2757612c26613a38565b5b6000612c3585828601612a08565b9250506020612c4685828601612a1d565b9150509250929050565b60008060408385031215612c6757612c66613a38565b5b6000612c7585828601612a08565b9250506020612c8685828601612ab8565b9150509250929050565b600060208284031215612ca657612ca5613a38565b5b6000612cb484828501612a32565b91505092915050565b600060208284031215612cd357612cd2613a38565b5b6000612ce184828501612a47565b91505092915050565b600060208284031215612d0057612cff613a38565b5b600082013567ffffffffffffffff811115612d1e57612d1d613a33565b5b612d2a84828501612a8a565b91505092915050565b600060208284031215612d4957612d48613a38565b5b6000612d5784828501612ab8565b91505092915050565b612d69816137ab565b82525050565b612d78816137bd565b82525050565b6000612d8982613648565b612d93818561365e565b9350612da381856020860161382e565b612dac81613a3d565b840191505092915050565b6000612dc282613653565b612dcc818561367a565b9350612ddc81856020860161382e565b612de581613a3d565b840191505092915050565b6000612dfb82613653565b612e05818561368b565b9350612e1581856020860161382e565b80840191505092915050565b6000612e2e60228361367a565b9150612e3982613a4e565b604082019050919050565b6000612e5160078361367a565b9150612e5c82613a9d565b602082019050919050565b6000612e7460268361367a565b9150612e7f82613ac6565b604082019050919050565b6000612e97602a8361367a565b9150612ea282613b15565b604082019050919050565b6000612eba60238361367a565b9150612ec582613b64565b604082019050919050565b6000612edd60258361367a565b9150612ee882613bb3565b604082019050919050565b6000612f0060398361367a565b9150612f0b82613c02565b604082019050919050565b6000612f23602b8361367a565b9150612f2e82613c51565b604082019050919050565b6000612f4660268361367a565b9150612f5182613ca0565b604082019050919050565b6000612f6960058361368b565b9150612f7482613cef565b600582019050919050565b6000612f8c60208361367a565b9150612f9782613d18565b602082019050919050565b6000612faf602f8361367a565b9150612fba82613d41565b604082019050919050565b6000612fd2601a8361367a565b9150612fdd82613d90565b602082019050919050565b6000612ff560328361367a565b915061300082613db9565b604082019050919050565b6000613018601d8361367a565b915061302382613e08565b602082019050919050565b600061303b60228361367a565b915061304682613e31565b604082019050919050565b600061305e60008361366f565b915061306982613e80565b600082019050919050565b600061308160108361367a565b915061308c82613e83565b602082019050919050565b60006130a460338361367a565b91506130af82613eac565b604082019050919050565b60006130c760218361367a565b91506130d282613efb565b604082019050919050565b60006130ea60288361367a565b91506130f582613f4a565b604082019050919050565b600061310d60138361367a565b915061311882613f99565b602082019050919050565b6000613130602e8361367a565b915061313b82613fc2565b604082019050919050565b6000613153601f8361367a565b915061315e82614011565b602082019050919050565b6000613176602f8361367a565b91506131818261403a565b604082019050919050565b6000613199602d8361367a565b91506131a482614089565b604082019050919050565b6131b881613815565b82525050565b60006131ca8285612df0565b91506131d68284612df0565b91506131e182612f5c565b91508190509392505050565b60006131f882613051565b9150819050919050565b60006020820190506132176000830184612d60565b92915050565b60006080820190506132326000830187612d60565b61323f6020830186612d60565b61324c60408301856131af565b818103606083015261325e8184612d7e565b905095945050505050565b600060208201905061327e6000830184612d6f565b92915050565b6000602082019050818103600083015261329e8184612db7565b905092915050565b600060208201905081810360008301526132bf81612e21565b9050919050565b600060208201905081810360008301526132df81612e44565b9050919050565b600060208201905081810360008301526132ff81612e67565b9050919050565b6000602082019050818103600083015261331f81612e8a565b9050919050565b6000602082019050818103600083015261333f81612ead565b9050919050565b6000602082019050818103600083015261335f81612ed0565b9050919050565b6000602082019050818103600083015261337f81612ef3565b9050919050565b6000602082019050818103600083015261339f81612f16565b9050919050565b600060208201905081810360008301526133bf81612f39565b9050919050565b600060208201905081810360008301526133df81612f7f565b9050919050565b600060208201905081810360008301526133ff81612fa2565b9050919050565b6000602082019050818103600083015261341f81612fc5565b9050919050565b6000602082019050818103600083015261343f81612fe8565b9050919050565b6000602082019050818103600083015261345f8161300b565b9050919050565b6000602082019050818103600083015261347f8161302e565b9050919050565b6000602082019050818103600083015261349f81613074565b9050919050565b600060208201905081810360008301526134bf81613097565b9050919050565b600060208201905081810360008301526134df816130ba565b9050919050565b600060208201905081810360008301526134ff816130dd565b9050919050565b6000602082019050818103600083015261351f81613100565b9050919050565b6000602082019050818103600083015261353f81613123565b9050919050565b6000602082019050818103600083015261355f81613146565b9050919050565b6000602082019050818103600083015261357f81613169565b9050919050565b6000602082019050818103600083015261359f8161318c565b9050919050565b60006020820190506135bb60008301846131af565b92915050565b60006135cb6135dc565b90506135d78282613893565b919050565b6000604051905090565b600067ffffffffffffffff821115613601576136006139fa565b5b61360a82613a3d565b9050602081019050919050565b600067ffffffffffffffff821115613632576136316139fa565b5b61363b82613a3d565b9050602081019050919050565b600081519050919050565b600081519050919050565b600082825260208201905092915050565b600081905092915050565b600082825260208201905092915050565b600081905092915050565b60006136a182613815565b91506136ac83613815565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff038211156136e1576136e061393e565b5b828201905092915050565b60006136f782613815565b915061370283613815565b9250826137125761371161396d565b5b828204905092915050565b600061372882613815565b915061373383613815565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff048311821515161561376c5761376b61393e565b5b828202905092915050565b600061378282613815565b915061378d83613815565b9250828210156137a05761379f61393e565b5b828203905092915050565b60006137b6826137f5565b9050919050565b60008115159050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b82818337600083830152505050565b60005b8381101561384c578082015181840152602081019050613831565b8381111561385b576000848401525b50505050565b6000600282049050600182168061387957607f821691505b6020821081141561388d5761388c61399c565b5b50919050565b61389c82613a3d565b810181811067ffffffffffffffff821117156138bb576138ba6139fa565b5b80604052505050565b60006138cf82613815565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8214156139025761390161393e565b5b600182019050919050565b600061391882613815565b915061392383613815565b9250826139335761393261396d565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b7f455243373231413a206f776e657220696e646578206f7574206f6620626f756e60008201527f6473000000000000000000000000000000000000000000000000000000000000602082015250565b7f4e6f206d6f726500000000000000000000000000000000000000000000000000600082015250565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f455243373231413a206f776e657220717565727920666f72206e6f6e6578697360008201527f74656e7420746f6b656e00000000000000000000000000000000000000000000602082015250565b7f455243373231413a20676c6f62616c20696e646578206f7574206f6620626f7560008201527f6e64730000000000000000000000000000000000000000000000000000000000602082015250565b7f455243373231413a207472616e7366657220746f20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b7f455243373231413a20617070726f76652063616c6c6572206973206e6f74206f60008201527f776e6572206e6f7220617070726f76656420666f7220616c6c00000000000000602082015250565b7f455243373231413a2062616c616e636520717565727920666f7220746865207a60008201527f65726f2061646472657373000000000000000000000000000000000000000000602082015250565b7f455243373231413a207472616e736665722066726f6d20696e636f727265637460008201527f206f776e65720000000000000000000000000000000000000000000000000000602082015250565b7f2e6a736f6e000000000000000000000000000000000000000000000000000000600082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008201527f6e6578697374656e7420746f6b656e0000000000000000000000000000000000602082015250565b7f455243373231413a20617070726f766520746f2063616c6c6572000000000000600082015250565b7f455243373231413a207472616e736665722063616c6c6572206973206e6f742060008201527f6f776e6572206e6f7220617070726f7665640000000000000000000000000000602082015250565b7f506c656173652073656e642074686520657861637420616d6f756e742e000000600082015250565b7f455243373231413a20617070726f76616c20746f2063757272656e74206f776e60008201527f6572000000000000000000000000000000000000000000000000000000000000602082015250565b50565b7f5472616e73666572206661696c65642e00000000000000000000000000000000600082015250565b7f455243373231413a207472616e7366657220746f206e6f6e204552433732315260008201527f6563656976657220696d706c656d656e74657200000000000000000000000000602082015250565b7f455243373231413a206d696e7420746f20746865207a65726f2061646472657360008201527f7300000000000000000000000000000000000000000000000000000000000000602082015250565b7f455243373231413a207175616e74697479206d7573742062652067726561746560008201527f72207468616e2030000000000000000000000000000000000000000000000000602082015250565b7f4d61782070657220545820726561636865642e00000000000000000000000000600082015250565b7f455243373231413a20756e61626c6520746f2067657420746f6b656e206f662060008201527f6f776e657220627920696e646578000000000000000000000000000000000000602082015250565b7f5265656e7472616e637947756172643a207265656e7472616e742063616c6c00600082015250565b7f455243373231413a20756e61626c6520746f2064657465726d696e652074686560008201527f206f776e6572206f6620746f6b656e0000000000000000000000000000000000602082015250565b7f455243373231413a20617070726f76656420717565727920666f72206e6f6e6560008201527f78697374656e7420746f6b656e00000000000000000000000000000000000000602082015250565b6140e1816137ab565b81146140ec57600080fd5b50565b6140f8816137bd565b811461410357600080fd5b50565b61410f816137c9565b811461411a57600080fd5b50565b61412681613815565b811461413157600080fd5b5056fea2646970667358221220f205261dbed96db8dda02252bae7465d415ef0b497a84ad6bfcdf2cf01a4f6fe64736f6c63430008070033

Deployed Bytecode Sourcemap

43240:1997:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;30100:372;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;31986:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;33548:214;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;33069:413;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;28357:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;34424:170;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;29021:1007;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;43531:38;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;45048:186;;;;;;;;;;;;;:::i;:::-;;34665:185;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;28534:187;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;31795:124;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;43307:80;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;30536:221;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;25762:103;;;;;;;;;;;;;:::i;:::-;;25111:87;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;44954:86;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;32155:104;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;43394:45;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;44145:579;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;44848:98;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;33834:288;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;34921:355;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;43489:35;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;43740:397;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;43576:38;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;34193:164;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;26020:201;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;43446:36;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;30100:372;30202:4;30254:25;30239:40;;;:11;:40;;;;:105;;;;30311:33;30296:48;;;:11;:48;;;;30239:105;:172;;;;30376:35;30361:50;;;:11;:50;;;;30239:172;:225;;;;30428:36;30452:11;30428:23;:36::i;:::-;30239:225;30219:245;;30100:372;;;:::o;31986:100::-;32040:13;32073:5;32066:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;31986:100;:::o;33548:214::-;33616:7;33644:16;33652:7;33644;:16::i;:::-;33636:74;;;;;;;;;;;;:::i;:::-;;;;;;;;;33730:15;:24;33746:7;33730:24;;;;;;;;;;;;;;;;;;;;;33723:31;;33548:214;;;:::o;33069:413::-;33142:13;33158:24;33174:7;33158:15;:24::i;:::-;33142:40;;33207:5;33201:11;;:2;:11;;;;33193:58;;;;;;;;;;;;:::i;:::-;;;;;;;;;33302:5;33286:21;;:12;:10;:12::i;:::-;:21;;;:62;;;;33311:37;33328:5;33335:12;:10;:12::i;:::-;33311:16;:37::i;:::-;33286:62;33264:169;;;;;;;;;;;;:::i;:::-;;;;;;;;;33446:28;33455:2;33459:7;33468:5;33446:8;:28::i;:::-;33131:351;33069:413;;:::o;28357:100::-;28410:7;28437:12;;28430:19;;28357:100;:::o;34424:170::-;34558:28;34568:4;34574:2;34578:7;34558:9;:28::i;:::-;34424:170;;;:::o;29021:1007::-;29110:7;29146:16;29156:5;29146:9;:16::i;:::-;29138:5;:24;29130:71;;;;;;;;;;;;:::i;:::-;;;;;;;;;29212:22;29237:13;:11;:13::i;:::-;29212:38;;29261:19;29291:25;29480:9;29475:466;29495:14;29491:1;:18;29475:466;;;29535:31;29569:11;:14;29581:1;29569:14;;;;;;;;;;;29535:48;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;29632:1;29606:28;;:9;:14;;;:28;;;29602:111;;29679:9;:14;;;29659:34;;29602:111;29756:5;29735:26;;:17;:26;;;29731:195;;;29805:5;29790:11;:20;29786:85;;;29846:1;29839:8;;;;;;;;;29786:85;29893:13;;;;;;;29731:195;29516:425;29511:3;;;;;;;29475:466;;;;29964:56;;;;;;;;;;:::i;:::-;;;;;;;;29021:1007;;;;;:::o;43531:38::-;;;;:::o;45048:186::-;25342:12;:10;:12::i;:::-;25331:23;;:7;:5;:7::i;:::-;:23;;;25323:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;22209:1:::1;22807:7;;:19;;22799:63;;;;;;;;;;;;:::i;:::-;;;;;;;;;22209:1;22940:7;:18;;;;45112:12:::2;45130:10;:15;;45153:21;45130:49;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;45111:68;;;45198:7;45190:36;;;;;;;;;;;;:::i;:::-;;;;;;;;;45100:134;22165:1:::1;23119:7;:22;;;;45048:186::o:0;34665:185::-;34803:39;34820:4;34826:2;34830:7;34803:39;;;;;;;;;;;;:16;:39::i;:::-;34665:185;;;:::o;28534:187::-;28601:7;28637:13;:11;:13::i;:::-;28629:5;:21;28621:69;;;;;;;;;;;;:::i;:::-;;;;;;;;;28708:5;28701:12;;28534:187;;;:::o;31795:124::-;31859:7;31886:20;31898:7;31886:11;:20::i;:::-;:25;;;31879:32;;31795:124;;;:::o;43307:80::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;30536:221::-;30600:7;30645:1;30628:19;;:5;:19;;;;30620:75;;;;;;;;;;;;:::i;:::-;;;;;;;;;30721:12;:19;30734:5;30721:19;;;;;;;;;;;;;;;:27;;;;;;;;;;;;30713:36;;30706:43;;30536:221;;;:::o;25762:103::-;25342:12;:10;:12::i;:::-;25331:23;;:7;:5;:7::i;:::-;:23;;;25323:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;25827:30:::1;25854:1;25827:18;:30::i;:::-;25762:103::o:0;25111:87::-;25157:7;25184:6;;;;;;;;;;;25177:13;;25111:87;:::o;44954:86::-;25342:12;:10;:12::i;:::-;25331:23;;:7;:5;:7::i;:::-;:23;;;25323:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;45026:6:::1;45018:5;:14;;;;44954:86:::0;:::o;32155:104::-;32211:13;32244:7;32237:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;32155:104;:::o;43394:45::-;;;;:::o;44145:579::-;44202:12;44217:5;;44202:20;;44233:11;44285:1;44273:9;;:13;;;;:::i;:::-;44265:5;44249:13;:11;:13::i;:::-;:21;;;;:::i;:::-;:37;44248:109;;;;;44346:10;;44337:5;44305:17;:29;44323:10;44305:29;;;;;;;;;;;;;;;;:37;;;;:::i;:::-;:51;;44248:109;44233:125;;44375:6;44371:100;;;44405:1;44398:8;;44454:5;44421:17;:29;44439:10;44421:29;;;;;;;;;;;;;;;;:38;;;;;;;:::i;:::-;;;;;;;;44371:100;44512:4;44504:5;:12;;;;:::i;:::-;44491:9;:25;;44483:67;;;;;;;;;;;;:::i;:::-;;;;;;;;;44594:9;;44585:5;44569:13;:11;:13::i;:::-;:21;;;;:::i;:::-;:34;;44561:54;;;;;;;;;;;;:::i;:::-;;;;;;;;;44643:8;;44634:5;:17;;44626:49;;;;;;;;;;;;:::i;:::-;;;;;;;;;44688:28;44698:10;44710:5;44688:9;:28::i;:::-;44191:533;;44145:579;:::o;44848:98::-;25342:12;:10;:12::i;:::-;25331:23;;:7;:5;:7::i;:::-;:23;;;25323:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;44930:8:::1;44920:7;:18;;;;;;;;;;;;:::i;:::-;;44848:98:::0;:::o;33834:288::-;33941:12;:10;:12::i;:::-;33929:24;;:8;:24;;;;33921:63;;;;;;;;;;;;:::i;:::-;;;;;;;;;34042:8;33997:18;:32;34016:12;:10;:12::i;:::-;33997:32;;;;;;;;;;;;;;;:42;34030:8;33997:42;;;;;;;;;;;;;;;;:53;;;;;;;;;;;;;;;;;;34095:8;34066:48;;34081:12;:10;:12::i;:::-;34066:48;;;34105:8;34066:48;;;;;;:::i;:::-;;;;;;;;33834:288;;:::o;34921:355::-;35080:28;35090:4;35096:2;35100:7;35080:9;:28::i;:::-;35141:48;35164:4;35170:2;35174:7;35183:5;35141:22;:48::i;:::-;35119:149;;;;;;;;;;;;:::i;:::-;;;;;;;;;34921:355;;;;:::o;43489:35::-;;;;:::o;43740:397::-;43814:13;43848:17;43856:8;43848:7;:17::i;:::-;43840:76;;;;;;;;;;;;:::i;:::-;;;;;;;;;43927:28;43958:10;:8;:10::i;:::-;43927:41;;44017:1;43992:14;43986:28;:32;:143;;;;;;;;;;;;;;;;;44058:14;44073:28;44099:1;44090:8;:10;;;;:::i;:::-;44073:16;:28::i;:::-;44041:69;;;;;;;;;:::i;:::-;;;;;;;;;;;;;43986:143;43979:150;;;43740:397;;;:::o;43576:38::-;;;;:::o;34193:164::-;34290:4;34314:18;:25;34333:5;34314:25;;;;;;;;;;;;;;;:35;34340:8;34314:35;;;;;;;;;;;;;;;;;;;;;;;;;34307:42;;34193:164;;;;:::o;26020:201::-;25342:12;:10;:12::i;:::-;25331:23;;:7;:5;:7::i;:::-;:23;;;25323:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;26129:1:::1;26109:22;;:8;:22;;;;26101:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;26185:28;26204:8;26185:18;:28::i;:::-;26020:201:::0;:::o;43446:36::-;;;;:::o;13463:157::-;13548:4;13587:25;13572:40;;;:11;:40;;;;13565:47;;13463:157;;;:::o;35531:111::-;35588:4;35622:12;;35612:7;:22;35605:29;;35531:111;;;:::o;23835:98::-;23888:7;23915:10;23908:17;;23835:98;:::o;40451:196::-;40593:2;40566:15;:24;40582:7;40566:24;;;;;;;;;;;;:29;;;;;;;;;;;;;;;;;;40631:7;40627:2;40611:28;;40620:5;40611:28;;;;;;;;;;;;40451:196;;;:::o;38331:2002::-;38446:35;38484:20;38496:7;38484:11;:20::i;:::-;38446:58;;38517:22;38559:13;:18;;;38543:34;;:12;:10;:12::i;:::-;:34;;;:87;;;;38618:12;:10;:12::i;:::-;38594:36;;:20;38606:7;38594:11;:20::i;:::-;:36;;;38543:87;:154;;;;38647:50;38664:13;:18;;;38684:12;:10;:12::i;:::-;38647:16;:50::i;:::-;38543:154;38517:181;;38719:17;38711:80;;;;;;;;;;;;:::i;:::-;;;;;;;;;38834:4;38812:26;;:13;:18;;;:26;;;38804:77;;;;;;;;;;;;:::i;:::-;;;;;;;;;38914:1;38900:16;;:2;:16;;;;38892:66;;;;;;;;;;;;:::i;:::-;;;;;;;;;38971:43;38993:4;38999:2;39003:7;39012:1;38971:21;:43::i;:::-;39079:49;39096:1;39100:7;39109:13;:18;;;39079:8;:49::i;:::-;39454:1;39424:12;:18;39437:4;39424:18;;;;;;;;;;;;;;;:26;;;:31;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;39498:1;39470:12;:16;39483:2;39470:16;;;;;;;;;;;;;;;:24;;;:29;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;39544:2;39516:11;:20;39528:7;39516:20;;;;;;;;;;;:25;;;:30;;;;;;;;;;;;;;;;;;39606:15;39561:11;:20;39573:7;39561:20;;;;;;;;;;;:35;;;:61;;;;;;;;;;;;;;;;;;39874:19;39906:1;39896:7;:11;39874:33;;39967:1;39926:43;;:11;:24;39938:11;39926:24;;;;;;;;;;;:29;;;;;;;;;;;;:43;;;39922:295;;;39994:20;40002:11;39994:7;:20::i;:::-;39990:212;;;40071:13;:18;;;40039:11;:24;40051:11;40039:24;;;;;;;;;;;:29;;;:50;;;;;;;;;;;;;;;;;;40154:13;:28;;;40112:11;:24;40124:11;40112:24;;;;;;;;;;;:39;;;:70;;;;;;;;;;;;;;;;;;39990:212;39922:295;39399:829;40264:7;40260:2;40245:27;;40254:4;40245:27;;;;;;;;;;;;40283:42;40304:4;40310:2;40314:7;40323:1;40283:20;:42::i;:::-;38435:1898;;38331:2002;;;:::o;31196:537::-;31257:21;;:::i;:::-;31299:16;31307:7;31299;:16::i;:::-;31291:71;;;;;;;;;;;;:::i;:::-;;;;;;;;;31405:12;31420:7;31405:22;;31400:245;31437:1;31429:4;:9;31400:245;;31467:31;31501:11;:17;31513:4;31501:17;;;;;;;;;;;31467:51;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;31567:1;31541:28;;:9;:14;;;:28;;;31537:93;;31601:9;31594:16;;;;;;31537:93;31448:197;31440:6;;;;;;;;31400:245;;;;31668:57;;;;;;;;;;:::i;:::-;;;;;;;;31196:537;;;;:::o;26381:191::-;26455:16;26474:6;;;;;;;;;;;26455:25;;26500:8;26491:6;;:17;;;;;;;;;;;;;;;;;;26555:8;26524:40;;26545:8;26524:40;;;;;;;;;;;;26444:128;26381:191;:::o;35650:104::-;35719:27;35729:2;35733:8;35719:27;;;;;;;;;;;;:9;:27::i;:::-;35650:104;;:::o;41212:804::-;41367:4;41388:15;:2;:13;;;:15::i;:::-;41384:625;;;41440:2;41424:36;;;41461:12;:10;:12::i;:::-;41475:4;41481:7;41490:5;41424:72;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;41420:534;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;41687:1;41670:6;:13;:18;41666:273;;;41713:61;;;;;;;;;;:::i;:::-;;;;;;;;41666:273;41889:6;41883:13;41874:6;41870:2;41866:15;41859:38;41420:534;41557:45;;;41547:55;;;:6;:55;;;;41540:62;;;;;41384:625;41993:4;41986:11;;41212:804;;;;;;;:::o;44732:108::-;44792:13;44825:7;44818:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;44732:108;:::o;365:723::-;421:13;651:1;642:5;:10;638:53;;;669:10;;;;;;;;;;;;;;;;;;;;;638:53;701:12;716:5;701:20;;732:14;757:78;772:1;764:4;:9;757:78;;790:8;;;;;:::i;:::-;;;;821:2;813:10;;;;;:::i;:::-;;;757:78;;;845:19;877:6;867:17;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;845:39;;895:154;911:1;902:5;:10;895:154;;939:1;929:11;;;;;:::i;:::-;;;1006:2;998:5;:10;;;;:::i;:::-;985:2;:24;;;;:::i;:::-;972:39;;955:6;962;955:14;;;;;;;;:::i;:::-;;;;;:56;;;;;;;;;;;1035:2;1026:11;;;;;:::i;:::-;;;895:154;;;1073:6;1059:21;;;;;365:723;;;;:::o;42504:159::-;;;;;:::o;43075:158::-;;;;;:::o;36117:163::-;36240:32;36246:2;36250:8;36260:5;36267:4;36240:5;:32::i;:::-;36117:163;;;:::o;3357:326::-;3417:4;3674:1;3652:7;:19;;;:23;3645:30;;3357:326;;;:::o;36539:1538::-;36678:20;36701:12;;36678:35;;36746:1;36732:16;;:2;:16;;;;36724:62;;;;;;;;;;;;:::i;:::-;;;;;;;;;36817:1;36805:8;:13;;36797:66;;;;;;;;;;;;:::i;:::-;;;;;;;;;36876:61;36906:1;36910:2;36914:12;36928:8;36876:21;:61::i;:::-;37251:8;37215:12;:16;37228:2;37215:16;;;;;;;;;;;;;;;:24;;;:45;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;37316:8;37275:12;:16;37288:2;37275:16;;;;;;;;;;;;;;;:29;;;:50;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;37375:2;37342:11;:25;37354:12;37342:25;;;;;;;;;;;:30;;;:35;;;;;;;;;;;;;;;;;;37442:15;37392:11;:25;37404:12;37392:25;;;;;;;;;;;:40;;;:66;;;;;;;;;;;;;;;;;;37475:20;37498:12;37475:35;;37532:9;37527:415;37547:8;37543:1;:12;37527:415;;;37611:12;37607:2;37586:38;;37603:1;37586:38;;;;;;;;;;;;37647:4;37643:249;;;37710:59;37741:1;37745:2;37749:12;37763:5;37710:22;:59::i;:::-;37676:196;;;;;;;;;;;;:::i;:::-;;;;;;;;;37643:249;37912:14;;;;;;;37557:3;;;;;;;37527:415;;;;37973:12;37958;:27;;;;37190:807;38009:60;38038:1;38042:2;38046:12;38060:8;38009:20;:60::i;:::-;36667:1410;36539: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:327::-;5678:6;5727:2;5715:9;5706:7;5702:23;5698:32;5695:119;;;5733:79;;:::i;:::-;5695:119;5853:1;5878:52;5922:7;5913:6;5902:9;5898:22;5878:52;:::i;:::-;5868:62;;5824:116;5620:327;;;;:::o;5953:349::-;6022:6;6071:2;6059:9;6050:7;6046:23;6042:32;6039:119;;;6077:79;;:::i;:::-;6039:119;6197:1;6222:63;6277:7;6268:6;6257:9;6253:22;6222:63;:::i;:::-;6212:73;;6168:127;5953:349;;;;:::o;6308:509::-;6377:6;6426:2;6414:9;6405:7;6401:23;6397:32;6394:119;;;6432:79;;:::i;:::-;6394:119;6580:1;6569:9;6565:17;6552:31;6610:18;6602:6;6599:30;6596:117;;;6632:79;;:::i;:::-;6596:117;6737:63;6792:7;6783:6;6772:9;6768:22;6737:63;:::i;:::-;6727:73;;6523:287;6308:509;;;;:::o;6823:329::-;6882:6;6931:2;6919:9;6910:7;6906:23;6902:32;6899:119;;;6937:79;;:::i;:::-;6899:119;7057:1;7082:53;7127:7;7118:6;7107:9;7103:22;7082:53;:::i;:::-;7072:63;;7028:117;6823:329;;;;:::o;7158:118::-;7245:24;7263:5;7245:24;:::i;:::-;7240:3;7233:37;7158:118;;:::o;7282:109::-;7363:21;7378:5;7363:21;:::i;:::-;7358:3;7351:34;7282:109;;:::o;7397:360::-;7483:3;7511:38;7543:5;7511:38;:::i;:::-;7565:70;7628:6;7623:3;7565:70;:::i;:::-;7558:77;;7644:52;7689:6;7684:3;7677:4;7670:5;7666:16;7644:52;:::i;:::-;7721:29;7743:6;7721:29;:::i;:::-;7716:3;7712:39;7705:46;;7487:270;7397:360;;;;:::o;7763:364::-;7851:3;7879:39;7912:5;7879:39;:::i;:::-;7934:71;7998:6;7993:3;7934:71;:::i;:::-;7927:78;;8014:52;8059:6;8054:3;8047:4;8040:5;8036:16;8014:52;:::i;:::-;8091:29;8113:6;8091:29;:::i;:::-;8086:3;8082:39;8075:46;;7855:272;7763:364;;;;:::o;8133:377::-;8239:3;8267:39;8300:5;8267:39;:::i;:::-;8322:89;8404:6;8399:3;8322:89;:::i;:::-;8315:96;;8420:52;8465:6;8460:3;8453:4;8446:5;8442:16;8420:52;:::i;:::-;8497:6;8492:3;8488:16;8481:23;;8243:267;8133:377;;;;:::o;8516:366::-;8658:3;8679:67;8743:2;8738:3;8679:67;:::i;:::-;8672:74;;8755:93;8844:3;8755:93;:::i;:::-;8873:2;8868:3;8864:12;8857:19;;8516:366;;;:::o;8888:365::-;9030:3;9051:66;9115:1;9110:3;9051:66;:::i;:::-;9044:73;;9126:93;9215:3;9126:93;:::i;:::-;9244:2;9239:3;9235:12;9228:19;;8888:365;;;:::o;9259:366::-;9401:3;9422:67;9486:2;9481:3;9422:67;:::i;:::-;9415:74;;9498:93;9587:3;9498:93;:::i;:::-;9616:2;9611:3;9607:12;9600:19;;9259:366;;;:::o;9631:::-;9773:3;9794:67;9858:2;9853:3;9794:67;:::i;:::-;9787:74;;9870:93;9959:3;9870:93;:::i;:::-;9988:2;9983:3;9979:12;9972:19;;9631:366;;;:::o;10003:::-;10145:3;10166:67;10230:2;10225:3;10166:67;:::i;:::-;10159:74;;10242:93;10331:3;10242:93;:::i;:::-;10360:2;10355:3;10351:12;10344:19;;10003:366;;;:::o;10375:::-;10517:3;10538:67;10602:2;10597:3;10538:67;:::i;:::-;10531:74;;10614:93;10703:3;10614:93;:::i;:::-;10732:2;10727:3;10723:12;10716:19;;10375:366;;;:::o;10747:::-;10889:3;10910:67;10974:2;10969:3;10910:67;:::i;:::-;10903:74;;10986:93;11075:3;10986:93;:::i;:::-;11104:2;11099:3;11095:12;11088:19;;10747:366;;;:::o;11119:::-;11261:3;11282:67;11346:2;11341:3;11282:67;:::i;:::-;11275:74;;11358:93;11447:3;11358:93;:::i;:::-;11476:2;11471:3;11467:12;11460:19;;11119:366;;;:::o;11491:::-;11633:3;11654:67;11718:2;11713:3;11654:67;:::i;:::-;11647:74;;11730:93;11819:3;11730:93;:::i;:::-;11848:2;11843:3;11839:12;11832:19;;11491:366;;;:::o;11863:400::-;12023:3;12044:84;12126:1;12121:3;12044:84;:::i;:::-;12037:91;;12137:93;12226:3;12137:93;:::i;:::-;12255:1;12250:3;12246:11;12239:18;;11863:400;;;:::o;12269:366::-;12411:3;12432:67;12496:2;12491:3;12432:67;:::i;:::-;12425:74;;12508:93;12597:3;12508:93;:::i;:::-;12626:2;12621:3;12617:12;12610:19;;12269:366;;;:::o;12641:::-;12783:3;12804:67;12868:2;12863:3;12804:67;:::i;:::-;12797:74;;12880:93;12969:3;12880:93;:::i;:::-;12998:2;12993:3;12989:12;12982:19;;12641:366;;;:::o;13013:::-;13155:3;13176:67;13240:2;13235:3;13176:67;:::i;:::-;13169:74;;13252:93;13341:3;13252:93;:::i;:::-;13370:2;13365:3;13361:12;13354:19;;13013:366;;;:::o;13385:::-;13527:3;13548:67;13612:2;13607:3;13548:67;:::i;:::-;13541:74;;13624:93;13713:3;13624:93;:::i;:::-;13742:2;13737:3;13733:12;13726:19;;13385:366;;;:::o;13757:::-;13899:3;13920:67;13984:2;13979:3;13920:67;:::i;:::-;13913:74;;13996:93;14085:3;13996:93;:::i;:::-;14114:2;14109:3;14105:12;14098:19;;13757:366;;;:::o;14129:::-;14271:3;14292:67;14356:2;14351:3;14292:67;:::i;:::-;14285:74;;14368:93;14457:3;14368:93;:::i;:::-;14486:2;14481:3;14477:12;14470:19;;14129:366;;;:::o;14501:398::-;14660:3;14681:83;14762:1;14757:3;14681:83;:::i;:::-;14674:90;;14773:93;14862:3;14773:93;:::i;:::-;14891:1;14886:3;14882:11;14875:18;;14501:398;;;:::o;14905:366::-;15047:3;15068:67;15132:2;15127:3;15068:67;:::i;:::-;15061:74;;15144:93;15233:3;15144:93;:::i;:::-;15262:2;15257:3;15253:12;15246:19;;14905:366;;;:::o;15277:::-;15419:3;15440:67;15504:2;15499:3;15440:67;:::i;:::-;15433:74;;15516:93;15605:3;15516:93;:::i;:::-;15634:2;15629:3;15625:12;15618:19;;15277:366;;;:::o;15649:::-;15791:3;15812:67;15876:2;15871:3;15812:67;:::i;:::-;15805:74;;15888:93;15977:3;15888:93;:::i;:::-;16006:2;16001:3;15997:12;15990:19;;15649:366;;;:::o;16021:::-;16163:3;16184:67;16248:2;16243:3;16184:67;:::i;:::-;16177:74;;16260:93;16349:3;16260:93;:::i;:::-;16378:2;16373:3;16369:12;16362:19;;16021:366;;;:::o;16393:::-;16535:3;16556:67;16620:2;16615:3;16556:67;:::i;:::-;16549:74;;16632:93;16721:3;16632:93;:::i;:::-;16750:2;16745:3;16741:12;16734:19;;16393:366;;;:::o;16765:::-;16907:3;16928:67;16992:2;16987:3;16928:67;:::i;:::-;16921:74;;17004:93;17093:3;17004:93;:::i;:::-;17122:2;17117:3;17113:12;17106:19;;16765:366;;;:::o;17137:::-;17279:3;17300:67;17364:2;17359:3;17300:67;:::i;:::-;17293:74;;17376:93;17465:3;17376:93;:::i;:::-;17494:2;17489:3;17485:12;17478:19;;17137:366;;;:::o;17509:::-;17651:3;17672:67;17736:2;17731:3;17672:67;:::i;:::-;17665:74;;17748:93;17837:3;17748:93;:::i;:::-;17866:2;17861:3;17857:12;17850:19;;17509:366;;;:::o;17881:::-;18023:3;18044:67;18108:2;18103:3;18044:67;:::i;:::-;18037:74;;18120:93;18209:3;18120:93;:::i;:::-;18238:2;18233:3;18229:12;18222:19;;17881:366;;;:::o;18253:118::-;18340:24;18358:5;18340:24;:::i;:::-;18335:3;18328:37;18253:118;;:::o;18377:701::-;18658:3;18680:95;18771:3;18762:6;18680:95;:::i;:::-;18673:102;;18792:95;18883:3;18874:6;18792:95;:::i;:::-;18785:102;;18904:148;19048:3;18904:148;:::i;:::-;18897:155;;19069:3;19062:10;;18377:701;;;;;:::o;19084:379::-;19268:3;19290:147;19433:3;19290:147;:::i;:::-;19283:154;;19454:3;19447:10;;19084:379;;;:::o;19469:222::-;19562:4;19600:2;19589:9;19585:18;19577:26;;19613:71;19681:1;19670:9;19666:17;19657:6;19613:71;:::i;:::-;19469:222;;;;:::o;19697:640::-;19892:4;19930:3;19919:9;19915:19;19907:27;;19944:71;20012:1;20001:9;19997:17;19988:6;19944:71;:::i;:::-;20025:72;20093:2;20082:9;20078:18;20069:6;20025:72;:::i;:::-;20107;20175:2;20164:9;20160:18;20151:6;20107:72;:::i;:::-;20226:9;20220:4;20216:20;20211:2;20200:9;20196:18;20189:48;20254:76;20325:4;20316:6;20254:76;:::i;:::-;20246:84;;19697:640;;;;;;;:::o;20343:210::-;20430:4;20468:2;20457:9;20453:18;20445:26;;20481:65;20543:1;20532:9;20528:17;20519:6;20481:65;:::i;:::-;20343:210;;;;:::o;20559:313::-;20672:4;20710:2;20699:9;20695:18;20687:26;;20759:9;20753:4;20749:20;20745:1;20734:9;20730:17;20723:47;20787:78;20860:4;20851:6;20787:78;:::i;:::-;20779:86;;20559:313;;;;:::o;20878:419::-;21044:4;21082:2;21071:9;21067:18;21059:26;;21131:9;21125:4;21121:20;21117:1;21106:9;21102:17;21095:47;21159:131;21285:4;21159:131;:::i;:::-;21151:139;;20878:419;;;:::o;21303:::-;21469:4;21507:2;21496:9;21492:18;21484:26;;21556:9;21550:4;21546:20;21542:1;21531:9;21527:17;21520:47;21584:131;21710:4;21584:131;:::i;:::-;21576:139;;21303:419;;;:::o;21728:::-;21894:4;21932:2;21921:9;21917:18;21909:26;;21981:9;21975:4;21971:20;21967:1;21956:9;21952:17;21945:47;22009:131;22135:4;22009:131;:::i;:::-;22001:139;;21728:419;;;:::o;22153:::-;22319:4;22357:2;22346:9;22342:18;22334:26;;22406:9;22400:4;22396:20;22392:1;22381:9;22377:17;22370:47;22434:131;22560:4;22434:131;:::i;:::-;22426:139;;22153:419;;;:::o;22578:::-;22744:4;22782:2;22771:9;22767:18;22759:26;;22831:9;22825:4;22821:20;22817:1;22806:9;22802:17;22795:47;22859:131;22985:4;22859:131;:::i;:::-;22851:139;;22578:419;;;:::o;23003:::-;23169:4;23207:2;23196:9;23192:18;23184:26;;23256:9;23250:4;23246:20;23242:1;23231:9;23227:17;23220:47;23284:131;23410:4;23284:131;:::i;:::-;23276:139;;23003:419;;;:::o;23428:::-;23594:4;23632:2;23621:9;23617:18;23609:26;;23681:9;23675:4;23671:20;23667:1;23656:9;23652:17;23645:47;23709:131;23835:4;23709:131;:::i;:::-;23701:139;;23428:419;;;:::o;23853:::-;24019:4;24057:2;24046:9;24042:18;24034:26;;24106:9;24100:4;24096:20;24092:1;24081:9;24077:17;24070:47;24134:131;24260:4;24134:131;:::i;:::-;24126:139;;23853:419;;;:::o;24278:::-;24444:4;24482:2;24471:9;24467:18;24459:26;;24531:9;24525:4;24521:20;24517:1;24506:9;24502:17;24495:47;24559:131;24685:4;24559:131;:::i;:::-;24551:139;;24278:419;;;:::o;24703:::-;24869:4;24907:2;24896:9;24892:18;24884:26;;24956:9;24950:4;24946:20;24942:1;24931:9;24927:17;24920:47;24984:131;25110:4;24984:131;:::i;:::-;24976:139;;24703:419;;;:::o;25128:::-;25294:4;25332:2;25321:9;25317:18;25309:26;;25381:9;25375:4;25371:20;25367:1;25356:9;25352:17;25345:47;25409:131;25535:4;25409:131;:::i;:::-;25401:139;;25128:419;;;:::o;25553:::-;25719:4;25757:2;25746:9;25742:18;25734:26;;25806:9;25800:4;25796:20;25792:1;25781:9;25777:17;25770:47;25834:131;25960:4;25834:131;:::i;:::-;25826:139;;25553:419;;;:::o;25978:::-;26144:4;26182:2;26171:9;26167:18;26159:26;;26231:9;26225:4;26221:20;26217:1;26206:9;26202:17;26195:47;26259:131;26385:4;26259:131;:::i;:::-;26251:139;;25978:419;;;:::o;26403:::-;26569:4;26607:2;26596:9;26592:18;26584:26;;26656:9;26650:4;26646:20;26642:1;26631:9;26627:17;26620:47;26684:131;26810:4;26684:131;:::i;:::-;26676:139;;26403:419;;;:::o;26828:::-;26994:4;27032:2;27021:9;27017:18;27009:26;;27081:9;27075:4;27071:20;27067:1;27056:9;27052:17;27045:47;27109:131;27235:4;27109:131;:::i;:::-;27101:139;;26828:419;;;:::o;27253:::-;27419:4;27457:2;27446:9;27442:18;27434:26;;27506:9;27500:4;27496:20;27492:1;27481:9;27477:17;27470:47;27534:131;27660:4;27534:131;:::i;:::-;27526:139;;27253:419;;;:::o;27678:::-;27844:4;27882:2;27871:9;27867:18;27859:26;;27931:9;27925:4;27921:20;27917:1;27906:9;27902:17;27895:47;27959:131;28085:4;27959:131;:::i;:::-;27951:139;;27678:419;;;:::o;28103:::-;28269:4;28307:2;28296:9;28292:18;28284:26;;28356:9;28350:4;28346:20;28342:1;28331:9;28327:17;28320:47;28384:131;28510:4;28384:131;:::i;:::-;28376:139;;28103:419;;;:::o;28528:::-;28694:4;28732:2;28721:9;28717:18;28709:26;;28781:9;28775:4;28771:20;28767:1;28756:9;28752:17;28745:47;28809:131;28935:4;28809:131;:::i;:::-;28801:139;;28528:419;;;:::o;28953:::-;29119:4;29157:2;29146:9;29142:18;29134:26;;29206:9;29200:4;29196:20;29192:1;29181:9;29177:17;29170:47;29234:131;29360:4;29234:131;:::i;:::-;29226:139;;28953:419;;;:::o;29378:::-;29544:4;29582:2;29571:9;29567:18;29559:26;;29631:9;29625:4;29621:20;29617:1;29606:9;29602:17;29595:47;29659:131;29785:4;29659:131;:::i;:::-;29651:139;;29378:419;;;:::o;29803:::-;29969:4;30007:2;29996:9;29992:18;29984:26;;30056:9;30050:4;30046:20;30042:1;30031:9;30027:17;30020:47;30084:131;30210:4;30084:131;:::i;:::-;30076:139;;29803:419;;;:::o;30228:::-;30394:4;30432:2;30421:9;30417:18;30409:26;;30481:9;30475:4;30471:20;30467:1;30456:9;30452:17;30445:47;30509:131;30635:4;30509:131;:::i;:::-;30501:139;;30228:419;;;:::o;30653:::-;30819:4;30857:2;30846:9;30842:18;30834:26;;30906:9;30900:4;30896:20;30892:1;30881:9;30877:17;30870:47;30934:131;31060:4;30934:131;:::i;:::-;30926:139;;30653:419;;;:::o;31078:222::-;31171:4;31209:2;31198:9;31194:18;31186:26;;31222:71;31290:1;31279:9;31275:17;31266:6;31222:71;:::i;:::-;31078:222;;;;:::o;31306:129::-;31340:6;31367:20;;:::i;:::-;31357:30;;31396:33;31424:4;31416:6;31396:33;:::i;:::-;31306:129;;;:::o;31441:75::-;31474:6;31507:2;31501:9;31491:19;;31441:75;:::o;31522:307::-;31583:4;31673:18;31665:6;31662:30;31659:56;;;31695:18;;:::i;:::-;31659:56;31733:29;31755:6;31733:29;:::i;:::-;31725:37;;31817:4;31811;31807:15;31799:23;;31522:307;;;:::o;31835:308::-;31897:4;31987:18;31979:6;31976:30;31973:56;;;32009:18;;:::i;:::-;31973:56;32047:29;32069:6;32047:29;:::i;:::-;32039:37;;32131:4;32125;32121:15;32113:23;;31835:308;;;:::o;32149:98::-;32200:6;32234:5;32228:12;32218:22;;32149:98;;;:::o;32253:99::-;32305:6;32339:5;32333:12;32323:22;;32253:99;;;:::o;32358:168::-;32441:11;32475:6;32470:3;32463:19;32515:4;32510:3;32506:14;32491:29;;32358:168;;;;:::o;32532:147::-;32633:11;32670:3;32655:18;;32532:147;;;;:::o;32685:169::-;32769:11;32803:6;32798:3;32791:19;32843:4;32838:3;32834:14;32819:29;;32685:169;;;;:::o;32860:148::-;32962:11;32999:3;32984:18;;32860:148;;;;:::o;33014:305::-;33054:3;33073:20;33091:1;33073:20;:::i;:::-;33068:25;;33107:20;33125:1;33107:20;:::i;:::-;33102:25;;33261:1;33193:66;33189:74;33186:1;33183:81;33180:107;;;33267:18;;:::i;:::-;33180:107;33311:1;33308;33304:9;33297:16;;33014:305;;;;:::o;33325:185::-;33365:1;33382:20;33400:1;33382:20;:::i;:::-;33377:25;;33416:20;33434:1;33416:20;:::i;:::-;33411:25;;33455:1;33445:35;;33460:18;;:::i;:::-;33445:35;33502:1;33499;33495:9;33490:14;;33325:185;;;;:::o;33516:348::-;33556:7;33579:20;33597:1;33579:20;:::i;:::-;33574:25;;33613:20;33631:1;33613:20;:::i;:::-;33608:25;;33801:1;33733:66;33729:74;33726:1;33723:81;33718:1;33711:9;33704:17;33700:105;33697:131;;;33808:18;;:::i;:::-;33697:131;33856:1;33853;33849:9;33838:20;;33516:348;;;;:::o;33870:191::-;33910:4;33930:20;33948:1;33930:20;:::i;:::-;33925:25;;33964:20;33982:1;33964:20;:::i;:::-;33959:25;;34003:1;34000;33997:8;33994:34;;;34008:18;;:::i;:::-;33994:34;34053:1;34050;34046:9;34038:17;;33870:191;;;;:::o;34067:96::-;34104:7;34133:24;34151:5;34133:24;:::i;:::-;34122:35;;34067:96;;;:::o;34169:90::-;34203:7;34246:5;34239:13;34232:21;34221:32;;34169:90;;;:::o;34265:149::-;34301:7;34341:66;34334:5;34330:78;34319:89;;34265:149;;;:::o;34420:126::-;34457:7;34497:42;34490:5;34486:54;34475:65;;34420:126;;;:::o;34552:77::-;34589:7;34618:5;34607:16;;34552:77;;;:::o;34635:154::-;34719:6;34714:3;34709;34696:30;34781:1;34772:6;34767:3;34763:16;34756:27;34635:154;;;:::o;34795:307::-;34863:1;34873:113;34887:6;34884:1;34881:13;34873:113;;;34972:1;34967:3;34963:11;34957:18;34953:1;34948:3;34944:11;34937:39;34909:2;34906:1;34902:10;34897:15;;34873:113;;;35004:6;35001:1;34998:13;34995:101;;;35084:1;35075:6;35070:3;35066:16;35059:27;34995:101;34844:258;34795:307;;;:::o;35108:320::-;35152:6;35189:1;35183:4;35179:12;35169:22;;35236:1;35230:4;35226:12;35257:18;35247:81;;35313:4;35305:6;35301:17;35291:27;;35247:81;35375:2;35367:6;35364:14;35344:18;35341:38;35338:84;;;35394:18;;:::i;:::-;35338:84;35159:269;35108:320;;;:::o;35434:281::-;35517:27;35539:4;35517:27;:::i;:::-;35509:6;35505:40;35647:6;35635:10;35632:22;35611:18;35599:10;35596:34;35593:62;35590:88;;;35658:18;;:::i;:::-;35590:88;35698:10;35694:2;35687:22;35477:238;35434:281;;:::o;35721:233::-;35760:3;35783:24;35801:5;35783:24;:::i;:::-;35774:33;;35829:66;35822:5;35819:77;35816:103;;;35899:18;;:::i;:::-;35816:103;35946:1;35939:5;35935:13;35928:20;;35721:233;;;:::o;35960:176::-;35992:1;36009:20;36027:1;36009:20;:::i;:::-;36004:25;;36043:20;36061:1;36043:20;:::i;:::-;36038:25;;36082:1;36072:35;;36087:18;;:::i;:::-;36072:35;36128:1;36125;36121:9;36116:14;;35960:176;;;;:::o;36142:180::-;36190:77;36187:1;36180:88;36287:4;36284:1;36277:15;36311:4;36308:1;36301:15;36328:180;36376:77;36373:1;36366:88;36473:4;36470:1;36463:15;36497:4;36494:1;36487:15;36514:180;36562:77;36559:1;36552:88;36659:4;36656:1;36649:15;36683:4;36680:1;36673:15;36700:180;36748:77;36745:1;36738:88;36845:4;36842:1;36835:15;36869:4;36866:1;36859:15;36886:180;36934:77;36931:1;36924:88;37031:4;37028:1;37021:15;37055:4;37052:1;37045:15;37072:117;37181:1;37178;37171:12;37195:117;37304:1;37301;37294:12;37318:117;37427:1;37424;37417:12;37441:117;37550:1;37547;37540:12;37564:102;37605:6;37656:2;37652:7;37647:2;37640:5;37636:14;37632:28;37622:38;;37564:102;;;:::o;37672:221::-;37812:34;37808:1;37800:6;37796:14;37789:58;37881:4;37876:2;37868:6;37864:15;37857:29;37672:221;:::o;37899:157::-;38039:9;38035:1;38027:6;38023:14;38016:33;37899:157;:::o;38062:225::-;38202:34;38198:1;38190:6;38186:14;38179:58;38271:8;38266:2;38258:6;38254:15;38247:33;38062:225;:::o;38293:229::-;38433:34;38429:1;38421:6;38417:14;38410:58;38502:12;38497:2;38489:6;38485:15;38478:37;38293:229;:::o;38528:222::-;38668:34;38664:1;38656:6;38652:14;38645:58;38737:5;38732:2;38724:6;38720:15;38713:30;38528:222;:::o;38756:224::-;38896:34;38892:1;38884:6;38880:14;38873:58;38965:7;38960:2;38952:6;38948:15;38941:32;38756:224;:::o;38986:244::-;39126:34;39122:1;39114:6;39110:14;39103:58;39195:27;39190:2;39182:6;39178:15;39171:52;38986:244;:::o;39236:230::-;39376:34;39372:1;39364:6;39360:14;39353:58;39445:13;39440:2;39432:6;39428:15;39421:38;39236:230;:::o;39472:225::-;39612:34;39608:1;39600:6;39596:14;39589:58;39681:8;39676:2;39668:6;39664:15;39657:33;39472:225;:::o;39703:155::-;39843:7;39839:1;39831:6;39827:14;39820:31;39703:155;:::o;39864:182::-;40004:34;40000:1;39992:6;39988:14;39981:58;39864:182;:::o;40052:234::-;40192:34;40188:1;40180:6;40176:14;40169:58;40261:17;40256:2;40248:6;40244:15;40237:42;40052:234;:::o;40292:176::-;40432:28;40428:1;40420:6;40416:14;40409:52;40292:176;:::o;40474:237::-;40614:34;40610:1;40602:6;40598:14;40591:58;40683:20;40678:2;40670:6;40666:15;40659:45;40474:237;:::o;40717:179::-;40857:31;40853:1;40845:6;40841:14;40834:55;40717:179;:::o;40902:221::-;41042:34;41038:1;41030:6;41026:14;41019:58;41111:4;41106:2;41098:6;41094:15;41087:29;40902:221;:::o;41129:114::-;;:::o;41249:166::-;41389:18;41385:1;41377:6;41373:14;41366:42;41249:166;:::o;41421:238::-;41561:34;41557:1;41549:6;41545:14;41538:58;41630:21;41625:2;41617:6;41613:15;41606:46;41421:238;:::o;41665:220::-;41805:34;41801:1;41793:6;41789:14;41782:58;41874:3;41869:2;41861:6;41857:15;41850:28;41665:220;:::o;41891:227::-;42031:34;42027:1;42019:6;42015:14;42008:58;42100:10;42095:2;42087:6;42083:15;42076:35;41891:227;:::o;42124:169::-;42264:21;42260:1;42252:6;42248:14;42241:45;42124:169;:::o;42299:233::-;42439:34;42435:1;42427:6;42423:14;42416:58;42508:16;42503:2;42495:6;42491:15;42484:41;42299:233;:::o;42538:181::-;42678:33;42674:1;42666:6;42662:14;42655:57;42538:181;:::o;42725:234::-;42865:34;42861:1;42853:6;42849:14;42842:58;42934:17;42929:2;42921:6;42917:15;42910:42;42725:234;:::o;42965:232::-;43105:34;43101:1;43093:6;43089:14;43082:58;43174:15;43169:2;43161:6;43157:15;43150:40;42965:232;:::o;43203:122::-;43276:24;43294:5;43276:24;:::i;:::-;43269:5;43266:35;43256:63;;43315:1;43312;43305:12;43256:63;43203:122;:::o;43331:116::-;43401:21;43416:5;43401:21;:::i;:::-;43394:5;43391:32;43381:60;;43437:1;43434;43427:12;43381:60;43331:116;:::o;43453:120::-;43525:23;43542:5;43525:23;:::i;:::-;43518:5;43515:34;43505:62;;43563:1;43560;43553:12;43505:62;43453:120;:::o;43579:122::-;43652:24;43670:5;43652:24;:::i;:::-;43645:5;43642:35;43632:63;;43691:1;43688;43681:12;43632:63;43579:122;:::o

Swarm Source

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