ETH Price: $3,053.56 (+2.45%)
Gas: 1 Gwei

Token

WTF is Kod4 (KOD4)
 

Overview

Max Total Supply

684 KOD4

Holders

243

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A

Other Info

Balance
1 KOD4
0x3addafcb4a9bcaaa3af7837f41f758863ade2938
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:
WTFisKod4

Compiler Version
v0.8.12+commit.f00d7308

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

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

// SPDX-License-Identifier: MIT

pragma solidity ^0.8.12;

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

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

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

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

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


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

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

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

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

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

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

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

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

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

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

/**
 * @dev Collection of functions related to the address type
 */
library Address {
    /**
     * @dev Returns true if `account` is a contract.
     *
     * [IMPORTANT]
     * ====
     * It is unsafe to assume that an address for which this function returns
     * false is an externally-owned account (EOA) and not a contract.
     *
     * Among others, `isContract` will return false for the following
     * types of addresses:
     *
     *  - an externally-owned account
     *  - a contract in construction
     *  - an address where a contract will be created
     *  - an address where a contract lived, but was destroyed
     * ====
     */
    function isContract(address account) internal view returns (bool) {
        // This method relies on extcodesize, which returns 0 for contracts in
        // construction, since the code is only stored at the end of the
        // constructor execution.

        uint256 size;
        assembly {
            size := extcodesize(account)
        }
        return size > 0;
    }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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


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

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

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

/**
 * @dev Implementation of https://eips.ethereum.org/EIPS/eip-721[ERC721] Non-Fungible Token Standard, including
 * the Metadata and Enumerable extension. Built to optimize for lower gas during batch mints.
 *
 * Assumes serials are sequentially minted starting at 0 (e.g. 0, 1, 2, 3..).
 *
 * Does not support burning tokens to address(0).
 *
 * Assumes that an owner cannot have more than the 2**128 - 1 (max value of uint128) of supply
 */
contract ERC721A is Context, ERC165, IERC721, IERC721Metadata, IERC721Enumerable {
    using Address for address;
    using Strings for uint256;

    struct StakingInfo {
        bool staked;
        bool usedForMint;
        uint duration;
    }

    struct TokenOwnership {
        address addr;
        uint64 startTimestamp;
    }

    struct AddressData {
        uint128 balance;
        uint128 numberMinted;
    }

    uint256 internal currentIndex = 1;

    // Token name
    string private _name;

    // Token symbol
    string private _symbol;

    string internal uri;

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

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

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

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

    mapping(uint => StakingInfo) public _stakedTokens;

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

        _approve(to, tokenId, owner);
    }

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

        return _tokenApprovals[tokenId];
    }

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

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

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

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

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

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

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

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

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

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

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

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

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

            uint256 updatedIndex = startTokenId;

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

                updatedIndex++;
            }

            currentIndex = updatedIndex;
        }

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

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

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

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

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

        _beforeTokenTransfers(from, to, tokenId, 1);

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

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

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

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

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

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

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

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

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

contract WTFisKod4 is ERC721A, Ownable {

    constructor() ERC721A("WTF is Kod4", "KOD4") {}

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

    uint256 private constant MAX_SUPPLY = 3333;     

    bool public saleStatus;
    uint256 public price;  
    uint256 public freeMintPrice = 0;  
    uint256 public maxPerTx = 20;    
    uint256 public maxPerWallet = 100;  
    uint256 public maxFreePerTx = 1;    
    uint256 public maxFreePerWallet = 1;  

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

    mapping(address => uint) public _minted; 

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

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

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

    function setPrice(uint amount) external onlyOwner {
        price = amount;
    }
    
    function setMaxPerTx(uint amount) external onlyOwner {
        maxPerTx = amount;
    }
    
    function setMaxPerWallet(uint amount) external onlyOwner {
        maxPerWallet = amount;
    }

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

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

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

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

    function mint(uint amount) external payable {
        require(saleStatus, "SALE_NOT_ACTIVE!");
        if(currentIndex <= 222){
            require(amount <= maxFreePerTx, "EXCEEDS_MAX_PER_TX!");
            require(_minted[msg.sender] + amount <= maxFreePerWallet, "EXCEEDS_MAX_PER_WALLET!");
            require(msg.value == freeMintPrice * amount, "INCORRECT_AMOUNT!");
            _safeMint(msg.sender, amount);
            _minted[msg.sender] += amount;
        }
        else{
            require(amount * price == msg.value, "NOT_ENOUGH_MONEY!");
            require(amount <= maxPerTx, "EXCEEDS_MAX_PER_TX!");
            require(currentIndex <= MAX_SUPPLY + 1, "NOT_ENOUGH_TOKENS!");
            require(_minted[msg.sender] + amount <= maxPerWallet, "EXCEEDS_MAX_PER_WALLET!");
            _safeMint(msg.sender, amount);
            _minted[msg.sender] += amount;
        }
    }
}

Contract Security Audit

Contract ABI

[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"approved","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"_minted","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"","type":"uint256"}],"name":"_stakedTokens","outputs":[{"internalType":"bool","name":"staked","type":"bool"},{"internalType":"bool","name":"usedForMint","type":"bool"},{"internalType":"uint256","name":"duration","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"freeMintPrice","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxFreePerTx","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxFreePerWallet","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxPerTx","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxPerWallet","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"mint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"ownerMint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"price","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"_data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"saleStatus","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_uri","type":"string"}],"name":"setBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"setMaxFreePerTx","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"setMaxFreePerWallet","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"setMaxPerTx","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"setMaxPerWallet","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"setPrice","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"setSaleStatus","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"index","type":"uint256"}],"name":"tokenByIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"uint256","name":"index","type":"uint256"}],"name":"tokenOfOwnerByIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"withdraw","outputs":[],"stateMutability":"nonpayable","type":"function"}]

