ETH Price: $3,014.82 (+4.65%)
Gas: 2 Gwei

Token

KevToadz (KTOADZ)
 

Overview

Max Total Supply

470 KTOADZ

Holders

242

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A
Filtered by Token Holder
greddy.eth
Balance
1 KTOADZ
0x41c389c0a86ad99323f123733de6c106c4c28402
Loading...
Loading
Loading...
Loading
Loading...
Loading

Click here to update the token information / general information
# Exchange Pair Price  24H Volume % Volume

Contract Source Code Verified (Exact Match)

Contract Name:
KevToadz

Compiler Version
v0.8.7+commit.e28d00a7

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

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

// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

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

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


// File @openzeppelin/contracts/access/[email protected]


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



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

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

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

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

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

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

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

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


// File @openzeppelin/contracts/utils/[email protected]


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



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

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

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

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

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


// File @openzeppelin/contracts/utils/introspection/[email protected]


// OpenZeppelin Contracts v4.4.1 (utils/introspection/IERC165.sol)



/**
 * @dev Interface of the ERC165 standard, as defined in the
 * https://eips.ethereum.org/EIPS/eip-165[EIP].
 *
 * Implementers can declare support of contract interfaces, which can then be
 * queried by others ({ERC165Checker}).
 *
 * For an implementation, see {ERC165}.
 */
interface IERC165 {
    /**
     * @dev Returns true if this contract implements the interface defined by
     * `interfaceId`. See the corresponding
     * https://eips.ethereum.org/EIPS/eip-165#how-interfaces-are-identified[EIP section]
     * to learn more about how these ids are created.
     *
     * This function call must use less than 30 000 gas.
     */
    function supportsInterface(bytes4 interfaceId) external view returns (bool);
}


// File @openzeppelin/contracts/token/ERC721/[email protected]


// OpenZeppelin Contracts v4.4.1 (token/ERC721/IERC721.sol)



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


// File @openzeppelin/contracts/token/ERC721/[email protected]


// OpenZeppelin Contracts v4.4.1 (token/ERC721/IERC721Receiver.sol)



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


// File @openzeppelin/contracts/token/ERC721/extensions/[email protected]


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



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

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

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


// File @openzeppelin/contracts/token/ERC721/extensions/[email protected]


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



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


// File @openzeppelin/contracts/utils/[email protected]


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



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


// File @openzeppelin/contracts/utils/introspection/[email protected]


// OpenZeppelin Contracts v4.4.1 (utils/introspection/ERC165.sol)



/**
 * @dev Implementation of the {IERC165} interface.
 *
 * Contracts that want to implement ERC165 should inherit from this contract and override {supportsInterface} to check
 * for the additional interface id that will be supported. For example:
 *
 * ```solidity
 * function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) {
 *     return interfaceId == type(MyInterface).interfaceId || super.supportsInterface(interfaceId);
 * }
 * ```
 *
 * Alternatively, {ERC165Storage} provides an easier to use but more expensive implementation.
 */
abstract contract ERC165 is IERC165 {
    /**
     * @dev See {IERC165-supportsInterface}.
     */
    function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) {
        return interfaceId == type(IERC165).interfaceId;
    }
}


// File contracts/ERC721A.sol


// Creator: Chiru Labs


/**
 * @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 (max value of uint128) of supply
 */
contract ERC721A is Context, ERC165, IERC721, IERC721Metadata, IERC721Enumerable {
    using Address for address;
    using Strings for uint256;

    struct TokenOwnership {
        address addr;
        uint64 startTimestamp;
    }

    struct AddressData {
        uint128 balance;
        uint128 numberMinted;
    }

    uint256 internal currentIndex = 1;

    // Token name
    string private _name;

    // Token symbol
    string private _symbol;

    // Mapping from token ID to ownership details
    // An empty struct value does not necessarily mean the token is unowned. See ownershipOf implementation for details.
    mapping(uint256 => TokenOwnership) internal _ownerships;

    // Mapping owner address to address data
    mapping(address => AddressData) private _addressData;

    // Mapping from token ID to approved address
    mapping(uint256 => address) private _tokenApprovals;

    // Mapping from owner to operator approvals
    mapping(address => mapping(address => bool)) private _operatorApprovals;

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

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

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

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

    function ownershipOf(uint256 tokenId) internal view returns (TokenOwnership memory) {
        require(_exists(tokenId), 'ERC721A: owner query for nonexistent token');

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

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

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

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

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

    /**
     * @dev See {IERC721Metadata-tokenURI}.
     */
    function tokenURI(uint256 tokenId) public view virtual override returns (string memory) {
        require(_exists(tokenId), 'ERC721Metadata: URI query for nonexistent token');

        string memory baseURI = _baseURI();
        return bytes(baseURI).length > 0 ? string(abi.encodePacked(baseURI, tokenId.toString())) : '';
    }

    /**
     * @dev Base URI for computing {tokenURI}. If set, the resulting URI for each
     * token will be the concatenation of the `baseURI` and the `tokenId`. Empty
     * by default, can be overriden in child contracts.
     */
    function _baseURI() internal view virtual returns (string memory) {
        return '';
    }

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

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

        _approve(to, tokenId, owner);
    }

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

        return _tokenApprovals[tokenId];
    }

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

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

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

    /**
     * @dev See {IERC721-transferFrom}.
     */
    function transferFrom(
        address from,
        address to,
        uint256 tokenId
    ) public override {
        _transfer(from, to, tokenId);
    }

    /**
     * @dev See {IERC721-safeTransferFrom}.
     */
    function safeTransferFrom(
        address from,
        address to,
        uint256 tokenId
    ) public override {
        safeTransferFrom(from, to, tokenId, '');
    }

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

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

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

    /**
     * @dev Mints `quantity` tokens and transfers them to `to`.
     *
     * Requirements:
     *
     * - `to` cannot be the zero address.
     * - `quantity` cannot be larger than the max batch size.
     *
     * Emits a {Transfer} event.
     */
    function _safeMint(
        address to,
        uint256 quantity,
        bytes memory _data
    ) internal {
        uint256 startTokenId = currentIndex;
        require(to != address(0), 'ERC721A: mint to the zero address');
        // We know if the first token in the batch doesn't exist, the other ones don't as well, because of serial ordering.
        require(!_exists(startTokenId), 'ERC721A: token already minted');
        require(quantity > 0, 'ERC721A: quantity must be greater 0');

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

        AddressData memory addressData = _addressData[to];
        _addressData[to] = AddressData(
            addressData.balance + uint128(quantity),
            addressData.numberMinted + uint128(quantity)
        );
        _ownerships[startTokenId] = TokenOwnership(to, uint64(block.timestamp));

        uint256 updatedIndex = startTokenId;

        for (uint256 i = 0; i < quantity; i++) {
            emit Transfer(address(0), to, updatedIndex);
            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.
        unchecked {
            _addressData[from].balance -= 1;
            _addressData[to].balance += 1;
        }

        _ownerships[tokenId] = TokenOwnership(to, 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] = TokenOwnership(prevOwnership.addr, 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 KevToadz is ERC721A, Ownable {

    using Address for address;
    using Strings for uint;

    uint256 public constant MaxPerWallet = 2;
    uint256 public constant MaxTX = 1;
    uint256 public constant MaxSupply = 470;
    uint256 public constant price = 0.00 ether;
    string public baseURI = "ipfs://QmdMvQYoGMuwDPPoGTxcDSoHx3JceCTe5VbngVFXrSu851/";
    string public constant baseExtension = ".json";
    address public constant proxyRegistryAddress = 0xa5409ec958C83C3f309868babACA7c86DCB077c1;
    mapping(address => uint256) public addressMinted;
    bool public paused = true;

    constructor() ERC721A("KevToadz", "KTOADZ") {}

    function mint(uint256 quantity) external payable {
        require(!paused, "Paused");
        require(MaxSupply >= totalSupply() + quantity, "Exceeds max supply");
        require(quantity > 0, "No 0 mints");
        require(tx.origin == msg.sender, "No contracts");
        require(addressMinted[msg.sender] + quantity <= MaxPerWallet, "Can only mint 2 per wallet.");
        require(MaxTX >= quantity, "Tokens per transaction limit exeded,");
        require(quantity * price == msg.value, "Invalid funds provided");
        addressMinted[msg.sender] += quantity;
        _safeMint(msg.sender, quantity);
    }


    function isApprovedForAll(address owner, address operator)
        override
        public
        view
        returns (bool)
    {
        // Whitelist OpenSea proxy contract for easy trading.
        ProxyRegistry proxyRegistry = ProxyRegistry(proxyRegistryAddress);
        if (address(proxyRegistry.proxies(owner)) == operator) {
            return true;
        }

        return super.isApprovedForAll(owner, operator);
    }

    function withdraw() external onlyOwner {
        uint256 balance = address(this).balance;
        (bool success, ) = _msgSender().call{value: balance}("");
        require(success, "Failed to send");
    }

    function pause(bool _state) external onlyOwner {
        paused = _state;
    }

    function setBaseURI(string memory baseURI_) external onlyOwner {
        baseURI = baseURI_;
    }

    function tokenURI(uint256 _tokenId) public view override returns (string memory) {
        require(_exists(_tokenId), "Token does not exist.");
        return bytes(baseURI).length > 0 ? string(
            abi.encodePacked(
              baseURI,
              Strings.toString(_tokenId),
              baseExtension
            )
        ) : "";
    }
}

contract OwnableDelegateProxy { }
contract ProxyRegistry {
    mapping(address => OwnableDelegateProxy) public proxies;
}

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":[],"name":"MaxPerWallet","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"MaxSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"MaxTX","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"addressMinted","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"baseExtension","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"baseURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"quantity","type":"uint256"}],"name":"mint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bool","name":"_state","type":"bool"}],"name":"pause","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"paused","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"price","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"proxyRegistryAddress","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"_data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"baseURI_","type":"string"}],"name":"setBaseURI","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"}]

