ETH Price: $2,582.52 (-2.83%)

Token

For The Okey (FTO)
 

Overview

Max Total Supply

1,562 FTO

Holders

34

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A
Filtered by Token Holder
docti.eth
Balance
3 FTO
0xe43657766456a6d1efe062c9bbd44441e57a2733
Loading...
Loading
Loading...
Loading
Loading...
Loading

OVERVIEW

For The Okey is a NFT token.

# Exchange Pair Price  24H Volume % Volume

Contract Source Code Verified (Exact Match)

Contract Name:
ForTheOkey

Compiler Version
v0.8.7+commit.e28d00a7

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion, None license

Contract Source Code (Solidity)

/**
 *Submitted for verification at Etherscan.io on 2022-06-11
*/

/**
 *Submitted for verification at Etherscan.io on 2022-06-07
*/

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

// SPDX-License-Identifier: MIT

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


/**
 * @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;
    }
}

/**
 * @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() {
        _setOwner(_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 {
        _setOwner(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");
        _setOwner(newOwner);
    }

    function _setOwner(address newOwner) private {
        address oldOwner = _owner;
        _owner = newOwner;
        emit OwnershipTransferred(oldOwner, newOwner);
    }
}

/**
 * @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
     * ====
     */
    function isContract(address account) internal view returns (bool) {
        // This method relies on extcodesize, which returns 0 for contracts in
        // construction, since the code is only stored at the end of the
        // constructor execution.

        uint256 size;
        assembly {
            size := extcodesize(account)
        }
        return size > 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);
            }
        }
    }
}

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

/**
 * @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);
}

/**
 * @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;
    }
}

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

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

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

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

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

    /**
     * @dev Safely transfers `tokenId` token from `from` to `to`, checking first that contract recipients
     * are aware of the ERC721 protocol to prevent tokens from being forever locked.
     *
     * Requirements:
     *
     * - `from` cannot be the zero address.
     * - `to` cannot be the zero address.
     * - `tokenId` token must exist and be owned by `from`.
     * - If the caller is not `from`, it must be have been allowed to move this token by either {approve} or {setApprovalForAll}.
     * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer.
     *
     * Emits a {Transfer} event.
     */
    function safeTransferFrom(
        address from,
        address to,
        uint256 tokenId
    ) external;

    /**
     * @dev Transfers `tokenId` token from `from` to `to`.
     *
     * WARNING: Usage of this method is discouraged, use {safeTransferFrom} whenever possible.
     *
     * Requirements:
     *
     * - `from` cannot be the zero address.
     * - `to` cannot be the zero address.
     * - `tokenId` token must be owned by `from`.
     * - If the caller is not `from`, it must be approved to move this token by either {approve} or {setApprovalForAll}.
     *
     * Emits a {Transfer} event.
     */
    function transferFrom(
        address from,
        address to,
        uint256 tokenId
    ) external;

    /**
     * @dev Gives permission to `to` to transfer `tokenId` token to another account.
     * The approval is cleared when the token is transferred.
     *
     * Only a single account can be approved at a time, so approving the zero address clears previous approvals.
     *
     * Requirements:
     *
     * - The caller must own the token or be an approved operator.
     * - `tokenId` must exist.
     *
     * Emits an {Approval} event.
     */
    function approve(address to, uint256 tokenId) external;

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

    /**
     * @dev Approve or remove `operator` as an operator for the caller.
     * Operators can call {transferFrom} or {safeTransferFrom} for any token owned by the caller.
     *
     * Requirements:
     *
     * - The `operator` cannot be the caller.
     *
     * Emits an {ApprovalForAll} event.
     */
    function setApprovalForAll(address operator, bool _approved) external;

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

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

/**
 * @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 tokenId);

    /**
     * @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);
}


/**
 * @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);
}

/**
 * @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 StakingInfo {
        bool staked;
        bool usedForMint;
        uint duration;
    }

    struct TokenOwnership {
        address addr;
        uint64 startTimestamp;
    }

    struct AddressData {
        uint128 balance;
        uint128 numberMinted;
    }

    uint256 internal currentIndex = 1;
    bool public revealed = false;
    string public notRevealedUri = "ipfs://QmWPma4VecYa2hZa4ni6oD6usxSz9pt17kFEUK3fEVvM5r/secret.json";
    // Token name
    string private _name;

    // Token symbol
    string private _symbol;

    string internal uri;

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

    mapping(uint => StakingInfo) public _stakedTokens;

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

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

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

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

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

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

    /**
     * @dev See {IERC165-supportsInterface}.
     */
    function supportsInterface(bytes4 interfaceId) public view virtual override(ERC165, IERC165) returns (bool) {
        return
            interfaceId == type(IERC721).interfaceId ||
            interfaceId == type(IERC721Metadata).interfaceId ||
            interfaceId == type(IERC721Enumerable).interfaceId ||
            super.supportsInterface(interfaceId);
    }

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

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

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

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

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

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

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

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

    /**
     * @dev See {IERC721Metadata-tokenURI}.
     */
    function tokenURI(uint256 tokenId) public view virtual override returns (string memory) {
        require(_exists(tokenId), 'ERC721Metadata: URI query for nonexistent token');
        if (revealed == false) {
            return notRevealedUri;
        }
        string memory baseURI = _baseURI();
        return bytes(baseURI).length != 0 ? string(abi.encodePacked(baseURI, tokenId.toString(), ".json")) : '';
    }

    /**
     * @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 uri;
    }

    /**
     * @dev See {IERC721-approve}.
     */
    function approve(address to, uint256 tokenId) public override {
        address owner = ERC721A.ownerOf(tokenId);
        require(to != owner, 'ERC721A: approval to current owner');

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

        _approve(to, tokenId, owner);
    }

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

        return _tokenApprovals[tokenId];
    }

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

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

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

    /**
     * @dev See {IERC721-transferFrom}.
     */
    function transferFrom(
        address from,
        address to,
        uint256 tokenId
    ) public override {
        require(!_stakedTokens[tokenId].staked, "TOKEN_STAKED!");
        _transfer(from, to, tokenId);
    }

    /**
     * @dev See {IERC721-safeTransferFrom}.
     */
    function safeTransferFrom(
        address from,
        address to,
        uint256 tokenId
    ) public override {
        require(!_stakedTokens[tokenId].staked, "TOKEN_STAKED!");
        safeTransferFrom(from, to, tokenId, '');
    }

    /**
     * @dev See {IERC721-safeTransferFrom}.
     */
    function safeTransferFrom(
        address from,
        address to,
        uint256 tokenId,
        bytes memory _data
    ) public override {
        require(!_stakedTokens[tokenId].staked, "TOKEN_STAKED!");
        _transfer(from, to, tokenId);
        require(
            _checkOnERC721Received(from, to, tokenId, _data),
            'ERC721A: transfer to non ERC721Receiver implementer'
        );
    }

    /**
     * @dev Returns whether `tokenId` exists.
     *
     * Tokens can be managed by their owner or approved accounts via {approve} or {setApprovalForAll}.
     *
     * Tokens start existing when they are minted (`_mint`),
     */
    function _exists(uint256 tokenId) internal view returns (bool) {
        return tokenId < currentIndex && tokenId > 0;
    }

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

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

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

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

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

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

            uint256 updatedIndex = startTokenId;

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

                updatedIndex++;
            }

            currentIndex = updatedIndex;
        }

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

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

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

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

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

        _beforeTokenTransfers(from, to, tokenId, 1);

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

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

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

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

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

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

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

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

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

contract ForTheOkey is ERC721A, Ownable {

    constructor() ERC721A("For The Okey", "FTO") {}

    // ---------------------------------------------------------------------------------------------
    // CONSTANTS
    // ---------------------------------------------------------------------------------------------

    uint256 private constant MAX_SUPPLY = 6969;     
    bool public saleStatus; 
    uint256 public freeMintPrice = 0;  
    uint256 public maxFreePerTx = 3;    
    uint256 public maxFreePerWallet = 3;  


 
    // ---------------------------------------------------------------------------------------------
    // MAPPINGS
    // ---------------------------------------------------------------------------------------------

    mapping(address => uint) public _minted; 

    // ---------------------------------------------------------------------------------------------
    // OWNER SETTERS
    // ---------------------------------------------------------------------------------------------

    function withdraw() external onlyOwner {
        payable(msg.sender).transfer(address(this).balance);
    }

    function setSaleStatus() external onlyOwner {
        saleStatus = !saleStatus;
    }

    function setMaxFreePerTx(uint amount) external onlyOwner {
        maxFreePerTx = amount;
    }
    
    function setMaxFreePerWallet(uint amount) external onlyOwner {
        maxFreePerWallet = amount;
    }

    function setBaseURI(string calldata _uri) external onlyOwner {
        uri = _uri;
    }

    function reveal() public onlyOwner {
        revealed = true;
    }

    // ---------------------------------------------------------------------------------------------
    // PUBLIC SETTERS
    // ---------------------------------------------------------------------------------------------

    function ownerMint(uint256 amount) external onlyOwner {
        require(currentIndex <= MAX_SUPPLY + 1, "NOT_ALLOWED!");
        _safeMint(msg.sender, amount);
    }

    function mint(uint amount) external payable {
        require(saleStatus, "SALE_NOT_ACTIVE!");
        if(_minted[msg.sender] < maxFreePerWallet){
            require(amount <= maxFreePerTx, "EXCEEDS_MAX_PER_TX!");
            require(_minted[msg.sender] + amount <= maxFreePerWallet, "EXCEEDS_MAX_PER_WALLET!");
            require(msg.value == freeMintPrice * amount, "INCORRECT_AMOUNT!");
            _safeMint(msg.sender, amount);
            _minted[msg.sender] += amount;
        }
    }
}

Contract Security Audit

Contract ABI

[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"approved","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"_minted","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"","type":"uint256"}],"name":"_stakedTokens","outputs":[{"internalType":"bool","name":"staked","type":"bool"},{"internalType":"bool","name":"usedForMint","type":"bool"},{"internalType":"uint256","name":"duration","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":[],"name":"freeMintPrice","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":[],"name":"maxFreePerTx","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxFreePerWallet","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"mint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"notRevealedUri","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":"amount","type":"uint256"}],"name":"ownerMint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"reveal","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"revealed","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","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":[],"name":"saleStatus","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","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":"_uri","type":"string"}],"name":"setBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"setMaxFreePerTx","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"setMaxFreePerWallet","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"setSaleStatus","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"index","type":"uint256"}],"name":"tokenByIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"uint256","name":"index","type":"uint256"}],"name":"tokenOfOwnerByIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"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"}]