608060405260016000556000600b556014600c556064600d556001600e556001600f553480156200002f57600080fd5b506040518060400160405280600b81526020017f575446206973204b6f64340000000000000000000000000000000000000000008152506040518060400160405280600481526020017f4b4f4434000000000000000000000000000000000000000000000000000000008152508160019080519060200190620000b4929190620001c4565b508060029080519060200190620000cd929190620001c4565b505050620000f0620000e4620000f660201b60201c565b620000fe60201b60201c565b620002d9565b600033905090565b6000600960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600960006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b828054620001d290620002a3565b90600052602060002090601f016020900481019282620001f6576000855562000242565b82601f106200021157805160ff191683800117855562000242565b8280016001018555821562000242579182015b828111156200024157825182559160200191906001019062000224565b5b50905062000251919062000255565b5090565b5b808211156200027057600081600090555060010162000256565b5090565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b60006002820490506001821680620002bc57607f821691505b60208210811415620002d357620002d262000274565b5b50919050565b6149e380620002e96000396000f3fe6080604052600436106102255760003560e01c80637dc949b211610123578063b88d4fde116100ab578063f19e75d41161006f578063f19e75d41461080a578063f2fde38b14610833578063f737c47a1461085c578063f9020e3314610887578063f968adbe146108b257610225565b8063b88d4fde14610715578063c6f6f2161461073e578063c87b56dd14610767578063e268e4d3146107a4578063e985e9c5146107cd57610225565b806395d89b41116100f257806395d89b411461064f578063a035b1fe1461067a578063a0712d68146106a5578063a22cb465146106c1578063a7027357146106ea57610225565b80637dc949b2146105935780637de77ecc146105be5780638da5cb5b146105fb57806391b7f5ed1461062657610225565b806340f070a8116101b157806355f804b31161017557806355f804b3146104b05780636352211e146104d95780636d7c4a4b1461051657806370a082311461053f578063715018a61461057c57610225565b806340f070a8146103df57806342842e0e14610408578063453c2310146104315780634f6ccce71461045c578063502b33af1461049957610225565b806318160ddd116101f857806318160ddd146102f8578063204f490c1461032357806323b872dd146103625780632f745c591461038b5780633ccfd60b146103c857610225565b806301ffc9a71461022a57806306fdde0314610267578063081812fc14610292578063095ea7b3146102cf575b600080fd5b34801561023657600080fd5b50610251600480360381019061024c9190613197565b6108dd565b60405161025e91906131df565b60405180910390f35b34801561027357600080fd5b5061027c610a27565b6040516102899190613293565b60405180910390f35b34801561029e57600080fd5b506102b960048036038101906102b491906132eb565b610ab9565b6040516102c69190613359565b60405180910390f35b3480156102db57600080fd5b506102f660048036038101906102f191906133a0565b610b3e565b005b34801561030457600080fd5b5061030d610c57565b60405161031a91906133ef565b60405180910390f35b34801561032f57600080fd5b5061034a600480360381019061034591906132eb565b610c6d565b6040516103599392919061340a565b60405180910390f35b34801561036e57600080fd5b5061038960048036038101906103849190613441565b610cb1565b005b34801561039757600080fd5b506103b260048036038101906103ad91906133a0565b610d25565b6040516103bf91906133ef565b60405180910390f35b3480156103d457600080fd5b506103dd610f17565b005b3480156103eb57600080fd5b50610406600480360381019061040191906132eb565b610fdc565b005b34801561041457600080fd5b5061042f600480360381019061042a9190613441565b611062565b005b34801561043d57600080fd5b506104466110e6565b60405161045391906133ef565b60405180910390f35b34801561046857600080fd5b50610483600480360381019061047e91906132eb565b6110ec565b60405161049091906133ef565b60405180910390f35b3480156104a557600080fd5b506104ae61113f565b005b3480156104bc57600080fd5b506104d760048036038101906104d291906134f9565b6111e7565b005b3480156104e557600080fd5b5061050060048036038101906104fb91906132eb565b611279565b60405161050d9190613359565b60405180910390f35b34801561052257600080fd5b5061053d600480360381019061053891906132eb565b61128f565b005b34801561054b57600080fd5b5061056660048036038101906105619190613546565b611315565b60405161057391906133ef565b60405180910390f35b34801561058857600080fd5b506105916113fe565b005b34801561059f57600080fd5b506105a8611486565b6040516105b591906133ef565b60405180910390f35b3480156105ca57600080fd5b506105e560048036038101906105e09190613546565b61148c565b6040516105f291906133ef565b60405180910390f35b34801561060757600080fd5b506106106114a4565b60405161061d9190613359565b60405180910390f35b34801561063257600080fd5b5061064d600480360381019061064891906132eb565b6114ce565b005b34801561065b57600080fd5b50610664611554565b6040516106719190613293565b60405180910390f35b34801561068657600080fd5b5061068f6115e6565b60405161069c91906133ef565b60405180910390f35b6106bf60048036038101906106ba91906132eb565b6115ec565b005b3480156106cd57600080fd5b506106e860048036038101906106e3919061359f565b6119a7565b005b3480156106f657600080fd5b506106ff611b28565b60405161070c91906133ef565b60405180910390f35b34801561072157600080fd5b5061073c6004803603810190610737919061370f565b611b2e565b005b34801561074a57600080fd5b50610765600480360381019061076091906132eb565b611bee565b005b34801561077357600080fd5b5061078e600480360381019061078991906132eb565b611c74565b60405161079b9190613293565b60405180910390f35b3480156107b057600080fd5b506107cb60048036038101906107c691906132eb565b611d1c565b005b3480156107d957600080fd5b506107f460048036038101906107ef9190613792565b611da2565b60405161080191906131df565b60405180910390f35b34801561081657600080fd5b50610831600480360381019061082c91906132eb565b611e36565b005b34801561083f57600080fd5b5061085a60048036038101906108559190613546565b611f12565b005b34801561086857600080fd5b5061087161200a565b60405161087e91906133ef565b60405180910390f35b34801561089357600080fd5b5061089c612010565b6040516108a991906131df565b60405180910390f35b3480156108be57600080fd5b506108c7612023565b6040516108d491906133ef565b60405180910390f35b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614806109a857507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b80610a1057507f780e9d63000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b80610a205750610a1f82612029565b5b9050919050565b606060018054610a3690613801565b80601f0160208091040260200160405190810160405280929190818152602001828054610a6290613801565b8015610aaf5780601f10610a8457610100808354040283529160200191610aaf565b820191906000526020600020905b815481529060010190602001808311610a9257829003601f168201915b5050505050905090565b6000610ac482612093565b610b03576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610afa906138a5565b60405180910390fd5b6006600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b6000610b4982611279565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610bba576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610bb190613937565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16610bd96120ac565b73ffffffffffffffffffffffffffffffffffffffff161480610c085750610c0781610c026120ac565b611da2565b5b610c47576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c3e906139c9565b60405180910390fd5b610c528383836120b4565b505050565b60006001600054610c689190613a18565b905090565b60086020528060005260406000206000915090508060000160009054906101000a900460ff16908060000160019054906101000a900460ff16908060010154905083565b6008600082815260200190815260200160002060000160009054906101000a900460ff1615610d15576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d0c90613a98565b60405180910390fd5b610d20838383612166565b505050565b6000610d3083611315565b8210610d71576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d6890613b2a565b60405180910390fd5b6000610d7b610c57565b905060008060005b83811015610ed5576000600460008381526020019081526020016000206040518060400160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815250509050600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff1614610e7557806000015192505b8773ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610ec75786841415610ebe578195505050505050610f11565b83806001019450505b508080600101915050610d83565b506040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f0890613bbc565b60405180910390fd5b92915050565b610f1f6120ac565b73ffffffffffffffffffffffffffffffffffffffff16610f3d6114a4565b73ffffffffffffffffffffffffffffffffffffffff1614610f93576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f8a90613c28565b60405180910390fd5b3373ffffffffffffffffffffffffffffffffffffffff166108fc479081150290604051600060405180830381858888f19350505050158015610fd9573d6000803e3d6000fd5b50565b610fe46120ac565b73ffffffffffffffffffffffffffffffffffffffff166110026114a4565b73ffffffffffffffffffffffffffffffffffffffff1614611058576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161104f90613c28565b60405180910390fd5b80600e8190555050565b6008600082815260200190815260200160002060000160009054906101000a900460ff16156110c6576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110bd90613a98565b60405180910390fd5b6110e183838360405180602001604052806000815250611b2e565b505050565b600d5481565b60006110f6610c57565b8210611137576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161112e90613cba565b60405180910390fd5b819050919050565b6111476120ac565b73ffffffffffffffffffffffffffffffffffffffff166111656114a4565b73ffffffffffffffffffffffffffffffffffffffff16146111bb576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111b290613c28565b60405180910390fd5b600960149054906101000a900460ff1615600960146101000a81548160ff021916908315150217905550565b6111ef6120ac565b73ffffffffffffffffffffffffffffffffffffffff1661120d6114a4565b73ffffffffffffffffffffffffffffffffffffffff1614611263576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161125a90613c28565b60405180910390fd5b81816003919061127492919061304e565b505050565b6000611284826126a6565b600001519050919050565b6112976120ac565b73ffffffffffffffffffffffffffffffffffffffff166112b56114a4565b73ffffffffffffffffffffffffffffffffffffffff161461130b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161130290613c28565b60405180910390fd5b80600f8190555050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611386576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161137d90613d4c565b60405180910390fd5b600560008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160009054906101000a90046fffffffffffffffffffffffffffffffff166fffffffffffffffffffffffffffffffff169050919050565b6114066120ac565b73ffffffffffffffffffffffffffffffffffffffff166114246114a4565b73ffffffffffffffffffffffffffffffffffffffff161461147a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161147190613c28565b60405180910390fd5b6114846000612840565b565b600e5481565b60106020528060005260406000206000915090505481565b6000600960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b6114d66120ac565b73ffffffffffffffffffffffffffffffffffffffff166114f46114a4565b73ffffffffffffffffffffffffffffffffffffffff161461154a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161154190613c28565b60405180910390fd5b80600a8190555050565b60606002805461156390613801565b80601f016020809104026020016040519081016040528092919081815260200182805461158f90613801565b80156115dc5780601f106115b1576101008083540402835291602001916115dc565b820191906000526020600020905b8154815290600101906020018083116115bf57829003601f168201915b5050505050905090565b600a5481565b600960149054906101000a900460ff1661163b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161163290613db8565b60405180910390fd5b60de600054116117cd57600e5481111561168a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161168190613e24565b60405180910390fd5b600f5481601060003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546116d89190613e44565b1115611719576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161171090613ee6565b60405180910390fd5b80600b546117279190613f06565b3414611768576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161175f90613fac565b60405180910390fd5b6117723382612906565b80601060003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546117c19190613e44565b925050819055506119a4565b34600a54826117dc9190613f06565b1461181c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161181390614018565b60405180910390fd5b600c54811115611861576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161185890613e24565b60405180910390fd5b6001610d056118709190613e44565b60005411156118b4576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118ab90614084565b60405180910390fd5b600d5481601060003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546119029190613e44565b1115611943576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161193a90613ee6565b60405180910390fd5b61194d3382612906565b80601060003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825461199c9190613e44565b925050819055505b50565b6119af6120ac565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611a1d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a14906140f0565b60405180910390fd5b8060076000611a2a6120ac565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff16611ad76120ac565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c3183604051611b1c91906131df565b60405180910390a35050565b600f5481565b6008600083815260200190815260200160002060000160009054906101000a900460ff1615611b92576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b8990613a98565b60405180910390fd5b611b9d848484612166565b611ba984848484612924565b611be8576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611bdf90614182565b60405180910390fd5b50505050565b611bf66120ac565b73ffffffffffffffffffffffffffffffffffffffff16611c146114a4565b73ffffffffffffffffffffffffffffffffffffffff1614611c6a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c6190613c28565b60405180910390fd5b80600c8190555050565b6060611c7f82612093565b611cbe576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611cb590614214565b60405180910390fd5b6000611cc8612aac565b9050600081511415611ce95760405180602001604052806000815250611d14565b80611cf384612b3e565b604051602001611d04929190614296565b6040516020818303038152906040525b915050919050565b611d246120ac565b73ffffffffffffffffffffffffffffffffffffffff16611d426114a4565b73ffffffffffffffffffffffffffffffffffffffff1614611d98576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d8f90613c28565b60405180910390fd5b80600d8190555050565b6000600760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b611e3e6120ac565b73ffffffffffffffffffffffffffffffffffffffff16611e5c6114a4565b73ffffffffffffffffffffffffffffffffffffffff1614611eb2576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ea990613c28565b60405180910390fd5b6001610d05611ec19190613e44565b6000541115611f05576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611efc90614311565b60405180910390fd5b611f0f3382612906565b50565b611f1a6120ac565b73ffffffffffffffffffffffffffffffffffffffff16611f386114a4565b73ffffffffffffffffffffffffffffffffffffffff1614611f8e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f8590613c28565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415611ffe576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ff5906143a3565b60405180910390fd5b61200781612840565b50565b600b5481565b600960149054906101000a900460ff1681565b600c5481565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b60008054821080156120a55750600082115b9050919050565b600033905090565b826006600084815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b6000612171826126a6565b90506000816000015173ffffffffffffffffffffffffffffffffffffffff166121986120ac565b73ffffffffffffffffffffffffffffffffffffffff1614806121f457506121bd6120ac565b73ffffffffffffffffffffffffffffffffffffffff166121dc84610ab9565b73ffffffffffffffffffffffffffffffffffffffff16145b80612210575061220f826000015161220a6120ac565b611da2565b5b905080612252576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161224990614435565b60405180910390fd5b8473ffffffffffffffffffffffffffffffffffffffff16826000015173ffffffffffffffffffffffffffffffffffffffff16146122c4576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016122bb906144c7565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161415612334576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161232b90614559565b60405180910390fd5b6123418585856001612c9f565b61235160008484600001516120b4565b6001600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a90046fffffffffffffffffffffffffffffffff160392506101000a8154816fffffffffffffffffffffffffffffffff02191690836fffffffffffffffffffffffffffffffff1602179055506001600560008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a90046fffffffffffffffffffffffffffffffff160192506101000a8154816fffffffffffffffffffffffffffffffff02191690836fffffffffffffffffffffffffffffffff160217905550836004600085815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550426004600085815260200190815260200160002060000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055506000600184019050600073ffffffffffffffffffffffffffffffffffffffff166004600083815260200190815260200160002060000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614156126365761259581612093565b156126355782600001516004600083815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555082602001516004600083815260200190815260200160002060000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055505b5b50828473ffffffffffffffffffffffffffffffffffffffff168673ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a461269f8585856001612ca5565b5050505050565b6126ae6130d4565b6126b782612093565b6126f6576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016126ed906145eb565b60405180910390fd5b60008290505b600081106127ff576000600460008381526020019081526020016000206040518060400160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815250509050600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff16146127f057809250505061283b565b508080600190039150506126fc565b506040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016128329061467d565b60405180910390fd5b919050565b6000600960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600960006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b612920828260405180602001604052806000815250612cab565b5050565b60006129458473ffffffffffffffffffffffffffffffffffffffff16612cbd565b15612a9f578373ffffffffffffffffffffffffffffffffffffffff1663150b7a0261296e6120ac565b8786866040518563ffffffff1660e01b815260040161299094939291906146f2565b6020604051808303816000875af19250505080156129cc57506040513d601f19601f820116820180604052508101906129c99190614753565b60015b612a4f573d80600081146129fc576040519150601f19603f3d011682016040523d82523d6000602084013e612a01565b606091505b50600081511415612a47576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612a3e90614182565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050612aa4565b600190505b949350505050565b606060038054612abb90613801565b80601f0160208091040260200160405190810160405280929190818152602001828054612ae790613801565b8015612b345780601f10612b0957610100808354040283529160200191612b34565b820191906000526020600020905b815481529060010190602001808311612b1757829003601f168201915b5050505050905090565b60606000821415612b86576040518060400160405280600181526020017f30000000000000000000000000000000000000000000000000000000000000008152509050612c9a565b600082905060005b60008214612bb8578080612ba190614780565b915050600a82612bb191906147f8565b9150612b8e565b60008167ffffffffffffffff811115612bd457612bd36135e4565b5b6040519080825280601f01601f191660200182016040528015612c065781602001600182028036833780820191505090505b5090505b60008514612c9357600182612c1f9190613a18565b9150600a85612c2e9190614829565b6030612c3a9190613e44565b60f81b818381518110612c5057612c4f61485a565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a85612c8c91906147f8565b9450612c0a565b8093505050505b919050565b50505050565b50505050565b612cb88383836001612cd0565b505050565b600080823b905060008111915050919050565b600080549050600073ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff161415612d46576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612d3d906148fb565b60405180910390fd5b6000841415612d8a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612d819061498d565b60405180910390fd5b612d976000868387612c9f565b83600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a90046fffffffffffffffffffffffffffffffff160192506101000a8154816fffffffffffffffffffffffffffffffff02191690836fffffffffffffffffffffffffffffffff16021790555083600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160108282829054906101000a90046fffffffffffffffffffffffffffffffff160192506101000a8154816fffffffffffffffffffffffffffffffff02191690836fffffffffffffffffffffffffffffffff160217905550846004600083815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550426004600083815260200190815260200160002060000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff160217905550600081905060005b8581101561303157818773ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4831561301c57612fdc6000888488612924565b61301b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161301290614182565b60405180910390fd5b5b81806001019250508080600101915050612f65565b5080600081905550506130476000868387612ca5565b5050505050565b82805461305a90613801565b90600052602060002090601f01602090048101928261307c57600085556130c3565b82601f1061309557803560ff19168380011785556130c3565b828001600101855582156130c3579182015b828111156130c25782358255916020019190600101906130a7565b5b5090506130d0919061310e565b5090565b6040518060400160405280600073ffffffffffffffffffffffffffffffffffffffff168152602001600067ffffffffffffffff1681525090565b5b8082111561312757600081600090555060010161310f565b5090565b6000604051905090565b600080fd5b600080fd5b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b6131748161313f565b811461317f57600080fd5b50565b6000813590506131918161316b565b92915050565b6000602082840312156131ad576131ac613135565b5b60006131bb84828501613182565b91505092915050565b60008115159050919050565b6131d9816131c4565b82525050565b60006020820190506131f460008301846131d0565b92915050565b600081519050919050565b600082825260208201905092915050565b60005b83811015613234578082015181840152602081019050613219565b83811115613243576000848401525b50505050565b6000601f19601f8301169050919050565b6000613265826131fa565b61326f8185613205565b935061327f818560208601613216565b61328881613249565b840191505092915050565b600060208201905081810360008301526132ad818461325a565b905092915050565b6000819050919050565b6132c8816132b5565b81146132d357600080fd5b50565b6000813590506132e5816132bf565b92915050565b60006020828403121561330157613300613135565b5b600061330f848285016132d6565b91505092915050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b600061334382613318565b9050919050565b61335381613338565b82525050565b600060208201905061336e600083018461334a565b92915050565b61337d81613338565b811461338857600080fd5b50565b60008135905061339a81613374565b92915050565b600080604083850312156133b7576133b6613135565b5b60006133c58582860161338b565b92505060206133d6858286016132d6565b9150509250929050565b6133e9816132b5565b82525050565b600060208201905061340460008301846133e0565b92915050565b600060608201905061341f60008301866131d0565b61342c60208301856131d0565b61343960408301846133e0565b949350505050565b60008060006060848603121561345a57613459613135565b5b60006134688682870161338b565b93505060206134798682870161338b565b925050604061348a868287016132d6565b9150509250925092565b600080fd5b600080fd5b600080fd5b60008083601f8401126134b9576134b8613494565b5b8235905067ffffffffffffffff8111156134d6576134d5613499565b5b6020830191508360018202830111156134f2576134f161349e565b5b9250929050565b600080602083850312156135105761350f613135565b5b600083013567ffffffffffffffff81111561352e5761352d61313a565b5b61353a858286016134a3565b92509250509250929050565b60006020828403121561355c5761355b613135565b5b600061356a8482850161338b565b91505092915050565b61357c816131c4565b811461358757600080fd5b50565b60008135905061359981613573565b92915050565b600080604083850312156135b6576135b5613135565b5b60006135c48582860161338b565b92505060206135d58582860161358a565b9150509250929050565b600080fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b61361c82613249565b810181811067ffffffffffffffff8211171561363b5761363a6135e4565b5b80604052505050565b600061364e61312b565b905061365a8282613613565b919050565b600067ffffffffffffffff82111561367a576136796135e4565b5b61368382613249565b9050602081019050919050565b82818337600083830152505050565b60006136b26136ad8461365f565b613644565b9050828152602081018484840111156136ce576136cd6135df565b5b6136d9848285613690565b509392505050565b600082601f8301126136f6576136f5613494565b5b813561370684826020860161369f565b91505092915050565b6000806000806080858703121561372957613728613135565b5b60006137378782880161338b565b94505060206137488782880161338b565b9350506040613759878288016132d6565b925050606085013567ffffffffffffffff81111561377a5761377961313a565b5b613786878288016136e1565b91505092959194509250565b600080604083850312156137a9576137a8613135565b5b60006137b78582860161338b565b92505060206137c88582860161338b565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b6000600282049050600182168061381957607f821691505b6020821081141561382d5761382c6137d2565b5b50919050565b7f455243373231413a20617070726f76656420717565727920666f72206e6f6e6560008201527f78697374656e7420746f6b656e00000000000000000000000000000000000000602082015250565b600061388f602d83613205565b915061389a82613833565b604082019050919050565b600060208201905081810360008301526138be81613882565b9050919050565b7f455243373231413a20617070726f76616c20746f2063757272656e74206f776e60008201527f6572000000000000000000000000000000000000000000000000000000000000602082015250565b6000613921602283613205565b915061392c826138c5565b604082019050919050565b6000602082019050818103600083015261395081613914565b9050919050565b7f455243373231413a20617070726f76652063616c6c6572206973206e6f74206f60008201527f776e6572206e6f7220617070726f76656420666f7220616c6c00000000000000602082015250565b60006139b3603983613205565b91506139be82613957565b604082019050919050565b600060208201905081810360008301526139e2816139a6565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b6000613a23826132b5565b9150613a2e836132b5565b925082821015613a4157613a406139e9565b5b828203905092915050565b7f544f4b454e5f5354414b45442100000000000000000000000000000000000000600082015250565b6000613a82600d83613205565b9150613a8d82613a4c565b602082019050919050565b60006020820190508181036000830152613ab181613a75565b9050919050565b7f455243373231413a206f776e657220696e646578206f7574206f6620626f756e60008201527f6473000000000000000000000000000000000000000000000000000000000000602082015250565b6000613b14602283613205565b9150613b1f82613ab8565b604082019050919050565b60006020820190508181036000830152613b4381613b07565b9050919050565b7f455243373231413a20756e61626c6520746f2067657420746f6b656e206f662060008201527f6f776e657220627920696e646578000000000000000000000000000000000000602082015250565b6000613ba6602e83613205565b9150613bb182613b4a565b604082019050919050565b60006020820190508181036000830152613bd581613b99565b9050919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b6000613c12602083613205565b9150613c1d82613bdc565b602082019050919050565b60006020820190508181036000830152613c4181613c05565b9050919050565b7f455243373231413a20676c6f62616c20696e646578206f7574206f6620626f7560008201527f6e64730000000000000000000000000000000000000000000000000000000000602082015250565b6000613ca4602383613205565b9150613caf82613c48565b604082019050919050565b60006020820190508181036000830152613cd381613c97565b9050919050565b7f455243373231413a2062616c616e636520717565727920666f7220746865207a60008201527f65726f2061646472657373000000000000000000000000000000000000000000602082015250565b6000613d36602b83613205565b9150613d4182613cda565b604082019050919050565b60006020820190508181036000830152613d6581613d29565b9050919050565b7f53414c455f4e4f545f4143544956452100000000000000000000000000000000600082015250565b6000613da2601083613205565b9150613dad82613d6c565b602082019050919050565b60006020820190508181036000830152613dd181613d95565b9050919050565b7f455843454544535f4d41585f5045525f54582100000000000000000000000000600082015250565b6000613e0e601383613205565b9150613e1982613dd8565b602082019050919050565b60006020820190508181036000830152613e3d81613e01565b9050919050565b6000613e4f826132b5565b9150613e5a836132b5565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115613e8f57613e8e6139e9565b5b828201905092915050565b7f455843454544535f4d41585f5045525f57414c4c455421000000000000000000600082015250565b6000613ed0601783613205565b9150613edb82613e9a565b602082019050919050565b60006020820190508181036000830152613eff81613ec3565b9050919050565b6000613f11826132b5565b9150613f1c836132b5565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0483118215151615613f5557613f546139e9565b5b828202905092915050565b7f494e434f52524543545f414d4f554e5421000000000000000000000000000000600082015250565b6000613f96601183613205565b9150613fa182613f60565b602082019050919050565b60006020820190508181036000830152613fc581613f89565b9050919050565b7f4e4f545f454e4f5547485f4d4f4e455921000000000000000000000000000000600082015250565b6000614002601183613205565b915061400d82613fcc565b602082019050919050565b6000602082019050818103600083015261403181613ff5565b9050919050565b7f4e4f545f454e4f5547485f544f4b454e53210000000000000000000000000000600082015250565b600061406e601283613205565b915061407982614038565b602082019050919050565b6000602082019050818103600083015261409d81614061565b9050919050565b7f455243373231413a20617070726f766520746f2063616c6c6572000000000000600082015250565b60006140da601a83613205565b91506140e5826140a4565b602082019050919050565b60006020820190508181036000830152614109816140cd565b9050919050565b7f455243373231413a207472616e7366657220746f206e6f6e204552433732315260008201527f6563656976657220696d706c656d656e74657200000000000000000000000000602082015250565b600061416c603383613205565b915061417782614110565b604082019050919050565b6000602082019050818103600083015261419b8161415f565b9050919050565b7f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008201527f6e6578697374656e7420746f6b656e0000000000000000000000000000000000602082015250565b60006141fe602f83613205565b9150614209826141a2565b604082019050919050565b6000602082019050818103600083015261422d816141f1565b9050919050565b600081905092915050565b600061424a826131fa565b6142548185614234565b9350614264818560208601613216565b80840191505092915050565b50565b6000614280600083614234565b915061428b82614270565b600082019050919050565b60006142a2828561423f565b91506142ae828461423f565b91506142b982614273565b91508190509392505050565b7f4e4f545f414c4c4f574544210000000000000000000000000000000000000000600082015250565b60006142fb600c83613205565b9150614306826142c5565b602082019050919050565b6000602082019050818103600083015261432a816142ee565b9050919050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b600061438d602683613205565b915061439882614331565b604082019050919050565b600060208201905081810360008301526143bc81614380565b9050919050565b7f455243373231413a207472616e736665722063616c6c6572206973206e6f742060008201527f6f776e6572206e6f7220617070726f7665640000000000000000000000000000602082015250565b600061441f603283613205565b915061442a826143c3565b604082019050919050565b6000602082019050818103600083015261444e81614412565b9050919050565b7f455243373231413a207472616e736665722066726f6d20696e636f727265637460008201527f206f776e65720000000000000000000000000000000000000000000000000000602082015250565b60006144b1602683613205565b91506144bc82614455565b604082019050919050565b600060208201905081810360008301526144e0816144a4565b9050919050565b7f455243373231413a207472616e7366657220746f20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b6000614543602583613205565b915061454e826144e7565b604082019050919050565b6000602082019050818103600083015261457281614536565b9050919050565b7f455243373231413a206f776e657220717565727920666f72206e6f6e6578697360008201527f74656e7420746f6b656e00000000000000000000000000000000000000000000602082015250565b60006145d5602a83613205565b91506145e082614579565b604082019050919050565b60006020820190508181036000830152614604816145c8565b9050919050565b7f455243373231413a20756e61626c6520746f2064657465726d696e652074686560008201527f206f776e6572206f6620746f6b656e0000000000000000000000000000000000602082015250565b6000614667602f83613205565b91506146728261460b565b604082019050919050565b600060208201905081810360008301526146968161465a565b9050919050565b600081519050919050565b600082825260208201905092915050565b60006146c48261469d565b6146ce81856146a8565b93506146de818560208601613216565b6146e781613249565b840191505092915050565b6000608082019050614707600083018761334a565b614714602083018661334a565b61472160408301856133e0565b818103606083015261473381846146b9565b905095945050505050565b60008151905061474d8161316b565b92915050565b60006020828403121561476957614768613135565b5b60006147778482850161473e565b91505092915050565b600061478b826132b5565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8214156147be576147bd6139e9565b5b600182019050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b6000614803826132b5565b915061480e836132b5565b92508261481e5761481d6147c9565b5b828204905092915050565b6000614834826132b5565b915061483f836132b5565b92508261484f5761484e6147c9565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f455243373231413a206d696e7420746f20746865207a65726f2061646472657360008201527f7300000000000000000000000000000000000000000000000000000000000000602082015250565b60006148e5602183613205565b91506148f082614889565b604082019050919050565b60006020820190508181036000830152614914816148d8565b9050919050565b7f455243373231413a207175616e74697479206d7573742062652067726561746560008201527f72207468616e2030000000000000000000000000000000000000000000000000602082015250565b6000614977602883613205565b91506149828261491b565b604082019050919050565b600060208201905081810360008301526149a68161496a565b905091905056fea264697066735822122096c3e93cb882b7b6d6fe76b28c3ec0e025bd33ad080fbd223fd9b40bdc66229464736f6c634300080c0033