6080604052600160005560405180606001604052806036815260200162004ae060369139600890805190602001906200003a929190620001f8565b506001600a60006101000a81548160ff0219169083151502179055503480156200006357600080fd5b506040518060400160405280600881526020017f4b6576546f61647a0000000000000000000000000000000000000000000000008152506040518060400160405280600681526020017f4b544f41445a00000000000000000000000000000000000000000000000000008152508160019080519060200190620000e8929190620001f8565b50806002908051906020019062000101929190620001f8565b50505062000124620001186200012a60201b60201c565b6200013260201b60201c565b6200030d565b600033905090565b6000600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600760006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b8280546200020690620002a8565b90600052602060002090601f0160209004810192826200022a576000855562000276565b82601f106200024557805160ff191683800117855562000276565b8280016001018555821562000276579182015b828111156200027557825182559160200191906001019062000258565b5b50905062000285919062000289565b5090565b5b80821115620002a45760008160009055506001016200028a565b5090565b60006002820490506001821680620002c157607f821691505b60208210811415620002d857620002d7620002de565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b6147c3806200031d6000396000f3fe6080604052600436106101e35760003560e01c806370a0823111610102578063b36c128411610095578063cd7c032611610064578063cd7c0326146106d5578063e985e9c514610700578063f2fde38b1461073d578063fa30297e14610766576101e3565b8063b36c128414610619578063b88d4fde14610644578063c66828621461066d578063c87b56dd14610698576101e3565b806395d89b41116100d157806395d89b411461057e578063a035b1fe146105a9578063a0712d68146105d4578063a22cb465146105f0576101e3565b806370a08231146104d4578063715018a6146105115780638bec1c6d146105285780638da5cb5b14610553576101e3565b80633297acb41161017a57806355f804b31161014957806355f804b3146104185780635c975abb146104415780636352211e1461046c5780636c0360eb146104a9576101e3565b80633297acb4146103705780633ccfd60b1461039b57806342842e0e146103b25780634f6ccce7146103db576101e3565b8063095ea7b3116101b6578063095ea7b3146102b657806318160ddd146102df57806323b872dd1461030a5780632f745c5914610333576101e3565b806301ffc9a7146101e857806302329a291461022557806306fdde031461024e578063081812fc14610279575b600080fd5b3480156101f457600080fd5b5061020f600480360381019061020a919061309f565b6107a3565b60405161021c919061376c565b60405180910390f35b34801561023157600080fd5b5061024c60048036038101906102479190613072565b6108ed565b005b34801561025a57600080fd5b50610263610986565b6040516102709190613787565b60405180910390f35b34801561028557600080fd5b506102a0600480360381019061029b919061316f565b610a18565b6040516102ad9190613705565b60405180910390f35b3480156102c257600080fd5b506102dd60048036038101906102d89190613032565b610a9d565b005b3480156102eb57600080fd5b506102f4610bb6565b6040516103019190613b09565b60405180910390f35b34801561031657600080fd5b50610331600480360381019061032c9190612f1c565b610bbf565b005b34801561033f57600080fd5b5061035a60048036038101906103559190613032565b610bcf565b6040516103679190613b09565b60405180910390f35b34801561037c57600080fd5b50610385610dcd565b6040516103929190613b09565b60405180910390f35b3480156103a757600080fd5b506103b0610dd2565b005b3480156103be57600080fd5b506103d960048036038101906103d49190612f1c565b610f0a565b005b3480156103e757600080fd5b5061040260048036038101906103fd919061316f565b610f2a565b60405161040f9190613b09565b60405180910390f35b34801561042457600080fd5b5061043f600480360381019061043a9190613126565b610f7d565b005b34801561044d57600080fd5b50610456611013565b604051610463919061376c565b60405180910390f35b34801561047857600080fd5b50610493600480360381019061048e919061316f565b611026565b6040516104a09190613705565b60405180910390f35b3480156104b557600080fd5b506104be61103c565b6040516104cb9190613787565b60405180910390f35b3480156104e057600080fd5b506104fb60048036038101906104f69190612eaf565b6110ca565b6040516105089190613b09565b60405180910390f35b34801561051d57600080fd5b506105266111b3565b005b34801561053457600080fd5b5061053d61123b565b60405161054a9190613b09565b60405180910390f35b34801561055f57600080fd5b50610568611240565b6040516105759190613705565b60405180910390f35b34801561058a57600080fd5b5061059361126a565b6040516105a09190613787565b60405180910390f35b3480156105b557600080fd5b506105be6112fc565b6040516105cb9190613b09565b60405180910390f35b6105ee60048036038101906105e9919061316f565b611301565b005b3480156105fc57600080fd5b5061061760048036038101906106129190612ff2565b6115dc565b005b34801561062557600080fd5b5061062e61175d565b60405161063b9190613b09565b60405180910390f35b34801561065057600080fd5b5061066b60048036038101906106669190612f6f565b611763565b005b34801561067957600080fd5b506106826117bf565b60405161068f9190613787565b60405180910390f35b3480156106a457600080fd5b506106bf60048036038101906106ba919061316f565b6117f8565b6040516106cc9190613787565b60405180910390f35b3480156106e157600080fd5b506106ea6118d7565b6040516106f79190613705565b60405180910390f35b34801561070c57600080fd5b5061072760048036038101906107229190612edc565b6118ef565b604051610734919061376c565b60405180910390f35b34801561074957600080fd5b50610764600480360381019061075f9190612eaf565b6119e3565b005b34801561077257600080fd5b5061078d60048036038101906107889190612eaf565b611adb565b60405161079a9190613b09565b60405180910390f35b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916148061086e57507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b806108d657507f780e9d63000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b806108e657506108e582611af3565b5b9050919050565b6108f5611b5d565b73ffffffffffffffffffffffffffffffffffffffff16610913611240565b73ffffffffffffffffffffffffffffffffffffffff1614610969576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161096090613969565b60405180910390fd5b80600a60006101000a81548160ff02191690831515021790555050565b60606001805461099590613e77565b80601f01602080910402602001604051908101604052809291908181526020018280546109c190613e77565b8015610a0e5780601f106109e357610100808354040283529160200191610a0e565b820191906000526020600020905b8154815290600101906020018083116109f157829003601f168201915b5050505050905090565b6000610a2382611b65565b610a62576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a5990613ac9565b60405180910390fd5b6005600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b6000610aa882611026565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610b19576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b10906139e9565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16610b38611b5d565b73ffffffffffffffffffffffffffffffffffffffff161480610b675750610b6681610b61611b5d565b6118ef565b5b610ba6576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b9d906138a9565b60405180910390fd5b610bb1838383611b72565b505050565b60008054905090565b610bca838383611c24565b505050565b6000610bda836110ca565b8210610c1b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c12906137a9565b60405180910390fd5b6000610c25610bb6565b905060008060005b83811015610d8b576000600360008381526020019081526020016000206040518060400160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815250509050600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff1614610d1f57806000015192505b8773ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610d775786841415610d68578195505050505050610dc7565b8380610d7390613eda565b9450505b508080610d8390613eda565b915050610c2d565b506040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610dbe90613aa9565b60405180910390fd5b92915050565b600181565b610dda611b5d565b73ffffffffffffffffffffffffffffffffffffffff16610df8611240565b73ffffffffffffffffffffffffffffffffffffffff1614610e4e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e4590613969565b60405180910390fd5b60004790506000610e5d611b5d565b73ffffffffffffffffffffffffffffffffffffffff1682604051610e80906136f0565b60006040518083038185875af1925050503d8060008114610ebd576040519150601f19603f3d011682016040523d82523d6000602084013e610ec2565b606091505b5050905080610f06576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610efd90613a89565b60405180910390fd5b5050565b610f2583838360405180602001604052806000815250611763565b505050565b6000610f34610bb6565b8210610f75576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f6c90613869565b60405180910390fd5b819050919050565b610f85611b5d565b73ffffffffffffffffffffffffffffffffffffffff16610fa3611240565b73ffffffffffffffffffffffffffffffffffffffff1614610ff9576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ff090613969565b60405180910390fd5b806008908051906020019061100f929190612c74565b5050565b600a60009054906101000a900460ff1681565b6000611031826121cb565b600001519050919050565b6008805461104990613e77565b80601f016020809104026020016040519081016040528092919081815260200182805461107590613e77565b80156110c25780601f10611097576101008083540402835291602001916110c2565b820191906000526020600020905b8154815290600101906020018083116110a557829003601f168201915b505050505081565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141561113b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161113290613909565b60405180910390fd5b600460008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160009054906101000a90046fffffffffffffffffffffffffffffffff166fffffffffffffffffffffffffffffffff169050919050565b6111bb611b5d565b73ffffffffffffffffffffffffffffffffffffffff166111d9611240565b73ffffffffffffffffffffffffffffffffffffffff161461122f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161122690613969565b60405180910390fd5b6112396000612326565b565b600281565b6000600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b60606002805461127990613e77565b80601f01602080910402602001604051908101604052809291908181526020018280546112a590613e77565b80156112f25780601f106112c7576101008083540402835291602001916112f2565b820191906000526020600020905b8154815290600101906020018083116112d557829003601f168201915b5050505050905090565b600081565b600a60009054906101000a900460ff1615611351576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611348906137c9565b60405180910390fd5b8061135a610bb6565b6113649190613c54565b6101d610156113a8576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161139f906138e9565b60405180910390fd5b600081116113eb576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113e290613829565b60405180910390fd5b3373ffffffffffffffffffffffffffffffffffffffff163273ffffffffffffffffffffffffffffffffffffffff1614611459576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161145090613ae9565b60405180910390fd5b600281600960003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546114a69190613c54565b11156114e7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114de90613849565b60405180910390fd5b806001101561152b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611522906138c9565b60405180910390fd5b346000826115399190613cdb565b14611579576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611570906139c9565b60405180910390fd5b80600960003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546115c89190613c54565b925050819055506115d933826123ec565b50565b6115e4611b5d565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611652576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161164990613989565b60405180910390fd5b806006600061165f611b5d565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff1661170c611b5d565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c3183604051611751919061376c565b60405180910390a35050565b6101d681565b61176e848484611c24565b61177a8484848461240a565b6117b9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117b090613a29565b60405180910390fd5b50505050565b6040518060400160405280600581526020017f2e6a736f6e00000000000000000000000000000000000000000000000000000081525081565b606061180382611b65565b611842576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161183990613929565b60405180910390fd5b60006008805461185190613e77565b90501161186d57604051806020016040528060008152506118d0565b6008611878836125a1565b6040518060400160405280600581526020017f2e6a736f6e0000000000000000000000000000000000000000000000000000008152506040516020016118c0939291906136bf565b6040516020818303038152906040525b9050919050565b73a5409ec958c83c3f309868babaca7c86dcb077c181565b60008073a5409ec958c83c3f309868babaca7c86dcb077c190508273ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1663c4552791866040518263ffffffff1660e01b81526004016119599190613705565b60206040518083038186803b15801561197157600080fd5b505afa158015611985573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906119a991906130f9565b73ffffffffffffffffffffffffffffffffffffffff1614156119cf5760019150506119dd565b6119d98484612702565b9150505b92915050565b6119eb611b5d565b73ffffffffffffffffffffffffffffffffffffffff16611a09611240565b73ffffffffffffffffffffffffffffffffffffffff1614611a5f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a5690613969565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415611acf576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ac6906137e9565b60405180910390fd5b611ad881612326565b50565b60096020528060005260406000206000915090505481565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b600033905090565b6000805482109050919050565b826005600084815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b6000611c2f826121cb565b90506000816000015173ffffffffffffffffffffffffffffffffffffffff16611c56611b5d565b73ffffffffffffffffffffffffffffffffffffffff161480611cb25750611c7b611b5d565b73ffffffffffffffffffffffffffffffffffffffff16611c9a84610a18565b73ffffffffffffffffffffffffffffffffffffffff16145b80611cce5750611ccd8260000151611cc8611b5d565b6118ef565b5b905080611d10576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d07906139a9565b60405180910390fd5b8473ffffffffffffffffffffffffffffffffffffffff16826000015173ffffffffffffffffffffffffffffffffffffffff1614611d82576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d7990613949565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161415611df2576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611de990613889565b60405180910390fd5b611dff8585856001612796565b611e0f6000848460000151611b72565b6001600460008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a90046fffffffffffffffffffffffffffffffff160392506101000a8154816fffffffffffffffffffffffffffffffff02191690836fffffffffffffffffffffffffffffffff1602179055506001600460008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a90046fffffffffffffffffffffffffffffffff160192506101000a8154816fffffffffffffffffffffffffffffffff02191690836fffffffffffffffffffffffffffffffff16021790555060405180604001604052808573ffffffffffffffffffffffffffffffffffffffff1681526020014267ffffffffffffffff168152506003600085815260200190815260200160002060008201518160000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555060208201518160000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff16021790555090505060006001846120159190613c54565b9050600073ffffffffffffffffffffffffffffffffffffffff166003600083815260200190815260200160002060000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16141561215b5761208b81611b65565b1561215a576040518060400160405280846000015173ffffffffffffffffffffffffffffffffffffffff168152602001846020015167ffffffffffffffff168152506003600083815260200190815260200160002060008201518160000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555060208201518160000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055509050505b5b838573ffffffffffffffffffffffffffffffffffffffff168773ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a46121c3868686600161279c565b505050505050565b6121d3612cfa565b6121dc82611b65565b61221b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161221290613809565b60405180910390fd5b60008290505b6000600360008381526020019081526020016000206040518060400160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815250509050600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff161461230d578092505050612321565b50808061231990613e4d565b915050612221565b919050565b6000600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600760006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b6124068282604051806020016040528060008152506127a2565b5050565b600061242b8473ffffffffffffffffffffffffffffffffffffffff16612c61565b15612594578373ffffffffffffffffffffffffffffffffffffffff1663150b7a02612454611b5d565b8786866040518563ffffffff1660e01b81526004016124769493929190613720565b602060405180830381600087803b15801561249057600080fd5b505af19250505080156124c157506040513d601f19601f820116820180604052508101906124be91906130cc565b60015b612544573d80600081146124f1576040519150601f19603f3d011682016040523d82523d6000602084013e6124f6565b606091505b5060008151141561253c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161253390613a29565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050612599565b600190505b949350505050565b606060008214156125e9576040518060400160405280600181526020017f300000000000000000000000000000000000000000000000000000000000000081525090506126fd565b600082905060005b6000821461261b57808061260490613eda565b915050600a826126149190613caa565b91506125f1565b60008167ffffffffffffffff81111561263757612636614010565b5b6040519080825280601f01601f1916602001820160405280156126695781602001600182028036833780820191505090505b5090505b600085146126f6576001826126829190613d35565b9150600a856126919190613f23565b603061269d9190613c54565b60f81b8183815181106126b3576126b2613fe1565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a856126ef9190613caa565b945061266d565b8093505050505b919050565b6000600660008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b50505050565b50505050565b600080549050600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161415612818576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161280f90613a69565b60405180910390fd5b61282181611b65565b15612861576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161285890613a49565b60405180910390fd5b600083116128a4576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161289b90613a09565b60405180910390fd5b6128b16000858386612796565b6000600460008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206040518060400160405290816000820160009054906101000a90046fffffffffffffffffffffffffffffffff166fffffffffffffffffffffffffffffffff166fffffffffffffffffffffffffffffffff1681526020016000820160109054906101000a90046fffffffffffffffffffffffffffffffff166fffffffffffffffffffffffffffffffff166fffffffffffffffffffffffffffffffff1681525050905060405180604001604052808583600001516129ae9190613c0e565b6fffffffffffffffffffffffffffffffff1681526020018583602001516129d59190613c0e565b6fffffffffffffffffffffffffffffffff16815250600460008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008201518160000160006101000a8154816fffffffffffffffffffffffffffffffff02191690836fffffffffffffffffffffffffffffffff16021790555060208201518160000160106101000a8154816fffffffffffffffffffffffffffffffff02191690836fffffffffffffffffffffffffffffffff16021790555090505060405180604001604052808673ffffffffffffffffffffffffffffffffffffffff1681526020014267ffffffffffffffff168152506003600084815260200190815260200160002060008201518160000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555060208201518160000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff160217905550905050600082905060005b85811015612c4457818773ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4612be4600088848861240a565b612c23576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612c1a90613a29565b60405180910390fd5b8180612c2e90613eda565b9250508080612c3c90613eda565b915050612b73565b5080600081905550612c59600087858861279c565b505050505050565b600080823b905060008111915050919050565b828054612c8090613e77565b90600052602060002090601f016020900481019282612ca25760008555612ce9565b82601f10612cbb57805160ff1916838001178555612ce9565b82800160010185558215612ce9579182015b82811115612ce8578251825591602001919060010190612ccd565b5b509050612cf69190612d34565b5090565b6040518060400160405280600073ffffffffffffffffffffffffffffffffffffffff168152602001600067ffffffffffffffff1681525090565b5b80821115612d4d576000816000905550600101612d35565b5090565b6000612d64612d5f84613b49565b613b24565b905082815260208101848484011115612d8057612d7f614044565b5b612d8b848285613e0b565b509392505050565b6000612da6612da184613b7a565b613b24565b905082815260208101848484011115612dc257612dc1614044565b5b612dcd848285613e0b565b509392505050565b600081359050612de48161471a565b92915050565b600081359050612df981614731565b92915050565b600081359050612e0e81614748565b92915050565b600081519050612e2381614748565b92915050565b600082601f830112612e3e57612e3d61403f565b5b8135612e4e848260208601612d51565b91505092915050565b600081519050612e668161475f565b92915050565b600082601f830112612e8157612e8061403f565b5b8135612e91848260208601612d93565b91505092915050565b600081359050612ea981614776565b92915050565b600060208284031215612ec557612ec461404e565b5b6000612ed384828501612dd5565b91505092915050565b60008060408385031215612ef357612ef261404e565b5b6000612f0185828601612dd5565b9250506020612f1285828601612dd5565b9150509250929050565b600080600060608486031215612f3557612f3461404e565b5b6000612f4386828701612dd5565b9350506020612f5486828701612dd5565b9250506040612f6586828701612e9a565b9150509250925092565b60008060008060808587031215612f8957612f8861404e565b5b6000612f9787828801612dd5565b9450506020612fa887828801612dd5565b9350506040612fb987828801612e9a565b925050606085013567ffffffffffffffff811115612fda57612fd9614049565b5b612fe687828801612e29565b91505092959194509250565b600080604083850312156130095761300861404e565b5b600061301785828601612dd5565b925050602061302885828601612dea565b9150509250929050565b600080604083850312156130495761304861404e565b5b600061305785828601612dd5565b925050602061306885828601612e9a565b9150509250929050565b6000602082840312156130885761308761404e565b5b600061309684828501612dea565b91505092915050565b6000602082840312156130b5576130b461404e565b5b60006130c384828501612dff565b91505092915050565b6000602082840312156130e2576130e161404e565b5b60006130f084828501612e14565b91505092915050565b60006020828403121561310f5761310e61404e565b5b600061311d84828501612e57565b91505092915050565b60006020828403121561313c5761313b61404e565b5b600082013567ffffffffffffffff81111561315a57613159614049565b5b61316684828501612e6c565b91505092915050565b6000602082840312156131855761318461404e565b5b600061319384828501612e9a565b91505092915050565b6131a581613d69565b82525050565b6131b481613d7b565b82525050565b60006131c582613bc0565b6131cf8185613bd6565b93506131df818560208601613e1a565b6131e881614053565b840191505092915050565b60006131fe82613bcb565b6132088185613bf2565b9350613218818560208601613e1a565b61322181614053565b840191505092915050565b600061323782613bcb565b6132418185613c03565b9350613251818560208601613e1a565b80840191505092915050565b6000815461326a81613e77565b6132748186613c03565b9450600182166000811461328f57600181146132a0576132d3565b60ff198316865281860193506132d3565b6132a985613bab565b60005b838110156132cb578154818901526001820191506020810190506132ac565b838801955050505b50505092915050565b60006132e9602283613bf2565b91506132f482614064565b604082019050919050565b600061330c600683613bf2565b9150613317826140b3565b602082019050919050565b600061332f602683613bf2565b915061333a826140dc565b604082019050919050565b6000613352602a83613bf2565b915061335d8261412b565b604082019050919050565b6000613375600a83613bf2565b91506133808261417a565b602082019050919050565b6000613398601b83613bf2565b91506133a3826141a3565b602082019050919050565b60006133bb602383613bf2565b91506133c6826141cc565b604082019050919050565b60006133de602583613bf2565b91506133e98261421b565b604082019050919050565b6000613401603983613bf2565b915061340c8261426a565b604082019050919050565b6000613424602483613bf2565b915061342f826142b9565b604082019050919050565b6000613447601283613bf2565b915061345282614308565b602082019050919050565b600061346a602b83613bf2565b915061347582614331565b604082019050919050565b600061348d601583613bf2565b915061349882614380565b602082019050919050565b60006134b0602683613bf2565b91506134bb826143a9565b604082019050919050565b60006134d3602083613bf2565b91506134de826143f8565b602082019050919050565b60006134f6601a83613bf2565b915061350182614421565b602082019050919050565b6000613519603283613bf2565b91506135248261444a565b604082019050919050565b600061353c601683613bf2565b915061354782614499565b602082019050919050565b600061355f602283613bf2565b915061356a826144c2565b604082019050919050565b6000613582600083613be7565b915061358d82614511565b600082019050919050565b60006135a5602383613bf2565b91506135b082614514565b604082019050919050565b60006135c8603383613bf2565b91506135d382614563565b604082019050919050565b60006135eb601d83613bf2565b91506135f6826145b2565b602082019050919050565b600061360e602183613bf2565b9150613619826145db565b604082019050919050565b6000613631600e83613bf2565b915061363c8261462a565b602082019050919050565b6000613654602e83613bf2565b915061365f82614653565b604082019050919050565b6000613677602d83613bf2565b9150613682826146a2565b604082019050919050565b600061369a600c83613bf2565b91506136a5826146f1565b602082019050919050565b6136b981613e01565b82525050565b60006136cb828661325d565b91506136d7828561322c565b91506136e3828461322c565b9150819050949350505050565b60006136fb82613575565b9150819050919050565b600060208201905061371a600083018461319c565b92915050565b6000608082019050613735600083018761319c565b613742602083018661319c565b61374f60408301856136b0565b818103606083015261376181846131ba565b905095945050505050565b600060208201905061378160008301846131ab565b92915050565b600060208201905081810360008301526137a181846131f3565b905092915050565b600060208201905081810360008301526137c2816132dc565b9050919050565b600060208201905081810360008301526137e2816132ff565b9050919050565b6000602082019050818103600083015261380281613322565b9050919050565b6000602082019050818103600083015261382281613345565b9050919050565b6000602082019050818103600083015261384281613368565b9050919050565b600060208201905081810360008301526138628161338b565b9050919050565b60006020820190508181036000830152613882816133ae565b9050919050565b600060208201905081810360008301526138a2816133d1565b9050919050565b600060208201905081810360008301526138c2816133f4565b9050919050565b600060208201905081810360008301526138e281613417565b9050919050565b600060208201905081810360008301526139028161343a565b9050919050565b600060208201905081810360008301526139228161345d565b9050919050565b6000602082019050818103600083015261394281613480565b9050919050565b60006020820190508181036000830152613962816134a3565b9050919050565b60006020820190508181036000830152613982816134c6565b9050919050565b600060208201905081810360008301526139a2816134e9565b9050919050565b600060208201905081810360008301526139c28161350c565b9050919050565b600060208201905081810360008301526139e28161352f565b9050919050565b60006020820190508181036000830152613a0281613552565b9050919050565b60006020820190508181036000830152613a2281613598565b9050919050565b60006020820190508181036000830152613a42816135bb565b9050919050565b60006020820190508181036000830152613a62816135de565b9050919050565b60006020820190508181036000830152613a8281613601565b9050919050565b60006020820190508181036000830152613aa281613624565b9050919050565b60006020820190508181036000830152613ac281613647565b9050919050565b60006020820190508181036000830152613ae28161366a565b9050919050565b60006020820190508181036000830152613b028161368d565b9050919050565b6000602082019050613b1e60008301846136b0565b92915050565b6000613b2e613b3f565b9050613b3a8282613ea9565b919050565b6000604051905090565b600067ffffffffffffffff821115613b6457613b63614010565b5b613b6d82614053565b9050602081019050919050565b600067ffffffffffffffff821115613b9557613b94614010565b5b613b9e82614053565b9050602081019050919050565b60008190508160005260206000209050919050565b600081519050919050565b600081519050919050565b600082825260208201905092915050565b600081905092915050565b600082825260208201905092915050565b600081905092915050565b6000613c1982613dc5565b9150613c2483613dc5565b9250826fffffffffffffffffffffffffffffffff03821115613c4957613c48613f54565b5b828201905092915050565b6000613c5f82613e01565b9150613c6a83613e01565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115613c9f57613c9e613f54565b5b828201905092915050565b6000613cb582613e01565b9150613cc083613e01565b925082613cd057613ccf613f83565b5b828204905092915050565b6000613ce682613e01565b9150613cf183613e01565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0483118215151615613d2a57613d29613f54565b5b828202905092915050565b6000613d4082613e01565b9150613d4b83613e01565b925082821015613d5e57613d5d613f54565b5b828203905092915050565b6000613d7482613de1565b9050919050565b60008115159050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b6000613dbe82613d69565b9050919050565b60006fffffffffffffffffffffffffffffffff82169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b82818337600083830152505050565b60005b83811015613e38578082015181840152602081019050613e1d565b83811115613e47576000848401525b50505050565b6000613e5882613e01565b91506000821415613e6c57613e6b613f54565b5b600182039050919050565b60006002820490506001821680613e8f57607f821691505b60208210811415613ea357613ea2613fb2565b5b50919050565b613eb282614053565b810181811067ffffffffffffffff82111715613ed157613ed0614010565b5b80604052505050565b6000613ee582613e01565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff821415613f1857613f17613f54565b5b600182019050919050565b6000613f2e82613e01565b9150613f3983613e01565b925082613f4957613f48613f83565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b7f455243373231413a206f776e657220696e646578206f7574206f6620626f756e60008201527f6473000000000000000000000000000000000000000000000000000000000000602082015250565b7f5061757365640000000000000000000000000000000000000000000000000000600082015250565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f455243373231413a206f776e657220717565727920666f72206e6f6e6578697360008201527f74656e7420746f6b656e00000000000000000000000000000000000000000000602082015250565b7f4e6f2030206d696e747300000000000000000000000000000000000000000000600082015250565b7f43616e206f6e6c79206d696e742032207065722077616c6c65742e0000000000600082015250565b7f455243373231413a20676c6f62616c20696e646578206f7574206f6620626f7560008201527f6e64730000000000000000000000000000000000000000000000000000000000602082015250565b7f455243373231413a207472616e7366657220746f20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b7f455243373231413a20617070726f76652063616c6c6572206973206e6f74206f60008201527f776e6572206e6f7220617070726f76656420666f7220616c6c00000000000000602082015250565b7f546f6b656e7320706572207472616e73616374696f6e206c696d69742065786560008201527f6465642c00000000000000000000000000000000000000000000000000000000602082015250565b7f45786365656473206d617820737570706c790000000000000000000000000000600082015250565b7f455243373231413a2062616c616e636520717565727920666f7220746865207a60008201527f65726f2061646472657373000000000000000000000000000000000000000000602082015250565b7f546f6b656e20646f6573206e6f742065786973742e0000000000000000000000600082015250565b7f455243373231413a207472616e736665722066726f6d20696e636f727265637460008201527f206f776e65720000000000000000000000000000000000000000000000000000602082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f455243373231413a20617070726f766520746f2063616c6c6572000000000000600082015250565b7f455243373231413a207472616e736665722063616c6c6572206973206e6f742060008201527f6f776e6572206e6f7220617070726f7665640000000000000000000000000000602082015250565b7f496e76616c69642066756e64732070726f766964656400000000000000000000600082015250565b7f455243373231413a20617070726f76616c20746f2063757272656e74206f776e60008201527f6572000000000000000000000000000000000000000000000000000000000000602082015250565b50565b7f455243373231413a207175616e74697479206d7573742062652067726561746560008201527f7220300000000000000000000000000000000000000000000000000000000000602082015250565b7f455243373231413a207472616e7366657220746f206e6f6e204552433732315260008201527f6563656976657220696d706c656d656e74657200000000000000000000000000602082015250565b7f455243373231413a20746f6b656e20616c7265616479206d696e746564000000600082015250565b7f455243373231413a206d696e7420746f20746865207a65726f2061646472657360008201527f7300000000000000000000000000000000000000000000000000000000000000602082015250565b7f4661696c656420746f2073656e64000000000000000000000000000000000000600082015250565b7f455243373231413a20756e61626c6520746f2067657420746f6b656e206f662060008201527f6f776e657220627920696e646578000000000000000000000000000000000000602082015250565b7f455243373231413a20617070726f76656420717565727920666f72206e6f6e6560008201527f78697374656e7420746f6b656e00000000000000000000000000000000000000602082015250565b7f4e6f20636f6e7472616374730000000000000000000000000000000000000000600082015250565b61472381613d69565b811461472e57600080fd5b50565b61473a81613d7b565b811461474557600080fd5b50565b61475181613d87565b811461475c57600080fd5b50565b61476881613db3565b811461477357600080fd5b50565b61477f81613e01565b811461478a57600080fd5b5056fea2646970667358221220e1c271506bbee27778a9944f8cb4d427cc609c979d6dfc2b09c73e8c6ef113e264736f6c63430008070033697066733a2f2f516d644d7651596f474d75774450506f4754786344536f4878334a63654354653556626e675646587253753835312f