608060405260016000556000600160006101000a81548160ff02191690831515021790555060405180608001604052806041815260200162004a6460419139600290805190602001906200005592919062000207565b506000600c556003600d556003600e553480156200007257600080fd5b506040518060400160405280600c81526020017f466f7220546865204f6b657900000000000000000000000000000000000000008152506040518060400160405280600381526020017f46544f00000000000000000000000000000000000000000000000000000000008152508160039080519060200190620000f792919062000207565b5080600490805190602001906200011092919062000207565b50505062000133620001276200013960201b60201c565b6200014160201b60201c565b6200031c565b600033905090565b6000600b60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600b60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b8280546200021590620002b7565b90600052602060002090601f01602090048101928262000239576000855562000285565b82601f106200025457805160ff191683800117855562000285565b8280016001018555821562000285579182015b828111156200028457825182559160200191906001019062000267565b5b50905062000294919062000298565b5090565b5b80821115620002b357600081600090555060010162000299565b5090565b60006002820490506001821680620002d057607f821691505b60208210811415620002e757620002e6620002ed565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b614738806200032c6000396000f3fe6080604052600436106102045760003560e01c80636d7c4a4b11610118578063a475b5dd116100a0578063e985e9c51161006f578063e985e9c514610748578063f19e75d414610785578063f2fde38b146107ae578063f737c47a146107d7578063f9020e331461080257610204565b8063a475b5dd146106a0578063a7027357146106b7578063b88d4fde146106e2578063c87b56dd1461070b57610204565b80637de77ecc116100e75780637de77ecc146105c85780638da5cb5b1461060557806395d89b4114610630578063a0712d681461065b578063a22cb4651461067757610204565b80636d7c4a4b1461052057806370a0823114610549578063715018a6146105865780637dc949b21461059d57610204565b80632f745c591161019b5780634f6ccce71161016a5780634f6ccce71461043b578063502b33af14610478578063518302271461048f57806355f804b3146104ba5780636352211e146104e357610204565b80632f745c59146103955780633ccfd60b146103d257806340f070a8146103e957806342842e0e1461041257610204565b8063095ea7b3116101d7578063095ea7b3146102d957806318160ddd14610302578063204f490c1461032d57806323b872dd1461036c57610204565b806301ffc9a71461020957806306fdde0314610246578063081812fc14610271578063081c8c44146102ae575b600080fd5b34801561021557600080fd5b50610230600480360381019061022b9190613224565b61082d565b60405161023d91906137ec565b60405180910390f35b34801561025257600080fd5b5061025b610977565b604051610268919061383e565b60405180910390f35b34801561027d57600080fd5b50610298600480360381019061029391906132cb565b610a09565b6040516102a59190613785565b60405180910390f35b3480156102ba57600080fd5b506102c3610a8e565b6040516102d0919061383e565b60405180910390f35b3480156102e557600080fd5b5061030060048036038101906102fb91906131e4565b610b1c565b005b34801561030e57600080fd5b50610317610c35565b6040516103249190613b80565b60405180910390f35b34801561033957600080fd5b50610354600480360381019061034f91906132cb565b610c4b565b60405161036393929190613807565b60405180910390f35b34801561037857600080fd5b50610393600480360381019061038e91906130ce565b610c8f565b005b3480156103a157600080fd5b506103bc60048036038101906103b791906131e4565b610d03565b6040516103c99190613b80565b60405180910390f35b3480156103de57600080fd5b506103e7610ef5565b005b3480156103f557600080fd5b50610410600480360381019061040b91906132cb565b610fba565b005b34801561041e57600080fd5b50610439600480360381019061043491906130ce565b611040565b005b34801561044757600080fd5b50610462600480360381019061045d91906132cb565b6110c4565b60405161046f9190613b80565b60405180910390f35b34801561048457600080fd5b5061048d611117565b005b34801561049b57600080fd5b506104a46111bf565b6040516104b191906137ec565b60405180910390f35b3480156104c657600080fd5b506104e160048036038101906104dc919061327e565b6111d2565b005b3480156104ef57600080fd5b5061050a600480360381019061050591906132cb565b611264565b6040516105179190613785565b60405180910390f35b34801561052c57600080fd5b50610547600480360381019061054291906132cb565b61127a565b005b34801561055557600080fd5b50610570600480360381019061056b9190613061565b611300565b60405161057d9190613b80565b60405180910390f35b34801561059257600080fd5b5061059b6113e9565b005b3480156105a957600080fd5b506105b2611471565b6040516105bf9190613b80565b60405180910390f35b3480156105d457600080fd5b506105ef60048036038101906105ea9190613061565b611477565b6040516105fc9190613b80565b60405180910390f35b34801561061157600080fd5b5061061a61148f565b6040516106279190613785565b60405180910390f35b34801561063c57600080fd5b506106456114b9565b604051610652919061383e565b60405180910390f35b610675600480360381019061067091906132cb565b61154b565b005b34801561068357600080fd5b5061069e600480360381019061069991906131a4565b61176a565b005b3480156106ac57600080fd5b506106b56118eb565b005b3480156106c357600080fd5b506106cc611983565b6040516106d99190613b80565b60405180910390f35b3480156106ee57600080fd5b5061070960048036038101906107049190613121565b611989565b005b34801561071757600080fd5b50610732600480360381019061072d91906132cb565b611a49565b60405161073f919061383e565b60405180910390f35b34801561075457600080fd5b5061076f600480360381019061076a919061308e565b611ba0565b60405161077c91906137ec565b60405180910390f35b34801561079157600080fd5b506107ac60048036038101906107a791906132cb565b611c34565b005b3480156107ba57600080fd5b506107d560048036038101906107d09190613061565b611d10565b005b3480156107e357600080fd5b506107ec611e08565b6040516107f99190613b80565b60405180910390f35b34801561080e57600080fd5b50610817611e0e565b60405161082491906137ec565b60405180910390f35b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614806108f857507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b8061096057507f780e9d63000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b80610970575061096f82611e21565b5b9050919050565b60606003805461098690613dff565b80601f01602080910402602001604051908101604052809291908181526020018280546109b290613dff565b80156109ff5780601f106109d4576101008083540402835291602001916109ff565b820191906000526020600020905b8154815290600101906020018083116109e257829003601f168201915b5050505050905090565b6000610a1482611e8b565b610a53576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a4a90613b60565b60405180910390fd5b6008600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b60028054610a9b90613dff565b80601f0160208091040260200160405190810160405280929190818152602001828054610ac790613dff565b8015610b145780601f10610ae957610100808354040283529160200191610b14565b820191906000526020600020905b815481529060010190602001808311610af757829003601f168201915b505050505081565b6000610b2782611264565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610b98576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b8f90613a60565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16610bb7611ea4565b73ffffffffffffffffffffffffffffffffffffffff161480610be65750610be581610be0611ea4565b611ba0565b5b610c25576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c1c90613940565b60405180910390fd5b610c30838383611eac565b505050565b60006001600054610c469190613d15565b905090565b600a6020528060005260406000206000915090508060000160009054906101000a900460ff16908060000160019054906101000a900460ff16908060010154905083565b600a600082815260200190815260200160002060000160009054906101000a900460ff1615610cf3576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610cea90613b20565b60405180910390fd5b610cfe838383611f5e565b505050565b6000610d0e83611300565b8210610d4f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d4690613860565b60405180910390fd5b6000610d59610c35565b905060008060005b83811015610eb3576000600660008381526020019081526020016000206040518060400160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815250509050600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff1614610e5357806000015192505b8773ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610ea55786841415610e9c578195505050505050610eef565b83806001019450505b508080600101915050610d61565b506040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ee690613ae0565b60405180910390fd5b92915050565b610efd611ea4565b73ffffffffffffffffffffffffffffffffffffffff16610f1b61148f565b73ffffffffffffffffffffffffffffffffffffffff1614610f71576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f68906139a0565b60405180910390fd5b3373ffffffffffffffffffffffffffffffffffffffff166108fc479081150290604051600060405180830381858888f19350505050158015610fb7573d6000803e3d6000fd5b50565b610fc2611ea4565b73ffffffffffffffffffffffffffffffffffffffff16610fe061148f565b73ffffffffffffffffffffffffffffffffffffffff1614611036576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161102d906139a0565b60405180910390fd5b80600d8190555050565b600a600082815260200190815260200160002060000160009054906101000a900460ff16156110a4576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161109b90613b20565b60405180910390fd5b6110bf83838360405180602001604052806000815250611989565b505050565b60006110ce610c35565b821061110f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161110690613900565b60405180910390fd5b819050919050565b61111f611ea4565b73ffffffffffffffffffffffffffffffffffffffff1661113d61148f565b73ffffffffffffffffffffffffffffffffffffffff1614611193576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161118a906139a0565b60405180910390fd5b600b60149054906101000a900460ff1615600b60146101000a81548160ff021916908315150217905550565b600160009054906101000a900460ff1681565b6111da611ea4565b73ffffffffffffffffffffffffffffffffffffffff166111f861148f565b73ffffffffffffffffffffffffffffffffffffffff161461124e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611245906139a0565b60405180910390fd5b81816005919061125f929190612e55565b505050565b600061126f8261249e565b600001519050919050565b611282611ea4565b73ffffffffffffffffffffffffffffffffffffffff166112a061148f565b73ffffffffffffffffffffffffffffffffffffffff16146112f6576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112ed906139a0565b60405180910390fd5b80600e8190555050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611371576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161136890613960565b60405180910390fd5b600760008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160009054906101000a90046fffffffffffffffffffffffffffffffff166fffffffffffffffffffffffffffffffff169050919050565b6113f1611ea4565b73ffffffffffffffffffffffffffffffffffffffff1661140f61148f565b73ffffffffffffffffffffffffffffffffffffffff1614611465576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161145c906139a0565b60405180910390fd5b61146f6000612638565b565b600d5481565b600f6020528060005260406000206000915090505481565b6000600b60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b6060600480546114c890613dff565b80601f01602080910402602001604051908101604052809291908181526020018280546114f490613dff565b80156115415780601f1061151657610100808354040283529160200191611541565b820191906000526020600020905b81548152906001019060200180831161152457829003601f168201915b5050505050905090565b600b60149054906101000a900460ff1661159a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161159190613880565b60405180910390fd5b600e54600f60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054101561176757600d54811115611628576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161161f906138c0565b60405180910390fd5b600e5481600f60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546116769190613c34565b11156116b7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116ae90613a20565b60405180910390fd5b80600c546116c59190613cbb565b3414611706576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116fd90613a40565b60405180910390fd5b61171033826126fe565b80600f60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825461175f9190613c34565b925050819055505b50565b611772611ea4565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156117e0576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117d7906139e0565b60405180910390fd5b80600960006117ed611ea4565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff1661189a611ea4565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31836040516118df91906137ec565b60405180910390a35050565b6118f3611ea4565b73ffffffffffffffffffffffffffffffffffffffff1661191161148f565b73ffffffffffffffffffffffffffffffffffffffff1614611967576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161195e906139a0565b60405180910390fd5b60018060006101000a81548160ff021916908315150217905550565b600e5481565b600a600083815260200190815260200160002060000160009054906101000a900460ff16156119ed576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016119e490613b20565b60405180910390fd5b6119f8848484611f5e565b611a048484848461271c565b611a43576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a3a90613a80565b60405180910390fd5b50505050565b6060611a5482611e8b565b611a93576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a8a906139c0565b60405180910390fd5b60001515600160009054906101000a900460ff1615151415611b415760028054611abc90613dff565b80601f0160208091040260200160405190810160405280929190818152602001828054611ae890613dff565b8015611b355780601f10611b0a57610100808354040283529160200191611b35565b820191906000526020600020905b815481529060010190602001808311611b1857829003601f168201915b50505050509050611b9b565b6000611b4b6128b3565b9050600081511415611b6c5760405180602001604052806000815250611b97565b80611b7684612945565b604051602001611b87929190613756565b6040516020818303038152906040525b9150505b919050565b6000600960008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b611c3c611ea4565b73ffffffffffffffffffffffffffffffffffffffff16611c5a61148f565b73ffffffffffffffffffffffffffffffffffffffff1614611cb0576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ca7906139a0565b60405180910390fd5b6001611b39611cbf9190613c34565b6000541115611d03576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611cfa90613b00565b60405180910390fd5b611d0d33826126fe565b50565b611d18611ea4565b73ffffffffffffffffffffffffffffffffffffffff16611d3661148f565b73ffffffffffffffffffffffffffffffffffffffff1614611d8c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d83906139a0565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415611dfc576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611df3906138a0565b60405180910390fd5b611e0581612638565b50565b600c5481565b600b60149054906101000a900460ff1681565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b6000805482108015611e9d5750600082115b9050919050565b600033905090565b826008600084815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b6000611f698261249e565b90506000816000015173ffffffffffffffffffffffffffffffffffffffff16611f90611ea4565b73ffffffffffffffffffffffffffffffffffffffff161480611fec5750611fb5611ea4565b73ffffffffffffffffffffffffffffffffffffffff16611fd484610a09565b73ffffffffffffffffffffffffffffffffffffffff16145b8061200857506120078260000151612002611ea4565b611ba0565b5b90508061204a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161204190613a00565b60405180910390fd5b8473ffffffffffffffffffffffffffffffffffffffff16826000015173ffffffffffffffffffffffffffffffffffffffff16146120bc576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016120b390613980565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff16141561212c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161212390613920565b60405180910390fd5b6121398585856001612aa6565b6121496000848460000151611eac565b6001600760008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a90046fffffffffffffffffffffffffffffffff160392506101000a8154816fffffffffffffffffffffffffffffffff02191690836fffffffffffffffffffffffffffffffff1602179055506001600760008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a90046fffffffffffffffffffffffffffffffff160192506101000a8154816fffffffffffffffffffffffffffffffff02191690836fffffffffffffffffffffffffffffffff160217905550836006600085815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550426006600085815260200190815260200160002060000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055506000600184019050600073ffffffffffffffffffffffffffffffffffffffff166006600083815260200190815260200160002060000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16141561242e5761238d81611e8b565b1561242d5782600001516006600083815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555082602001516006600083815260200190815260200160002060000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055505b5b50828473ffffffffffffffffffffffffffffffffffffffff168673ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a46124978585856001612aac565b5050505050565b6124a6612edb565b6124af82611e8b565b6124ee576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016124e5906138e0565b60405180910390fd5b60008290505b600081106125f7576000600660008381526020019081526020016000206040518060400160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815250509050600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff16146125e8578092505050612633565b508080600190039150506124f4565b506040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161262a90613b40565b60405180910390fd5b919050565b6000600b60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600b60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b612718828260405180602001604052806000815250612ab2565b5050565b600061273d8473ffffffffffffffffffffffffffffffffffffffff16612ac4565b156128a6578373ffffffffffffffffffffffffffffffffffffffff1663150b7a02612766611ea4565b8786866040518563ffffffff1660e01b815260040161278894939291906137a0565b602060405180830381600087803b1580156127a257600080fd5b505af19250505080156127d357506040513d601f19601f820116820180604052508101906127d09190613251565b60015b612856573d8060008114612803576040519150601f19603f3d011682016040523d82523d6000602084013e612808565b606091505b5060008151141561284e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161284590613a80565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149150506128ab565b600190505b949350505050565b6060600580546128c290613dff565b80601f01602080910402602001604051908101604052809291908181526020018280546128ee90613dff565b801561293b5780601f106129105761010080835404028352916020019161293b565b820191906000526020600020905b81548152906001019060200180831161291e57829003601f168201915b5050505050905090565b6060600082141561298d576040518060400160405280600181526020017f30000000000000000000000000000000000000000000000000000000000000008152509050612aa1565b600082905060005b600082146129bf5780806129a890613e62565b915050600a826129b89190613c8a565b9150612995565b60008167ffffffffffffffff8111156129db576129da613f98565b5b6040519080825280601f01601f191660200182016040528015612a0d5781602001600182028036833780820191505090505b5090505b60008514612a9a57600182612a269190613d15565b9150600a85612a359190613eab565b6030612a419190613c34565b60f81b818381518110612a5757612a56613f69565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a85612a939190613c8a565b9450612a11565b8093505050505b919050565b50505050565b50505050565b612abf8383836001612ad7565b505050565b600080823b905060008111915050919050565b600080549050600073ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff161415612b4d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612b4490613aa0565b60405180910390fd5b6000841415612b91576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612b8890613ac0565b60405180910390fd5b612b9e6000868387612aa6565b83600760008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a90046fffffffffffffffffffffffffffffffff160192506101000a8154816fffffffffffffffffffffffffffffffff02191690836fffffffffffffffffffffffffffffffff16021790555083600760008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160108282829054906101000a90046fffffffffffffffffffffffffffffffff160192506101000a8154816fffffffffffffffffffffffffffffffff02191690836fffffffffffffffffffffffffffffffff160217905550846006600083815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550426006600083815260200190815260200160002060000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff160217905550600081905060005b85811015612e3857818773ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a48315612e2357612de3600088848861271c565b612e22576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612e1990613a80565b60405180910390fd5b5b81806001019250508080600101915050612d6c565b508060008190555050612e4e6000868387612aac565b5050505050565b828054612e6190613dff565b90600052602060002090601f016020900481019282612e835760008555612eca565b82601f10612e9c57803560ff1916838001178555612eca565b82800160010185558215612eca579182015b82811115612ec9578235825591602001919060010190612eae565b5b509050612ed79190612f15565b5090565b6040518060400160405280600073ffffffffffffffffffffffffffffffffffffffff168152602001600067ffffffffffffffff1681525090565b5b80821115612f2e576000816000905550600101612f16565b5090565b6000612f45612f4084613bc0565b613b9b565b905082815260208101848484011115612f6157612f60613fd6565b5b612f6c848285613dbd565b509392505050565b600081359050612f83816146a6565b92915050565b600081359050612f98816146bd565b92915050565b600081359050612fad816146d4565b92915050565b600081519050612fc2816146d4565b92915050565b600082601f830112612fdd57612fdc613fcc565b5b8135612fed848260208601612f32565b91505092915050565b60008083601f84011261300c5761300b613fcc565b5b8235905067ffffffffffffffff81111561302957613028613fc7565b5b60208301915083600182028301111561304557613044613fd1565b5b9250929050565b60008135905061305b816146eb565b92915050565b60006020828403121561307757613076613fe0565b5b600061308584828501612f74565b91505092915050565b600080604083850312156130a5576130a4613fe0565b5b60006130b385828601612f74565b92505060206130c485828601612f74565b9150509250929050565b6000806000606084860312156130e7576130e6613fe0565b5b60006130f586828701612f74565b935050602061310686828701612f74565b92505060406131178682870161304c565b9150509250925092565b6000806000806080858703121561313b5761313a613fe0565b5b600061314987828801612f74565b945050602061315a87828801612f74565b935050604061316b8782880161304c565b925050606085013567ffffffffffffffff81111561318c5761318b613fdb565b5b61319887828801612fc8565b91505092959194509250565b600080604083850312156131bb576131ba613fe0565b5b60006131c985828601612f74565b92505060206131da85828601612f89565b9150509250929050565b600080604083850312156131fb576131fa613fe0565b5b600061320985828601612f74565b925050602061321a8582860161304c565b9150509250929050565b60006020828403121561323a57613239613fe0565b5b600061324884828501612f9e565b91505092915050565b60006020828403121561326757613266613fe0565b5b600061327584828501612fb3565b91505092915050565b6000806020838503121561329557613294613fe0565b5b600083013567ffffffffffffffff8111156132b3576132b2613fdb565b5b6132bf85828601612ff6565b92509250509250929050565b6000602082840312156132e1576132e0613fe0565b5b60006132ef8482850161304c565b91505092915050565b61330181613d49565b82525050565b61331081613d5b565b82525050565b600061332182613bf1565b61332b8185613c07565b935061333b818560208601613dcc565b61334481613fe5565b840191505092915050565b600061335a82613bfc565b6133648185613c18565b9350613374818560208601613dcc565b61337d81613fe5565b840191505092915050565b600061339382613bfc565b61339d8185613c29565b93506133ad818560208601613dcc565b80840191505092915050565b60006133c6602283613c18565b91506133d182613ff6565b604082019050919050565b60006133e9601083613c18565b91506133f482614045565b602082019050919050565b600061340c602683613c18565b91506134178261406e565b604082019050919050565b600061342f601383613c18565b915061343a826140bd565b602082019050919050565b6000613452602a83613c18565b915061345d826140e6565b604082019050919050565b6000613475602383613c18565b915061348082614135565b604082019050919050565b6000613498602583613c18565b91506134a382614184565b604082019050919050565b60006134bb603983613c18565b91506134c6826141d3565b604082019050919050565b60006134de602b83613c18565b91506134e982614222565b604082019050919050565b6000613501602683613c18565b915061350c82614271565b604082019050919050565b6000613524600583613c29565b915061352f826142c0565b600582019050919050565b6000613547602083613c18565b9150613552826142e9565b602082019050919050565b600061356a602f83613c18565b915061357582614312565b604082019050919050565b600061358d601a83613c18565b915061359882614361565b602082019050919050565b60006135b0603283613c18565b91506135bb8261438a565b604082019050919050565b60006135d3601783613c18565b91506135de826143d9565b602082019050919050565b60006135f6601183613c18565b915061360182614402565b602082019050919050565b6000613619602283613c18565b91506136248261442b565b604082019050919050565b600061363c603383613c18565b91506136478261447a565b604082019050919050565b600061365f602183613c18565b915061366a826144c9565b604082019050919050565b6000613682602883613c18565b915061368d82614518565b604082019050919050565b60006136a5602e83613c18565b91506136b082614567565b604082019050919050565b60006136c8600c83613c18565b91506136d3826145b6565b602082019050919050565b60006136eb600d83613c18565b91506136f6826145df565b602082019050919050565b600061370e602f83613c18565b915061371982614608565b604082019050919050565b6000613731602d83613c18565b915061373c82614657565b604082019050919050565b61375081613db3565b82525050565b60006137628285613388565b915061376e8284613388565b915061377982613517565b91508190509392505050565b600060208201905061379a60008301846132f8565b92915050565b60006080820190506137b560008301876132f8565b6137c260208301866132f8565b6137cf6040830185613747565b81810360608301526137e18184613316565b905095945050505050565b60006020820190506138016000830184613307565b92915050565b600060608201905061381c6000830186613307565b6138296020830185613307565b6138366040830184613747565b949350505050565b60006020820190508181036000830152613858818461334f565b905092915050565b60006020820190508181036000830152613879816133b9565b9050919050565b60006020820190508181036000830152613899816133dc565b9050919050565b600060208201905081810360008301526138b9816133ff565b9050919050565b600060208201905081810360008301526138d981613422565b9050919050565b600060208201905081810360008301526138f981613445565b9050919050565b6000602082019050818103600083015261391981613468565b9050919050565b600060208201905081810360008301526139398161348b565b9050919050565b60006020820190508181036000830152613959816134ae565b9050919050565b60006020820190508181036000830152613979816134d1565b9050919050565b60006020820190508181036000830152613999816134f4565b9050919050565b600060208201905081810360008301526139b98161353a565b9050919050565b600060208201905081810360008301526139d98161355d565b9050919050565b600060208201905081810360008301526139f981613580565b9050919050565b60006020820190508181036000830152613a19816135a3565b9050919050565b60006020820190508181036000830152613a39816135c6565b9050919050565b60006020820190508181036000830152613a59816135e9565b9050919050565b60006020820190508181036000830152613a798161360c565b9050919050565b60006020820190508181036000830152613a998161362f565b9050919050565b60006020820190508181036000830152613ab981613652565b9050919050565b60006020820190508181036000830152613ad981613675565b9050919050565b60006020820190508181036000830152613af981613698565b9050919050565b60006020820190508181036000830152613b19816136bb565b9050919050565b60006020820190508181036000830152613b39816136de565b9050919050565b60006020820190508181036000830152613b5981613701565b9050919050565b60006020820190508181036000830152613b7981613724565b9050919050565b6000602082019050613b956000830184613747565b92915050565b6000613ba5613bb6565b9050613bb18282613e31565b919050565b6000604051905090565b600067ffffffffffffffff821115613bdb57613bda613f98565b5b613be482613fe5565b9050602081019050919050565b600081519050919050565b600081519050919050565b600082825260208201905092915050565b600082825260208201905092915050565b600081905092915050565b6000613c3f82613db3565b9150613c4a83613db3565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115613c7f57613c7e613edc565b5b828201905092915050565b6000613c9582613db3565b9150613ca083613db3565b925082613cb057613caf613f0b565b5b828204905092915050565b6000613cc682613db3565b9150613cd183613db3565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0483118215151615613d0a57613d09613edc565b5b828202905092915050565b6000613d2082613db3565b9150613d2b83613db3565b925082821015613d3e57613d3d613edc565b5b828203905092915050565b6000613d5482613d93565b9050919050565b60008115159050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b82818337600083830152505050565b60005b83811015613dea578082015181840152602081019050613dcf565b83811115613df9576000848401525b50505050565b60006002820490506001821680613e1757607f821691505b60208210811415613e2b57613e2a613f3a565b5b50919050565b613e3a82613fe5565b810181811067ffffffffffffffff82111715613e5957613e58613f98565b5b80604052505050565b6000613e6d82613db3565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff821415613ea057613e9f613edc565b5b600182019050919050565b6000613eb682613db3565b9150613ec183613db3565b925082613ed157613ed0613f0b565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600080fd5b600080fd5b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b7f455243373231413a206f776e657220696e646578206f7574206f6620626f756e60008201527f6473000000000000000000000000000000000000000000000000000000000000602082015250565b7f53414c455f4e4f545f4143544956452100000000000000000000000000000000600082015250565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f455843454544535f4d41585f5045525f54582100000000000000000000000000600082015250565b7f455243373231413a206f776e657220717565727920666f72206e6f6e6578697360008201527f74656e7420746f6b656e00000000000000000000000000000000000000000000602082015250565b7f455243373231413a20676c6f62616c20696e646578206f7574206f6620626f7560008201527f6e64730000000000000000000000000000000000000000000000000000000000602082015250565b7f455243373231413a207472616e7366657220746f20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b7f455243373231413a20617070726f76652063616c6c6572206973206e6f74206f60008201527f776e6572206e6f7220617070726f76656420666f7220616c6c00000000000000602082015250565b7f455243373231413a2062616c616e636520717565727920666f7220746865207a60008201527f65726f2061646472657373000000000000000000000000000000000000000000602082015250565b7f455243373231413a207472616e736665722066726f6d20696e636f727265637460008201527f206f776e65720000000000000000000000000000000000000000000000000000602082015250565b7f2e6a736f6e000000000000000000000000000000000000000000000000000000600082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008201527f6e6578697374656e7420746f6b656e0000000000000000000000000000000000602082015250565b7f455243373231413a20617070726f766520746f2063616c6c6572000000000000600082015250565b7f455243373231413a207472616e736665722063616c6c6572206973206e6f742060008201527f6f776e6572206e6f7220617070726f7665640000000000000000000000000000602082015250565b7f455843454544535f4d41585f5045525f57414c4c455421000000000000000000600082015250565b7f494e434f52524543545f414d4f554e5421000000000000000000000000000000600082015250565b7f455243373231413a20617070726f76616c20746f2063757272656e74206f776e60008201527f6572000000000000000000000000000000000000000000000000000000000000602082015250565b7f455243373231413a207472616e7366657220746f206e6f6e204552433732315260008201527f6563656976657220696d706c656d656e74657200000000000000000000000000602082015250565b7f455243373231413a206d696e7420746f20746865207a65726f2061646472657360008201527f7300000000000000000000000000000000000000000000000000000000000000602082015250565b7f455243373231413a207175616e74697479206d7573742062652067726561746560008201527f72207468616e2030000000000000000000000000000000000000000000000000602082015250565b7f455243373231413a20756e61626c6520746f2067657420746f6b656e206f662060008201527f6f776e657220627920696e646578000000000000000000000000000000000000602082015250565b7f4e4f545f414c4c4f574544210000000000000000000000000000000000000000600082015250565b7f544f4b454e5f5354414b45442100000000000000000000000000000000000000600082015250565b7f455243373231413a20756e61626c6520746f2064657465726d696e652074686560008201527f206f776e6572206f6620746f6b656e0000000000000000000000000000000000602082015250565b7f455243373231413a20617070726f76656420717565727920666f72206e6f6e6560008201527f78697374656e7420746f6b656e00000000000000000000000000000000000000602082015250565b6146af81613d49565b81146146ba57600080fd5b50565b6146c681613d5b565b81146146d157600080fd5b50565b6146dd81613d67565b81146146e857600080fd5b50565b6146f481613db3565b81146146ff57600080fd5b5056fea264697066735822122083a9a4dbbfcbb7e8a4cf95f96f937e401803a338ef6071d0cd5d0461317d2d0664736f6c63430008070033697066733a2f2f516d57506d6134566563596132685a61346e69366f4436757378537a39707431376b4645554b33664556764d35722f7365637265742e6a736f6e

