ETH Price: $3,429.25 (+5.33%)
Gas: 11 Gwei

Token

EtherTitanz (ETZ)
 

Overview

Max Total Supply

6,001 ETZ

Holders

2,820

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A
Balance
2 ETZ
0x173b21d38c97f47822c06a2bc7e60442ed898af9
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:
EtherTitanz

Compiler Version
v0.8.7+commit.e28d00a7

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion, None license

Contract Source Code (Solidity)

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

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

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

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

// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (utils/Context.sol)



pragma solidity ^0.8.0;

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

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


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


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



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

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

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

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

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

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

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

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


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


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



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

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

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

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

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


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


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



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


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


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



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

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

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

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

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

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

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

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

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

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

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

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


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


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



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


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


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



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

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

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


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


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



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

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

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


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


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



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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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


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


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



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


// File contracts/ERC721A.sol


// Creator: Chiru Labs


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

    struct TokenOwnership {
        address addr;
        uint64 startTimestamp;
    }

    struct AddressData {
        uint128 balance;
        uint128 numberMinted;
    }

    uint256 internal currentIndex = 0;

    // Token name
    string private _name;

    // Token symbol
    string private _symbol;

    

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

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

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

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

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

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

          function _startTokenId() internal view virtual returns (uint256) {
        return 0;
    }


      function _totalMinted() internal view returns (uint256) {
        // Counter underflow is impossible as _currentIndex does not decrement,
        // and it is initialized to _startTokenId()
        unchecked {
            return currentIndex - _startTokenId();
        }
    }

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

    /**
     * @dev See {IERC721Enumerable-tokenOfOwnerByIndex}.
     * This read function is O(totalSupply). If calling from a separate contract, be sure to test gas first.
     * It may also degrade with extremely large collection sizes (e.g >> 10000), test for your use case.
     */
    function tokenOfOwnerByIndex(address owner, uint256 index) public view override returns (uint256) {
        require(index < balanceOf(owner), 'ERC721A: owner index out of bounds');
        uint256 numMintedSoFar = totalSupply();
        uint256 tokenIdsIdx = 0;
        address currOwnershipAddr = address(0);
        for (uint256 i = 0; i < numMintedSoFar; i++) {
            TokenOwnership memory ownership = _ownerships[i];
            if (ownership.addr != address(0)) {
                currOwnershipAddr = ownership.addr;
            }
            if (currOwnershipAddr == owner) {
                if (tokenIdsIdx == index) {
                    return i;
                }
                tokenIdsIdx++;
            }
        }
        revert('ERC721A: unable to get token of owner by index');
    }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

        _approve(to, tokenId, owner);
    }

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

        return _tokenApprovals[tokenId];
    }

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

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

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

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

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

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

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

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

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

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

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

        uint256 updatedIndex = startTokenId;

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

        currentIndex = updatedIndex;
        _afterTokenTransfers(address(0), to, startTokenId, quantity);
    }

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

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

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

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

        _beforeTokenTransfers(from, to, tokenId, 1);

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

        // Underflow of the sender's balance is impossible because we check for
        // ownership above and the recipient's balance can't realistically overflow.
        unchecked {
            _addressData[from].balance -= 1;
            _addressData[to].balance += 1;
        }

        _ownerships[tokenId] = TokenOwnership(to, uint64(block.timestamp));

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

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

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

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

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

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




pragma solidity ^0.8.0;


contract EtherTitanz is ERC721A, Ownable {
	using Strings for uint;

	uint public constant MINT_PRICE = 0.005 ether;
	uint public constant MAX_NFT_PER_TITAN = 20;
	uint public maxSupply = 6000;

	bool public isPaused = false;
    bool public isMetadataFinal;
    string private _baseURL;
	string public prerevealURL = '';
	mapping(address => uint) private _walletMintedCount;

	constructor()
	ERC721A('EtherTitanz', 'ETZ') {
    }

	function _baseURI() internal pure override returns (string memory) {
		return "https://skyline.mypinata.cloud/ipfs/QmPVpLrWvEqeL1hL9xmEAEv4zLikyXrKXuEfdXBvAMj1k8/";
	}



	function _startTokenId() internal pure override returns (uint) {
		return 1;
	}
  


	function contractURI() public pure returns (string memory) {
		return "https://skyline.mypinata.cloud/ipfs/QmPVpLrWvEqeL1hL9xmEAEv4zLikyXrKXuEfdXBvAMj1k8/";
	}

    function finalizeMetadata() external onlyOwner {
        isMetadataFinal = true;
    }

	function reveal(string memory url) external onlyOwner {
        require(!isMetadataFinal, "Metadata is finalized");
		_baseURL = url;
	}

    function mintedCount(address owner) external view returns (uint) {
        return _walletMintedCount[owner];
    }

	function setPause(bool value) external onlyOwner {
		isPaused = value;
	}

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

	function airdrop(address to, uint count) external onlyOwner {
		require(
			_totalMinted() + count <= maxSupply,
			'Exceeds max supply'
		);
		_safeMint(to, count);
	}

	function reduceSupply(uint newMaxSupply) external onlyOwner {
		maxSupply = newMaxSupply;
	}

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

        return bytes(_baseURI()).length > 0 
            ? string(abi.encodePacked(_baseURI(), tokenId.toString(), ".json"))
            : prerevealURL;
	}

	function mint(uint count) external payable {
		require(!isPaused, 'Sales are off');
		require(count <= MAX_NFT_PER_TITAN,'Exceeds NFT per saction limit');
		require(_totalMinted() + count <= maxSupply,'Exceeds max supply');

        //Free Mints
        uint payForCount = count;
        uint mintedSoFar = _walletMintedCount[msg.sender];
        if(mintedSoFar < 2) {
            uint remainingFreeMints = 2 - mintedSoFar;
            if(count > remainingFreeMints) {
                payForCount = count - remainingFreeMints;
            }
            else {
                payForCount = 0;
            }
        }

		require(
			msg.value >= payForCount * MINT_PRICE,
			'Ether value sent is not sufficient'
		);

		_walletMintedCount[msg.sender] += count;
		_safeMint(msg.sender, count);
	}


    function mintZero(uint count) external  onlyOwner{ 
        _safeMint(msg.sender,count);
    }

}

Contract Security Audit

Contract ABI

[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"approved","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[],"name":"MAX_NFT_PER_TITAN","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"MINT_PRICE","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"count","type":"uint256"}],"name":"airdrop","outputs":[],"stateMutability":"nonpayable","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":"contractURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"pure","type":"function"},{"inputs":[],"name":"finalizeMetadata","outputs":[],"stateMutability":"nonpayable","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":"isMetadataFinal","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"isPaused","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"count","type":"uint256"}],"name":"mint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"uint256","name":"count","type":"uint256"}],"name":"mintZero","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"mintedCount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"prerevealURL","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"newMaxSupply","type":"uint256"}],"name":"reduceSupply","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"url","type":"string"}],"name":"reveal","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"_data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"value","type":"bool"}],"name":"setPause","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"}]