Deployed Bytecode

0x6080604052600436106101e35760003560e01c806370a0823111610102578063b36c128411610095578063cd7c032611610064578063cd7c0326146106d5578063e985e9c514610700578063f2fde38b1461073d578063fa30297e14610766576101e3565b8063b36c128414610619578063b88d4fde14610644578063c66828621461066d578063c87b56dd14610698576101e3565b806395d89b41116100d157806395d89b411461057e578063a035b1fe146105a9578063a0712d68146105d4578063a22cb465146105f0576101e3565b806370a08231146104d4578063715018a6146105115780638bec1c6d146105285780638da5cb5b14610553576101e3565b80633297acb41161017a57806355f804b31161014957806355f804b3146104185780635c975abb146104415780636352211e1461046c5780636c0360eb146104a9576101e3565b80633297acb4146103705780633ccfd60b1461039b57806342842e0e146103b25780634f6ccce7146103db576101e3565b8063095ea7b3116101b6578063095ea7b3146102b657806318160ddd146102df57806323b872dd1461030a5780632f745c5914610333576101e3565b806301ffc9a7146101e857806302329a291461022557806306fdde031461024e578063081812fc14610279575b600080fd5b3480156101f457600080fd5b5061020f600480360381019061020a919061309f565b6107a3565b60405161021c919061376c565b60405180910390f35b34801561023157600080fd5b5061024c60048036038101906102479190613072565b6108ed565b005b34801561025a57600080fd5b50610263610986565b6040516102709190613787565b60405180910390f35b34801561028557600080fd5b506102a0600480360381019061029b919061316f565b610a18565b6040516102ad9190613705565b60405180910390f35b3480156102c257600080fd5b506102dd60048036038101906102d89190613032565b610a9d565b005b3480156102eb57600080fd5b506102f4610bb6565b6040516103019190613b09565b60405180910390f35b34801561031657600080fd5b50610331600480360381019061032c9190612f1c565b610bbf565b005b34801561033f57600080fd5b5061035a60048036038101906103559190613032565b610bcf565b6040516103679190613b09565b60405180910390f35b34801561037c57600080fd5b50610385610dcd565b6040516103929190613b09565b60405180910390f35b3480156103a757600080fd5b506103b0610dd2565b005b3480156103be57600080fd5b506103d960048036038101906103d49190612f1c565b610f0a565b005b3480156103e757600080fd5b5061040260048036038101906103fd919061316f565b610f2a565b60405161040f9190613b09565b60405180910390f35b34801561042457600080fd5b5061043f600480360381019061043a9190613126565b610f7d565b005b34801561044d57600080fd5b50610456611013565b604051610463919061376c565b60405180910390f35b34801561047857600080fd5b50610493600480360381019061048e919061316f565b611026565b6040516104a09190613705565b60405180910390f35b3480156104b557600080fd5b506104be61103c565b6040516104cb9190613787565b60405180910390f35b3480156104e057600080fd5b506104fb60048036038101906104f69190612eaf565b6110ca565b6040516105089190613b09565b60405180910390f35b34801561051d57600080fd5b506105266111b3565b005b34801561053457600080fd5b5061053d61123b565b60405161054a9190613b09565b60405180910390f35b34801561055f57600080fd5b50610568611240565b6040516105759190613705565b60405180910390f35b34801561058a57600080fd5b5061059361126a565b6040516105a09190613787565b60405180910390f35b3480156105b557600080fd5b506105be6112fc565b6040516105cb9190613b09565b60405180910390f35b6105ee60048036038101906105e9919061316f565b611301565b005b3480156105fc57600080fd5b5061061760048036038101906106129190612ff2565b6115dc565b005b34801561062557600080fd5b5061062e61175d565b60405161063b9190613b09565b60405180910390f35b34801561065057600080fd5b5061066b60048036038101906106669190612f6f565b611763565b005b34801561067957600080fd5b506106826117bf565b60405161068f9190613787565b60405180910390f35b3480156106a457600080fd5b506106bf60048036038101906106ba919061316f565b6117f8565b6040516106cc9190613787565b60405180910390f35b3480156106e157600080fd5b506106ea6118d7565b6040516106f79190613705565b60405180910390f35b34801561070c57600080fd5b5061072760048036038101906107229190612edc565b6118ef565b604051610734919061376c565b60405180910390f35b34801561074957600080fd5b50610764600480360381019061075f9190612eaf565b6119e3565b005b34801561077257600080fd5b5061078d60048036038101906107889190612eaf565b611adb565b60405161079a9190613b09565b60405180910390f35b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916148061086e57507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b806108d657507f780e9d63000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b806108e657506108e582611af3565b5b9050919050565b6108f5611b5d565b73ffffffffffffffffffffffffffffffffffffffff16610913611240565b73ffffffffffffffffffffffffffffffffffffffff1614610969576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161096090613969565b60405180910390fd5b80600a60006101000a81548160ff02191690831515021790555050565b60606001805461099590613e77565b80601f01602080910402602001604051908101604052809291908181526020018280546109c190613e77565b8015610a0e5780601f106109e357610100808354040283529160200191610a0e565b820191906000526020600020905b8154815290600101906020018083116109f157829003601f168201915b5050505050905090565b6000610a2382611b65565b610a62576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a5990613ac9565b60405180910390fd5b6005600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b6000610aa882611026565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610b19576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b10906139e9565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16610b38611b5d565b73ffffffffffffffffffffffffffffffffffffffff161480610b675750610b6681610b61611b5d565b6118ef565b5b610ba6576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b9d906138a9565b60405180910390fd5b610bb1838383611b72565b505050565b60008054905090565b610bca838383611c24565b505050565b6000610bda836110ca565b8210610c1b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c12906137a9565b60405180910390fd5b6000610c25610bb6565b905060008060005b83811015610d8b576000600360008381526020019081526020016000206040518060400160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815250509050600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff1614610d1f57806000015192505b8773ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610d775786841415610d68578195505050505050610dc7565b8380610d7390613eda565b9450505b508080610d8390613eda565b915050610c2d565b506040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610dbe90613aa9565b60405180910390fd5b92915050565b600181565b610dda611b5d565b73ffffffffffffffffffffffffffffffffffffffff16610df8611240565b73ffffffffffffffffffffffffffffffffffffffff1614610e4e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e4590613969565b60405180910390fd5b60004790506000610e5d611b5d565b73ffffffffffffffffffffffffffffffffffffffff1682604051610e80906136f0565b60006040518083038185875af1925050503d8060008114610ebd576040519150601f19603f3d011682016040523d82523d6000602084013e610ec2565b606091505b5050905080610f06576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610efd90613a89565b60405180910390fd5b5050565b610f2583838360405180602001604052806000815250611763565b505050565b6000610f34610bb6565b8210610f75576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f6c90613869565b60405180910390fd5b819050919050565b610f85611b5d565b73ffffffffffffffffffffffffffffffffffffffff16610fa3611240565b73ffffffffffffffffffffffffffffffffffffffff1614610ff9576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ff090613969565b60405180910390fd5b806008908051906020019061100f929190612c74565b5050565b600a60009054906101000a900460ff1681565b6000611031826121cb565b600001519050919050565b6008805461104990613e77565b80601f016020809104026020016040519081016040528092919081815260200182805461107590613e77565b80156110c25780601f10611097576101008083540402835291602001916110c2565b820191906000526020600020905b8154815290600101906020018083116110a557829003601f168201915b505050505081565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141561113b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161113290613909565b60405180910390fd5b600460008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160009054906101000a90046fffffffffffffffffffffffffffffffff166fffffffffffffffffffffffffffffffff169050919050565b6111bb611b5d565b73ffffffffffffffffffffffffffffffffffffffff166111d9611240565b73ffffffffffffffffffffffffffffffffffffffff161461122f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161122690613969565b60405180910390fd5b6112396000612326565b565b600281565b6000600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b60606002805461127990613e77565b80601f01602080910402602001604051908101604052809291908181526020018280546112a590613e77565b80156112f25780601f106112c7576101008083540402835291602001916112f2565b820191906000526020600020905b8154815290600101906020018083116112d557829003601f168201915b5050505050905090565b600081565b600a60009054906101000a900460ff1615611351576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611348906137c9565b60405180910390fd5b8061135a610bb6565b6113649190613c54565b6101d610156113a8576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161139f906138e9565b60405180910390fd5b600081116113eb576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113e290613829565b60405180910390fd5b3373ffffffffffffffffffffffffffffffffffffffff163273ffffffffffffffffffffffffffffffffffffffff1614611459576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161145090613ae9565b60405180910390fd5b600281600960003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546114a69190613c54565b11156114e7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114de90613849565b60405180910390fd5b806001101561152b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611522906138c9565b60405180910390fd5b346000826115399190613cdb565b14611579576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611570906139c9565b60405180910390fd5b80600960003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546115c89190613c54565b925050819055506115d933826123ec565b50565b6115e4611b5d565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611652576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161164990613989565b60405180910390fd5b806006600061165f611b5d565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff1661170c611b5d565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c3183604051611751919061376c565b60405180910390a35050565b6101d681565b61176e848484611c24565b61177a8484848461240a565b6117b9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117b090613a29565b60405180910390fd5b50505050565b6040518060400160405280600581526020017f2e6a736f6e00000000000000000000000000000000000000000000000000000081525081565b606061180382611b65565b611842576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161183990613929565b60405180910390fd5b60006008805461185190613e77565b90501161186d57604051806020016040528060008152506118d0565b6008611878836125a1565b6040518060400160405280600581526020017f2e6a736f6e0000000000000000000000000000000000000000000000000000008152506040516020016118c0939291906136bf565b6040516020818303038152906040525b9050919050565b73a5409ec958c83c3f309868babaca7c86dcb077c181565b60008073a5409ec958c83c3f309868babaca7c86dcb077c190508273ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1663c4552791866040518263ffffffff1660e01b81526004016119599190613705565b60206040518083038186803b15801561197157600080fd5b505afa158015611985573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906119a991906130f9565b73ffffffffffffffffffffffffffffffffffffffff1614156119cf5760019150506119dd565b6119d98484612702565b9150505b92915050565b6119eb611b5d565b73ffffffffffffffffffffffffffffffffffffffff16611a09611240565b73ffffffffffffffffffffffffffffffffffffffff1614611a5f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a5690613969565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415611acf576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ac6906137e9565b60405180910390fd5b611ad881612326565b50565b60096020528060005260406000206000915090505481565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b600033905090565b6000805482109050919050565b826005600084815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b6000611c2f826121cb565b90506000816000015173ffffffffffffffffffffffffffffffffffffffff16611c56611b5d565b73ffffffffffffffffffffffffffffffffffffffff161480611cb25750611c7b611b5d565b73ffffffffffffffffffffffffffffffffffffffff16611c9a84610a18565b73ffffffffffffffffffffffffffffffffffffffff16145b80611cce5750611ccd8260000151611cc8611b5d565b6118ef565b5b905080611d10576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d07906139a9565b60405180910390fd5b8473ffffffffffffffffffffffffffffffffffffffff16826000015173ffffffffffffffffffffffffffffffffffffffff1614611d82576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d7990613949565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161415611df2576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611de990613889565b60405180910390fd5b611dff8585856001612796565b611e0f6000848460000151611b72565b6001600460008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a90046fffffffffffffffffffffffffffffffff160392506101000a8154816fffffffffffffffffffffffffffffffff02191690836fffffffffffffffffffffffffffffffff1602179055506001600460008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a90046fffffffffffffffffffffffffffffffff160192506101000a8154816fffffffffffffffffffffffffffffffff02191690836fffffffffffffffffffffffffffffffff16021790555060405180604001604052808573ffffffffffffffffffffffffffffffffffffffff1681526020014267ffffffffffffffff168152506003600085815260200190815260200160002060008201518160000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555060208201518160000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff16021790555090505060006001846120159190613c54565b9050600073ffffffffffffffffffffffffffffffffffffffff166003600083815260200190815260200160002060000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16141561215b5761208b81611b65565b1561215a576040518060400160405280846000015173ffffffffffffffffffffffffffffffffffffffff168152602001846020015167ffffffffffffffff168152506003600083815260200190815260200160002060008201518160000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555060208201518160000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055509050505b5b838573ffffffffffffffffffffffffffffffffffffffff168773ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a46121c3868686600161279c565b505050505050565b6121d3612cfa565b6121dc82611b65565b61221b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161221290613809565b60405180910390fd5b60008290505b6000600360008381526020019081526020016000206040518060400160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815250509050600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff161461230d578092505050612321565b50808061231990613e4d565b915050612221565b919050565b6000600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600760006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b6124068282604051806020016040528060008152506127a2565b5050565b600061242b8473ffffffffffffffffffffffffffffffffffffffff16612c61565b15612594578373ffffffffffffffffffffffffffffffffffffffff1663150b7a02612454611b5d565b8786866040518563ffffffff1660e01b81526004016124769493929190613720565b602060405180830381600087803b15801561249057600080fd5b505af19250505080156124c157506040513d601f19601f820116820180604052508101906124be91906130cc565b60015b612544573d80600081146124f1576040519150601f19603f3d011682016040523d82523d6000602084013e6124f6565b606091505b5060008151141561253c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161253390613a29565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050612599565b600190505b949350505050565b606060008214156125e9576040518060400160405280600181526020017f300000000000000000000000000000000000000000000000000000000000000081525090506126fd565b600082905060005b6000821461261b57808061260490613eda565b915050600a826126149190613caa565b91506125f1565b60008167ffffffffffffffff81111561263757612636614010565b5b6040519080825280601f01601f1916602001820160405280156126695781602001600182028036833780820191505090505b5090505b600085146126f6576001826126829190613d35565b9150600a856126919190613f23565b603061269d9190613c54565b60f81b8183815181106126b3576126b2613fe1565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a856126ef9190613caa565b945061266d565b8093505050505b919050565b6000600660008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b50505050565b50505050565b600080549050600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161415612818576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161280f90613a69565b60405180910390fd5b61282181611b65565b15612861576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161285890613a49565b60405180910390fd5b600083116128a4576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161289b90613a09565b60405180910390fd5b6128b16000858386612796565b6000600460008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206040518060400160405290816000820160009054906101000a90046fffffffffffffffffffffffffffffffff166fffffffffffffffffffffffffffffffff166fffffffffffffffffffffffffffffffff1681526020016000820160109054906101000a90046fffffffffffffffffffffffffffffffff166fffffffffffffffffffffffffffffffff166fffffffffffffffffffffffffffffffff1681525050905060405180604001604052808583600001516129ae9190613c0e565b6fffffffffffffffffffffffffffffffff1681526020018583602001516129d59190613c0e565b6fffffffffffffffffffffffffffffffff16815250600460008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008201518160000160006101000a8154816fffffffffffffffffffffffffffffffff02191690836fffffffffffffffffffffffffffffffff16021790555060208201518160000160106101000a8154816fffffffffffffffffffffffffffffffff02191690836fffffffffffffffffffffffffffffffff16021790555090505060405180604001604052808673ffffffffffffffffffffffffffffffffffffffff1681526020014267ffffffffffffffff168152506003600084815260200190815260200160002060008201518160000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555060208201518160000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff160217905550905050600082905060005b85811015612c4457818773ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4612be4600088848861240a565b612c23576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612c1a90613a29565b60405180910390fd5b8180612c2e90613eda565b9250508080612c3c90613eda565b915050612b73565b5080600081905550612c59600087858861279c565b505050505050565b600080823b905060008111915050919050565b828054612c8090613e77565b90600052602060002090601f016020900481019282612ca25760008555612ce9565b82601f10612cbb57805160ff1916838001178555612ce9565b82800160010185558215612ce9579182015b82811115612ce8578251825591602001919060010190612ccd565b5b509050612cf69190612d34565b5090565b6040518060400160405280600073ffffffffffffffffffffffffffffffffffffffff168152602001600067ffffffffffffffff1681525090565b5b80821115612d4d576000816000905550600101612d35565b5090565b6000612d64612d5f84613b49565b613b24565b905082815260208101848484011115612d8057612d7f614044565b5b612d8b848285613e0b565b509392505050565b6000612da6612da184613b7a565b613b24565b905082815260208101848484011115612dc257612dc1614044565b5b612dcd848285613e0b565b509392505050565b600081359050612de48161471a565b92915050565b600081359050612df981614731565b92915050565b600081359050612e0e81614748565b92915050565b600081519050612e2381614748565b92915050565b600082601f830112612e3e57612e3d61403f565b5b8135612e4e848260208601612d51565b91505092915050565b600081519050612e668161475f565b92915050565b600082601f830112612e8157612e8061403f565b5b8135612e91848260208601612d93565b91505092915050565b600081359050612ea981614776565b92915050565b600060208284031215612ec557612ec461404e565b5b6000612ed384828501612dd5565b91505092915050565b60008060408385031215612ef357612ef261404e565b5b6000612f0185828601612dd5565b9250506020612f1285828601612dd5565b9150509250929050565b600080600060608486031215612f3557612f3461404e565b5b6000612f4386828701612dd5565b9350506020612f5486828701612dd5565b9250506040612f6586828701612e9a565b9150509250925092565b60008060008060808587031215612f8957612f8861404e565b5b6000612f9787828801612dd5565b9450506020612fa887828801612dd5565b9350506040612fb987828801612e9a565b925050606085013567ffffffffffffffff811115612fda57612fd9614049565b5b612fe687828801612e29565b91505092959194509250565b600080604083850312156130095761300861404e565b5b600061301785828601612dd5565b925050602061302885828601612dea565b9150509250929050565b600080604083850312156130495761304861404e565b5b600061305785828601612dd5565b925050602061306885828601612e9a565b9150509250929050565b6000602082840312156130885761308761404e565b5b600061309684828501612dea565b91505092915050565b6000602082840312156130b5576130b461404e565b5b60006130c384828501612dff565b91505092915050565b6000602082840312156130e2576130e161404e565b5b60006130f084828501612e14565b91505092915050565b60006020828403121561310f5761310e61404e565b5b600061311d84828501612e57565b91505092915050565b60006020828403121561313c5761313b61404e565b5b600082013567ffffffffffffffff81111561315a57613159614049565b5b61316684828501612e6c565b91505092915050565b6000602082840312156131855761318461404e565b5b600061319384828501612e9a565b91505092915050565b6131a581613d69565b82525050565b6131b481613d7b565b82525050565b60006131c582613bc0565b6131cf8185613bd6565b93506131df818560208601613e1a565b6131e881614053565b840191505092915050565b60006131fe82613bcb565b6132088185613bf2565b9350613218818560208601613e1a565b61322181614053565b840191505092915050565b600061323782613bcb565b6132418185613c03565b9350613251818560208601613e1a565b80840191505092915050565b6000815461326a81613e77565b6132748186613c03565b9450600182166000811461328f57600181146132a0576132d3565b60ff198316865281860193506132d3565b6132a985613bab565b60005b838110156132cb578154818901526001820191506020810190506132ac565b838801955050505b50505092915050565b60006132e9602283613bf2565b91506132f482614064565b604082019050919050565b600061330c600683613bf2565b9150613317826140b3565b602082019050919050565b600061332f602683613bf2565b915061333a826140dc565b604082019050919050565b6000613352602a83613bf2565b915061335d8261412b565b604082019050919050565b6000613375600a83613bf2565b91506133808261417a565b602082019050919050565b6000613398601b83613bf2565b91506133a3826141a3565b602082019050919050565b60006133bb602383613bf2565b91506133c6826141cc565b604082019050919050565b60006133de602583613bf2565b91506133e98261421b565b604082019050919050565b6000613401603983613bf2565b915061340c8261426a565b604082019050919050565b6000613424602483613bf2565b915061342f826142b9565b604082019050919050565b6000613447601283613bf2565b915061345282614308565b602082019050919050565b600061346a602b83613bf2565b915061347582614331565b604082019050919050565b600061348d601583613bf2565b915061349882614380565b602082019050919050565b60006134b0602683613bf2565b91506134bb826143a9565b604082019050919050565b60006134d3602083613bf2565b91506134de826143f8565b602082019050919050565b60006134f6601a83613bf2565b915061350182614421565b602082019050919050565b6000613519603283613bf2565b91506135248261444a565b604082019050919050565b600061353c601683613bf2565b915061354782614499565b602082019050919050565b600061355f602283613bf2565b915061356a826144c2565b604082019050919050565b6000613582600083613be7565b915061358d82614511565b600082019050919050565b60006135a5602383613bf2565b91506135b082614514565b604082019050919050565b60006135c8603383613bf2565b91506135d382614563565b604082019050919050565b60006135eb601d83613bf2565b91506135f6826145b2565b602082019050919050565b600061360e602183613bf2565b9150613619826145db565b604082019050919050565b6000613631600e83613bf2565b915061363c8261462a565b602082019050919050565b6000613654602e83613bf2565b915061365f82614653565b604082019050919050565b6000613677602d83613bf2565b9150613682826146a2565b604082019050919050565b600061369a600c83613bf2565b91506136a5826146f1565b602082019050919050565b6136b981613e01565b82525050565b60006136cb828661325d565b91506136d7828561322c565b91506136e3828461322c565b9150819050949350505050565b60006136fb82613575565b9150819050919050565b600060208201905061371a600083018461319c565b92915050565b6000608082019050613735600083018761319c565b613742602083018661319c565b61374f60408301856136b0565b818103606083015261376181846131ba565b905095945050505050565b600060208201905061378160008301846131ab565b92915050565b600060208201905081810360008301526137a181846131f3565b905092915050565b600060208201905081810360008301526137c2816132dc565b9050919050565b600060208201905081810360008301526137e2816132ff565b9050919050565b6000602082019050818103600083015261380281613322565b9050919050565b6000602082019050818103600083015261382281613345565b9050919050565b6000602082019050818103600083015261384281613368565b9050919050565b600060208201905081810360008301526138628161338b565b9050919050565b60006020820190508181036000830152613882816133ae565b9050919050565b600060208201905081810360008301526138a2816133d1565b9050919050565b600060208201905081810360008301526138c2816133f4565b9050919050565b600060208201905081810360008301526138e281613417565b9050919050565b600060208201905081810360008301526139028161343a565b9050919050565b600060208201905081810360008301526139228161345d565b9050919050565b6000602082019050818103600083015261394281613480565b9050919050565b60006020820190508181036000830152613962816134a3565b9050919050565b60006020820190508181036000830152613982816134c6565b9050919050565b600060208201905081810360008301526139a2816134e9565b9050919050565b600060208201905081810360008301526139c28161350c565b9050919050565b600060208201905081810360008301526139e28161352f565b9050919050565b60006020820190508181036000830152613a0281613552565b9050919050565b60006020820190508181036000830152613a2281613598565b9050919050565b60006020820190508181036000830152613a42816135bb565b9050919050565b60006020820190508181036000830152613a62816135de565b9050919050565b60006020820190508181036000830152613a8281613601565b9050919050565b60006020820190508181036000830152613aa281613624565b9050919050565b60006020820190508181036000830152613ac281613647565b9050919050565b60006020820190508181036000830152613ae28161366a565b9050919050565b60006020820190508181036000830152613b028161368d565b9050919050565b6000602082019050613b1e60008301846136b0565b92915050565b6000613b2e613b3f565b9050613b3a8282613ea9565b919050565b6000604051905090565b600067ffffffffffffffff821115613b6457613b63614010565b5b613b6d82614053565b9050602081019050919050565b600067ffffffffffffffff821115613b9557613b94614010565b5b613b9e82614053565b9050602081019050919050565b60008190508160005260206000209050919050565b600081519050919050565b600081519050919050565b600082825260208201905092915050565b600081905092915050565b600082825260208201905092915050565b600081905092915050565b6000613c1982613dc5565b9150613c2483613dc5565b9250826fffffffffffffffffffffffffffffffff03821115613c4957613c48613f54565b5b828201905092915050565b6000613c5f82613e01565b9150613c6a83613e01565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115613c9f57613c9e613f54565b5b828201905092915050565b6000613cb582613e01565b9150613cc083613e01565b925082613cd057613ccf613f83565b5b828204905092915050565b6000613ce682613e01565b9150613cf183613e01565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0483118215151615613d2a57613d29613f54565b5b828202905092915050565b6000613d4082613e01565b9150613d4b83613e01565b925082821015613d5e57613d5d613f54565b5b828203905092915050565b6000613d7482613de1565b9050919050565b60008115159050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b6000613dbe82613d69565b9050919050565b60006fffffffffffffffffffffffffffffffff82169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b82818337600083830152505050565b60005b83811015613e38578082015181840152602081019050613e1d565b83811115613e47576000848401525b50505050565b6000613e5882613e01565b91506000821415613e6c57613e6b613f54565b5b600182039050919050565b60006002820490506001821680613e8f57607f821691505b60208210811415613ea357613ea2613fb2565b5b50919050565b613eb282614053565b810181811067ffffffffffffffff82111715613ed157613ed0614010565b5b80604052505050565b6000613ee582613e01565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff821415613f1857613f17613f54565b5b600182019050919050565b6000613f2e82613e01565b9150613f3983613e01565b925082613f4957613f48613f83565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b7f455243373231413a206f776e657220696e646578206f7574206f6620626f756e60008201527f6473000000000000000000000000000000000000000000000000000000000000602082015250565b7f5061757365640000000000000000000000000000000000000000000000000000600082015250565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f455243373231413a206f776e657220717565727920666f72206e6f6e6578697360008201527f74656e7420746f6b656e00000000000000000000000000000000000000000000602082015250565b7f4e6f2030206d696e747300000000000000000000000000000000000000000000600082015250565b7f43616e206f6e6c79206d696e742032207065722077616c6c65742e0000000000600082015250565b7f455243373231413a20676c6f62616c20696e646578206f7574206f6620626f7560008201527f6e64730000000000000000000000000000000000000000000000000000000000602082015250565b7f455243373231413a207472616e7366657220746f20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b7f455243373231413a20617070726f76652063616c6c6572206973206e6f74206f60008201527f776e6572206e6f7220617070726f76656420666f7220616c6c00000000000000602082015250565b7f546f6b656e7320706572207472616e73616374696f6e206c696d69742065786560008201527f6465642c00000000000000000000000000000000000000000000000000000000602082015250565b7f45786365656473206d617820737570706c790000000000000000000000000000600082015250565b7f455243373231413a2062616c616e636520717565727920666f7220746865207a60008201527f65726f2061646472657373000000000000000000000000000000000000000000602082015250565b7f546f6b656e20646f6573206e6f742065786973742e0000000000000000000000600082015250565b7f455243373231413a207472616e736665722066726f6d20696e636f727265637460008201527f206f776e65720000000000000000000000000000000000000000000000000000602082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f455243373231413a20617070726f766520746f2063616c6c6572000000000000600082015250565b7f455243373231413a207472616e736665722063616c6c6572206973206e6f742060008201527f6f776e6572206e6f7220617070726f7665640000000000000000000000000000602082015250565b7f496e76616c69642066756e64732070726f766964656400000000000000000000600082015250565b7f455243373231413a20617070726f76616c20746f2063757272656e74206f776e60008201527f6572000000000000000000000000000000000000000000000000000000000000602082015250565b50565b7f455243373231413a207175616e74697479206d7573742062652067726561746560008201527f7220300000000000000000000000000000000000000000000000000000000000602082015250565b7f455243373231413a207472616e7366657220746f206e6f6e204552433732315260008201527f6563656976657220696d706c656d656e74657200000000000000000000000000602082015250565b7f455243373231413a20746f6b656e20616c7265616479206d696e746564000000600082015250565b7f455243373231413a206d696e7420746f20746865207a65726f2061646472657360008201527f7300000000000000000000000000000000000000000000000000000000000000602082015250565b7f4661696c656420746f2073656e64000000000000000000000000000000000000600082015250565b7f455243373231413a20756e61626c6520746f2067657420746f6b656e206f662060008201527f6f776e657220627920696e646578000000000000000000000000000000000000602082015250565b7f455243373231413a20617070726f76656420717565727920666f72206e6f6e6560008201527f78697374656e7420746f6b656e00000000000000000000000000000000000000602082015250565b7f4e6f20636f6e7472616374730000000000000000000000000000000000000000600082015250565b61472381613d69565b811461472e57600080fd5b50565b61473a81613d7b565b811461474557600080fd5b50565b61475181613d87565b811461475c57600080fd5b50565b61476881613db3565b811461477357600080fd5b50565b61477f81613e01565b811461478a57600080fd5b5056fea2646970667358221220e1c271506bbee27778a9944f8cb4d427cc609c979d6dfc2b09c73e8c6ef113e264736f6c63430008070033