Deployed Bytecode

0x6080604052600436106102045760003560e01c80636d7c4a4b11610118578063a475b5dd116100a0578063e985e9c51161006f578063e985e9c514610748578063f19e75d414610785578063f2fde38b146107ae578063f737c47a146107d7578063f9020e331461080257610204565b8063a475b5dd146106a0578063a7027357146106b7578063b88d4fde146106e2578063c87b56dd1461070b57610204565b80637de77ecc116100e75780637de77ecc146105c85780638da5cb5b1461060557806395d89b4114610630578063a0712d681461065b578063a22cb4651461067757610204565b80636d7c4a4b1461052057806370a0823114610549578063715018a6146105865780637dc949b21461059d57610204565b80632f745c591161019b5780634f6ccce71161016a5780634f6ccce71461043b578063502b33af14610478578063518302271461048f57806355f804b3146104ba5780636352211e146104e357610204565b80632f745c59146103955780633ccfd60b146103d257806340f070a8146103e957806342842e0e1461041257610204565b8063095ea7b3116101d7578063095ea7b3146102d957806318160ddd14610302578063204f490c1461032d57806323b872dd1461036c57610204565b806301ffc9a71461020957806306fdde0314610246578063081812fc14610271578063081c8c44146102ae575b600080fd5b34801561021557600080fd5b50610230600480360381019061022b9190613224565b61082d565b60405161023d91906137ec565b60405180910390f35b34801561025257600080fd5b5061025b610977565b604051610268919061383e565b60405180910390f35b34801561027d57600080fd5b50610298600480360381019061029391906132cb565b610a09565b6040516102a59190613785565b60405180910390f35b3480156102ba57600080fd5b506102c3610a8e565b6040516102d0919061383e565b60405180910390f35b3480156102e557600080fd5b5061030060048036038101906102fb91906131e4565b610b1c565b005b34801561030e57600080fd5b50610317610c35565b6040516103249190613b80565b60405180910390f35b34801561033957600080fd5b50610354600480360381019061034f91906132cb565b610c4b565b60405161036393929190613807565b60405180910390f35b34801561037857600080fd5b50610393600480360381019061038e91906130ce565b610c8f565b005b3480156103a157600080fd5b506103bc60048036038101906103b791906131e4565b610d03565b6040516103c99190613b80565b60405180910390f35b3480156103de57600080fd5b506103e7610ef5565b005b3480156103f557600080fd5b50610410600480360381019061040b91906132cb565b610fba565b005b34801561041e57600080fd5b50610439600480360381019061043491906130ce565b611040565b005b34801561044757600080fd5b50610462600480360381019061045d91906132cb565b6110c4565b60405161046f9190613b80565b60405180910390f35b34801561048457600080fd5b5061048d611117565b005b34801561049b57600080fd5b506104a46111bf565b6040516104b191906137ec565b60405180910390f35b3480156104c657600080fd5b506104e160048036038101906104dc919061327e565b6111d2565b005b3480156104ef57600080fd5b5061050a600480360381019061050591906132cb565b611264565b6040516105179190613785565b60405180910390f35b34801561052c57600080fd5b50610547600480360381019061054291906132cb565b61127a565b005b34801561055557600080fd5b50610570600480360381019061056b9190613061565b611300565b60405161057d9190613b80565b60405180910390f35b34801561059257600080fd5b5061059b6113e9565b005b3480156105a957600080fd5b506105b2611471565b6040516105bf9190613b80565b60405180910390f35b3480156105d457600080fd5b506105ef60048036038101906105ea9190613061565b611477565b6040516105fc9190613b80565b60405180910390f35b34801561061157600080fd5b5061061a61148f565b6040516106279190613785565b60405180910390f35b34801561063c57600080fd5b506106456114b9565b604051610652919061383e565b60405180910390f35b610675600480360381019061067091906132cb565b61154b565b005b34801561068357600080fd5b5061069e600480360381019061069991906131a4565b61176a565b005b3480156106ac57600080fd5b506106b56118eb565b005b3480156106c357600080fd5b506106cc611983565b6040516106d99190613b80565b60405180910390f35b3480156106ee57600080fd5b5061070960048036038101906107049190613121565b611989565b005b34801561071757600080fd5b50610732600480360381019061072d91906132cb565b611a49565b60405161073f919061383e565b60405180910390f35b34801561075457600080fd5b5061076f600480360381019061076a919061308e565b611ba0565b60405161077c91906137ec565b60405180910390f35b34801561079157600080fd5b506107ac60048036038101906107a791906132cb565b611c34565b005b3480156107ba57600080fd5b506107d560048036038101906107d09190613061565b611d10565b005b3480156107e357600080fd5b506107ec611e08565b6040516107f99190613b80565b60405180910390f35b34801561080e57600080fd5b50610817611e0e565b60405161082491906137ec565b60405180910390f35b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614806108f857507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b8061096057507f780e9d63000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b80610970575061096f82611e21565b5b9050919050565b60606003805461098690613dff565b80601f01602080910402602001604051908101604052809291908181526020018280546109b290613dff565b80156109ff5780601f106109d4576101008083540402835291602001916109ff565b820191906000526020600020905b8154815290600101906020018083116109e257829003601f168201915b5050505050905090565b6000610a1482611e8b565b610a53576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a4a90613b60565b60405180910390fd5b6008600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b60028054610a9b90613dff565b80601f0160208091040260200160405190810160405280929190818152602001828054610ac790613dff565b8015610b145780601f10610ae957610100808354040283529160200191610b14565b820191906000526020600020905b815481529060010190602001808311610af757829003601f168201915b505050505081565b6000610b2782611264565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610b98576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b8f90613a60565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16610bb7611ea4565b73ffffffffffffffffffffffffffffffffffffffff161480610be65750610be581610be0611ea4565b611ba0565b5b610c25576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c1c90613940565b60405180910390fd5b610c30838383611eac565b505050565b60006001600054610c469190613d15565b905090565b600a6020528060005260406000206000915090508060000160009054906101000a900460ff16908060000160019054906101000a900460ff16908060010154905083565b600a600082815260200190815260200160002060000160009054906101000a900460ff1615610cf3576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610cea90613b20565b60405180910390fd5b610cfe838383611f5e565b505050565b6000610d0e83611300565b8210610d4f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d4690613860565b60405180910390fd5b6000610d59610c35565b905060008060005b83811015610eb3576000600660008381526020019081526020016000206040518060400160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815250509050600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff1614610e5357806000015192505b8773ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610ea55786841415610e9c578195505050505050610eef565b83806001019450505b508080600101915050610d61565b506040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ee690613ae0565b60405180910390fd5b92915050565b610efd611ea4565b73ffffffffffffffffffffffffffffffffffffffff16610f1b61148f565b73ffffffffffffffffffffffffffffffffffffffff1614610f71576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f68906139a0565b60405180910390fd5b3373ffffffffffffffffffffffffffffffffffffffff166108fc479081150290604051600060405180830381858888f19350505050158015610fb7573d6000803e3d6000fd5b50565b610fc2611ea4565b73ffffffffffffffffffffffffffffffffffffffff16610fe061148f565b73ffffffffffffffffffffffffffffffffffffffff1614611036576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161102d906139a0565b60405180910390fd5b80600d8190555050565b600a600082815260200190815260200160002060000160009054906101000a900460ff16156110a4576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161109b90613b20565b60405180910390fd5b6110bf83838360405180602001604052806000815250611989565b505050565b60006110ce610c35565b821061110f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161110690613900565b60405180910390fd5b819050919050565b61111f611ea4565b73ffffffffffffffffffffffffffffffffffffffff1661113d61148f565b73ffffffffffffffffffffffffffffffffffffffff1614611193576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161118a906139a0565b60405180910390fd5b600b60149054906101000a900460ff1615600b60146101000a81548160ff021916908315150217905550565b600160009054906101000a900460ff1681565b6111da611ea4565b73ffffffffffffffffffffffffffffffffffffffff166111f861148f565b73ffffffffffffffffffffffffffffffffffffffff161461124e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611245906139a0565b60405180910390fd5b81816005919061125f929190612e55565b505050565b600061126f8261249e565b600001519050919050565b611282611ea4565b73ffffffffffffffffffffffffffffffffffffffff166112a061148f565b73ffffffffffffffffffffffffffffffffffffffff16146112f6576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112ed906139a0565b60405180910390fd5b80600e8190555050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611371576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161136890613960565b60405180910390fd5b600760008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160009054906101000a90046fffffffffffffffffffffffffffffffff166fffffffffffffffffffffffffffffffff169050919050565b6113f1611ea4565b73ffffffffffffffffffffffffffffffffffffffff1661140f61148f565b73ffffffffffffffffffffffffffffffffffffffff1614611465576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161145c906139a0565b60405180910390fd5b61146f6000612638565b565b600d5481565b600f6020528060005260406000206000915090505481565b6000600b60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b6060600480546114c890613dff565b80601f01602080910402602001604051908101604052809291908181526020018280546114f490613dff565b80156115415780601f1061151657610100808354040283529160200191611541565b820191906000526020600020905b81548152906001019060200180831161152457829003601f168201915b5050505050905090565b600b60149054906101000a900460ff1661159a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161159190613880565b60405180910390fd5b600e54600f60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054101561176757600d54811115611628576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161161f906138c0565b60405180910390fd5b600e5481600f60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546116769190613c34565b11156116b7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116ae90613a20565b60405180910390fd5b80600c546116c59190613cbb565b3414611706576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116fd90613a40565b60405180910390fd5b61171033826126fe565b80600f60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825461175f9190613c34565b925050819055505b50565b611772611ea4565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156117e0576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117d7906139e0565b60405180910390fd5b80600960006117ed611ea4565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff1661189a611ea4565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31836040516118df91906137ec565b60405180910390a35050565b6118f3611ea4565b73ffffffffffffffffffffffffffffffffffffffff1661191161148f565b73ffffffffffffffffffffffffffffffffffffffff1614611967576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161195e906139a0565b60405180910390fd5b60018060006101000a81548160ff021916908315150217905550565b600e5481565b600a600083815260200190815260200160002060000160009054906101000a900460ff16156119ed576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016119e490613b20565b60405180910390fd5b6119f8848484611f5e565b611a048484848461271c565b611a43576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a3a90613a80565b60405180910390fd5b50505050565b6060611a5482611e8b565b611a93576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a8a906139c0565b60405180910390fd5b60001515600160009054906101000a900460ff1615151415611b415760028054611abc90613dff565b80601f0160208091040260200160405190810160405280929190818152602001828054611ae890613dff565b8015611b355780601f10611b0a57610100808354040283529160200191611b35565b820191906000526020600020905b815481529060010190602001808311611b1857829003601f168201915b50505050509050611b9b565b6000611b4b6128b3565b9050600081511415611b6c5760405180602001604052806000815250611b97565b80611b7684612945565b604051602001611b87929190613756565b6040516020818303038152906040525b9150505b919050565b6000600960008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b611c3c611ea4565b73ffffffffffffffffffffffffffffffffffffffff16611c5a61148f565b73ffffffffffffffffffffffffffffffffffffffff1614611cb0576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ca7906139a0565b60405180910390fd5b6001611b39611cbf9190613c34565b6000541115611d03576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611cfa90613b00565b60405180910390fd5b611d0d33826126fe565b50565b611d18611ea4565b73ffffffffffffffffffffffffffffffffffffffff16611d3661148f565b73ffffffffffffffffffffffffffffffffffffffff1614611d8c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d83906139a0565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415611dfc576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611df3906138a0565b60405180910390fd5b611e0581612638565b50565b600c5481565b600b60149054906101000a900460ff1681565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b6000805482108015611e9d5750600082115b9050919050565b600033905090565b826008600084815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b6000611f698261249e565b90506000816000015173ffffffffffffffffffffffffffffffffffffffff16611f90611ea4565b73ffffffffffffffffffffffffffffffffffffffff161480611fec5750611fb5611ea4565b73ffffffffffffffffffffffffffffffffffffffff16611fd484610a09565b73ffffffffffffffffffffffffffffffffffffffff16145b8061200857506120078260000151612002611ea4565b611ba0565b5b90508061204a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161204190613a00565b60405180910390fd5b8473ffffffffffffffffffffffffffffffffffffffff16826000015173ffffffffffffffffffffffffffffffffffffffff16146120bc576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016120b390613980565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff16141561212c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161212390613920565b60405180910390fd5b6121398585856001612aa6565b6121496000848460000151611eac565b6001600760008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a90046fffffffffffffffffffffffffffffffff160392506101000a8154816fffffffffffffffffffffffffffffffff02191690836fffffffffffffffffffffffffffffffff1602179055506001600760008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a90046fffffffffffffffffffffffffffffffff160192506101000a8154816fffffffffffffffffffffffffffffffff02191690836fffffffffffffffffffffffffffffffff160217905550836006600085815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550426006600085815260200190815260200160002060000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055506000600184019050600073ffffffffffffffffffffffffffffffffffffffff166006600083815260200190815260200160002060000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16141561242e5761238d81611e8b565b1561242d5782600001516006600083815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555082602001516006600083815260200190815260200160002060000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055505b5b50828473ffffffffffffffffffffffffffffffffffffffff168673ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a46124978585856001612aac565b5050505050565b6124a6612edb565b6124af82611e8b565b6124ee576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016124e5906138e0565b60405180910390fd5b60008290505b600081106125f7576000600660008381526020019081526020016000206040518060400160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815250509050600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff16146125e8578092505050612633565b508080600190039150506124f4565b506040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161262a90613b40565b60405180910390fd5b919050565b6000600b60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600b60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b612718828260405180602001604052806000815250612ab2565b5050565b600061273d8473ffffffffffffffffffffffffffffffffffffffff16612ac4565b156128a6578373ffffffffffffffffffffffffffffffffffffffff1663150b7a02612766611ea4565b8786866040518563ffffffff1660e01b815260040161278894939291906137a0565b602060405180830381600087803b1580156127a257600080fd5b505af19250505080156127d357506040513d601f19601f820116820180604052508101906127d09190613251565b60015b612856573d8060008114612803576040519150601f19603f3d011682016040523d82523d6000602084013e612808565b606091505b5060008151141561284e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161284590613a80565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149150506128ab565b600190505b949350505050565b6060600580546128c290613dff565b80601f01602080910402602001604051908101604052809291908181526020018280546128ee90613dff565b801561293b5780601f106129105761010080835404028352916020019161293b565b820191906000526020600020905b81548152906001019060200180831161291e57829003601f168201915b5050505050905090565b6060600082141561298d576040518060400160405280600181526020017f30000000000000000000000000000000000000000000000000000000000000008152509050612aa1565b600082905060005b600082146129bf5780806129a890613e62565b915050600a826129b89190613c8a565b9150612995565b60008167ffffffffffffffff8111156129db576129da613f98565b5b6040519080825280601f01601f191660200182016040528015612a0d5781602001600182028036833780820191505090505b5090505b60008514612a9a57600182612a269190613d15565b9150600a85612a359190613eab565b6030612a419190613c34565b60f81b818381518110612a5757612a56613f69565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a85612a939190613c8a565b9450612a11565b8093505050505b919050565b50505050565b50505050565b612abf8383836001612ad7565b505050565b600080823b905060008111915050919050565b600080549050600073ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff161415612b4d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612b4490613aa0565b60405180910390fd5b6000841415612b91576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612b8890613ac0565b60405180910390fd5b612b9e6000868387612aa6565b83600760008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a90046fffffffffffffffffffffffffffffffff160192506101000a8154816fffffffffffffffffffffffffffffffff02191690836fffffffffffffffffffffffffffffffff16021790555083600760008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160108282829054906101000a90046fffffffffffffffffffffffffffffffff160192506101000a8154816fffffffffffffffffffffffffffffffff02191690836fffffffffffffffffffffffffffffffff160217905550846006600083815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550426006600083815260200190815260200160002060000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff160217905550600081905060005b85811015612e3857818773ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a48315612e2357612de3600088848861271c565b612e22576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612e1990613a80565b60405180910390fd5b5b81806001019250508080600101915050612d6c565b508060008190555050612e4e6000868387612aac565b5050505050565b828054612e6190613dff565b90600052602060002090601f016020900481019282612e835760008555612eca565b82601f10612e9c57803560ff1916838001178555612eca565b82800160010185558215612eca579182015b82811115612ec9578235825591602001919060010190612eae565b5b509050612ed79190612f15565b5090565b6040518060400160405280600073ffffffffffffffffffffffffffffffffffffffff168152602001600067ffffffffffffffff1681525090565b5b80821115612f2e576000816000905550600101612f16565b5090565b6000612f45612f4084613bc0565b613b9b565b905082815260208101848484011115612f6157612f60613fd6565b5b612f6c848285613dbd565b509392505050565b600081359050612f83816146a6565b92915050565b600081359050612f98816146bd565b92915050565b600081359050612fad816146d4565b92915050565b600081519050612fc2816146d4565b92915050565b600082601f830112612fdd57612fdc613fcc565b5b8135612fed848260208601612f32565b91505092915050565b60008083601f84011261300c5761300b613fcc565b5b8235905067ffffffffffffffff81111561302957613028613fc7565b5b60208301915083600182028301111561304557613044613fd1565b5b9250929050565b60008135905061305b816146eb565b92915050565b60006020828403121561307757613076613fe0565b5b600061308584828501612f74565b91505092915050565b600080604083850312156130a5576130a4613fe0565b5b60006130b385828601612f74565b92505060206130c485828601612f74565b9150509250929050565b6000806000606084860312156130e7576130e6613fe0565b5b60006130f586828701612f74565b935050602061310686828701612f74565b92505060406131178682870161304c565b9150509250925092565b6000806000806080858703121561313b5761313a613fe0565b5b600061314987828801612f74565b945050602061315a87828801612f74565b935050604061316b8782880161304c565b925050606085013567ffffffffffffffff81111561318c5761318b613fdb565b5b61319887828801612fc8565b91505092959194509250565b600080604083850312156131bb576131ba613fe0565b5b60006131c985828601612f74565b92505060206131da85828601612f89565b9150509250929050565b600080604083850312156131fb576131fa613fe0565b5b600061320985828601612f74565b925050602061321a8582860161304c565b9150509250929050565b60006020828403121561323a57613239613fe0565b5b600061324884828501612f9e565b91505092915050565b60006020828403121561326757613266613fe0565b5b600061327584828501612fb3565b91505092915050565b6000806020838503121561329557613294613fe0565b5b600083013567ffffffffffffffff8111156132b3576132b2613fdb565b5b6132bf85828601612ff6565b92509250509250929050565b6000602082840312156132e1576132e0613fe0565b5b60006132ef8482850161304c565b91505092915050565b61330181613d49565b82525050565b61331081613d5b565b82525050565b600061332182613bf1565b61332b8185613c07565b935061333b818560208601613dcc565b61334481613fe5565b840191505092915050565b600061335a82613bfc565b6133648185613c18565b9350613374818560208601613dcc565b61337d81613fe5565b840191505092915050565b600061339382613bfc565b61339d8185613c29565b93506133ad818560208601613dcc565b80840191505092915050565b60006133c6602283613c18565b91506133d182613ff6565b604082019050919050565b60006133e9601083613c18565b91506133f482614045565b602082019050919050565b600061340c602683613c18565b91506134178261406e565b604082019050919050565b600061342f601383613c18565b915061343a826140bd565b602082019050919050565b6000613452602a83613c18565b915061345d826140e6565b604082019050919050565b6000613475602383613c18565b915061348082614135565b604082019050919050565b6000613498602583613c18565b91506134a382614184565b604082019050919050565b60006134bb603983613c18565b91506134c6826141d3565b604082019050919050565b60006134de602b83613c18565b91506134e982614222565b604082019050919050565b6000613501602683613c18565b915061350c82614271565b604082019050919050565b6000613524600583613c29565b915061352f826142c0565b600582019050919050565b6000613547602083613c18565b9150613552826142e9565b602082019050919050565b600061356a602f83613c18565b915061357582614312565b604082019050919050565b600061358d601a83613c18565b915061359882614361565b602082019050919050565b60006135b0603283613c18565b91506135bb8261438a565b604082019050919050565b60006135d3601783613c18565b91506135de826143d9565b602082019050919050565b60006135f6601183613c18565b915061360182614402565b602082019050919050565b6000613619602283613c18565b91506136248261442b565b604082019050919050565b600061363c603383613c18565b91506136478261447a565b604082019050919050565b600061365f602183613c18565b915061366a826144c9565b604082019050919050565b6000613682602883613c18565b915061368d82614518565b604082019050919050565b60006136a5602e83613c18565b91506136b082614567565b604082019050919050565b60006136c8600c83613c18565b91506136d3826145b6565b602082019050919050565b60006136eb600d83613c18565b91506136f6826145df565b602082019050919050565b600061370e602f83613c18565b915061371982614608565b604082019050919050565b6000613731602d83613c18565b915061373c82614657565b604082019050919050565b61375081613db3565b82525050565b60006137628285613388565b915061376e8284613388565b915061377982613517565b91508190509392505050565b600060208201905061379a60008301846132f8565b92915050565b60006080820190506137b560008301876132f8565b6137c260208301866132f8565b6137cf6040830185613747565b81810360608301526137e18184613316565b905095945050505050565b60006020820190506138016000830184613307565b92915050565b600060608201905061381c6000830186613307565b6138296020830185613307565b6138366040830184613747565b949350505050565b60006020820190508181036000830152613858818461334f565b905092915050565b60006020820190508181036000830152613879816133b9565b9050919050565b60006020820190508181036000830152613899816133dc565b9050919050565b600060208201905081810360008301526138b9816133ff565b9050919050565b600060208201905081810360008301526138d981613422565b9050919050565b600060208201905081810360008301526138f981613445565b9050919050565b6000602082019050818103600083015261391981613468565b9050919050565b600060208201905081810360008301526139398161348b565b9050919050565b60006020820190508181036000830152613959816134ae565b9050919050565b60006020820190508181036000830152613979816134d1565b9050919050565b60006020820190508181036000830152613999816134f4565b9050919050565b600060208201905081810360008301526139b98161353a565b9050919050565b600060208201905081810360008301526139d98161355d565b9050919050565b600060208201905081810360008301526139f981613580565b9050919050565b60006020820190508181036000830152613a19816135a3565b9050919050565b60006020820190508181036000830152613a39816135c6565b9050919050565b60006020820190508181036000830152613a59816135e9565b9050919050565b60006020820190508181036000830152613a798161360c565b9050919050565b60006020820190508181036000830152613a998161362f565b9050919050565b60006020820190508181036000830152613ab981613652565b9050919050565b60006020820190508181036000830152613ad981613675565b9050919050565b60006020820190508181036000830152613af981613698565b9050919050565b60006020820190508181036000830152613b19816136bb565b9050919050565b60006020820190508181036000830152613b39816136de565b9050919050565b60006020820190508181036000830152613b5981613701565b9050919050565b60006020820190508181036000830152613b7981613724565b9050919050565b6000602082019050613b956000830184613747565b92915050565b6000613ba5613bb6565b9050613bb18282613e31565b919050565b6000604051905090565b600067ffffffffffffffff821115613bdb57613bda613f98565b5b613be482613fe5565b9050602081019050919050565b600081519050919050565b600081519050919050565b600082825260208201905092915050565b600082825260208201905092915050565b600081905092915050565b6000613c3f82613db3565b9150613c4a83613db3565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115613c7f57613c7e613edc565b5b828201905092915050565b6000613c9582613db3565b9150613ca083613db3565b925082613cb057613caf613f0b565b5b828204905092915050565b6000613cc682613db3565b9150613cd183613db3565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0483118215151615613d0a57613d09613edc565b5b828202905092915050565b6000613d2082613db3565b9150613d2b83613db3565b925082821015613d3e57613d3d613edc565b5b828203905092915050565b6000613d5482613d93565b9050919050565b60008115159050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b82818337600083830152505050565b60005b83811015613dea578082015181840152602081019050613dcf565b83811115613df9576000848401525b50505050565b60006002820490506001821680613e1757607f821691505b60208210811415613e2b57613e2a613f3a565b5b50919050565b613e3a82613fe5565b810181811067ffffffffffffffff82111715613e5957613e58613f98565b5b80604052505050565b6000613e6d82613db3565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff821415613ea057613e9f613edc565b5b600182019050919050565b6000613eb682613db3565b9150613ec183613db3565b925082613ed157613ed0613f0b565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600080fd5b600080fd5b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b7f455243373231413a206f776e657220696e646578206f7574206f6620626f756e60008201527f6473000000000000000000000000000000000000000000000000000000000000602082015250565b7f53414c455f4e4f545f4143544956452100000000000000000000000000000000600082015250565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f455843454544535f4d41585f5045525f54582100000000000000000000000000600082015250565b7f455243373231413a206f776e657220717565727920666f72206e6f6e6578697360008201527f74656e7420746f6b656e00000000000000000000000000000000000000000000602082015250565b7f455243373231413a20676c6f62616c20696e646578206f7574206f6620626f7560008201527f6e64730000000000000000000000000000000000000000000000000000000000602082015250565b7f455243373231413a207472616e7366657220746f20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b7f455243373231413a20617070726f76652063616c6c6572206973206e6f74206f60008201527f776e6572206e6f7220617070726f76656420666f7220616c6c00000000000000602082015250565b7f455243373231413a2062616c616e636520717565727920666f7220746865207a60008201527f65726f2061646472657373000000000000000000000000000000000000000000602082015250565b7f455243373231413a207472616e736665722066726f6d20696e636f727265637460008201527f206f776e65720000000000000000000000000000000000000000000000000000602082015250565b7f2e6a736f6e000000000000000000000000000000000000000000000000000000600082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008201527f6e6578697374656e7420746f6b656e0000000000000000000000000000000000602082015250565b7f455243373231413a20617070726f766520746f2063616c6c6572000000000000600082015250565b7f455243373231413a207472616e736665722063616c6c6572206973206e6f742060008201527f6f776e6572206e6f7220617070726f7665640000000000000000000000000000602082015250565b7f455843454544535f4d41585f5045525f57414c4c455421000000000000000000600082015250565b7f494e434f52524543545f414d4f554e5421000000000000000000000000000000600082015250565b7f455243373231413a20617070726f76616c20746f2063757272656e74206f776e60008201527f6572000000000000000000000000000000000000000000000000000000000000602082015250565b7f455243373231413a207472616e7366657220746f206e6f6e204552433732315260008201527f6563656976657220696d706c656d656e74657200000000000000000000000000602082015250565b7f455243373231413a206d696e7420746f20746865207a65726f2061646472657360008201527f7300000000000000000000000000000000000000000000000000000000000000602082015250565b7f455243373231413a207175616e74697479206d7573742062652067726561746560008201527f72207468616e2030000000000000000000000000000000000000000000000000602082015250565b7f455243373231413a20756e61626c6520746f2067657420746f6b656e206f662060008201527f6f776e657220627920696e646578000000000000000000000000000000000000602082015250565b7f4e4f545f414c4c4f574544210000000000000000000000000000000000000000600082015250565b7f544f4b454e5f5354414b45442100000000000000000000000000000000000000600082015250565b7f455243373231413a20756e61626c6520746f2064657465726d696e652074686560008201527f206f776e6572206f6620746f6b656e0000000000000000000000000000000000602082015250565b7f455243373231413a20617070726f76656420717565727920666f72206e6f6e6560008201527f78697374656e7420746f6b656e00000000000000000000000000000000000000602082015250565b6146af81613d49565b81146146ba57600080fd5b50565b6146c681613d5b565b81146146d157600080fd5b50565b6146dd81613d67565b81146146e857600080fd5b50565b6146f481613db3565b81146146ff57600080fd5b5056fea264697066735822122083a9a4dbbfcbb7e8a4cf95f96f937e401803a338ef6071d0cd5d0461317d2d0664736f6c63430008070033