6080604052600080556117706008556000600960006101000a81548160ff02191690831515021790555060405180602001604052806000815250600b908051906020019062000050929190620001f3565b503480156200005e57600080fd5b506040518060400160405280600b81526020017f4574686572546974616e7a0000000000000000000000000000000000000000008152506040518060400160405280600381526020017f45545a00000000000000000000000000000000000000000000000000000000008152508160019080519060200190620000e3929190620001f3565b508060029080519060200190620000fc929190620001f3565b5050506200011f620001136200012560201b60201c565b6200012d60201b60201c565b62000308565b600033905090565b6000600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600760006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b8280546200020190620002a3565b90600052602060002090601f01602090048101928262000225576000855562000271565b82601f106200024057805160ff191683800117855562000271565b8280016001018555821562000271579182015b828111156200027057825182559160200191906001019062000253565b5b50905062000280919062000284565b5090565b5b808211156200029f57600081600090555060010162000285565b5090565b60006002820490506001821680620002bc57607f821691505b60208210811415620002d357620002d2620002d9565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b6148ff80620003186000396000f3fe6080604052600436106102045760003560e01c80638ba4cc3c11610118578063c87b56dd116100a0578063e8a3d4851161006f578063e8a3d48514610746578063e985e9c514610771578063f2fde38b146107ae578063f4a560a5146107d7578063fddcb5ea146107ee57610204565b8063c87b56dd1461068a578063cea84237146106c7578063d5abeb01146106f0578063d82104821461071b57610204565b8063a22cb465116100e7578063a22cb465146105b9578063b187bd26146105e2578063b88d4fde1461060d578063bedb86fb14610636578063c002d23d1461065f57610204565b80638ba4cc3c1461051e5780638da5cb5b1461054757806395d89b4114610572578063a0712d681461059d57610204565b80633ccfd60b1161019b5780636352211e1161016a5780636352211e1461043957806370a0823114610476578063715018a6146104b35780637c60d65a146104ca57806380623444146104f557610204565b80633ccfd60b1461039357806342842e0e146103aa5780634c261247146103d35780634f6ccce7146103fc57610204565b80630de76de4116101d75780630de76de4146102d757806318160ddd1461030257806323b872dd1461032d5780632f745c591461035657610204565b806301ffc9a71461020957806306fdde0314610246578063081812fc14610271578063095ea7b3146102ae575b600080fd5b34801561021557600080fd5b50610230600480360381019061022b91906132da565b61082b565b60405161023d91906138d6565b60405180910390f35b34801561025257600080fd5b5061025b610975565b60405161026891906138f1565b60405180910390f35b34801561027d57600080fd5b506102986004803603810190610293919061337d565b610a07565b6040516102a5919061386f565b60405180910390f35b3480156102ba57600080fd5b506102d560048036038101906102d0919061326d565b610a8c565b005b3480156102e357600080fd5b506102ec610ba5565b6040516102f991906138d6565b60405180910390f35b34801561030e57600080fd5b50610317610bb8565b6040516103249190613c33565b60405180910390f35b34801561033957600080fd5b50610354600480360381019061034f9190613157565b610bc1565b005b34801561036257600080fd5b5061037d6004803603810190610378919061326d565b610bd1565b60405161038a9190613c33565b60405180910390f35b34801561039f57600080fd5b506103a8610dcf565b005b3480156103b657600080fd5b506103d160048036038101906103cc9190613157565b610f07565b005b3480156103df57600080fd5b506103fa60048036038101906103f59190613334565b610f27565b005b34801561040857600080fd5b50610423600480360381019061041e919061337d565b61100d565b6040516104309190613c33565b60405180910390f35b34801561044557600080fd5b50610460600480360381019061045b919061337d565b611060565b60405161046d919061386f565b60405180910390f35b34801561048257600080fd5b5061049d600480360381019061049891906130ea565b611076565b6040516104aa9190613c33565b60405180910390f35b3480156104bf57600080fd5b506104c861115f565b005b3480156104d657600080fd5b506104df6111e7565b6040516104ec9190613c33565b60405180910390f35b34801561050157600080fd5b5061051c6004803603810190610517919061337d565b6111ec565b005b34801561052a57600080fd5b506105456004803603810190610540919061326d565b611272565b005b34801561055357600080fd5b5061055c611353565b604051610569919061386f565b60405180910390f35b34801561057e57600080fd5b5061058761137d565b60405161059491906138f1565b60405180910390f35b6105b760048036038101906105b2919061337d565b61140f565b005b3480156105c557600080fd5b506105e060048036038101906105db919061322d565b611639565b005b3480156105ee57600080fd5b506105f76117ba565b60405161060491906138d6565b60405180910390f35b34801561061957600080fd5b50610634600480360381019061062f91906131aa565b6117cd565b005b34801561064257600080fd5b5061065d600480360381019061065891906132ad565b611829565b005b34801561066b57600080fd5b506106746118c2565b6040516106819190613c33565b60405180910390f35b34801561069657600080fd5b506106b160048036038101906106ac919061337d565b6118cd565b6040516106be91906138f1565b60405180910390f35b3480156106d357600080fd5b506106ee60048036038101906106e9919061337d565b6119f0565b005b3480156106fc57600080fd5b50610705611a79565b6040516107129190613c33565b60405180910390f35b34801561072757600080fd5b50610730611a7f565b60405161073d91906138f1565b60405180910390f35b34801561075257600080fd5b5061075b611b0d565b60405161076891906138f1565b60405180910390f35b34801561077d57600080fd5b5061079860048036038101906107939190613117565b611b2d565b6040516107a591906138d6565b60405180910390f35b3480156107ba57600080fd5b506107d560048036038101906107d091906130ea565b611bc1565b005b3480156107e357600080fd5b506107ec611cb9565b005b3480156107fa57600080fd5b50610815600480360381019061081091906130ea565b611d52565b6040516108229190613c33565b60405180910390f35b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614806108f657507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b8061095e57507f780e9d63000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b8061096e575061096d82611d9b565b5b9050919050565b60606001805461098490613f7a565b80601f01602080910402602001604051908101604052809291908181526020018280546109b090613f7a565b80156109fd5780601f106109d2576101008083540402835291602001916109fd565b820191906000526020600020905b8154815290600101906020018083116109e057829003601f168201915b5050505050905090565b6000610a1282611e05565b610a51576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a4890613c13565b60405180910390fd5b6005600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b6000610a9782611060565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610b08576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610aff90613b33565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16610b27611e12565b73ffffffffffffffffffffffffffffffffffffffff161480610b565750610b5581610b50611e12565b611b2d565b5b610b95576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b8c906139d3565b60405180910390fd5b610ba0838383611e1a565b505050565b600960019054906101000a900460ff1681565b60008054905090565b610bcc838383611ecc565b505050565b6000610bdc83611076565b8210610c1d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c1490613913565b60405180910390fd5b6000610c27610bb8565b905060008060005b83811015610d8d576000600360008381526020019081526020016000206040518060400160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815250509050600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff1614610d2157806000015192505b8773ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610d795786841415610d6a578195505050505050610dc9565b8380610d7590613fdd565b9450505b508080610d8590613fdd565b915050610c2f565b506040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610dc090613bf3565b60405180910390fd5b92915050565b610dd7611e12565b73ffffffffffffffffffffffffffffffffffffffff16610df5611353565b73ffffffffffffffffffffffffffffffffffffffff1614610e4b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e4290613ab3565b60405180910390fd5b60004790506000610e5a611e12565b73ffffffffffffffffffffffffffffffffffffffff1682604051610e7d9061385a565b60006040518083038185875af1925050503d8060008114610eba576040519150601f19603f3d011682016040523d82523d6000602084013e610ebf565b606091505b5050905080610f03576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610efa90613bd3565b60405180910390fd5b5050565b610f22838383604051806020016040528060008152506117cd565b505050565b610f2f611e12565b73ffffffffffffffffffffffffffffffffffffffff16610f4d611353565b73ffffffffffffffffffffffffffffffffffffffff1614610fa3576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f9a90613ab3565b60405180910390fd5b600960019054906101000a900460ff1615610ff3576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610fea90613933565b60405180910390fd5b80600a9080519060200190611009929190612ec4565b5050565b6000611017610bb8565b8210611058576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161104f90613993565b60405180910390fd5b819050919050565b600061106b82612473565b600001519050919050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156110e7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110de90613a33565b60405180910390fd5b600460008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160009054906101000a90046fffffffffffffffffffffffffffffffff166fffffffffffffffffffffffffffffffff169050919050565b611167611e12565b73ffffffffffffffffffffffffffffffffffffffff16611185611353565b73ffffffffffffffffffffffffffffffffffffffff16146111db576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111d290613ab3565b60405180910390fd5b6111e560006125ce565b565b601481565b6111f4611e12565b73ffffffffffffffffffffffffffffffffffffffff16611212611353565b73ffffffffffffffffffffffffffffffffffffffff1614611268576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161125f90613ab3565b60405180910390fd5b8060088190555050565b61127a611e12565b73ffffffffffffffffffffffffffffffffffffffff16611298611353565b73ffffffffffffffffffffffffffffffffffffffff16146112ee576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112e590613ab3565b60405180910390fd5b600854816112fa612694565b6113049190613d69565b1115611345576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161133c90613a13565b60405180910390fd5b61134f82826126a7565b5050565b6000600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b60606002805461138c90613f7a565b80601f01602080910402602001604051908101604052809291908181526020018280546113b890613f7a565b80156114055780601f106113da57610100808354040283529160200191611405565b820191906000526020600020905b8154815290600101906020018083116113e857829003601f168201915b5050505050905090565b600960009054906101000a900460ff161561145f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611456906139f3565b60405180910390fd5b60148111156114a3576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161149a90613a53565b60405180910390fd5b600854816114af612694565b6114b99190613d69565b11156114fa576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114f190613a13565b60405180910390fd5b60008190506000600c60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050600281101561157f57600081600261155b9190613e4a565b9050808411156115785780846115719190613e4a565b925061157d565b600092505b505b6611c37937e08000826115929190613df0565b3410156115d4576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115cb90613a93565b60405180910390fd5b82600c60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546116239190613d69565b9250508190555061163433846126a7565b505050565b611641611e12565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156116af576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116a690613af3565b60405180910390fd5b80600660006116bc611e12565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff16611769611e12565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31836040516117ae91906138d6565b60405180910390a35050565b600960009054906101000a900460ff1681565b6117d8848484611ecc565b6117e4848484846126c5565b611823576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161181a90613b73565b60405180910390fd5b50505050565b611831611e12565b73ffffffffffffffffffffffffffffffffffffffff1661184f611353565b73ffffffffffffffffffffffffffffffffffffffff16146118a5576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161189c90613ab3565b60405180910390fd5b80600960006101000a81548160ff02191690831515021790555050565b6611c37937e0800081565b60606118d882611e05565b611917576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161190e90613ad3565b60405180910390fd5b600061192161285c565b51116119b757600b805461193490613f7a565b80601f016020809104026020016040519081016040528092919081815260200182805461196090613f7a565b80156119ad5780601f10611982576101008083540402835291602001916119ad565b820191906000526020600020905b81548152906001019060200180831161199057829003601f168201915b50505050506119e9565b6119bf61285c565b6119c88361287c565b6040516020016119d992919061382b565b6040516020818303038152906040525b9050919050565b6119f8611e12565b73ffffffffffffffffffffffffffffffffffffffff16611a16611353565b73ffffffffffffffffffffffffffffffffffffffff1614611a6c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a6390613ab3565b60405180910390fd5b611a7633826126a7565b50565b60085481565b600b8054611a8c90613f7a565b80601f0160208091040260200160405190810160405280929190818152602001828054611ab890613f7a565b8015611b055780601f10611ada57610100808354040283529160200191611b05565b820191906000526020600020905b815481529060010190602001808311611ae857829003601f168201915b505050505081565b606060405180608001604052806053815260200161487760539139905090565b6000600660008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b611bc9611e12565b73ffffffffffffffffffffffffffffffffffffffff16611be7611353565b73ffffffffffffffffffffffffffffffffffffffff1614611c3d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c3490613ab3565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415611cad576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ca490613953565b60405180910390fd5b611cb6816125ce565b50565b611cc1611e12565b73ffffffffffffffffffffffffffffffffffffffff16611cdf611353565b73ffffffffffffffffffffffffffffffffffffffff1614611d35576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d2c90613ab3565b60405180910390fd5b6001600960016101000a81548160ff021916908315150217905550565b6000600c60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b6000805482109050919050565b600033905090565b826005600084815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b6000611ed782612473565b90506000816000015173ffffffffffffffffffffffffffffffffffffffff16611efe611e12565b73ffffffffffffffffffffffffffffffffffffffff161480611f5a5750611f23611e12565b73ffffffffffffffffffffffffffffffffffffffff16611f4284610a07565b73ffffffffffffffffffffffffffffffffffffffff16145b80611f765750611f758260000151611f70611e12565b611b2d565b5b905080611fb8576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611faf90613b13565b60405180910390fd5b8473ffffffffffffffffffffffffffffffffffffffff16826000015173ffffffffffffffffffffffffffffffffffffffff161461202a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161202190613a73565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff16141561209a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612091906139b3565b60405180910390fd5b6120a785858560016129dd565b6120b76000848460000151611e1a565b6001600460008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a90046fffffffffffffffffffffffffffffffff160392506101000a8154816fffffffffffffffffffffffffffffffff02191690836fffffffffffffffffffffffffffffffff1602179055506001600460008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a90046fffffffffffffffffffffffffffffffff160192506101000a8154816fffffffffffffffffffffffffffffffff02191690836fffffffffffffffffffffffffffffffff16021790555060405180604001604052808573ffffffffffffffffffffffffffffffffffffffff1681526020014267ffffffffffffffff168152506003600085815260200190815260200160002060008201518160000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555060208201518160000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff16021790555090505060006001846122bd9190613d69565b9050600073ffffffffffffffffffffffffffffffffffffffff166003600083815260200190815260200160002060000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614156124035761233381611e05565b15612402576040518060400160405280846000015173ffffffffffffffffffffffffffffffffffffffff168152602001846020015167ffffffffffffffff168152506003600083815260200190815260200160002060008201518160000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555060208201518160000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055509050505b5b838573ffffffffffffffffffffffffffffffffffffffff168773ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a461246b86868660016129e3565b505050505050565b61247b612f4a565b61248482611e05565b6124c3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016124ba90613973565b60405180910390fd5b60008290505b6000600360008381526020019081526020016000206040518060400160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815250509050600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff16146125b55780925050506125c9565b5080806125c190613f50565b9150506124c9565b919050565b6000600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600760006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b600061269e6129e9565b60005403905090565b6126c18282604051806020016040528060008152506129f2565b5050565b60006126e68473ffffffffffffffffffffffffffffffffffffffff16612eb1565b1561284f578373ffffffffffffffffffffffffffffffffffffffff1663150b7a0261270f611e12565b8786866040518563ffffffff1660e01b8152600401612731949392919061388a565b602060405180830381600087803b15801561274b57600080fd5b505af192505050801561277c57506040513d601f19601f820116820180604052508101906127799190613307565b60015b6127ff573d80600081146127ac576040519150601f19603f3d011682016040523d82523d6000602084013e6127b1565b606091505b506000815114156127f7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016127ee90613b73565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050612854565b600190505b949350505050565b606060405180608001604052806053815260200161487760539139905090565b606060008214156128c4576040518060400160405280600181526020017f300000000000000000000000000000000000000000000000000000000000000081525090506129d8565b600082905060005b600082146128f65780806128df90613fdd565b915050600a826128ef9190613dbf565b91506128cc565b60008167ffffffffffffffff81111561291257612911614113565b5b6040519080825280601f01601f1916602001820160405280156129445781602001600182028036833780820191505090505b5090505b600085146129d15760018261295d9190613e4a565b9150600a8561296c9190614026565b60306129789190613d69565b60f81b81838151811061298e5761298d6140e4565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a856129ca9190613dbf565b9450612948565b8093505050505b919050565b50505050565b50505050565b60006001905090565b600080549050600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161415612a68576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612a5f90613bb3565b60405180910390fd5b612a7181611e05565b15612ab1576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612aa890613b93565b60405180910390fd5b60008311612af4576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612aeb90613b53565b60405180910390fd5b612b0160008583866129dd565b6000600460008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206040518060400160405290816000820160009054906101000a90046fffffffffffffffffffffffffffffffff166fffffffffffffffffffffffffffffffff166fffffffffffffffffffffffffffffffff1681526020016000820160109054906101000a90046fffffffffffffffffffffffffffffffff166fffffffffffffffffffffffffffffffff166fffffffffffffffffffffffffffffffff168152505090506040518060400160405280858360000151612bfe9190613d23565b6fffffffffffffffffffffffffffffffff168152602001858360200151612c259190613d23565b6fffffffffffffffffffffffffffffffff16815250600460008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008201518160000160006101000a8154816fffffffffffffffffffffffffffffffff02191690836fffffffffffffffffffffffffffffffff16021790555060208201518160000160106101000a8154816fffffffffffffffffffffffffffffffff02191690836fffffffffffffffffffffffffffffffff16021790555090505060405180604001604052808673ffffffffffffffffffffffffffffffffffffffff1681526020014267ffffffffffffffff168152506003600084815260200190815260200160002060008201518160000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555060208201518160000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff160217905550905050600082905060005b85811015612e9457818773ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4612e3460008884886126c5565b612e73576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612e6a90613b73565b60405180910390fd5b8180612e7e90613fdd565b9250508080612e8c90613fdd565b915050612dc3565b5080600081905550612ea960008785886129e3565b505050505050565b600080823b905060008111915050919050565b828054612ed090613f7a565b90600052602060002090601f016020900481019282612ef25760008555612f39565b82601f10612f0b57805160ff1916838001178555612f39565b82800160010185558215612f39579182015b82811115612f38578251825591602001919060010190612f1d565b5b509050612f469190612f84565b5090565b6040518060400160405280600073ffffffffffffffffffffffffffffffffffffffff168152602001600067ffffffffffffffff1681525090565b5b80821115612f9d576000816000905550600101612f85565b5090565b6000612fb4612faf84613c73565b613c4e565b905082815260208101848484011115612fd057612fcf614147565b5b612fdb848285613f0e565b509392505050565b6000612ff6612ff184613ca4565b613c4e565b90508281526020810184848401111561301257613011614147565b5b61301d848285613f0e565b509392505050565b6000813590506130348161481a565b92915050565b60008135905061304981614831565b92915050565b60008135905061305e81614848565b92915050565b60008151905061307381614848565b92915050565b600082601f83011261308e5761308d614142565b5b813561309e848260208601612fa1565b91505092915050565b600082601f8301126130bc576130bb614142565b5b81356130cc848260208601612fe3565b91505092915050565b6000813590506130e48161485f565b92915050565b600060208284031215613100576130ff614151565b5b600061310e84828501613025565b91505092915050565b6000806040838503121561312e5761312d614151565b5b600061313c85828601613025565b925050602061314d85828601613025565b9150509250929050565b6000806000606084860312156131705761316f614151565b5b600061317e86828701613025565b935050602061318f86828701613025565b92505060406131a0868287016130d5565b9150509250925092565b600080600080608085870312156131c4576131c3614151565b5b60006131d287828801613025565b94505060206131e387828801613025565b93505060406131f4878288016130d5565b925050606085013567ffffffffffffffff8111156132155761321461414c565b5b61322187828801613079565b91505092959194509250565b6000806040838503121561324457613243614151565b5b600061325285828601613025565b92505060206132638582860161303a565b9150509250929050565b6000806040838503121561328457613283614151565b5b600061329285828601613025565b92505060206132a3858286016130d5565b9150509250929050565b6000602082840312156132c3576132c2614151565b5b60006132d18482850161303a565b91505092915050565b6000602082840312156132f0576132ef614151565b5b60006132fe8482850161304f565b91505092915050565b60006020828403121561331d5761331c614151565b5b600061332b84828501613064565b91505092915050565b60006020828403121561334a57613349614151565b5b600082013567ffffffffffffffff8111156133685761336761414c565b5b613374848285016130a7565b91505092915050565b60006020828403121561339357613392614151565b5b60006133a1848285016130d5565b91505092915050565b6133b381613e7e565b82525050565b6133c281613e90565b82525050565b60006133d382613cd5565b6133dd8185613ceb565b93506133ed818560208601613f1d565b6133f681614156565b840191505092915050565b600061340c82613ce0565b6134168185613d07565b9350613426818560208601613f1d565b61342f81614156565b840191505092915050565b600061344582613ce0565b61344f8185613d18565b935061345f818560208601613f1d565b80840191505092915050565b6000613478602283613d07565b915061348382614167565b604082019050919050565b600061349b601583613d07565b91506134a6826141b6565b602082019050919050565b60006134be602683613d07565b91506134c9826141df565b604082019050919050565b60006134e1602a83613d07565b91506134ec8261422e565b604082019050919050565b6000613504602383613d07565b915061350f8261427d565b604082019050919050565b6000613527602583613d07565b9150613532826142cc565b604082019050919050565b600061354a603983613d07565b91506135558261431b565b604082019050919050565b600061356d600d83613d07565b91506135788261436a565b602082019050919050565b6000613590601283613d07565b915061359b82614393565b602082019050919050565b60006135b3602b83613d07565b91506135be826143bc565b604082019050919050565b60006135d6601d83613d07565b91506135e18261440b565b602082019050919050565b60006135f9602683613d07565b915061360482614434565b604082019050919050565b600061361c602283613d07565b915061362782614483565b604082019050919050565b600061363f600583613d18565b915061364a826144d2565b600582019050919050565b6000613662602083613d07565b915061366d826144fb565b602082019050919050565b6000613685602f83613d07565b915061369082614524565b604082019050919050565b60006136a8601a83613d07565b91506136b382614573565b602082019050919050565b60006136cb603283613d07565b91506136d68261459c565b604082019050919050565b60006136ee602283613d07565b91506136f9826145eb565b604082019050919050565b6000613711600083613cfc565b915061371c8261463a565b600082019050919050565b6000613734602383613d07565b915061373f8261463d565b604082019050919050565b6000613757603383613d07565b91506137628261468c565b604082019050919050565b600061377a601d83613d07565b9150613785826146db565b602082019050919050565b600061379d602183613d07565b91506137a882614704565b604082019050919050565b60006137c0600e83613d07565b91506137cb82614753565b602082019050919050565b60006137e3602e83613d07565b91506137ee8261477c565b604082019050919050565b6000613806602d83613d07565b9150613811826147cb565b604082019050919050565b61382581613f04565b82525050565b6000613837828561343a565b9150613843828461343a565b915061384e82613632565b91508190509392505050565b600061386582613704565b9150819050919050565b600060208201905061388460008301846133aa565b92915050565b600060808201905061389f60008301876133aa565b6138ac60208301866133aa565b6138b9604083018561381c565b81810360608301526138cb81846133c8565b905095945050505050565b60006020820190506138eb60008301846133b9565b92915050565b6000602082019050818103600083015261390b8184613401565b905092915050565b6000602082019050818103600083015261392c8161346b565b9050919050565b6000602082019050818103600083015261394c8161348e565b9050919050565b6000602082019050818103600083015261396c816134b1565b9050919050565b6000602082019050818103600083015261398c816134d4565b9050919050565b600060208201905081810360008301526139ac816134f7565b9050919050565b600060208201905081810360008301526139cc8161351a565b9050919050565b600060208201905081810360008301526139ec8161353d565b9050919050565b60006020820190508181036000830152613a0c81613560565b9050919050565b60006020820190508181036000830152613a2c81613583565b9050919050565b60006020820190508181036000830152613a4c816135a6565b9050919050565b60006020820190508181036000830152613a6c816135c9565b9050919050565b60006020820190508181036000830152613a8c816135ec565b9050919050565b60006020820190508181036000830152613aac8161360f565b9050919050565b60006020820190508181036000830152613acc81613655565b9050919050565b60006020820190508181036000830152613aec81613678565b9050919050565b60006020820190508181036000830152613b0c8161369b565b9050919050565b60006020820190508181036000830152613b2c816136be565b9050919050565b60006020820190508181036000830152613b4c816136e1565b9050919050565b60006020820190508181036000830152613b6c81613727565b9050919050565b60006020820190508181036000830152613b8c8161374a565b9050919050565b60006020820190508181036000830152613bac8161376d565b9050919050565b60006020820190508181036000830152613bcc81613790565b9050919050565b60006020820190508181036000830152613bec816137b3565b9050919050565b60006020820190508181036000830152613c0c816137d6565b9050919050565b60006020820190508181036000830152613c2c816137f9565b9050919050565b6000602082019050613c48600083018461381c565b92915050565b6000613c58613c69565b9050613c648282613fac565b919050565b6000604051905090565b600067ffffffffffffffff821115613c8e57613c8d614113565b5b613c9782614156565b9050602081019050919050565b600067ffffffffffffffff821115613cbf57613cbe614113565b5b613cc882614156565b9050602081019050919050565b600081519050919050565b600081519050919050565b600082825260208201905092915050565b600081905092915050565b600082825260208201905092915050565b600081905092915050565b6000613d2e82613ec8565b9150613d3983613ec8565b9250826fffffffffffffffffffffffffffffffff03821115613d5e57613d5d614057565b5b828201905092915050565b6000613d7482613f04565b9150613d7f83613f04565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115613db457613db3614057565b5b828201905092915050565b6000613dca82613f04565b9150613dd583613f04565b925082613de557613de4614086565b5b828204905092915050565b6000613dfb82613f04565b9150613e0683613f04565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0483118215151615613e3f57613e3e614057565b5b828202905092915050565b6000613e5582613f04565b9150613e6083613f04565b925082821015613e7357613e72614057565b5b828203905092915050565b6000613e8982613ee4565b9050919050565b60008115159050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b60006fffffffffffffffffffffffffffffffff82169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b82818337600083830152505050565b60005b83811015613f3b578082015181840152602081019050613f20565b83811115613f4a576000848401525b50505050565b6000613f5b82613f04565b91506000821415613f6f57613f6e614057565b5b600182039050919050565b60006002820490506001821680613f9257607f821691505b60208210811415613fa657613fa56140b5565b5b50919050565b613fb582614156565b810181811067ffffffffffffffff82111715613fd457613fd3614113565b5b80604052505050565b6000613fe882613f04565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82141561401b5761401a614057565b5b600182019050919050565b600061403182613f04565b915061403c83613f04565b92508261404c5761404b614086565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b7f455243373231413a206f776e657220696e646578206f7574206f6620626f756e60008201527f6473000000000000000000000000000000000000000000000000000000000000602082015250565b7f4d657461646174612069732066696e616c697a65640000000000000000000000600082015250565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f455243373231413a206f776e657220717565727920666f72206e6f6e6578697360008201527f74656e7420746f6b656e00000000000000000000000000000000000000000000602082015250565b7f455243373231413a20676c6f62616c20696e646578206f7574206f6620626f7560008201527f6e64730000000000000000000000000000000000000000000000000000000000602082015250565b7f455243373231413a207472616e7366657220746f20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b7f455243373231413a20617070726f76652063616c6c6572206973206e6f74206f60008201527f776e6572206e6f7220617070726f76656420666f7220616c6c00000000000000602082015250565b7f53616c657320617265206f666600000000000000000000000000000000000000600082015250565b7f45786365656473206d617820737570706c790000000000000000000000000000600082015250565b7f455243373231413a2062616c616e636520717565727920666f7220746865207a60008201527f65726f2061646472657373000000000000000000000000000000000000000000602082015250565b7f45786365656473204e4654207065722073616374696f6e206c696d6974000000600082015250565b7f455243373231413a207472616e736665722066726f6d20696e636f727265637460008201527f206f776e65720000000000000000000000000000000000000000000000000000602082015250565b7f45746865722076616c75652073656e74206973206e6f7420737566666963696560008201527f6e74000000000000000000000000000000000000000000000000000000000000602082015250565b7f2e6a736f6e000000000000000000000000000000000000000000000000000000600082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008201527f6e6578697374656e7420746f6b656e0000000000000000000000000000000000602082015250565b7f455243373231413a20617070726f766520746f2063616c6c6572000000000000600082015250565b7f455243373231413a207472616e736665722063616c6c6572206973206e6f742060008201527f6f776e6572206e6f7220617070726f7665640000000000000000000000000000602082015250565b7f455243373231413a20617070726f76616c20746f2063757272656e74206f776e60008201527f6572000000000000000000000000000000000000000000000000000000000000602082015250565b50565b7f455243373231413a207175616e74697479206d7573742062652067726561746560008201527f7220300000000000000000000000000000000000000000000000000000000000602082015250565b7f455243373231413a207472616e7366657220746f206e6f6e204552433732315260008201527f6563656976657220696d706c656d656e74657200000000000000000000000000602082015250565b7f455243373231413a20746f6b656e20616c7265616479206d696e746564000000600082015250565b7f455243373231413a206d696e7420746f20746865207a65726f2061646472657360008201527f7300000000000000000000000000000000000000000000000000000000000000602082015250565b7f4661696c656420746f2073656e64000000000000000000000000000000000000600082015250565b7f455243373231413a20756e61626c6520746f2067657420746f6b656e206f662060008201527f6f776e657220627920696e646578000000000000000000000000000000000000602082015250565b7f455243373231413a20617070726f76656420717565727920666f72206e6f6e6560008201527f78697374656e7420746f6b656e00000000000000000000000000000000000000602082015250565b61482381613e7e565b811461482e57600080fd5b50565b61483a81613e90565b811461484557600080fd5b50565b61485181613e9c565b811461485c57600080fd5b50565b61486881613f04565b811461487357600080fd5b5056fe68747470733a2f2f736b796c696e652e6d7970696e6174612e636c6f75642f697066732f516d5056704c7257764571654c31684c39786d45414576347a4c696b7958724b5875456664584276414d6a316b382fa26469706673582212207a64d1ef65e28552ab159f3a2bff4da50bca2bfd272997332c622d26359758c264736f6c63430008070033