Deployed Bytecode Sourcemap

38521:2536:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;26533:372;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;40495:81;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;28160:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;29721:214;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;29242:413;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;24974:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;30597:162;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;25638:823;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;38678:33;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;40278:209;;;;;;;;;;;;;:::i;:::-;;30830:177;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;25151:187;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;40584:100;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;39104:25;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;27969:124;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;38813:80;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;26969:221;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;2512:103;;;;;;;;;;;;;:::i;:::-;;38631:40;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;1861:87;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;28329:104;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;38764:42;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;39192:623;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;30007:288;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;38718:39;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;31078:355;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;38900:46;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;40692:362;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;38953:89;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;39825:445;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;2770:201;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;39049:48;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;26533:372;26635:4;26687:25;26672:40;;;:11;:40;;;;:105;;;;26744:33;26729:48;;;:11;:48;;;;26672:105;:172;;;;26809:35;26794:50;;;:11;:50;;;;26672:172;:225;;;;26861:36;26885:11;26861:23;:36::i;:::-;26672:225;26652:245;;26533:372;;;:::o;40495:81::-;2092:12;:10;:12::i;:::-;2081:23;;:7;:5;:7::i;:::-;:23;;;2073:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;40562:6:::1;40553;;:15;;;;;;;;;;;;;;;;;;40495:81:::0;:::o;28160:100::-;28214:13;28247:5;28240:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;28160:100;:::o;29721:214::-;29789:7;29817:16;29825:7;29817;:16::i;:::-;29809:74;;;;;;;;;;;;:::i;:::-;;;;;;;;;29903:15;:24;29919:7;29903:24;;;;;;;;;;;;;;;;;;;;;29896:31;;29721:214;;;:::o;29242:413::-;29315:13;29331:24;29347:7;29331:15;:24::i;:::-;29315:40;;29380:5;29374:11;;:2;:11;;;;29366:58;;;;;;;;;;;;:::i;:::-;;;;;;;;;29475:5;29459:21;;:12;:10;:12::i;:::-;:21;;;:62;;;;29484:37;29501:5;29508:12;:10;:12::i;:::-;29484:16;:37::i;:::-;29459:62;29437:169;;;;;;;;;;;;:::i;:::-;;;;;;;;;29619:28;29628:2;29632:7;29641:5;29619:8;:28::i;:::-;29304:351;29242:413;;:::o;24974:100::-;25027:7;25054:12;;25047:19;;24974:100;:::o;30597:162::-;30723:28;30733:4;30739:2;30743:7;30723:9;:28::i;:::-;30597:162;;;:::o;25638:823::-;25727:7;25763:16;25773:5;25763:9;:16::i;:::-;25755:5;:24;25747:71;;;;;;;;;;;;:::i;:::-;;;;;;;;;25829:22;25854:13;:11;:13::i;:::-;25829:38;;25878:19;25912:25;25966:9;25961:426;25985:14;25981:1;:18;25961:426;;;26021:31;26055:11;:14;26067:1;26055:14;;;;;;;;;;;26021:48;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;26114:1;26088:28;;:9;:14;;;:28;;;26084:103;;26157:9;:14;;;26137:34;;26084:103;26226:5;26205:26;;:17;:26;;;26201:175;;;26271:5;26256:11;:20;26252:77;;;26308:1;26301:8;;;;;;;;;26252:77;26347:13;;;;;:::i;:::-;;;;26201:175;26006:381;26001:3;;;;;:::i;:::-;;;;25961:426;;;;26397:56;;;;;;;;;;:::i;:::-;;;;;;;;25638:823;;;;;:::o;38678:33::-;38710:1;38678:33;:::o;40278:209::-;2092:12;:10;:12::i;:::-;2081:23;;:7;:5;:7::i;:::-;:23;;;2073:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;40328:15:::1;40346:21;40328:39;;40379:12;40397;:10;:12::i;:::-;:17;;40422:7;40397:37;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;40378:56;;;40453:7;40445:34;;;;;;;;;;;;:::i;:::-;;;;;;;;;40317:170;;40278:209::o:0;30830:177::-;30960:39;30977:4;30983:2;30987:7;30960:39;;;;;;;;;;;;:16;:39::i;:::-;30830:177;;;:::o;25151:187::-;25218:7;25254:13;:11;:13::i;:::-;25246:5;:21;25238:69;;;;;;;;;;;;:::i;:::-;;;;;;;;;25325:5;25318:12;;25151:187;;;:::o;40584:100::-;2092:12;:10;:12::i;:::-;2081:23;;:7;:5;:7::i;:::-;:23;;;2073:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;40668:8:::1;40658:7;:18;;;;;;;;;;;;:::i;:::-;;40584:100:::0;:::o;39104:25::-;;;;;;;;;;;;;:::o;27969:124::-;28033:7;28060:20;28072:7;28060:11;:20::i;:::-;:25;;;28053:32;;27969:124;;;:::o;38813:80::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;26969:221::-;27033:7;27078:1;27061:19;;:5;:19;;;;27053:75;;;;;;;;;;;;:::i;:::-;;;;;;;;;27154:12;:19;27167:5;27154:19;;;;;;;;;;;;;;;:27;;;;;;;;;;;;27146:36;;27139:43;;26969:221;;;:::o;2512:103::-;2092:12;:10;:12::i;:::-;2081:23;;:7;:5;:7::i;:::-;:23;;;2073:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;2577:30:::1;2604:1;2577:18;:30::i;:::-;2512:103::o:0;38631:40::-;38670:1;38631:40;:::o;1861:87::-;1907:7;1934:6;;;;;;;;;;;1927:13;;1861:87;:::o;28329:104::-;28385:13;28418:7;28411:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;28329:104;:::o;38764:42::-;38796:10;38764:42;:::o;39192:623::-;39261:6;;;;;;;;;;;39260:7;39252:26;;;;;;;;;;;;:::i;:::-;;;;;;;;;39326:8;39310:13;:11;:13::i;:::-;:24;;;;:::i;:::-;38754:3;39297:37;;39289:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;39387:1;39376:8;:12;39368:35;;;;;;;;;;;;:::i;:::-;;;;;;;;;39435:10;39422:23;;:9;:23;;;39414:48;;;;;;;;;;;;:::i;:::-;;;;;;;;;38670:1;39509:8;39481:13;:25;39495:10;39481:25;;;;;;;;;;;;;;;;:36;;;;:::i;:::-;:52;;39473:92;;;;;;;;;;;;:::i;:::-;;;;;;;;;39593:8;38710:1;39584:17;;39576:66;;;;;;;;;;;;:::i;:::-;;;;;;;;;39681:9;38796:10;39661:8;:16;;;;:::i;:::-;:29;39653:64;;;;;;;;;;;;:::i;:::-;;;;;;;;;39757:8;39728:13;:25;39742:10;39728:25;;;;;;;;;;;;;;;;:37;;;;;;;:::i;:::-;;;;;;;;39776:31;39786:10;39798:8;39776:9;:31::i;:::-;39192:623;:::o;30007:288::-;30114:12;:10;:12::i;:::-;30102:24;;:8;:24;;;;30094:63;;;;;;;;;;;;:::i;:::-;;;;;;;;;30215:8;30170:18;:32;30189:12;:10;:12::i;:::-;30170:32;;;;;;;;;;;;;;;:42;30203:8;30170:42;;;;;;;;;;;;;;;;:53;;;;;;;;;;;;;;;;;;30268:8;30239:48;;30254:12;:10;:12::i;:::-;30239:48;;;30278:8;30239:48;;;;;;:::i;:::-;;;;;;;;30007:288;;:::o;38718:39::-;38754:3;38718:39;:::o;31078:355::-;31237:28;31247:4;31253:2;31257:7;31237:9;:28::i;:::-;31298:48;31321:4;31327:2;31331:7;31340:5;31298:22;:48::i;:::-;31276:149;;;;;;;;;;;;:::i;:::-;;;;;;;;;31078:355;;;;:::o;38900:46::-;;;;;;;;;;;;;;;;;;;:::o;40692:362::-;40758:13;40792:17;40800:8;40792:7;:17::i;:::-;40784:51;;;;;;;;;;;;:::i;:::-;;;;;;;;;40877:1;40859:7;40853:21;;;;;:::i;:::-;;;:25;:193;;;;;;;;;;;;;;;;;40935:7;40959:26;40976:8;40959:16;:26::i;:::-;41002:13;;;;;;;;;;;;;;;;;40902:128;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;40853:193;40846:200;;40692:362;;;:::o;38953:89::-;39000:42;38953:89;:::o;39825:445::-;39950:4;40035:27;39000:42;40035:65;;40156:8;40115:49;;40123:13;:21;;;40145:5;40123:28;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;40115:49;;;40111:93;;;40188:4;40181:11;;;;;40111:93;40223:39;40246:5;40253:8;40223:22;:39::i;:::-;40216:46;;;39825:445;;;;;:::o;2770:201::-;2092:12;:10;:12::i;:::-;2081:23;;:7;:5;:7::i;:::-;:23;;;2073:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;2879:1:::1;2859:22;;:8;:22;;;;2851:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;2935:28;2954:8;2935:18;:28::i;:::-;2770:201:::0;:::o;39049:48::-;;;;;;;;;;;;;;;;;:::o;23037:157::-;23122:4;23161:25;23146:40;;;:11;:40;;;;23139:47;;23037:157;;;:::o;602:98::-;655:7;682:10;675:17;;602:98;:::o;31688:111::-;31745:4;31779:12;;31769:7;:22;31762:29;;31688:111;;;:::o;35732:196::-;35874:2;35847:15;:24;35863:7;35847:24;;;;;;;;;;;;:29;;;;;;;;;;;;;;;;;;35912:7;35908:2;35892:28;;35901:5;35892:28;;;;;;;;;;;;35732:196;;;:::o;33831:1783::-;33946:35;33984:20;33996:7;33984:11;:20::i;:::-;33946:58;;34017:22;34059:13;:18;;;34043:34;;:12;:10;:12::i;:::-;:34;;;:87;;;;34118:12;:10;:12::i;:::-;34094:36;;:20;34106:7;34094:11;:20::i;:::-;:36;;;34043:87;:154;;;;34147:50;34164:13;:18;;;34184:12;:10;:12::i;:::-;34147:16;:50::i;:::-;34043:154;34017:181;;34219:17;34211:80;;;;;;;;;;;;:::i;:::-;;;;;;;;;34334:4;34312:26;;:13;:18;;;:26;;;34304:77;;;;;;;;;;;;:::i;:::-;;;;;;;;;34414:1;34400:16;;:2;:16;;;;34392:66;;;;;;;;;;;;:::i;:::-;;;;;;;;;34471:43;34493:4;34499:2;34503:7;34512:1;34471:21;:43::i;:::-;34579:49;34596:1;34600:7;34609:13;:18;;;34579:8;:49::i;:::-;34863:1;34833:12;:18;34846:4;34833:18;;;;;;;;;;;;;;;:26;;;:31;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;34907:1;34879:12;:16;34892:2;34879:16;;;;;;;;;;;;;;;:24;;;:29;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;34955:43;;;;;;;;34970:2;34955:43;;;;;;34981:15;34955:43;;;;;34932:11;:20;34944:7;34932:20;;;;;;;;;;;:66;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;35238:19;35270:1;35260:7;:11;;;;:::i;:::-;35238:33;;35327:1;35286:43;;:11;:24;35298:11;35286:24;;;;;;;;;;;:29;;;;;;;;;;;;:43;;;35282:227;;;35350:20;35358:11;35350:7;:20::i;:::-;35346:152;;;35418:64;;;;;;;;35433:13;:18;;;35418:64;;;;;;35453:13;:28;;;35418:64;;;;;35391:11;:24;35403:11;35391:24;;;;;;;;;;;:91;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;35346:152;35282:227;35545:7;35541:2;35526:27;;35535:4;35526:27;;;;;;;;;;;;35564:42;35585:4;35591:2;35595:7;35604:1;35564:20;:42::i;:::-;33935:1679;;;33831:1783;;;:::o;27435:472::-;27496:21;;:::i;:::-;27538:16;27546:7;27538;:16::i;:::-;27530:71;;;;;;;;;;;;:::i;:::-;;;;;;;;;27619:12;27634:7;27619:22;;27614:216;27668:31;27702:11;:17;27714:4;27702:17;;;;;;;;;;;27668:51;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;27764:1;27738:28;;:9;:14;;;:28;;;27734:85;;27794:9;27787:16;;;;;;27734:85;27653:177;27645:6;;;;;:::i;:::-;;;;27614:216;;27435:472;;;;:::o;3131:191::-;3205:16;3224:6;;;;;;;;;;;3205:25;;3250:8;3241:6;;:17;;;;;;;;;;;;;;;;;;3305:8;3274:40;;3295:8;3274:40;;;;;;;;;;;;3194:128;3131:191;:::o;31807:104::-;31876:27;31886:2;31890:8;31876:27;;;;;;;;;;;;:9;:27::i;:::-;31807:104;;:::o;36493:804::-;36648:4;36669:15;:2;:13;;;:15::i;:::-;36665:625;;;36721:2;36705:36;;;36742:12;:10;:12::i;:::-;36756:4;36762:7;36771:5;36705:72;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;36701:534;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;36968:1;36951:6;:13;:18;36947:273;;;36994:61;;;;;;;;;;:::i;:::-;;;;;;;;36947:273;37170:6;37164:13;37155:6;37151:2;37147:15;37140:38;36701:534;36838:45;;;36828:55;;;:6;:55;;;;36821:62;;;;;36665:625;37274:4;37267:11;;36493:804;;;;;;;:::o;3679:723::-;3735:13;3965:1;3956:5;:10;3952:53;;;3983:10;;;;;;;;;;;;;;;;;;;;;3952:53;4015:12;4030:5;4015:20;;4046:14;4071:78;4086:1;4078:4;:9;4071:78;;4104:8;;;;;:::i;:::-;;;;4135:2;4127:10;;;;;:::i;:::-;;;4071:78;;;4159:19;4191:6;4181:17;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;4159:39;;4209:154;4225:1;4216:5;:10;4209:154;;4253:1;4243:11;;;;;:::i;:::-;;;4320:2;4312:5;:10;;;;:::i;:::-;4299:2;:24;;;;:::i;:::-;4286:39;;4269:6;4276;4269:14;;;;;;;;:::i;:::-;;;;;:56;;;;;;;;;;;4349:2;4340:11;;;;;:::i;:::-;;;4209:154;;;4387:6;4373:21;;;;;3679:723;;;;:::o;30366:164::-;30463:4;30487:18;:25;30506:5;30487:25;;;;;;;;;;;;;;;:35;30513:8;30487:35;;;;;;;;;;;;;;;;;;;;;;;;;30480:42;;30366:164;;;;:::o;37785:159::-;;;;;:::o;38356:158::-;;;;;:::o;32188:1389::-;32311:20;32334:12;;32311:35;;32379:1;32365:16;;:2;:16;;;;32357:62;;;;;;;;;;;;:::i;:::-;;;;;;;;;32564:21;32572:12;32564:7;:21::i;:::-;32563:22;32555:64;;;;;;;;;;;;:::i;:::-;;;;;;;;;32649:1;32638:8;:12;32630:60;;;;;;;;;;;;:::i;:::-;;;;;;;;;32703:61;32733:1;32737:2;32741:12;32755:8;32703:21;:61::i;:::-;32777:30;32810:12;:16;32823:2;32810:16;;;;;;;;;;;;;;;32777:49;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;32856:135;;;;;;;;32912:8;32882:11;:19;;;:39;;;;:::i;:::-;32856:135;;;;;;32971:8;32936:11;:24;;;:44;;;;:::i;:::-;32856:135;;;;;32837:12;:16;32850:2;32837:16;;;;;;;;;;;;;;;:154;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;33030:43;;;;;;;;33045:2;33030:43;;;;;;33056:15;33030:43;;;;;33002:11;:25;33014:12;33002:25;;;;;;;;;;;:71;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;33086:20;33109:12;33086:35;;33139:9;33134:325;33158:8;33154:1;:12;33134:325;;;33218:12;33214:2;33193:38;;33210:1;33193:38;;;;;;;;;;;;33272:59;33303:1;33307:2;33311:12;33325:5;33272:22;:59::i;:::-;33246:172;;;;;;;;;;;;:::i;:::-;;;;;;;;;33433:14;;;;;:::i;:::-;;;;33168:3;;;;;:::i;:::-;;;;33134:325;;;;33486:12;33471;:27;;;;33509:60;33538:1;33542:2;33546:12;33560:8;33509:20;:60::i;:::-;32300:1277;;;32188:1389;;;:::o;14858:387::-;14918:4;15126:12;15193:7;15181:20;15173:28;;15236:1;15229:4;:8;15222:15;;;14858:387;;;:::o;-1:-1:-1:-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;;;;;;;;;;;;;;;;;:::o;:::-;;;;;;;;;;;;;;;;;;;;;:::o;7:410:1:-;84:5;109:65;125:48;166:6;125:48;:::i;:::-;109:65;:::i;:::-;100:74;;197:6;190:5;183:21;235:4;228:5;224:16;273:3;264:6;259:3;255:16;252:25;249:112;;;280:79;;:::i;:::-;249:112;370:41;404:6;399:3;394;370:41;:::i;:::-;90:327;7:410;;;;;:::o;423:412::-;501:5;526:66;542:49;584:6;542:49;:::i;:::-;526:66;:::i;:::-;517:75;;615:6;608:5;601:21;653:4;646:5;642:16;691:3;682:6;677:3;673:16;670:25;667:112;;;698:79;;:::i;:::-;667:112;788:41;822:6;817:3;812;788:41;:::i;:::-;507:328;423:412;;;;;:::o;841:139::-;887:5;925:6;912:20;903:29;;941:33;968:5;941:33;:::i;:::-;841:139;;;;:::o;986:133::-;1029:5;1067:6;1054:20;1045:29;;1083:30;1107:5;1083:30;:::i;:::-;986:133;;;;:::o;1125:137::-;1170:5;1208:6;1195:20;1186:29;;1224:32;1250:5;1224:32;:::i;:::-;1125:137;;;;:::o;1268:141::-;1324:5;1355:6;1349:13;1340:22;;1371:32;1397:5;1371:32;:::i;:::-;1268:141;;;;:::o;1428:338::-;1483:5;1532:3;1525:4;1517:6;1513:17;1509:27;1499:122;;1540:79;;:::i;:::-;1499:122;1657:6;1644:20;1682:78;1756:3;1748:6;1741:4;1733:6;1729:17;1682:78;:::i;:::-;1673:87;;1489:277;1428:338;;;;:::o;1772:201::-;1858:5;1889:6;1883:13;1874:22;;1905:62;1961:5;1905:62;:::i;:::-;1772:201;;;;:::o;1993:340::-;2049:5;2098:3;2091:4;2083:6;2079:17;2075:27;2065:122;;2106:79;;:::i;:::-;2065:122;2223:6;2210:20;2248:79;2323:3;2315:6;2308:4;2300:6;2296:17;2248:79;:::i;:::-;2239:88;;2055:278;1993:340;;;;:::o;2339:139::-;2385:5;2423:6;2410:20;2401:29;;2439:33;2466:5;2439:33;:::i;:::-;2339:139;;;;:::o;2484:329::-;2543:6;2592:2;2580:9;2571:7;2567:23;2563:32;2560:119;;;2598:79;;:::i;:::-;2560:119;2718:1;2743:53;2788:7;2779:6;2768:9;2764:22;2743:53;:::i;:::-;2733:63;;2689:117;2484:329;;;;:::o;2819:474::-;2887:6;2895;2944:2;2932:9;2923:7;2919:23;2915:32;2912:119;;;2950:79;;:::i;:::-;2912:119;3070:1;3095:53;3140:7;3131:6;3120:9;3116:22;3095:53;:::i;:::-;3085:63;;3041:117;3197:2;3223:53;3268:7;3259:6;3248:9;3244:22;3223:53;:::i;:::-;3213:63;;3168:118;2819:474;;;;;:::o;3299:619::-;3376:6;3384;3392;3441:2;3429:9;3420:7;3416:23;3412:32;3409:119;;;3447:79;;:::i;:::-;3409:119;3567:1;3592:53;3637:7;3628:6;3617:9;3613:22;3592:53;:::i;:::-;3582:63;;3538:117;3694:2;3720:53;3765:7;3756:6;3745:9;3741:22;3720:53;:::i;:::-;3710:63;;3665:118;3822:2;3848:53;3893:7;3884:6;3873:9;3869:22;3848:53;:::i;:::-;3838:63;;3793:118;3299:619;;;;;:::o;3924:943::-;4019:6;4027;4035;4043;4092:3;4080:9;4071:7;4067:23;4063:33;4060:120;;;4099:79;;:::i;:::-;4060:120;4219:1;4244:53;4289:7;4280:6;4269:9;4265:22;4244:53;:::i;:::-;4234:63;;4190:117;4346:2;4372:53;4417:7;4408:6;4397:9;4393:22;4372:53;:::i;:::-;4362:63;;4317:118;4474:2;4500:53;4545:7;4536:6;4525:9;4521:22;4500:53;:::i;:::-;4490:63;;4445:118;4630:2;4619:9;4615:18;4602:32;4661:18;4653:6;4650:30;4647:117;;;4683:79;;:::i;:::-;4647:117;4788:62;4842:7;4833:6;4822:9;4818:22;4788:62;:::i;:::-;4778:72;;4573:287;3924:943;;;;;;;:::o;4873:468::-;4938:6;4946;4995:2;4983:9;4974:7;4970:23;4966:32;4963:119;;;5001:79;;:::i;:::-;4963:119;5121:1;5146:53;5191:7;5182:6;5171:9;5167:22;5146:53;:::i;:::-;5136:63;;5092:117;5248:2;5274:50;5316:7;5307:6;5296:9;5292:22;5274:50;:::i;:::-;5264:60;;5219:115;4873:468;;;;;:::o;5347:474::-;5415:6;5423;5472:2;5460:9;5451:7;5447:23;5443:32;5440:119;;;5478:79;;:::i;:::-;5440:119;5598:1;5623:53;5668:7;5659:6;5648:9;5644:22;5623:53;:::i;:::-;5613:63;;5569:117;5725:2;5751:53;5796:7;5787:6;5776:9;5772:22;5751:53;:::i;:::-;5741:63;;5696:118;5347:474;;;;;:::o;5827:323::-;5883:6;5932:2;5920:9;5911:7;5907:23;5903:32;5900:119;;;5938:79;;:::i;:::-;5900:119;6058:1;6083:50;6125:7;6116:6;6105:9;6101:22;6083:50;:::i;:::-;6073:60;;6029:114;5827:323;;;;:::o;6156:327::-;6214:6;6263:2;6251:9;6242:7;6238:23;6234:32;6231:119;;;6269:79;;:::i;:::-;6231:119;6389:1;6414:52;6458:7;6449:6;6438:9;6434:22;6414:52;:::i;:::-;6404:62;;6360:116;6156:327;;;;:::o;6489:349::-;6558:6;6607:2;6595:9;6586:7;6582:23;6578:32;6575:119;;;6613:79;;:::i;:::-;6575:119;6733:1;6758:63;6813:7;6804:6;6793:9;6789:22;6758:63;:::i;:::-;6748:73;;6704:127;6489:349;;;;:::o;6844:409::-;6943:6;6992:2;6980:9;6971:7;6967:23;6963:32;6960:119;;;6998:79;;:::i;:::-;6960:119;7118:1;7143:93;7228:7;7219:6;7208:9;7204:22;7143:93;:::i;:::-;7133:103;;7089:157;6844:409;;;;:::o;7259:509::-;7328:6;7377:2;7365:9;7356:7;7352:23;7348:32;7345:119;;;7383:79;;:::i;:::-;7345:119;7531:1;7520:9;7516:17;7503:31;7561:18;7553:6;7550:30;7547:117;;;7583:79;;:::i;:::-;7547:117;7688:63;7743:7;7734:6;7723:9;7719:22;7688:63;:::i;:::-;7678:73;;7474:287;7259:509;;;;:::o;7774:329::-;7833:6;7882:2;7870:9;7861:7;7857:23;7853:32;7850:119;;;7888:79;;:::i;:::-;7850:119;8008:1;8033:53;8078:7;8069:6;8058:9;8054:22;8033:53;:::i;:::-;8023:63;;7979:117;7774:329;;;;:::o;8109:118::-;8196:24;8214:5;8196:24;:::i;:::-;8191:3;8184:37;8109:118;;:::o;8233:109::-;8314:21;8329:5;8314:21;:::i;:::-;8309:3;8302:34;8233:109;;:::o;8348:360::-;8434:3;8462:38;8494:5;8462:38;:::i;:::-;8516:70;8579:6;8574:3;8516:70;:::i;:::-;8509:77;;8595:52;8640:6;8635:3;8628:4;8621:5;8617:16;8595:52;:::i;:::-;8672:29;8694:6;8672:29;:::i;:::-;8667:3;8663:39;8656:46;;8438:270;8348:360;;;;:::o;8714:364::-;8802:3;8830:39;8863:5;8830:39;:::i;:::-;8885:71;8949:6;8944:3;8885:71;:::i;:::-;8878:78;;8965:52;9010:6;9005:3;8998:4;8991:5;8987:16;8965:52;:::i;:::-;9042:29;9064:6;9042:29;:::i;:::-;9037:3;9033:39;9026:46;;8806:272;8714:364;;;;:::o;9084:377::-;9190:3;9218:39;9251:5;9218:39;:::i;:::-;9273:89;9355:6;9350:3;9273:89;:::i;:::-;9266:96;;9371:52;9416:6;9411:3;9404:4;9397:5;9393:16;9371:52;:::i;:::-;9448:6;9443:3;9439:16;9432:23;;9194:267;9084:377;;;;:::o;9491:845::-;9594:3;9631:5;9625:12;9660:36;9686:9;9660:36;:::i;:::-;9712:89;9794:6;9789:3;9712:89;:::i;:::-;9705:96;;9832:1;9821:9;9817:17;9848:1;9843:137;;;;9994:1;9989:341;;;;9810:520;;9843:137;9927:4;9923:9;9912;9908:25;9903:3;9896:38;9963:6;9958:3;9954:16;9947:23;;9843:137;;9989:341;10056:38;10088:5;10056:38;:::i;:::-;10116:1;10130:154;10144:6;10141:1;10138:13;10130:154;;;10218:7;10212:14;10208:1;10203:3;10199:11;10192:35;10268:1;10259:7;10255:15;10244:26;;10166:4;10163:1;10159:12;10154:17;;10130:154;;;10313:6;10308:3;10304:16;10297:23;;9996:334;;9810:520;;9598:738;;9491:845;;;;:::o;10342:366::-;10484:3;10505:67;10569:2;10564:3;10505:67;:::i;:::-;10498:74;;10581:93;10670:3;10581:93;:::i;:::-;10699:2;10694:3;10690:12;10683:19;;10342:366;;;:::o;10714:365::-;10856:3;10877:66;10941:1;10936:3;10877:66;:::i;:::-;10870:73;;10952:93;11041:3;10952:93;:::i;:::-;11070:2;11065:3;11061:12;11054:19;;10714:365;;;:::o;11085:366::-;11227:3;11248:67;11312:2;11307:3;11248:67;:::i;:::-;11241:74;;11324:93;11413:3;11324:93;:::i;:::-;11442:2;11437:3;11433:12;11426:19;;11085:366;;;:::o;11457:::-;11599:3;11620:67;11684:2;11679:3;11620:67;:::i;:::-;11613:74;;11696:93;11785:3;11696:93;:::i;:::-;11814:2;11809:3;11805:12;11798:19;;11457:366;;;:::o;11829:::-;11971:3;11992:67;12056:2;12051:3;11992:67;:::i;:::-;11985:74;;12068:93;12157:3;12068:93;:::i;:::-;12186:2;12181:3;12177:12;12170:19;;11829:366;;;:::o;12201:::-;12343:3;12364:67;12428:2;12423:3;12364:67;:::i;:::-;12357:74;;12440:93;12529:3;12440:93;:::i;:::-;12558:2;12553:3;12549:12;12542:19;;12201:366;;;:::o;12573:::-;12715:3;12736:67;12800:2;12795:3;12736:67;:::i;:::-;12729:74;;12812:93;12901:3;12812:93;:::i;:::-;12930:2;12925:3;12921:12;12914:19;;12573:366;;;:::o;12945:::-;13087:3;13108:67;13172:2;13167:3;13108:67;:::i;:::-;13101:74;;13184:93;13273:3;13184:93;:::i;:::-;13302:2;13297:3;13293:12;13286:19;;12945:366;;;:::o;13317:::-;13459:3;13480:67;13544:2;13539:3;13480:67;:::i;:::-;13473:74;;13556:93;13645:3;13556:93;:::i;:::-;13674:2;13669:3;13665:12;13658:19;;13317:366;;;:::o;13689:::-;13831:3;13852:67;13916:2;13911:3;13852:67;:::i;:::-;13845:74;;13928:93;14017:3;13928:93;:::i;:::-;14046:2;14041:3;14037:12;14030:19;;13689:366;;;:::o;14061:::-;14203:3;14224:67;14288:2;14283:3;14224:67;:::i;:::-;14217:74;;14300:93;14389:3;14300:93;:::i;:::-;14418:2;14413:3;14409:12;14402:19;;14061:366;;;:::o;14433:::-;14575:3;14596:67;14660:2;14655:3;14596:67;:::i;:::-;14589:74;;14672:93;14761:3;14672:93;:::i;:::-;14790:2;14785:3;14781:12;14774:19;;14433:366;;;:::o;14805:::-;14947:3;14968:67;15032:2;15027:3;14968:67;:::i;:::-;14961:74;;15044:93;15133:3;15044:93;:::i;:::-;15162:2;15157:3;15153:12;15146:19;;14805:366;;;:::o;15177:::-;15319:3;15340:67;15404:2;15399:3;15340:67;:::i;:::-;15333:74;;15416:93;15505:3;15416:93;:::i;:::-;15534:2;15529:3;15525:12;15518:19;;15177:366;;;:::o;15549:::-;15691:3;15712:67;15776:2;15771:3;15712:67;:::i;:::-;15705:74;;15788:93;15877:3;15788:93;:::i;:::-;15906:2;15901:3;15897:12;15890:19;;15549:366;;;:::o;15921:::-;16063:3;16084:67;16148:2;16143:3;16084:67;:::i;:::-;16077:74;;16160:93;16249:3;16160:93;:::i;:::-;16278:2;16273:3;16269:12;16262:19;;15921:366;;;:::o;16293:::-;16435:3;16456:67;16520:2;16515:3;16456:67;:::i;:::-;16449:74;;16532:93;16621:3;16532:93;:::i;:::-;16650:2;16645:3;16641:12;16634:19;;16293:366;;;:::o;16665:::-;16807:3;16828:67;16892:2;16887:3;16828:67;:::i;:::-;16821:74;;16904:93;16993:3;16904:93;:::i;:::-;17022:2;17017:3;17013:12;17006:19;;16665:366;;;:::o;17037:::-;17179:3;17200:67;17264:2;17259:3;17200:67;:::i;:::-;17193:74;;17276:93;17365:3;17276:93;:::i;:::-;17394:2;17389:3;17385:12;17378:19;;17037:366;;;:::o;17409:398::-;17568:3;17589:83;17670:1;17665:3;17589:83;:::i;:::-;17582:90;;17681:93;17770:3;17681:93;:::i;:::-;17799:1;17794:3;17790:11;17783:18;;17409:398;;;:::o;17813:366::-;17955:3;17976:67;18040:2;18035:3;17976:67;:::i;:::-;17969:74;;18052:93;18141:3;18052:93;:::i;:::-;18170:2;18165:3;18161:12;18154:19;;17813:366;;;:::o;18185:::-;18327:3;18348:67;18412:2;18407:3;18348:67;:::i;:::-;18341:74;;18424:93;18513:3;18424:93;:::i;:::-;18542:2;18537:3;18533:12;18526:19;;18185:366;;;:::o;18557:::-;18699:3;18720:67;18784:2;18779:3;18720:67;:::i;:::-;18713:74;;18796:93;18885:3;18796:93;:::i;:::-;18914:2;18909:3;18905:12;18898:19;;18557:366;;;:::o;18929:::-;19071:3;19092:67;19156:2;19151:3;19092:67;:::i;:::-;19085:74;;19168:93;19257:3;19168:93;:::i;:::-;19286:2;19281:3;19277:12;19270:19;;18929:366;;;:::o;19301:::-;19443:3;19464:67;19528:2;19523:3;19464:67;:::i;:::-;19457:74;;19540:93;19629:3;19540:93;:::i;:::-;19658:2;19653:3;19649:12;19642:19;;19301:366;;;:::o;19673:::-;19815:3;19836:67;19900:2;19895:3;19836:67;:::i;:::-;19829:74;;19912:93;20001:3;19912:93;:::i;:::-;20030:2;20025:3;20021:12;20014:19;;19673:366;;;:::o;20417:::-;20559:3;20580:67;20644:2;20639:3;20580:67;:::i;:::-;20573:74;;20656:93;20745:3;20656:93;:::i;:::-;20774:2;20769:3;20765:12;20758:19;;20417:366;;;:::o;20789:::-;20931:3;20952:67;21016:2;21011:3;20952:67;:::i;:::-;20945:74;;21028:93;21117:3;21028:93;:::i;:::-;21146:2;21141:3;21137:12;21130:19;;20789:366;;;:::o;21161:118::-;21248:24;21266:5;21248:24;:::i;:::-;21243:3;21236:37;21161:118;;:::o;21285:589::-;21510:3;21532:92;21620:3;21611:6;21532:92;:::i;:::-;21525:99;;21641:95;21732:3;21723:6;21641:95;:::i;:::-;21634:102;;21753:95;21844:3;21835:6;21753:95;:::i;:::-;21746:102;;21865:3;21858:10;;21285:589;;;;;;:::o;21880:379::-;22064:3;22086:147;22229:3;22086:147;:::i;:::-;22079:154;;22250:3;22243:10;;21880:379;;;:::o;22265:222::-;22358:4;22396:2;22385:9;22381:18;22373:26;;22409:71;22477:1;22466:9;22462:17;22453:6;22409:71;:::i;:::-;22265:222;;;;:::o;22493:640::-;22688:4;22726:3;22715:9;22711:19;22703:27;;22740:71;22808:1;22797:9;22793:17;22784:6;22740:71;:::i;:::-;22821:72;22889:2;22878:9;22874:18;22865:6;22821:72;:::i;:::-;22903;22971:2;22960:9;22956:18;22947:6;22903:72;:::i;:::-;23022:9;23016:4;23012:20;23007:2;22996:9;22992:18;22985:48;23050:76;23121:4;23112:6;23050:76;:::i;:::-;23042:84;;22493:640;;;;;;;:::o;23139:210::-;23226:4;23264:2;23253:9;23249:18;23241:26;;23277:65;23339:1;23328:9;23324:17;23315:6;23277:65;:::i;:::-;23139:210;;;;:::o;23355:313::-;23468:4;23506:2;23495:9;23491:18;23483:26;;23555:9;23549:4;23545:20;23541:1;23530:9;23526:17;23519:47;23583:78;23656:4;23647:6;23583:78;:::i;:::-;23575:86;;23355:313;;;;:::o;23674:419::-;23840:4;23878:2;23867:9;23863:18;23855:26;;23927:9;23921:4;23917:20;23913:1;23902:9;23898:17;23891:47;23955:131;24081:4;23955:131;:::i;:::-;23947:139;;23674:419;;;:::o;24099:::-;24265:4;24303:2;24292:9;24288:18;24280:26;;24352:9;24346:4;24342:20;24338:1;24327:9;24323:17;24316:47;24380:131;24506:4;24380:131;:::i;:::-;24372:139;;24099:419;;;:::o;24524:::-;24690:4;24728:2;24717:9;24713:18;24705:26;;24777:9;24771:4;24767:20;24763:1;24752:9;24748:17;24741:47;24805:131;24931:4;24805:131;:::i;:::-;24797:139;;24524:419;;;:::o;24949:::-;25115:4;25153:2;25142:9;25138:18;25130:26;;25202:9;25196:4;25192:20;25188:1;25177:9;25173:17;25166:47;25230:131;25356:4;25230:131;:::i;:::-;25222:139;;24949:419;;;:::o;25374:::-;25540:4;25578:2;25567:9;25563:18;25555:26;;25627:9;25621:4;25617:20;25613:1;25602:9;25598:17;25591:47;25655:131;25781:4;25655:131;:::i;:::-;25647:139;;25374:419;;;:::o;25799:::-;25965:4;26003:2;25992:9;25988:18;25980:26;;26052:9;26046:4;26042:20;26038:1;26027:9;26023:17;26016:47;26080:131;26206:4;26080:131;:::i;:::-;26072:139;;25799:419;;;:::o;26224:::-;26390:4;26428:2;26417:9;26413:18;26405:26;;26477:9;26471:4;26467:20;26463:1;26452:9;26448:17;26441:47;26505:131;26631:4;26505:131;:::i;:::-;26497:139;;26224:419;;;:::o;26649:::-;26815:4;26853:2;26842:9;26838:18;26830:26;;26902:9;26896:4;26892:20;26888:1;26877:9;26873:17;26866:47;26930:131;27056:4;26930:131;:::i;:::-;26922:139;;26649:419;;;:::o;27074:::-;27240:4;27278:2;27267:9;27263:18;27255:26;;27327:9;27321:4;27317:20;27313:1;27302:9;27298:17;27291:47;27355:131;27481:4;27355:131;:::i;:::-;27347:139;;27074:419;;;:::o;27499:::-;27665:4;27703:2;27692:9;27688:18;27680:26;;27752:9;27746:4;27742:20;27738:1;27727:9;27723:17;27716:47;27780:131;27906:4;27780:131;:::i;:::-;27772:139;;27499:419;;;:::o;27924:::-;28090:4;28128:2;28117:9;28113:18;28105:26;;28177:9;28171:4;28167:20;28163:1;28152:9;28148:17;28141:47;28205:131;28331:4;28205:131;:::i;:::-;28197:139;;27924:419;;;:::o;28349:::-;28515:4;28553:2;28542:9;28538:18;28530:26;;28602:9;28596:4;28592:20;28588:1;28577:9;28573:17;28566:47;28630:131;28756:4;28630:131;:::i;:::-;28622:139;;28349:419;;;:::o;28774:::-;28940:4;28978:2;28967:9;28963:18;28955:26;;29027:9;29021:4;29017:20;29013:1;29002:9;28998:17;28991:47;29055:131;29181:4;29055:131;:::i;:::-;29047:139;;28774:419;;;:::o;29199:::-;29365:4;29403:2;29392:9;29388:18;29380:26;;29452:9;29446:4;29442:20;29438:1;29427:9;29423:17;29416:47;29480:131;29606:4;29480:131;:::i;:::-;29472:139;;29199:419;;;:::o;29624:::-;29790:4;29828:2;29817:9;29813:18;29805:26;;29877:9;29871:4;29867:20;29863:1;29852:9;29848:17;29841:47;29905:131;30031:4;29905:131;:::i;:::-;29897:139;;29624:419;;;:::o;30049:::-;30215:4;30253:2;30242:9;30238:18;30230:26;;30302:9;30296:4;30292:20;30288:1;30277:9;30273:17;30266:47;30330:131;30456:4;30330:131;:::i;:::-;30322:139;;30049:419;;;:::o;30474:::-;30640:4;30678:2;30667:9;30663:18;30655:26;;30727:9;30721:4;30717:20;30713:1;30702:9;30698:17;30691:47;30755:131;30881:4;30755:131;:::i;:::-;30747:139;;30474:419;;;:::o;30899:::-;31065:4;31103:2;31092:9;31088:18;31080:26;;31152:9;31146:4;31142:20;31138:1;31127:9;31123:17;31116:47;31180:131;31306:4;31180:131;:::i;:::-;31172:139;;30899:419;;;:::o;31324:::-;31490:4;31528:2;31517:9;31513:18;31505:26;;31577:9;31571:4;31567:20;31563:1;31552:9;31548:17;31541:47;31605:131;31731:4;31605:131;:::i;:::-;31597:139;;31324:419;;;:::o;31749:::-;31915:4;31953:2;31942:9;31938:18;31930:26;;32002:9;31996:4;31992:20;31988:1;31977:9;31973:17;31966:47;32030:131;32156:4;32030:131;:::i;:::-;32022:139;;31749:419;;;:::o;32174:::-;32340:4;32378:2;32367:9;32363:18;32355:26;;32427:9;32421:4;32417:20;32413:1;32402:9;32398:17;32391:47;32455:131;32581:4;32455:131;:::i;:::-;32447:139;;32174:419;;;:::o;32599:::-;32765:4;32803:2;32792:9;32788:18;32780:26;;32852:9;32846:4;32842:20;32838:1;32827:9;32823:17;32816:47;32880:131;33006:4;32880:131;:::i;:::-;32872:139;;32599:419;;;:::o;33024:::-;33190:4;33228:2;33217:9;33213:18;33205:26;;33277:9;33271:4;33267:20;33263:1;33252:9;33248:17;33241:47;33305:131;33431:4;33305:131;:::i;:::-;33297:139;;33024:419;;;:::o;33449:::-;33615:4;33653:2;33642:9;33638:18;33630:26;;33702:9;33696:4;33692:20;33688:1;33677:9;33673:17;33666:47;33730:131;33856:4;33730:131;:::i;:::-;33722:139;;33449:419;;;:::o;33874:::-;34040:4;34078:2;34067:9;34063:18;34055:26;;34127:9;34121:4;34117:20;34113:1;34102:9;34098:17;34091:47;34155:131;34281:4;34155:131;:::i;:::-;34147:139;;33874:419;;;:::o;34724:::-;34890:4;34928:2;34917:9;34913:18;34905:26;;34977:9;34971:4;34967:20;34963:1;34952:9;34948:17;34941:47;35005:131;35131:4;35005:131;:::i;:::-;34997:139;;34724:419;;;:::o;35149:::-;35315:4;35353:2;35342:9;35338:18;35330:26;;35402:9;35396:4;35392:20;35388:1;35377:9;35373:17;35366:47;35430:131;35556:4;35430:131;:::i;:::-;35422:139;;35149:419;;;:::o;35574:222::-;35667:4;35705:2;35694:9;35690:18;35682:26;;35718:71;35786:1;35775:9;35771:17;35762:6;35718:71;:::i;:::-;35574:222;;;;:::o;35802:129::-;35836:6;35863:20;;:::i;:::-;35853:30;;35892:33;35920:4;35912:6;35892:33;:::i;:::-;35802:129;;;:::o;35937:75::-;35970:6;36003:2;35997:9;35987:19;;35937:75;:::o;36018:307::-;36079:4;36169:18;36161:6;36158:30;36155:56;;;36191:18;;:::i;:::-;36155:56;36229:29;36251:6;36229:29;:::i;:::-;36221:37;;36313:4;36307;36303:15;36295:23;;36018:307;;;:::o;36331:308::-;36393:4;36483:18;36475:6;36472:30;36469:56;;;36505:18;;:::i;:::-;36469:56;36543:29;36565:6;36543:29;:::i;:::-;36535:37;;36627:4;36621;36617:15;36609:23;;36331:308;;;:::o;36645:141::-;36694:4;36717:3;36709:11;;36740:3;36737:1;36730:14;36774:4;36771:1;36761:18;36753:26;;36645:141;;;:::o;36792:98::-;36843:6;36877:5;36871:12;36861:22;;36792:98;;;:::o;36896:99::-;36948:6;36982:5;36976:12;36966:22;;36896:99;;;:::o;37001:168::-;37084:11;37118:6;37113:3;37106:19;37158:4;37153:3;37149:14;37134:29;;37001:168;;;;:::o;37175:147::-;37276:11;37313:3;37298:18;;37175:147;;;;:::o;37328:169::-;37412:11;37446:6;37441:3;37434:19;37486:4;37481:3;37477:14;37462:29;;37328:169;;;;:::o;37503:148::-;37605:11;37642:3;37627:18;;37503:148;;;;:::o;37657:273::-;37697:3;37716:20;37734:1;37716:20;:::i;:::-;37711:25;;37750:20;37768:1;37750:20;:::i;:::-;37745:25;;37872:1;37836:34;37832:42;37829:1;37826:49;37823:75;;;37878:18;;:::i;:::-;37823:75;37922:1;37919;37915:9;37908:16;;37657:273;;;;:::o;37936:305::-;37976:3;37995:20;38013:1;37995:20;:::i;:::-;37990:25;;38029:20;38047:1;38029:20;:::i;:::-;38024:25;;38183:1;38115:66;38111:74;38108:1;38105:81;38102:107;;;38189:18;;:::i;:::-;38102:107;38233:1;38230;38226:9;38219:16;;37936:305;;;;:::o;38247:185::-;38287:1;38304:20;38322:1;38304:20;:::i;:::-;38299:25;;38338:20;38356:1;38338:20;:::i;:::-;38333:25;;38377:1;38367:35;;38382:18;;:::i;:::-;38367:35;38424:1;38421;38417:9;38412:14;;38247:185;;;;:::o;38438:348::-;38478:7;38501:20;38519:1;38501:20;:::i;:::-;38496:25;;38535:20;38553:1;38535:20;:::i;:::-;38530:25;;38723:1;38655:66;38651:74;38648:1;38645:81;38640:1;38633:9;38626:17;38622:105;38619:131;;;38730:18;;:::i;:::-;38619:131;38778:1;38775;38771:9;38760:20;;38438:348;;;;:::o;38792:191::-;38832:4;38852:20;38870:1;38852:20;:::i;:::-;38847:25;;38886:20;38904:1;38886:20;:::i;:::-;38881:25;;38925:1;38922;38919:8;38916:34;;;38930:18;;:::i;:::-;38916:34;38975:1;38972;38968:9;38960:17;;38792:191;;;;:::o;38989:96::-;39026:7;39055:24;39073:5;39055:24;:::i;:::-;39044:35;;38989:96;;;:::o;39091:90::-;39125:7;39168:5;39161:13;39154:21;39143:32;;39091:90;;;:::o;39187:149::-;39223:7;39263:66;39256:5;39252:78;39241:89;;39187:149;;;:::o;39342:125::-;39408:7;39437:24;39455:5;39437:24;:::i;:::-;39426:35;;39342:125;;;:::o;39473:118::-;39510:7;39550:34;39543:5;39539:46;39528:57;;39473:118;;;:::o;39597:126::-;39634:7;39674:42;39667:5;39663:54;39652:65;;39597:126;;;:::o;39729:77::-;39766:7;39795:5;39784:16;;39729:77;;;:::o;39812:154::-;39896:6;39891:3;39886;39873:30;39958:1;39949:6;39944:3;39940:16;39933:27;39812:154;;;:::o;39972:307::-;40040:1;40050:113;40064:6;40061:1;40058:13;40050:113;;;40149:1;40144:3;40140:11;40134:18;40130:1;40125:3;40121:11;40114:39;40086:2;40083:1;40079:10;40074:15;;40050:113;;;40181:6;40178:1;40175:13;40172:101;;;40261:1;40252:6;40247:3;40243:16;40236:27;40172:101;40021:258;39972:307;;;:::o;40285:171::-;40324:3;40347:24;40365:5;40347:24;:::i;:::-;40338:33;;40393:4;40386:5;40383:15;40380:41;;;40401:18;;:::i;:::-;40380:41;40448:1;40441:5;40437:13;40430:20;;40285:171;;;:::o;40462:320::-;40506:6;40543:1;40537:4;40533:12;40523:22;;40590:1;40584:4;40580:12;40611:18;40601:81;;40667:4;40659:6;40655:17;40645:27;;40601:81;40729:2;40721:6;40718:14;40698:18;40695:38;40692:84;;;40748:18;;:::i;:::-;40692:84;40513:269;40462:320;;;:::o;40788:281::-;40871:27;40893:4;40871:27;:::i;:::-;40863:6;40859:40;41001:6;40989:10;40986:22;40965:18;40953:10;40950:34;40947:62;40944:88;;;41012:18;;:::i;:::-;40944:88;41052:10;41048:2;41041:22;40831:238;40788:281;;:::o;41075:233::-;41114:3;41137:24;41155:5;41137:24;:::i;:::-;41128:33;;41183:66;41176:5;41173:77;41170:103;;;41253:18;;:::i;:::-;41170:103;41300:1;41293:5;41289:13;41282:20;;41075:233;;;:::o;41314:176::-;41346:1;41363:20;41381:1;41363:20;:::i;:::-;41358:25;;41397:20;41415:1;41397:20;:::i;:::-;41392:25;;41436:1;41426:35;;41441:18;;:::i;:::-;41426:35;41482:1;41479;41475:9;41470:14;;41314:176;;;;:::o;41496:180::-;41544:77;41541:1;41534:88;41641:4;41638:1;41631:15;41665:4;41662:1;41655:15;41682:180;41730:77;41727:1;41720:88;41827:4;41824:1;41817:15;41851:4;41848:1;41841:15;41868:180;41916:77;41913:1;41906:88;42013:4;42010:1;42003:15;42037:4;42034:1;42027:15;42054:180;42102:77;42099:1;42092:88;42199:4;42196:1;42189:15;42223:4;42220:1;42213:15;42240:180;42288:77;42285:1;42278:88;42385:4;42382:1;42375:15;42409:4;42406:1;42399:15;42426:117;42535:1;42532;42525:12;42549:117;42658:1;42655;42648:12;42672:117;42781:1;42778;42771:12;42795:117;42904:1;42901;42894:12;42918:102;42959:6;43010:2;43006:7;43001:2;42994:5;42990:14;42986:28;42976:38;;42918:102;;;:::o;43026:221::-;43166:34;43162:1;43154:6;43150:14;43143:58;43235:4;43230:2;43222:6;43218:15;43211:29;43026:221;:::o;43253:156::-;43393:8;43389:1;43381:6;43377:14;43370:32;43253:156;:::o;43415:225::-;43555:34;43551:1;43543:6;43539:14;43532:58;43624:8;43619:2;43611:6;43607:15;43600:33;43415:225;:::o;43646:229::-;43786:34;43782:1;43774:6;43770:14;43763:58;43855:12;43850:2;43842:6;43838:15;43831:37;43646:229;:::o;43881:160::-;44021:12;44017:1;44009:6;44005:14;43998:36;43881:160;:::o;44047:177::-;44187:29;44183:1;44175:6;44171:14;44164:53;44047:177;:::o;44230:222::-;44370:34;44366:1;44358:6;44354:14;44347:58;44439:5;44434:2;44426:6;44422:15;44415:30;44230:222;:::o;44458:224::-;44598:34;44594:1;44586:6;44582:14;44575:58;44667:7;44662:2;44654:6;44650:15;44643:32;44458:224;:::o;44688:244::-;44828:34;44824:1;44816:6;44812:14;44805:58;44897:27;44892:2;44884:6;44880:15;44873:52;44688:244;:::o;44938:223::-;45078:34;45074:1;45066:6;45062:14;45055:58;45147:6;45142:2;45134:6;45130:15;45123:31;44938:223;:::o;45167:168::-;45307:20;45303:1;45295:6;45291:14;45284:44;45167:168;:::o;45341:230::-;45481:34;45477:1;45469:6;45465:14;45458:58;45550:13;45545:2;45537:6;45533:15;45526:38;45341:230;:::o;45577:171::-;45717:23;45713:1;45705:6;45701:14;45694:47;45577:171;:::o;45754:225::-;45894:34;45890:1;45882:6;45878:14;45871:58;45963:8;45958:2;45950:6;45946:15;45939:33;45754:225;:::o;45985:182::-;46125:34;46121:1;46113:6;46109:14;46102:58;45985:182;:::o;46173:176::-;46313:28;46309:1;46301:6;46297:14;46290:52;46173:176;:::o;46355:237::-;46495:34;46491:1;46483:6;46479:14;46472:58;46564:20;46559:2;46551:6;46547:15;46540:45;46355:237;:::o;46598:172::-;46738:24;46734:1;46726:6;46722:14;46715:48;46598:172;:::o;46776:221::-;46916:34;46912:1;46904:6;46900:14;46893:58;46985:4;46980:2;46972:6;46968:15;46961:29;46776:221;:::o;47003:114::-;;:::o;47123:222::-;47263:34;47259:1;47251:6;47247:14;47240:58;47332:5;47327:2;47319:6;47315:15;47308:30;47123:222;:::o;47351:238::-;47491:34;47487:1;47479:6;47475:14;47468:58;47560:21;47555:2;47547:6;47543:15;47536:46;47351:238;:::o;47595:179::-;47735:31;47731:1;47723:6;47719:14;47712:55;47595:179;:::o;47780:220::-;47920:34;47916:1;47908:6;47904:14;47897:58;47989:3;47984:2;47976:6;47972:15;47965:28;47780:220;:::o;48006:164::-;48146:16;48142:1;48134:6;48130:14;48123:40;48006:164;:::o;48176:233::-;48316:34;48312:1;48304:6;48300:14;48293:58;48385:16;48380:2;48372:6;48368:15;48361:41;48176:233;:::o;48655:232::-;48795:34;48791:1;48783:6;48779:14;48772:58;48864:15;48859:2;48851:6;48847:15;48840:40;48655:232;:::o;48893:162::-;49033:14;49029:1;49021:6;49017:14;49010:38;48893:162;:::o;49061:122::-;49134:24;49152:5;49134:24;:::i;:::-;49127:5;49124:35;49114:63;;49173:1;49170;49163:12;49114:63;49061:122;:::o;49189:116::-;49259:21;49274:5;49259:21;:::i;:::-;49252:5;49249:32;49239:60;;49295:1;49292;49285:12;49239:60;49189:116;:::o;49311:120::-;49383:23;49400:5;49383:23;:::i;:::-;49376:5;49373:34;49363:62;;49421:1;49418;49411:12;49363:62;49311:120;:::o;49437:180::-;49539:53;49586:5;49539:53;:::i;:::-;49532:5;49529:64;49519:92;;49607:1;49604;49597:12;49519:92;49437:180;:::o;49623:122::-;49696:24;49714:5;49696:24;:::i;:::-;49689:5;49686:35;49676:63;;49735:1;49732;49725:12;49676:63;49623:122;:::o

Swarm Source

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