ETH Price: $3,240.19 (-0.57%)
Gas: 1 Gwei

Expansion Ape Tribe (EAT)
 

Overview

TokenID

1257

Total Transfers

-

Market

Onchain Market Cap

$0.00

Circulating Supply Market Cap

-
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:
ExpansionApeTribe

Compiler Version
v0.8.7+commit.e28d00a7

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

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

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


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

pragma solidity ^0.8.0;

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

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

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

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

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

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


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

pragma solidity ^0.8.0;

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

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

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


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

pragma solidity ^0.8.0;


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

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

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

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

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

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

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

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

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


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

pragma solidity ^0.8.1;

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

        return account.code.length > 0;
    }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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


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

pragma solidity ^0.8.0;


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

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

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

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


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

pragma solidity ^0.8.0;


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

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

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

// File: ERC721A.sol


// Creator: Chiru Labs

pragma solidity ^0.8.4;









error ApprovalCallerNotOwnerNorApproved();
error ApprovalQueryForNonexistentToken();
error ApproveToCaller();
error ApprovalToCurrentOwner();
error BalanceQueryForZeroAddress();
error MintedQueryForZeroAddress();
error MintToZeroAddress();
error MintZeroQuantity();
error OwnerIndexOutOfBounds();
error OwnerQueryForNonexistentToken();
error TokenIndexOutOfBounds();
error TransferCallerNotOwnerNorApproved();
error TransferFromIncorrectOwner();
error TransferToNonERC721ReceiverImplementer();
error TransferToZeroAddress();
error UnableDetermineTokenOwner();
error URIQueryForNonexistentToken();