Deployed Bytecode

0x6080604052600436106102255760003560e01c80637dc949b211610123578063b88d4fde116100ab578063f19e75d41161006f578063f19e75d41461080a578063f2fde38b14610833578063f737c47a1461085c578063f9020e3314610887578063f968adbe146108b257610225565b8063b88d4fde14610715578063c6f6f2161461073e578063c87b56dd14610767578063e268e4d3146107a4578063e985e9c5146107cd57610225565b806395d89b41116100f257806395d89b411461064f578063a035b1fe1461067a578063a0712d68146106a5578063a22cb465146106c1578063a7027357146106ea57610225565b80637dc949b2146105935780637de77ecc146105be5780638da5cb5b146105fb57806391b7f5ed1461062657610225565b806340f070a8116101b157806355f804b31161017557806355f804b3146104b05780636352211e146104d95780636d7c4a4b1461051657806370a082311461053f578063715018a61461057c57610225565b806340f070a8146103df57806342842e0e14610408578063453c2310146104315780634f6ccce71461045c578063502b33af1461049957610225565b806318160ddd116101f857806318160ddd146102f8578063204f490c1461032357806323b872dd146103625780632f745c591461038b5780633ccfd60b146103c857610225565b806301ffc9a71461022a57806306fdde0314610267578063081812fc14610292578063095ea7b3146102cf575b600080fd5b34801561023657600080fd5b50610251600480360381019061024c9190613197565b6108dd565b60405161025e91906131df565b60405180910390f35b34801561027357600080fd5b5061027c610a27565b6040516102899190613293565b60405180910390f35b34801561029e57600080fd5b506102b960048036038101906102b491906132eb565b610ab9565b6040516102c69190613359565b60405180910390f35b3480156102db57600080fd5b506102f660048036038101906102f191906133a0565b610b3e565b005b34801561030457600080fd5b5061030d610c57565b60405161031a91906133ef565b60405180910390f35b34801561032f57600080fd5b5061034a600480360381019061034591906132eb565b610c6d565b6040516103599392919061340a565b60405180910390f35b34801561036e57600080fd5b5061038960048036038101906103849190613441565b610cb1565b005b34801561039757600080fd5b506103b260048036038101906103ad91906133a0565b610d25565b6040516103bf91906133ef565b60405180910390f35b3480156103d457600080fd5b506103dd610f17565b005b3480156103eb57600080fd5b50610406600480360381019061040191906132eb565b610fdc565b005b34801561041457600080fd5b5061042f600480360381019061042a9190613441565b611062565b005b34801561043d57600080fd5b506104466110e6565b60405161045391906133ef565b60405180910390f35b34801561046857600080fd5b50610483600480360381019061047e91906132eb565b6110ec565b60405161049091906133ef565b60405180910390f35b3480156104a557600080fd5b506104ae61113f565b005b3480156104bc57600080fd5b506104d760048036038101906104d291906134f9565b6111e7565b005b3480156104e557600080fd5b5061050060048036038101906104fb91906132eb565b611279565b60405161050d9190613359565b60405180910390f35b34801561052257600080fd5b5061053d600480360381019061053891906132eb565b61128f565b005b34801561054b57600080fd5b5061056660048036038101906105619190613546565b611315565b60405161057391906133ef565b60405180910390f35b34801561058857600080fd5b506105916113fe565b005b34801561059f57600080fd5b506105a8611486565b6040516105b591906133ef565b60405180910390f35b3480156105ca57600080fd5b506105e560048036038101906105e09190613546565b61148c565b6040516105f291906133ef565b60405180910390f35b34801561060757600080fd5b506106106114a4565b60405161061d9190613359565b60405180910390f35b34801561063257600080fd5b5061064d600480360381019061064891906132eb565b6114ce565b005b34801561065b57600080fd5b50610664611554565b6040516106719190613293565b60405180910390f35b34801561068657600080fd5b5061068f6115e6565b60405161069c91906133ef565b60405180910390f35b6106bf60048036038101906106ba91906132eb565b6115ec565b005b3480156106cd57600080fd5b506106e860048036038101906106e3919061359f565b6119a7565b005b3480156106f657600080fd5b506106ff611b28565b60405161070c91906133ef565b60405180910390f35b34801561072157600080fd5b5061073c6004803603810190610737919061370f565b611b2e565b005b34801561074a57600080fd5b50610765600480360381019061076091906132eb565b611bee565b005b34801561077357600080fd5b5061078e600480360381019061078991906132eb565b611c74565b60405161079b9190613293565b60405180910390f35b3480156107b057600080fd5b506107cb60048036038101906107c691906132eb565b611d1c565b005b3480156107d957600080fd5b506107f460048036038101906107ef9190613792565b611da2565b60405161080191906131df565b60405180910390f35b34801561081657600080fd5b50610831600480360381019061082c91906132eb565b611e36565b005b34801561083f57600080fd5b5061085a60048036038101906108559190613546565b611f12565b005b34801561086857600080fd5b5061087161200a565b60405161087e91906133ef565b60405180910390f35b34801561089357600080fd5b5061089c612010565b6040516108a991906131df565b60405180910390f35b3480156108be57600080fd5b506108c7612023565b6040516108d491906133ef565b60405180910390f35b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614806109a857507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b80610a1057507f780e9d63000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b80610a205750610a1f82612029565b5b9050919050565b606060018054610a3690613801565b80601f0160208091040260200160405190810160405280929190818152602001828054610a6290613801565b8015610aaf5780601f10610a8457610100808354040283529160200191610aaf565b820191906000526020600020905b815481529060010190602001808311610a9257829003601f168201915b5050505050905090565b6000610ac482612093565b610b03576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610afa906138a5565b60405180910390fd5b6006600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b6000610b4982611279565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610bba576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610bb190613937565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16610bd96120ac565b73ffffffffffffffffffffffffffffffffffffffff161480610c085750610c0781610c026120ac565b611da2565b5b610c47576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c3e906139c9565b60405180910390fd5b610c528383836120b4565b505050565b60006001600054610c689190613a18565b905090565b60086020528060005260406000206000915090508060000160009054906101000a900460ff16908060000160019054906101000a900460ff16908060010154905083565b6008600082815260200190815260200160002060000160009054906101000a900460ff1615610d15576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d0c90613a98565b60405180910390fd5b610d20838383612166565b505050565b6000610d3083611315565b8210610d71576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d6890613b2a565b60405180910390fd5b6000610d7b610c57565b905060008060005b83811015610ed5576000600460008381526020019081526020016000206040518060400160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815250509050600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff1614610e7557806000015192505b8773ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610ec75786841415610ebe578195505050505050610f11565b83806001019450505b508080600101915050610d83565b506040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f0890613bbc565b60405180910390fd5b92915050565b610f1f6120ac565b73ffffffffffffffffffffffffffffffffffffffff16610f3d6114a4565b73ffffffffffffffffffffffffffffffffffffffff1614610f93576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f8a90613c28565b60405180910390fd5b3373ffffffffffffffffffffffffffffffffffffffff166108fc479081150290604051600060405180830381858888f19350505050158015610fd9573d6000803e3d6000fd5b50565b610fe46120ac565b73ffffffffffffffffffffffffffffffffffffffff166110026114a4565b73ffffffffffffffffffffffffffffffffffffffff1614611058576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161104f90613c28565b60405180910390fd5b80600e8190555050565b6008600082815260200190815260200160002060000160009054906101000a900460ff16156110c6576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110bd90613a98565b60405180910390fd5b6110e183838360405180602001604052806000815250611b2e565b505050565b600d5481565b60006110f6610c57565b8210611137576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161112e90613cba565b60405180910390fd5b819050919050565b6111476120ac565b73ffffffffffffffffffffffffffffffffffffffff166111656114a4565b73ffffffffffffffffffffffffffffffffffffffff16146111bb576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111b290613c28565b60405180910390fd5b600960149054906101000a900460ff1615600960146101000a81548160ff021916908315150217905550565b6111ef6120ac565b73ffffffffffffffffffffffffffffffffffffffff1661120d6114a4565b73ffffffffffffffffffffffffffffffffffffffff1614611263576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161125a90613c28565b60405180910390fd5b81816003919061127492919061304e565b505050565b6000611284826126a6565b600001519050919050565b6112976120ac565b73ffffffffffffffffffffffffffffffffffffffff166112b56114a4565b73ffffffffffffffffffffffffffffffffffffffff161461130b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161130290613c28565b60405180910390fd5b80600f8190555050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611386576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161137d90613d4c565b60405180910390fd5b600560008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160009054906101000a90046fffffffffffffffffffffffffffffffff166fffffffffffffffffffffffffffffffff169050919050565b6114066120ac565b73ffffffffffffffffffffffffffffffffffffffff166114246114a4565b73ffffffffffffffffffffffffffffffffffffffff161461147a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161147190613c28565b60405180910390fd5b6114846000612840565b565b600e5481565b60106020528060005260406000206000915090505481565b6000600960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b6114d66120ac565b73ffffffffffffffffffffffffffffffffffffffff166114f46114a4565b73ffffffffffffffffffffffffffffffffffffffff161461154a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161154190613c28565b60405180910390fd5b80600a8190555050565b60606002805461156390613801565b80601f016020809104026020016040519081016040528092919081815260200182805461158f90613801565b80156115dc5780601f106115b1576101008083540402835291602001916115dc565b820191906000526020600020905b8154815290600101906020018083116115bf57829003601f168201915b5050505050905090565b600a5481565b600960149054906101000a900460ff1661163b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161163290613db8565b60405180910390fd5b60de600054116117cd57600e5481111561168a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161168190613e24565b60405180910390fd5b600f5481601060003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546116d89190613e44565b1115611719576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161171090613ee6565b60405180910390fd5b80600b546117279190613f06565b3414611768576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161175f90613fac565b60405180910390fd5b6117723382612906565b80601060003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546117c19190613e44565b925050819055506119a4565b34600a54826117dc9190613f06565b1461181c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161181390614018565b60405180910390fd5b600c54811115611861576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161185890613e24565b60405180910390fd5b6001610d056118709190613e44565b60005411156118b4576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118ab90614084565b60405180910390fd5b600d5481601060003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546119029190613e44565b1115611943576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161193a90613ee6565b60405180910390fd5b61194d3382612906565b80601060003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825461199c9190613e44565b925050819055505b50565b6119af6120ac565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611a1d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a14906140f0565b60405180910390fd5b8060076000611a2a6120ac565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff16611ad76120ac565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c3183604051611b1c91906131df565b60405180910390a35050565b600f5481565b6008600083815260200190815260200160002060000160009054906101000a900460ff1615611b92576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b8990613a98565b60405180910390fd5b611b9d848484612166565b611ba984848484612924565b611be8576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611bdf90614182565b60405180910390fd5b50505050565b611bf66120ac565b73ffffffffffffffffffffffffffffffffffffffff16611c146114a4565b73ffffffffffffffffffffffffffffffffffffffff1614611c6a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c6190613c28565b60405180910390fd5b80600c8190555050565b6060611c7f82612093565b611cbe576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611cb590614214565b60405180910390fd5b6000611cc8612aac565b9050600081511415611ce95760405180602001604052806000815250611d14565b80611cf384612b3e565b604051602001611d04929190614296565b6040516020818303038152906040525b915050919050565b611d246120ac565b73ffffffffffffffffffffffffffffffffffffffff16611d426114a4565b73ffffffffffffffffffffffffffffffffffffffff1614611d98576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d8f90613c28565b60405180910390fd5b80600d8190555050565b6000600760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b611e3e6120ac565b73ffffffffffffffffffffffffffffffffffffffff16611e5c6114a4565b73ffffffffffffffffffffffffffffffffffffffff1614611eb2576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ea990613c28565b60405180910390fd5b6001610d05611ec19190613e44565b6000541115611f05576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611efc90614311565b60405180910390fd5b611f0f3382612906565b50565b611f1a6120ac565b73ffffffffffffffffffffffffffffffffffffffff16611f386114a4565b73ffffffffffffffffffffffffffffffffffffffff1614611f8e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f8590613c28565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415611ffe576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ff5906143a3565b60405180910390fd5b61200781612840565b50565b600b5481565b600960149054906101000a900460ff1681565b600c5481565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b60008054821080156120a55750600082115b9050919050565b600033905090565b826006600084815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b6000612171826126a6565b90506000816000015173ffffffffffffffffffffffffffffffffffffffff166121986120ac565b73ffffffffffffffffffffffffffffffffffffffff1614806121f457506121bd6120ac565b73ffffffffffffffffffffffffffffffffffffffff166121dc84610ab9565b73ffffffffffffffffffffffffffffffffffffffff16145b80612210575061220f826000015161220a6120ac565b611da2565b5b905080612252576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161224990614435565b60405180910390fd5b8473ffffffffffffffffffffffffffffffffffffffff16826000015173ffffffffffffffffffffffffffffffffffffffff16146122c4576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016122bb906144c7565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161415612334576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161232b90614559565b60405180910390fd5b6123418585856001612c9f565b61235160008484600001516120b4565b6001600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a90046fffffffffffffffffffffffffffffffff160392506101000a8154816fffffffffffffffffffffffffffffffff02191690836fffffffffffffffffffffffffffffffff1602179055506001600560008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a90046fffffffffffffffffffffffffffffffff160192506101000a8154816fffffffffffffffffffffffffffffffff02191690836fffffffffffffffffffffffffffffffff160217905550836004600085815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550426004600085815260200190815260200160002060000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055506000600184019050600073ffffffffffffffffffffffffffffffffffffffff166004600083815260200190815260200160002060000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614156126365761259581612093565b156126355782600001516004600083815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555082602001516004600083815260200190815260200160002060000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055505b5b50828473ffffffffffffffffffffffffffffffffffffffff168673ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a461269f8585856001612ca5565b5050505050565b6126ae6130d4565b6126b782612093565b6126f6576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016126ed906145eb565b60405180910390fd5b60008290505b600081106127ff576000600460008381526020019081526020016000206040518060400160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815250509050600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff16146127f057809250505061283b565b508080600190039150506126fc565b506040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016128329061467d565b60405180910390fd5b919050565b6000600960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600960006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b612920828260405180602001604052806000815250612cab565b5050565b60006129458473ffffffffffffffffffffffffffffffffffffffff16612cbd565b15612a9f578373ffffffffffffffffffffffffffffffffffffffff1663150b7a0261296e6120ac565b8786866040518563ffffffff1660e01b815260040161299094939291906146f2565b6020604051808303816000875af19250505080156129cc57506040513d601f19601f820116820180604052508101906129c99190614753565b60015b612a4f573d80600081146129fc576040519150601f19603f3d011682016040523d82523d6000602084013e612a01565b606091505b50600081511415612a47576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612a3e90614182565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050612aa4565b600190505b949350505050565b606060038054612abb90613801565b80601f0160208091040260200160405190810160405280929190818152602001828054612ae790613801565b8015612b345780601f10612b0957610100808354040283529160200191612b34565b820191906000526020600020905b815481529060010190602001808311612b1757829003601f168201915b5050505050905090565b60606000821415612b86576040518060400160405280600181526020017f30000000000000000000000000000000000000000000000000000000000000008152509050612c9a565b600082905060005b60008214612bb8578080612ba190614780565b915050600a82612bb191906147f8565b9150612b8e565b60008167ffffffffffffffff811115612bd457612bd36135e4565b5b6040519080825280601f01601f191660200182016040528015612c065781602001600182028036833780820191505090505b5090505b60008514612c9357600182612c1f9190613a18565b9150600a85612c2e9190614829565b6030612c3a9190613e44565b60f81b818381518110612c5057612c4f61485a565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a85612c8c91906147f8565b9450612c0a565b8093505050505b919050565b50505050565b50505050565b612cb88383836001612cd0565b505050565b600080823b905060008111915050919050565b600080549050600073ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff161415612d46576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612d3d906148fb565b60405180910390fd5b6000841415612d8a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612d819061498d565b60405180910390fd5b612d976000868387612c9f565b83600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a90046fffffffffffffffffffffffffffffffff160192506101000a8154816fffffffffffffffffffffffffffffffff02191690836fffffffffffffffffffffffffffffffff16021790555083600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160108282829054906101000a90046fffffffffffffffffffffffffffffffff160192506101000a8154816fffffffffffffffffffffffffffffffff02191690836fffffffffffffffffffffffffffffffff160217905550846004600083815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550426004600083815260200190815260200160002060000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff160217905550600081905060005b8581101561303157818773ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4831561301c57612fdc6000888488612924565b61301b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161301290614182565b60405180910390fd5b5b81806001019250508080600101915050612f65565b5080600081905550506130476000868387612ca5565b5050505050565b82805461305a90613801565b90600052602060002090601f01602090048101928261307c57600085556130c3565b82601f1061309557803560ff19168380011785556130c3565b828001600101855582156130c3579182015b828111156130c25782358255916020019190600101906130a7565b5b5090506130d0919061310e565b5090565b6040518060400160405280600073ffffffffffffffffffffffffffffffffffffffff168152602001600067ffffffffffffffff1681525090565b5b8082111561312757600081600090555060010161310f565b5090565b6000604051905090565b600080fd5b600080fd5b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b6131748161313f565b811461317f57600080fd5b50565b6000813590506131918161316b565b92915050565b6000602082840312156131ad576131ac613135565b5b60006131bb84828501613182565b91505092915050565b60008115159050919050565b6131d9816131c4565b82525050565b60006020820190506131f460008301846131d0565b92915050565b600081519050919050565b600082825260208201905092915050565b60005b83811015613234578082015181840152602081019050613219565b83811115613243576000848401525b50505050565b6000601f19601f8301169050919050565b6000613265826131fa565b61326f8185613205565b935061327f818560208601613216565b61328881613249565b840191505092915050565b600060208201905081810360008301526132ad818461325a565b905092915050565b6000819050919050565b6132c8816132b5565b81146132d357600080fd5b50565b6000813590506132e5816132bf565b92915050565b60006020828403121561330157613300613135565b5b600061330f848285016132d6565b91505092915050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b600061334382613318565b9050919050565b61335381613338565b82525050565b600060208201905061336e600083018461334a565b92915050565b61337d81613338565b811461338857600080fd5b50565b60008135905061339a81613374565b92915050565b600080604083850312156133b7576133b6613135565b5b60006133c58582860161338b565b92505060206133d6858286016132d6565b9150509250929050565b6133e9816132b5565b82525050565b600060208201905061340460008301846133e0565b92915050565b600060608201905061341f60008301866131d0565b61342c60208301856131d0565b61343960408301846133e0565b949350505050565b60008060006060848603121561345a57613459613135565b5b60006134688682870161338b565b93505060206134798682870161338b565b925050604061348a868287016132d6565b9150509250925092565b600080fd5b600080fd5b600080fd5b60008083601f8401126134b9576134b8613494565b5b8235905067ffffffffffffffff8111156134d6576134d5613499565b5b6020830191508360018202830111156134f2576134f161349e565b5b9250929050565b600080602083850312156135105761350f613135565b5b600083013567ffffffffffffffff81111561352e5761352d61313a565b5b61353a858286016134a3565b92509250509250929050565b60006020828403121561355c5761355b613135565b5b600061356a8482850161338b565b91505092915050565b61357c816131c4565b811461358757600080fd5b50565b60008135905061359981613573565b92915050565b600080604083850312156135b6576135b5613135565b5b60006135c48582860161338b565b92505060206135d58582860161358a565b9150509250929050565b600080fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b61361c82613249565b810181811067ffffffffffffffff8211171561363b5761363a6135e4565b5b80604052505050565b600061364e61312b565b905061365a8282613613565b919050565b600067ffffffffffffffff82111561367a576136796135e4565b5b61368382613249565b9050602081019050919050565b82818337600083830152505050565b60006136b26136ad8461365f565b613644565b9050828152602081018484840111156136ce576136cd6135df565b5b6136d9848285613690565b509392505050565b600082601f8301126136f6576136f5613494565b5b813561370684826020860161369f565b91505092915050565b6000806000806080858703121561372957613728613135565b5b60006137378782880161338b565b94505060206137488782880161338b565b9350506040613759878288016132d6565b925050606085013567ffffffffffffffff81111561377a5761377961313a565b5b613786878288016136e1565b91505092959194509250565b600080604083850312156137a9576137a8613135565b5b60006137b78582860161338b565b92505060206137c88582860161338b565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b6000600282049050600182168061381957607f821691505b6020821081141561382d5761382c6137d2565b5b50919050565b7f455243373231413a20617070726f76656420717565727920666f72206e6f6e6560008201527f78697374656e7420746f6b656e00000000000000000000000000000000000000602082015250565b600061388f602d83613205565b915061389a82613833565b604082019050919050565b600060208201905081810360008301526138be81613882565b9050919050565b7f455243373231413a20617070726f76616c20746f2063757272656e74206f776e60008201527f6572000000000000000000000000000000000000000000000000000000000000602082015250565b6000613921602283613205565b915061392c826138c5565b604082019050919050565b6000602082019050818103600083015261395081613914565b9050919050565b7f455243373231413a20617070726f76652063616c6c6572206973206e6f74206f60008201527f776e6572206e6f7220617070726f76656420666f7220616c6c00000000000000602082015250565b60006139b3603983613205565b91506139be82613957565b604082019050919050565b600060208201905081810360008301526139e2816139a6565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b6000613a23826132b5565b9150613a2e836132b5565b925082821015613a4157613a406139e9565b5b828203905092915050565b7f544f4b454e5f5354414b45442100000000000000000000000000000000000000600082015250565b6000613a82600d83613205565b9150613a8d82613a4c565b602082019050919050565b60006020820190508181036000830152613ab181613a75565b9050919050565b7f455243373231413a206f776e657220696e646578206f7574206f6620626f756e60008201527f6473000000000000000000000000000000000000000000000000000000000000602082015250565b6000613b14602283613205565b9150613b1f82613ab8565b604082019050919050565b60006020820190508181036000830152613b4381613b07565b9050919050565b7f455243373231413a20756e61626c6520746f2067657420746f6b656e206f662060008201527f6f776e657220627920696e646578000000000000000000000000000000000000602082015250565b6000613ba6602e83613205565b9150613bb182613b4a565b604082019050919050565b60006020820190508181036000830152613bd581613b99565b9050919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b6000613c12602083613205565b9150613c1d82613bdc565b602082019050919050565b60006020820190508181036000830152613c4181613c05565b9050919050565b7f455243373231413a20676c6f62616c20696e646578206f7574206f6620626f7560008201527f6e64730000000000000000000000000000000000000000000000000000000000602082015250565b6000613ca4602383613205565b9150613caf82613c48565b604082019050919050565b60006020820190508181036000830152613cd381613c97565b9050919050565b7f455243373231413a2062616c616e636520717565727920666f7220746865207a60008201527f65726f2061646472657373000000000000000000000000000000000000000000602082015250565b6000613d36602b83613205565b9150613d4182613cda565b604082019050919050565b60006020820190508181036000830152613d6581613d29565b9050919050565b7f53414c455f4e4f545f4143544956452100000000000000000000000000000000600082015250565b6000613da2601083613205565b9150613dad82613d6c565b602082019050919050565b60006020820190508181036000830152613dd181613d95565b9050919050565b7f455843454544535f4d41585f5045525f54582100000000000000000000000000600082015250565b6000613e0e601383613205565b9150613e1982613dd8565b602082019050919050565b60006020820190508181036000830152613e3d81613e01565b9050919050565b6000613e4f826132b5565b9150613e5a836132b5565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115613e8f57613e8e6139e9565b5b828201905092915050565b7f455843454544535f4d41585f5045525f57414c4c455421000000000000000000600082015250565b6000613ed0601783613205565b9150613edb82613e9a565b602082019050919050565b60006020820190508181036000830152613eff81613ec3565b9050919050565b6000613f11826132b5565b9150613f1c836132b5565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0483118215151615613f5557613f546139e9565b5b828202905092915050565b7f494e434f52524543545f414d4f554e5421000000000000000000000000000000600082015250565b6000613f96601183613205565b9150613fa182613f60565b602082019050919050565b60006020820190508181036000830152613fc581613f89565b9050919050565b7f4e4f545f454e4f5547485f4d4f4e455921000000000000000000000000000000600082015250565b6000614002601183613205565b915061400d82613fcc565b602082019050919050565b6000602082019050818103600083015261403181613ff5565b9050919050565b7f4e4f545f454e4f5547485f544f4b454e53210000000000000000000000000000600082015250565b600061406e601283613205565b915061407982614038565b602082019050919050565b6000602082019050818103600083015261409d81614061565b9050919050565b7f455243373231413a20617070726f766520746f2063616c6c6572000000000000600082015250565b60006140da601a83613205565b91506140e5826140a4565b602082019050919050565b60006020820190508181036000830152614109816140cd565b9050919050565b7f455243373231413a207472616e7366657220746f206e6f6e204552433732315260008201527f6563656976657220696d706c656d656e74657200000000000000000000000000602082015250565b600061416c603383613205565b915061417782614110565b604082019050919050565b6000602082019050818103600083015261419b8161415f565b9050919050565b7f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008201527f6e6578697374656e7420746f6b656e0000000000000000000000000000000000602082015250565b60006141fe602f83613205565b9150614209826141a2565b604082019050919050565b6000602082019050818103600083015261422d816141f1565b9050919050565b600081905092915050565b600061424a826131fa565b6142548185614234565b9350614264818560208601613216565b80840191505092915050565b50565b6000614280600083614234565b915061428b82614270565b600082019050919050565b60006142a2828561423f565b91506142ae828461423f565b91506142b982614273565b91508190509392505050565b7f4e4f545f414c4c4f574544210000000000000000000000000000000000000000600082015250565b60006142fb600c83613205565b9150614306826142c5565b602082019050919050565b6000602082019050818103600083015261432a816142ee565b9050919050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b600061438d602683613205565b915061439882614331565b604082019050919050565b600060208201905081810360008301526143bc81614380565b9050919050565b7f455243373231413a207472616e736665722063616c6c6572206973206e6f742060008201527f6f776e6572206e6f7220617070726f7665640000000000000000000000000000602082015250565b600061441f603283613205565b915061442a826143c3565b604082019050919050565b6000602082019050818103600083015261444e81614412565b9050919050565b7f455243373231413a207472616e736665722066726f6d20696e636f727265637460008201527f206f776e65720000000000000000000000000000000000000000000000000000602082015250565b60006144b1602683613205565b91506144bc82614455565b604082019050919050565b600060208201905081810360008301526144e0816144a4565b9050919050565b7f455243373231413a207472616e7366657220746f20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b6000614543602583613205565b915061454e826144e7565b604082019050919050565b6000602082019050818103600083015261457281614536565b9050919050565b7f455243373231413a206f776e657220717565727920666f72206e6f6e6578697360008201527f74656e7420746f6b656e00000000000000000000000000000000000000000000602082015250565b60006145d5602a83613205565b91506145e082614579565b604082019050919050565b60006020820190508181036000830152614604816145c8565b9050919050565b7f455243373231413a20756e61626c6520746f2064657465726d696e652074686560008201527f206f776e6572206f6620746f6b656e0000000000000000000000000000000000602082015250565b6000614667602f83613205565b91506146728261460b565b604082019050919050565b600060208201905081810360008301526146968161465a565b9050919050565b600081519050919050565b600082825260208201905092915050565b60006146c48261469d565b6146ce81856146a8565b93506146de818560208601613216565b6146e781613249565b840191505092915050565b6000608082019050614707600083018761334a565b614714602083018661334a565b61472160408301856133e0565b818103606083015261473381846146b9565b905095945050505050565b60008151905061474d8161316b565b92915050565b60006020828403121561476957614768613135565b5b60006147778482850161473e565b91505092915050565b600061478b826132b5565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8214156147be576147bd6139e9565b5b600182019050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b6000614803826132b5565b915061480e836132b5565b92508261481e5761481d6147c9565b5b828204905092915050565b6000614834826132b5565b915061483f836132b5565b92508261484f5761484e6147c9565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f455243373231413a206d696e7420746f20746865207a65726f2061646472657360008201527f7300000000000000000000000000000000000000000000000000000000000000602082015250565b60006148e5602183613205565b91506148f082614889565b604082019050919050565b60006020820190508181036000830152614914816148d8565b9050919050565b7f455243373231413a207175616e74697479206d7573742062652067726561746560008201527f72207468616e2030000000000000000000000000000000000000000000000000602082015250565b6000614977602883613205565b91506149828261491b565b604082019050919050565b600060208201905081810360008301526149a68161496a565b905091905056fea264697066735822122096c3e93cb882b7b6d6fe76b28c3ec0e025bd33ad080fbd223fd9b40bdc66229464736f6c634300080c0033