Deployed Bytecode Sourcemap

39052:2565:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;25623:372;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;27509:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;29160:214;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;22810:98;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;28681:413;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;23876:104;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;23626:49;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;;;:::i;:::-;;;;;;;;30036:229;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;24544:1007;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;40098:109;;;;;;;;;;;;;:::i;:::-;;40310:97;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;30336:244;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;24057:187;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;40215:87;;;;;;;;;;;;;:::i;:::-;;22775:28;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;40532:90;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;27318:124;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;40419:105;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;26059:221;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;4506:94;;;;;;;;;;;;;:::i;:::-;;39505:31;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;39821:39;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;3855:87;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;27678:104;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;41112:502;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;29446:288;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;40630:69;;;;;;;;;;;;;:::i;:::-;;39547:35;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;30651:422;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;27853:423;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;29805:164;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;40936:168;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;4755:192;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;39464:32;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;39434:22;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;25623:372;25725:4;25777:25;25762:40;;;:11;:40;;;;:105;;;;25834:33;25819:48;;;:11;:48;;;;25762:105;:172;;;;25899:35;25884:50;;;:11;:50;;;;25762:172;:225;;;;25951:36;25975:11;25951:23;:36::i;:::-;25762:225;25742:245;;25623:372;;;:::o;27509:100::-;27563:13;27596:5;27589:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;27509:100;:::o;29160:214::-;29228:7;29256:16;29264:7;29256;:16::i;:::-;29248:74;;;;;;;;;;;;:::i;:::-;;;;;;;;;29342:15;:24;29358:7;29342:24;;;;;;;;;;;;;;;;;;;;;29335:31;;29160:214;;;:::o;22810:98::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;28681:413::-;28754:13;28770:24;28786:7;28770:15;:24::i;:::-;28754:40;;28819:5;28813:11;;:2;:11;;;;28805:58;;;;;;;;;;;;:::i;:::-;;;;;;;;;28914:5;28898:21;;:12;:10;:12::i;:::-;:21;;;:62;;;;28923:37;28940:5;28947:12;:10;:12::i;:::-;28923:16;:37::i;:::-;28898:62;28876:169;;;;;;;;;;;;:::i;:::-;;;;;;;;;29058:28;29067:2;29071:7;29080:5;29058:8;:28::i;:::-;28743:351;28681:413;;:::o;23876:104::-;23929:7;23971:1;23956:12;;:16;;;;:::i;:::-;23949:23;;23876:104;:::o;23626:49::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;30036:229::-;30171:13;:22;30185:7;30171:22;;;;;;;;;;;:29;;;;;;;;;;;;30170:30;30162:56;;;;;;;;;;;;:::i;:::-;;;;;;;;;30229:28;30239:4;30245:2;30249:7;30229:9;:28::i;:::-;30036:229;;;:::o;24544:1007::-;24633:7;24669:16;24679:5;24669:9;:16::i;:::-;24661:5;:24;24653:71;;;;;;;;;;;;:::i;:::-;;;;;;;;;24735:22;24760:13;:11;:13::i;:::-;24735:38;;24784:19;24814:25;25003:9;24998:466;25018:14;25014:1;:18;24998:466;;;25058:31;25092:11;:14;25104:1;25092:14;;;;;;;;;;;25058:48;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;25155:1;25129:28;;:9;:14;;;:28;;;25125:111;;25202:9;:14;;;25182:34;;25125:111;25279:5;25258:26;;:17;:26;;;25254:195;;;25328:5;25313:11;:20;25309:85;;;25369:1;25362:8;;;;;;;;;25309:85;25416:13;;;;;;;25254:195;25039:425;25034:3;;;;;;;24998:466;;;;25487:56;;;;;;;;;;:::i;:::-;;;;;;;;24544:1007;;;;;:::o;40098:109::-;4086:12;:10;:12::i;:::-;4075:23;;:7;:5;:7::i;:::-;:23;;;4067:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;40156:10:::1;40148:28;;:51;40177:21;40148:51;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;40098:109::o:0;40310:97::-;4086:12;:10;:12::i;:::-;4075:23;;:7;:5;:7::i;:::-;:23;;;4067:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;40393:6:::1;40378:12;:21;;;;40310:97:::0;:::o;30336:244::-;30475:13;:22;30489:7;30475:22;;;;;;;;;;;:29;;;;;;;;;;;;30474:30;30466:56;;;;;;;;;;;;:::i;:::-;;;;;;;;;30533:39;30550:4;30556:2;30560:7;30533:39;;;;;;;;;;;;:16;:39::i;:::-;30336:244;;;:::o;24057:187::-;24124:7;24160:13;:11;:13::i;:::-;24152:5;:21;24144:69;;;;;;;;;;;;:::i;:::-;;;;;;;;;24231:5;24224:12;;24057:187;;;:::o;40215:87::-;4086:12;:10;:12::i;:::-;4075:23;;:7;:5;:7::i;:::-;:23;;;4067:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;40284:10:::1;;;;;;;;;;;40283:11;40270:10;;:24;;;;;;;;;;;;;;;;;;40215:87::o:0;22775:28::-;;;;;;;;;;;;;:::o;40532:90::-;4086:12;:10;:12::i;:::-;4075:23;;:7;:5;:7::i;:::-;:23;;;4067:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;40610:4:::1;;40604:3;:10;;;;;;;:::i;:::-;;40532:90:::0;;:::o;27318:124::-;27382:7;27409:20;27421:7;27409:11;:20::i;:::-;:25;;;27402:32;;27318:124;;;:::o;40419:105::-;4086:12;:10;:12::i;:::-;4075:23;;:7;:5;:7::i;:::-;:23;;;4067:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;40510:6:::1;40491:16;:25;;;;40419:105:::0;:::o;26059:221::-;26123:7;26168:1;26151:19;;:5;:19;;;;26143:75;;;;;;;;;;;;:::i;:::-;;;;;;;;;26244:12;:19;26257:5;26244:19;;;;;;;;;;;;;;;:27;;;;;;;;;;;;26236:36;;26229:43;;26059:221;;;:::o;4506:94::-;4086:12;:10;:12::i;:::-;4075:23;;:7;:5;:7::i;:::-;:23;;;4067:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;4571:21:::1;4589:1;4571:9;:21::i;:::-;4506:94::o:0;39505:31::-;;;;:::o;39821:39::-;;;;;;;;;;;;;;;;;:::o;3855:87::-;3901:7;3928:6;;;;;;;;;;;3921:13;;3855:87;:::o;27678:104::-;27734:13;27767:7;27760:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;27678:104;:::o;41112:502::-;41175:10;;;;;;;;;;;41167:39;;;;;;;;;;;;:::i;:::-;;;;;;;;;41242:16;;41220:7;:19;41228:10;41220:19;;;;;;;;;;;;;;;;:38;41217:390;;;41292:12;;41282:6;:22;;41274:54;;;;;;;;;;;;:::i;:::-;;;;;;;;;41383:16;;41373:6;41351:7;:19;41359:10;41351:19;;;;;;;;;;;;;;;;:28;;;;:::i;:::-;:48;;41343:84;;;;;;;;;;;;:::i;:::-;;;;;;;;;41479:6;41463:13;;:22;;;;:::i;:::-;41450:9;:35;41442:65;;;;;;;;;;;;:::i;:::-;;;;;;;;;41522:29;41532:10;41544:6;41522:9;:29::i;:::-;41589:6;41566:7;:19;41574:10;41566:19;;;;;;;;;;;;;;;;:29;;;;;;;:::i;:::-;;;;;;;;41217:390;41112:502;:::o;29446:288::-;29553:12;:10;:12::i;:::-;29541:24;;:8;:24;;;;29533:63;;;;;;;;;;;;:::i;:::-;;;;;;;;;29654:8;29609:18;:32;29628:12;:10;:12::i;:::-;29609:32;;;;;;;;;;;;;;;:42;29642:8;29609:42;;;;;;;;;;;;;;;;:53;;;;;;;;;;;;;;;;;;29707:8;29678:48;;29693:12;:10;:12::i;:::-;29678:48;;;29717:8;29678:48;;;;;;:::i;:::-;;;;;;;;29446:288;;:::o;40630:69::-;4086:12;:10;:12::i;:::-;4075:23;;:7;:5;:7::i;:::-;:23;;;4067:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;40687:4:::1;40676:8:::0;::::1;:15;;;;;;;;;;;;;;;;;;40630:69::o:0;39547:35::-;;;;:::o;30651:422::-;30819:13;:22;30833:7;30819:22;;;;;;;;;;;:29;;;;;;;;;;;;30818:30;30810:56;;;;;;;;;;;;:::i;:::-;;;;;;;;;30877:28;30887:4;30893:2;30897:7;30877:9;:28::i;:::-;30938:48;30961:4;30967:2;30971:7;30980:5;30938:22;:48::i;:::-;30916:149;;;;;;;;;;;;:::i;:::-;;;;;;;;;30651:422;;;;:::o;27853:423::-;27926:13;27960:16;27968:7;27960;:16::i;:::-;27952:76;;;;;;;;;;;;:::i;:::-;;;;;;;;;28055:5;28043:17;;:8;;;;;;;;;;;:17;;;28039:71;;;28084:14;28077:21;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;28039:71;28120:21;28144:10;:8;:10::i;:::-;28120:34;;28197:1;28178:7;28172:21;:26;;:96;;;;;;;;;;;;;;;;;28225:7;28234:18;:7;:16;:18::i;:::-;28208:54;;;;;;;;;:::i;:::-;;;;;;;;;;;;;28172:96;28165:103;;;27853:423;;;;:::o;29805:164::-;29902:4;29926:18;:25;29945:5;29926:25;;;;;;;;;;;;;;;:35;29952:8;29926:35;;;;;;;;;;;;;;;;;;;;;;;;;29919:42;;29805:164;;;;:::o;40936:168::-;4086:12;:10;:12::i;:::-;4075:23;;:7;:5;:7::i;:::-;:23;;;4067:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;41038:1:::1;39418:4;41025:14;;;;:::i;:::-;41009:12;;:30;;41001:55;;;;;;;;;;;;:::i;:::-;;;;;;;;;41067:29;41077:10;41089:6;41067:9;:29::i;:::-;40936:168:::0;:::o;4755:192::-;4086:12;:10;:12::i;:::-;4075:23;;:7;:5;:7::i;:::-;:23;;;4067:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;4864:1:::1;4844:22;;:8;:22;;;;4836:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;4920:19;4930:8;4920:9;:19::i;:::-;4755:192:::0;:::o;39464:32::-;;;;:::o;39434:22::-;;;;;;;;;;;;;:::o;15457:157::-;15542:4;15581:25;15566:40;;;:11;:40;;;;15559:47;;15457:157;;;:::o;31328:126::-;31385:4;31419:12;;31409:7;:22;:37;;;;;31445:1;31435:7;:11;31409:37;31402:44;;31328:126;;;:::o;2731:98::-;2784:7;2811:10;2804:17;;2731:98;:::o;36263:196::-;36405:2;36378:15;:24;36394:7;36378:24;;;;;;;;;;;;:29;;;;;;;;;;;;;;;;;;36443:7;36439:2;36423:28;;36432:5;36423:28;;;;;;;;;;;;36263:196;;;:::o;34143:2002::-;34258:35;34296:20;34308:7;34296:11;:20::i;:::-;34258:58;;34329:22;34371:13;:18;;;34355:34;;:12;:10;:12::i;:::-;:34;;;:87;;;;34430:12;:10;:12::i;:::-;34406:36;;:20;34418:7;34406:11;:20::i;:::-;:36;;;34355:87;:154;;;;34459:50;34476:13;:18;;;34496:12;:10;:12::i;:::-;34459:16;:50::i;:::-;34355:154;34329:181;;34531:17;34523:80;;;;;;;;;;;;:::i;:::-;;;;;;;;;34646:4;34624:26;;:13;:18;;;:26;;;34616:77;;;;;;;;;;;;:::i;:::-;;;;;;;;;34726:1;34712:16;;:2;:16;;;;34704:66;;;;;;;;;;;;:::i;:::-;;;;;;;;;34783:43;34805:4;34811:2;34815:7;34824:1;34783:21;:43::i;:::-;34891:49;34908:1;34912:7;34921:13;:18;;;34891:8;:49::i;:::-;35266:1;35236:12;:18;35249:4;35236:18;;;;;;;;;;;;;;;:26;;;:31;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;35310:1;35282:12;:16;35295:2;35282:16;;;;;;;;;;;;;;;:24;;;:29;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;35356:2;35328:11;:20;35340:7;35328:20;;;;;;;;;;;:25;;;:30;;;;;;;;;;;;;;;;;;35418:15;35373:11;:20;35385:7;35373:20;;;;;;;;;;;:35;;;:61;;;;;;;;;;;;;;;;;;35686:19;35718:1;35708:7;:11;35686:33;;35779:1;35738:43;;:11;:24;35750:11;35738:24;;;;;;;;;;;:29;;;;;;;;;;;;:43;;;35734:295;;;35806:20;35814:11;35806:7;:20::i;:::-;35802:212;;;35883:13;:18;;;35851:11;:24;35863:11;35851:24;;;;;;;;;;;:29;;;:50;;;;;;;;;;;;;;;;;;35966:13;:28;;;35924:11;:24;35936:11;35924:24;;;;;;;;;;;:39;;;:70;;;;;;;;;;;;;;;;;;35802:212;35734:295;35211:829;36076:7;36072:2;36057:27;;36066:4;36057:27;;;;;;;;;;;;36095:42;36116:4;36122:2;36126:7;36135:1;36095:20;:42::i;:::-;34247:1898;;34143:2002;;;:::o;26719:537::-;26780:21;;:::i;:::-;26822:16;26830:7;26822;:16::i;:::-;26814:71;;;;;;;;;;;;:::i;:::-;;;;;;;;;26928:12;26943:7;26928:22;;26923:245;26960:1;26952:4;:9;26923:245;;26990:31;27024:11;:17;27036:4;27024:17;;;;;;;;;;;26990:51;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;27090:1;27064:28;;:9;:14;;;:28;;;27060:93;;27124:9;27117:16;;;;;;27060:93;26971:197;26963:6;;;;;;;;26923:245;;;;27191:57;;;;;;;;;;:::i;:::-;;;;;;;;26719:537;;;;:::o;4955:173::-;5011:16;5030:6;;;;;;;;;;;5011:25;;5056:8;5047:6;;:17;;;;;;;;;;;;;;;;;;5111:8;5080:40;;5101:8;5080:40;;;;;;;;;;;;5000:128;4955:173;:::o;31462:104::-;31531:27;31541:2;31545:8;31531:27;;;;;;;;;;;;:9;:27::i;:::-;31462:104;;:::o;37024:804::-;37179:4;37200:15;:2;:13;;;:15::i;:::-;37196:625;;;37252:2;37236:36;;;37273:12;:10;:12::i;:::-;37287:4;37293:7;37302:5;37236:72;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;37232:534;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;37499:1;37482:6;:13;:18;37478:273;;;37525:61;;;;;;;;;;:::i;:::-;;;;;;;;37478:273;37701:6;37695:13;37686:6;37682:2;37678:15;37671:38;37232:534;37369:45;;;37359:55;;;:6;:55;;;;37352:62;;;;;37196:625;37805:4;37798:11;;37024:804;;;;;;;:::o;28524:95::-;28575:13;28608:3;28601:10;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;28524:95;:::o;430:723::-;486:13;716:1;707:5;:10;703:53;;;734:10;;;;;;;;;;;;;;;;;;;;;703:53;766:12;781:5;766:20;;797:14;822:78;837:1;829:4;:9;822:78;;855:8;;;;;:::i;:::-;;;;886:2;878:10;;;;;:::i;:::-;;;822:78;;;910:19;942:6;932:17;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;910:39;;960:154;976:1;967:5;:10;960:154;;1004:1;994:11;;;;;:::i;:::-;;;1071:2;1063:5;:10;;;;:::i;:::-;1050:2;:24;;;;:::i;:::-;1037:39;;1020:6;1027;1020:14;;;;;;;;:::i;:::-;;;;;:56;;;;;;;;;;;1100:2;1091:11;;;;;:::i;:::-;;;960:154;;;1138:6;1124:21;;;;;430:723;;;;:::o;38316:159::-;;;;;:::o;38887:158::-;;;;;:::o;31929:163::-;32052:32;32058:2;32062:8;32072:5;32079:4;32052:5;:32::i;:::-;31929:163;;;:::o;5816:387::-;5876:4;6084:12;6151:7;6139:20;6131:28;;6194:1;6187:4;:8;6180:15;;;5816:387;;;:::o;32351:1538::-;32490:20;32513:12;;32490:35;;32558:1;32544:16;;:2;:16;;;;32536:62;;;;;;;;;;;;:::i;:::-;;;;;;;;;32629:1;32617:8;:13;;32609:66;;;;;;;;;;;;:::i;:::-;;;;;;;;;32688:61;32718:1;32722:2;32726:12;32740:8;32688:21;:61::i;:::-;33063:8;33027:12;:16;33040:2;33027:16;;;;;;;;;;;;;;;:24;;;:45;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;33128:8;33087:12;:16;33100:2;33087:16;;;;;;;;;;;;;;;:29;;;:50;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;33187:2;33154:11;:25;33166:12;33154:25;;;;;;;;;;;:30;;;:35;;;;;;;;;;;;;;;;;;33254:15;33204:11;:25;33216:12;33204:25;;;;;;;;;;;:40;;;:66;;;;;;;;;;;;;;;;;;33287:20;33310:12;33287:35;;33344:9;33339:415;33359:8;33355:1;:12;33339:415;;;33423:12;33419:2;33398:38;;33415:1;33398:38;;;;;;;;;;;;33459:4;33455:249;;;33522:59;33553:1;33557:2;33561:12;33575:5;33522:22;:59::i;:::-;33488:196;;;;;;;;;;;;:::i;:::-;;;;;;;;;33455:249;33724:14;;;;;;;33369:3;;;;;;;33339:415;;;;33785:12;33770;:27;;;;33002:807;33821:60;33850:1;33854:2;33858:12;33872:8;33821:20;:60::i;:::-;32479:1410;32351:1538;;;;:::o;-1:-1:-1:-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;;;;;;;;;;;;;;;;;:::o;:::-;;;;;;;;;;;;;;;;;;;;;:::o;7:410:1:-;84:5;109:65;125:48;166:6;125:48;:::i;:::-;109:65;:::i;:::-;100:74;;197:6;190:5;183:21;235:4;228:5;224:16;273:3;264:6;259:3;255:16;252:25;249:112;;;280:79;;:::i;:::-;249:112;370:41;404:6;399:3;394;370:41;:::i;:::-;90:327;7:410;;;;;:::o;423:139::-;469:5;507:6;494:20;485:29;;523:33;550:5;523:33;:::i;:::-;423:139;;;;:::o;568:133::-;611:5;649:6;636:20;627:29;;665:30;689:5;665:30;:::i;:::-;568:133;;;;:::o;707:137::-;752:5;790:6;777:20;768:29;;806:32;832:5;806:32;:::i;:::-;707:137;;;;:::o;850:141::-;906:5;937:6;931:13;922:22;;953:32;979:5;953:32;:::i;:::-;850:141;;;;:::o;1010:338::-;1065:5;1114:3;1107:4;1099:6;1095:17;1091:27;1081:122;;1122:79;;:::i;:::-;1081:122;1239:6;1226:20;1264:78;1338:3;1330:6;1323:4;1315:6;1311:17;1264:78;:::i;:::-;1255:87;;1071:277;1010:338;;;;:::o;1368:553::-;1426:8;1436:6;1486:3;1479:4;1471:6;1467:17;1463:27;1453:122;;1494:79;;:::i;:::-;1453:122;1607:6;1594:20;1584:30;;1637:18;1629:6;1626:30;1623:117;;;1659:79;;:::i;:::-;1623:117;1773:4;1765:6;1761:17;1749:29;;1827:3;1819:4;1811:6;1807:17;1797:8;1793:32;1790:41;1787:128;;;1834:79;;:::i;:::-;1787:128;1368:553;;;;;:::o;1927:139::-;1973:5;2011:6;1998:20;1989:29;;2027:33;2054:5;2027:33;:::i;:::-;1927:139;;;;:::o;2072:329::-;2131:6;2180:2;2168:9;2159:7;2155:23;2151:32;2148:119;;;2186:79;;:::i;:::-;2148:119;2306:1;2331:53;2376:7;2367:6;2356:9;2352:22;2331:53;:::i;:::-;2321:63;;2277:117;2072:329;;;;:::o;2407:474::-;2475:6;2483;2532:2;2520:9;2511:7;2507:23;2503:32;2500:119;;;2538:79;;:::i;:::-;2500:119;2658:1;2683:53;2728:7;2719:6;2708:9;2704:22;2683:53;:::i;:::-;2673:63;;2629:117;2785:2;2811:53;2856:7;2847:6;2836:9;2832:22;2811:53;:::i;:::-;2801:63;;2756:118;2407:474;;;;;:::o;2887:619::-;2964:6;2972;2980;3029:2;3017:9;3008:7;3004:23;3000:32;2997:119;;;3035:79;;:::i;:::-;2997:119;3155:1;3180:53;3225:7;3216:6;3205:9;3201:22;3180:53;:::i;:::-;3170:63;;3126:117;3282:2;3308:53;3353:7;3344:6;3333:9;3329:22;3308:53;:::i;:::-;3298:63;;3253:118;3410:2;3436:53;3481:7;3472:6;3461:9;3457:22;3436:53;:::i;:::-;3426:63;;3381:118;2887:619;;;;;:::o;3512:943::-;3607:6;3615;3623;3631;3680:3;3668:9;3659:7;3655:23;3651:33;3648:120;;;3687:79;;:::i;:::-;3648:120;3807:1;3832:53;3877:7;3868:6;3857:9;3853:22;3832:53;:::i;:::-;3822:63;;3778:117;3934:2;3960:53;4005:7;3996:6;3985:9;3981:22;3960:53;:::i;:::-;3950:63;;3905:118;4062:2;4088:53;4133:7;4124:6;4113:9;4109:22;4088:53;:::i;:::-;4078:63;;4033:118;4218:2;4207:9;4203:18;4190:32;4249:18;4241:6;4238:30;4235:117;;;4271:79;;:::i;:::-;4235:117;4376:62;4430:7;4421:6;4410:9;4406:22;4376:62;:::i;:::-;4366:72;;4161:287;3512:943;;;;;;;:::o;4461:468::-;4526:6;4534;4583:2;4571:9;4562:7;4558:23;4554:32;4551:119;;;4589:79;;:::i;:::-;4551:119;4709:1;4734:53;4779:7;4770:6;4759:9;4755:22;4734:53;:::i;:::-;4724:63;;4680:117;4836:2;4862:50;4904:7;4895:6;4884:9;4880:22;4862:50;:::i;:::-;4852:60;;4807:115;4461:468;;;;;:::o;4935:474::-;5003:6;5011;5060:2;5048:9;5039:7;5035:23;5031:32;5028:119;;;5066:79;;:::i;:::-;5028:119;5186:1;5211:53;5256:7;5247:6;5236:9;5232:22;5211:53;:::i;:::-;5201:63;;5157:117;5313:2;5339:53;5384:7;5375:6;5364:9;5360:22;5339:53;:::i;:::-;5329:63;;5284:118;4935:474;;;;;:::o;5415:327::-;5473:6;5522:2;5510:9;5501:7;5497:23;5493:32;5490:119;;;5528:79;;:::i;:::-;5490:119;5648:1;5673:52;5717:7;5708:6;5697:9;5693:22;5673:52;:::i;:::-;5663:62;;5619:116;5415:327;;;;:::o;5748:349::-;5817:6;5866:2;5854:9;5845:7;5841:23;5837:32;5834:119;;;5872:79;;:::i;:::-;5834:119;5992:1;6017:63;6072:7;6063:6;6052:9;6048:22;6017:63;:::i;:::-;6007:73;;5963:127;5748:349;;;;:::o;6103:529::-;6174:6;6182;6231:2;6219:9;6210:7;6206:23;6202:32;6199:119;;;6237:79;;:::i;:::-;6199:119;6385:1;6374:9;6370:17;6357:31;6415:18;6407:6;6404:30;6401:117;;;6437:79;;:::i;:::-;6401:117;6550:65;6607:7;6598:6;6587:9;6583:22;6550:65;:::i;:::-;6532:83;;;;6328:297;6103:529;;;;;:::o;6638:329::-;6697:6;6746:2;6734:9;6725:7;6721:23;6717:32;6714:119;;;6752:79;;:::i;:::-;6714:119;6872:1;6897:53;6942:7;6933:6;6922:9;6918:22;6897:53;:::i;:::-;6887:63;;6843:117;6638:329;;;;:::o;6973:118::-;7060:24;7078:5;7060:24;:::i;:::-;7055:3;7048:37;6973:118;;:::o;7097:109::-;7178:21;7193:5;7178:21;:::i;:::-;7173:3;7166:34;7097:109;;:::o;7212:360::-;7298:3;7326:38;7358:5;7326:38;:::i;:::-;7380:70;7443:6;7438:3;7380:70;:::i;:::-;7373:77;;7459:52;7504:6;7499:3;7492:4;7485:5;7481:16;7459:52;:::i;:::-;7536:29;7558:6;7536:29;:::i;:::-;7531:3;7527:39;7520:46;;7302:270;7212:360;;;;:::o;7578:364::-;7666:3;7694:39;7727:5;7694:39;:::i;:::-;7749:71;7813:6;7808:3;7749:71;:::i;:::-;7742:78;;7829:52;7874:6;7869:3;7862:4;7855:5;7851:16;7829:52;:::i;:::-;7906:29;7928:6;7906:29;:::i;:::-;7901:3;7897:39;7890:46;;7670:272;7578:364;;;;:::o;7948:377::-;8054:3;8082:39;8115:5;8082:39;:::i;:::-;8137:89;8219:6;8214:3;8137:89;:::i;:::-;8130:96;;8235:52;8280:6;8275:3;8268:4;8261:5;8257:16;8235:52;:::i;:::-;8312:6;8307:3;8303:16;8296:23;;8058:267;7948:377;;;;:::o;8331:366::-;8473:3;8494:67;8558:2;8553:3;8494:67;:::i;:::-;8487:74;;8570:93;8659:3;8570:93;:::i;:::-;8688:2;8683:3;8679:12;8672:19;;8331:366;;;:::o;8703:::-;8845:3;8866:67;8930:2;8925:3;8866:67;:::i;:::-;8859:74;;8942:93;9031:3;8942:93;:::i;:::-;9060:2;9055:3;9051:12;9044:19;;8703:366;;;:::o;9075:::-;9217:3;9238:67;9302:2;9297:3;9238:67;:::i;:::-;9231:74;;9314:93;9403:3;9314:93;:::i;:::-;9432:2;9427:3;9423:12;9416:19;;9075:366;;;:::o;9447:::-;9589:3;9610:67;9674:2;9669:3;9610:67;:::i;:::-;9603:74;;9686:93;9775:3;9686:93;:::i;:::-;9804:2;9799:3;9795:12;9788:19;;9447:366;;;:::o;9819:::-;9961:3;9982:67;10046:2;10041:3;9982:67;:::i;:::-;9975:74;;10058:93;10147:3;10058:93;:::i;:::-;10176:2;10171:3;10167:12;10160:19;;9819:366;;;:::o;10191:::-;10333:3;10354:67;10418:2;10413:3;10354:67;:::i;:::-;10347:74;;10430:93;10519:3;10430:93;:::i;:::-;10548:2;10543:3;10539:12;10532:19;;10191:366;;;:::o;10563:::-;10705:3;10726:67;10790:2;10785:3;10726:67;:::i;:::-;10719:74;;10802:93;10891:3;10802:93;:::i;:::-;10920:2;10915:3;10911:12;10904:19;;10563:366;;;:::o;10935:::-;11077:3;11098:67;11162:2;11157:3;11098:67;:::i;:::-;11091:74;;11174:93;11263:3;11174:93;:::i;:::-;11292:2;11287:3;11283:12;11276:19;;10935:366;;;:::o;11307:::-;11449:3;11470:67;11534:2;11529:3;11470:67;:::i;:::-;11463:74;;11546:93;11635:3;11546:93;:::i;:::-;11664:2;11659:3;11655:12;11648:19;;11307:366;;;:::o;11679:::-;11821:3;11842:67;11906:2;11901:3;11842:67;:::i;:::-;11835:74;;11918:93;12007:3;11918:93;:::i;:::-;12036:2;12031:3;12027:12;12020:19;;11679:366;;;:::o;12051:400::-;12211:3;12232:84;12314:1;12309:3;12232:84;:::i;:::-;12225:91;;12325:93;12414:3;12325:93;:::i;:::-;12443:1;12438:3;12434:11;12427:18;;12051:400;;;:::o;12457:366::-;12599:3;12620:67;12684:2;12679:3;12620:67;:::i;:::-;12613:74;;12696:93;12785:3;12696:93;:::i;:::-;12814:2;12809:3;12805:12;12798:19;;12457:366;;;:::o;12829:::-;12971:3;12992:67;13056:2;13051:3;12992:67;:::i;:::-;12985:74;;13068:93;13157:3;13068:93;:::i;:::-;13186:2;13181:3;13177:12;13170:19;;12829:366;;;:::o;13201:::-;13343:3;13364:67;13428:2;13423:3;13364:67;:::i;:::-;13357:74;;13440:93;13529:3;13440:93;:::i;:::-;13558:2;13553:3;13549:12;13542:19;;13201:366;;;:::o;13573:::-;13715:3;13736:67;13800:2;13795:3;13736:67;:::i;:::-;13729:74;;13812:93;13901:3;13812:93;:::i;:::-;13930:2;13925:3;13921:12;13914:19;;13573:366;;;:::o;13945:::-;14087:3;14108:67;14172:2;14167:3;14108:67;:::i;:::-;14101:74;;14184:93;14273:3;14184:93;:::i;:::-;14302:2;14297:3;14293:12;14286:19;;13945:366;;;:::o;14317:::-;14459:3;14480:67;14544:2;14539:3;14480:67;:::i;:::-;14473:74;;14556:93;14645:3;14556:93;:::i;:::-;14674:2;14669:3;14665:12;14658:19;;14317:366;;;:::o;14689:::-;14831:3;14852:67;14916:2;14911:3;14852:67;:::i;:::-;14845:74;;14928:93;15017:3;14928:93;:::i;:::-;15046:2;15041:3;15037:12;15030:19;;14689:366;;;:::o;15061:::-;15203:3;15224:67;15288:2;15283:3;15224:67;:::i;:::-;15217:74;;15300:93;15389:3;15300:93;:::i;:::-;15418:2;15413:3;15409:12;15402:19;;15061:366;;;:::o;15433:::-;15575:3;15596:67;15660:2;15655:3;15596:67;:::i;:::-;15589:74;;15672:93;15761:3;15672:93;:::i;:::-;15790:2;15785:3;15781:12;15774:19;;15433:366;;;:::o;15805:::-;15947:3;15968:67;16032:2;16027:3;15968:67;:::i;:::-;15961:74;;16044:93;16133:3;16044:93;:::i;:::-;16162:2;16157:3;16153:12;16146:19;;15805:366;;;:::o;16177:::-;16319:3;16340:67;16404:2;16399:3;16340:67;:::i;:::-;16333:74;;16416:93;16505:3;16416:93;:::i;:::-;16534:2;16529:3;16525:12;16518:19;;16177:366;;;:::o;16549:::-;16691:3;16712:67;16776:2;16771:3;16712:67;:::i;:::-;16705:74;;16788:93;16877:3;16788:93;:::i;:::-;16906:2;16901:3;16897:12;16890:19;;16549:366;;;:::o;16921:::-;17063:3;17084:67;17148:2;17143:3;17084:67;:::i;:::-;17077:74;;17160:93;17249:3;17160:93;:::i;:::-;17278:2;17273:3;17269:12;17262:19;;16921:366;;;:::o;17293:::-;17435:3;17456:67;17520:2;17515:3;17456:67;:::i;:::-;17449:74;;17532:93;17621:3;17532:93;:::i;:::-;17650:2;17645:3;17641:12;17634:19;;17293:366;;;:::o;17665:::-;17807:3;17828:67;17892:2;17887:3;17828:67;:::i;:::-;17821:74;;17904:93;17993:3;17904:93;:::i;:::-;18022:2;18017:3;18013:12;18006:19;;17665:366;;;:::o;18037:118::-;18124:24;18142:5;18124:24;:::i;:::-;18119:3;18112:37;18037:118;;:::o;18161:701::-;18442:3;18464:95;18555:3;18546:6;18464:95;:::i;:::-;18457:102;;18576:95;18667:3;18658:6;18576:95;:::i;:::-;18569:102;;18688:148;18832:3;18688:148;:::i;:::-;18681:155;;18853:3;18846:10;;18161:701;;;;;:::o;18868:222::-;18961:4;18999:2;18988:9;18984:18;18976:26;;19012:71;19080:1;19069:9;19065:17;19056:6;19012:71;:::i;:::-;18868:222;;;;:::o;19096:640::-;19291:4;19329:3;19318:9;19314:19;19306:27;;19343:71;19411:1;19400:9;19396:17;19387:6;19343:71;:::i;:::-;19424:72;19492:2;19481:9;19477:18;19468:6;19424:72;:::i;:::-;19506;19574:2;19563:9;19559:18;19550:6;19506:72;:::i;:::-;19625:9;19619:4;19615:20;19610:2;19599:9;19595:18;19588:48;19653:76;19724:4;19715:6;19653:76;:::i;:::-;19645:84;;19096:640;;;;;;;:::o;19742:210::-;19829:4;19867:2;19856:9;19852:18;19844:26;;19880:65;19942:1;19931:9;19927:17;19918:6;19880:65;:::i;:::-;19742:210;;;;:::o;19958:418::-;20095:4;20133:2;20122:9;20118:18;20110:26;;20146:65;20208:1;20197:9;20193:17;20184:6;20146:65;:::i;:::-;20221:66;20283:2;20272:9;20268:18;20259:6;20221:66;:::i;:::-;20297:72;20365:2;20354:9;20350:18;20341:6;20297:72;:::i;:::-;19958:418;;;;;;:::o;20382:313::-;20495:4;20533:2;20522:9;20518:18;20510:26;;20582:9;20576:4;20572:20;20568:1;20557:9;20553:17;20546:47;20610:78;20683:4;20674:6;20610:78;:::i;:::-;20602:86;;20382:313;;;;:::o;20701:419::-;20867:4;20905:2;20894:9;20890:18;20882:26;;20954:9;20948:4;20944:20;20940:1;20929:9;20925:17;20918:47;20982:131;21108:4;20982:131;:::i;:::-;20974:139;;20701:419;;;:::o;21126:::-;21292:4;21330:2;21319:9;21315:18;21307:26;;21379:9;21373:4;21369:20;21365:1;21354:9;21350:17;21343:47;21407:131;21533:4;21407:131;:::i;:::-;21399:139;;21126:419;;;:::o;21551:::-;21717:4;21755:2;21744:9;21740:18;21732:26;;21804:9;21798:4;21794:20;21790:1;21779:9;21775:17;21768:47;21832:131;21958:4;21832:131;:::i;:::-;21824:139;;21551:419;;;:::o;21976:::-;22142:4;22180:2;22169:9;22165:18;22157:26;;22229:9;22223:4;22219:20;22215:1;22204:9;22200:17;22193:47;22257:131;22383:4;22257:131;:::i;:::-;22249:139;;21976:419;;;:::o;22401:::-;22567:4;22605:2;22594:9;22590:18;22582:26;;22654:9;22648:4;22644:20;22640:1;22629:9;22625:17;22618:47;22682:131;22808:4;22682:131;:::i;:::-;22674:139;;22401:419;;;:::o;22826:::-;22992:4;23030:2;23019:9;23015:18;23007:26;;23079:9;23073:4;23069:20;23065:1;23054:9;23050:17;23043:47;23107:131;23233:4;23107:131;:::i;:::-;23099:139;;22826:419;;;:::o;23251:::-;23417:4;23455:2;23444:9;23440:18;23432:26;;23504:9;23498:4;23494:20;23490:1;23479:9;23475:17;23468:47;23532:131;23658:4;23532:131;:::i;:::-;23524:139;;23251:419;;;:::o;23676:::-;23842:4;23880:2;23869:9;23865:18;23857:26;;23929:9;23923:4;23919:20;23915:1;23904:9;23900:17;23893:47;23957:131;24083:4;23957:131;:::i;:::-;23949:139;;23676:419;;;:::o;24101:::-;24267:4;24305:2;24294:9;24290:18;24282:26;;24354:9;24348:4;24344:20;24340:1;24329:9;24325:17;24318:47;24382:131;24508:4;24382:131;:::i;:::-;24374:139;;24101:419;;;:::o;24526:::-;24692:4;24730:2;24719:9;24715:18;24707:26;;24779:9;24773:4;24769:20;24765:1;24754:9;24750:17;24743:47;24807:131;24933:4;24807:131;:::i;:::-;24799:139;;24526:419;;;:::o;24951:::-;25117:4;25155:2;25144:9;25140:18;25132:26;;25204:9;25198:4;25194:20;25190:1;25179:9;25175:17;25168:47;25232:131;25358:4;25232:131;:::i;:::-;25224:139;;24951:419;;;:::o;25376:::-;25542:4;25580:2;25569:9;25565:18;25557:26;;25629:9;25623:4;25619:20;25615:1;25604:9;25600:17;25593:47;25657:131;25783:4;25657:131;:::i;:::-;25649:139;;25376:419;;;:::o;25801:::-;25967:4;26005:2;25994:9;25990:18;25982:26;;26054:9;26048:4;26044:20;26040:1;26029:9;26025:17;26018:47;26082:131;26208:4;26082:131;:::i;:::-;26074:139;;25801:419;;;:::o;26226:::-;26392:4;26430:2;26419:9;26415:18;26407:26;;26479:9;26473:4;26469:20;26465:1;26454:9;26450:17;26443:47;26507:131;26633:4;26507:131;:::i;:::-;26499:139;;26226:419;;;:::o;26651:::-;26817:4;26855:2;26844:9;26840:18;26832:26;;26904:9;26898:4;26894:20;26890:1;26879:9;26875:17;26868:47;26932:131;27058:4;26932:131;:::i;:::-;26924:139;;26651:419;;;:::o;27076:::-;27242:4;27280:2;27269:9;27265:18;27257:26;;27329:9;27323:4;27319:20;27315:1;27304:9;27300:17;27293:47;27357:131;27483:4;27357:131;:::i;:::-;27349:139;;27076:419;;;:::o;27501:::-;27667:4;27705:2;27694:9;27690:18;27682:26;;27754:9;27748:4;27744:20;27740:1;27729:9;27725:17;27718:47;27782:131;27908:4;27782:131;:::i;:::-;27774:139;;27501:419;;;:::o;27926:::-;28092:4;28130:2;28119:9;28115:18;28107:26;;28179:9;28173:4;28169:20;28165:1;28154:9;28150:17;28143:47;28207:131;28333:4;28207:131;:::i;:::-;28199:139;;27926:419;;;:::o;28351:::-;28517:4;28555:2;28544:9;28540:18;28532:26;;28604:9;28598:4;28594:20;28590:1;28579:9;28575:17;28568:47;28632:131;28758:4;28632:131;:::i;:::-;28624:139;;28351:419;;;:::o;28776:::-;28942:4;28980:2;28969:9;28965:18;28957:26;;29029:9;29023:4;29019:20;29015:1;29004:9;29000:17;28993:47;29057:131;29183:4;29057:131;:::i;:::-;29049:139;;28776:419;;;:::o;29201:::-;29367:4;29405:2;29394:9;29390:18;29382:26;;29454:9;29448:4;29444:20;29440:1;29429:9;29425:17;29418:47;29482:131;29608:4;29482:131;:::i;:::-;29474:139;;29201:419;;;:::o;29626:::-;29792:4;29830:2;29819:9;29815:18;29807:26;;29879:9;29873:4;29869:20;29865:1;29854:9;29850:17;29843:47;29907:131;30033:4;29907:131;:::i;:::-;29899:139;;29626:419;;;:::o;30051:::-;30217:4;30255:2;30244:9;30240:18;30232:26;;30304:9;30298:4;30294:20;30290:1;30279:9;30275:17;30268:47;30332:131;30458:4;30332:131;:::i;:::-;30324:139;;30051:419;;;:::o;30476:::-;30642:4;30680:2;30669:9;30665:18;30657:26;;30729:9;30723:4;30719:20;30715:1;30704:9;30700:17;30693:47;30757:131;30883:4;30757:131;:::i;:::-;30749:139;;30476:419;;;:::o;30901:::-;31067:4;31105:2;31094:9;31090:18;31082:26;;31154:9;31148:4;31144:20;31140:1;31129:9;31125:17;31118:47;31182:131;31308:4;31182:131;:::i;:::-;31174:139;;30901:419;;;:::o;31326:222::-;31419:4;31457:2;31446:9;31442:18;31434:26;;31470:71;31538:1;31527:9;31523:17;31514:6;31470:71;:::i;:::-;31326:222;;;;:::o;31554:129::-;31588:6;31615:20;;:::i;:::-;31605:30;;31644:33;31672:4;31664:6;31644:33;:::i;:::-;31554:129;;;:::o;31689:75::-;31722:6;31755:2;31749:9;31739:19;;31689:75;:::o;31770:307::-;31831:4;31921:18;31913:6;31910:30;31907:56;;;31943:18;;:::i;:::-;31907:56;31981:29;32003:6;31981:29;:::i;:::-;31973:37;;32065:4;32059;32055:15;32047:23;;31770:307;;;:::o;32083:98::-;32134:6;32168:5;32162:12;32152:22;;32083:98;;;:::o;32187:99::-;32239:6;32273:5;32267:12;32257:22;;32187:99;;;:::o;32292:168::-;32375:11;32409:6;32404:3;32397:19;32449:4;32444:3;32440:14;32425:29;;32292:168;;;;:::o;32466:169::-;32550:11;32584:6;32579:3;32572:19;32624:4;32619:3;32615:14;32600:29;;32466:169;;;;:::o;32641:148::-;32743:11;32780:3;32765:18;;32641:148;;;;:::o;32795:305::-;32835:3;32854:20;32872:1;32854:20;:::i;:::-;32849:25;;32888:20;32906:1;32888:20;:::i;:::-;32883:25;;33042:1;32974:66;32970:74;32967:1;32964:81;32961:107;;;33048:18;;:::i;:::-;32961:107;33092:1;33089;33085:9;33078:16;;32795:305;;;;:::o;33106:185::-;33146:1;33163:20;33181:1;33163:20;:::i;:::-;33158:25;;33197:20;33215:1;33197:20;:::i;:::-;33192:25;;33236:1;33226:35;;33241:18;;:::i;:::-;33226:35;33283:1;33280;33276:9;33271:14;;33106:185;;;;:::o;33297:348::-;33337:7;33360:20;33378:1;33360:20;:::i;:::-;33355:25;;33394:20;33412:1;33394:20;:::i;:::-;33389:25;;33582:1;33514:66;33510:74;33507:1;33504:81;33499:1;33492:9;33485:17;33481:105;33478:131;;;33589:18;;:::i;:::-;33478:131;33637:1;33634;33630:9;33619:20;;33297:348;;;;:::o;33651:191::-;33691:4;33711:20;33729:1;33711:20;:::i;:::-;33706:25;;33745:20;33763:1;33745:20;:::i;:::-;33740:25;;33784:1;33781;33778:8;33775:34;;;33789:18;;:::i;:::-;33775:34;33834:1;33831;33827:9;33819:17;;33651:191;;;;:::o;33848:96::-;33885:7;33914:24;33932:5;33914:24;:::i;:::-;33903:35;;33848:96;;;:::o;33950:90::-;33984:7;34027:5;34020:13;34013:21;34002:32;;33950:90;;;:::o;34046:149::-;34082:7;34122:66;34115:5;34111:78;34100:89;;34046:149;;;:::o;34201:126::-;34238:7;34278:42;34271:5;34267:54;34256:65;;34201:126;;;:::o;34333:77::-;34370:7;34399:5;34388:16;;34333:77;;;:::o;34416:154::-;34500:6;34495:3;34490;34477:30;34562:1;34553:6;34548:3;34544:16;34537:27;34416:154;;;:::o;34576:307::-;34644:1;34654:113;34668:6;34665:1;34662:13;34654:113;;;34753:1;34748:3;34744:11;34738:18;34734:1;34729:3;34725:11;34718:39;34690:2;34687:1;34683:10;34678:15;;34654:113;;;34785:6;34782:1;34779:13;34776:101;;;34865:1;34856:6;34851:3;34847:16;34840:27;34776:101;34625:258;34576:307;;;:::o;34889:320::-;34933:6;34970:1;34964:4;34960:12;34950:22;;35017:1;35011:4;35007:12;35038:18;35028:81;;35094:4;35086:6;35082:17;35072:27;;35028:81;35156:2;35148:6;35145:14;35125:18;35122:38;35119:84;;;35175:18;;:::i;:::-;35119:84;34940:269;34889:320;;;:::o;35215:281::-;35298:27;35320:4;35298:27;:::i;:::-;35290:6;35286:40;35428:6;35416:10;35413:22;35392:18;35380:10;35377:34;35374:62;35371:88;;;35439:18;;:::i;:::-;35371:88;35479:10;35475:2;35468:22;35258:238;35215:281;;:::o;35502:233::-;35541:3;35564:24;35582:5;35564:24;:::i;:::-;35555:33;;35610:66;35603:5;35600:77;35597:103;;;35680:18;;:::i;:::-;35597:103;35727:1;35720:5;35716:13;35709:20;;35502:233;;;:::o;35741:176::-;35773:1;35790:20;35808:1;35790:20;:::i;:::-;35785:25;;35824:20;35842:1;35824:20;:::i;:::-;35819:25;;35863:1;35853:35;;35868:18;;:::i;:::-;35853:35;35909:1;35906;35902:9;35897:14;;35741:176;;;;:::o;35923:180::-;35971:77;35968:1;35961:88;36068:4;36065:1;36058:15;36092:4;36089:1;36082:15;36109:180;36157:77;36154:1;36147:88;36254:4;36251:1;36244:15;36278:4;36275:1;36268:15;36295:180;36343:77;36340:1;36333:88;36440:4;36437:1;36430:15;36464:4;36461:1;36454:15;36481:180;36529:77;36526:1;36519:88;36626:4;36623:1;36616:15;36650:4;36647:1;36640:15;36667:180;36715:77;36712:1;36705:88;36812:4;36809:1;36802:15;36836:4;36833:1;36826:15;36853:117;36962:1;36959;36952:12;36976:117;37085:1;37082;37075:12;37099:117;37208:1;37205;37198:12;37222:117;37331:1;37328;37321:12;37345:117;37454:1;37451;37444:12;37468:117;37577:1;37574;37567:12;37591:102;37632:6;37683:2;37679:7;37674:2;37667:5;37663:14;37659:28;37649:38;;37591:102;;;:::o;37699:221::-;37839:34;37835:1;37827:6;37823:14;37816:58;37908:4;37903:2;37895:6;37891:15;37884:29;37699:221;:::o;37926:166::-;38066:18;38062:1;38054:6;38050:14;38043:42;37926:166;:::o;38098:225::-;38238:34;38234:1;38226:6;38222:14;38215:58;38307:8;38302:2;38294:6;38290:15;38283:33;38098:225;:::o;38329:169::-;38469:21;38465:1;38457:6;38453:14;38446:45;38329:169;:::o;38504:229::-;38644:34;38640:1;38632:6;38628:14;38621:58;38713:12;38708:2;38700:6;38696:15;38689:37;38504:229;:::o;38739:222::-;38879:34;38875:1;38867:6;38863:14;38856:58;38948:5;38943:2;38935:6;38931:15;38924:30;38739:222;:::o;38967:224::-;39107:34;39103:1;39095:6;39091:14;39084:58;39176:7;39171:2;39163:6;39159:15;39152:32;38967:224;:::o;39197:244::-;39337:34;39333:1;39325:6;39321:14;39314:58;39406:27;39401:2;39393:6;39389:15;39382:52;39197:244;:::o;39447:230::-;39587:34;39583:1;39575:6;39571:14;39564:58;39656:13;39651:2;39643:6;39639:15;39632:38;39447:230;:::o;39683:225::-;39823:34;39819:1;39811:6;39807:14;39800:58;39892:8;39887:2;39879:6;39875:15;39868:33;39683:225;:::o;39914:155::-;40054:7;40050:1;40042:6;40038:14;40031:31;39914:155;:::o;40075:182::-;40215:34;40211:1;40203:6;40199:14;40192:58;40075:182;:::o;40263:234::-;40403:34;40399:1;40391:6;40387:14;40380:58;40472:17;40467:2;40459:6;40455:15;40448:42;40263:234;:::o;40503:176::-;40643:28;40639:1;40631:6;40627:14;40620:52;40503:176;:::o;40685:237::-;40825:34;40821:1;40813:6;40809:14;40802:58;40894:20;40889:2;40881:6;40877:15;40870:45;40685:237;:::o;40928:173::-;41068:25;41064:1;41056:6;41052:14;41045:49;40928:173;:::o;41107:167::-;41247:19;41243:1;41235:6;41231:14;41224:43;41107:167;:::o;41280:221::-;41420:34;41416:1;41408:6;41404:14;41397:58;41489:4;41484:2;41476:6;41472:15;41465:29;41280:221;:::o;41507:238::-;41647:34;41643:1;41635:6;41631:14;41624:58;41716:21;41711:2;41703:6;41699:15;41692:46;41507:238;:::o;41751:220::-;41891:34;41887:1;41879:6;41875:14;41868:58;41960:3;41955:2;41947:6;41943:15;41936:28;41751:220;:::o;41977:227::-;42117:34;42113:1;42105:6;42101:14;42094:58;42186:10;42181:2;42173:6;42169:15;42162:35;41977:227;:::o;42210:233::-;42350:34;42346:1;42338:6;42334:14;42327:58;42419:16;42414:2;42406:6;42402:15;42395:41;42210:233;:::o;42449:162::-;42589:14;42585:1;42577:6;42573:14;42566:38;42449:162;:::o;42617:163::-;42757:15;42753:1;42745:6;42741:14;42734:39;42617:163;:::o;42786:234::-;42926:34;42922:1;42914:6;42910:14;42903:58;42995:17;42990:2;42982:6;42978:15;42971:42;42786:234;:::o;43026:232::-;43166:34;43162:1;43154:6;43150:14;43143:58;43235:15;43230:2;43222:6;43218:15;43211:40;43026:232;:::o;43264:122::-;43337:24;43355:5;43337:24;:::i;:::-;43330:5;43327:35;43317:63;;43376:1;43373;43366:12;43317:63;43264:122;:::o;43392:116::-;43462:21;43477:5;43462:21;:::i;:::-;43455:5;43452:32;43442:60;;43498:1;43495;43488:12;43442:60;43392:116;:::o;43514:120::-;43586:23;43603:5;43586:23;:::i;:::-;43579:5;43576:34;43566:62;;43624:1;43621;43614:12;43566:62;43514:120;:::o;43640:122::-;43713:24;43731:5;43713:24;:::i;:::-;43706:5;43703:35;43693:63;;43752:1;43749;43742:12;43693:63;43640:122;:::o

Swarm Source

ipfs://83a9a4dbbfcbb7e8a4cf95f96f937e401803a338ef6071d0cd5d0461317d2d06
Loading...
Loading
Loading...
Loading
[ Download: CSV Export  ]
[ Download: CSV Export  ]

A token is a representation of an on-chain or off-chain asset. The token page shows information such as price, total supply, holders, transfers and social links. Learn more about this page in our Knowledge Base.