/**
 * @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) {
        if (index >= totalSupply()) revert TokenIndexOutOfBounds();
        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) {
        if (index >= balanceOf(owner)) revert OwnerIndexOutOfBounds();
        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++;
                }
            }
        }

        // Execution should never reach this point.
        assert(false);
    }

    /**
     * @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) {
        if (owner == address(0)) revert BalanceQueryForZeroAddress();
        return uint256(_addressData[owner].balance);
    }

    function _numberMinted(address owner) internal view returns (uint256) {
        if (owner == address(0)) revert MintedQueryForZeroAddress();
        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) {
        if (!_exists(tokenId)) revert OwnerQueryForNonexistentToken();

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

        revert UnableDetermineTokenOwner();
    }

    /**
     * @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) {
        if (!_exists(tokenId)) revert URIQueryForNonexistentToken();

        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);
        if (to == owner) revert ApprovalToCurrentOwner();

        if (_msgSender() != owner && !isApprovedForAll(owner, _msgSender())) revert ApprovalCallerNotOwnerNorApproved();

        _approve(to, tokenId, owner);
    }

    /**
     * @dev See {IERC721-getApproved}.
     */
    function getApproved(uint256 tokenId) public view override returns (address) {
        if (!_exists(tokenId)) revert ApprovalQueryForNonexistentToken();

        return _tokenApprovals[tokenId];
    }

    /**
     * @dev See {IERC721-setApprovalForAll}.
     */
    function setApprovalForAll(address operator, bool approved) public override {
        if (operator == _msgSender()) revert ApproveToCaller();

        _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);
        if (!_checkOnERC721Received(from, to, tokenId, _data)) revert TransferToNonERC721ReceiverImplementer();
    }

    /**
     * @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;
        if (to == address(0)) revert MintToZeroAddress();
        if (quantity == 0) revert MintZeroQuantity();

        _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 && !_checkOnERC721Received(address(0), to, updatedIndex, _data)) {
                    revert TransferToNonERC721ReceiverImplementer();
                }

                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()));

        if (!isApprovedOrOwner) revert TransferCallerNotOwnerNorApproved();
        if (prevOwnership.addr != from) revert TransferFromIncorrectOwner();
        if (to == address(0)) revert TransferToZeroAddress();

        _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 TransferToNonERC721ReceiverImplementer();
                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 {}
}
// File: ExpansionApeTribe.sol


pragma solidity ^0.8.7;



contract ExpansionApeTribe is ERC721A, Ownable {
    using Strings for uint256;

    uint256 public constant MAX_SUPPLY = 10000;
    uint256 public constant PRICE = .004 ether;

    uint256 public constant MAX_QUANTITY = 10;
    uint256 public constant FREE_AMOUNT = 2000;

    bool public mintTime = false;

    string private baseTokenUri = "https://pttzki.mypinata.cloud/ipfs/QmS5z5VBT2fQTYnfC4cmXVU5iU4t1edsTAkvwATpwAWzWZ/";

    constructor() ERC721A("Expansion Ape Tribe", "EAT") {

    }

    function mint(uint256 _quantity) external payable {

        require(_quantity <= MAX_QUANTITY, "10 per tx");
        require((totalSupply() + _quantity) <= MAX_SUPPLY, "OOS");
        require(mintTime, "It is not time to mint");


        if ((totalSupply() + _quantity) <= FREE_AMOUNT) {

            _safeMint(msg.sender, _quantity);

        } else {

            require(msg.value >= (PRICE * _quantity), "Not Enough Ether");
            _safeMint(msg.sender, _quantity);

        }


    }


    function tokenURI(uint256 tokenId) public view virtual override returns (string memory) {
        require(_exists(tokenId), "ERC721Metadata: URI query for nonexistent token");

        uint256 trueId = tokenId;

        return bytes(baseTokenUri).length > 0 ? string(abi.encodePacked(baseTokenUri, trueId.toString(), ".json")) : "";
    }

    function setTokenUri(string memory _baseTokenUri) external onlyOwner {
        baseTokenUri = _baseTokenUri;
    }

    function toggleSale() public onlyOwner {

        mintTime = !mintTime;
    }


    function withdraw() external onlyOwner {

        uint256 balance = address(this).balance;

        Address.sendValue(payable(owner()), balance);
    }


}

Contract Security Audit

Contract ABI

[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"inputs":[],"name":"ApprovalCallerNotOwnerNorApproved","type":"error"},{"inputs":[],"name":"ApprovalQueryForNonexistentToken","type":"error"},{"inputs":[],"name":"ApprovalToCurrentOwner","type":"error"},{"inputs":[],"name":"ApproveToCaller","type":"error"},{"inputs":[],"name":"BalanceQueryForZeroAddress","type":"error"},{"inputs":[],"name":"MintToZeroAddress","type":"error"},{"inputs":[],"name":"MintZeroQuantity","type":"error"},{"inputs":[],"name":"OwnerIndexOutOfBounds","type":"error"},{"inputs":[],"name":"OwnerQueryForNonexistentToken","type":"error"},{"inputs":[],"name":"TokenIndexOutOfBounds","type":"error"},{"inputs":[],"name":"TransferCallerNotOwnerNorApproved","type":"error"},{"inputs":[],"name":"TransferFromIncorrectOwner","type":"error"},{"inputs":[],"name":"TransferToNonERC721ReceiverImplementer","type":"error"},{"inputs":[],"name":"TransferToZeroAddress","type":"error"},{"inputs":[],"name":"UnableDetermineTokenOwner","type":"error"},{"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":[],"name":"FREE_AMOUNT","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"MAX_QUANTITY","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"MAX_SUPPLY","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"PRICE","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"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":[{"internalType":"uint256","name":"_quantity","type":"uint256"}],"name":"mint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"mintTime","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"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":"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":"_baseTokenUri","type":"string"}],"name":"setTokenUri","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"toggleSale","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"index","type":"uint256"}],"name":"tokenByIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"uint256","name":"index","type":"uint256"}],"name":"tokenOfOwnerByIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"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"}]

60806040526000600760146101000a81548160ff02191690831515021790555060405180608001604052806052815260200162003a89605291396008908051906020019062000050929190620001f3565b503480156200005e57600080fd5b506040518060400160405280601381526020017f457870616e73696f6e20417065205472696265000000000000000000000000008152506040518060400160405280600381526020017f45415400000000000000000000000000000000000000000000000000000000008152508160019080519060200190620000e3929190620001f3565b508060029080519060200190620000fc929190620001f3565b5050506200011f620001136200012560201b60201c565b6200012d60201b60201c565b62000308565b600033905090565b6000600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600760006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b8280546200020190620002a3565b90600052602060002090601f01602090048101928262000225576000855562000271565b82601f106200024057805160ff191683800117855562000271565b8280016001018555821562000271579182015b828111156200027057825182559160200191906001019062000253565b5b50905062000280919062000284565b5090565b5b808211156200029f57600081600090555060010162000285565b5090565b60006002820490506001821680620002bc57607f821691505b60208210811415620002d357620002d2620002d9565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b61377180620003186000396000f3fe6080604052600436106101b75760003560e01c806370a08231116100ec578063a0712d681161008a578063c87b56dd11610064578063c87b56dd146105d9578063e41ee46a14610616578063e985e9c514610641578063f2fde38b1461067e576101b7565b8063a0712d681461056b578063a22cb46514610587578063b88d4fde146105b0576101b7565b806386478122116100c657806386478122146104bf5780638d859f3e146104ea5780638da5cb5b1461051557806395d89b4114610540576101b7565b806370a0823114610454578063715018a6146104915780637d8966e4146104a8576101b7565b806323b872dd116101595780633ccfd60b116101335780633ccfd60b1461039a57806342842e0e146103b15780634f6ccce7146103da5780636352211e14610417576101b7565b806323b872dd146103095780632f745c591461033257806332cb6b0c1461036f576101b7565b806306fdde031161019557806306fdde031461024d578063081812fc14610278578063095ea7b3146102b557806318160ddd146102de576101b7565b8063017184d9146101bc57806301ffc9a7146101e75780630675b7c614610224575b600080fd5b3480156101c857600080fd5b506101d16106a7565b6040516101de9190612fe4565b60405180910390f35b3480156101f357600080fd5b5061020e60048036038101906102099190612a3c565b6106ad565b60405161021b9190612e87565b60405180910390f35b34801561023057600080fd5b5061024b60048036038101906102469190612a96565b6107f7565b005b34801561025957600080fd5b5061026261088d565b60405161026f9190612ea2565b60405180910390f35b34801561028457600080fd5b5061029f600480360381019061029a9190612adf565b61091f565b6040516102ac9190612e20565b60405180910390f35b3480156102c157600080fd5b506102dc60048036038101906102d791906129fc565b61099b565b005b3480156102ea57600080fd5b506102f3610aa6565b6040516103009190612fe4565b60405180910390f35b34801561031557600080fd5b50610330600480360381019061032b91906128e6565b610aaf565b005b34801561033e57600080fd5b50610359600480360381019061035491906129fc565b610abf565b6040516103669190612fe4565b60405180910390f35b34801561037b57600080fd5b50610384610c80565b6040516103919190612fe4565b60405180910390f35b3480156103a657600080fd5b506103af610c86565b005b3480156103bd57600080fd5b506103d860048036038101906103d391906128e6565b610d1b565b005b3480156103e657600080fd5b5061040160048036038101906103fc9190612adf565b610d3b565b60405161040e9190612fe4565b60405180910390f35b34801561042357600080fd5b5061043e60048036038101906104399190612adf565b610d85565b60405161044b9190612e20565b60405180910390f35b34801561046057600080fd5b5061047b60048036038101906104769190612879565b610d9b565b6040516104889190612fe4565b60405180910390f35b34801561049d57600080fd5b506104a6610e7b565b005b3480156104b457600080fd5b506104bd610f03565b005b3480156104cb57600080fd5b506104d4610fab565b6040516104e19190612e87565b60405180910390f35b3480156104f657600080fd5b506104ff610fbe565b60405161050c9190612fe4565b60405180910390f35b34801561052157600080fd5b5061052a610fc9565b6040516105379190612e20565b60405180910390f35b34801561054c57600080fd5b50610555610ff3565b6040516105629190612ea2565b60405180910390f35b61058560048036038101906105809190612adf565b611085565b005b34801561059357600080fd5b506105ae60048036038101906105a991906129bc565b6111fc565b005b3480156105bc57600080fd5b506105d760048036038101906105d29190612939565b611374565b005b3480156105e557600080fd5b5061060060048036038101906105fb9190612adf565b6113c7565b60405161060d9190612ea2565b60405180910390f35b34801561062257600080fd5b5061062b611475565b6040516106389190612fe4565b60405180910390f35b34801561064d57600080fd5b50610668600480360381019061066391906128a6565b61147a565b6040516106759190612e87565b60405180910390f35b34801561068a57600080fd5b506106a560048036038101906106a09190612879565b61150e565b005b6107d081565b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916148061077857507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b806107e057507f780e9d63000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b806107f057506107ef82611606565b5b9050919050565b6107ff611670565b73ffffffffffffffffffffffffffffffffffffffff1661081d610fc9565b73ffffffffffffffffffffffffffffffffffffffff1614610873576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161086a90612f44565b60405180910390fd5b8060089080519060200190610889929190612653565b5050565b60606001805461089c906132b4565b80601f01602080910402602001604051908101604052809291908181526020018280546108c8906132b4565b80156109155780601f106108ea57610100808354040283529160200191610915565b820191906000526020600020905b8154815290600101906020018083116108f857829003601f168201915b5050505050905090565b600061092a82611678565b610960576040517fcf4700e400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6005600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b60006109a682610d85565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610a0e576040517f943f7b8c00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16610a2d611670565b73ffffffffffffffffffffffffffffffffffffffff1614158015610a5f5750610a5d81610a58611670565b61147a565b155b15610a96576040517fcfb3b94200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b610aa1838383611685565b505050565b60008054905090565b610aba838383611737565b505050565b6000610aca83610d9b565b8210610b02576040517f0ddac30e00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6000610b0c610aa6565b905060008060005b83811015610c66576000600360008381526020019081526020016000206040518060400160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815250509050600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff1614610c0657806000015192505b8773ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610c585786841415610c4f578195505050505050610c7a565b83806001019450505b508080600101915050610b14565b506000610c7657610c75613391565b5b5050505b92915050565b61271081565b610c8e611670565b73ffffffffffffffffffffffffffffffffffffffff16610cac610fc9565b73ffffffffffffffffffffffffffffffffffffffff1614610d02576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610cf990612f44565b60405180910390fd5b6000479050610d18610d12610fc9565b82611c5c565b50565b610d3683838360405180602001604052806000815250611374565b505050565b6000610d45610aa6565b8210610d7d576040517fa723001c00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b819050919050565b6000610d9082611d50565b600001519050919050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415610e03576040517f8f4eb60400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600460008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160009054906101000a90046fffffffffffffffffffffffffffffffff166fffffffffffffffffffffffffffffffff169050919050565b610e83611670565b73ffffffffffffffffffffffffffffffffffffffff16610ea1610fc9565b73ffffffffffffffffffffffffffffffffffffffff1614610ef7576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610eee90612f44565b60405180910390fd5b610f016000611ed8565b565b610f0b611670565b73ffffffffffffffffffffffffffffffffffffffff16610f29610fc9565b73ffffffffffffffffffffffffffffffffffffffff1614610f7f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f7690612f44565b60405180910390fd5b600760149054906101000a900460ff1615600760146101000a81548160ff021916908315150217905550565b600760149054906101000a900460ff1681565b660e35fa931a000081565b6000600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b606060028054611002906132b4565b80601f016020809104026020016040519081016040528092919081815260200182805461102e906132b4565b801561107b5780601f106110505761010080835404028352916020019161107b565b820191906000526020600020905b81548152906001019060200180831161105e57829003601f168201915b5050505050905090565b600a8111156110c9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110c090612fc4565b60405180910390fd5b612710816110d5610aa6565b6110df91906130e9565b1115611120576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161111790612fa4565b60405180910390fd5b600760149054906101000a900460ff1661116f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161116690612f84565b60405180910390fd5b6107d08161117b610aa6565b61118591906130e9565b11611199576111943382611f9e565b6111f9565b80660e35fa931a00006111ac9190613170565b3410156111ee576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111e590612ec4565b60405180910390fd5b6111f83382611f9e565b5b50565b611204611670565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611269576040517fb06307db00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8060066000611276611670565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff16611323611670565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31836040516113689190612e87565b60405180910390a35050565b61137f848484611737565b61138b84848484611fbc565b6113c1576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b50505050565b60606113d282611678565b611411576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161140890612f64565b60405180910390fd5b6000829050600060088054611425906132b4565b905011611441576040518060200160405280600081525061146d565b600861144c8261214a565b60405160200161145d929190612ddc565b6040516020818303038152906040525b915050919050565b600a81565b6000600660008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b611516611670565b73ffffffffffffffffffffffffffffffffffffffff16611534610fc9565b73ffffffffffffffffffffffffffffffffffffffff161461158a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161158190612f44565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614156115fa576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115f190612ee4565b60405180910390fd5b61160381611ed8565b50565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b600033905090565b6000805482109050919050565b826005600084815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b600061174282611d50565b90506000816000015173ffffffffffffffffffffffffffffffffffffffff16611769611670565b73ffffffffffffffffffffffffffffffffffffffff1614806117c5575061178e611670565b73ffffffffffffffffffffffffffffffffffffffff166117ad8461091f565b73ffffffffffffffffffffffffffffffffffffffff16145b806117e157506117e082600001516117db611670565b61147a565b5b90508061181a576040517f59c896be00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8473ffffffffffffffffffffffffffffffffffffffff16826000015173ffffffffffffffffffffffffffffffffffffffff1614611883576040517fa114810000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1614156118ea576040517fea553b3400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6118f785858560016122ab565b6119076000848460000151611685565b6001600460008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a90046fffffffffffffffffffffffffffffffff160392506101000a8154816fffffffffffffffffffffffffffffffff02191690836fffffffffffffffffffffffffffffffff1602179055506001600460008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a90046fffffffffffffffffffffffffffffffff160192506101000a8154816fffffffffffffffffffffffffffffffff02191690836fffffffffffffffffffffffffffffffff160217905550836003600085815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550426003600085815260200190815260200160002060000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055506000600184019050600073ffffffffffffffffffffffffffffffffffffffff166003600083815260200190815260200160002060000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff161415611bec57611b4b81611678565b15611beb5782600001516003600083815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555082602001516003600083815260200190815260200160002060000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055505b5b50828473ffffffffffffffffffffffffffffffffffffffff168673ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4611c5585858560016122b1565b5050505050565b80471015611c9f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c9690612f24565b60405180910390fd5b60008273ffffffffffffffffffffffffffffffffffffffff1682604051611cc590612e0b565b60006040518083038185875af1925050503d8060008114611d02576040519150601f19603f3d011682016040523d82523d6000602084013e611d07565b606091505b5050905080611d4b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d4290612f04565b60405180910390fd5b505050565b611d586126d9565b611d6182611678565b611d97576040517fdf2d9b4200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b60008290505b60008110611ea0576000600360008381526020019081526020016000206040518060400160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815250509050600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff1614611e91578092505050611ed3565b50808060019003915050611d9d565b506040517fe7c0edfb00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b919050565b6000600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600760006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b611fb88282604051806020016040528060008152506122b7565b5050565b6000611fdd8473ffffffffffffffffffffffffffffffffffffffff166122c9565b1561213d578373ffffffffffffffffffffffffffffffffffffffff1663150b7a02612006611670565b8786866040518563ffffffff1660e01b81526004016120289493929190612e3b565b602060405180830381600087803b15801561204257600080fd5b505af192505050801561207357506040513d601f19601f820116820180604052508101906120709190612a69565b60015b6120ed573d80600081146120a3576040519150601f19603f3d011682016040523d82523d6000602084013e6120a8565b606091505b506000815114156120e5576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050612142565b600190505b949350505050565b60606000821415612192576040518060400160405280600181526020017f300000000000000000000000000000000000000000000000000000000000000081525090506122a6565b600082905060005b600082146121c45780806121ad90613317565b915050600a826121bd919061313f565b915061219a565b60008167ffffffffffffffff8111156121e0576121df61347c565b5b6040519080825280601f01601f1916602001820160405280156122125781602001600182028036833780820191505090505b5090505b6000851461229f5760018261222b91906131ca565b9150600a8561223a9190613360565b603061224691906130e9565b60f81b81838151811061225c5761225b61344d565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a85612298919061313f565b9450612216565b8093505050505b919050565b50505050565b50505050565b6122c483838360016122ec565b505050565b6000808273ffffffffffffffffffffffffffffffffffffffff163b119050919050565b600080549050600073ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff161415612359576040517f2e07630000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6000841415612394576040517fb562e8dd00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6123a160008683876122ab565b83600460008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a90046fffffffffffffffffffffffffffffffff160192506101000a8154816fffffffffffffffffffffffffffffffff02191690836fffffffffffffffffffffffffffffffff16021790555083600460008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160108282829054906101000a90046fffffffffffffffffffffffffffffffff160192506101000a8154816fffffffffffffffffffffffffffffffff02191690836fffffffffffffffffffffffffffffffff160217905550846003600083815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550426003600083815260200190815260200160002060000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff160217905550600081905060005b8581101561263657818773ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a48380156125ea57506125e86000888488611fbc565b155b15612621576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8180600101925050808060010191505061256f565b50806000819055505061264c60008683876122b1565b5050505050565b82805461265f906132b4565b90600052602060002090601f01602090048101928261268157600085556126c8565b82601f1061269a57805160ff19168380011785556126c8565b828001600101855582156126c8579182015b828111156126c75782518255916020019190600101906126ac565b5b5090506126d59190612713565b5090565b6040518060400160405280600073ffffffffffffffffffffffffffffffffffffffff168152602001600067ffffffffffffffff1681525090565b5b8082111561272c576000816000905550600101612714565b5090565b600061274361273e84613024565b612fff565b90508281526020810184848401111561275f5761275e6134b0565b5b61276a848285613272565b509392505050565b600061278561278084613055565b612fff565b9050828152602081018484840111156127a1576127a06134b0565b5b6127ac848285613272565b509392505050565b6000813590506127c3816136df565b92915050565b6000813590506127d8816136f6565b92915050565b6000813590506127ed8161370d565b92915050565b6000815190506128028161370d565b92915050565b600082601f83011261281d5761281c6134ab565b5b813561282d848260208601612730565b91505092915050565b600082601f83011261284b5761284a6134ab565b5b813561285b848260208601612772565b91505092915050565b60008135905061287381613724565b92915050565b60006020828403121561288f5761288e6134ba565b5b600061289d848285016127b4565b91505092915050565b600080604083850312156128bd576128bc6134ba565b5b60006128cb858286016127b4565b92505060206128dc858286016127b4565b9150509250929050565b6000806000606084860312156128ff576128fe6134ba565b5b600061290d868287016127b4565b935050602061291e868287016127b4565b925050604061292f86828701612864565b9150509250925092565b60008060008060808587031215612953576129526134ba565b5b6000612961878288016127b4565b9450506020612972878288016127b4565b935050604061298387828801612864565b925050606085013567ffffffffffffffff8111156129a4576129a36134b5565b5b6129b087828801612808565b91505092959194509250565b600080604083850312156129d3576129d26134ba565b5b60006129e1858286016127b4565b92505060206129f2858286016127c9565b9150509250929050565b60008060408385031215612a1357612a126134ba565b5b6000612a21858286016127b4565b9250506020612a3285828601612864565b9150509250929050565b600060208284031215612a5257612a516134ba565b5b6000612a60848285016127de565b91505092915050565b600060208284031215612a7f57612a7e6134ba565b5b6000612a8d848285016127f3565b91505092915050565b600060208284031215612aac57612aab6134ba565b5b600082013567ffffffffffffffff811115612aca57612ac96134b5565b5b612ad684828501612836565b91505092915050565b600060208284031215612af557612af46134ba565b5b6000612b0384828501612864565b91505092915050565b612b15816131fe565b82525050565b612b2481613210565b82525050565b6000612b358261309b565b612b3f81856130b1565b9350612b4f818560208601613281565b612b58816134bf565b840191505092915050565b6000612b6e826130a6565b612b7881856130cd565b9350612b88818560208601613281565b612b91816134bf565b840191505092915050565b6000612ba7826130a6565b612bb181856130de565b9350612bc1818560208601613281565b80840191505092915050565b60008154612bda816132b4565b612be481866130de565b94506001821660008114612bff5760018114612c1057612c43565b60ff19831686528186019350612c43565b612c1985613086565b60005b83811015612c3b57815481890152600182019150602081019050612c1c565b838801955050505b50505092915050565b6000612c596010836130cd565b9150612c64826134d0565b602082019050919050565b6000612c7c6026836130cd565b9150612c87826134f9565b604082019050919050565b6000612c9f603a836130cd565b9150612caa82613548565b604082019050919050565b6000612cc2601d836130cd565b9150612ccd82613597565b602082019050919050565b6000612ce56005836130de565b9150612cf0826135c0565b600582019050919050565b6000612d086020836130cd565b9150612d13826135e9565b602082019050919050565b6000612d2b602f836130cd565b9150612d3682613612565b604082019050919050565b6000612d4e6016836130cd565b9150612d5982613661565b602082019050919050565b6000612d716000836130c2565b9150612d7c8261368a565b600082019050919050565b6000612d946003836130cd565b9150612d9f8261368d565b602082019050919050565b6000612db76009836130cd565b9150612dc2826136b6565b602082019050919050565b612dd681613268565b82525050565b6000612de88285612bcd565b9150612df48284612b9c565b9150612dff82612cd8565b91508190509392505050565b6000612e1682612d64565b9150819050919050565b6000602082019050612e356000830184612b0c565b92915050565b6000608082019050612e506000830187612b0c565b612e5d6020830186612b0c565b612e6a6040830185612dcd565b8181036060830152612e7c8184612b2a565b905095945050505050565b6000602082019050612e9c6000830184612b1b565b92915050565b60006020820190508181036000830152612ebc8184612b63565b905092915050565b60006020820190508181036000830152612edd81612c4c565b9050919050565b60006020820190508181036000830152612efd81612c6f565b9050919050565b60006020820190508181036000830152612f1d81612c92565b9050919050565b60006020820190508181036000830152612f3d81612cb5565b9050919050565b60006020820190508181036000830152612f5d81612cfb565b9050919050565b60006020820190508181036000830152612f7d81612d1e565b9050919050565b60006020820190508181036000830152612f9d81612d41565b9050919050565b60006020820190508181036000830152612fbd81612d87565b9050919050565b60006020820190508181036000830152612fdd81612daa565b9050919050565b6000602082019050612ff96000830184612dcd565b92915050565b600061300961301a565b905061301582826132e6565b919050565b6000604051905090565b600067ffffffffffffffff82111561303f5761303e61347c565b5b613048826134bf565b9050602081019050919050565b600067ffffffffffffffff8211156130705761306f61347c565b5b613079826134bf565b9050602081019050919050565b60008190508160005260206000209050919050565b600081519050919050565b600081519050919050565b600082825260208201905092915050565b600081905092915050565b600082825260208201905092915050565b600081905092915050565b60006130f482613268565b91506130ff83613268565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115613134576131336133c0565b5b828201905092915050565b600061314a82613268565b915061315583613268565b925082613165576131646133ef565b5b828204905092915050565b600061317b82613268565b915061318683613268565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff04831182151516156131bf576131be6133c0565b5b828202905092915050565b60006131d582613268565b91506131e083613268565b9250828210156131f3576131f26133c0565b5b828203905092915050565b600061320982613248565b9050919050565b60008115159050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b82818337600083830152505050565b60005b8381101561329f578082015181840152602081019050613284565b838111156132ae576000848401525b50505050565b600060028204905060018216806132cc57607f821691505b602082108114156132e0576132df61341e565b5b50919050565b6132ef826134bf565b810181811067ffffffffffffffff8211171561330e5761330d61347c565b5b80604052505050565b600061332282613268565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff821415613355576133546133c0565b5b600182019050919050565b600061336b82613268565b915061337683613268565b925082613386576133856133ef565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052600160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b7f4e6f7420456e6f75676820457468657200000000000000000000000000000000600082015250565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f416464726573733a20756e61626c6520746f2073656e642076616c75652c207260008201527f6563697069656e74206d61792068617665207265766572746564000000000000602082015250565b7f416464726573733a20696e73756666696369656e742062616c616e6365000000600082015250565b7f2e6a736f6e000000000000000000000000000000000000000000000000000000600082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008201527f6e6578697374656e7420746f6b656e0000000000000000000000000000000000602082015250565b7f4974206973206e6f742074696d6520746f206d696e7400000000000000000000600082015250565b50565b7f4f4f530000000000000000000000000000000000000000000000000000000000600082015250565b7f3130207065722074780000000000000000000000000000000000000000000000600082015250565b6136e8816131fe565b81146136f357600080fd5b50565b6136ff81613210565b811461370a57600080fd5b50565b6137168161321c565b811461372157600080fd5b50565b61372d81613268565b811461373857600080fd5b5056fea26469706673582212200d2f9b2c720062a1a5d4c8835463efa7b08f0e94b428fc5ac29a03a69909e17164736f6c6343000807003368747470733a2f2f7074747a6b692e6d7970696e6174612e636c6f75642f697066732f516d53357a3556425432665154596e664334636d58565535695534743165647354416b76774154707741577a575a2f

Deployed Bytecode

0x6080604052600436106101b75760003560e01c806370a08231116100ec578063a0712d681161008a578063c87b56dd11610064578063c87b56dd146105d9578063e41ee46a14610616578063e985e9c514610641578063f2fde38b1461067e576101b7565b8063a0712d681461056b578063a22cb46514610587578063b88d4fde146105b0576101b7565b806386478122116100c657806386478122146104bf5780638d859f3e146104ea5780638da5cb5b1461051557806395d89b4114610540576101b7565b806370a0823114610454578063715018a6146104915780637d8966e4146104a8576101b7565b806323b872dd116101595780633ccfd60b116101335780633ccfd60b1461039a57806342842e0e146103b15780634f6ccce7146103da5780636352211e14610417576101b7565b806323b872dd146103095780632f745c591461033257806332cb6b0c1461036f576101b7565b806306fdde031161019557806306fdde031461024d578063081812fc14610278578063095ea7b3146102b557806318160ddd146102de576101b7565b8063017184d9146101bc57806301ffc9a7146101e75780630675b7c614610224575b600080fd5b3480156101c857600080fd5b506101d16106a7565b6040516101de9190612fe4565b60405180910390f35b3480156101f357600080fd5b5061020e60048036038101906102099190612a3c565b6106ad565b60405161021b9190612e87565b60405180910390f35b34801561023057600080fd5b5061024b60048036038101906102469190612a96565b6107f7565b005b34801561025957600080fd5b5061026261088d565b60405161026f9190612ea2565b60405180910390f35b34801561028457600080fd5b5061029f600480360381019061029a9190612adf565b61091f565b6040516102ac9190612e20565b60405180910390f35b3480156102c157600080fd5b506102dc60048036038101906102d791906129fc565b61099b565b005b3480156102ea57600080fd5b506102f3610aa6565b6040516103009190612fe4565b60405180910390f35b34801561031557600080fd5b50610330600480360381019061032b91906128e6565b610aaf565b005b34801561033e57600080fd5b50610359600480360381019061035491906129fc565b610abf565b6040516103669190612fe4565b60405180910390f35b34801561037b57600080fd5b50610384610c80565b6040516103919190612fe4565b60405180910390f35b3480156103a657600080fd5b506103af610c86565b005b3480156103bd57600080fd5b506103d860048036038101906103d391906128e6565b610d1b565b005b3480156103e657600080fd5b5061040160048036038101906103fc9190612adf565b610d3b565b60405161040e9190612fe4565b60405180910390f35b34801561042357600080fd5b5061043e60048036038101906104399190612adf565b610d85565b60405161044b9190612e20565b60405180910390f35b34801561046057600080fd5b5061047b60048036038101906104769190612879565b610d9b565b6040516104889190612fe4565b60405180910390f35b34801561049d57600080fd5b506104a6610e7b565b005b3480156104b457600080fd5b506104bd610f03565b005b3480156104cb57600080fd5b506104d4610fab565b6040516104e19190612e87565b60405180910390f35b3480156104f657600080fd5b506104ff610fbe565b60405161050c9190612fe4565b60405180910390f35b34801561052157600080fd5b5061052a610fc9565b6040516105379190612e20565b60405180910390f35b34801561054c57600080fd5b50610555610ff3565b6040516105629190612ea2565b60405180910390f35b61058560048036038101906105809190612adf565b611085565b005b34801561059357600080fd5b506105ae60048036038101906105a991906129bc565b6111fc565b005b3480156105bc57600080fd5b506105d760048036038101906105d29190612939565b611374565b005b3480156105e557600080fd5b5061060060048036038101906105fb9190612adf565b6113c7565b60405161060d9190612ea2565b60405180910390f35b34801561062257600080fd5b5061062b611475565b6040516106389190612fe4565b60405180910390f35b34801561064d57600080fd5b50610668600480360381019061066391906128a6565b61147a565b6040516106759190612e87565b60405180910390f35b34801561068a57600080fd5b506106a560048036038101906106a09190612879565b61150e565b005b6107d081565b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916148061077857507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b806107e057507f780e9d63000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b806107f057506107ef82611606565b5b9050919050565b6107ff611670565b73ffffffffffffffffffffffffffffffffffffffff1661081d610fc9565b73ffffffffffffffffffffffffffffffffffffffff1614610873576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161086a90612f44565b60405180910390fd5b8060089080519060200190610889929190612653565b5050565b60606001805461089c906132b4565b80601f01602080910402602001604051908101604052809291908181526020018280546108c8906132b4565b80156109155780601f106108ea57610100808354040283529160200191610915565b820191906000526020600020905b8154815290600101906020018083116108f857829003601f168201915b5050505050905090565b600061092a82611678565b610960576040517fcf4700e400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6005600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b60006109a682610d85565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610a0e576040517f943f7b8c00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16610a2d611670565b73ffffffffffffffffffffffffffffffffffffffff1614158015610a5f5750610a5d81610a58611670565b61147a565b155b15610a96576040517fcfb3b94200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b610aa1838383611685565b505050565b60008054905090565b610aba838383611737565b505050565b6000610aca83610d9b565b8210610b02576040517f0ddac30e00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6000610b0c610aa6565b905060008060005b83811015610c66576000600360008381526020019081526020016000206040518060400160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815250509050600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff1614610c0657806000015192505b8773ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610c585786841415610c4f578195505050505050610c7a565b83806001019450505b508080600101915050610b14565b506000610c7657610c75613391565b5b5050505b92915050565b61271081565b610c8e611670565b73ffffffffffffffffffffffffffffffffffffffff16610cac610fc9565b73ffffffffffffffffffffffffffffffffffffffff1614610d02576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610cf990612f44565b60405180910390fd5b6000479050610d18610d12610fc9565b82611c5c565b50565b610d3683838360405180602001604052806000815250611374565b505050565b6000610d45610aa6565b8210610d7d576040517fa723001c00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b819050919050565b6000610d9082611d50565b600001519050919050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415610e03576040517f8f4eb60400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600460008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160009054906101000a90046fffffffffffffffffffffffffffffffff166fffffffffffffffffffffffffffffffff169050919050565b610e83611670565b73ffffffffffffffffffffffffffffffffffffffff16610ea1610fc9565b73ffffffffffffffffffffffffffffffffffffffff1614610ef7576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610eee90612f44565b60405180910390fd5b610f016000611ed8565b565b610f0b611670565b73ffffffffffffffffffffffffffffffffffffffff16610f29610fc9565b73ffffffffffffffffffffffffffffffffffffffff1614610f7f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f7690612f44565b60405180910390fd5b600760149054906101000a900460ff1615600760146101000a81548160ff021916908315150217905550565b600760149054906101000a900460ff1681565b660e35fa931a000081565b6000600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b606060028054611002906132b4565b80601f016020809104026020016040519081016040528092919081815260200182805461102e906132b4565b801561107b5780601f106110505761010080835404028352916020019161107b565b820191906000526020600020905b81548152906001019060200180831161105e57829003601f168201915b5050505050905090565b600a8111156110c9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110c090612fc4565b60405180910390fd5b612710816110d5610aa6565b6110df91906130e9565b1115611120576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161111790612fa4565b60405180910390fd5b600760149054906101000a900460ff1661116f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161116690612f84565b60405180910390fd5b6107d08161117b610aa6565b61118591906130e9565b11611199576111943382611f9e565b6111f9565b80660e35fa931a00006111ac9190613170565b3410156111ee576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111e590612ec4565b60405180910390fd5b6111f83382611f9e565b5b50565b611204611670565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611269576040517fb06307db00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8060066000611276611670565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff16611323611670565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31836040516113689190612e87565b60405180910390a35050565b61137f848484611737565b61138b84848484611fbc565b6113c1576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b50505050565b60606113d282611678565b611411576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161140890612f64565b60405180910390fd5b6000829050600060088054611425906132b4565b905011611441576040518060200160405280600081525061146d565b600861144c8261214a565b60405160200161145d929190612ddc565b6040516020818303038152906040525b915050919050565b600a81565b6000600660008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b611516611670565b73ffffffffffffffffffffffffffffffffffffffff16611534610fc9565b73ffffffffffffffffffffffffffffffffffffffff161461158a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161158190612f44565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614156115fa576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115f190612ee4565b60405180910390fd5b61160381611ed8565b50565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b600033905090565b6000805482109050919050565b826005600084815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b600061174282611d50565b90506000816000015173ffffffffffffffffffffffffffffffffffffffff16611769611670565b73ffffffffffffffffffffffffffffffffffffffff1614806117c5575061178e611670565b73ffffffffffffffffffffffffffffffffffffffff166117ad8461091f565b73ffffffffffffffffffffffffffffffffffffffff16145b806117e157506117e082600001516117db611670565b61147a565b5b90508061181a576040517f59c896be00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8473ffffffffffffffffffffffffffffffffffffffff16826000015173ffffffffffffffffffffffffffffffffffffffff1614611883576040517fa114810000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1614156118ea576040517fea553b3400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6118f785858560016122ab565b6119076000848460000151611685565b6001600460008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a90046fffffffffffffffffffffffffffffffff160392506101000a8154816fffffffffffffffffffffffffffffffff02191690836fffffffffffffffffffffffffffffffff1602179055506001600460008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a90046fffffffffffffffffffffffffffffffff160192506101000a8154816fffffffffffffffffffffffffffffffff02191690836fffffffffffffffffffffffffffffffff160217905550836003600085815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550426003600085815260200190815260200160002060000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055506000600184019050600073ffffffffffffffffffffffffffffffffffffffff166003600083815260200190815260200160002060000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff161415611bec57611b4b81611678565b15611beb5782600001516003600083815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555082602001516003600083815260200190815260200160002060000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055505b5b50828473ffffffffffffffffffffffffffffffffffffffff168673ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4611c5585858560016122b1565b5050505050565b80471015611c9f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c9690612f24565b60405180910390fd5b60008273ffffffffffffffffffffffffffffffffffffffff1682604051611cc590612e0b565b60006040518083038185875af1925050503d8060008114611d02576040519150601f19603f3d011682016040523d82523d6000602084013e611d07565b606091505b5050905080611d4b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d4290612f04565b60405180910390fd5b505050565b611d586126d9565b611d6182611678565b611d97576040517fdf2d9b4200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b60008290505b60008110611ea0576000600360008381526020019081526020016000206040518060400160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815250509050600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff1614611e91578092505050611ed3565b50808060019003915050611d9d565b506040517fe7c0edfb00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b919050565b6000600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600760006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b611fb88282604051806020016040528060008152506122b7565b5050565b6000611fdd8473ffffffffffffffffffffffffffffffffffffffff166122c9565b1561213d578373ffffffffffffffffffffffffffffffffffffffff1663150b7a02612006611670565b8786866040518563ffffffff1660e01b81526004016120289493929190612e3b565b602060405180830381600087803b15801561204257600080fd5b505af192505050801561207357506040513d601f19601f820116820180604052508101906120709190612a69565b60015b6120ed573d80600081146120a3576040519150601f19603f3d011682016040523d82523d6000602084013e6120a8565b606091505b506000815114156120e5576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050612142565b600190505b949350505050565b60606000821415612192576040518060400160405280600181526020017f300000000000000000000000000000000000000000000000000000000000000081525090506122a6565b600082905060005b600082146121c45780806121ad90613317565b915050600a826121bd919061313f565b915061219a565b60008167ffffffffffffffff8111156121e0576121df61347c565b5b6040519080825280601f01601f1916602001820160405280156122125781602001600182028036833780820191505090505b5090505b6000851461229f5760018261222b91906131ca565b9150600a8561223a9190613360565b603061224691906130e9565b60f81b81838151811061225c5761225b61344d565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a85612298919061313f565b9450612216565b8093505050505b919050565b50505050565b50505050565b6122c483838360016122ec565b505050565b6000808273ffffffffffffffffffffffffffffffffffffffff163b119050919050565b600080549050600073ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff161415612359576040517f2e07630000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6000841415612394576040517fb562e8dd00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6123a160008683876122ab565b83600460008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a90046fffffffffffffffffffffffffffffffff160192506101000a8154816fffffffffffffffffffffffffffffffff02191690836fffffffffffffffffffffffffffffffff16021790555083600460008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160108282829054906101000a90046fffffffffffffffffffffffffffffffff160192506101000a8154816fffffffffffffffffffffffffffffffff02191690836fffffffffffffffffffffffffffffffff160217905550846003600083815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550426003600083815260200190815260200160002060000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff160217905550600081905060005b8581101561263657818773ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a48380156125ea57506125e86000888488611fbc565b155b15612621576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8180600101925050808060010191505061256f565b50806000819055505061264c60008683876122b1565b5050505050565b82805461265f906132b4565b90600052602060002090601f01602090048101928261268157600085556126c8565b82601f1061269a57805160ff19168380011785556126c8565b828001600101855582156126c8579182015b828111156126c75782518255916020019190600101906126ac565b5b5090506126d59190612713565b5090565b6040518060400160405280600073ffffffffffffffffffffffffffffffffffffffff168152602001600067ffffffffffffffff1681525090565b5b8082111561272c576000816000905550600101612714565b5090565b600061274361273e84613024565b612fff565b90508281526020810184848401111561275f5761275e6134b0565b5b61276a848285613272565b509392505050565b600061278561278084613055565b612fff565b9050828152602081018484840111156127a1576127a06134b0565b5b6127ac848285613272565b509392505050565b6000813590506127c3816136df565b92915050565b6000813590506127d8816136f6565b92915050565b6000813590506127ed8161370d565b92915050565b6000815190506128028161370d565b92915050565b600082601f83011261281d5761281c6134ab565b5b813561282d848260208601612730565b91505092915050565b600082601f83011261284b5761284a6134ab565b5b813561285b848260208601612772565b91505092915050565b60008135905061287381613724565b92915050565b60006020828403121561288f5761288e6134ba565b5b600061289d848285016127b4565b91505092915050565b600080604083850312156128bd576128bc6134ba565b5b60006128cb858286016127b4565b92505060206128dc858286016127b4565b9150509250929050565b6000806000606084860312156128ff576128fe6134ba565b5b600061290d868287016127b4565b935050602061291e868287016127b4565b925050604061292f86828701612864565b9150509250925092565b60008060008060808587031215612953576129526134ba565b5b6000612961878288016127b4565b9450506020612972878288016127b4565b935050604061298387828801612864565b925050606085013567ffffffffffffffff8111156129a4576129a36134b5565b5b6129b087828801612808565b91505092959194509250565b600080604083850312156129d3576129d26134ba565b5b60006129e1858286016127b4565b92505060206129f2858286016127c9565b9150509250929050565b60008060408385031215612a1357612a126134ba565b5b6000612a21858286016127b4565b9250506020612a3285828601612864565b9150509250929050565b600060208284031215612a5257612a516134ba565b5b6000612a60848285016127de565b91505092915050565b600060208284031215612a7f57612a7e6134ba565b5b6000612a8d848285016127f3565b91505092915050565b600060208284031215612aac57612aab6134ba565b5b600082013567ffffffffffffffff811115612aca57612ac96134b5565b5b612ad684828501612836565b91505092915050565b600060208284031215612af557612af46134ba565b5b6000612b0384828501612864565b91505092915050565b612b15816131fe565b82525050565b612b2481613210565b82525050565b6000612b358261309b565b612b3f81856130b1565b9350612b4f818560208601613281565b612b58816134bf565b840191505092915050565b6000612b6e826130a6565b612b7881856130cd565b9350612b88818560208601613281565b612b91816134bf565b840191505092915050565b6000612ba7826130a6565b612bb181856130de565b9350612bc1818560208601613281565b80840191505092915050565b60008154612bda816132b4565b612be481866130de565b94506001821660008114612bff5760018114612c1057612c43565b60ff19831686528186019350612c43565b612c1985613086565b60005b83811015612c3b57815481890152600182019150602081019050612c1c565b838801955050505b50505092915050565b6000612c596010836130cd565b9150612c64826134d0565b602082019050919050565b6000612c7c6026836130cd565b9150612c87826134f9565b604082019050919050565b6000612c9f603a836130cd565b9150612caa82613548565b604082019050919050565b6000612cc2601d836130cd565b9150612ccd82613597565b602082019050919050565b6000612ce56005836130de565b9150612cf0826135c0565b600582019050919050565b6000612d086020836130cd565b9150612d13826135e9565b602082019050919050565b6000612d2b602f836130cd565b9150612d3682613612565b604082019050919050565b6000612d4e6016836130cd565b9150612d5982613661565b602082019050919050565b6000612d716000836130c2565b9150612d7c8261368a565b600082019050919050565b6000612d946003836130cd565b9150612d9f8261368d565b602082019050919050565b6000612db76009836130cd565b9150612dc2826136b6565b602082019050919050565b612dd681613268565b82525050565b6000612de88285612bcd565b9150612df48284612b9c565b9150612dff82612cd8565b91508190509392505050565b6000612e1682612d64565b9150819050919050565b6000602082019050612e356000830184612b0c565b92915050565b6000608082019050612e506000830187612b0c565b612e5d6020830186612b0c565b612e6a6040830185612dcd565b8181036060830152612e7c8184612b2a565b905095945050505050565b6000602082019050612e9c6000830184612b1b565b92915050565b60006020820190508181036000830152612ebc8184612b63565b905092915050565b60006020820190508181036000830152612edd81612c4c565b9050919050565b60006020820190508181036000830152612efd81612c6f565b9050919050565b60006020820190508181036000830152612f1d81612c92565b9050919050565b60006020820190508181036000830152612f3d81612cb5565b9050919050565b60006020820190508181036000830152612f5d81612cfb565b9050919050565b60006020820190508181036000830152612f7d81612d1e565b9050919050565b60006020820190508181036000830152612f9d81612d41565b9050919050565b60006020820190508181036000830152612fbd81612d87565b9050919050565b60006020820190508181036000830152612fdd81612daa565b9050919050565b6000602082019050612ff96000830184612dcd565b92915050565b600061300961301a565b905061301582826132e6565b919050565b6000604051905090565b600067ffffffffffffffff82111561303f5761303e61347c565b5b613048826134bf565b9050602081019050919050565b600067ffffffffffffffff8211156130705761306f61347c565b5b613079826134bf565b9050602081019050919050565b60008190508160005260206000209050919050565b600081519050919050565b600081519050919050565b600082825260208201905092915050565b600081905092915050565b600082825260208201905092915050565b600081905092915050565b60006130f482613268565b91506130ff83613268565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115613134576131336133c0565b5b828201905092915050565b600061314a82613268565b915061315583613268565b925082613165576131646133ef565b5b828204905092915050565b600061317b82613268565b915061318683613268565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff04831182151516156131bf576131be6133c0565b5b828202905092915050565b60006131d582613268565b91506131e083613268565b9250828210156131f3576131f26133c0565b5b828203905092915050565b600061320982613248565b9050919050565b60008115159050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b82818337600083830152505050565b60005b8381101561329f578082015181840152602081019050613284565b838111156132ae576000848401525b50505050565b600060028204905060018216806132cc57607f821691505b602082108114156132e0576132df61341e565b5b50919050565b6132ef826134bf565b810181811067ffffffffffffffff8211171561330e5761330d61347c565b5b80604052505050565b600061332282613268565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff821415613355576133546133c0565b5b600182019050919050565b600061336b82613268565b915061337683613268565b925082613386576133856133ef565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052600160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b7f4e6f7420456e6f75676820457468657200000000000000000000000000000000600082015250565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f416464726573733a20756e61626c6520746f2073656e642076616c75652c207260008201527f6563697069656e74206d61792068617665207265766572746564000000000000602082015250565b7f416464726573733a20696e73756666696369656e742062616c616e6365000000600082015250565b7f2e6a736f6e000000000000000000000000000000000000000000000000000000600082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008201527f6e6578697374656e7420746f6b656e0000000000000000000000000000000000602082015250565b7f4974206973206e6f742074696d6520746f206d696e7400000000000000000000600082015250565b50565b7f4f4f530000000000000000000000000000000000000000000000000000000000600082015250565b7f3130207065722074780000000000000000000000000000000000000000000000600082015250565b6136e8816131fe565b81146136f357600080fd5b50565b6136ff81613210565b811461370a57600080fd5b50565b6137168161321c565b811461372157600080fd5b50565b61372d81613268565b811461373857600080fd5b5056fea26469706673582212200d2f9b2c720062a1a5d4c8835463efa7b08f0e94b428fc5ac29a03a69909e17164736f6c63430008070033

Deployed Bytecode Sourcemap

40761:1770:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;40997:42;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;27973:372;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;42154:116;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;29789:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;31266:204;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;30855:345;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;26240:101;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;32123:170;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;26894:1007;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;40849:42;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;42368:156;;;;;;;;;;;;;:::i;:::-;;32364:185;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;26418:176;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;29598:124;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;28409:206;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;4730:103;;;;;;;;;;;;;:::i;:::-;;42278:80;;;;;;;;;;;;;:::i;:::-;;41048:28;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;40898:42;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;4079:87;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;29958:104;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;41278:514;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;31542:279;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;32620:308;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;41802:344;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;40949:41;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;31892:164;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;4988:201;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;40997:42;41035:4;40997:42;:::o;27973:372::-;28075:4;28127:25;28112:40;;;:11;:40;;;;:105;;;;28184:33;28169:48;;;:11;:48;;;;28112:105;:172;;;;28249:35;28234:50;;;:11;:50;;;;28112:172;:225;;;;28301:36;28325:11;28301:23;:36::i;:::-;28112:225;28092:245;;27973:372;;;:::o;42154:116::-;4310:12;:10;:12::i;:::-;4299:23;;:7;:5;:7::i;:::-;:23;;;4291:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;42249:13:::1;42234:12;:28;;;;;;;;;;;;:::i;:::-;;42154:116:::0;:::o;29789:100::-;29843:13;29876:5;29869:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;29789:100;:::o;31266:204::-;31334:7;31359:16;31367:7;31359;:16::i;:::-;31354:64;;31384:34;;;;;;;;;;;;;;31354:64;31438:15;:24;31454:7;31438:24;;;;;;;;;;;;;;;;;;;;;31431:31;;31266:204;;;:::o;30855:345::-;30928:13;30944:24;30960:7;30944:15;:24::i;:::-;30928:40;;30989:5;30983:11;;:2;:11;;;30979:48;;;31003:24;;;;;;;;;;;;;;30979:48;31060:5;31044:21;;:12;:10;:12::i;:::-;:21;;;;:63;;;;;31070:37;31087:5;31094:12;:10;:12::i;:::-;31070:16;:37::i;:::-;31069:38;31044:63;31040:111;;;31116:35;;;;;;;;;;;;;;31040:111;31164:28;31173:2;31177:7;31186:5;31164:8;:28::i;:::-;30917:283;30855:345;;:::o;26240:101::-;26293:7;26320:13;;26313:20;;26240:101;:::o;32123:170::-;32257:28;32267:4;32273:2;32277:7;32257:9;:28::i;:::-;32123:170;;;:::o;26894:1007::-;26983:7;27016:16;27026:5;27016:9;:16::i;:::-;27007:5;:25;27003:61;;27041:23;;;;;;;;;;;;;;27003:61;27075:22;27100:13;:11;:13::i;:::-;27075:38;;27124:19;27154:25;27343:9;27338:466;27358:14;27354:1;:18;27338:466;;;27398:31;27432:11;:14;27444:1;27432:14;;;;;;;;;;;27398:48;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;27495:1;27469:28;;:9;:14;;;:28;;;27465:111;;27542:9;:14;;;27522:34;;27465:111;27619:5;27598:26;;:17;:26;;;27594:195;;;27668:5;27653:11;:20;27649:85;;;27709:1;27702:8;;;;;;;;;27649:85;27756:13;;;;;;;27594:195;27379:425;27374:3;;;;;;;27338:466;;;;27887:5;27880:13;;;;:::i;:::-;;26992:909;;;26894:1007;;;;;:::o;40849:42::-;40886:5;40849:42;:::o;42368:156::-;4310:12;:10;:12::i;:::-;4299:23;;:7;:5;:7::i;:::-;:23;;;4291:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;42420:15:::1;42438:21;42420:39;;42472:44;42498:7;:5;:7::i;:::-;42508;42472:17;:44::i;:::-;42407:117;42368:156::o:0;32364:185::-;32502:39;32519:4;32525:2;32529:7;32502:39;;;;;;;;;;;;:16;:39::i;:::-;32364:185;;;:::o;26418:176::-;26485:7;26518:13;:11;:13::i;:::-;26509:5;:22;26505:58;;26540:23;;;;;;;;;;;;;;26505:58;26581:5;26574:12;;26418:176;;;:::o;29598:124::-;29662:7;29689:20;29701:7;29689:11;:20::i;:::-;:25;;;29682:32;;29598:124;;;:::o;28409:206::-;28473:7;28514:1;28497:19;;:5;:19;;;28493:60;;;28525:28;;;;;;;;;;;;;;28493:60;28579:12;:19;28592:5;28579:19;;;;;;;;;;;;;;;:27;;;;;;;;;;;;28571:36;;28564:43;;28409:206;;;:::o;4730:103::-;4310:12;:10;:12::i;:::-;4299:23;;:7;:5;:7::i;:::-;:23;;;4291:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;4795:30:::1;4822:1;4795:18;:30::i;:::-;4730:103::o:0;42278:80::-;4310:12;:10;:12::i;:::-;4299:23;;:7;:5;:7::i;:::-;:23;;;4291:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;42342:8:::1;;;;;;;;;;;42341:9;42330:8;;:20;;;;;;;;;;;;;;;;;;42278:80::o:0;41048:28::-;;;;;;;;;;;;;:::o;40898:42::-;40930:10;40898:42;:::o;4079:87::-;4125:7;4152:6;;;;;;;;;;;4145:13;;4079:87;:::o;29958:104::-;30014:13;30047:7;30040:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;29958:104;:::o;41278:514::-;40988:2;41349:9;:25;;41341:47;;;;;;;;;;;;:::i;:::-;;;;;;;;;40886:5;41424:9;41408:13;:11;:13::i;:::-;:25;;;;:::i;:::-;41407:41;;41399:57;;;;;;;;;;;;:::i;:::-;;;;;;;;;41475:8;;;;;;;;;;;41467:43;;;;;;;;;;;;:::i;:::-;;;;;;;;;41035:4;41546:9;41530:13;:11;:13::i;:::-;:25;;;;:::i;:::-;41529:42;41525:256;;41590:32;41600:10;41612:9;41590;:32::i;:::-;41525:256;;;41689:9;40930:10;41681:17;;;;:::i;:::-;41667:9;:32;;41659:61;;;;;;;;;;;;:::i;:::-;;;;;;;;;41735:32;41745:10;41757:9;41735;:32::i;:::-;41525:256;41278:514;:::o;31542:279::-;31645:12;:10;:12::i;:::-;31633:24;;:8;:24;;;31629:54;;;31666:17;;;;;;;;;;;;;;31629:54;31741:8;31696:18;:32;31715:12;:10;:12::i;:::-;31696:32;;;;;;;;;;;;;;;:42;31729:8;31696:42;;;;;;;;;;;;;;;;:53;;;;;;;;;;;;;;;;;;31794:8;31765:48;;31780:12;:10;:12::i;:::-;31765:48;;;31804:8;31765:48;;;;;;:::i;:::-;;;;;;;;31542:279;;:::o;32620:308::-;32779:28;32789:4;32795:2;32799:7;32779:9;:28::i;:::-;32823:48;32846:4;32852:2;32856:7;32865:5;32823:22;:48::i;:::-;32818:102;;32880:40;;;;;;;;;;;;;;32818:102;32620:308;;;;:::o;41802:344::-;41875:13;41909:16;41917:7;41909;:16::i;:::-;41901:76;;;;;;;;;;;;:::i;:::-;;;;;;;;;41990:14;42007:7;41990:24;;42063:1;42040:12;42034:26;;;;;:::i;:::-;;;:30;:104;;;;;;;;;;;;;;;;;42091:12;42105:17;:6;:15;:17::i;:::-;42074:58;;;;;;;;;:::i;:::-;;;;;;;;;;;;;42034:104;42027:111;;;41802:344;;;:::o;40949:41::-;40988:2;40949:41;:::o;31892:164::-;31989:4;32013:18;:25;32032:5;32013:25;;;;;;;;;;;;;;;:35;32039:8;32013:35;;;;;;;;;;;;;;;;;;;;;;;;;32006:42;;31892:164;;;;:::o;4988:201::-;4310:12;:10;:12::i;:::-;4299:23;;:7;:5;:7::i;:::-;:23;;;4291:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;5097:1:::1;5077:22;;:8;:22;;;;5069:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;5153:28;5172:8;5153:18;:28::i;:::-;4988:201:::0;:::o;16886:157::-;16971:4;17010:25;16995:40;;;:11;:40;;;;16988:47;;16886:157;;;:::o;2803:98::-;2856:7;2883:10;2876:17;;2803:98;:::o;33183:112::-;33240:4;33274:13;;33264:7;:23;33257:30;;33183:112;;;:::o;37946:196::-;38088:2;38061:15;:24;38077:7;38061:24;;;;;;;;;;;;:29;;;;;;;;;;;;;;;;;;38126:7;38122:2;38106:28;;38115:5;38106:28;;;;;;;;;;;;37946:196;;;:::o;35866:1962::-;35981:35;36019:20;36031:7;36019:11;:20::i;:::-;35981:58;;36052:22;36094:13;:18;;;36078:34;;:12;:10;:12::i;:::-;:34;;;:87;;;;36153:12;:10;:12::i;:::-;36129:36;;:20;36141:7;36129:11;:20::i;:::-;:36;;;36078:87;:154;;;;36182:50;36199:13;:18;;;36219:12;:10;:12::i;:::-;36182:16;:50::i;:::-;36078:154;36052:181;;36251:17;36246:66;;36277:35;;;;;;;;;;;;;;36246:66;36349:4;36327:26;;:13;:18;;;:26;;;36323:67;;36362:28;;;;;;;;;;;;;;36323:67;36419:1;36405:16;;:2;:16;;;36401:52;;;36430:23;;;;;;;;;;;;;;36401:52;36466:43;36488:4;36494:2;36498:7;36507:1;36466:21;:43::i;:::-;36574:49;36591:1;36595:7;36604:13;:18;;;36574:8;:49::i;:::-;36949:1;36919:12;:18;36932:4;36919:18;;;;;;;;;;;;;;;:26;;;:31;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;36993:1;36965:12;:16;36978:2;36965:16;;;;;;;;;;;;;;;:24;;;:29;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;37039:2;37011:11;:20;37023:7;37011:20;;;;;;;;;;;:25;;;:30;;;;;;;;;;;;;;;;;;37101:15;37056:11;:20;37068:7;37056:20;;;;;;;;;;;:35;;;:61;;;;;;;;;;;;;;;;;;37369:19;37401:1;37391:7;:11;37369:33;;37462:1;37421:43;;:11;:24;37433:11;37421:24;;;;;;;;;;;:29;;;;;;;;;;;;:43;;;37417:295;;;37489:20;37497:11;37489:7;:20::i;:::-;37485:212;;;37566:13;:18;;;37534:11;:24;37546:11;37534:24;;;;;;;;;;;:29;;;:50;;;;;;;;;;;;;;;;;;37649:13;:28;;;37607:11;:24;37619:11;37607:24;;;;;;;;;;;:39;;;:70;;;;;;;;;;;;;;;;;;37485:212;37417:295;36894:829;37759:7;37755:2;37740:27;;37749:4;37740:27;;;;;;;;;;;;37778:42;37799:4;37805:2;37809:7;37818:1;37778:20;:42::i;:::-;35970:1858;;35866:1962;;;:::o;8041:317::-;8156:6;8131:21;:31;;8123:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;8210:12;8228:9;:14;;8250:6;8228:33;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;8209:52;;;8280:7;8272:78;;;;;;;;;;;;:::i;:::-;;;;;;;;;8112:246;8041:317;;:::o;29032:504::-;29093:21;;:::i;:::-;29132:16;29140:7;29132;:16::i;:::-;29127:61;;29157:31;;;;;;;;;;;;;;29127:61;29231:12;29246:7;29231:22;;29226:245;29263:1;29255:4;:9;29226:245;;29293:31;29327:11;:17;29339:4;29327:17;;;;;;;;;;;29293:51;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;29393:1;29367:28;;:9;:14;;;:28;;;29363:93;;29427:9;29420:16;;;;;;29363:93;29274:197;29266:6;;;;;;;;29226:245;;;;29501:27;;;;;;;;;;;;;;29032:504;;;;:::o;5349:191::-;5423:16;5442:6;;;;;;;;;;;5423:25;;5468:8;5459:6;;:17;;;;;;;;;;;;;;;;;;5523:8;5492:40;;5513:8;5492:40;;;;;;;;;;;;5412:128;5349:191;:::o;33303:104::-;33372:27;33382:2;33386:8;33372:27;;;;;;;;;;;;:9;:27::i;:::-;33303:104;;:::o;38707:765::-;38862:4;38883:15;:2;:13;;;:15::i;:::-;38879:586;;;38935:2;38919:36;;;38956:12;:10;:12::i;:::-;38970:4;38976:7;38985:5;38919:72;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;38915:495;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;39182:1;39165:6;:13;:18;39161:234;;;39192:40;;;;;;;;;;;;;;39161:234;39345:6;39339:13;39330:6;39326:2;39322:15;39315:38;38915:495;39052:45;;;39042:55;;;:6;:55;;;;39035:62;;;;;38879:586;39449:4;39442:11;;38707:765;;;;;;;:::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;39960:159::-;;;;;:::o;40531:158::-;;;;;:::o;33770:163::-;33893:32;33899:2;33903:8;33913:5;33920:4;33893:5;:32::i;:::-;33770:163;;;:::o;6780:326::-;6840:4;7097:1;7075:7;:19;;;:23;7068:30;;6780:326;;;:::o;34192:1420::-;34331:20;34354:13;;34331:36;;34396:1;34382:16;;:2;:16;;;34378:48;;;34407:19;;;;;;;;;;;;;;34378:48;34453:1;34441:8;:13;34437:44;;;34463:18;;;;;;;;;;;;;;34437:44;34494:61;34524:1;34528:2;34532:12;34546:8;34494:21;:61::i;:::-;34870:8;34834:12;:16;34847:2;34834:16;;;;;;;;;;;;;;;:24;;;:45;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;34935:8;34894:12;:16;34907:2;34894:16;;;;;;;;;;;;;;;:29;;;:50;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;34994:2;34961:11;:25;34973:12;34961:25;;;;;;;;;;;:30;;;:35;;;;;;;;;;;;;;;;;;35061:15;35011:11;:25;35023:12;35011:25;;;;;;;;;;;:40;;;:66;;;;;;;;;;;;;;;;;;35094:20;35117:12;35094:35;;35151:9;35146:330;35166:8;35162:1;:12;35146:330;;;35230:12;35226:2;35205:38;;35222:1;35205:38;;;;;;;;;;;;35266:4;:68;;;;;35275:59;35306:1;35310:2;35314:12;35328:5;35275:22;:59::i;:::-;35274:60;35266:68;35262:164;;;35366:40;;;;;;;;;;;;;;35262:164;35446:14;;;;;;;35176:3;;;;;;;35146:330;;;;35508:12;35492:13;:28;;;;34809:723;35544:60;35573:1;35577:2;35581:12;35595:8;35544:20;:60::i;:::-;34320:1292;34192:1420;;;;:::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;8540:845::-;8643:3;8680:5;8674:12;8709:36;8735:9;8709:36;:::i;:::-;8761:89;8843:6;8838:3;8761:89;:::i;:::-;8754:96;;8881:1;8870:9;8866:17;8897:1;8892:137;;;;9043:1;9038:341;;;;8859:520;;8892:137;8976:4;8972:9;8961;8957:25;8952:3;8945:38;9012:6;9007:3;9003:16;8996:23;;8892:137;;9038:341;9105:38;9137:5;9105:38;:::i;:::-;9165:1;9179:154;9193:6;9190:1;9187:13;9179:154;;;9267:7;9261:14;9257:1;9252:3;9248:11;9241:35;9317:1;9308:7;9304:15;9293:26;;9215:4;9212:1;9208:12;9203:17;;9179:154;;;9362:6;9357:3;9353:16;9346:23;;9045:334;;8859:520;;8647:738;;8540:845;;;;:::o;9391:366::-;9533:3;9554:67;9618:2;9613:3;9554:67;:::i;:::-;9547:74;;9630:93;9719:3;9630:93;:::i;:::-;9748:2;9743:3;9739:12;9732:19;;9391:366;;;:::o;9763:::-;9905:3;9926:67;9990:2;9985:3;9926:67;:::i;:::-;9919:74;;10002:93;10091:3;10002:93;:::i;:::-;10120:2;10115:3;10111:12;10104:19;;9763:366;;;:::o;10135:::-;10277:3;10298:67;10362:2;10357:3;10298:67;:::i;:::-;10291:74;;10374:93;10463:3;10374:93;:::i;:::-;10492:2;10487:3;10483:12;10476:19;;10135:366;;;:::o;10507:::-;10649:3;10670:67;10734:2;10729:3;10670:67;:::i;:::-;10663:74;;10746:93;10835:3;10746:93;:::i;:::-;10864:2;10859:3;10855:12;10848:19;;10507:366;;;:::o;10879:400::-;11039:3;11060:84;11142:1;11137:3;11060:84;:::i;:::-;11053:91;;11153:93;11242:3;11153:93;:::i;:::-;11271:1;11266:3;11262:11;11255:18;;10879:400;;;:::o;11285:366::-;11427:3;11448:67;11512:2;11507:3;11448:67;:::i;:::-;11441:74;;11524:93;11613:3;11524:93;:::i;:::-;11642:2;11637:3;11633:12;11626:19;;11285:366;;;:::o;11657:::-;11799:3;11820:67;11884:2;11879:3;11820:67;:::i;:::-;11813:74;;11896:93;11985:3;11896:93;:::i;:::-;12014:2;12009:3;12005:12;11998:19;;11657:366;;;:::o;12029:::-;12171:3;12192:67;12256:2;12251:3;12192:67;:::i;:::-;12185:74;;12268:93;12357:3;12268:93;:::i;:::-;12386:2;12381:3;12377:12;12370:19;;12029:366;;;:::o;12401:398::-;12560:3;12581:83;12662:1;12657:3;12581:83;:::i;:::-;12574:90;;12673:93;12762:3;12673:93;:::i;:::-;12791:1;12786:3;12782:11;12775:18;;12401:398;;;:::o;12805:365::-;12947:3;12968:66;13032:1;13027:3;12968:66;:::i;:::-;12961:73;;13043:93;13132:3;13043:93;:::i;:::-;13161:2;13156:3;13152:12;13145:19;;12805:365;;;:::o;13176:::-;13318:3;13339:66;13403:1;13398:3;13339:66;:::i;:::-;13332:73;;13414:93;13503:3;13414:93;:::i;:::-;13532:2;13527:3;13523:12;13516:19;;13176:365;;;:::o;13547:118::-;13634:24;13652:5;13634:24;:::i;:::-;13629:3;13622:37;13547:118;;:::o;13671:695::-;13949:3;13971:92;14059:3;14050:6;13971:92;:::i;:::-;13964:99;;14080:95;14171:3;14162:6;14080:95;:::i;:::-;14073:102;;14192:148;14336:3;14192:148;:::i;:::-;14185:155;;14357:3;14350:10;;13671:695;;;;;:::o;14372:379::-;14556:3;14578:147;14721:3;14578:147;:::i;:::-;14571:154;;14742:3;14735:10;;14372:379;;;:::o;14757:222::-;14850:4;14888:2;14877:9;14873:18;14865:26;;14901:71;14969:1;14958:9;14954:17;14945:6;14901:71;:::i;:::-;14757:222;;;;:::o;14985:640::-;15180:4;15218:3;15207:9;15203:19;15195:27;;15232:71;15300:1;15289:9;15285:17;15276:6;15232:71;:::i;:::-;15313:72;15381:2;15370:9;15366:18;15357:6;15313:72;:::i;:::-;15395;15463:2;15452:9;15448:18;15439:6;15395:72;:::i;:::-;15514:9;15508:4;15504:20;15499:2;15488:9;15484:18;15477:48;15542:76;15613:4;15604:6;15542:76;:::i;:::-;15534:84;;14985:640;;;;;;;:::o;15631:210::-;15718:4;15756:2;15745:9;15741:18;15733:26;;15769:65;15831:1;15820:9;15816:17;15807:6;15769:65;:::i;:::-;15631:210;;;;:::o;15847:313::-;15960:4;15998:2;15987:9;15983:18;15975:26;;16047:9;16041:4;16037:20;16033:1;16022:9;16018:17;16011:47;16075:78;16148:4;16139:6;16075:78;:::i;:::-;16067:86;;15847:313;;;;:::o;16166:419::-;16332:4;16370:2;16359:9;16355:18;16347:26;;16419:9;16413:4;16409:20;16405:1;16394:9;16390:17;16383:47;16447:131;16573:4;16447:131;:::i;:::-;16439:139;;16166:419;;;:::o;16591:::-;16757:4;16795:2;16784:9;16780:18;16772:26;;16844:9;16838:4;16834:20;16830:1;16819:9;16815:17;16808:47;16872:131;16998:4;16872:131;:::i;:::-;16864:139;;16591:419;;;:::o;17016:::-;17182:4;17220:2;17209:9;17205:18;17197:26;;17269:9;17263:4;17259:20;17255:1;17244:9;17240:17;17233:47;17297:131;17423:4;17297:131;:::i;:::-;17289:139;;17016:419;;;:::o;17441:::-;17607:4;17645:2;17634:9;17630:18;17622:26;;17694:9;17688:4;17684:20;17680:1;17669:9;17665:17;17658:47;17722:131;17848:4;17722:131;:::i;:::-;17714:139;;17441:419;;;:::o;17866:::-;18032:4;18070:2;18059:9;18055:18;18047:26;;18119:9;18113:4;18109:20;18105:1;18094:9;18090:17;18083:47;18147:131;18273:4;18147:131;:::i;:::-;18139:139;;17866:419;;;:::o;18291:::-;18457:4;18495:2;18484:9;18480:18;18472:26;;18544:9;18538:4;18534:20;18530:1;18519:9;18515:17;18508:47;18572:131;18698:4;18572:131;:::i;:::-;18564:139;;18291:419;;;:::o;18716:::-;18882:4;18920:2;18909:9;18905:18;18897:26;;18969:9;18963:4;18959:20;18955:1;18944:9;18940:17;18933:47;18997:131;19123:4;18997:131;:::i;:::-;18989:139;;18716:419;;;:::o;19141:::-;19307:4;19345:2;19334:9;19330:18;19322:26;;19394:9;19388:4;19384:20;19380:1;19369:9;19365:17;19358:47;19422:131;19548:4;19422:131;:::i;:::-;19414:139;;19141:419;;;:::o;19566:::-;19732:4;19770:2;19759:9;19755:18;19747:26;;19819:9;19813:4;19809:20;19805:1;19794:9;19790:17;19783:47;19847:131;19973:4;19847:131;:::i;:::-;19839:139;;19566:419;;;:::o;19991:222::-;20084:4;20122:2;20111:9;20107:18;20099:26;;20135:71;20203:1;20192:9;20188:17;20179:6;20135:71;:::i;:::-;19991:222;;;;:::o;20219:129::-;20253:6;20280:20;;:::i;:::-;20270:30;;20309:33;20337:4;20329:6;20309:33;:::i;:::-;20219:129;;;:::o;20354:75::-;20387:6;20420:2;20414:9;20404:19;;20354:75;:::o;20435:307::-;20496:4;20586:18;20578:6;20575:30;20572:56;;;20608:18;;:::i;:::-;20572:56;20646:29;20668:6;20646:29;:::i;:::-;20638:37;;20730:4;20724;20720:15;20712:23;;20435:307;;;:::o;20748:308::-;20810:4;20900:18;20892:6;20889:30;20886:56;;;20922:18;;:::i;:::-;20886:56;20960:29;20982:6;20960:29;:::i;:::-;20952:37;;21044:4;21038;21034:15;21026:23;;20748:308;;;:::o;21062:141::-;21111:4;21134:3;21126:11;;21157:3;21154:1;21147:14;21191:4;21188:1;21178:18;21170:26;;21062:141;;;:::o;21209:98::-;21260:6;21294:5;21288:12;21278:22;;21209:98;;;:::o;21313:99::-;21365:6;21399:5;21393:12;21383:22;;21313:99;;;:::o;21418:168::-;21501:11;21535:6;21530:3;21523:19;21575:4;21570:3;21566:14;21551:29;;21418:168;;;;:::o;21592:147::-;21693:11;21730:3;21715:18;;21592:147;;;;:::o;21745:169::-;21829:11;21863:6;21858:3;21851:19;21903:4;21898:3;21894:14;21879:29;;21745:169;;;;:::o;21920:148::-;22022:11;22059:3;22044:18;;21920:148;;;;:::o;22074:305::-;22114:3;22133:20;22151:1;22133:20;:::i;:::-;22128:25;;22167:20;22185:1;22167:20;:::i;:::-;22162:25;;22321:1;22253:66;22249:74;22246:1;22243:81;22240:107;;;22327:18;;:::i;:::-;22240:107;22371:1;22368;22364:9;22357:16;;22074:305;;;;:::o;22385:185::-;22425:1;22442:20;22460:1;22442:20;:::i;:::-;22437:25;;22476:20;22494:1;22476:20;:::i;:::-;22471:25;;22515:1;22505:35;;22520:18;;:::i;:::-;22505:35;22562:1;22559;22555:9;22550:14;;22385:185;;;;:::o;22576:348::-;22616:7;22639:20;22657:1;22639:20;:::i;:::-;22634:25;;22673:20;22691:1;22673:20;:::i;:::-;22668:25;;22861:1;22793:66;22789:74;22786:1;22783:81;22778:1;22771:9;22764:17;22760:105;22757:131;;;22868:18;;:::i;:::-;22757:131;22916:1;22913;22909:9;22898:20;;22576:348;;;;:::o;22930:191::-;22970:4;22990:20;23008:1;22990:20;:::i;:::-;22985:25;;23024:20;23042:1;23024:20;:::i;:::-;23019:25;;23063:1;23060;23057:8;23054:34;;;23068:18;;:::i;:::-;23054:34;23113:1;23110;23106:9;23098:17;;22930:191;;;;:::o;23127:96::-;23164:7;23193:24;23211:5;23193:24;:::i;:::-;23182:35;;23127:96;;;:::o;23229:90::-;23263:7;23306:5;23299:13;23292:21;23281:32;;23229:90;;;:::o;23325:149::-;23361:7;23401:66;23394:5;23390:78;23379:89;;23325:149;;;:::o;23480:126::-;23517:7;23557:42;23550:5;23546:54;23535:65;;23480:126;;;:::o;23612:77::-;23649:7;23678:5;23667:16;;23612:77;;;:::o;23695:154::-;23779:6;23774:3;23769;23756:30;23841:1;23832:6;23827:3;23823:16;23816:27;23695:154;;;:::o;23855:307::-;23923:1;23933:113;23947:6;23944:1;23941:13;23933:113;;;24032:1;24027:3;24023:11;24017:18;24013:1;24008:3;24004:11;23997:39;23969:2;23966:1;23962:10;23957:15;;23933:113;;;24064:6;24061:1;24058:13;24055:101;;;24144:1;24135:6;24130:3;24126:16;24119:27;24055:101;23904:258;23855:307;;;:::o;24168:320::-;24212:6;24249:1;24243:4;24239:12;24229:22;;24296:1;24290:4;24286:12;24317:18;24307:81;;24373:4;24365:6;24361:17;24351:27;;24307:81;24435:2;24427:6;24424:14;24404:18;24401:38;24398:84;;;24454:18;;:::i;:::-;24398:84;24219:269;24168:320;;;:::o;24494:281::-;24577:27;24599:4;24577:27;:::i;:::-;24569:6;24565:40;24707:6;24695:10;24692:22;24671:18;24659:10;24656:34;24653:62;24650:88;;;24718:18;;:::i;:::-;24650:88;24758:10;24754:2;24747:22;24537:238;24494:281;;:::o;24781:233::-;24820:3;24843:24;24861:5;24843:24;:::i;:::-;24834:33;;24889:66;24882:5;24879:77;24876:103;;;24959:18;;:::i;:::-;24876:103;25006:1;24999:5;24995:13;24988:20;;24781:233;;;:::o;25020:176::-;25052:1;25069:20;25087:1;25069:20;:::i;:::-;25064:25;;25103:20;25121:1;25103:20;:::i;:::-;25098:25;;25142:1;25132:35;;25147:18;;:::i;:::-;25132:35;25188:1;25185;25181:9;25176:14;;25020:176;;;;:::o;25202:180::-;25250:77;25247:1;25240:88;25347:4;25344:1;25337:15;25371:4;25368:1;25361:15;25388:180;25436:77;25433:1;25426:88;25533:4;25530:1;25523:15;25557:4;25554:1;25547:15;25574:180;25622:77;25619:1;25612:88;25719:4;25716:1;25709:15;25743:4;25740:1;25733:15;25760:180;25808:77;25805:1;25798:88;25905:4;25902:1;25895:15;25929:4;25926:1;25919:15;25946:180;25994:77;25991:1;25984:88;26091:4;26088:1;26081:15;26115:4;26112:1;26105:15;26132:180;26180:77;26177:1;26170:88;26277:4;26274:1;26267:15;26301:4;26298:1;26291:15;26318:117;26427:1;26424;26417:12;26441:117;26550:1;26547;26540:12;26564:117;26673:1;26670;26663:12;26687:117;26796:1;26793;26786:12;26810:102;26851:6;26902:2;26898:7;26893:2;26886:5;26882:14;26878:28;26868:38;;26810:102;;;:::o;26918:166::-;27058:18;27054:1;27046:6;27042:14;27035:42;26918:166;:::o;27090:225::-;27230:34;27226:1;27218:6;27214:14;27207:58;27299:8;27294:2;27286:6;27282:15;27275:33;27090:225;:::o;27321:245::-;27461:34;27457:1;27449:6;27445:14;27438:58;27530:28;27525:2;27517:6;27513:15;27506:53;27321:245;:::o;27572:179::-;27712:31;27708:1;27700:6;27696:14;27689:55;27572:179;:::o;27757:155::-;27897:7;27893:1;27885:6;27881:14;27874:31;27757:155;:::o;27918:182::-;28058:34;28054:1;28046:6;28042:14;28035:58;27918:182;:::o;28106:234::-;28246:34;28242:1;28234:6;28230:14;28223:58;28315:17;28310:2;28302:6;28298:15;28291:42;28106:234;:::o;28346:172::-;28486:24;28482:1;28474:6;28470:14;28463:48;28346:172;:::o;28524:114::-;;:::o;28644:153::-;28784:5;28780:1;28772:6;28768:14;28761:29;28644:153;:::o;28803:159::-;28943:11;28939:1;28931:6;28927:14;28920:35;28803:159;:::o;28968:122::-;29041:24;29059:5;29041:24;:::i;:::-;29034:5;29031:35;29021:63;;29080:1;29077;29070:12;29021:63;28968:122;:::o;29096:116::-;29166:21;29181:5;29166:21;:::i;:::-;29159:5;29156:32;29146:60;;29202:1;29199;29192:12;29146:60;29096:116;:::o;29218:120::-;29290:23;29307:5;29290:23;:::i;:::-;29283:5;29280:34;29270:62;;29328:1;29325;29318:12;29270:62;29218:120;:::o;29344:122::-;29417:24;29435:5;29417:24;:::i;:::-;29410:5;29407:35;29397:63;;29456:1;29453;29446:12;29397:63;29344:122;:::o

Swarm Source

ipfs://0d2f9b2c720062a1a5d4c8835463efa7b08f0e94b428fc5ac29a03a69909e171
Loading...
Loading
Loading...
Loading
[ 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.