Deployed Bytecode Sourcemap

38683:3300:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;25338:372;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;27224:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;28791:214;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;28312:413;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;23591:104;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;23341:49;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;;;:::i;:::-;;;;;;;;29667:229;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;24259:1007;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;39837:109;;;;;;;;;;;;;:::i;:::-;;40350:97;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;29967:244;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;39204:33;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;23772:187;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;39954:87;;;;;;;;;;;;;:::i;:::-;;40572:90;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;27033:124;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;40459:105;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;25774:221;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;4365:94;;;;;;;;;;;;;:::i;:::-;;39246:31;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;39560:39;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;3714:87;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;40049:83;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;27393:104;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;39095:20;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;41075:905;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;29077:288;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;39288:35;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;30282:422;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;40144:89;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;27568:339;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;40245:97;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;29436:164;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;40899:168;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;4614:192;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;39124:32;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;39066:22;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;39165:28;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;25338:372;25440:4;25492:25;25477:40;;;:11;:40;;;;:105;;;;25549:33;25534:48;;;:11;:48;;;;25477:105;:172;;;;25614:35;25599:50;;;:11;:50;;;;25477:172;:225;;;;25666:36;25690:11;25666:23;:36::i;:::-;25477:225;25457:245;;25338:372;;;:::o;27224:100::-;27278:13;27311:5;27304:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;27224:100;:::o;28791:214::-;28859:7;28887:16;28895:7;28887;:16::i;:::-;28879:74;;;;;;;;;;;;:::i;:::-;;;;;;;;;28973:15;:24;28989:7;28973:24;;;;;;;;;;;;;;;;;;;;;28966:31;;28791:214;;;:::o;28312:413::-;28385:13;28401:24;28417:7;28401:15;:24::i;:::-;28385:40;;28450:5;28444:11;;:2;:11;;;;28436:58;;;;;;;;;;;;:::i;:::-;;;;;;;;;28545:5;28529:21;;:12;:10;:12::i;:::-;:21;;;:62;;;;28554:37;28571:5;28578:12;:10;:12::i;:::-;28554:16;:37::i;:::-;28529:62;28507:169;;;;;;;;;;;;:::i;:::-;;;;;;;;;28689:28;28698:2;28702:7;28711:5;28689:8;:28::i;:::-;28374:351;28312:413;;:::o;23591:104::-;23644:7;23686:1;23671:12;;:16;;;;:::i;:::-;23664:23;;23591:104;:::o;23341:49::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;29667:229::-;29802:13;:22;29816:7;29802:22;;;;;;;;;;;:29;;;;;;;;;;;;29801:30;29793:56;;;;;;;;;;;;:::i;:::-;;;;;;;;;29860:28;29870:4;29876:2;29880:7;29860:9;:28::i;:::-;29667:229;;;:::o;24259:1007::-;24348:7;24384:16;24394:5;24384:9;:16::i;:::-;24376:5;:24;24368:71;;;;;;;;;;;;:::i;:::-;;;;;;;;;24450:22;24475:13;:11;:13::i;:::-;24450:38;;24499:19;24529:25;24718:9;24713:466;24733:14;24729:1;:18;24713:466;;;24773:31;24807:11;:14;24819:1;24807:14;;;;;;;;;;;24773:48;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;24870:1;24844:28;;:9;:14;;;:28;;;24840:111;;24917:9;:14;;;24897:34;;24840:111;24994:5;24973:26;;:17;:26;;;24969:195;;;25043:5;25028:11;:20;25024:85;;;25084:1;25077:8;;;;;;;;;25024:85;25131:13;;;;;;;24969:195;24754:425;24749:3;;;;;;;24713:466;;;;25202:56;;;;;;;;;;:::i;:::-;;;;;;;;24259:1007;;;;;:::o;39837:109::-;3945:12;:10;:12::i;:::-;3934:23;;:7;:5;:7::i;:::-;:23;;;3926:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;39895:10:::1;39887:28;;:51;39916:21;39887:51;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;39837:109::o:0;40350:97::-;3945:12;:10;:12::i;:::-;3934:23;;:7;:5;:7::i;:::-;:23;;;3926:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;40433:6:::1;40418:12;:21;;;;40350:97:::0;:::o;29967:244::-;30106:13;:22;30120:7;30106:22;;;;;;;;;;;:29;;;;;;;;;;;;30105:30;30097:56;;;;;;;;;;;;:::i;:::-;;;;;;;;;30164:39;30181:4;30187:2;30191:7;30164:39;;;;;;;;;;;;:16;:39::i;:::-;29967:244;;;:::o;39204:33::-;;;;:::o;23772:187::-;23839:7;23875:13;:11;:13::i;:::-;23867:5;:21;23859:69;;;;;;;;;;;;:::i;:::-;;;;;;;;;23946:5;23939:12;;23772:187;;;:::o;39954:87::-;3945:12;:10;:12::i;:::-;3934:23;;:7;:5;:7::i;:::-;:23;;;3926:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;40023:10:::1;;;;;;;;;;;40022:11;40009:10;;:24;;;;;;;;;;;;;;;;;;39954:87::o:0;40572:90::-;3945:12;:10;:12::i;:::-;3934:23;;:7;:5;:7::i;:::-;:23;;;3926:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;40650:4:::1;;40644:3;:10;;;;;;;:::i;:::-;;40572:90:::0;;:::o;27033:124::-;27097:7;27124:20;27136:7;27124:11;:20::i;:::-;:25;;;27117:32;;27033:124;;;:::o;40459:105::-;3945:12;:10;:12::i;:::-;3934:23;;:7;:5;:7::i;:::-;:23;;;3926:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;40550:6:::1;40531:16;:25;;;;40459:105:::0;:::o;25774:221::-;25838:7;25883:1;25866:19;;:5;:19;;;;25858:75;;;;;;;;;;;;:::i;:::-;;;;;;;;;25959:12;:19;25972:5;25959:19;;;;;;;;;;;;;;;:27;;;;;;;;;;;;25951:36;;25944:43;;25774:221;;;:::o;4365:94::-;3945:12;:10;:12::i;:::-;3934:23;;:7;:5;:7::i;:::-;:23;;;3926:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;4430:21:::1;4448:1;4430:9;:21::i;:::-;4365:94::o:0;39246:31::-;;;;:::o;39560:39::-;;;;;;;;;;;;;;;;;:::o;3714:87::-;3760:7;3787:6;;;;;;;;;;;3780:13;;3714:87;:::o;40049:83::-;3945:12;:10;:12::i;:::-;3934:23;;:7;:5;:7::i;:::-;:23;;;3926:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;40118:6:::1;40110:5;:14;;;;40049:83:::0;:::o;27393:104::-;27449:13;27482:7;27475:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;27393:104;:::o;39095:20::-;;;;:::o;41075:905::-;41138:10;;;;;;;;;;;41130:39;;;;;;;;;;;;:::i;:::-;;;;;;;;;41199:3;41183:12;;:19;41180:793;;41236:12;;41226:6;:22;;41218:54;;;;;;;;;;;;:::i;:::-;;;;;;;;;41327:16;;41317:6;41295:7;:19;41303:10;41295:19;;;;;;;;;;;;;;;;:28;;;;:::i;:::-;:48;;41287:84;;;;;;;;;;;;:::i;:::-;;;;;;;;;41423:6;41407:13;;:22;;;;:::i;:::-;41394:9;:35;41386:65;;;;;;;;;;;;:::i;:::-;;;;;;;;;41466:29;41476:10;41488:6;41466:9;:29::i;:::-;41533:6;41510:7;:19;41518:10;41510:19;;;;;;;;;;;;;;;;:29;;;;;;;:::i;:::-;;;;;;;;41180:793;;;41606:9;41597:5;;41588:6;:14;;;;:::i;:::-;:27;41580:57;;;;;;;;;;;;:::i;:::-;;;;;;;;;41670:8;;41660:6;:18;;41652:50;;;;;;;;;;;;:::i;:::-;;;;;;;;;41754:1;39048:4;41741:14;;;;:::i;:::-;41725:12;;:30;;41717:61;;;;;;;;;;;;:::i;:::-;;;;;;;;;41833:12;;41823:6;41801:7;:19;41809:10;41801:19;;;;;;;;;;;;;;;;:28;;;;:::i;:::-;:44;;41793:80;;;;;;;;;;;;:::i;:::-;;;;;;;;;41888:29;41898:10;41910:6;41888:9;:29::i;:::-;41955:6;41932:7;:19;41940:10;41932:19;;;;;;;;;;;;;;;;:29;;;;;;;:::i;:::-;;;;;;;;41180:793;41075:905;:::o;29077:288::-;29184:12;:10;:12::i;:::-;29172:24;;:8;:24;;;;29164:63;;;;;;;;;;;;:::i;:::-;;;;;;;;;29285:8;29240:18;:32;29259:12;:10;:12::i;:::-;29240:32;;;;;;;;;;;;;;;:42;29273:8;29240:42;;;;;;;;;;;;;;;;:53;;;;;;;;;;;;;;;;;;29338:8;29309:48;;29324:12;:10;:12::i;:::-;29309:48;;;29348:8;29309:48;;;;;;:::i;:::-;;;;;;;;29077:288;;:::o;39288:35::-;;;;:::o;30282:422::-;30450:13;:22;30464:7;30450:22;;;;;;;;;;;:29;;;;;;;;;;;;30449:30;30441:56;;;;;;;;;;;;:::i;:::-;;;;;;;;;30508:28;30518:4;30524:2;30528:7;30508:9;:28::i;:::-;30569:48;30592:4;30598:2;30602:7;30611:5;30569:22;:48::i;:::-;30547:149;;;;;;;;;;;;:::i;:::-;;;;;;;;;30282:422;;;;:::o;40144:89::-;3945:12;:10;:12::i;:::-;3934:23;;:7;:5;:7::i;:::-;:23;;;3926:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;40219:6:::1;40208:8;:17;;;;40144:89:::0;:::o;27568:339::-;27641:13;27675:16;27683:7;27675;:16::i;:::-;27667:76;;;;;;;;;;;;:::i;:::-;;;;;;;;;27756:21;27780:10;:8;:10::i;:::-;27756:34;;27833:1;27814:7;27808:21;:26;;:91;;;;;;;;;;;;;;;;;27861:7;27870:18;:7;:16;:18::i;:::-;27844:49;;;;;;;;;:::i;:::-;;;;;;;;;;;;;27808:91;27801:98;;;27568:339;;;:::o;40245:97::-;3945:12;:10;:12::i;:::-;3934:23;;:7;:5;:7::i;:::-;:23;;;3926:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;40328:6:::1;40313:12;:21;;;;40245:97:::0;:::o;29436:164::-;29533:4;29557:18;:25;29576:5;29557:25;;;;;;;;;;;;;;;:35;29583:8;29557:35;;;;;;;;;;;;;;;;;;;;;;;;;29550:42;;29436:164;;;;:::o;40899:168::-;3945:12;:10;:12::i;:::-;3934:23;;:7;:5;:7::i;:::-;:23;;;3926:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;41001:1:::1;39048:4;40988:14;;;;:::i;:::-;40972:12;;:30;;40964:55;;;;;;;;;;;;:::i;:::-;;;;;;;;;41030:29;41040:10;41052:6;41030:9;:29::i;:::-;40899:168:::0;:::o;4614:192::-;3945:12;:10;:12::i;:::-;3934:23;;:7;:5;:7::i;:::-;:23;;;3926:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;4723:1:::1;4703:22;;:8;:22;;;;4695:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;4779:19;4789:8;4779:9;:19::i;:::-;4614:192:::0;:::o;39124:32::-;;;;:::o;39066:22::-;;;;;;;;;;;;;:::o;39165:28::-;;;;:::o;15316:157::-;15401:4;15440:25;15425:40;;;:11;:40;;;;15418:47;;15316:157;;;:::o;30959:126::-;31016:4;31050:12;;31040:7;:22;:37;;;;;31076:1;31066:7;:11;31040:37;31033:44;;30959:126;;;:::o;2590:98::-;2643:7;2670:10;2663:17;;2590:98;:::o;35894:196::-;36036:2;36009:15;:24;36025:7;36009:24;;;;;;;;;;;;:29;;;;;;;;;;;;;;;;;;36074:7;36070:2;36054:28;;36063:5;36054:28;;;;;;;;;;;;35894:196;;;:::o;33774:2002::-;33889:35;33927:20;33939:7;33927:11;:20::i;:::-;33889:58;;33960:22;34002:13;:18;;;33986:34;;:12;:10;:12::i;:::-;:34;;;:87;;;;34061:12;:10;:12::i;:::-;34037:36;;:20;34049:7;34037:11;:20::i;:::-;:36;;;33986:87;:154;;;;34090:50;34107:13;:18;;;34127:12;:10;:12::i;:::-;34090:16;:50::i;:::-;33986:154;33960:181;;34162:17;34154:80;;;;;;;;;;;;:::i;:::-;;;;;;;;;34277:4;34255:26;;:13;:18;;;:26;;;34247:77;;;;;;;;;;;;:::i;:::-;;;;;;;;;34357:1;34343:16;;:2;:16;;;;34335:66;;;;;;;;;;;;:::i;:::-;;;;;;;;;34414:43;34436:4;34442:2;34446:7;34455:1;34414:21;:43::i;:::-;34522:49;34539:1;34543:7;34552:13;:18;;;34522:8;:49::i;:::-;34897:1;34867:12;:18;34880:4;34867:18;;;;;;;;;;;;;;;:26;;;:31;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;34941:1;34913:12;:16;34926:2;34913:16;;;;;;;;;;;;;;;:24;;;:29;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;34987:2;34959:11;:20;34971:7;34959:20;;;;;;;;;;;:25;;;:30;;;;;;;;;;;;;;;;;;35049:15;35004:11;:20;35016:7;35004:20;;;;;;;;;;;:35;;;:61;;;;;;;;;;;;;;;;;;35317:19;35349:1;35339:7;:11;35317:33;;35410:1;35369:43;;:11;:24;35381:11;35369:24;;;;;;;;;;;:29;;;;;;;;;;;;:43;;;35365:295;;;35437:20;35445:11;35437:7;:20::i;:::-;35433:212;;;35514:13;:18;;;35482:11;:24;35494:11;35482:24;;;;;;;;;;;:29;;;:50;;;;;;;;;;;;;;;;;;35597:13;:28;;;35555:11;:24;35567:11;35555:24;;;;;;;;;;;:39;;;:70;;;;;;;;;;;;;;;;;;35433:212;35365:295;34842:829;35707:7;35703:2;35688:27;;35697:4;35688:27;;;;;;;;;;;;35726:42;35747:4;35753:2;35757:7;35766:1;35726:20;:42::i;:::-;33878:1898;;33774:2002;;;:::o;26434:537::-;26495:21;;:::i;:::-;26537:16;26545:7;26537;:16::i;:::-;26529:71;;;;;;;;;;;;:::i;:::-;;;;;;;;;26643:12;26658:7;26643:22;;26638:245;26675:1;26667:4;:9;26638:245;;26705:31;26739:11;:17;26751:4;26739:17;;;;;;;;;;;26705:51;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;26805:1;26779:28;;:9;:14;;;:28;;;26775:93;;26839:9;26832:16;;;;;;26775:93;26686:197;26678:6;;;;;;;;26638:245;;;;26906:57;;;;;;;;;;:::i;:::-;;;;;;;;26434:537;;;;:::o;4814:173::-;4870:16;4889:6;;;;;;;;;;;4870:25;;4915:8;4906:6;;:17;;;;;;;;;;;;;;;;;;4970:8;4939:40;;4960:8;4939:40;;;;;;;;;;;;4859:128;4814:173;:::o;31093:104::-;31162:27;31172:2;31176:8;31162:27;;;;;;;;;;;;:9;:27::i;:::-;31093:104;;:::o;36655:804::-;36810:4;36831:15;:2;:13;;;:15::i;:::-;36827:625;;;36883:2;36867:36;;;36904:12;:10;:12::i;:::-;36918:4;36924:7;36933:5;36867:72;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;36863:534;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;37130:1;37113:6;:13;:18;37109:273;;;37156:61;;;;;;;;;;:::i;:::-;;;;;;;;37109:273;37332:6;37326:13;37317:6;37313:2;37309:15;37302:38;36863:534;37000:45;;;36990:55;;;:6;:55;;;;36983:62;;;;;36827:625;37436:4;37429:11;;36655:804;;;;;;;:::o;28155:95::-;28206:13;28239:3;28232:10;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;28155:95;:::o;289:723::-;345:13;575:1;566:5;:10;562:53;;;593:10;;;;;;;;;;;;;;;;;;;;;562:53;625:12;640:5;625:20;;656:14;681:78;696:1;688:4;:9;681:78;;714:8;;;;;:::i;:::-;;;;745:2;737:10;;;;;:::i;:::-;;;681:78;;;769:19;801:6;791:17;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;769:39;;819:154;835:1;826:5;:10;819:154;;863:1;853:11;;;;;:::i;:::-;;;930:2;922:5;:10;;;;:::i;:::-;909:2;:24;;;;:::i;:::-;896:39;;879:6;886;879:14;;;;;;;;:::i;:::-;;;;;:56;;;;;;;;;;;959:2;950:11;;;;;:::i;:::-;;;819:154;;;997:6;983:21;;;;;289:723;;;;:::o;37947:159::-;;;;;:::o;38518:158::-;;;;;:::o;31560:163::-;31683:32;31689:2;31693:8;31703:5;31710:4;31683:5;:32::i;:::-;31560:163;;;:::o;5675:387::-;5735:4;5943:12;6010:7;5998:20;5990:28;;6053:1;6046:4;:8;6039:15;;;5675:387;;;:::o;31982:1538::-;32121:20;32144:12;;32121:35;;32189:1;32175:16;;:2;:16;;;;32167:62;;;;;;;;;;;;:::i;:::-;;;;;;;;;32260:1;32248:8;:13;;32240:66;;;;;;;;;;;;:::i;:::-;;;;;;;;;32319:61;32349:1;32353:2;32357:12;32371:8;32319:21;:61::i;:::-;32694:8;32658:12;:16;32671:2;32658:16;;;;;;;;;;;;;;;:24;;;:45;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;32759:8;32718:12;:16;32731:2;32718:16;;;;;;;;;;;;;;;:29;;;:50;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;32818:2;32785:11;:25;32797:12;32785:25;;;;;;;;;;;:30;;;:35;;;;;;;;;;;;;;;;;;32885:15;32835:11;:25;32847:12;32835:25;;;;;;;;;;;:40;;;:66;;;;;;;;;;;;;;;;;;32918:20;32941:12;32918:35;;32975:9;32970:415;32990:8;32986:1;:12;32970:415;;;33054:12;33050:2;33029:38;;33046:1;33029:38;;;;;;;;;;;;33090:4;33086:249;;;33153:59;33184:1;33188:2;33192:12;33206:5;33153:22;:59::i;:::-;33119:196;;;;;;;;;;;;:::i;:::-;;;;;;;;;33086:249;33355:14;;;;;;;33000:3;;;;;;;32970:415;;;;33416:12;33401;:27;;;;32633:807;33452:60;33481:1;33485:2;33489:12;33503:8;33452:20;:60::i;:::-;32110:1410;31982:1538;;;;:::o;-1:-1:-1:-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;;;;;;;;;;;;;;;;;:::o;:::-;;;;;;;;;;;;;;;;;;;;;:::o;7:75:1:-;40:6;73:2;67:9;57:19;;7:75;:::o;88:117::-;197:1;194;187:12;211:117;320:1;317;310:12;334:149;370:7;410:66;403:5;399:78;388:89;;334:149;;;:::o;489:120::-;561:23;578:5;561:23;:::i;:::-;554:5;551:34;541:62;;599:1;596;589:12;541:62;489:120;:::o;615:137::-;660:5;698:6;685:20;676:29;;714:32;740:5;714:32;:::i;:::-;615:137;;;;:::o;758:327::-;816:6;865:2;853:9;844:7;840:23;836:32;833:119;;;871:79;;:::i;:::-;833:119;991:1;1016:52;1060:7;1051:6;1040:9;1036:22;1016:52;:::i;:::-;1006:62;;962:116;758:327;;;;:::o;1091:90::-;1125:7;1168:5;1161:13;1154:21;1143:32;;1091:90;;;:::o;1187:109::-;1268:21;1283:5;1268:21;:::i;:::-;1263:3;1256:34;1187:109;;:::o;1302:210::-;1389:4;1427:2;1416:9;1412:18;1404:26;;1440:65;1502:1;1491:9;1487:17;1478:6;1440:65;:::i;:::-;1302:210;;;;:::o;1518:99::-;1570:6;1604:5;1598:12;1588:22;;1518:99;;;:::o;1623:169::-;1707:11;1741:6;1736:3;1729:19;1781:4;1776:3;1772:14;1757:29;;1623:169;;;;:::o;1798:307::-;1866:1;1876:113;1890:6;1887:1;1884:13;1876:113;;;1975:1;1970:3;1966:11;1960:18;1956:1;1951:3;1947:11;1940:39;1912:2;1909:1;1905:10;1900:15;;1876:113;;;2007:6;2004:1;2001:13;1998:101;;;2087:1;2078:6;2073:3;2069:16;2062:27;1998:101;1847:258;1798:307;;;:::o;2111:102::-;2152:6;2203:2;2199:7;2194:2;2187:5;2183:14;2179:28;2169:38;;2111:102;;;:::o;2219:364::-;2307:3;2335:39;2368:5;2335:39;:::i;:::-;2390:71;2454:6;2449:3;2390:71;:::i;:::-;2383:78;;2470:52;2515:6;2510:3;2503:4;2496:5;2492:16;2470:52;:::i;:::-;2547:29;2569:6;2547:29;:::i;:::-;2542:3;2538:39;2531:46;;2311:272;2219:364;;;;:::o;2589:313::-;2702:4;2740:2;2729:9;2725:18;2717:26;;2789:9;2783:4;2779:20;2775:1;2764:9;2760:17;2753:47;2817:78;2890:4;2881:6;2817:78;:::i;:::-;2809:86;;2589:313;;;;:::o;2908:77::-;2945:7;2974:5;2963:16;;2908:77;;;:::o;2991:122::-;3064:24;3082:5;3064:24;:::i;:::-;3057:5;3054:35;3044:63;;3103:1;3100;3093:12;3044:63;2991:122;:::o;3119:139::-;3165:5;3203:6;3190:20;3181:29;;3219:33;3246:5;3219:33;:::i;:::-;3119:139;;;;:::o;3264:329::-;3323:6;3372:2;3360:9;3351:7;3347:23;3343:32;3340:119;;;3378:79;;:::i;:::-;3340:119;3498:1;3523:53;3568:7;3559:6;3548:9;3544:22;3523:53;:::i;:::-;3513:63;;3469:117;3264:329;;;;:::o;3599:126::-;3636:7;3676:42;3669:5;3665:54;3654:65;;3599:126;;;:::o;3731:96::-;3768:7;3797:24;3815:5;3797:24;:::i;:::-;3786:35;;3731:96;;;:::o;3833:118::-;3920:24;3938:5;3920:24;:::i;:::-;3915:3;3908:37;3833:118;;:::o;3957:222::-;4050:4;4088:2;4077:9;4073:18;4065:26;;4101:71;4169:1;4158:9;4154:17;4145:6;4101:71;:::i;:::-;3957:222;;;;:::o;4185:122::-;4258:24;4276:5;4258:24;:::i;:::-;4251:5;4248:35;4238:63;;4297:1;4294;4287:12;4238:63;4185:122;:::o;4313:139::-;4359:5;4397:6;4384:20;4375:29;;4413:33;4440:5;4413:33;:::i;:::-;4313:139;;;;:::o;4458:474::-;4526:6;4534;4583:2;4571:9;4562:7;4558:23;4554:32;4551:119;;;4589:79;;:::i;:::-;4551:119;4709:1;4734:53;4779:7;4770:6;4759:9;4755:22;4734:53;:::i;:::-;4724:63;;4680:117;4836:2;4862:53;4907:7;4898:6;4887:9;4883:22;4862:53;:::i;:::-;4852:63;;4807:118;4458:474;;;;;:::o;4938:118::-;5025:24;5043:5;5025:24;:::i;:::-;5020:3;5013:37;4938:118;;:::o;5062:222::-;5155:4;5193:2;5182:9;5178:18;5170:26;;5206:71;5274:1;5263:9;5259:17;5250:6;5206:71;:::i;:::-;5062:222;;;;:::o;5290:418::-;5427:4;5465:2;5454:9;5450:18;5442:26;;5478:65;5540:1;5529:9;5525:17;5516:6;5478:65;:::i;:::-;5553:66;5615:2;5604:9;5600:18;5591:6;5553:66;:::i;:::-;5629:72;5697:2;5686:9;5682:18;5673:6;5629:72;:::i;:::-;5290:418;;;;;;:::o;5714:619::-;5791:6;5799;5807;5856:2;5844:9;5835:7;5831:23;5827:32;5824:119;;;5862:79;;:::i;:::-;5824:119;5982:1;6007:53;6052:7;6043:6;6032:9;6028:22;6007:53;:::i;:::-;5997:63;;5953:117;6109:2;6135:53;6180:7;6171:6;6160:9;6156:22;6135:53;:::i;:::-;6125:63;;6080:118;6237:2;6263:53;6308:7;6299:6;6288:9;6284:22;6263:53;:::i;:::-;6253:63;;6208:118;5714:619;;;;;:::o;6339:117::-;6448:1;6445;6438:12;6462:117;6571:1;6568;6561:12;6585:117;6694:1;6691;6684:12;6722:553;6780:8;6790:6;6840:3;6833:4;6825:6;6821:17;6817:27;6807:122;;6848:79;;:::i;:::-;6807:122;6961:6;6948:20;6938:30;;6991:18;6983:6;6980:30;6977:117;;;7013:79;;:::i;:::-;6977:117;7127:4;7119:6;7115:17;7103:29;;7181:3;7173:4;7165:6;7161:17;7151:8;7147:32;7144:41;7141:128;;;7188:79;;:::i;:::-;7141:128;6722:553;;;;;:::o;7281:529::-;7352:6;7360;7409:2;7397:9;7388:7;7384:23;7380:32;7377:119;;;7415:79;;:::i;:::-;7377:119;7563:1;7552:9;7548:17;7535:31;7593:18;7585:6;7582:30;7579:117;;;7615:79;;:::i;:::-;7579:117;7728:65;7785:7;7776:6;7765:9;7761:22;7728:65;:::i;:::-;7710:83;;;;7506:297;7281:529;;;;;:::o;7816:329::-;7875:6;7924:2;7912:9;7903:7;7899:23;7895:32;7892:119;;;7930:79;;:::i;:::-;7892:119;8050:1;8075:53;8120:7;8111:6;8100:9;8096:22;8075:53;:::i;:::-;8065:63;;8021:117;7816:329;;;;:::o;8151:116::-;8221:21;8236:5;8221:21;:::i;:::-;8214:5;8211:32;8201:60;;8257:1;8254;8247:12;8201:60;8151:116;:::o;8273:133::-;8316:5;8354:6;8341:20;8332:29;;8370:30;8394:5;8370:30;:::i;:::-;8273:133;;;;:::o;8412:468::-;8477:6;8485;8534:2;8522:9;8513:7;8509:23;8505:32;8502:119;;;8540:79;;:::i;:::-;8502:119;8660:1;8685:53;8730:7;8721:6;8710:9;8706:22;8685:53;:::i;:::-;8675:63;;8631:117;8787:2;8813:50;8855:7;8846:6;8835:9;8831:22;8813:50;:::i;:::-;8803:60;;8758:115;8412:468;;;;;:::o;8886:117::-;8995:1;8992;8985:12;9009:180;9057:77;9054:1;9047:88;9154:4;9151:1;9144:15;9178:4;9175:1;9168:15;9195:281;9278:27;9300:4;9278:27;:::i;:::-;9270:6;9266:40;9408:6;9396:10;9393:22;9372:18;9360:10;9357:34;9354:62;9351:88;;;9419:18;;:::i;:::-;9351:88;9459:10;9455:2;9448:22;9238:238;9195:281;;:::o;9482:129::-;9516:6;9543:20;;:::i;:::-;9533:30;;9572:33;9600:4;9592:6;9572:33;:::i;:::-;9482:129;;;:::o;9617:307::-;9678:4;9768:18;9760:6;9757:30;9754:56;;;9790:18;;:::i;:::-;9754:56;9828:29;9850:6;9828:29;:::i;:::-;9820:37;;9912:4;9906;9902:15;9894:23;;9617:307;;;:::o;9930:154::-;10014:6;10009:3;10004;9991:30;10076:1;10067:6;10062:3;10058:16;10051:27;9930:154;;;:::o;10090:410::-;10167:5;10192:65;10208:48;10249:6;10208:48;:::i;:::-;10192:65;:::i;:::-;10183:74;;10280:6;10273:5;10266:21;10318:4;10311:5;10307:16;10356:3;10347:6;10342:3;10338:16;10335:25;10332:112;;;10363:79;;:::i;:::-;10332:112;10453:41;10487:6;10482:3;10477;10453:41;:::i;:::-;10173:327;10090:410;;;;;:::o;10519:338::-;10574:5;10623:3;10616:4;10608:6;10604:17;10600:27;10590:122;;10631:79;;:::i;:::-;10590:122;10748:6;10735:20;10773:78;10847:3;10839:6;10832:4;10824:6;10820:17;10773:78;:::i;:::-;10764:87;;10580:277;10519:338;;;;:::o;10863:943::-;10958:6;10966;10974;10982;11031:3;11019:9;11010:7;11006:23;11002:33;10999:120;;;11038:79;;:::i;:::-;10999:120;11158:1;11183:53;11228:7;11219:6;11208:9;11204:22;11183:53;:::i;:::-;11173:63;;11129:117;11285:2;11311:53;11356:7;11347:6;11336:9;11332:22;11311:53;:::i;:::-;11301:63;;11256:118;11413:2;11439:53;11484:7;11475:6;11464:9;11460:22;11439:53;:::i;:::-;11429:63;;11384:118;11569:2;11558:9;11554:18;11541:32;11600:18;11592:6;11589:30;11586:117;;;11622:79;;:::i;:::-;11586:117;11727:62;11781:7;11772:6;11761:9;11757:22;11727:62;:::i;:::-;11717:72;;11512:287;10863:943;;;;;;;:::o;11812:474::-;11880:6;11888;11937:2;11925:9;11916:7;11912:23;11908:32;11905:119;;;11943:79;;:::i;:::-;11905:119;12063:1;12088:53;12133:7;12124:6;12113:9;12109:22;12088:53;:::i;:::-;12078:63;;12034:117;12190:2;12216:53;12261:7;12252:6;12241:9;12237:22;12216:53;:::i;:::-;12206:63;;12161:118;11812:474;;;;;:::o;12292:180::-;12340:77;12337:1;12330:88;12437:4;12434:1;12427:15;12461:4;12458:1;12451:15;12478:320;12522:6;12559:1;12553:4;12549:12;12539:22;;12606:1;12600:4;12596:12;12627:18;12617:81;;12683:4;12675:6;12671:17;12661:27;;12617:81;12745:2;12737:6;12734:14;12714:18;12711:38;12708:84;;;12764:18;;:::i;:::-;12708:84;12529:269;12478:320;;;:::o;12804:232::-;12944:34;12940:1;12932:6;12928:14;12921:58;13013:15;13008:2;13000:6;12996:15;12989:40;12804:232;:::o;13042:366::-;13184:3;13205:67;13269:2;13264:3;13205:67;:::i;:::-;13198:74;;13281:93;13370:3;13281:93;:::i;:::-;13399:2;13394:3;13390:12;13383:19;;13042:366;;;:::o;13414:419::-;13580:4;13618:2;13607:9;13603:18;13595:26;;13667:9;13661:4;13657:20;13653:1;13642:9;13638:17;13631:47;13695:131;13821:4;13695:131;:::i;:::-;13687:139;;13414:419;;;:::o;13839:221::-;13979:34;13975:1;13967:6;13963:14;13956:58;14048:4;14043:2;14035:6;14031:15;14024:29;13839:221;:::o;14066:366::-;14208:3;14229:67;14293:2;14288:3;14229:67;:::i;:::-;14222:74;;14305:93;14394:3;14305:93;:::i;:::-;14423:2;14418:3;14414:12;14407:19;;14066:366;;;:::o;14438:419::-;14604:4;14642:2;14631:9;14627:18;14619:26;;14691:9;14685:4;14681:20;14677:1;14666:9;14662:17;14655:47;14719:131;14845:4;14719:131;:::i;:::-;14711:139;;14438:419;;;:::o;14863:244::-;15003:34;14999:1;14991:6;14987:14;14980:58;15072:27;15067:2;15059:6;15055:15;15048:52;14863:244;:::o;15113:366::-;15255:3;15276:67;15340:2;15335:3;15276:67;:::i;:::-;15269:74;;15352:93;15441:3;15352:93;:::i;:::-;15470:2;15465:3;15461:12;15454:19;;15113:366;;;:::o;15485:419::-;15651:4;15689:2;15678:9;15674:18;15666:26;;15738:9;15732:4;15728:20;15724:1;15713:9;15709:17;15702:47;15766:131;15892:4;15766:131;:::i;:::-;15758:139;;15485:419;;;:::o;15910:180::-;15958:77;15955:1;15948:88;16055:4;16052:1;16045:15;16079:4;16076:1;16069:15;16096:191;16136:4;16156:20;16174:1;16156:20;:::i;:::-;16151:25;;16190:20;16208:1;16190:20;:::i;:::-;16185:25;;16229:1;16226;16223:8;16220:34;;;16234:18;;:::i;:::-;16220:34;16279:1;16276;16272:9;16264:17;;16096:191;;;;:::o;16293:163::-;16433:15;16429:1;16421:6;16417:14;16410:39;16293:163;:::o;16462:366::-;16604:3;16625:67;16689:2;16684:3;16625:67;:::i;:::-;16618:74;;16701:93;16790:3;16701:93;:::i;:::-;16819:2;16814:3;16810:12;16803:19;;16462:366;;;:::o;16834:419::-;17000:4;17038:2;17027:9;17023:18;17015:26;;17087:9;17081:4;17077:20;17073:1;17062:9;17058:17;17051:47;17115:131;17241:4;17115:131;:::i;:::-;17107:139;;16834:419;;;:::o;17259:221::-;17399:34;17395:1;17387:6;17383:14;17376:58;17468:4;17463:2;17455:6;17451:15;17444:29;17259:221;:::o;17486:366::-;17628:3;17649:67;17713:2;17708:3;17649:67;:::i;:::-;17642:74;;17725:93;17814:3;17725:93;:::i;:::-;17843:2;17838:3;17834:12;17827:19;;17486:366;;;:::o;17858:419::-;18024:4;18062:2;18051:9;18047:18;18039:26;;18111:9;18105:4;18101:20;18097:1;18086:9;18082:17;18075:47;18139:131;18265:4;18139:131;:::i;:::-;18131:139;;17858:419;;;:::o;18283:233::-;18423:34;18419:1;18411:6;18407:14;18400:58;18492:16;18487:2;18479:6;18475:15;18468:41;18283:233;:::o;18522:366::-;18664:3;18685:67;18749:2;18744:3;18685:67;:::i;:::-;18678:74;;18761:93;18850:3;18761:93;:::i;:::-;18879:2;18874:3;18870:12;18863:19;;18522:366;;;:::o;18894:419::-;19060:4;19098:2;19087:9;19083:18;19075:26;;19147:9;19141:4;19137:20;19133:1;19122:9;19118:17;19111:47;19175:131;19301:4;19175:131;:::i;:::-;19167:139;;18894:419;;;:::o;19319:182::-;19459:34;19455:1;19447:6;19443:14;19436:58;19319:182;:::o;19507:366::-;19649:3;19670:67;19734:2;19729:3;19670:67;:::i;:::-;19663:74;;19746:93;19835:3;19746:93;:::i;:::-;19864:2;19859:3;19855:12;19848:19;;19507:366;;;:::o;19879:419::-;20045:4;20083:2;20072:9;20068:18;20060:26;;20132:9;20126:4;20122:20;20118:1;20107:9;20103:17;20096:47;20160:131;20286:4;20160:131;:::i;:::-;20152:139;;19879:419;;;:::o;20304:222::-;20444:34;20440:1;20432:6;20428:14;20421:58;20513:5;20508:2;20500:6;20496:15;20489:30;20304:222;:::o;20532:366::-;20674:3;20695:67;20759:2;20754:3;20695:67;:::i;:::-;20688:74;;20771:93;20860:3;20771:93;:::i;:::-;20889:2;20884:3;20880:12;20873:19;;20532:366;;;:::o;20904:419::-;21070:4;21108:2;21097:9;21093:18;21085:26;;21157:9;21151:4;21147:20;21143:1;21132:9;21128:17;21121:47;21185:131;21311:4;21185:131;:::i;:::-;21177:139;;20904:419;;;:::o;21329:230::-;21469:34;21465:1;21457:6;21453:14;21446:58;21538:13;21533:2;21525:6;21521:15;21514:38;21329:230;:::o;21565:366::-;21707:3;21728:67;21792:2;21787:3;21728:67;:::i;:::-;21721:74;;21804:93;21893:3;21804:93;:::i;:::-;21922:2;21917:3;21913:12;21906:19;;21565:366;;;:::o;21937:419::-;22103:4;22141:2;22130:9;22126:18;22118:26;;22190:9;22184:4;22180:20;22176:1;22165:9;22161:17;22154:47;22218:131;22344:4;22218:131;:::i;:::-;22210:139;;21937:419;;;:::o;22362:166::-;22502:18;22498:1;22490:6;22486:14;22479:42;22362:166;:::o;22534:366::-;22676:3;22697:67;22761:2;22756:3;22697:67;:::i;:::-;22690:74;;22773:93;22862:3;22773:93;:::i;:::-;22891:2;22886:3;22882:12;22875:19;;22534:366;;;:::o;22906:419::-;23072:4;23110:2;23099:9;23095:18;23087:26;;23159:9;23153:4;23149:20;23145:1;23134:9;23130:17;23123:47;23187:131;23313:4;23187:131;:::i;:::-;23179:139;;22906:419;;;:::o;23331:169::-;23471:21;23467:1;23459:6;23455:14;23448:45;23331:169;:::o;23506:366::-;23648:3;23669:67;23733:2;23728:3;23669:67;:::i;:::-;23662:74;;23745:93;23834:3;23745:93;:::i;:::-;23863:2;23858:3;23854:12;23847:19;;23506:366;;;:::o;23878:419::-;24044:4;24082:2;24071:9;24067:18;24059:26;;24131:9;24125:4;24121:20;24117:1;24106:9;24102:17;24095:47;24159:131;24285:4;24159:131;:::i;:::-;24151:139;;23878:419;;;:::o;24303:305::-;24343:3;24362:20;24380:1;24362:20;:::i;:::-;24357:25;;24396:20;24414:1;24396:20;:::i;:::-;24391:25;;24550:1;24482:66;24478:74;24475:1;24472:81;24469:107;;;24556:18;;:::i;:::-;24469:107;24600:1;24597;24593:9;24586:16;;24303:305;;;;:::o;24614:173::-;24754:25;24750:1;24742:6;24738:14;24731:49;24614:173;:::o;24793:366::-;24935:3;24956:67;25020:2;25015:3;24956:67;:::i;:::-;24949:74;;25032:93;25121:3;25032:93;:::i;:::-;25150:2;25145:3;25141:12;25134:19;;24793:366;;;:::o;25165:419::-;25331:4;25369:2;25358:9;25354:18;25346:26;;25418:9;25412:4;25408:20;25404:1;25393:9;25389:17;25382:47;25446:131;25572:4;25446:131;:::i;:::-;25438:139;;25165:419;;;:::o;25590:348::-;25630:7;25653:20;25671:1;25653:20;:::i;:::-;25648:25;;25687:20;25705:1;25687:20;:::i;:::-;25682:25;;25875:1;25807:66;25803:74;25800:1;25797:81;25792:1;25785:9;25778:17;25774:105;25771:131;;;25882:18;;:::i;:::-;25771:131;25930:1;25927;25923:9;25912:20;;25590:348;;;;:::o;25944:167::-;26084:19;26080:1;26072:6;26068:14;26061:43;25944:167;:::o;26117:366::-;26259:3;26280:67;26344:2;26339:3;26280:67;:::i;:::-;26273:74;;26356:93;26445:3;26356:93;:::i;:::-;26474:2;26469:3;26465:12;26458:19;;26117:366;;;:::o;26489:419::-;26655:4;26693:2;26682:9;26678:18;26670:26;;26742:9;26736:4;26732:20;26728:1;26717:9;26713:17;26706:47;26770:131;26896:4;26770:131;:::i;:::-;26762:139;;26489:419;;;:::o;26914:167::-;27054:19;27050:1;27042:6;27038:14;27031:43;26914:167;:::o;27087:366::-;27229:3;27250:67;27314:2;27309:3;27250:67;:::i;:::-;27243:74;;27326:93;27415:3;27326:93;:::i;:::-;27444:2;27439:3;27435:12;27428:19;;27087:366;;;:::o;27459:419::-;27625:4;27663:2;27652:9;27648:18;27640:26;;27712:9;27706:4;27702:20;27698:1;27687:9;27683:17;27676:47;27740:131;27866:4;27740:131;:::i;:::-;27732:139;;27459:419;;;:::o;27884:168::-;28024:20;28020:1;28012:6;28008:14;28001:44;27884:168;:::o;28058:366::-;28200:3;28221:67;28285:2;28280:3;28221:67;:::i;:::-;28214:74;;28297:93;28386:3;28297:93;:::i;:::-;28415:2;28410:3;28406:12;28399:19;;28058:366;;;:::o;28430:419::-;28596:4;28634:2;28623:9;28619:18;28611:26;;28683:9;28677:4;28673:20;28669:1;28658:9;28654:17;28647:47;28711:131;28837:4;28711:131;:::i;:::-;28703:139;;28430:419;;;:::o;28855:176::-;28995:28;28991:1;28983:6;28979:14;28972:52;28855:176;:::o;29037:366::-;29179:3;29200:67;29264:2;29259:3;29200:67;:::i;:::-;29193:74;;29276:93;29365:3;29276:93;:::i;:::-;29394:2;29389:3;29385:12;29378:19;;29037:366;;;:::o;29409:419::-;29575:4;29613:2;29602:9;29598:18;29590:26;;29662:9;29656:4;29652:20;29648:1;29637:9;29633:17;29626:47;29690:131;29816:4;29690:131;:::i;:::-;29682:139;;29409:419;;;:::o;29834:238::-;29974:34;29970:1;29962:6;29958:14;29951:58;30043:21;30038:2;30030:6;30026:15;30019:46;29834:238;:::o;30078:366::-;30220:3;30241:67;30305:2;30300:3;30241:67;:::i;:::-;30234:74;;30317:93;30406:3;30317:93;:::i;:::-;30435:2;30430:3;30426:12;30419:19;;30078:366;;;:::o;30450:419::-;30616:4;30654:2;30643:9;30639:18;30631:26;;30703:9;30697:4;30693:20;30689:1;30678:9;30674:17;30667:47;30731:131;30857:4;30731:131;:::i;:::-;30723:139;;30450:419;;;:::o;30875:234::-;31015:34;31011:1;31003:6;30999:14;30992:58;31084:17;31079:2;31071:6;31067:15;31060:42;30875:234;:::o;31115:366::-;31257:3;31278:67;31342:2;31337:3;31278:67;:::i;:::-;31271:74;;31354:93;31443:3;31354:93;:::i;:::-;31472:2;31467:3;31463:12;31456:19;;31115:366;;;:::o;31487:419::-;31653:4;31691:2;31680:9;31676:18;31668:26;;31740:9;31734:4;31730:20;31726:1;31715:9;31711:17;31704:47;31768:131;31894:4;31768:131;:::i;:::-;31760:139;;31487:419;;;:::o;31912:148::-;32014:11;32051:3;32036:18;;31912:148;;;;:::o;32066:377::-;32172:3;32200:39;32233:5;32200:39;:::i;:::-;32255:89;32337:6;32332:3;32255:89;:::i;:::-;32248:96;;32353:52;32398:6;32393:3;32386:4;32379:5;32375:16;32353:52;:::i;:::-;32430:6;32425:3;32421:16;32414:23;;32176:267;32066:377;;;;:::o;32449:114::-;;:::o;32569:400::-;32729:3;32750:84;32832:1;32827:3;32750:84;:::i;:::-;32743:91;;32843:93;32932:3;32843:93;:::i;:::-;32961:1;32956:3;32952:11;32945:18;;32569:400;;;:::o;32975:701::-;33256:3;33278:95;33369:3;33360:6;33278:95;:::i;:::-;33271:102;;33390:95;33481:3;33472:6;33390:95;:::i;:::-;33383:102;;33502:148;33646:3;33502:148;:::i;:::-;33495:155;;33667:3;33660:10;;32975:701;;;;;:::o;33682:162::-;33822:14;33818:1;33810:6;33806:14;33799:38;33682:162;:::o;33850:366::-;33992:3;34013:67;34077:2;34072:3;34013:67;:::i;:::-;34006:74;;34089:93;34178:3;34089:93;:::i;:::-;34207:2;34202:3;34198:12;34191:19;;33850:366;;;:::o;34222:419::-;34388:4;34426:2;34415:9;34411:18;34403:26;;34475:9;34469:4;34465:20;34461:1;34450:9;34446:17;34439:47;34503:131;34629:4;34503:131;:::i;:::-;34495:139;;34222:419;;;:::o;34647:225::-;34787:34;34783:1;34775:6;34771:14;34764:58;34856:8;34851:2;34843:6;34839:15;34832:33;34647:225;:::o;34878:366::-;35020:3;35041:67;35105:2;35100:3;35041:67;:::i;:::-;35034:74;;35117:93;35206:3;35117:93;:::i;:::-;35235:2;35230:3;35226:12;35219:19;;34878:366;;;:::o;35250:419::-;35416:4;35454:2;35443:9;35439:18;35431:26;;35503:9;35497:4;35493:20;35489:1;35478:9;35474:17;35467:47;35531:131;35657:4;35531:131;:::i;:::-;35523:139;;35250:419;;;:::o;35675:237::-;35815:34;35811:1;35803:6;35799:14;35792:58;35884:20;35879:2;35871:6;35867:15;35860:45;35675:237;:::o;35918:366::-;36060:3;36081:67;36145:2;36140:3;36081:67;:::i;:::-;36074:74;;36157:93;36246:3;36157:93;:::i;:::-;36275:2;36270:3;36266:12;36259:19;;35918:366;;;:::o;36290:419::-;36456:4;36494:2;36483:9;36479:18;36471:26;;36543:9;36537:4;36533:20;36529:1;36518:9;36514:17;36507:47;36571:131;36697:4;36571:131;:::i;:::-;36563:139;;36290:419;;;:::o;36715:225::-;36855:34;36851:1;36843:6;36839:14;36832:58;36924:8;36919:2;36911:6;36907:15;36900:33;36715:225;:::o;36946:366::-;37088:3;37109:67;37173:2;37168:3;37109:67;:::i;:::-;37102:74;;37185:93;37274:3;37185:93;:::i;:::-;37303:2;37298:3;37294:12;37287:19;;36946:366;;;:::o;37318:419::-;37484:4;37522:2;37511:9;37507:18;37499:26;;37571:9;37565:4;37561:20;37557:1;37546:9;37542:17;37535:47;37599:131;37725:4;37599:131;:::i;:::-;37591:139;;37318:419;;;:::o;37743:224::-;37883:34;37879:1;37871:6;37867:14;37860:58;37952:7;37947:2;37939:6;37935:15;37928:32;37743:224;:::o;37973:366::-;38115:3;38136:67;38200:2;38195:3;38136:67;:::i;:::-;38129:74;;38212:93;38301:3;38212:93;:::i;:::-;38330:2;38325:3;38321:12;38314:19;;37973:366;;;:::o;38345:419::-;38511:4;38549:2;38538:9;38534:18;38526:26;;38598:9;38592:4;38588:20;38584:1;38573:9;38569:17;38562:47;38626:131;38752:4;38626:131;:::i;:::-;38618:139;;38345:419;;;:::o;38770:229::-;38910:34;38906:1;38898:6;38894:14;38887:58;38979:12;38974:2;38966:6;38962:15;38955:37;38770:229;:::o;39005:366::-;39147:3;39168:67;39232:2;39227:3;39168:67;:::i;:::-;39161:74;;39244:93;39333:3;39244:93;:::i;:::-;39362:2;39357:3;39353:12;39346:19;;39005:366;;;:::o;39377:419::-;39543:4;39581:2;39570:9;39566:18;39558:26;;39630:9;39624:4;39620:20;39616:1;39605:9;39601:17;39594:47;39658:131;39784:4;39658:131;:::i;:::-;39650:139;;39377:419;;;:::o;39802:234::-;39942:34;39938:1;39930:6;39926:14;39919:58;40011:17;40006:2;39998:6;39994:15;39987:42;39802:234;:::o;40042:366::-;40184:3;40205:67;40269:2;40264:3;40205:67;:::i;:::-;40198:74;;40281:93;40370:3;40281:93;:::i;:::-;40399:2;40394:3;40390:12;40383:19;;40042:366;;;:::o;40414:419::-;40580:4;40618:2;40607:9;40603:18;40595:26;;40667:9;40661:4;40657:20;40653:1;40642:9;40638:17;40631:47;40695:131;40821:4;40695:131;:::i;:::-;40687:139;;40414:419;;;:::o;40839:98::-;40890:6;40924:5;40918:12;40908:22;;40839:98;;;:::o;40943:168::-;41026:11;41060:6;41055:3;41048:19;41100:4;41095:3;41091:14;41076:29;;40943:168;;;;:::o;41117:360::-;41203:3;41231:38;41263:5;41231:38;:::i;:::-;41285:70;41348:6;41343:3;41285:70;:::i;:::-;41278:77;;41364:52;41409:6;41404:3;41397:4;41390:5;41386:16;41364:52;:::i;:::-;41441:29;41463:6;41441:29;:::i;:::-;41436:3;41432:39;41425:46;;41207:270;41117:360;;;;:::o;41483:640::-;41678:4;41716:3;41705:9;41701:19;41693:27;;41730:71;41798:1;41787:9;41783:17;41774:6;41730:71;:::i;:::-;41811:72;41879:2;41868:9;41864:18;41855:6;41811:72;:::i;:::-;41893;41961:2;41950:9;41946:18;41937:6;41893:72;:::i;:::-;42012:9;42006:4;42002:20;41997:2;41986:9;41982:18;41975:48;42040:76;42111:4;42102:6;42040:76;:::i;:::-;42032:84;;41483:640;;;;;;;:::o;42129:141::-;42185:5;42216:6;42210:13;42201:22;;42232:32;42258:5;42232:32;:::i;:::-;42129:141;;;;:::o;42276:349::-;42345:6;42394:2;42382:9;42373:7;42369:23;42365:32;42362:119;;;42400:79;;:::i;:::-;42362:119;42520:1;42545:63;42600:7;42591:6;42580:9;42576:22;42545:63;:::i;:::-;42535:73;;42491:127;42276:349;;;;:::o;42631:233::-;42670:3;42693:24;42711:5;42693:24;:::i;:::-;42684:33;;42739:66;42732:5;42729:77;42726:103;;;42809:18;;:::i;:::-;42726:103;42856:1;42849:5;42845:13;42838:20;;42631:233;;;:::o;42870:180::-;42918:77;42915:1;42908:88;43015:4;43012:1;43005:15;43039:4;43036:1;43029:15;43056:185;43096:1;43113:20;43131:1;43113:20;:::i;:::-;43108:25;;43147:20;43165:1;43147:20;:::i;:::-;43142:25;;43186:1;43176:35;;43191:18;;:::i;:::-;43176:35;43233:1;43230;43226:9;43221:14;;43056:185;;;;:::o;43247:176::-;43279:1;43296:20;43314:1;43296:20;:::i;:::-;43291:25;;43330:20;43348:1;43330:20;:::i;:::-;43325:25;;43369:1;43359:35;;43374:18;;:::i;:::-;43359:35;43415:1;43412;43408:9;43403:14;;43247:176;;;;:::o;43429:180::-;43477:77;43474:1;43467:88;43574:4;43571:1;43564:15;43598:4;43595:1;43588:15;43615:220;43755:34;43751:1;43743:6;43739:14;43732:58;43824:3;43819:2;43811:6;43807:15;43800:28;43615:220;:::o;43841:366::-;43983:3;44004:67;44068:2;44063:3;44004:67;:::i;:::-;43997:74;;44080:93;44169:3;44080:93;:::i;:::-;44198:2;44193:3;44189:12;44182:19;;43841:366;;;:::o;44213:419::-;44379:4;44417:2;44406:9;44402:18;44394:26;;44466:9;44460:4;44456:20;44452:1;44441:9;44437:17;44430:47;44494:131;44620:4;44494:131;:::i;:::-;44486:139;;44213:419;;;:::o;44638:227::-;44778:34;44774:1;44766:6;44762:14;44755:58;44847:10;44842:2;44834:6;44830:15;44823:35;44638:227;:::o;44871:366::-;45013:3;45034:67;45098:2;45093:3;45034:67;:::i;:::-;45027:74;;45110:93;45199:3;45110:93;:::i;:::-;45228:2;45223:3;45219:12;45212:19;;44871:366;;;:::o;45243:419::-;45409:4;45447:2;45436:9;45432:18;45424:26;;45496:9;45490:4;45486:20;45482:1;45471:9;45467:17;45460:47;45524:131;45650:4;45524:131;:::i;:::-;45516:139;;45243:419;;;:::o

Swarm Source

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