Deployed Bytecode

0x6080604052600436106102045760003560e01c80638ba4cc3c11610118578063c87b56dd116100a0578063e8a3d4851161006f578063e8a3d48514610746578063e985e9c514610771578063f2fde38b146107ae578063f4a560a5146107d7578063fddcb5ea146107ee57610204565b8063c87b56dd1461068a578063cea84237146106c7578063d5abeb01146106f0578063d82104821461071b57610204565b8063a22cb465116100e7578063a22cb465146105b9578063b187bd26146105e2578063b88d4fde1461060d578063bedb86fb14610636578063c002d23d1461065f57610204565b80638ba4cc3c1461051e5780638da5cb5b1461054757806395d89b4114610572578063a0712d681461059d57610204565b80633ccfd60b1161019b5780636352211e1161016a5780636352211e1461043957806370a0823114610476578063715018a6146104b35780637c60d65a146104ca57806380623444146104f557610204565b80633ccfd60b1461039357806342842e0e146103aa5780634c261247146103d35780634f6ccce7146103fc57610204565b80630de76de4116101d75780630de76de4146102d757806318160ddd1461030257806323b872dd1461032d5780632f745c591461035657610204565b806301ffc9a71461020957806306fdde0314610246578063081812fc14610271578063095ea7b3146102ae575b600080fd5b34801561021557600080fd5b50610230600480360381019061022b91906132da565b61082b565b60405161023d91906138d6565b60405180910390f35b34801561025257600080fd5b5061025b610975565b60405161026891906138f1565b60405180910390f35b34801561027d57600080fd5b506102986004803603810190610293919061337d565b610a07565b6040516102a5919061386f565b60405180910390f35b3480156102ba57600080fd5b506102d560048036038101906102d0919061326d565b610a8c565b005b3480156102e357600080fd5b506102ec610ba5565b6040516102f991906138d6565b60405180910390f35b34801561030e57600080fd5b50610317610bb8565b6040516103249190613c33565b60405180910390f35b34801561033957600080fd5b50610354600480360381019061034f9190613157565b610bc1565b005b34801561036257600080fd5b5061037d6004803603810190610378919061326d565b610bd1565b60405161038a9190613c33565b60405180910390f35b34801561039f57600080fd5b506103a8610dcf565b005b3480156103b657600080fd5b506103d160048036038101906103cc9190613157565b610f07565b005b3480156103df57600080fd5b506103fa60048036038101906103f59190613334565b610f27565b005b34801561040857600080fd5b50610423600480360381019061041e919061337d565b61100d565b6040516104309190613c33565b60405180910390f35b34801561044557600080fd5b50610460600480360381019061045b919061337d565b611060565b60405161046d919061386f565b60405180910390f35b34801561048257600080fd5b5061049d600480360381019061049891906130ea565b611076565b6040516104aa9190613c33565b60405180910390f35b3480156104bf57600080fd5b506104c861115f565b005b3480156104d657600080fd5b506104df6111e7565b6040516104ec9190613c33565b60405180910390f35b34801561050157600080fd5b5061051c6004803603810190610517919061337d565b6111ec565b005b34801561052a57600080fd5b506105456004803603810190610540919061326d565b611272565b005b34801561055357600080fd5b5061055c611353565b604051610569919061386f565b60405180910390f35b34801561057e57600080fd5b5061058761137d565b60405161059491906138f1565b60405180910390f35b6105b760048036038101906105b2919061337d565b61140f565b005b3480156105c557600080fd5b506105e060048036038101906105db919061322d565b611639565b005b3480156105ee57600080fd5b506105f76117ba565b60405161060491906138d6565b60405180910390f35b34801561061957600080fd5b50610634600480360381019061062f91906131aa565b6117cd565b005b34801561064257600080fd5b5061065d600480360381019061065891906132ad565b611829565b005b34801561066b57600080fd5b506106746118c2565b6040516106819190613c33565b60405180910390f35b34801561069657600080fd5b506106b160048036038101906106ac919061337d565b6118cd565b6040516106be91906138f1565b60405180910390f35b3480156106d357600080fd5b506106ee60048036038101906106e9919061337d565b6119f0565b005b3480156106fc57600080fd5b50610705611a79565b6040516107129190613c33565b60405180910390f35b34801561072757600080fd5b50610730611a7f565b60405161073d91906138f1565b60405180910390f35b34801561075257600080fd5b5061075b611b0d565b60405161076891906138f1565b60405180910390f35b34801561077d57600080fd5b5061079860048036038101906107939190613117565b611b2d565b6040516107a591906138d6565b60405180910390f35b3480156107ba57600080fd5b506107d560048036038101906107d091906130ea565b611bc1565b005b3480156107e357600080fd5b506107ec611cb9565b005b3480156107fa57600080fd5b50610815600480360381019061081091906130ea565b611d52565b6040516108229190613c33565b60405180910390f35b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614806108f657507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b8061095e57507f780e9d63000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b8061096e575061096d82611d9b565b5b9050919050565b60606001805461098490613f7a565b80601f01602080910402602001604051908101604052809291908181526020018280546109b090613f7a565b80156109fd5780601f106109d2576101008083540402835291602001916109fd565b820191906000526020600020905b8154815290600101906020018083116109e057829003601f168201915b5050505050905090565b6000610a1282611e05565b610a51576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a4890613c13565b60405180910390fd5b6005600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b6000610a9782611060565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610b08576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610aff90613b33565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16610b27611e12565b73ffffffffffffffffffffffffffffffffffffffff161480610b565750610b5581610b50611e12565b611b2d565b5b610b95576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b8c906139d3565b60405180910390fd5b610ba0838383611e1a565b505050565b600960019054906101000a900460ff1681565b60008054905090565b610bcc838383611ecc565b505050565b6000610bdc83611076565b8210610c1d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c1490613913565b60405180910390fd5b6000610c27610bb8565b905060008060005b83811015610d8d576000600360008381526020019081526020016000206040518060400160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815250509050600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff1614610d2157806000015192505b8773ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610d795786841415610d6a578195505050505050610dc9565b8380610d7590613fdd565b9450505b508080610d8590613fdd565b915050610c2f565b506040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610dc090613bf3565b60405180910390fd5b92915050565b610dd7611e12565b73ffffffffffffffffffffffffffffffffffffffff16610df5611353565b73ffffffffffffffffffffffffffffffffffffffff1614610e4b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e4290613ab3565b60405180910390fd5b60004790506000610e5a611e12565b73ffffffffffffffffffffffffffffffffffffffff1682604051610e7d9061385a565b60006040518083038185875af1925050503d8060008114610eba576040519150601f19603f3d011682016040523d82523d6000602084013e610ebf565b606091505b5050905080610f03576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610efa90613bd3565b60405180910390fd5b5050565b610f22838383604051806020016040528060008152506117cd565b505050565b610f2f611e12565b73ffffffffffffffffffffffffffffffffffffffff16610f4d611353565b73ffffffffffffffffffffffffffffffffffffffff1614610fa3576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f9a90613ab3565b60405180910390fd5b600960019054906101000a900460ff1615610ff3576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610fea90613933565b60405180910390fd5b80600a9080519060200190611009929190612ec4565b5050565b6000611017610bb8565b8210611058576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161104f90613993565b60405180910390fd5b819050919050565b600061106b82612473565b600001519050919050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156110e7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110de90613a33565b60405180910390fd5b600460008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160009054906101000a90046fffffffffffffffffffffffffffffffff166fffffffffffffffffffffffffffffffff169050919050565b611167611e12565b73ffffffffffffffffffffffffffffffffffffffff16611185611353565b73ffffffffffffffffffffffffffffffffffffffff16146111db576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111d290613ab3565b60405180910390fd5b6111e560006125ce565b565b601481565b6111f4611e12565b73ffffffffffffffffffffffffffffffffffffffff16611212611353565b73ffffffffffffffffffffffffffffffffffffffff1614611268576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161125f90613ab3565b60405180910390fd5b8060088190555050565b61127a611e12565b73ffffffffffffffffffffffffffffffffffffffff16611298611353565b73ffffffffffffffffffffffffffffffffffffffff16146112ee576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112e590613ab3565b60405180910390fd5b600854816112fa612694565b6113049190613d69565b1115611345576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161133c90613a13565b60405180910390fd5b61134f82826126a7565b5050565b6000600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b60606002805461138c90613f7a565b80601f01602080910402602001604051908101604052809291908181526020018280546113b890613f7a565b80156114055780601f106113da57610100808354040283529160200191611405565b820191906000526020600020905b8154815290600101906020018083116113e857829003601f168201915b5050505050905090565b600960009054906101000a900460ff161561145f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611456906139f3565b60405180910390fd5b60148111156114a3576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161149a90613a53565b60405180910390fd5b600854816114af612694565b6114b99190613d69565b11156114fa576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114f190613a13565b60405180910390fd5b60008190506000600c60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050600281101561157f57600081600261155b9190613e4a565b9050808411156115785780846115719190613e4a565b925061157d565b600092505b505b6611c37937e08000826115929190613df0565b3410156115d4576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115cb90613a93565b60405180910390fd5b82600c60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546116239190613d69565b9250508190555061163433846126a7565b505050565b611641611e12565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156116af576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116a690613af3565b60405180910390fd5b80600660006116bc611e12565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff16611769611e12565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31836040516117ae91906138d6565b60405180910390a35050565b600960009054906101000a900460ff1681565b6117d8848484611ecc565b6117e4848484846126c5565b611823576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161181a90613b73565b60405180910390fd5b50505050565b611831611e12565b73ffffffffffffffffffffffffffffffffffffffff1661184f611353565b73ffffffffffffffffffffffffffffffffffffffff16146118a5576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161189c90613ab3565b60405180910390fd5b80600960006101000a81548160ff02191690831515021790555050565b6611c37937e0800081565b60606118d882611e05565b611917576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161190e90613ad3565b60405180910390fd5b600061192161285c565b51116119b757600b805461193490613f7a565b80601f016020809104026020016040519081016040528092919081815260200182805461196090613f7a565b80156119ad5780601f10611982576101008083540402835291602001916119ad565b820191906000526020600020905b81548152906001019060200180831161199057829003601f168201915b50505050506119e9565b6119bf61285c565b6119c88361287c565b6040516020016119d992919061382b565b6040516020818303038152906040525b9050919050565b6119f8611e12565b73ffffffffffffffffffffffffffffffffffffffff16611a16611353565b73ffffffffffffffffffffffffffffffffffffffff1614611a6c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a6390613ab3565b60405180910390fd5b611a7633826126a7565b50565b60085481565b600b8054611a8c90613f7a565b80601f0160208091040260200160405190810160405280929190818152602001828054611ab890613f7a565b8015611b055780601f10611ada57610100808354040283529160200191611b05565b820191906000526020600020905b815481529060010190602001808311611ae857829003601f168201915b505050505081565b606060405180608001604052806053815260200161487760539139905090565b6000600660008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b611bc9611e12565b73ffffffffffffffffffffffffffffffffffffffff16611be7611353565b73ffffffffffffffffffffffffffffffffffffffff1614611c3d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c3490613ab3565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415611cad576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ca490613953565b60405180910390fd5b611cb6816125ce565b50565b611cc1611e12565b73ffffffffffffffffffffffffffffffffffffffff16611cdf611353565b73ffffffffffffffffffffffffffffffffffffffff1614611d35576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d2c90613ab3565b60405180910390fd5b6001600960016101000a81548160ff021916908315150217905550565b6000600c60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b6000805482109050919050565b600033905090565b826005600084815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b6000611ed782612473565b90506000816000015173ffffffffffffffffffffffffffffffffffffffff16611efe611e12565b73ffffffffffffffffffffffffffffffffffffffff161480611f5a5750611f23611e12565b73ffffffffffffffffffffffffffffffffffffffff16611f4284610a07565b73ffffffffffffffffffffffffffffffffffffffff16145b80611f765750611f758260000151611f70611e12565b611b2d565b5b905080611fb8576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611faf90613b13565b60405180910390fd5b8473ffffffffffffffffffffffffffffffffffffffff16826000015173ffffffffffffffffffffffffffffffffffffffff161461202a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161202190613a73565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff16141561209a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612091906139b3565b60405180910390fd5b6120a785858560016129dd565b6120b76000848460000151611e1a565b6001600460008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a90046fffffffffffffffffffffffffffffffff160392506101000a8154816fffffffffffffffffffffffffffffffff02191690836fffffffffffffffffffffffffffffffff1602179055506001600460008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a90046fffffffffffffffffffffffffffffffff160192506101000a8154816fffffffffffffffffffffffffffffffff02191690836fffffffffffffffffffffffffffffffff16021790555060405180604001604052808573ffffffffffffffffffffffffffffffffffffffff1681526020014267ffffffffffffffff168152506003600085815260200190815260200160002060008201518160000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555060208201518160000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff16021790555090505060006001846122bd9190613d69565b9050600073ffffffffffffffffffffffffffffffffffffffff166003600083815260200190815260200160002060000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614156124035761233381611e05565b15612402576040518060400160405280846000015173ffffffffffffffffffffffffffffffffffffffff168152602001846020015167ffffffffffffffff168152506003600083815260200190815260200160002060008201518160000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555060208201518160000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055509050505b5b838573ffffffffffffffffffffffffffffffffffffffff168773ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a461246b86868660016129e3565b505050505050565b61247b612f4a565b61248482611e05565b6124c3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016124ba90613973565b60405180910390fd5b60008290505b6000600360008381526020019081526020016000206040518060400160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815250509050600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff16146125b55780925050506125c9565b5080806125c190613f50565b9150506124c9565b919050565b6000600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600760006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b600061269e6129e9565b60005403905090565b6126c18282604051806020016040528060008152506129f2565b5050565b60006126e68473ffffffffffffffffffffffffffffffffffffffff16612eb1565b1561284f578373ffffffffffffffffffffffffffffffffffffffff1663150b7a0261270f611e12565b8786866040518563ffffffff1660e01b8152600401612731949392919061388a565b602060405180830381600087803b15801561274b57600080fd5b505af192505050801561277c57506040513d601f19601f820116820180604052508101906127799190613307565b60015b6127ff573d80600081146127ac576040519150601f19603f3d011682016040523d82523d6000602084013e6127b1565b606091505b506000815114156127f7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016127ee90613b73565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050612854565b600190505b949350505050565b606060405180608001604052806053815260200161487760539139905090565b606060008214156128c4576040518060400160405280600181526020017f300000000000000000000000000000000000000000000000000000000000000081525090506129d8565b600082905060005b600082146128f65780806128df90613fdd565b915050600a826128ef9190613dbf565b91506128cc565b60008167ffffffffffffffff81111561291257612911614113565b5b6040519080825280601f01601f1916602001820160405280156129445781602001600182028036833780820191505090505b5090505b600085146129d15760018261295d9190613e4a565b9150600a8561296c9190614026565b60306129789190613d69565b60f81b81838151811061298e5761298d6140e4565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a856129ca9190613dbf565b9450612948565b8093505050505b919050565b50505050565b50505050565b60006001905090565b600080549050600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161415612a68576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612a5f90613bb3565b60405180910390fd5b612a7181611e05565b15612ab1576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612aa890613b93565b60405180910390fd5b60008311612af4576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612aeb90613b53565b60405180910390fd5b612b0160008583866129dd565b6000600460008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206040518060400160405290816000820160009054906101000a90046fffffffffffffffffffffffffffffffff166fffffffffffffffffffffffffffffffff166fffffffffffffffffffffffffffffffff1681526020016000820160109054906101000a90046fffffffffffffffffffffffffffffffff166fffffffffffffffffffffffffffffffff166fffffffffffffffffffffffffffffffff168152505090506040518060400160405280858360000151612bfe9190613d23565b6fffffffffffffffffffffffffffffffff168152602001858360200151612c259190613d23565b6fffffffffffffffffffffffffffffffff16815250600460008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008201518160000160006101000a8154816fffffffffffffffffffffffffffffffff02191690836fffffffffffffffffffffffffffffffff16021790555060208201518160000160106101000a8154816fffffffffffffffffffffffffffffffff02191690836fffffffffffffffffffffffffffffffff16021790555090505060405180604001604052808673ffffffffffffffffffffffffffffffffffffffff1681526020014267ffffffffffffffff168152506003600084815260200190815260200160002060008201518160000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555060208201518160000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff160217905550905050600082905060005b85811015612e9457818773ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4612e3460008884886126c5565b612e73576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612e6a90613b73565b60405180910390fd5b8180612e7e90613fdd565b9250508080612e8c90613fdd565b915050612dc3565b5080600081905550612ea960008785886129e3565b505050505050565b600080823b905060008111915050919050565b828054612ed090613f7a565b90600052602060002090601f016020900481019282612ef25760008555612f39565b82601f10612f0b57805160ff1916838001178555612f39565b82800160010185558215612f39579182015b82811115612f38578251825591602001919060010190612f1d565b5b509050612f469190612f84565b5090565b6040518060400160405280600073ffffffffffffffffffffffffffffffffffffffff168152602001600067ffffffffffffffff1681525090565b5b80821115612f9d576000816000905550600101612f85565b5090565b6000612fb4612faf84613c73565b613c4e565b905082815260208101848484011115612fd057612fcf614147565b5b612fdb848285613f0e565b509392505050565b6000612ff6612ff184613ca4565b613c4e565b90508281526020810184848401111561301257613011614147565b5b61301d848285613f0e565b509392505050565b6000813590506130348161481a565b92915050565b60008135905061304981614831565b92915050565b60008135905061305e81614848565b92915050565b60008151905061307381614848565b92915050565b600082601f83011261308e5761308d614142565b5b813561309e848260208601612fa1565b91505092915050565b600082601f8301126130bc576130bb614142565b5b81356130cc848260208601612fe3565b91505092915050565b6000813590506130e48161485f565b92915050565b600060208284031215613100576130ff614151565b5b600061310e84828501613025565b91505092915050565b6000806040838503121561312e5761312d614151565b5b600061313c85828601613025565b925050602061314d85828601613025565b9150509250929050565b6000806000606084860312156131705761316f614151565b5b600061317e86828701613025565b935050602061318f86828701613025565b92505060406131a0868287016130d5565b9150509250925092565b600080600080608085870312156131c4576131c3614151565b5b60006131d287828801613025565b94505060206131e387828801613025565b93505060406131f4878288016130d5565b925050606085013567ffffffffffffffff8111156132155761321461414c565b5b61322187828801613079565b91505092959194509250565b6000806040838503121561324457613243614151565b5b600061325285828601613025565b92505060206132638582860161303a565b9150509250929050565b6000806040838503121561328457613283614151565b5b600061329285828601613025565b92505060206132a3858286016130d5565b9150509250929050565b6000602082840312156132c3576132c2614151565b5b60006132d18482850161303a565b91505092915050565b6000602082840312156132f0576132ef614151565b5b60006132fe8482850161304f565b91505092915050565b60006020828403121561331d5761331c614151565b5b600061332b84828501613064565b91505092915050565b60006020828403121561334a57613349614151565b5b600082013567ffffffffffffffff8111156133685761336761414c565b5b613374848285016130a7565b91505092915050565b60006020828403121561339357613392614151565b5b60006133a1848285016130d5565b91505092915050565b6133b381613e7e565b82525050565b6133c281613e90565b82525050565b60006133d382613cd5565b6133dd8185613ceb565b93506133ed818560208601613f1d565b6133f681614156565b840191505092915050565b600061340c82613ce0565b6134168185613d07565b9350613426818560208601613f1d565b61342f81614156565b840191505092915050565b600061344582613ce0565b61344f8185613d18565b935061345f818560208601613f1d565b80840191505092915050565b6000613478602283613d07565b915061348382614167565b604082019050919050565b600061349b601583613d07565b91506134a6826141b6565b602082019050919050565b60006134be602683613d07565b91506134c9826141df565b604082019050919050565b60006134e1602a83613d07565b91506134ec8261422e565b604082019050919050565b6000613504602383613d07565b915061350f8261427d565b604082019050919050565b6000613527602583613d07565b9150613532826142cc565b604082019050919050565b600061354a603983613d07565b91506135558261431b565b604082019050919050565b600061356d600d83613d07565b91506135788261436a565b602082019050919050565b6000613590601283613d07565b915061359b82614393565b602082019050919050565b60006135b3602b83613d07565b91506135be826143bc565b604082019050919050565b60006135d6601d83613d07565b91506135e18261440b565b602082019050919050565b60006135f9602683613d07565b915061360482614434565b604082019050919050565b600061361c602283613d07565b915061362782614483565b604082019050919050565b600061363f600583613d18565b915061364a826144d2565b600582019050919050565b6000613662602083613d07565b915061366d826144fb565b602082019050919050565b6000613685602f83613d07565b915061369082614524565b604082019050919050565b60006136a8601a83613d07565b91506136b382614573565b602082019050919050565b60006136cb603283613d07565b91506136d68261459c565b604082019050919050565b60006136ee602283613d07565b91506136f9826145eb565b604082019050919050565b6000613711600083613cfc565b915061371c8261463a565b600082019050919050565b6000613734602383613d07565b915061373f8261463d565b604082019050919050565b6000613757603383613d07565b91506137628261468c565b604082019050919050565b600061377a601d83613d07565b9150613785826146db565b602082019050919050565b600061379d602183613d07565b91506137a882614704565b604082019050919050565b60006137c0600e83613d07565b91506137cb82614753565b602082019050919050565b60006137e3602e83613d07565b91506137ee8261477c565b604082019050919050565b6000613806602d83613d07565b9150613811826147cb565b604082019050919050565b61382581613f04565b82525050565b6000613837828561343a565b9150613843828461343a565b915061384e82613632565b91508190509392505050565b600061386582613704565b9150819050919050565b600060208201905061388460008301846133aa565b92915050565b600060808201905061389f60008301876133aa565b6138ac60208301866133aa565b6138b9604083018561381c565b81810360608301526138cb81846133c8565b905095945050505050565b60006020820190506138eb60008301846133b9565b92915050565b6000602082019050818103600083015261390b8184613401565b905092915050565b6000602082019050818103600083015261392c8161346b565b9050919050565b6000602082019050818103600083015261394c8161348e565b9050919050565b6000602082019050818103600083015261396c816134b1565b9050919050565b6000602082019050818103600083015261398c816134d4565b9050919050565b600060208201905081810360008301526139ac816134f7565b9050919050565b600060208201905081810360008301526139cc8161351a565b9050919050565b600060208201905081810360008301526139ec8161353d565b9050919050565b60006020820190508181036000830152613a0c81613560565b9050919050565b60006020820190508181036000830152613a2c81613583565b9050919050565b60006020820190508181036000830152613a4c816135a6565b9050919050565b60006020820190508181036000830152613a6c816135c9565b9050919050565b60006020820190508181036000830152613a8c816135ec565b9050919050565b60006020820190508181036000830152613aac8161360f565b9050919050565b60006020820190508181036000830152613acc81613655565b9050919050565b60006020820190508181036000830152613aec81613678565b9050919050565b60006020820190508181036000830152613b0c8161369b565b9050919050565b60006020820190508181036000830152613b2c816136be565b9050919050565b60006020820190508181036000830152613b4c816136e1565b9050919050565b60006020820190508181036000830152613b6c81613727565b9050919050565b60006020820190508181036000830152613b8c8161374a565b9050919050565b60006020820190508181036000830152613bac8161376d565b9050919050565b60006020820190508181036000830152613bcc81613790565b9050919050565b60006020820190508181036000830152613bec816137b3565b9050919050565b60006020820190508181036000830152613c0c816137d6565b9050919050565b60006020820190508181036000830152613c2c816137f9565b9050919050565b6000602082019050613c48600083018461381c565b92915050565b6000613c58613c69565b9050613c648282613fac565b919050565b6000604051905090565b600067ffffffffffffffff821115613c8e57613c8d614113565b5b613c9782614156565b9050602081019050919050565b600067ffffffffffffffff821115613cbf57613cbe614113565b5b613cc882614156565b9050602081019050919050565b600081519050919050565b600081519050919050565b600082825260208201905092915050565b600081905092915050565b600082825260208201905092915050565b600081905092915050565b6000613d2e82613ec8565b9150613d3983613ec8565b9250826fffffffffffffffffffffffffffffffff03821115613d5e57613d5d614057565b5b828201905092915050565b6000613d7482613f04565b9150613d7f83613f04565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115613db457613db3614057565b5b828201905092915050565b6000613dca82613f04565b9150613dd583613f04565b925082613de557613de4614086565b5b828204905092915050565b6000613dfb82613f04565b9150613e0683613f04565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0483118215151615613e3f57613e3e614057565b5b828202905092915050565b6000613e5582613f04565b9150613e6083613f04565b925082821015613e7357613e72614057565b5b828203905092915050565b6000613e8982613ee4565b9050919050565b60008115159050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b60006fffffffffffffffffffffffffffffffff82169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b82818337600083830152505050565b60005b83811015613f3b578082015181840152602081019050613f20565b83811115613f4a576000848401525b50505050565b6000613f5b82613f04565b91506000821415613f6f57613f6e614057565b5b600182039050919050565b60006002820490506001821680613f9257607f821691505b60208210811415613fa657613fa56140b5565b5b50919050565b613fb582614156565b810181811067ffffffffffffffff82111715613fd457613fd3614113565b5b80604052505050565b6000613fe882613f04565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82141561401b5761401a614057565b5b600182019050919050565b600061403182613f04565b915061403c83613f04565b92508261404c5761404b614086565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b7f455243373231413a206f776e657220696e646578206f7574206f6620626f756e60008201527f6473000000000000000000000000000000000000000000000000000000000000602082015250565b7f4d657461646174612069732066696e616c697a65640000000000000000000000600082015250565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f455243373231413a206f776e657220717565727920666f72206e6f6e6578697360008201527f74656e7420746f6b656e00000000000000000000000000000000000000000000602082015250565b7f455243373231413a20676c6f62616c20696e646578206f7574206f6620626f7560008201527f6e64730000000000000000000000000000000000000000000000000000000000602082015250565b7f455243373231413a207472616e7366657220746f20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b7f455243373231413a20617070726f76652063616c6c6572206973206e6f74206f60008201527f776e6572206e6f7220617070726f76656420666f7220616c6c00000000000000602082015250565b7f53616c657320617265206f666600000000000000000000000000000000000000600082015250565b7f45786365656473206d617820737570706c790000000000000000000000000000600082015250565b7f455243373231413a2062616c616e636520717565727920666f7220746865207a60008201527f65726f2061646472657373000000000000000000000000000000000000000000602082015250565b7f45786365656473204e4654207065722073616374696f6e206c696d6974000000600082015250565b7f455243373231413a207472616e736665722066726f6d20696e636f727265637460008201527f206f776e65720000000000000000000000000000000000000000000000000000602082015250565b7f45746865722076616c75652073656e74206973206e6f7420737566666963696560008201527f6e74000000000000000000000000000000000000000000000000000000000000602082015250565b7f2e6a736f6e000000000000000000000000000000000000000000000000000000600082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008201527f6e6578697374656e7420746f6b656e0000000000000000000000000000000000602082015250565b7f455243373231413a20617070726f766520746f2063616c6c6572000000000000600082015250565b7f455243373231413a207472616e736665722063616c6c6572206973206e6f742060008201527f6f776e6572206e6f7220617070726f7665640000000000000000000000000000602082015250565b7f455243373231413a20617070726f76616c20746f2063757272656e74206f776e60008201527f6572000000000000000000000000000000000000000000000000000000000000602082015250565b50565b7f455243373231413a207175616e74697479206d7573742062652067726561746560008201527f7220300000000000000000000000000000000000000000000000000000000000602082015250565b7f455243373231413a207472616e7366657220746f206e6f6e204552433732315260008201527f6563656976657220696d706c656d656e74657200000000000000000000000000602082015250565b7f455243373231413a20746f6b656e20616c7265616479206d696e746564000000600082015250565b7f455243373231413a206d696e7420746f20746865207a65726f2061646472657360008201527f7300000000000000000000000000000000000000000000000000000000000000602082015250565b7f4661696c656420746f2073656e64000000000000000000000000000000000000600082015250565b7f455243373231413a20756e61626c6520746f2067657420746f6b656e206f662060008201527f6f776e657220627920696e646578000000000000000000000000000000000000602082015250565b7f455243373231413a20617070726f76656420717565727920666f72206e6f6e6560008201527f78697374656e7420746f6b656e00000000000000000000000000000000000000602082015250565b61482381613e7e565b811461482e57600080fd5b50565b61483a81613e90565b811461484557600080fd5b50565b61485181613e9c565b811461485c57600080fd5b50565b61486881613f04565b811461487357600080fd5b5056fe68747470733a2f2f736b796c696e652e6d7970696e6174612e636c6f75642f697066732f516d5056704c7257764571654c31684c39786d45414576347a4c696b7958724b5875456664584276414d6a316b382fa26469706673582212207a64d1ef65e28552ab159f3a2bff4da50bca2bfd272997332c622d26359758c264736f6c63430008070033

Deployed Bytecode Sourcemap

39236:3099:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;27213:372;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;28840:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;30401:214;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;29922:413;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;39474:27;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;25254:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;31277:162;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;26318:823;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;40567:209;;;;;;;;;;;;;:::i;:::-;;31510:177;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;40218:139;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;25831:187;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;28649:124;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;27649:221;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;2772:103;;;;;;;;;;;;;:::i;:::-;;39358:43;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;40960:94;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;40781:174;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;2121:87;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;29009:104;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;41405:819;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;30687:288;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;39439:28;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;31758:355;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;40486:75;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;39309:45;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;41059:341;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;42234:96;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;39405:28;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;39535:31;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;39956:161;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;31046:164;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;3030:201;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;40125:88;;;;;;;;;;;;;:::i;:::-;;40365:116;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;27213:372;27315:4;27367:25;27352:40;;;:11;:40;;;;:105;;;;27424:33;27409:48;;;:11;:48;;;;27352:105;:172;;;;27489:35;27474:50;;;:11;:50;;;;27352:172;:225;;;;27541:36;27565:11;27541:23;:36::i;:::-;27352:225;27332:245;;27213:372;;;:::o;28840:100::-;28894:13;28927:5;28920:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;28840:100;:::o;30401:214::-;30469:7;30497:16;30505:7;30497;:16::i;:::-;30489:74;;;;;;;;;;;;:::i;:::-;;;;;;;;;30583:15;:24;30599:7;30583:24;;;;;;;;;;;;;;;;;;;;;30576:31;;30401:214;;;:::o;29922:413::-;29995:13;30011:24;30027:7;30011:15;:24::i;:::-;29995:40;;30060:5;30054:11;;:2;:11;;;;30046:58;;;;;;;;;;;;:::i;:::-;;;;;;;;;30155:5;30139:21;;:12;:10;:12::i;:::-;:21;;;:62;;;;30164:37;30181:5;30188:12;:10;:12::i;:::-;30164:16;:37::i;:::-;30139:62;30117:169;;;;;;;;;;;;:::i;:::-;;;;;;;;;30299:28;30308:2;30312:7;30321:5;30299:8;:28::i;:::-;29984:351;29922:413;;:::o;39474:27::-;;;;;;;;;;;;;:::o;25254:100::-;25307:7;25334:12;;25327:19;;25254:100;:::o;31277:162::-;31403:28;31413:4;31419:2;31423:7;31403:9;:28::i;:::-;31277:162;;;:::o;26318:823::-;26407:7;26443:16;26453:5;26443:9;:16::i;:::-;26435:5;:24;26427:71;;;;;;;;;;;;:::i;:::-;;;;;;;;;26509:22;26534:13;:11;:13::i;:::-;26509:38;;26558:19;26592:25;26646:9;26641:426;26665:14;26661:1;:18;26641:426;;;26701:31;26735:11;:14;26747:1;26735:14;;;;;;;;;;;26701:48;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;26794:1;26768:28;;:9;:14;;;:28;;;26764:103;;26837:9;:14;;;26817:34;;26764:103;26906:5;26885:26;;:17;:26;;;26881:175;;;26951:5;26936:11;:20;26932:77;;;26988:1;26981:8;;;;;;;;;26932:77;27027:13;;;;;:::i;:::-;;;;26881:175;26686:381;26681:3;;;;;:::i;:::-;;;;26641:426;;;;27077:56;;;;;;;;;;:::i;:::-;;;;;;;;26318:823;;;;;:::o;40567:209::-;2352:12;:10;:12::i;:::-;2341:23;;:7;:5;:7::i;:::-;:23;;;2333:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;40617:15:::1;40635:21;40617:39;;40668:12;40686;:10;:12::i;:::-;:17;;40711:7;40686:37;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;40667:56;;;40742:7;40734:34;;;;;;;;;;;;:::i;:::-;;;;;;;;;40606:170;;40567:209::o:0;31510:177::-;31640:39;31657:4;31663:2;31667:7;31640:39;;;;;;;;;;;;:16;:39::i;:::-;31510:177;;;:::o;40218:139::-;2352:12;:10;:12::i;:::-;2341:23;;:7;:5;:7::i;:::-;:23;;;2333:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;40292:15:::1;;;;;;;;;;;40291:16;40283:50;;;;;;;;;;;;:::i;:::-;;;;;;;;;40349:3;40338:8;:14;;;;;;;;;;;;:::i;:::-;;40218:139:::0;:::o;25831:187::-;25898:7;25934:13;:11;:13::i;:::-;25926:5;:21;25918:69;;;;;;;;;;;;:::i;:::-;;;;;;;;;26005:5;25998:12;;25831:187;;;:::o;28649:124::-;28713:7;28740:20;28752:7;28740:11;:20::i;:::-;:25;;;28733:32;;28649:124;;;:::o;27649:221::-;27713:7;27758:1;27741:19;;:5;:19;;;;27733:75;;;;;;;;;;;;:::i;:::-;;;;;;;;;27834:12;:19;27847:5;27834:19;;;;;;;;;;;;;;;:27;;;;;;;;;;;;27826:36;;27819:43;;27649:221;;;:::o;2772:103::-;2352:12;:10;:12::i;:::-;2341:23;;:7;:5;:7::i;:::-;:23;;;2333:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;2837:30:::1;2864:1;2837:18;:30::i;:::-;2772:103::o:0;39358:43::-;39399:2;39358:43;:::o;40960:94::-;2352:12;:10;:12::i;:::-;2341:23;;:7;:5;:7::i;:::-;:23;;;2333:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;41037:12:::1;41025:9;:24;;;;40960:94:::0;:::o;40781:174::-;2352:12;:10;:12::i;:::-;2341:23;;:7;:5;:7::i;:::-;:23;;;2333:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;40885:9:::1;;40876:5;40859:14;:12;:14::i;:::-;:22;;;;:::i;:::-;:35;;40846:79;;;;;;;;;;;;:::i;:::-;;;;;;;;;40930:20;40940:2;40944:5;40930:9;:20::i;:::-;40781:174:::0;;:::o;2121:87::-;2167:7;2194:6;;;;;;;;;;;2187:13;;2121:87;:::o;29009:104::-;29065:13;29098:7;29091:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;29009:104;:::o;41405:819::-;41462:8;;;;;;;;;;;41461:9;41453:35;;;;;;;;;;;;:::i;:::-;;;;;;;;;39399:2;41501:5;:26;;41493:67;;;;;;;;;;;;:::i;:::-;;;;;;;;;41599:9;;41590:5;41573:14;:12;:14::i;:::-;:22;;;;:::i;:::-;:35;;41565:65;;;;;;;;;;;;:::i;:::-;;;;;;;;;41665:16;41684:5;41665:24;;41700:16;41719:18;:30;41738:10;41719:30;;;;;;;;;;;;;;;;41700:49;;41777:1;41763:11;:15;41760:277;;;41795:23;41825:11;41821:1;:15;;;;:::i;:::-;41795:41;;41862:18;41854:5;:26;41851:175;;;41923:18;41915:5;:26;;;;:::i;:::-;41901:40;;41851:175;;;42009:1;41995:15;;41851:175;41780:257;41760:277;39343:11;42069;:24;;;;:::i;:::-;42056:9;:37;;42043:97;;;;;;;;;;;;:::i;:::-;;;;;;;;;42181:5;42147:18;:30;42166:10;42147:30;;;;;;;;;;;;;;;;:39;;;;;;;:::i;:::-;;;;;;;;42191:28;42201:10;42213:5;42191:9;:28::i;:::-;41448:776;;41405:819;:::o;30687:288::-;30794:12;:10;:12::i;:::-;30782:24;;:8;:24;;;;30774:63;;;;;;;;;;;;:::i;:::-;;;;;;;;;30895:8;30850:18;:32;30869:12;:10;:12::i;:::-;30850:32;;;;;;;;;;;;;;;:42;30883:8;30850:42;;;;;;;;;;;;;;;;:53;;;;;;;;;;;;;;;;;;30948:8;30919:48;;30934:12;:10;:12::i;:::-;30919:48;;;30958:8;30919:48;;;;;;:::i;:::-;;;;;;;;30687:288;;:::o;39439:28::-;;;;;;;;;;;;;:::o;31758:355::-;31917:28;31927:4;31933:2;31937:7;31917:9;:28::i;:::-;31978:48;32001:4;32007:2;32011:7;32020:5;31978:22;:48::i;:::-;31956:149;;;;;;;;;;;;:::i;:::-;;;;;;;;;31758:355;;;;:::o;40486:75::-;2352:12;:10;:12::i;:::-;2341:23;;:7;:5;:7::i;:::-;:23;;;2333:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;40551:5:::1;40540:8;;:16;;;;;;;;;;;;;;;;;;40486:75:::0;:::o;39309:45::-;39343:11;39309:45;:::o;41059:341::-;41133:13;41169:16;41177:7;41169;:16::i;:::-;41161:76;;;;;;;;;;;;:::i;:::-;;;;;;;;;41284:1;41263:10;:8;:10::i;:::-;41257:24;:28;:138;;41383:12;41257:138;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;41326:10;:8;:10::i;:::-;41338:18;:7;:16;:18::i;:::-;41309:57;;;;;;;;;:::i;:::-;;;;;;;;;;;;;41257:138;41250:145;;41059:341;;;:::o;42234:96::-;2352:12;:10;:12::i;:::-;2341:23;;:7;:5;:7::i;:::-;:23;;;2333:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;42295:27:::1;42305:10;42316:5;42295:9;:27::i;:::-;42234:96:::0;:::o;39405:28::-;;;;:::o;39535:31::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;39956:161::-;40000:13;40020:92;;;;;;;;;;;;;;;;;;;39956:161;:::o;31046:164::-;31143:4;31167:18;:25;31186:5;31167:25;;;;;;;;;;;;;;;:35;31193:8;31167:35;;;;;;;;;;;;;;;;;;;;;;;;;31160:42;;31046:164;;;;:::o;3030:201::-;2352:12;:10;:12::i;:::-;2341:23;;:7;:5;:7::i;:::-;:23;;;2333:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;3139:1:::1;3119:22;;:8;:22;;;;3111:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;3195:28;3214:8;3195:18;:28::i;:::-;3030:201:::0;:::o;40125:88::-;2352:12;:10;:12::i;:::-;2341:23;;:7;:5;:7::i;:::-;:23;;;2333:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;40201:4:::1;40183:15;;:22;;;;;;;;;;;;;;;;;;40125:88::o:0;40365:116::-;40424:4;40448:18;:25;40467:5;40448:25;;;;;;;;;;;;;;;;40441:32;;40365:116;;;:::o;23309:157::-;23394:4;23433:25;23418:40;;;:11;:40;;;;23411:47;;23309:157;;;:::o;32368:111::-;32425:4;32459:12;;32449:7;:22;32442:29;;32368:111;;;:::o;862:98::-;915:7;942:10;935:17;;862:98;:::o;36412:196::-;36554:2;36527:15;:24;36543:7;36527:24;;;;;;;;;;;;:29;;;;;;;;;;;;;;;;;;36592:7;36588:2;36572:28;;36581:5;36572:28;;;;;;;;;;;;36412:196;;;:::o;34511:1783::-;34626:35;34664:20;34676:7;34664:11;:20::i;:::-;34626:58;;34697:22;34739:13;:18;;;34723:34;;:12;:10;:12::i;:::-;:34;;;:87;;;;34798:12;:10;:12::i;:::-;34774:36;;:20;34786:7;34774:11;:20::i;:::-;:36;;;34723:87;:154;;;;34827:50;34844:13;:18;;;34864:12;:10;:12::i;:::-;34827:16;:50::i;:::-;34723:154;34697:181;;34899:17;34891:80;;;;;;;;;;;;:::i;:::-;;;;;;;;;35014:4;34992:26;;:13;:18;;;:26;;;34984:77;;;;;;;;;;;;:::i;:::-;;;;;;;;;35094:1;35080:16;;:2;:16;;;;35072:66;;;;;;;;;;;;:::i;:::-;;;;;;;;;35151:43;35173:4;35179:2;35183:7;35192:1;35151:21;:43::i;:::-;35259:49;35276:1;35280:7;35289:13;:18;;;35259:8;:49::i;:::-;35543:1;35513:12;:18;35526:4;35513:18;;;;;;;;;;;;;;;:26;;;:31;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;35587:1;35559:12;:16;35572:2;35559:16;;;;;;;;;;;;;;;:24;;;:29;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;35635:43;;;;;;;;35650:2;35635:43;;;;;;35661:15;35635:43;;;;;35612:11;:20;35624:7;35612:20;;;;;;;;;;;:66;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;35918:19;35950:1;35940:7;:11;;;;:::i;:::-;35918:33;;36007:1;35966:43;;:11;:24;35978:11;35966:24;;;;;;;;;;;:29;;;;;;;;;;;;:43;;;35962:227;;;36030:20;36038:11;36030:7;:20::i;:::-;36026:152;;;36098:64;;;;;;;;36113:13;:18;;;36098:64;;;;;;36133:13;:28;;;36098:64;;;;;36071:11;:24;36083:11;36071:24;;;;;;;;;;;:91;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;36026:152;35962:227;36225:7;36221:2;36206:27;;36215:4;36206:27;;;;;;;;;;;;36244:42;36265:4;36271:2;36275:7;36284:1;36244:20;:42::i;:::-;34615:1679;;;34511:1783;;;:::o;28115:472::-;28176:21;;:::i;:::-;28218:16;28226:7;28218;:16::i;:::-;28210:71;;;;;;;;;;;;:::i;:::-;;;;;;;;;28299:12;28314:7;28299:22;;28294:216;28348:31;28382:11;:17;28394:4;28382:17;;;;;;;;;;;28348:51;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;28444:1;28418:28;;:9;:14;;;:28;;;28414:85;;28474:9;28467:16;;;;;;28414:85;28333:177;28325:6;;;;;:::i;:::-;;;;28294:216;;28115:472;;;;:::o;3391:191::-;3465:16;3484:6;;;;;;;;;;;3465:25;;3510:8;3501:6;;:17;;;;;;;;;;;;;;;;;;3565:8;3534:40;;3555:8;3534:40;;;;;;;;;;;;3454:128;3391:191;:::o;25472:282::-;25519:7;25720:15;:13;:15::i;:::-;25705:12;;:30;25698:37;;25472:282;:::o;32487:104::-;32556:27;32566:2;32570:8;32556:27;;;;;;;;;;;;:9;:27::i;:::-;32487:104;;:::o;37173:804::-;37328:4;37349:15;:2;:13;;;:15::i;:::-;37345:625;;;37401:2;37385:36;;;37422:12;:10;:12::i;:::-;37436:4;37442:7;37451:5;37385:72;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;37381:534;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;37648:1;37631:6;:13;:18;37627:273;;;37674:61;;;;;;;;;;:::i;:::-;;;;;;;;37627:273;37850:6;37844:13;37835:6;37831:2;37827:15;37820:38;37381:534;37518:45;;;37508:55;;;:6;:55;;;;37501:62;;;;;37345:625;37954:4;37947:11;;37173:804;;;;;;;:::o;39686:169::-;39738:13;39758:92;;;;;;;;;;;;;;;;;;;39686:169;:::o;3939:723::-;3995:13;4225:1;4216:5;:10;4212:53;;;4243:10;;;;;;;;;;;;;;;;;;;;;4212:53;4275:12;4290:5;4275:20;;4306:14;4331:78;4346:1;4338:4;:9;4331:78;;4364:8;;;;;:::i;:::-;;;;4395:2;4387:10;;;;;:::i;:::-;;;4331:78;;;4419:19;4451:6;4441:17;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;4419:39;;4469:154;4485:1;4476:5;:10;4469:154;;4513:1;4503:11;;;;;:::i;:::-;;;4580:2;4572:5;:10;;;;:::i;:::-;4559:2;:24;;;;:::i;:::-;4546:39;;4529:6;4536;4529:14;;;;;;;;:::i;:::-;;;;;:56;;;;;;;;;;;4609:2;4600:11;;;;;:::i;:::-;;;4469:154;;;4647:6;4633:21;;;;;3939:723;;;;:::o;38465:159::-;;;;;:::o;39036:158::-;;;;;:::o;39864:81::-;39921:4;39939:1;39932:8;;39864:81;:::o;32868:1389::-;32991:20;33014:12;;32991:35;;33059:1;33045:16;;:2;:16;;;;33037:62;;;;;;;;;;;;:::i;:::-;;;;;;;;;33244:21;33252:12;33244:7;:21::i;:::-;33243:22;33235:64;;;;;;;;;;;;:::i;:::-;;;;;;;;;33329:1;33318:8;:12;33310:60;;;;;;;;;;;;:::i;:::-;;;;;;;;;33383:61;33413:1;33417:2;33421:12;33435:8;33383:21;:61::i;:::-;33457:30;33490:12;:16;33503:2;33490:16;;;;;;;;;;;;;;;33457:49;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;33536:135;;;;;;;;33592:8;33562:11;:19;;;:39;;;;:::i;:::-;33536:135;;;;;;33651:8;33616:11;:24;;;:44;;;;:::i;:::-;33536:135;;;;;33517:12;:16;33530:2;33517:16;;;;;;;;;;;;;;;:154;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;33710:43;;;;;;;;33725:2;33710:43;;;;;;33736:15;33710:43;;;;;33682:11;:25;33694:12;33682:25;;;;;;;;;;;:71;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;33766:20;33789:12;33766:35;;33819:9;33814:325;33838:8;33834:1;:12;33814:325;;;33898:12;33894:2;33873:38;;33890:1;33873:38;;;;;;;;;;;;33952:59;33983:1;33987:2;33991:12;34005:5;33952:22;:59::i;:::-;33926:172;;;;;;;;;;;;:::i;:::-;;;;;;;;;34113:14;;;;;:::i;:::-;;;;33848:3;;;;;:::i;:::-;;;;33814:325;;;;34166:12;34151;:27;;;;34189:60;34218:1;34222:2;34226:12;34240:8;34189:20;:60::i;:::-;32980:1277;;;32868:1389;;;:::o;15130:387::-;15190:4;15398:12;15465:7;15453:20;15445:28;;15508:1;15501:4;:8;15494:15;;;15130:387;;;:::o;-1:-1:-1:-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;;;;;;;;;;;;;;;;;:::o;:::-;;;;;;;;;;;;;;;;;;;;;:::o;7:410:1:-;84:5;109:65;125:48;166:6;125:48;:::i;:::-;109:65;:::i;:::-;100:74;;197:6;190:5;183:21;235:4;228:5;224:16;273:3;264:6;259:3;255:16;252:25;249:112;;;280:79;;:::i;:::-;249:112;370:41;404:6;399:3;394;370:41;:::i;:::-;90:327;7:410;;;;;:::o;423:412::-;501:5;526:66;542:49;584:6;542:49;:::i;:::-;526:66;:::i;:::-;517:75;;615:6;608:5;601:21;653:4;646:5;642:16;691:3;682:6;677:3;673:16;670:25;667:112;;;698:79;;:::i;:::-;667:112;788:41;822:6;817:3;812;788:41;:::i;:::-;507:328;423:412;;;;;:::o;841:139::-;887:5;925:6;912:20;903:29;;941:33;968:5;941:33;:::i;:::-;841:139;;;;:::o;986:133::-;1029:5;1067:6;1054:20;1045:29;;1083:30;1107:5;1083:30;:::i;:::-;986:133;;;;:::o;1125:137::-;1170:5;1208:6;1195:20;1186:29;;1224:32;1250:5;1224:32;:::i;:::-;1125:137;;;;:::o;1268:141::-;1324:5;1355:6;1349:13;1340:22;;1371:32;1397:5;1371:32;:::i;:::-;1268:141;;;;:::o;1428:338::-;1483:5;1532:3;1525:4;1517:6;1513:17;1509:27;1499:122;;1540:79;;:::i;:::-;1499:122;1657:6;1644:20;1682:78;1756:3;1748:6;1741:4;1733:6;1729:17;1682:78;:::i;:::-;1673:87;;1489:277;1428:338;;;;:::o;1786:340::-;1842:5;1891:3;1884:4;1876:6;1872:17;1868:27;1858:122;;1899:79;;:::i;:::-;1858:122;2016:6;2003:20;2041:79;2116:3;2108:6;2101:4;2093:6;2089:17;2041:79;:::i;:::-;2032:88;;1848:278;1786:340;;;;:::o;2132:139::-;2178:5;2216:6;2203:20;2194:29;;2232:33;2259:5;2232:33;:::i;:::-;2132:139;;;;:::o;2277:329::-;2336:6;2385:2;2373:9;2364:7;2360:23;2356:32;2353:119;;;2391:79;;:::i;:::-;2353:119;2511:1;2536:53;2581:7;2572:6;2561:9;2557:22;2536:53;:::i;:::-;2526:63;;2482:117;2277:329;;;;:::o;2612:474::-;2680:6;2688;2737:2;2725:9;2716:7;2712:23;2708:32;2705:119;;;2743:79;;:::i;:::-;2705:119;2863:1;2888:53;2933:7;2924:6;2913:9;2909:22;2888:53;:::i;:::-;2878:63;;2834:117;2990:2;3016:53;3061:7;3052:6;3041:9;3037:22;3016:53;:::i;:::-;3006:63;;2961:118;2612:474;;;;;:::o;3092:619::-;3169:6;3177;3185;3234:2;3222:9;3213:7;3209:23;3205:32;3202:119;;;3240:79;;:::i;:::-;3202:119;3360:1;3385:53;3430:7;3421:6;3410:9;3406:22;3385:53;:::i;:::-;3375:63;;3331:117;3487:2;3513:53;3558:7;3549:6;3538:9;3534:22;3513:53;:::i;:::-;3503:63;;3458:118;3615:2;3641:53;3686:7;3677:6;3666:9;3662:22;3641:53;:::i;:::-;3631:63;;3586:118;3092:619;;;;;:::o;3717:943::-;3812:6;3820;3828;3836;3885:3;3873:9;3864:7;3860:23;3856:33;3853:120;;;3892:79;;:::i;:::-;3853:120;4012:1;4037:53;4082:7;4073:6;4062:9;4058:22;4037:53;:::i;:::-;4027:63;;3983:117;4139:2;4165:53;4210:7;4201:6;4190:9;4186:22;4165:53;:::i;:::-;4155:63;;4110:118;4267:2;4293:53;4338:7;4329:6;4318:9;4314:22;4293:53;:::i;:::-;4283:63;;4238:118;4423:2;4412:9;4408:18;4395:32;4454:18;4446:6;4443:30;4440:117;;;4476:79;;:::i;:::-;4440:117;4581:62;4635:7;4626:6;4615:9;4611:22;4581:62;:::i;:::-;4571:72;;4366:287;3717:943;;;;;;;:::o;4666:468::-;4731:6;4739;4788:2;4776:9;4767:7;4763:23;4759:32;4756:119;;;4794:79;;:::i;:::-;4756:119;4914:1;4939:53;4984:7;4975:6;4964:9;4960:22;4939:53;:::i;:::-;4929:63;;4885:117;5041:2;5067:50;5109:7;5100:6;5089:9;5085:22;5067:50;:::i;:::-;5057:60;;5012:115;4666:468;;;;;:::o;5140:474::-;5208:6;5216;5265:2;5253:9;5244:7;5240:23;5236:32;5233:119;;;5271:79;;:::i;:::-;5233:119;5391:1;5416:53;5461:7;5452:6;5441:9;5437:22;5416:53;:::i;:::-;5406:63;;5362:117;5518:2;5544:53;5589:7;5580:6;5569:9;5565:22;5544:53;:::i;:::-;5534:63;;5489:118;5140:474;;;;;:::o;5620:323::-;5676:6;5725:2;5713:9;5704:7;5700:23;5696:32;5693:119;;;5731:79;;:::i;:::-;5693:119;5851:1;5876:50;5918:7;5909:6;5898:9;5894:22;5876:50;:::i;:::-;5866:60;;5822:114;5620:323;;;;:::o;5949:327::-;6007:6;6056:2;6044:9;6035:7;6031:23;6027:32;6024:119;;;6062:79;;:::i;:::-;6024:119;6182:1;6207:52;6251:7;6242:6;6231:9;6227:22;6207:52;:::i;:::-;6197:62;;6153:116;5949:327;;;;:::o;6282:349::-;6351:6;6400:2;6388:9;6379:7;6375:23;6371:32;6368:119;;;6406:79;;:::i;:::-;6368:119;6526:1;6551:63;6606:7;6597:6;6586:9;6582:22;6551:63;:::i;:::-;6541:73;;6497:127;6282:349;;;;:::o;6637:509::-;6706:6;6755:2;6743:9;6734:7;6730:23;6726:32;6723:119;;;6761:79;;:::i;:::-;6723:119;6909:1;6898:9;6894:17;6881:31;6939:18;6931:6;6928:30;6925:117;;;6961:79;;:::i;:::-;6925:117;7066:63;7121:7;7112:6;7101:9;7097:22;7066:63;:::i;:::-;7056:73;;6852:287;6637:509;;;;:::o;7152:329::-;7211:6;7260:2;7248:9;7239:7;7235:23;7231:32;7228:119;;;7266:79;;:::i;:::-;7228:119;7386:1;7411:53;7456:7;7447:6;7436:9;7432:22;7411:53;:::i;:::-;7401:63;;7357:117;7152:329;;;;:::o;7487:118::-;7574:24;7592:5;7574:24;:::i;:::-;7569:3;7562:37;7487:118;;:::o;7611:109::-;7692:21;7707:5;7692:21;:::i;:::-;7687:3;7680:34;7611:109;;:::o;7726:360::-;7812:3;7840:38;7872:5;7840:38;:::i;:::-;7894:70;7957:6;7952:3;7894:70;:::i;:::-;7887:77;;7973:52;8018:6;8013:3;8006:4;7999:5;7995:16;7973:52;:::i;:::-;8050:29;8072:6;8050:29;:::i;:::-;8045:3;8041:39;8034:46;;7816:270;7726:360;;;;:::o;8092:364::-;8180:3;8208:39;8241:5;8208:39;:::i;:::-;8263:71;8327:6;8322:3;8263:71;:::i;:::-;8256:78;;8343:52;8388:6;8383:3;8376:4;8369:5;8365:16;8343:52;:::i;:::-;8420:29;8442:6;8420:29;:::i;:::-;8415:3;8411:39;8404:46;;8184:272;8092:364;;;;:::o;8462:377::-;8568:3;8596:39;8629:5;8596:39;:::i;:::-;8651:89;8733:6;8728:3;8651:89;:::i;:::-;8644:96;;8749:52;8794:6;8789:3;8782:4;8775:5;8771:16;8749:52;:::i;:::-;8826:6;8821:3;8817:16;8810:23;;8572:267;8462:377;;;;:::o;8845:366::-;8987:3;9008:67;9072:2;9067:3;9008:67;:::i;:::-;9001:74;;9084:93;9173:3;9084:93;:::i;:::-;9202:2;9197:3;9193:12;9186:19;;8845:366;;;:::o;9217:::-;9359:3;9380:67;9444:2;9439:3;9380:67;:::i;:::-;9373:74;;9456:93;9545:3;9456:93;:::i;:::-;9574:2;9569:3;9565:12;9558:19;;9217:366;;;:::o;9589:::-;9731:3;9752:67;9816:2;9811:3;9752:67;:::i;:::-;9745:74;;9828:93;9917:3;9828:93;:::i;:::-;9946:2;9941:3;9937:12;9930:19;;9589:366;;;:::o;9961:::-;10103:3;10124:67;10188:2;10183:3;10124:67;:::i;:::-;10117:74;;10200:93;10289:3;10200:93;:::i;:::-;10318:2;10313:3;10309:12;10302:19;;9961:366;;;:::o;10333:::-;10475:3;10496:67;10560:2;10555:3;10496:67;:::i;:::-;10489:74;;10572:93;10661:3;10572:93;:::i;:::-;10690:2;10685:3;10681:12;10674:19;;10333:366;;;:::o;10705:::-;10847:3;10868:67;10932:2;10927:3;10868:67;:::i;:::-;10861:74;;10944:93;11033:3;10944:93;:::i;:::-;11062:2;11057:3;11053:12;11046:19;;10705:366;;;:::o;11077:::-;11219:3;11240:67;11304:2;11299:3;11240:67;:::i;:::-;11233:74;;11316:93;11405:3;11316:93;:::i;:::-;11434:2;11429:3;11425:12;11418:19;;11077:366;;;:::o;11449:::-;11591:3;11612:67;11676:2;11671:3;11612:67;:::i;:::-;11605:74;;11688:93;11777:3;11688:93;:::i;:::-;11806:2;11801:3;11797:12;11790:19;;11449:366;;;:::o;11821:::-;11963:3;11984:67;12048:2;12043:3;11984:67;:::i;:::-;11977:74;;12060:93;12149:3;12060:93;:::i;:::-;12178:2;12173:3;12169:12;12162:19;;11821:366;;;:::o;12193:::-;12335:3;12356:67;12420:2;12415:3;12356:67;:::i;:::-;12349:74;;12432:93;12521:3;12432:93;:::i;:::-;12550:2;12545:3;12541:12;12534:19;;12193:366;;;:::o;12565:::-;12707:3;12728:67;12792:2;12787:3;12728:67;:::i;:::-;12721:74;;12804:93;12893:3;12804:93;:::i;:::-;12922:2;12917:3;12913:12;12906:19;;12565:366;;;:::o;12937:::-;13079:3;13100:67;13164:2;13159:3;13100:67;:::i;:::-;13093:74;;13176:93;13265:3;13176:93;:::i;:::-;13294:2;13289:3;13285:12;13278:19;;12937:366;;;:::o;13309:::-;13451:3;13472:67;13536:2;13531:3;13472:67;:::i;:::-;13465:74;;13548:93;13637:3;13548:93;:::i;:::-;13666:2;13661:3;13657:12;13650:19;;13309:366;;;:::o;13681:400::-;13841:3;13862:84;13944:1;13939:3;13862:84;:::i;:::-;13855:91;;13955:93;14044:3;13955:93;:::i;:::-;14073:1;14068:3;14064:11;14057:18;;13681:400;;;:::o;14087:366::-;14229:3;14250:67;14314:2;14309:3;14250:67;:::i;:::-;14243:74;;14326:93;14415:3;14326:93;:::i;:::-;14444:2;14439:3;14435:12;14428:19;;14087:366;;;:::o;14459:::-;14601:3;14622:67;14686:2;14681:3;14622:67;:::i;:::-;14615:74;;14698:93;14787:3;14698:93;:::i;:::-;14816:2;14811:3;14807:12;14800:19;;14459:366;;;:::o;14831:::-;14973:3;14994:67;15058:2;15053:3;14994:67;:::i;:::-;14987:74;;15070:93;15159:3;15070:93;:::i;:::-;15188:2;15183:3;15179:12;15172:19;;14831:366;;;:::o;15203:::-;15345:3;15366:67;15430:2;15425:3;15366:67;:::i;:::-;15359:74;;15442:93;15531:3;15442:93;:::i;:::-;15560:2;15555:3;15551:12;15544:19;;15203:366;;;:::o;15575:::-;15717:3;15738:67;15802:2;15797:3;15738:67;:::i;:::-;15731:74;;15814:93;15903:3;15814:93;:::i;:::-;15932:2;15927:3;15923:12;15916:19;;15575:366;;;:::o;15947:398::-;16106:3;16127:83;16208:1;16203:3;16127:83;:::i;:::-;16120:90;;16219:93;16308:3;16219:93;:::i;:::-;16337:1;16332:3;16328:11;16321:18;;15947:398;;;:::o;16351:366::-;16493:3;16514:67;16578:2;16573:3;16514:67;:::i;:::-;16507:74;;16590:93;16679:3;16590:93;:::i;:::-;16708:2;16703:3;16699:12;16692:19;;16351:366;;;:::o;16723:::-;16865:3;16886:67;16950:2;16945:3;16886:67;:::i;:::-;16879:74;;16962:93;17051:3;16962:93;:::i;:::-;17080:2;17075:3;17071:12;17064:19;;16723:366;;;:::o;17095:::-;17237:3;17258:67;17322:2;17317:3;17258:67;:::i;:::-;17251:74;;17334:93;17423:3;17334:93;:::i;:::-;17452:2;17447:3;17443:12;17436:19;;17095:366;;;:::o;17467:::-;17609:3;17630:67;17694:2;17689:3;17630:67;:::i;:::-;17623:74;;17706:93;17795:3;17706:93;:::i;:::-;17824:2;17819:3;17815:12;17808:19;;17467:366;;;:::o;17839:::-;17981:3;18002:67;18066:2;18061:3;18002:67;:::i;:::-;17995:74;;18078:93;18167:3;18078:93;:::i;:::-;18196:2;18191:3;18187:12;18180:19;;17839:366;;;:::o;18211:::-;18353:3;18374:67;18438:2;18433:3;18374:67;:::i;:::-;18367:74;;18450:93;18539:3;18450:93;:::i;:::-;18568:2;18563:3;18559:12;18552:19;;18211:366;;;:::o;18955:::-;19097:3;19118:67;19182:2;19177:3;19118:67;:::i;:::-;19111:74;;19194:93;19283:3;19194:93;:::i;:::-;19312:2;19307:3;19303:12;19296:19;;18955:366;;;:::o;19327:118::-;19414:24;19432:5;19414:24;:::i;:::-;19409:3;19402:37;19327:118;;:::o;19451:701::-;19732:3;19754:95;19845:3;19836:6;19754:95;:::i;:::-;19747:102;;19866:95;19957:3;19948:6;19866:95;:::i;:::-;19859:102;;19978:148;20122:3;19978:148;:::i;:::-;19971:155;;20143:3;20136:10;;19451:701;;;;;:::o;20158:379::-;20342:3;20364:147;20507:3;20364:147;:::i;:::-;20357:154;;20528:3;20521:10;;20158:379;;;:::o;20543:222::-;20636:4;20674:2;20663:9;20659:18;20651:26;;20687:71;20755:1;20744:9;20740:17;20731:6;20687:71;:::i;:::-;20543:222;;;;:::o;20771:640::-;20966:4;21004:3;20993:9;20989:19;20981:27;;21018:71;21086:1;21075:9;21071:17;21062:6;21018:71;:::i;:::-;21099:72;21167:2;21156:9;21152:18;21143:6;21099:72;:::i;:::-;21181;21249:2;21238:9;21234:18;21225:6;21181:72;:::i;:::-;21300:9;21294:4;21290:20;21285:2;21274:9;21270:18;21263:48;21328:76;21399:4;21390:6;21328:76;:::i;:::-;21320:84;;20771:640;;;;;;;:::o;21417:210::-;21504:4;21542:2;21531:9;21527:18;21519:26;;21555:65;21617:1;21606:9;21602:17;21593:6;21555:65;:::i;:::-;21417:210;;;;:::o;21633:313::-;21746:4;21784:2;21773:9;21769:18;21761:26;;21833:9;21827:4;21823:20;21819:1;21808:9;21804:17;21797:47;21861:78;21934:4;21925:6;21861:78;:::i;:::-;21853:86;;21633:313;;;;:::o;21952:419::-;22118:4;22156:2;22145:9;22141:18;22133:26;;22205:9;22199:4;22195:20;22191:1;22180:9;22176:17;22169:47;22233:131;22359:4;22233:131;:::i;:::-;22225:139;;21952:419;;;:::o;22377:::-;22543:4;22581:2;22570:9;22566:18;22558:26;;22630:9;22624:4;22620:20;22616:1;22605:9;22601:17;22594:47;22658:131;22784:4;22658:131;:::i;:::-;22650:139;;22377:419;;;:::o;22802:::-;22968:4;23006:2;22995:9;22991:18;22983:26;;23055:9;23049:4;23045:20;23041:1;23030:9;23026:17;23019:47;23083:131;23209:4;23083:131;:::i;:::-;23075:139;;22802:419;;;:::o;23227:::-;23393:4;23431:2;23420:9;23416:18;23408:26;;23480:9;23474:4;23470:20;23466:1;23455:9;23451:17;23444:47;23508:131;23634:4;23508:131;:::i;:::-;23500:139;;23227:419;;;:::o;23652:::-;23818:4;23856:2;23845:9;23841:18;23833:26;;23905:9;23899:4;23895:20;23891:1;23880:9;23876:17;23869:47;23933:131;24059:4;23933:131;:::i;:::-;23925:139;;23652:419;;;:::o;24077:::-;24243:4;24281:2;24270:9;24266:18;24258:26;;24330:9;24324:4;24320:20;24316:1;24305:9;24301:17;24294:47;24358:131;24484:4;24358:131;:::i;:::-;24350:139;;24077:419;;;:::o;24502:::-;24668:4;24706:2;24695:9;24691:18;24683:26;;24755:9;24749:4;24745:20;24741:1;24730:9;24726:17;24719:47;24783:131;24909:4;24783:131;:::i;:::-;24775:139;;24502:419;;;:::o;24927:::-;25093:4;25131:2;25120:9;25116:18;25108:26;;25180:9;25174:4;25170:20;25166:1;25155:9;25151:17;25144:47;25208:131;25334:4;25208:131;:::i;:::-;25200:139;;24927:419;;;:::o;25352:::-;25518:4;25556:2;25545:9;25541:18;25533:26;;25605:9;25599:4;25595:20;25591:1;25580:9;25576:17;25569:47;25633:131;25759:4;25633:131;:::i;:::-;25625:139;;25352:419;;;:::o;25777:::-;25943:4;25981:2;25970:9;25966:18;25958:26;;26030:9;26024:4;26020:20;26016:1;26005:9;26001:17;25994:47;26058:131;26184:4;26058:131;:::i;:::-;26050:139;;25777:419;;;:::o;26202:::-;26368:4;26406:2;26395:9;26391:18;26383:26;;26455:9;26449:4;26445:20;26441:1;26430:9;26426:17;26419:47;26483:131;26609:4;26483:131;:::i;:::-;26475:139;;26202:419;;;:::o;26627:::-;26793:4;26831:2;26820:9;26816:18;26808:26;;26880:9;26874:4;26870:20;26866:1;26855:9;26851:17;26844:47;26908:131;27034:4;26908:131;:::i;:::-;26900:139;;26627:419;;;:::o;27052:::-;27218:4;27256:2;27245:9;27241:18;27233:26;;27305:9;27299:4;27295:20;27291:1;27280:9;27276:17;27269:47;27333:131;27459:4;27333:131;:::i;:::-;27325:139;;27052:419;;;:::o;27477:::-;27643:4;27681:2;27670:9;27666:18;27658:26;;27730:9;27724:4;27720:20;27716:1;27705:9;27701:17;27694:47;27758:131;27884:4;27758:131;:::i;:::-;27750:139;;27477:419;;;:::o;27902:::-;28068:4;28106:2;28095:9;28091:18;28083:26;;28155:9;28149:4;28145:20;28141:1;28130:9;28126:17;28119:47;28183:131;28309:4;28183:131;:::i;:::-;28175:139;;27902:419;;;:::o;28327:::-;28493:4;28531:2;28520:9;28516:18;28508:26;;28580:9;28574:4;28570:20;28566:1;28555:9;28551:17;28544:47;28608:131;28734:4;28608:131;:::i;:::-;28600:139;;28327:419;;;:::o;28752:::-;28918:4;28956:2;28945:9;28941:18;28933:26;;29005:9;28999:4;28995:20;28991:1;28980:9;28976:17;28969:47;29033:131;29159:4;29033:131;:::i;:::-;29025:139;;28752:419;;;:::o;29177:::-;29343:4;29381:2;29370:9;29366:18;29358:26;;29430:9;29424:4;29420:20;29416:1;29405:9;29401:17;29394:47;29458:131;29584:4;29458:131;:::i;:::-;29450:139;;29177:419;;;:::o;29602:::-;29768:4;29806:2;29795:9;29791:18;29783:26;;29855:9;29849:4;29845:20;29841:1;29830:9;29826:17;29819:47;29883:131;30009:4;29883:131;:::i;:::-;29875:139;;29602:419;;;:::o;30027:::-;30193:4;30231:2;30220:9;30216:18;30208:26;;30280:9;30274:4;30270:20;30266:1;30255:9;30251:17;30244:47;30308:131;30434:4;30308:131;:::i;:::-;30300:139;;30027:419;;;:::o;30452:::-;30618:4;30656:2;30645:9;30641:18;30633:26;;30705:9;30699:4;30695:20;30691:1;30680:9;30676:17;30669:47;30733:131;30859:4;30733:131;:::i;:::-;30725:139;;30452:419;;;:::o;30877:::-;31043:4;31081:2;31070:9;31066:18;31058:26;;31130:9;31124:4;31120:20;31116:1;31105:9;31101:17;31094:47;31158:131;31284:4;31158:131;:::i;:::-;31150:139;;30877:419;;;:::o;31302:::-;31468:4;31506:2;31495:9;31491:18;31483:26;;31555:9;31549:4;31545:20;31541:1;31530:9;31526:17;31519:47;31583:131;31709:4;31583:131;:::i;:::-;31575:139;;31302:419;;;:::o;31727:::-;31893:4;31931:2;31920:9;31916:18;31908:26;;31980:9;31974:4;31970:20;31966:1;31955:9;31951:17;31944:47;32008:131;32134:4;32008:131;:::i;:::-;32000:139;;31727:419;;;:::o;32577:::-;32743:4;32781:2;32770:9;32766:18;32758:26;;32830:9;32824:4;32820:20;32816:1;32805:9;32801:17;32794:47;32858:131;32984:4;32858:131;:::i;:::-;32850:139;;32577:419;;;:::o;33002:222::-;33095:4;33133:2;33122:9;33118:18;33110:26;;33146:71;33214:1;33203:9;33199:17;33190:6;33146:71;:::i;:::-;33002:222;;;;:::o;33230:129::-;33264:6;33291:20;;:::i;:::-;33281:30;;33320:33;33348:4;33340:6;33320:33;:::i;:::-;33230:129;;;:::o;33365:75::-;33398:6;33431:2;33425:9;33415:19;;33365:75;:::o;33446:307::-;33507:4;33597:18;33589:6;33586:30;33583:56;;;33619:18;;:::i;:::-;33583:56;33657:29;33679:6;33657:29;:::i;:::-;33649:37;;33741:4;33735;33731:15;33723:23;;33446:307;;;:::o;33759:308::-;33821:4;33911:18;33903:6;33900:30;33897:56;;;33933:18;;:::i;:::-;33897:56;33971:29;33993:6;33971:29;:::i;:::-;33963:37;;34055:4;34049;34045:15;34037:23;;33759:308;;;:::o;34073:98::-;34124:6;34158:5;34152:12;34142:22;;34073:98;;;:::o;34177:99::-;34229:6;34263:5;34257:12;34247:22;;34177:99;;;:::o;34282:168::-;34365:11;34399:6;34394:3;34387:19;34439:4;34434:3;34430:14;34415:29;;34282:168;;;;:::o;34456:147::-;34557:11;34594:3;34579:18;;34456:147;;;;:::o;34609:169::-;34693:11;34727:6;34722:3;34715:19;34767:4;34762:3;34758:14;34743:29;;34609:169;;;;:::o;34784:148::-;34886:11;34923:3;34908:18;;34784:148;;;;:::o;34938:273::-;34978:3;34997:20;35015:1;34997:20;:::i;:::-;34992:25;;35031:20;35049:1;35031:20;:::i;:::-;35026:25;;35153:1;35117:34;35113:42;35110:1;35107:49;35104:75;;;35159:18;;:::i;:::-;35104:75;35203:1;35200;35196:9;35189:16;;34938:273;;;;:::o;35217:305::-;35257:3;35276:20;35294:1;35276:20;:::i;:::-;35271:25;;35310:20;35328:1;35310:20;:::i;:::-;35305:25;;35464:1;35396:66;35392:74;35389:1;35386:81;35383:107;;;35470:18;;:::i;:::-;35383:107;35514:1;35511;35507:9;35500:16;;35217:305;;;;:::o;35528:185::-;35568:1;35585:20;35603:1;35585:20;:::i;:::-;35580:25;;35619:20;35637:1;35619:20;:::i;:::-;35614:25;;35658:1;35648:35;;35663:18;;:::i;:::-;35648:35;35705:1;35702;35698:9;35693:14;;35528:185;;;;:::o;35719:348::-;35759:7;35782:20;35800:1;35782:20;:::i;:::-;35777:25;;35816:20;35834:1;35816:20;:::i;:::-;35811:25;;36004:1;35936:66;35932:74;35929:1;35926:81;35921:1;35914:9;35907:17;35903:105;35900:131;;;36011:18;;:::i;:::-;35900:131;36059:1;36056;36052:9;36041:20;;35719:348;;;;:::o;36073:191::-;36113:4;36133:20;36151:1;36133:20;:::i;:::-;36128:25;;36167:20;36185:1;36167:20;:::i;:::-;36162:25;;36206:1;36203;36200:8;36197:34;;;36211:18;;:::i;:::-;36197:34;36256:1;36253;36249:9;36241:17;;36073:191;;;;:::o;36270:96::-;36307:7;36336:24;36354:5;36336:24;:::i;:::-;36325:35;;36270:96;;;:::o;36372:90::-;36406:7;36449:5;36442:13;36435:21;36424:32;;36372:90;;;:::o;36468:149::-;36504:7;36544:66;36537:5;36533:78;36522:89;;36468:149;;;:::o;36623:118::-;36660:7;36700:34;36693:5;36689:46;36678:57;;36623:118;;;:::o;36747:126::-;36784:7;36824:42;36817:5;36813:54;36802:65;;36747:126;;;:::o;36879:77::-;36916:7;36945:5;36934:16;;36879:77;;;:::o;36962:154::-;37046:6;37041:3;37036;37023:30;37108:1;37099:6;37094:3;37090:16;37083:27;36962:154;;;:::o;37122:307::-;37190:1;37200:113;37214:6;37211:1;37208:13;37200:113;;;37299:1;37294:3;37290:11;37284:18;37280:1;37275:3;37271:11;37264:39;37236:2;37233:1;37229:10;37224:15;;37200:113;;;37331:6;37328:1;37325:13;37322:101;;;37411:1;37402:6;37397:3;37393:16;37386:27;37322:101;37171:258;37122:307;;;:::o;37435:171::-;37474:3;37497:24;37515:5;37497:24;:::i;:::-;37488:33;;37543:4;37536:5;37533:15;37530:41;;;37551:18;;:::i;:::-;37530:41;37598:1;37591:5;37587:13;37580:20;;37435:171;;;:::o;37612:320::-;37656:6;37693:1;37687:4;37683:12;37673:22;;37740:1;37734:4;37730:12;37761:18;37751:81;;37817:4;37809:6;37805:17;37795:27;;37751:81;37879:2;37871:6;37868:14;37848:18;37845:38;37842:84;;;37898:18;;:::i;:::-;37842:84;37663:269;37612:320;;;:::o;37938:281::-;38021:27;38043:4;38021:27;:::i;:::-;38013:6;38009:40;38151:6;38139:10;38136:22;38115:18;38103:10;38100:34;38097:62;38094:88;;;38162:18;;:::i;:::-;38094:88;38202:10;38198:2;38191:22;37981:238;37938:281;;:::o;38225:233::-;38264:3;38287:24;38305:5;38287:24;:::i;:::-;38278:33;;38333:66;38326:5;38323:77;38320:103;;;38403:18;;:::i;:::-;38320:103;38450:1;38443:5;38439:13;38432:20;;38225:233;;;:::o;38464:176::-;38496:1;38513:20;38531:1;38513:20;:::i;:::-;38508:25;;38547:20;38565:1;38547:20;:::i;:::-;38542:25;;38586:1;38576:35;;38591:18;;:::i;:::-;38576:35;38632:1;38629;38625:9;38620:14;;38464:176;;;;:::o;38646:180::-;38694:77;38691:1;38684:88;38791:4;38788:1;38781:15;38815:4;38812:1;38805:15;38832:180;38880:77;38877:1;38870:88;38977:4;38974:1;38967:15;39001:4;38998:1;38991:15;39018:180;39066:77;39063:1;39056:88;39163:4;39160:1;39153:15;39187:4;39184:1;39177:15;39204:180;39252:77;39249:1;39242:88;39349:4;39346:1;39339:15;39373:4;39370:1;39363:15;39390:180;39438:77;39435:1;39428:88;39535:4;39532:1;39525:15;39559:4;39556:1;39549:15;39576:117;39685:1;39682;39675:12;39699:117;39808:1;39805;39798:12;39822:117;39931:1;39928;39921:12;39945:117;40054:1;40051;40044:12;40068:102;40109:6;40160:2;40156:7;40151:2;40144:5;40140:14;40136:28;40126:38;;40068:102;;;:::o;40176:221::-;40316:34;40312:1;40304:6;40300:14;40293:58;40385:4;40380:2;40372:6;40368:15;40361:29;40176:221;:::o;40403:171::-;40543:23;40539:1;40531:6;40527:14;40520:47;40403:171;:::o;40580:225::-;40720:34;40716:1;40708:6;40704:14;40697:58;40789:8;40784:2;40776:6;40772:15;40765:33;40580:225;:::o;40811:229::-;40951:34;40947:1;40939:6;40935:14;40928:58;41020:12;41015:2;41007:6;41003:15;40996:37;40811:229;:::o;41046:222::-;41186:34;41182:1;41174:6;41170:14;41163:58;41255:5;41250:2;41242:6;41238:15;41231:30;41046:222;:::o;41274:224::-;41414:34;41410:1;41402:6;41398:14;41391:58;41483:7;41478:2;41470:6;41466:15;41459:32;41274:224;:::o;41504:244::-;41644:34;41640:1;41632:6;41628:14;41621:58;41713:27;41708:2;41700:6;41696:15;41689:52;41504:244;:::o;41754:163::-;41894:15;41890:1;41882:6;41878:14;41871:39;41754:163;:::o;41923:168::-;42063:20;42059:1;42051:6;42047:14;42040:44;41923:168;:::o;42097:230::-;42237:34;42233:1;42225:6;42221:14;42214:58;42306:13;42301:2;42293:6;42289:15;42282:38;42097:230;:::o;42333:179::-;42473:31;42469:1;42461:6;42457:14;42450:55;42333:179;:::o;42518:225::-;42658:34;42654:1;42646:6;42642:14;42635:58;42727:8;42722:2;42714:6;42710:15;42703:33;42518:225;:::o;42749:221::-;42889:34;42885:1;42877:6;42873:14;42866:58;42958:4;42953:2;42945:6;42941:15;42934:29;42749:221;:::o;42976:155::-;43116:7;43112:1;43104:6;43100:14;43093:31;42976:155;:::o;43137:182::-;43277:34;43273:1;43265:6;43261:14;43254:58;43137:182;:::o;43325:234::-;43465:34;43461:1;43453:6;43449:14;43442:58;43534:17;43529:2;43521:6;43517:15;43510:42;43325:234;:::o;43565:176::-;43705:28;43701:1;43693:6;43689:14;43682:52;43565:176;:::o;43747:237::-;43887:34;43883:1;43875:6;43871:14;43864:58;43956:20;43951:2;43943:6;43939:15;43932:45;43747:237;:::o;43990:221::-;44130:34;44126:1;44118:6;44114:14;44107:58;44199:4;44194:2;44186:6;44182:15;44175:29;43990:221;:::o;44217:114::-;;:::o;44337:222::-;44477:34;44473:1;44465:6;44461:14;44454:58;44546:5;44541:2;44533:6;44529:15;44522:30;44337:222;:::o;44565:238::-;44705:34;44701:1;44693:6;44689:14;44682:58;44774:21;44769:2;44761:6;44757:15;44750:46;44565:238;:::o;44809:179::-;44949:31;44945:1;44937:6;44933:14;44926:55;44809:179;:::o;44994:220::-;45134:34;45130:1;45122:6;45118:14;45111:58;45203:3;45198:2;45190:6;45186:15;45179:28;44994:220;:::o;45220:164::-;45360:16;45356:1;45348:6;45344:14;45337:40;45220:164;:::o;45390:233::-;45530:34;45526:1;45518:6;45514:14;45507:58;45599:16;45594:2;45586:6;45582:15;45575:41;45390:233;:::o;45869:232::-;46009:34;46005:1;45997:6;45993:14;45986:58;46078:15;46073:2;46065:6;46061:15;46054:40;45869:232;:::o;46107:122::-;46180:24;46198:5;46180:24;:::i;:::-;46173:5;46170:35;46160:63;;46219:1;46216;46209:12;46160:63;46107:122;:::o;46235:116::-;46305:21;46320:5;46305:21;:::i;:::-;46298:5;46295:32;46285:60;;46341:1;46338;46331:12;46285:60;46235:116;:::o;46357:120::-;46429:23;46446:5;46429:23;:::i;:::-;46422:5;46419:34;46409:62;;46467:1;46464;46457:12;46409:62;46357:120;:::o;46483:122::-;46556:24;46574:5;46556:24;:::i;:::-;46549:5;46546:35;46536:63;;46595:1;46592;46585:12;46536:63;46483:122;:::o

Swarm Source

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