ETH Price: $2,920.02 (-7.82%)
Gas: 8 Gwei

Token

0x3landers (0x3lander)
 

Overview

Max Total Supply

599 0x3lander

Holders

69

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A
Filtered by Token Holder
wickeddig.eth
Balance
5 0x3lander
0xc36596e05312410fc41337ec6c2914a4fca8d6c1
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:
expansion3Landers

Compiler Version
v0.8.7+commit.e28d00a7

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

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

/**
   ___       ____  _                 _               
  / _ \     |___ \| |               | |              
 | | | |_  __ __) | | __ _ _ __   __| | ___ _ __ ___ 
 | | | \ \/ /|__ <| |/ _` | '_ \ / _` |/ _ \ '__/ __|
 | |_| |>  < ___) | | (_| | | | | (_| |  __/ |  \__ \
  \___//_/\_\____/|_|\__,_|_| |_|\__,_|\___|_|  |___/                                                                                                                                                                                                                            
*/

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

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


// File contracts/expansion3Landers.sol


contract expansion3Landers is ERC721A, Ownable {

    string public baseURI = "";
    string public contractURI = "";
    string public constant baseExtension = ".json";
    address public constant proxyRegistryAddress = 0xa5409ec958C83C3f309868babACA7c86DCB077c1;

    uint256 public constant MAX_PER_TX_FREE = 10;
    uint256 public constant MAX_PER_TX = 10;
    uint256 public constant FREE_MAX_SUPPLY = 555;
    uint256 public constant MAX_SUPPLY = 5555;
    uint256 public constant price = 0.025 ether;

    bool public paused = true;

    constructor() ERC721A("0x3landers", "0x3lander") {}

    function mint(uint256 _amount) external payable {
        address _caller = _msgSender();
        require(!paused, "Paused");
        require(MAX_SUPPLY >= totalSupply() + _amount, "Exceeds max supply");
        require(_amount > 0, "No 0 mints");
        require(tx.origin == _caller, "No contracts");

        if(FREE_MAX_SUPPLY >= totalSupply()){
            require(MAX_PER_TX_FREE >= _amount , "Excess max per free tx");
        }else{
            require(MAX_PER_TX >= _amount , "Excess max per paid tx");
            require(_amount * price == msg.value, "Invalid funds provided");
        }

        _safeMint(_caller, _amount);
    }

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

        return super.isApprovedForAll(owner, operator);
    }

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

    function setupOS() external onlyOwner {
        _safeMint(_msgSender(), 1);
    }

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

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

    function setContractURI(string memory _contractURI) external onlyOwner {
        contractURI = _contractURI;
    }

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

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

Contract Security Audit

Contract ABI

[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"approved","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[],"name":"FREE_MAX_SUPPLY","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"MAX_PER_TX","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"MAX_PER_TX_FREE","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"MAX_SUPPLY","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"baseExtension","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"baseURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"contractURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_amount","type":"uint256"}],"name":"mint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bool","name":"_state","type":"bool"}],"name":"pause","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"paused","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"price","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"proxyRegistryAddress","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"_data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"baseURI_","type":"string"}],"name":"setBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_contractURI","type":"string"}],"name":"setContractURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"setupOS","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"}]

60806040526000805560405180602001604052806000815250600890805190602001906200002f92919062000215565b5060405180602001604052806000815250600990805190602001906200005792919062000215565b506001600a60006101000a81548160ff0219169083151502179055503480156200008057600080fd5b506040518060400160405280600a81526020017f3078336c616e64657273000000000000000000000000000000000000000000008152506040518060400160405280600981526020017f3078336c616e646572000000000000000000000000000000000000000000000081525081600190805190602001906200010592919062000215565b5080600290805190602001906200011e92919062000215565b50505062000141620001356200014760201b60201c565b6200014f60201b60201c565b6200032a565b600033905090565b6000600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600760006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b8280546200022390620002c5565b90600052602060002090601f01602090048101928262000247576000855562000293565b82601f106200026257805160ff191683800117855562000293565b8280016001018555821562000293579182015b828111156200029257825182559160200191906001019062000275565b5b509050620002a29190620002a6565b5090565b5b80821115620002c1576000816000905550600101620002a7565b5090565b60006002820490506001821680620002de57607f821691505b60208210811415620002f557620002f4620002fb565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b614948806200033a6000396000f3fe6080604052600436106102045760003560e01c80636c0360eb11610118578063a22cb465116100a0578063cd7c03261161006f578063cd7c032614610736578063e8a3d48514610761578063e985e9c51461078c578063f2fde38b146107c9578063f43a22dc146107f257610204565b8063a22cb4651461067c578063b88d4fde146106a5578063c6682862146106ce578063c87b56dd146106f957610204565b80638da5cb5b116100e75780638da5cb5b146105b6578063938e3d7b146105e157806395d89b411461060a578063a035b1fe14610635578063a0712d681461066057610204565b80636c0360eb1461050c57806370a0823114610537578063715018a6146105745780638069876d1461058b57610204565b806332cb6b0c1161019b5780634f6ccce71161016a5780634f6ccce71461042757806355f804b3146104645780635c975abb1461048d5780636352211e146104b8578063698982ba146104f557610204565b806332cb6b0c146103915780633ccfd60b146103bc57806342842e0e146103d3578063463fff79146103fc57610204565b8063095ea7b3116101d7578063095ea7b3146102d757806318160ddd1461030057806323b872dd1461032b5780632f745c591461035457610204565b806301ffc9a71461020957806302329a291461024657806306fdde031461026f578063081812fc1461029a575b600080fd5b34801561021557600080fd5b50610230600480360381019061022b919061324a565b61081d565b60405161023d9190613917565b60405180910390f35b34801561025257600080fd5b5061026d6004803603810190610268919061321d565b610967565b005b34801561027b57600080fd5b50610284610a00565b6040516102919190613932565b60405180910390f35b3480156102a657600080fd5b506102c160048036038101906102bc919061331a565b610a92565b6040516102ce91906138b0565b60405180910390f35b3480156102e357600080fd5b506102fe60048036038101906102f991906131dd565b610b17565b005b34801561030c57600080fd5b50610315610c30565b6040516103229190613cb4565b60405180910390f35b34801561033757600080fd5b50610352600480360381019061034d91906130c7565b610c39565b005b34801561036057600080fd5b5061037b600480360381019061037691906131dd565b610c49565b6040516103889190613cb4565b60405180910390f35b34801561039d57600080fd5b506103a6610e47565b6040516103b39190613cb4565b60405180910390f35b3480156103c857600080fd5b506103d1610e4d565b005b3480156103df57600080fd5b506103fa60048036038101906103f591906130c7565b610f85565b005b34801561040857600080fd5b50610411610fa5565b60405161041e9190613cb4565b60405180910390f35b34801561043357600080fd5b5061044e6004803603810190610449919061331a565b610faa565b60405161045b9190613cb4565b60405180910390f35b34801561047057600080fd5b5061048b600480360381019061048691906132d1565b610ffd565b005b34801561049957600080fd5b506104a2611093565b6040516104af9190613917565b60405180910390f35b3480156104c457600080fd5b506104df60048036038101906104da919061331a565b6110a6565b6040516104ec91906138b0565b60405180910390f35b34801561050157600080fd5b5061050a6110bc565b005b34801561051857600080fd5b5061052161114c565b60405161052e9190613932565b60405180910390f35b34801561054357600080fd5b5061055e6004803603810190610559919061305a565b6111da565b60405161056b9190613cb4565b60405180910390f35b34801561058057600080fd5b506105896112c3565b005b34801561059757600080fd5b506105a061134b565b6040516105ad9190613cb4565b60405180910390f35b3480156105c257600080fd5b506105cb611351565b6040516105d891906138b0565b60405180910390f35b3480156105ed57600080fd5b50610608600480360381019061060391906132d1565b61137b565b005b34801561061657600080fd5b5061061f611411565b60405161062c9190613932565b60405180910390f35b34801561064157600080fd5b5061064a6114a3565b6040516106579190613cb4565b60405180910390f35b61067a6004803603810190610675919061331a565b6114ae565b005b34801561068857600080fd5b506106a3600480360381019061069e919061319d565b611712565b005b3480156106b157600080fd5b506106cc60048036038101906106c7919061311a565b611893565b005b3480156106da57600080fd5b506106e36118ef565b6040516106f09190613932565b60405180910390f35b34801561070557600080fd5b50610720600480360381019061071b919061331a565b611928565b60405161072d9190613932565b60405180910390f35b34801561074257600080fd5b5061074b611a07565b60405161075891906138b0565b60405180910390f35b34801561076d57600080fd5b50610776611a1f565b6040516107839190613932565b60405180910390f35b34801561079857600080fd5b506107b360048036038101906107ae9190613087565b611aad565b6040516107c09190613917565b60405180910390f35b3480156107d557600080fd5b506107f060048036038101906107eb919061305a565b611ba1565b005b3480156107fe57600080fd5b50610807611c99565b6040516108149190613cb4565b60405180910390f35b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614806108e857507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b8061095057507f780e9d63000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b80610960575061095f82611c9e565b5b9050919050565b61096f611d08565b73ffffffffffffffffffffffffffffffffffffffff1661098d611351565b73ffffffffffffffffffffffffffffffffffffffff16146109e3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016109da90613b14565b60405180910390fd5b80600a60006101000a81548160ff02191690831515021790555050565b606060018054610a0f90614022565b80601f0160208091040260200160405190810160405280929190818152602001828054610a3b90614022565b8015610a885780601f10610a5d57610100808354040283529160200191610a88565b820191906000526020600020905b815481529060010190602001808311610a6b57829003601f168201915b5050505050905090565b6000610a9d82611d10565b610adc576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ad390613c74565b60405180910390fd5b6005600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b6000610b22826110a6565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610b93576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b8a90613b94565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16610bb2611d08565b73ffffffffffffffffffffffffffffffffffffffff161480610be15750610be081610bdb611d08565b611aad565b5b610c20576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c1790613a74565b60405180910390fd5b610c2b838383611d1d565b505050565b60008054905090565b610c44838383611dcf565b505050565b6000610c54836111da565b8210610c95576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c8c90613954565b60405180910390fd5b6000610c9f610c30565b905060008060005b83811015610e05576000600360008381526020019081526020016000206040518060400160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815250509050600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff1614610d9957806000015192505b8773ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610df15786841415610de2578195505050505050610e41565b8380610ded90614085565b9450505b508080610dfd90614085565b915050610ca7565b506040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e3890613c54565b60405180910390fd5b92915050565b6115b381565b610e55611d08565b73ffffffffffffffffffffffffffffffffffffffff16610e73611351565b73ffffffffffffffffffffffffffffffffffffffff1614610ec9576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ec090613b14565b60405180910390fd5b60004790506000610ed8611d08565b73ffffffffffffffffffffffffffffffffffffffff1682604051610efb9061389b565b60006040518083038185875af1925050503d8060008114610f38576040519150601f19603f3d011682016040523d82523d6000602084013e610f3d565b606091505b5050905080610f81576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f7890613c34565b60405180910390fd5b5050565b610fa083838360405180602001604052806000815250611893565b505050565b600a81565b6000610fb4610c30565b8210610ff5576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610fec90613a14565b60405180910390fd5b819050919050565b611005611d08565b73ffffffffffffffffffffffffffffffffffffffff16611023611351565b73ffffffffffffffffffffffffffffffffffffffff1614611079576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161107090613b14565b60405180910390fd5b806008908051906020019061108f929190612e1f565b5050565b600a60009054906101000a900460ff1681565b60006110b182612376565b600001519050919050565b6110c4611d08565b73ffffffffffffffffffffffffffffffffffffffff166110e2611351565b73ffffffffffffffffffffffffffffffffffffffff1614611138576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161112f90613b14565b60405180910390fd5b61114a611143611d08565b60016124d1565b565b6008805461115990614022565b80601f016020809104026020016040519081016040528092919081815260200182805461118590614022565b80156111d25780601f106111a7576101008083540402835291602001916111d2565b820191906000526020600020905b8154815290600101906020018083116111b557829003601f168201915b505050505081565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141561124b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161124290613ab4565b60405180910390fd5b600460008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160009054906101000a90046fffffffffffffffffffffffffffffffff166fffffffffffffffffffffffffffffffff169050919050565b6112cb611d08565b73ffffffffffffffffffffffffffffffffffffffff166112e9611351565b73ffffffffffffffffffffffffffffffffffffffff161461133f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161133690613b14565b60405180910390fd5b61134960006124ef565b565b61022b81565b6000600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b611383611d08565b73ffffffffffffffffffffffffffffffffffffffff166113a1611351565b73ffffffffffffffffffffffffffffffffffffffff16146113f7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113ee90613b14565b60405180910390fd5b806009908051906020019061140d929190612e1f565b5050565b60606002805461142090614022565b80601f016020809104026020016040519081016040528092919081815260200182805461144c90614022565b80156114995780601f1061146e57610100808354040283529160200191611499565b820191906000526020600020905b81548152906001019060200180831161147c57829003601f168201915b5050505050905090565b6658d15e1762800081565b60006114b8611d08565b9050600a60009054906101000a900460ff161561150a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161150190613974565b60405180910390fd5b81611513610c30565b61151d9190613dff565b6115b31015611561576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161155890613a94565b60405180910390fd5b600082116115a4576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161159b906139d4565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff163273ffffffffffffffffffffffffffffffffffffffff1614611612576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161160990613c94565b60405180910390fd5b61161a610c30565b61022b1061166b5781600a1015611666576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161165d90613a54565b60405180910390fd5b611704565b81600a10156116af576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116a6906139f4565b60405180910390fd5b346658d15e17628000836116c39190613e86565b14611703576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116fa90613b74565b60405180910390fd5b5b61170e81836124d1565b5050565b61171a611d08565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611788576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161177f90613b34565b60405180910390fd5b8060066000611795611d08565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff16611842611d08565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31836040516118879190613917565b60405180910390a35050565b61189e848484611dcf565b6118aa848484846125b5565b6118e9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118e090613bd4565b60405180910390fd5b50505050565b6040518060400160405280600581526020017f2e6a736f6e00000000000000000000000000000000000000000000000000000081525081565b606061193382611d10565b611972576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161196990613ad4565b60405180910390fd5b60006008805461198190614022565b90501161199d5760405180602001604052806000815250611a00565b60086119a88361274c565b6040518060400160405280600581526020017f2e6a736f6e0000000000000000000000000000000000000000000000000000008152506040516020016119f09392919061386a565b6040516020818303038152906040525b9050919050565b73a5409ec958c83c3f309868babaca7c86dcb077c181565b60098054611a2c90614022565b80601f0160208091040260200160405190810160405280929190818152602001828054611a5890614022565b8015611aa55780601f10611a7a57610100808354040283529160200191611aa5565b820191906000526020600020905b815481529060010190602001808311611a8857829003601f168201915b505050505081565b60008073a5409ec958c83c3f309868babaca7c86dcb077c190508273ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1663c4552791866040518263ffffffff1660e01b8152600401611b1791906138b0565b60206040518083038186803b158015611b2f57600080fd5b505afa158015611b43573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611b6791906132a4565b73ffffffffffffffffffffffffffffffffffffffff161415611b8d576001915050611b9b565b611b9784846128ad565b9150505b92915050565b611ba9611d08565b73ffffffffffffffffffffffffffffffffffffffff16611bc7611351565b73ffffffffffffffffffffffffffffffffffffffff1614611c1d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c1490613b14565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415611c8d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c8490613994565b60405180910390fd5b611c96816124ef565b50565b600a81565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b600033905090565b6000805482109050919050565b826005600084815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b6000611dda82612376565b90506000816000015173ffffffffffffffffffffffffffffffffffffffff16611e01611d08565b73ffffffffffffffffffffffffffffffffffffffff161480611e5d5750611e26611d08565b73ffffffffffffffffffffffffffffffffffffffff16611e4584610a92565b73ffffffffffffffffffffffffffffffffffffffff16145b80611e795750611e788260000151611e73611d08565b611aad565b5b905080611ebb576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611eb290613b54565b60405180910390fd5b8473ffffffffffffffffffffffffffffffffffffffff16826000015173ffffffffffffffffffffffffffffffffffffffff1614611f2d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f2490613af4565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161415611f9d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f9490613a34565b60405180910390fd5b611faa8585856001612941565b611fba6000848460000151611d1d565b6001600460008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a90046fffffffffffffffffffffffffffffffff160392506101000a8154816fffffffffffffffffffffffffffffffff02191690836fffffffffffffffffffffffffffffffff1602179055506001600460008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a90046fffffffffffffffffffffffffffffffff160192506101000a8154816fffffffffffffffffffffffffffffffff02191690836fffffffffffffffffffffffffffffffff16021790555060405180604001604052808573ffffffffffffffffffffffffffffffffffffffff1681526020014267ffffffffffffffff168152506003600085815260200190815260200160002060008201518160000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555060208201518160000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff16021790555090505060006001846121c09190613dff565b9050600073ffffffffffffffffffffffffffffffffffffffff166003600083815260200190815260200160002060000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614156123065761223681611d10565b15612305576040518060400160405280846000015173ffffffffffffffffffffffffffffffffffffffff168152602001846020015167ffffffffffffffff168152506003600083815260200190815260200160002060008201518160000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555060208201518160000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055509050505b5b838573ffffffffffffffffffffffffffffffffffffffff168773ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a461236e8686866001612947565b505050505050565b61237e612ea5565b61238782611d10565b6123c6576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016123bd906139b4565b60405180910390fd5b60008290505b6000600360008381526020019081526020016000206040518060400160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815250509050600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff16146124b85780925050506124cc565b5080806124c490613ff8565b9150506123cc565b919050565b6124eb82826040518060200160405280600081525061294d565b5050565b6000600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600760006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b60006125d68473ffffffffffffffffffffffffffffffffffffffff16612e0c565b1561273f578373ffffffffffffffffffffffffffffffffffffffff1663150b7a026125ff611d08565b8786866040518563ffffffff1660e01b815260040161262194939291906138cb565b602060405180830381600087803b15801561263b57600080fd5b505af192505050801561266c57506040513d601f19601f820116820180604052508101906126699190613277565b60015b6126ef573d806000811461269c576040519150601f19603f3d011682016040523d82523d6000602084013e6126a1565b606091505b506000815114156126e7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016126de90613bd4565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050612744565b600190505b949350505050565b60606000821415612794576040518060400160405280600181526020017f300000000000000000000000000000000000000000000000000000000000000081525090506128a8565b600082905060005b600082146127c65780806127af90614085565b915050600a826127bf9190613e55565b915061279c565b60008167ffffffffffffffff8111156127e2576127e16141bb565b5b6040519080825280601f01601f1916602001820160405280156128145781602001600182028036833780820191505090505b5090505b600085146128a15760018261282d9190613ee0565b9150600a8561283c91906140ce565b60306128489190613dff565b60f81b81838151811061285e5761285d61418c565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a8561289a9190613e55565b9450612818565b8093505050505b919050565b6000600660008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b50505050565b50505050565b600080549050600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1614156129c3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016129ba90613c14565b60405180910390fd5b6129cc81611d10565b15612a0c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612a0390613bf4565b60405180910390fd5b60008311612a4f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612a4690613bb4565b60405180910390fd5b612a5c6000858386612941565b6000600460008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206040518060400160405290816000820160009054906101000a90046fffffffffffffffffffffffffffffffff166fffffffffffffffffffffffffffffffff166fffffffffffffffffffffffffffffffff1681526020016000820160109054906101000a90046fffffffffffffffffffffffffffffffff166fffffffffffffffffffffffffffffffff166fffffffffffffffffffffffffffffffff168152505090506040518060400160405280858360000151612b599190613db9565b6fffffffffffffffffffffffffffffffff168152602001858360200151612b809190613db9565b6fffffffffffffffffffffffffffffffff16815250600460008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008201518160000160006101000a8154816fffffffffffffffffffffffffffffffff02191690836fffffffffffffffffffffffffffffffff16021790555060208201518160000160106101000a8154816fffffffffffffffffffffffffffffffff02191690836fffffffffffffffffffffffffffffffff16021790555090505060405180604001604052808673ffffffffffffffffffffffffffffffffffffffff1681526020014267ffffffffffffffff168152506003600084815260200190815260200160002060008201518160000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555060208201518160000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff160217905550905050600082905060005b85811015612def57818773ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4612d8f60008884886125b5565b612dce576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612dc590613bd4565b60405180910390fd5b8180612dd990614085565b9250508080612de790614085565b915050612d1e565b5080600081905550612e046000878588612947565b505050505050565b600080823b905060008111915050919050565b828054612e2b90614022565b90600052602060002090601f016020900481019282612e4d5760008555612e94565b82601f10612e6657805160ff1916838001178555612e94565b82800160010185558215612e94579182015b82811115612e93578251825591602001919060010190612e78565b5b509050612ea19190612edf565b5090565b6040518060400160405280600073ffffffffffffffffffffffffffffffffffffffff168152602001600067ffffffffffffffff1681525090565b5b80821115612ef8576000816000905550600101612ee0565b5090565b6000612f0f612f0a84613cf4565b613ccf565b905082815260208101848484011115612f2b57612f2a6141ef565b5b612f36848285613fb6565b509392505050565b6000612f51612f4c84613d25565b613ccf565b905082815260208101848484011115612f6d57612f6c6141ef565b5b612f78848285613fb6565b509392505050565b600081359050612f8f8161489f565b92915050565b600081359050612fa4816148b6565b92915050565b600081359050612fb9816148cd565b92915050565b600081519050612fce816148cd565b92915050565b600082601f830112612fe957612fe86141ea565b5b8135612ff9848260208601612efc565b91505092915050565b600081519050613011816148e4565b92915050565b600082601f83011261302c5761302b6141ea565b5b813561303c848260208601612f3e565b91505092915050565b600081359050613054816148fb565b92915050565b6000602082840312156130705761306f6141f9565b5b600061307e84828501612f80565b91505092915050565b6000806040838503121561309e5761309d6141f9565b5b60006130ac85828601612f80565b92505060206130bd85828601612f80565b9150509250929050565b6000806000606084860312156130e0576130df6141f9565b5b60006130ee86828701612f80565b93505060206130ff86828701612f80565b925050604061311086828701613045565b9150509250925092565b60008060008060808587031215613134576131336141f9565b5b600061314287828801612f80565b945050602061315387828801612f80565b935050604061316487828801613045565b925050606085013567ffffffffffffffff811115613185576131846141f4565b5b61319187828801612fd4565b91505092959194509250565b600080604083850312156131b4576131b36141f9565b5b60006131c285828601612f80565b92505060206131d385828601612f95565b9150509250929050565b600080604083850312156131f4576131f36141f9565b5b600061320285828601612f80565b925050602061321385828601613045565b9150509250929050565b600060208284031215613233576132326141f9565b5b600061324184828501612f95565b91505092915050565b6000602082840312156132605761325f6141f9565b5b600061326e84828501612faa565b91505092915050565b60006020828403121561328d5761328c6141f9565b5b600061329b84828501612fbf565b91505092915050565b6000602082840312156132ba576132b96141f9565b5b60006132c884828501613002565b91505092915050565b6000602082840312156132e7576132e66141f9565b5b600082013567ffffffffffffffff811115613305576133046141f4565b5b61331184828501613017565b91505092915050565b6000602082840312156133305761332f6141f9565b5b600061333e84828501613045565b91505092915050565b61335081613f14565b82525050565b61335f81613f26565b82525050565b600061337082613d6b565b61337a8185613d81565b935061338a818560208601613fc5565b613393816141fe565b840191505092915050565b60006133a982613d76565b6133b38185613d9d565b93506133c3818560208601613fc5565b6133cc816141fe565b840191505092915050565b60006133e282613d76565b6133ec8185613dae565b93506133fc818560208601613fc5565b80840191505092915050565b6000815461341581614022565b61341f8186613dae565b9450600182166000811461343a576001811461344b5761347e565b60ff1983168652818601935061347e565b61345485613d56565b60005b8381101561347657815481890152600182019150602081019050613457565b838801955050505b50505092915050565b6000613494602283613d9d565b915061349f8261420f565b604082019050919050565b60006134b7600683613d9d565b91506134c28261425e565b602082019050919050565b60006134da602683613d9d565b91506134e582614287565b604082019050919050565b60006134fd602a83613d9d565b9150613508826142d6565b604082019050919050565b6000613520600a83613d9d565b915061352b82614325565b602082019050919050565b6000613543601683613d9d565b915061354e8261434e565b602082019050919050565b6000613566602383613d9d565b915061357182614377565b604082019050919050565b6000613589602583613d9d565b9150613594826143c6565b604082019050919050565b60006135ac601683613d9d565b91506135b782614415565b602082019050919050565b60006135cf603983613d9d565b91506135da8261443e565b604082019050919050565b60006135f2601283613d9d565b91506135fd8261448d565b602082019050919050565b6000613615602b83613d9d565b9150613620826144b6565b604082019050919050565b6000613638601583613d9d565b915061364382614505565b602082019050919050565b600061365b602683613d9d565b91506136668261452e565b604082019050919050565b600061367e602083613d9d565b91506136898261457d565b602082019050919050565b60006136a1601a83613d9d565b91506136ac826145a6565b602082019050919050565b60006136c4603283613d9d565b91506136cf826145cf565b604082019050919050565b60006136e7601683613d9d565b91506136f28261461e565b602082019050919050565b600061370a602283613d9d565b915061371582614647565b604082019050919050565b600061372d600083613d92565b915061373882614696565b600082019050919050565b6000613750602383613d9d565b915061375b82614699565b604082019050919050565b6000613773603383613d9d565b915061377e826146e8565b604082019050919050565b6000613796601d83613d9d565b91506137a182614737565b602082019050919050565b60006137b9602183613d9d565b91506137c482614760565b604082019050919050565b60006137dc600e83613d9d565b91506137e7826147af565b602082019050919050565b60006137ff602e83613d9d565b915061380a826147d8565b604082019050919050565b6000613822602d83613d9d565b915061382d82614827565b604082019050919050565b6000613845600c83613d9d565b915061385082614876565b602082019050919050565b61386481613fac565b82525050565b60006138768286613408565b915061388282856133d7565b915061388e82846133d7565b9150819050949350505050565b60006138a682613720565b9150819050919050565b60006020820190506138c56000830184613347565b92915050565b60006080820190506138e06000830187613347565b6138ed6020830186613347565b6138fa604083018561385b565b818103606083015261390c8184613365565b905095945050505050565b600060208201905061392c6000830184613356565b92915050565b6000602082019050818103600083015261394c818461339e565b905092915050565b6000602082019050818103600083015261396d81613487565b9050919050565b6000602082019050818103600083015261398d816134aa565b9050919050565b600060208201905081810360008301526139ad816134cd565b9050919050565b600060208201905081810360008301526139cd816134f0565b9050919050565b600060208201905081810360008301526139ed81613513565b9050919050565b60006020820190508181036000830152613a0d81613536565b9050919050565b60006020820190508181036000830152613a2d81613559565b9050919050565b60006020820190508181036000830152613a4d8161357c565b9050919050565b60006020820190508181036000830152613a6d8161359f565b9050919050565b60006020820190508181036000830152613a8d816135c2565b9050919050565b60006020820190508181036000830152613aad816135e5565b9050919050565b60006020820190508181036000830152613acd81613608565b9050919050565b60006020820190508181036000830152613aed8161362b565b9050919050565b60006020820190508181036000830152613b0d8161364e565b9050919050565b60006020820190508181036000830152613b2d81613671565b9050919050565b60006020820190508181036000830152613b4d81613694565b9050919050565b60006020820190508181036000830152613b6d816136b7565b9050919050565b60006020820190508181036000830152613b8d816136da565b9050919050565b60006020820190508181036000830152613bad816136fd565b9050919050565b60006020820190508181036000830152613bcd81613743565b9050919050565b60006020820190508181036000830152613bed81613766565b9050919050565b60006020820190508181036000830152613c0d81613789565b9050919050565b60006020820190508181036000830152613c2d816137ac565b9050919050565b60006020820190508181036000830152613c4d816137cf565b9050919050565b60006020820190508181036000830152613c6d816137f2565b9050919050565b60006020820190508181036000830152613c8d81613815565b9050919050565b60006020820190508181036000830152613cad81613838565b9050919050565b6000602082019050613cc9600083018461385b565b92915050565b6000613cd9613cea565b9050613ce58282614054565b919050565b6000604051905090565b600067ffffffffffffffff821115613d0f57613d0e6141bb565b5b613d18826141fe565b9050602081019050919050565b600067ffffffffffffffff821115613d4057613d3f6141bb565b5b613d49826141fe565b9050602081019050919050565b60008190508160005260206000209050919050565b600081519050919050565b600081519050919050565b600082825260208201905092915050565b600081905092915050565b600082825260208201905092915050565b600081905092915050565b6000613dc482613f70565b9150613dcf83613f70565b9250826fffffffffffffffffffffffffffffffff03821115613df457613df36140ff565b5b828201905092915050565b6000613e0a82613fac565b9150613e1583613fac565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115613e4a57613e496140ff565b5b828201905092915050565b6000613e6082613fac565b9150613e6b83613fac565b925082613e7b57613e7a61412e565b5b828204905092915050565b6000613e9182613fac565b9150613e9c83613fac565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0483118215151615613ed557613ed46140ff565b5b828202905092915050565b6000613eeb82613fac565b9150613ef683613fac565b925082821015613f0957613f086140ff565b5b828203905092915050565b6000613f1f82613f8c565b9050919050565b60008115159050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b6000613f6982613f14565b9050919050565b60006fffffffffffffffffffffffffffffffff82169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b82818337600083830152505050565b60005b83811015613fe3578082015181840152602081019050613fc8565b83811115613ff2576000848401525b50505050565b600061400382613fac565b91506000821415614017576140166140ff565b5b600182039050919050565b6000600282049050600182168061403a57607f821691505b6020821081141561404e5761404d61415d565b5b50919050565b61405d826141fe565b810181811067ffffffffffffffff8211171561407c5761407b6141bb565b5b80604052505050565b600061409082613fac565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8214156140c3576140c26140ff565b5b600182019050919050565b60006140d982613fac565b91506140e483613fac565b9250826140f4576140f361412e565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b7f455243373231413a206f776e657220696e646578206f7574206f6620626f756e60008201527f6473000000000000000000000000000000000000000000000000000000000000602082015250565b7f5061757365640000000000000000000000000000000000000000000000000000600082015250565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f455243373231413a206f776e657220717565727920666f72206e6f6e6578697360008201527f74656e7420746f6b656e00000000000000000000000000000000000000000000602082015250565b7f4e6f2030206d696e747300000000000000000000000000000000000000000000600082015250565b7f457863657373206d617820706572207061696420747800000000000000000000600082015250565b7f455243373231413a20676c6f62616c20696e646578206f7574206f6620626f7560008201527f6e64730000000000000000000000000000000000000000000000000000000000602082015250565b7f455243373231413a207472616e7366657220746f20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b7f457863657373206d617820706572206672656520747800000000000000000000600082015250565b7f455243373231413a20617070726f76652063616c6c6572206973206e6f74206f60008201527f776e6572206e6f7220617070726f76656420666f7220616c6c00000000000000602082015250565b7f45786365656473206d617820737570706c790000000000000000000000000000600082015250565b7f455243373231413a2062616c616e636520717565727920666f7220746865207a60008201527f65726f2061646472657373000000000000000000000000000000000000000000602082015250565b7f546f6b656e20646f6573206e6f742065786973742e0000000000000000000000600082015250565b7f455243373231413a207472616e736665722066726f6d20696e636f727265637460008201527f206f776e65720000000000000000000000000000000000000000000000000000602082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f455243373231413a20617070726f766520746f2063616c6c6572000000000000600082015250565b7f455243373231413a207472616e736665722063616c6c6572206973206e6f742060008201527f6f776e6572206e6f7220617070726f7665640000000000000000000000000000602082015250565b7f496e76616c69642066756e64732070726f766964656400000000000000000000600082015250565b7f455243373231413a20617070726f76616c20746f2063757272656e74206f776e60008201527f6572000000000000000000000000000000000000000000000000000000000000602082015250565b50565b7f455243373231413a207175616e74697479206d7573742062652067726561746560008201527f7220300000000000000000000000000000000000000000000000000000000000602082015250565b7f455243373231413a207472616e7366657220746f206e6f6e204552433732315260008201527f6563656976657220696d706c656d656e74657200000000000000000000000000602082015250565b7f455243373231413a20746f6b656e20616c7265616479206d696e746564000000600082015250565b7f455243373231413a206d696e7420746f20746865207a65726f2061646472657360008201527f7300000000000000000000000000000000000000000000000000000000000000602082015250565b7f4661696c656420746f2073656e64000000000000000000000000000000000000600082015250565b7f455243373231413a20756e61626c6520746f2067657420746f6b656e206f662060008201527f6f776e657220627920696e646578000000000000000000000000000000000000602082015250565b7f455243373231413a20617070726f76656420717565727920666f72206e6f6e6560008201527f78697374656e7420746f6b656e00000000000000000000000000000000000000602082015250565b7f4e6f20636f6e7472616374730000000000000000000000000000000000000000600082015250565b6148a881613f14565b81146148b357600080fd5b50565b6148bf81613f26565b81146148ca57600080fd5b50565b6148d681613f32565b81146148e157600080fd5b50565b6148ed81613f5e565b81146148f857600080fd5b50565b61490481613fac565b811461490f57600080fd5b5056fea26469706673582212200f9590269f9d54089a96a42c83f0730ec0924733b0c0aecb6fc4f9ae5ce5414564736f6c63430008070033

Deployed Bytecode

0x6080604052600436106102045760003560e01c80636c0360eb11610118578063a22cb465116100a0578063cd7c03261161006f578063cd7c032614610736578063e8a3d48514610761578063e985e9c51461078c578063f2fde38b146107c9578063f43a22dc146107f257610204565b8063a22cb4651461067c578063b88d4fde146106a5578063c6682862146106ce578063c87b56dd146106f957610204565b80638da5cb5b116100e75780638da5cb5b146105b6578063938e3d7b146105e157806395d89b411461060a578063a035b1fe14610635578063a0712d681461066057610204565b80636c0360eb1461050c57806370a0823114610537578063715018a6146105745780638069876d1461058b57610204565b806332cb6b0c1161019b5780634f6ccce71161016a5780634f6ccce71461042757806355f804b3146104645780635c975abb1461048d5780636352211e146104b8578063698982ba146104f557610204565b806332cb6b0c146103915780633ccfd60b146103bc57806342842e0e146103d3578063463fff79146103fc57610204565b8063095ea7b3116101d7578063095ea7b3146102d757806318160ddd1461030057806323b872dd1461032b5780632f745c591461035457610204565b806301ffc9a71461020957806302329a291461024657806306fdde031461026f578063081812fc1461029a575b600080fd5b34801561021557600080fd5b50610230600480360381019061022b919061324a565b61081d565b60405161023d9190613917565b60405180910390f35b34801561025257600080fd5b5061026d6004803603810190610268919061321d565b610967565b005b34801561027b57600080fd5b50610284610a00565b6040516102919190613932565b60405180910390f35b3480156102a657600080fd5b506102c160048036038101906102bc919061331a565b610a92565b6040516102ce91906138b0565b60405180910390f35b3480156102e357600080fd5b506102fe60048036038101906102f991906131dd565b610b17565b005b34801561030c57600080fd5b50610315610c30565b6040516103229190613cb4565b60405180910390f35b34801561033757600080fd5b50610352600480360381019061034d91906130c7565b610c39565b005b34801561036057600080fd5b5061037b600480360381019061037691906131dd565b610c49565b6040516103889190613cb4565b60405180910390f35b34801561039d57600080fd5b506103a6610e47565b6040516103b39190613cb4565b60405180910390f35b3480156103c857600080fd5b506103d1610e4d565b005b3480156103df57600080fd5b506103fa60048036038101906103f591906130c7565b610f85565b005b34801561040857600080fd5b50610411610fa5565b60405161041e9190613cb4565b60405180910390f35b34801561043357600080fd5b5061044e6004803603810190610449919061331a565b610faa565b60405161045b9190613cb4565b60405180910390f35b34801561047057600080fd5b5061048b600480360381019061048691906132d1565b610ffd565b005b34801561049957600080fd5b506104a2611093565b6040516104af9190613917565b60405180910390f35b3480156104c457600080fd5b506104df60048036038101906104da919061331a565b6110a6565b6040516104ec91906138b0565b60405180910390f35b34801561050157600080fd5b5061050a6110bc565b005b34801561051857600080fd5b5061052161114c565b60405161052e9190613932565b60405180910390f35b34801561054357600080fd5b5061055e6004803603810190610559919061305a565b6111da565b60405161056b9190613cb4565b60405180910390f35b34801561058057600080fd5b506105896112c3565b005b34801561059757600080fd5b506105a061134b565b6040516105ad9190613cb4565b60405180910390f35b3480156105c257600080fd5b506105cb611351565b6040516105d891906138b0565b60405180910390f35b3480156105ed57600080fd5b50610608600480360381019061060391906132d1565b61137b565b005b34801561061657600080fd5b5061061f611411565b60405161062c9190613932565b60405180910390f35b34801561064157600080fd5b5061064a6114a3565b6040516106579190613cb4565b60405180910390f35b61067a6004803603810190610675919061331a565b6114ae565b005b34801561068857600080fd5b506106a3600480360381019061069e919061319d565b611712565b005b3480156106b157600080fd5b506106cc60048036038101906106c7919061311a565b611893565b005b3480156106da57600080fd5b506106e36118ef565b6040516106f09190613932565b60405180910390f35b34801561070557600080fd5b50610720600480360381019061071b919061331a565b611928565b60405161072d9190613932565b60405180910390f35b34801561074257600080fd5b5061074b611a07565b60405161075891906138b0565b60405180910390f35b34801561076d57600080fd5b50610776611a1f565b6040516107839190613932565b60405180910390f35b34801561079857600080fd5b506107b360048036038101906107ae9190613087565b611aad565b6040516107c09190613917565b60405180910390f35b3480156107d557600080fd5b506107f060048036038101906107eb919061305a565b611ba1565b005b3480156107fe57600080fd5b50610807611c99565b6040516108149190613cb4565b60405180910390f35b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614806108e857507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b8061095057507f780e9d63000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b80610960575061095f82611c9e565b5b9050919050565b61096f611d08565b73ffffffffffffffffffffffffffffffffffffffff1661098d611351565b73ffffffffffffffffffffffffffffffffffffffff16146109e3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016109da90613b14565b60405180910390fd5b80600a60006101000a81548160ff02191690831515021790555050565b606060018054610a0f90614022565b80601f0160208091040260200160405190810160405280929190818152602001828054610a3b90614022565b8015610a885780601f10610a5d57610100808354040283529160200191610a88565b820191906000526020600020905b815481529060010190602001808311610a6b57829003601f168201915b5050505050905090565b6000610a9d82611d10565b610adc576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ad390613c74565b60405180910390fd5b6005600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b6000610b22826110a6565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610b93576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b8a90613b94565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16610bb2611d08565b73ffffffffffffffffffffffffffffffffffffffff161480610be15750610be081610bdb611d08565b611aad565b5b610c20576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c1790613a74565b60405180910390fd5b610c2b838383611d1d565b505050565b60008054905090565b610c44838383611dcf565b505050565b6000610c54836111da565b8210610c95576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c8c90613954565b60405180910390fd5b6000610c9f610c30565b905060008060005b83811015610e05576000600360008381526020019081526020016000206040518060400160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815250509050600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff1614610d9957806000015192505b8773ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610df15786841415610de2578195505050505050610e41565b8380610ded90614085565b9450505b508080610dfd90614085565b915050610ca7565b506040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e3890613c54565b60405180910390fd5b92915050565b6115b381565b610e55611d08565b73ffffffffffffffffffffffffffffffffffffffff16610e73611351565b73ffffffffffffffffffffffffffffffffffffffff1614610ec9576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ec090613b14565b60405180910390fd5b60004790506000610ed8611d08565b73ffffffffffffffffffffffffffffffffffffffff1682604051610efb9061389b565b60006040518083038185875af1925050503d8060008114610f38576040519150601f19603f3d011682016040523d82523d6000602084013e610f3d565b606091505b5050905080610f81576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f7890613c34565b60405180910390fd5b5050565b610fa083838360405180602001604052806000815250611893565b505050565b600a81565b6000610fb4610c30565b8210610ff5576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610fec90613a14565b60405180910390fd5b819050919050565b611005611d08565b73ffffffffffffffffffffffffffffffffffffffff16611023611351565b73ffffffffffffffffffffffffffffffffffffffff1614611079576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161107090613b14565b60405180910390fd5b806008908051906020019061108f929190612e1f565b5050565b600a60009054906101000a900460ff1681565b60006110b182612376565b600001519050919050565b6110c4611d08565b73ffffffffffffffffffffffffffffffffffffffff166110e2611351565b73ffffffffffffffffffffffffffffffffffffffff1614611138576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161112f90613b14565b60405180910390fd5b61114a611143611d08565b60016124d1565b565b6008805461115990614022565b80601f016020809104026020016040519081016040528092919081815260200182805461118590614022565b80156111d25780601f106111a7576101008083540402835291602001916111d2565b820191906000526020600020905b8154815290600101906020018083116111b557829003601f168201915b505050505081565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141561124b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161124290613ab4565b60405180910390fd5b600460008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160009054906101000a90046fffffffffffffffffffffffffffffffff166fffffffffffffffffffffffffffffffff169050919050565b6112cb611d08565b73ffffffffffffffffffffffffffffffffffffffff166112e9611351565b73ffffffffffffffffffffffffffffffffffffffff161461133f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161133690613b14565b60405180910390fd5b61134960006124ef565b565b61022b81565b6000600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b611383611d08565b73ffffffffffffffffffffffffffffffffffffffff166113a1611351565b73ffffffffffffffffffffffffffffffffffffffff16146113f7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113ee90613b14565b60405180910390fd5b806009908051906020019061140d929190612e1f565b5050565b60606002805461142090614022565b80601f016020809104026020016040519081016040528092919081815260200182805461144c90614022565b80156114995780601f1061146e57610100808354040283529160200191611499565b820191906000526020600020905b81548152906001019060200180831161147c57829003601f168201915b5050505050905090565b6658d15e1762800081565b60006114b8611d08565b9050600a60009054906101000a900460ff161561150a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161150190613974565b60405180910390fd5b81611513610c30565b61151d9190613dff565b6115b31015611561576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161155890613a94565b60405180910390fd5b600082116115a4576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161159b906139d4565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff163273ffffffffffffffffffffffffffffffffffffffff1614611612576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161160990613c94565b60405180910390fd5b61161a610c30565b61022b1061166b5781600a1015611666576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161165d90613a54565b60405180910390fd5b611704565b81600a10156116af576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116a6906139f4565b60405180910390fd5b346658d15e17628000836116c39190613e86565b14611703576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116fa90613b74565b60405180910390fd5b5b61170e81836124d1565b5050565b61171a611d08565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611788576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161177f90613b34565b60405180910390fd5b8060066000611795611d08565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff16611842611d08565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31836040516118879190613917565b60405180910390a35050565b61189e848484611dcf565b6118aa848484846125b5565b6118e9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118e090613bd4565b60405180910390fd5b50505050565b6040518060400160405280600581526020017f2e6a736f6e00000000000000000000000000000000000000000000000000000081525081565b606061193382611d10565b611972576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161196990613ad4565b60405180910390fd5b60006008805461198190614022565b90501161199d5760405180602001604052806000815250611a00565b60086119a88361274c565b6040518060400160405280600581526020017f2e6a736f6e0000000000000000000000000000000000000000000000000000008152506040516020016119f09392919061386a565b6040516020818303038152906040525b9050919050565b73a5409ec958c83c3f309868babaca7c86dcb077c181565b60098054611a2c90614022565b80601f0160208091040260200160405190810160405280929190818152602001828054611a5890614022565b8015611aa55780601f10611a7a57610100808354040283529160200191611aa5565b820191906000526020600020905b815481529060010190602001808311611a8857829003601f168201915b505050505081565b60008073a5409ec958c83c3f309868babaca7c86dcb077c190508273ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1663c4552791866040518263ffffffff1660e01b8152600401611b1791906138b0565b60206040518083038186803b158015611b2f57600080fd5b505afa158015611b43573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611b6791906132a4565b73ffffffffffffffffffffffffffffffffffffffff161415611b8d576001915050611b9b565b611b9784846128ad565b9150505b92915050565b611ba9611d08565b73ffffffffffffffffffffffffffffffffffffffff16611bc7611351565b73ffffffffffffffffffffffffffffffffffffffff1614611c1d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c1490613b14565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415611c8d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c8490613994565b60405180910390fd5b611c96816124ef565b50565b600a81565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b600033905090565b6000805482109050919050565b826005600084815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b6000611dda82612376565b90506000816000015173ffffffffffffffffffffffffffffffffffffffff16611e01611d08565b73ffffffffffffffffffffffffffffffffffffffff161480611e5d5750611e26611d08565b73ffffffffffffffffffffffffffffffffffffffff16611e4584610a92565b73ffffffffffffffffffffffffffffffffffffffff16145b80611e795750611e788260000151611e73611d08565b611aad565b5b905080611ebb576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611eb290613b54565b60405180910390fd5b8473ffffffffffffffffffffffffffffffffffffffff16826000015173ffffffffffffffffffffffffffffffffffffffff1614611f2d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f2490613af4565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161415611f9d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f9490613a34565b60405180910390fd5b611faa8585856001612941565b611fba6000848460000151611d1d565b6001600460008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a90046fffffffffffffffffffffffffffffffff160392506101000a8154816fffffffffffffffffffffffffffffffff02191690836fffffffffffffffffffffffffffffffff1602179055506001600460008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a90046fffffffffffffffffffffffffffffffff160192506101000a8154816fffffffffffffffffffffffffffffffff02191690836fffffffffffffffffffffffffffffffff16021790555060405180604001604052808573ffffffffffffffffffffffffffffffffffffffff1681526020014267ffffffffffffffff168152506003600085815260200190815260200160002060008201518160000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555060208201518160000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff16021790555090505060006001846121c09190613dff565b9050600073ffffffffffffffffffffffffffffffffffffffff166003600083815260200190815260200160002060000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614156123065761223681611d10565b15612305576040518060400160405280846000015173ffffffffffffffffffffffffffffffffffffffff168152602001846020015167ffffffffffffffff168152506003600083815260200190815260200160002060008201518160000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555060208201518160000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055509050505b5b838573ffffffffffffffffffffffffffffffffffffffff168773ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a461236e8686866001612947565b505050505050565b61237e612ea5565b61238782611d10565b6123c6576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016123bd906139b4565b60405180910390fd5b60008290505b6000600360008381526020019081526020016000206040518060400160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815250509050600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff16146124b85780925050506124cc565b5080806124c490613ff8565b9150506123cc565b919050565b6124eb82826040518060200160405280600081525061294d565b5050565b6000600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600760006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b60006125d68473ffffffffffffffffffffffffffffffffffffffff16612e0c565b1561273f578373ffffffffffffffffffffffffffffffffffffffff1663150b7a026125ff611d08565b8786866040518563ffffffff1660e01b815260040161262194939291906138cb565b602060405180830381600087803b15801561263b57600080fd5b505af192505050801561266c57506040513d601f19601f820116820180604052508101906126699190613277565b60015b6126ef573d806000811461269c576040519150601f19603f3d011682016040523d82523d6000602084013e6126a1565b606091505b506000815114156126e7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016126de90613bd4565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050612744565b600190505b949350505050565b60606000821415612794576040518060400160405280600181526020017f300000000000000000000000000000000000000000000000000000000000000081525090506128a8565b600082905060005b600082146127c65780806127af90614085565b915050600a826127bf9190613e55565b915061279c565b60008167ffffffffffffffff8111156127e2576127e16141bb565b5b6040519080825280601f01601f1916602001820160405280156128145781602001600182028036833780820191505090505b5090505b600085146128a15760018261282d9190613ee0565b9150600a8561283c91906140ce565b60306128489190613dff565b60f81b81838151811061285e5761285d61418c565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a8561289a9190613e55565b9450612818565b8093505050505b919050565b6000600660008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b50505050565b50505050565b600080549050600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1614156129c3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016129ba90613c14565b60405180910390fd5b6129cc81611d10565b15612a0c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612a0390613bf4565b60405180910390fd5b60008311612a4f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612a4690613bb4565b60405180910390fd5b612a5c6000858386612941565b6000600460008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206040518060400160405290816000820160009054906101000a90046fffffffffffffffffffffffffffffffff166fffffffffffffffffffffffffffffffff166fffffffffffffffffffffffffffffffff1681526020016000820160109054906101000a90046fffffffffffffffffffffffffffffffff166fffffffffffffffffffffffffffffffff166fffffffffffffffffffffffffffffffff168152505090506040518060400160405280858360000151612b599190613db9565b6fffffffffffffffffffffffffffffffff168152602001858360200151612b809190613db9565b6fffffffffffffffffffffffffffffffff16815250600460008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008201518160000160006101000a8154816fffffffffffffffffffffffffffffffff02191690836fffffffffffffffffffffffffffffffff16021790555060208201518160000160106101000a8154816fffffffffffffffffffffffffffffffff02191690836fffffffffffffffffffffffffffffffff16021790555090505060405180604001604052808673ffffffffffffffffffffffffffffffffffffffff1681526020014267ffffffffffffffff168152506003600084815260200190815260200160002060008201518160000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555060208201518160000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff160217905550905050600082905060005b85811015612def57818773ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4612d8f60008884886125b5565b612dce576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612dc590613bd4565b60405180910390fd5b8180612dd990614085565b9250508080612de790614085565b915050612d1e565b5080600081905550612e046000878588612947565b505050505050565b600080823b905060008111915050919050565b828054612e2b90614022565b90600052602060002090601f016020900481019282612e4d5760008555612e94565b82601f10612e6657805160ff1916838001178555612e94565b82800160010185558215612e94579182015b82811115612e93578251825591602001919060010190612e78565b5b509050612ea19190612edf565b5090565b6040518060400160405280600073ffffffffffffffffffffffffffffffffffffffff168152602001600067ffffffffffffffff1681525090565b5b80821115612ef8576000816000905550600101612ee0565b5090565b6000612f0f612f0a84613cf4565b613ccf565b905082815260208101848484011115612f2b57612f2a6141ef565b5b612f36848285613fb6565b509392505050565b6000612f51612f4c84613d25565b613ccf565b905082815260208101848484011115612f6d57612f6c6141ef565b5b612f78848285613fb6565b509392505050565b600081359050612f8f8161489f565b92915050565b600081359050612fa4816148b6565b92915050565b600081359050612fb9816148cd565b92915050565b600081519050612fce816148cd565b92915050565b600082601f830112612fe957612fe86141ea565b5b8135612ff9848260208601612efc565b91505092915050565b600081519050613011816148e4565b92915050565b600082601f83011261302c5761302b6141ea565b5b813561303c848260208601612f3e565b91505092915050565b600081359050613054816148fb565b92915050565b6000602082840312156130705761306f6141f9565b5b600061307e84828501612f80565b91505092915050565b6000806040838503121561309e5761309d6141f9565b5b60006130ac85828601612f80565b92505060206130bd85828601612f80565b9150509250929050565b6000806000606084860312156130e0576130df6141f9565b5b60006130ee86828701612f80565b93505060206130ff86828701612f80565b925050604061311086828701613045565b9150509250925092565b60008060008060808587031215613134576131336141f9565b5b600061314287828801612f80565b945050602061315387828801612f80565b935050604061316487828801613045565b925050606085013567ffffffffffffffff811115613185576131846141f4565b5b61319187828801612fd4565b91505092959194509250565b600080604083850312156131b4576131b36141f9565b5b60006131c285828601612f80565b92505060206131d385828601612f95565b9150509250929050565b600080604083850312156131f4576131f36141f9565b5b600061320285828601612f80565b925050602061321385828601613045565b9150509250929050565b600060208284031215613233576132326141f9565b5b600061324184828501612f95565b91505092915050565b6000602082840312156132605761325f6141f9565b5b600061326e84828501612faa565b91505092915050565b60006020828403121561328d5761328c6141f9565b5b600061329b84828501612fbf565b91505092915050565b6000602082840312156132ba576132b96141f9565b5b60006132c884828501613002565b91505092915050565b6000602082840312156132e7576132e66141f9565b5b600082013567ffffffffffffffff811115613305576133046141f4565b5b61331184828501613017565b91505092915050565b6000602082840312156133305761332f6141f9565b5b600061333e84828501613045565b91505092915050565b61335081613f14565b82525050565b61335f81613f26565b82525050565b600061337082613d6b565b61337a8185613d81565b935061338a818560208601613fc5565b613393816141fe565b840191505092915050565b60006133a982613d76565b6133b38185613d9d565b93506133c3818560208601613fc5565b6133cc816141fe565b840191505092915050565b60006133e282613d76565b6133ec8185613dae565b93506133fc818560208601613fc5565b80840191505092915050565b6000815461341581614022565b61341f8186613dae565b9450600182166000811461343a576001811461344b5761347e565b60ff1983168652818601935061347e565b61345485613d56565b60005b8381101561347657815481890152600182019150602081019050613457565b838801955050505b50505092915050565b6000613494602283613d9d565b915061349f8261420f565b604082019050919050565b60006134b7600683613d9d565b91506134c28261425e565b602082019050919050565b60006134da602683613d9d565b91506134e582614287565b604082019050919050565b60006134fd602a83613d9d565b9150613508826142d6565b604082019050919050565b6000613520600a83613d9d565b915061352b82614325565b602082019050919050565b6000613543601683613d9d565b915061354e8261434e565b602082019050919050565b6000613566602383613d9d565b915061357182614377565b604082019050919050565b6000613589602583613d9d565b9150613594826143c6565b604082019050919050565b60006135ac601683613d9d565b91506135b782614415565b602082019050919050565b60006135cf603983613d9d565b91506135da8261443e565b604082019050919050565b60006135f2601283613d9d565b91506135fd8261448d565b602082019050919050565b6000613615602b83613d9d565b9150613620826144b6565b604082019050919050565b6000613638601583613d9d565b915061364382614505565b602082019050919050565b600061365b602683613d9d565b91506136668261452e565b604082019050919050565b600061367e602083613d9d565b91506136898261457d565b602082019050919050565b60006136a1601a83613d9d565b91506136ac826145a6565b602082019050919050565b60006136c4603283613d9d565b91506136cf826145cf565b604082019050919050565b60006136e7601683613d9d565b91506136f28261461e565b602082019050919050565b600061370a602283613d9d565b915061371582614647565b604082019050919050565b600061372d600083613d92565b915061373882614696565b600082019050919050565b6000613750602383613d9d565b915061375b82614699565b604082019050919050565b6000613773603383613d9d565b915061377e826146e8565b604082019050919050565b6000613796601d83613d9d565b91506137a182614737565b602082019050919050565b60006137b9602183613d9d565b91506137c482614760565b604082019050919050565b60006137dc600e83613d9d565b91506137e7826147af565b602082019050919050565b60006137ff602e83613d9d565b915061380a826147d8565b604082019050919050565b6000613822602d83613d9d565b915061382d82614827565b604082019050919050565b6000613845600c83613d9d565b915061385082614876565b602082019050919050565b61386481613fac565b82525050565b60006138768286613408565b915061388282856133d7565b915061388e82846133d7565b9150819050949350505050565b60006138a682613720565b9150819050919050565b60006020820190506138c56000830184613347565b92915050565b60006080820190506138e06000830187613347565b6138ed6020830186613347565b6138fa604083018561385b565b818103606083015261390c8184613365565b905095945050505050565b600060208201905061392c6000830184613356565b92915050565b6000602082019050818103600083015261394c818461339e565b905092915050565b6000602082019050818103600083015261396d81613487565b9050919050565b6000602082019050818103600083015261398d816134aa565b9050919050565b600060208201905081810360008301526139ad816134cd565b9050919050565b600060208201905081810360008301526139cd816134f0565b9050919050565b600060208201905081810360008301526139ed81613513565b9050919050565b60006020820190508181036000830152613a0d81613536565b9050919050565b60006020820190508181036000830152613a2d81613559565b9050919050565b60006020820190508181036000830152613a4d8161357c565b9050919050565b60006020820190508181036000830152613a6d8161359f565b9050919050565b60006020820190508181036000830152613a8d816135c2565b9050919050565b60006020820190508181036000830152613aad816135e5565b9050919050565b60006020820190508181036000830152613acd81613608565b9050919050565b60006020820190508181036000830152613aed8161362b565b9050919050565b60006020820190508181036000830152613b0d8161364e565b9050919050565b60006020820190508181036000830152613b2d81613671565b9050919050565b60006020820190508181036000830152613b4d81613694565b9050919050565b60006020820190508181036000830152613b6d816136b7565b9050919050565b60006020820190508181036000830152613b8d816136da565b9050919050565b60006020820190508181036000830152613bad816136fd565b9050919050565b60006020820190508181036000830152613bcd81613743565b9050919050565b60006020820190508181036000830152613bed81613766565b9050919050565b60006020820190508181036000830152613c0d81613789565b9050919050565b60006020820190508181036000830152613c2d816137ac565b9050919050565b60006020820190508181036000830152613c4d816137cf565b9050919050565b60006020820190508181036000830152613c6d816137f2565b9050919050565b60006020820190508181036000830152613c8d81613815565b9050919050565b60006020820190508181036000830152613cad81613838565b9050919050565b6000602082019050613cc9600083018461385b565b92915050565b6000613cd9613cea565b9050613ce58282614054565b919050565b6000604051905090565b600067ffffffffffffffff821115613d0f57613d0e6141bb565b5b613d18826141fe565b9050602081019050919050565b600067ffffffffffffffff821115613d4057613d3f6141bb565b5b613d49826141fe565b9050602081019050919050565b60008190508160005260206000209050919050565b600081519050919050565b600081519050919050565b600082825260208201905092915050565b600081905092915050565b600082825260208201905092915050565b600081905092915050565b6000613dc482613f70565b9150613dcf83613f70565b9250826fffffffffffffffffffffffffffffffff03821115613df457613df36140ff565b5b828201905092915050565b6000613e0a82613fac565b9150613e1583613fac565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115613e4a57613e496140ff565b5b828201905092915050565b6000613e6082613fac565b9150613e6b83613fac565b925082613e7b57613e7a61412e565b5b828204905092915050565b6000613e9182613fac565b9150613e9c83613fac565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0483118215151615613ed557613ed46140ff565b5b828202905092915050565b6000613eeb82613fac565b9150613ef683613fac565b925082821015613f0957613f086140ff565b5b828203905092915050565b6000613f1f82613f8c565b9050919050565b60008115159050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b6000613f6982613f14565b9050919050565b60006fffffffffffffffffffffffffffffffff82169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b82818337600083830152505050565b60005b83811015613fe3578082015181840152602081019050613fc8565b83811115613ff2576000848401525b50505050565b600061400382613fac565b91506000821415614017576140166140ff565b5b600182039050919050565b6000600282049050600182168061403a57607f821691505b6020821081141561404e5761404d61415d565b5b50919050565b61405d826141fe565b810181811067ffffffffffffffff8211171561407c5761407b6141bb565b5b80604052505050565b600061409082613fac565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8214156140c3576140c26140ff565b5b600182019050919050565b60006140d982613fac565b91506140e483613fac565b9250826140f4576140f361412e565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b7f455243373231413a206f776e657220696e646578206f7574206f6620626f756e60008201527f6473000000000000000000000000000000000000000000000000000000000000602082015250565b7f5061757365640000000000000000000000000000000000000000000000000000600082015250565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f455243373231413a206f776e657220717565727920666f72206e6f6e6578697360008201527f74656e7420746f6b656e00000000000000000000000000000000000000000000602082015250565b7f4e6f2030206d696e747300000000000000000000000000000000000000000000600082015250565b7f457863657373206d617820706572207061696420747800000000000000000000600082015250565b7f455243373231413a20676c6f62616c20696e646578206f7574206f6620626f7560008201527f6e64730000000000000000000000000000000000000000000000000000000000602082015250565b7f455243373231413a207472616e7366657220746f20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b7f457863657373206d617820706572206672656520747800000000000000000000600082015250565b7f455243373231413a20617070726f76652063616c6c6572206973206e6f74206f60008201527f776e6572206e6f7220617070726f76656420666f7220616c6c00000000000000602082015250565b7f45786365656473206d617820737570706c790000000000000000000000000000600082015250565b7f455243373231413a2062616c616e636520717565727920666f7220746865207a60008201527f65726f2061646472657373000000000000000000000000000000000000000000602082015250565b7f546f6b656e20646f6573206e6f742065786973742e0000000000000000000000600082015250565b7f455243373231413a207472616e736665722066726f6d20696e636f727265637460008201527f206f776e65720000000000000000000000000000000000000000000000000000602082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f455243373231413a20617070726f766520746f2063616c6c6572000000000000600082015250565b7f455243373231413a207472616e736665722063616c6c6572206973206e6f742060008201527f6f776e6572206e6f7220617070726f7665640000000000000000000000000000602082015250565b7f496e76616c69642066756e64732070726f766964656400000000000000000000600082015250565b7f455243373231413a20617070726f76616c20746f2063757272656e74206f776e60008201527f6572000000000000000000000000000000000000000000000000000000000000602082015250565b50565b7f455243373231413a207175616e74697479206d7573742062652067726561746560008201527f7220300000000000000000000000000000000000000000000000000000000000602082015250565b7f455243373231413a207472616e7366657220746f206e6f6e204552433732315260008201527f6563656976657220696d706c656d656e74657200000000000000000000000000602082015250565b7f455243373231413a20746f6b656e20616c7265616479206d696e746564000000600082015250565b7f455243373231413a206d696e7420746f20746865207a65726f2061646472657360008201527f7300000000000000000000000000000000000000000000000000000000000000602082015250565b7f4661696c656420746f2073656e64000000000000000000000000000000000000600082015250565b7f455243373231413a20756e61626c6520746f2067657420746f6b656e206f662060008201527f6f776e657220627920696e646578000000000000000000000000000000000000602082015250565b7f455243373231413a20617070726f76656420717565727920666f72206e6f6e6560008201527f78697374656e7420746f6b656e00000000000000000000000000000000000000602082015250565b7f4e6f20636f6e7472616374730000000000000000000000000000000000000000600082015250565b6148a881613f14565b81146148b357600080fd5b50565b6148bf81613f26565b81146148ca57600080fd5b50565b6148d681613f32565b81146148e157600080fd5b50565b6148ed81613f5e565b81146148f857600080fd5b50565b61490481613fac565b811461490f57600080fd5b5056fea26469706673582212200f9590269f9d54089a96a42c83f0730ec0924733b0c0aecb6fc4f9ae5ce5414564736f6c63430008070033

Deployed Bytecode Sourcemap

39243:2731:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;27208:372;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;41288:81;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;28835:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;30396:214;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;29917:413;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;25649:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;31272:162;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;26313:823;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;39669:41;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;40980:209;;;;;;;;;;;;;:::i;:::-;;31505:177;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;39520:44;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;25826:187;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;41377:100;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;39769:25;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;28644:124;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;41197:83;;;;;;;;;;;;;:::i;:::-;;39299:26;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;27644:221;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;3187:103;;;;;;;;;;;;;:::i;:::-;;39617:45;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;2536:87;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;41485:116;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;29004:104;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;39717:43;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;39862:657;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;30682:288;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;31753:355;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;39369:46;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;41609:362;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;39422:89;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;39332:30;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;40527:445;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;3445:201;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;39571:39;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;27208:372;27310:4;27362:25;27347:40;;;:11;:40;;;;:105;;;;27419:33;27404:48;;;:11;:48;;;;27347:105;:172;;;;27484:35;27469:50;;;:11;:50;;;;27347:172;:225;;;;27536:36;27560:11;27536:23;:36::i;:::-;27347:225;27327:245;;27208:372;;;:::o;41288:81::-;2767:12;:10;:12::i;:::-;2756:23;;:7;:5;:7::i;:::-;:23;;;2748:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;41355:6:::1;41346;;:15;;;;;;;;;;;;;;;;;;41288:81:::0;:::o;28835:100::-;28889:13;28922:5;28915:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;28835:100;:::o;30396:214::-;30464:7;30492:16;30500:7;30492;:16::i;:::-;30484:74;;;;;;;;;;;;:::i;:::-;;;;;;;;;30578:15;:24;30594:7;30578:24;;;;;;;;;;;;;;;;;;;;;30571:31;;30396:214;;;:::o;29917:413::-;29990:13;30006:24;30022:7;30006:15;:24::i;:::-;29990:40;;30055:5;30049:11;;:2;:11;;;;30041:58;;;;;;;;;;;;:::i;:::-;;;;;;;;;30150:5;30134:21;;:12;:10;:12::i;:::-;:21;;;:62;;;;30159:37;30176:5;30183:12;:10;:12::i;:::-;30159:16;:37::i;:::-;30134:62;30112:169;;;;;;;;;;;;:::i;:::-;;;;;;;;;30294:28;30303:2;30307:7;30316:5;30294:8;:28::i;:::-;29979:351;29917:413;;:::o;25649:100::-;25702:7;25729:12;;25722:19;;25649:100;:::o;31272:162::-;31398:28;31408:4;31414:2;31418:7;31398:9;:28::i;:::-;31272:162;;;:::o;26313:823::-;26402:7;26438:16;26448:5;26438:9;:16::i;:::-;26430:5;:24;26422:71;;;;;;;;;;;;:::i;:::-;;;;;;;;;26504:22;26529:13;:11;:13::i;:::-;26504:38;;26553:19;26587:25;26641:9;26636:426;26660:14;26656:1;:18;26636:426;;;26696:31;26730:11;:14;26742:1;26730:14;;;;;;;;;;;26696:48;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;26789:1;26763:28;;:9;:14;;;:28;;;26759:103;;26832:9;:14;;;26812:34;;26759:103;26901:5;26880:26;;:17;:26;;;26876:175;;;26946:5;26931:11;:20;26927:77;;;26983:1;26976:8;;;;;;;;;26927:77;27022:13;;;;;:::i;:::-;;;;26876:175;26681:381;26676:3;;;;;:::i;:::-;;;;26636:426;;;;27072:56;;;;;;;;;;:::i;:::-;;;;;;;;26313:823;;;;;:::o;39669:41::-;39706:4;39669:41;:::o;40980:209::-;2767:12;:10;:12::i;:::-;2756:23;;:7;:5;:7::i;:::-;:23;;;2748:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;41030:15:::1;41048:21;41030:39;;41081:12;41099;:10;:12::i;:::-;:17;;41124:7;41099:37;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;41080:56;;;41155:7;41147:34;;;;;;;;;;;;:::i;:::-;;;;;;;;;41019:170;;40980:209::o:0;31505:177::-;31635:39;31652:4;31658:2;31662:7;31635:39;;;;;;;;;;;;:16;:39::i;:::-;31505:177;;;:::o;39520:44::-;39562:2;39520:44;:::o;25826:187::-;25893:7;25929:13;:11;:13::i;:::-;25921:5;:21;25913:69;;;;;;;;;;;;:::i;:::-;;;;;;;;;26000:5;25993:12;;25826:187;;;:::o;41377:100::-;2767:12;:10;:12::i;:::-;2756:23;;:7;:5;:7::i;:::-;:23;;;2748:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;41461:8:::1;41451:7;:18;;;;;;;;;;;;:::i;:::-;;41377:100:::0;:::o;39769:25::-;;;;;;;;;;;;;:::o;28644:124::-;28708:7;28735:20;28747:7;28735:11;:20::i;:::-;:25;;;28728:32;;28644:124;;;:::o;41197:83::-;2767:12;:10;:12::i;:::-;2756:23;;:7;:5;:7::i;:::-;:23;;;2748:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;41246:26:::1;41256:12;:10;:12::i;:::-;41270:1;41246:9;:26::i;:::-;41197:83::o:0;39299:26::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;27644:221::-;27708:7;27753:1;27736:19;;:5;:19;;;;27728:75;;;;;;;;;;;;:::i;:::-;;;;;;;;;27829:12;:19;27842:5;27829:19;;;;;;;;;;;;;;;:27;;;;;;;;;;;;27821:36;;27814:43;;27644:221;;;:::o;3187:103::-;2767:12;:10;:12::i;:::-;2756:23;;:7;:5;:7::i;:::-;:23;;;2748:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;3252:30:::1;3279:1;3252:18;:30::i;:::-;3187:103::o:0;39617:45::-;39659:3;39617:45;:::o;2536:87::-;2582:7;2609:6;;;;;;;;;;;2602:13;;2536:87;:::o;41485:116::-;2767:12;:10;:12::i;:::-;2756:23;;:7;:5;:7::i;:::-;:23;;;2748:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;41581:12:::1;41567:11;:26;;;;;;;;;;;;:::i;:::-;;41485:116:::0;:::o;29004:104::-;29060:13;29093:7;29086:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;29004:104;:::o;39717:43::-;39749:11;39717:43;:::o;39862:657::-;39921:15;39939:12;:10;:12::i;:::-;39921:30;;39971:6;;;;;;;;;;;39970:7;39962:26;;;;;;;;;;;;:::i;:::-;;;;;;;;;40037:7;40021:13;:11;:13::i;:::-;:23;;;;:::i;:::-;39706:4;40007:37;;39999:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;40096:1;40086:7;:11;40078:34;;;;;;;;;;;;:::i;:::-;;;;;;;;;40144:7;40131:20;;:9;:20;;;40123:45;;;;;;;;;;;;:::i;:::-;;;;;;;;;40203:13;:11;:13::i;:::-;39659:3;40184:32;40181:291;;40259:7;39562:2;40240:26;;40232:62;;;;;;;;;;;;:::i;:::-;;;;;;;;;40181:291;;;40347:7;39608:2;40333:21;;40325:57;;;;;;;;;;;;:::i;:::-;;;;;;;;;40424:9;39749:11;40405:7;:15;;;;:::i;:::-;:28;40397:63;;;;;;;;;;;;:::i;:::-;;;;;;;;;40181:291;40484:27;40494:7;40503;40484:9;:27::i;:::-;39910:609;39862:657;:::o;30682:288::-;30789:12;:10;:12::i;:::-;30777:24;;:8;:24;;;;30769:63;;;;;;;;;;;;:::i;:::-;;;;;;;;;30890:8;30845:18;:32;30864:12;:10;:12::i;:::-;30845:32;;;;;;;;;;;;;;;:42;30878:8;30845:42;;;;;;;;;;;;;;;;:53;;;;;;;;;;;;;;;;;;30943:8;30914:48;;30929:12;:10;:12::i;:::-;30914:48;;;30953:8;30914:48;;;;;;:::i;:::-;;;;;;;;30682:288;;:::o;31753:355::-;31912:28;31922:4;31928:2;31932:7;31912:9;:28::i;:::-;31973:48;31996:4;32002:2;32006:7;32015:5;31973:22;:48::i;:::-;31951:149;;;;;;;;;;;;:::i;:::-;;;;;;;;;31753:355;;;;:::o;39369:46::-;;;;;;;;;;;;;;;;;;;:::o;41609:362::-;41675:13;41709:17;41717:8;41709:7;:17::i;:::-;41701:51;;;;;;;;;;;;:::i;:::-;;;;;;;;;41794:1;41776:7;41770:21;;;;;:::i;:::-;;;:25;:193;;;;;;;;;;;;;;;;;41852:7;41876:26;41893:8;41876:16;:26::i;:::-;41919:13;;;;;;;;;;;;;;;;;41819:128;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;41770:193;41763:200;;41609:362;;;:::o;39422:89::-;39469:42;39422:89;:::o;39332:30::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;40527:445::-;40652:4;40737:27;39469:42;40737:65;;40858:8;40817:49;;40825:13;:21;;;40847:5;40825:28;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;40817:49;;;40813:93;;;40890:4;40883:11;;;;;40813:93;40925:39;40948:5;40955:8;40925:22;:39::i;:::-;40918:46;;;40527:445;;;;;:::o;3445:201::-;2767:12;:10;:12::i;:::-;2756:23;;:7;:5;:7::i;:::-;:23;;;2748:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;3554:1:::1;3534:22;;:8;:22;;;;3526:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;3610:28;3629:8;3610:18;:28::i;:::-;3445:201:::0;:::o;39571:39::-;39608:2;39571:39;:::o;23712:157::-;23797:4;23836:25;23821:40;;;:11;:40;;;;23814:47;;23712:157;;;:::o;1277:98::-;1330:7;1357:10;1350:17;;1277:98;:::o;32363:111::-;32420:4;32454:12;;32444:7;:22;32437:29;;32363:111;;;:::o;36407:196::-;36549:2;36522:15;:24;36538:7;36522:24;;;;;;;;;;;;:29;;;;;;;;;;;;;;;;;;36587:7;36583:2;36567:28;;36576:5;36567:28;;;;;;;;;;;;36407:196;;;:::o;34506:1783::-;34621:35;34659:20;34671:7;34659:11;:20::i;:::-;34621:58;;34692:22;34734:13;:18;;;34718:34;;:12;:10;:12::i;:::-;:34;;;:87;;;;34793:12;:10;:12::i;:::-;34769:36;;:20;34781:7;34769:11;:20::i;:::-;:36;;;34718:87;:154;;;;34822:50;34839:13;:18;;;34859:12;:10;:12::i;:::-;34822:16;:50::i;:::-;34718:154;34692:181;;34894:17;34886:80;;;;;;;;;;;;:::i;:::-;;;;;;;;;35009:4;34987:26;;:13;:18;;;:26;;;34979:77;;;;;;;;;;;;:::i;:::-;;;;;;;;;35089:1;35075:16;;:2;:16;;;;35067:66;;;;;;;;;;;;:::i;:::-;;;;;;;;;35146:43;35168:4;35174:2;35178:7;35187:1;35146:21;:43::i;:::-;35254:49;35271:1;35275:7;35284:13;:18;;;35254:8;:49::i;:::-;35538:1;35508:12;:18;35521:4;35508:18;;;;;;;;;;;;;;;:26;;;:31;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;35582:1;35554:12;:16;35567:2;35554:16;;;;;;;;;;;;;;;:24;;;:29;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;35630:43;;;;;;;;35645:2;35630:43;;;;;;35656:15;35630:43;;;;;35607:11;:20;35619:7;35607:20;;;;;;;;;;;:66;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;35913:19;35945:1;35935:7;:11;;;;:::i;:::-;35913:33;;36002:1;35961:43;;:11;:24;35973:11;35961:24;;;;;;;;;;;:29;;;;;;;;;;;;:43;;;35957:227;;;36025:20;36033:11;36025:7;:20::i;:::-;36021:152;;;36093:64;;;;;;;;36108:13;:18;;;36093:64;;;;;;36128:13;:28;;;36093:64;;;;;36066:11;:24;36078:11;36066:24;;;;;;;;;;;:91;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;36021:152;35957:227;36220:7;36216:2;36201:27;;36210:4;36201:27;;;;;;;;;;;;36239:42;36260:4;36266:2;36270:7;36279:1;36239:20;:42::i;:::-;34610:1679;;;34506:1783;;;:::o;28110:472::-;28171:21;;:::i;:::-;28213:16;28221:7;28213;:16::i;:::-;28205:71;;;;;;;;;;;;:::i;:::-;;;;;;;;;28294:12;28309:7;28294:22;;28289:216;28343:31;28377:11;:17;28389:4;28377:17;;;;;;;;;;;28343:51;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;28439:1;28413:28;;:9;:14;;;:28;;;28409:85;;28469:9;28462:16;;;;;;28409:85;28328:177;28320:6;;;;;:::i;:::-;;;;28289:216;;28110:472;;;;:::o;32482:104::-;32551:27;32561:2;32565:8;32551:27;;;;;;;;;;;;:9;:27::i;:::-;32482:104;;:::o;3806:191::-;3880:16;3899:6;;;;;;;;;;;3880:25;;3925:8;3916:6;;:17;;;;;;;;;;;;;;;;;;3980:8;3949:40;;3970:8;3949:40;;;;;;;;;;;;3869:128;3806:191;:::o;37168:804::-;37323:4;37344:15;:2;:13;;;:15::i;:::-;37340:625;;;37396:2;37380:36;;;37417:12;:10;:12::i;:::-;37431:4;37437:7;37446:5;37380:72;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;37376:534;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;37643:1;37626:6;:13;:18;37622:273;;;37669:61;;;;;;;;;;:::i;:::-;;;;;;;;37622:273;37845:6;37839:13;37830:6;37826:2;37822:15;37815:38;37376:534;37513:45;;;37503:55;;;:6;:55;;;;37496:62;;;;;37340:625;37949:4;37942:11;;37168:804;;;;;;;:::o;4354:723::-;4410:13;4640:1;4631:5;:10;4627:53;;;4658:10;;;;;;;;;;;;;;;;;;;;;4627:53;4690:12;4705:5;4690:20;;4721:14;4746:78;4761:1;4753:4;:9;4746:78;;4779:8;;;;;:::i;:::-;;;;4810:2;4802:10;;;;;:::i;:::-;;;4746:78;;;4834:19;4866:6;4856:17;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;4834:39;;4884:154;4900:1;4891:5;:10;4884:154;;4928:1;4918:11;;;;;:::i;:::-;;;4995:2;4987:5;:10;;;;:::i;:::-;4974:2;:24;;;;:::i;:::-;4961:39;;4944:6;4951;4944:14;;;;;;;;:::i;:::-;;;;;:56;;;;;;;;;;;5024:2;5015:11;;;;;:::i;:::-;;;4884:154;;;5062:6;5048:21;;;;;4354:723;;;;:::o;31041:164::-;31138:4;31162:18;:25;31181:5;31162:25;;;;;;;;;;;;;;;:35;31188:8;31162:35;;;;;;;;;;;;;;;;;;;;;;;;;31155:42;;31041:164;;;;:::o;38460:159::-;;;;;:::o;39031:158::-;;;;;:::o;32863:1389::-;32986:20;33009:12;;32986:35;;33054:1;33040:16;;:2;:16;;;;33032:62;;;;;;;;;;;;:::i;:::-;;;;;;;;;33239:21;33247:12;33239:7;:21::i;:::-;33238:22;33230:64;;;;;;;;;;;;:::i;:::-;;;;;;;;;33324:1;33313:8;:12;33305:60;;;;;;;;;;;;:::i;:::-;;;;;;;;;33378:61;33408:1;33412:2;33416:12;33430:8;33378:21;:61::i;:::-;33452:30;33485:12;:16;33498:2;33485:16;;;;;;;;;;;;;;;33452:49;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;33531:135;;;;;;;;33587:8;33557:11;:19;;;:39;;;;:::i;:::-;33531:135;;;;;;33646:8;33611:11;:24;;;:44;;;;:::i;:::-;33531:135;;;;;33512:12;:16;33525:2;33512:16;;;;;;;;;;;;;;;:154;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;33705:43;;;;;;;;33720:2;33705:43;;;;;;33731:15;33705:43;;;;;33677:11;:25;33689:12;33677:25;;;;;;;;;;;:71;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;33761:20;33784:12;33761:35;;33814:9;33809:325;33833:8;33829:1;:12;33809:325;;;33893:12;33889:2;33868:38;;33885:1;33868:38;;;;;;;;;;;;33947:59;33978:1;33982:2;33986:12;34000:5;33947:22;:59::i;:::-;33921:172;;;;;;;;;;;;:::i;:::-;;;;;;;;;34108:14;;;;;:::i;:::-;;;;33843:3;;;;;:::i;:::-;;;;33809:325;;;;34161:12;34146;:27;;;;34184:60;34213:1;34217:2;34221:12;34235:8;34184:20;:60::i;:::-;32975:1277;;;32863:1389;;;:::o;15533:387::-;15593:4;15801:12;15868:7;15856:20;15848:28;;15911:1;15904:4;:8;15897:15;;;15533:387;;;:::o;-1:-1:-1:-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;;;;;;;;;;;;;;;;;:::o;:::-;;;;;;;;;;;;;;;;;;;;;:::o;7:410:1:-;84:5;109:65;125:48;166:6;125:48;:::i;:::-;109:65;:::i;:::-;100:74;;197:6;190:5;183:21;235:4;228:5;224:16;273:3;264:6;259:3;255:16;252:25;249:112;;;280:79;;:::i;:::-;249:112;370:41;404:6;399:3;394;370:41;:::i;:::-;90:327;7:410;;;;;:::o;423:412::-;501:5;526:66;542:49;584:6;542:49;:::i;:::-;526:66;:::i;:::-;517:75;;615:6;608:5;601:21;653:4;646:5;642:16;691:3;682:6;677:3;673:16;670:25;667:112;;;698:79;;:::i;:::-;667:112;788:41;822:6;817:3;812;788:41;:::i;:::-;507:328;423:412;;;;;:::o;841:139::-;887:5;925:6;912:20;903:29;;941:33;968:5;941:33;:::i;:::-;841:139;;;;:::o;986:133::-;1029:5;1067:6;1054:20;1045:29;;1083:30;1107:5;1083:30;:::i;:::-;986:133;;;;:::o;1125:137::-;1170:5;1208:6;1195:20;1186:29;;1224:32;1250:5;1224:32;:::i;:::-;1125:137;;;;:::o;1268:141::-;1324:5;1355:6;1349:13;1340:22;;1371:32;1397:5;1371:32;:::i;:::-;1268:141;;;;:::o;1428:338::-;1483:5;1532:3;1525:4;1517:6;1513:17;1509:27;1499:122;;1540:79;;:::i;:::-;1499:122;1657:6;1644:20;1682:78;1756:3;1748:6;1741:4;1733:6;1729:17;1682:78;:::i;:::-;1673:87;;1489:277;1428:338;;;;:::o;1772:201::-;1858:5;1889:6;1883:13;1874:22;;1905:62;1961:5;1905:62;:::i;:::-;1772:201;;;;:::o;1993:340::-;2049:5;2098:3;2091:4;2083:6;2079:17;2075:27;2065:122;;2106:79;;:::i;:::-;2065:122;2223:6;2210:20;2248:79;2323:3;2315:6;2308:4;2300:6;2296:17;2248:79;:::i;:::-;2239:88;;2055:278;1993:340;;;;:::o;2339:139::-;2385:5;2423:6;2410:20;2401:29;;2439:33;2466:5;2439:33;:::i;:::-;2339:139;;;;:::o;2484:329::-;2543:6;2592:2;2580:9;2571:7;2567:23;2563:32;2560:119;;;2598:79;;:::i;:::-;2560:119;2718:1;2743:53;2788:7;2779:6;2768:9;2764:22;2743:53;:::i;:::-;2733:63;;2689:117;2484:329;;;;:::o;2819:474::-;2887:6;2895;2944:2;2932:9;2923:7;2919:23;2915:32;2912:119;;;2950:79;;:::i;:::-;2912:119;3070:1;3095:53;3140:7;3131:6;3120:9;3116:22;3095:53;:::i;:::-;3085:63;;3041:117;3197:2;3223:53;3268:7;3259:6;3248:9;3244:22;3223:53;:::i;:::-;3213:63;;3168:118;2819:474;;;;;:::o;3299:619::-;3376:6;3384;3392;3441:2;3429:9;3420:7;3416:23;3412:32;3409:119;;;3447:79;;:::i;:::-;3409:119;3567:1;3592:53;3637:7;3628:6;3617:9;3613:22;3592:53;:::i;:::-;3582:63;;3538:117;3694:2;3720:53;3765:7;3756:6;3745:9;3741:22;3720:53;:::i;:::-;3710:63;;3665:118;3822:2;3848:53;3893:7;3884:6;3873:9;3869:22;3848:53;:::i;:::-;3838:63;;3793:118;3299:619;;;;;:::o;3924:943::-;4019:6;4027;4035;4043;4092:3;4080:9;4071:7;4067:23;4063:33;4060:120;;;4099:79;;:::i;:::-;4060:120;4219:1;4244:53;4289:7;4280:6;4269:9;4265:22;4244:53;:::i;:::-;4234:63;;4190:117;4346:2;4372:53;4417:7;4408:6;4397:9;4393:22;4372:53;:::i;:::-;4362:63;;4317:118;4474:2;4500:53;4545:7;4536:6;4525:9;4521:22;4500:53;:::i;:::-;4490:63;;4445:118;4630:2;4619:9;4615:18;4602:32;4661:18;4653:6;4650:30;4647:117;;;4683:79;;:::i;:::-;4647:117;4788:62;4842:7;4833:6;4822:9;4818:22;4788:62;:::i;:::-;4778:72;;4573:287;3924:943;;;;;;;:::o;4873:468::-;4938:6;4946;4995:2;4983:9;4974:7;4970:23;4966:32;4963:119;;;5001:79;;:::i;:::-;4963:119;5121:1;5146:53;5191:7;5182:6;5171:9;5167:22;5146:53;:::i;:::-;5136:63;;5092:117;5248:2;5274:50;5316:7;5307:6;5296:9;5292:22;5274:50;:::i;:::-;5264:60;;5219:115;4873:468;;;;;:::o;5347:474::-;5415:6;5423;5472:2;5460:9;5451:7;5447:23;5443:32;5440:119;;;5478:79;;:::i;:::-;5440:119;5598:1;5623:53;5668:7;5659:6;5648:9;5644:22;5623:53;:::i;:::-;5613:63;;5569:117;5725:2;5751:53;5796:7;5787:6;5776:9;5772:22;5751:53;:::i;:::-;5741:63;;5696:118;5347:474;;;;;:::o;5827:323::-;5883:6;5932:2;5920:9;5911:7;5907:23;5903:32;5900:119;;;5938:79;;:::i;:::-;5900:119;6058:1;6083:50;6125:7;6116:6;6105:9;6101:22;6083:50;:::i;:::-;6073:60;;6029:114;5827:323;;;;:::o;6156:327::-;6214:6;6263:2;6251:9;6242:7;6238:23;6234:32;6231:119;;;6269:79;;:::i;:::-;6231:119;6389:1;6414:52;6458:7;6449:6;6438:9;6434:22;6414:52;:::i;:::-;6404:62;;6360:116;6156:327;;;;:::o;6489:349::-;6558:6;6607:2;6595:9;6586:7;6582:23;6578:32;6575:119;;;6613:79;;:::i;:::-;6575:119;6733:1;6758:63;6813:7;6804:6;6793:9;6789:22;6758:63;:::i;:::-;6748:73;;6704:127;6489:349;;;;:::o;6844:409::-;6943:6;6992:2;6980:9;6971:7;6967:23;6963:32;6960:119;;;6998:79;;:::i;:::-;6960:119;7118:1;7143:93;7228:7;7219:6;7208:9;7204:22;7143:93;:::i;:::-;7133:103;;7089:157;6844:409;;;;:::o;7259:509::-;7328:6;7377:2;7365:9;7356:7;7352:23;7348:32;7345:119;;;7383:79;;:::i;:::-;7345:119;7531:1;7520:9;7516:17;7503:31;7561:18;7553:6;7550:30;7547:117;;;7583:79;;:::i;:::-;7547:117;7688:63;7743:7;7734:6;7723:9;7719:22;7688:63;:::i;:::-;7678:73;;7474:287;7259:509;;;;:::o;7774:329::-;7833:6;7882:2;7870:9;7861:7;7857:23;7853:32;7850:119;;;7888:79;;:::i;:::-;7850:119;8008:1;8033:53;8078:7;8069:6;8058:9;8054:22;8033:53;:::i;:::-;8023:63;;7979:117;7774:329;;;;:::o;8109:118::-;8196:24;8214:5;8196:24;:::i;:::-;8191:3;8184:37;8109:118;;:::o;8233:109::-;8314:21;8329:5;8314:21;:::i;:::-;8309:3;8302:34;8233:109;;:::o;8348:360::-;8434:3;8462:38;8494:5;8462:38;:::i;:::-;8516:70;8579:6;8574:3;8516:70;:::i;:::-;8509:77;;8595:52;8640:6;8635:3;8628:4;8621:5;8617:16;8595:52;:::i;:::-;8672:29;8694:6;8672:29;:::i;:::-;8667:3;8663:39;8656:46;;8438:270;8348:360;;;;:::o;8714:364::-;8802:3;8830:39;8863:5;8830:39;:::i;:::-;8885:71;8949:6;8944:3;8885:71;:::i;:::-;8878:78;;8965:52;9010:6;9005:3;8998:4;8991:5;8987:16;8965:52;:::i;:::-;9042:29;9064:6;9042:29;:::i;:::-;9037:3;9033:39;9026:46;;8806:272;8714:364;;;;:::o;9084:377::-;9190:3;9218:39;9251:5;9218:39;:::i;:::-;9273:89;9355:6;9350:3;9273:89;:::i;:::-;9266:96;;9371:52;9416:6;9411:3;9404:4;9397:5;9393:16;9371:52;:::i;:::-;9448:6;9443:3;9439:16;9432:23;;9194:267;9084:377;;;;:::o;9491:845::-;9594:3;9631:5;9625:12;9660:36;9686:9;9660:36;:::i;:::-;9712:89;9794:6;9789:3;9712:89;:::i;:::-;9705:96;;9832:1;9821:9;9817:17;9848:1;9843:137;;;;9994:1;9989:341;;;;9810:520;;9843:137;9927:4;9923:9;9912;9908:25;9903:3;9896:38;9963:6;9958:3;9954:16;9947:23;;9843:137;;9989:341;10056:38;10088:5;10056:38;:::i;:::-;10116:1;10130:154;10144:6;10141:1;10138:13;10130:154;;;10218:7;10212:14;10208:1;10203:3;10199:11;10192:35;10268:1;10259:7;10255:15;10244:26;;10166:4;10163:1;10159:12;10154:17;;10130:154;;;10313:6;10308:3;10304:16;10297:23;;9996:334;;9810:520;;9598:738;;9491:845;;;;:::o;10342:366::-;10484:3;10505:67;10569:2;10564:3;10505:67;:::i;:::-;10498:74;;10581:93;10670:3;10581:93;:::i;:::-;10699:2;10694:3;10690:12;10683:19;;10342:366;;;:::o;10714:365::-;10856:3;10877:66;10941:1;10936:3;10877:66;:::i;:::-;10870:73;;10952:93;11041:3;10952:93;:::i;:::-;11070:2;11065:3;11061:12;11054:19;;10714:365;;;:::o;11085:366::-;11227:3;11248:67;11312:2;11307:3;11248:67;:::i;:::-;11241:74;;11324:93;11413:3;11324:93;:::i;:::-;11442:2;11437:3;11433:12;11426:19;;11085:366;;;:::o;11457:::-;11599:3;11620:67;11684:2;11679:3;11620:67;:::i;:::-;11613:74;;11696:93;11785:3;11696:93;:::i;:::-;11814:2;11809:3;11805:12;11798:19;;11457:366;;;:::o;11829:::-;11971:3;11992:67;12056:2;12051:3;11992:67;:::i;:::-;11985:74;;12068:93;12157:3;12068:93;:::i;:::-;12186:2;12181:3;12177:12;12170:19;;11829:366;;;:::o;12201:::-;12343:3;12364:67;12428:2;12423:3;12364:67;:::i;:::-;12357:74;;12440:93;12529:3;12440:93;:::i;:::-;12558:2;12553:3;12549:12;12542:19;;12201:366;;;:::o;12573:::-;12715:3;12736:67;12800:2;12795:3;12736:67;:::i;:::-;12729:74;;12812:93;12901:3;12812:93;:::i;:::-;12930:2;12925:3;12921:12;12914:19;;12573:366;;;:::o;12945:::-;13087:3;13108:67;13172:2;13167:3;13108:67;:::i;:::-;13101:74;;13184:93;13273:3;13184:93;:::i;:::-;13302:2;13297:3;13293:12;13286:19;;12945:366;;;:::o;13317:::-;13459:3;13480:67;13544:2;13539:3;13480:67;:::i;:::-;13473:74;;13556:93;13645:3;13556:93;:::i;:::-;13674:2;13669:3;13665:12;13658:19;;13317:366;;;:::o;13689:::-;13831:3;13852:67;13916:2;13911:3;13852:67;:::i;:::-;13845:74;;13928:93;14017:3;13928:93;:::i;:::-;14046:2;14041:3;14037:12;14030:19;;13689:366;;;:::o;14061:::-;14203:3;14224:67;14288:2;14283:3;14224:67;:::i;:::-;14217:74;;14300:93;14389:3;14300:93;:::i;:::-;14418:2;14413:3;14409:12;14402:19;;14061:366;;;:::o;14433:::-;14575:3;14596:67;14660:2;14655:3;14596:67;:::i;:::-;14589:74;;14672:93;14761:3;14672:93;:::i;:::-;14790:2;14785:3;14781:12;14774:19;;14433:366;;;:::o;14805:::-;14947:3;14968:67;15032:2;15027:3;14968:67;:::i;:::-;14961:74;;15044:93;15133:3;15044:93;:::i;:::-;15162:2;15157:3;15153:12;15146:19;;14805:366;;;:::o;15177:::-;15319:3;15340:67;15404:2;15399:3;15340:67;:::i;:::-;15333:74;;15416:93;15505:3;15416:93;:::i;:::-;15534:2;15529:3;15525:12;15518:19;;15177:366;;;:::o;15549:::-;15691:3;15712:67;15776:2;15771:3;15712:67;:::i;:::-;15705:74;;15788:93;15877:3;15788:93;:::i;:::-;15906:2;15901:3;15897:12;15890:19;;15549:366;;;:::o;15921:::-;16063:3;16084:67;16148:2;16143:3;16084:67;:::i;:::-;16077:74;;16160:93;16249:3;16160:93;:::i;:::-;16278:2;16273:3;16269:12;16262:19;;15921:366;;;:::o;16293:::-;16435:3;16456:67;16520:2;16515:3;16456:67;:::i;:::-;16449:74;;16532:93;16621:3;16532:93;:::i;:::-;16650:2;16645:3;16641:12;16634:19;;16293:366;;;:::o;16665:::-;16807:3;16828:67;16892:2;16887:3;16828:67;:::i;:::-;16821:74;;16904:93;16993:3;16904:93;:::i;:::-;17022:2;17017:3;17013:12;17006:19;;16665:366;;;:::o;17037:::-;17179:3;17200:67;17264:2;17259:3;17200:67;:::i;:::-;17193:74;;17276:93;17365:3;17276:93;:::i;:::-;17394:2;17389:3;17385:12;17378:19;;17037:366;;;:::o;17409:398::-;17568:3;17589:83;17670:1;17665:3;17589:83;:::i;:::-;17582:90;;17681:93;17770:3;17681:93;:::i;:::-;17799:1;17794:3;17790:11;17783:18;;17409:398;;;:::o;17813:366::-;17955:3;17976:67;18040:2;18035:3;17976:67;:::i;:::-;17969:74;;18052:93;18141:3;18052:93;:::i;:::-;18170:2;18165:3;18161:12;18154:19;;17813:366;;;:::o;18185:::-;18327:3;18348:67;18412:2;18407:3;18348:67;:::i;:::-;18341:74;;18424:93;18513:3;18424:93;:::i;:::-;18542:2;18537:3;18533:12;18526:19;;18185:366;;;:::o;18557:::-;18699:3;18720:67;18784:2;18779:3;18720:67;:::i;:::-;18713:74;;18796:93;18885:3;18796:93;:::i;:::-;18914:2;18909:3;18905:12;18898:19;;18557:366;;;:::o;18929:::-;19071:3;19092:67;19156:2;19151:3;19092:67;:::i;:::-;19085:74;;19168:93;19257:3;19168:93;:::i;:::-;19286:2;19281:3;19277:12;19270:19;;18929:366;;;:::o;19301:::-;19443:3;19464:67;19528:2;19523:3;19464:67;:::i;:::-;19457:74;;19540:93;19629:3;19540:93;:::i;:::-;19658:2;19653:3;19649:12;19642:19;;19301:366;;;:::o;19673:::-;19815:3;19836:67;19900:2;19895:3;19836:67;:::i;:::-;19829:74;;19912:93;20001:3;19912:93;:::i;:::-;20030:2;20025:3;20021:12;20014:19;;19673:366;;;:::o;20417:::-;20559:3;20580:67;20644:2;20639:3;20580:67;:::i;:::-;20573:74;;20656:93;20745:3;20656:93;:::i;:::-;20774:2;20769:3;20765:12;20758:19;;20417:366;;;:::o;20789:::-;20931:3;20952:67;21016:2;21011:3;20952:67;:::i;:::-;20945:74;;21028:93;21117:3;21028:93;:::i;:::-;21146:2;21141:3;21137:12;21130:19;;20789:366;;;:::o;21161:118::-;21248:24;21266:5;21248:24;:::i;:::-;21243:3;21236:37;21161:118;;:::o;21285:589::-;21510:3;21532:92;21620:3;21611:6;21532:92;:::i;:::-;21525:99;;21641:95;21732:3;21723:6;21641:95;:::i;:::-;21634:102;;21753:95;21844:3;21835:6;21753:95;:::i;:::-;21746:102;;21865:3;21858:10;;21285:589;;;;;;:::o;21880:379::-;22064:3;22086:147;22229:3;22086:147;:::i;:::-;22079:154;;22250:3;22243:10;;21880:379;;;:::o;22265:222::-;22358:4;22396:2;22385:9;22381:18;22373:26;;22409:71;22477:1;22466:9;22462:17;22453:6;22409:71;:::i;:::-;22265:222;;;;:::o;22493:640::-;22688:4;22726:3;22715:9;22711:19;22703:27;;22740:71;22808:1;22797:9;22793:17;22784:6;22740:71;:::i;:::-;22821:72;22889:2;22878:9;22874:18;22865:6;22821:72;:::i;:::-;22903;22971:2;22960:9;22956:18;22947:6;22903:72;:::i;:::-;23022:9;23016:4;23012:20;23007:2;22996:9;22992:18;22985:48;23050:76;23121:4;23112:6;23050:76;:::i;:::-;23042:84;;22493:640;;;;;;;:::o;23139:210::-;23226:4;23264:2;23253:9;23249:18;23241:26;;23277:65;23339:1;23328:9;23324:17;23315:6;23277:65;:::i;:::-;23139:210;;;;:::o;23355:313::-;23468:4;23506:2;23495:9;23491:18;23483:26;;23555:9;23549:4;23545:20;23541:1;23530:9;23526:17;23519:47;23583:78;23656:4;23647:6;23583:78;:::i;:::-;23575:86;;23355:313;;;;:::o;23674:419::-;23840:4;23878:2;23867:9;23863:18;23855:26;;23927:9;23921:4;23917:20;23913:1;23902:9;23898:17;23891:47;23955:131;24081:4;23955:131;:::i;:::-;23947:139;;23674:419;;;:::o;24099:::-;24265:4;24303:2;24292:9;24288:18;24280:26;;24352:9;24346:4;24342:20;24338:1;24327:9;24323:17;24316:47;24380:131;24506:4;24380:131;:::i;:::-;24372:139;;24099:419;;;:::o;24524:::-;24690:4;24728:2;24717:9;24713:18;24705:26;;24777:9;24771:4;24767:20;24763:1;24752:9;24748:17;24741:47;24805:131;24931:4;24805:131;:::i;:::-;24797:139;;24524:419;;;:::o;24949:::-;25115:4;25153:2;25142:9;25138:18;25130:26;;25202:9;25196:4;25192:20;25188:1;25177:9;25173:17;25166:47;25230:131;25356:4;25230:131;:::i;:::-;25222:139;;24949:419;;;:::o;25374:::-;25540:4;25578:2;25567:9;25563:18;25555:26;;25627:9;25621:4;25617:20;25613:1;25602:9;25598:17;25591:47;25655:131;25781:4;25655:131;:::i;:::-;25647:139;;25374:419;;;:::o;25799:::-;25965:4;26003:2;25992:9;25988:18;25980:26;;26052:9;26046:4;26042:20;26038:1;26027:9;26023:17;26016:47;26080:131;26206:4;26080:131;:::i;:::-;26072:139;;25799:419;;;:::o;26224:::-;26390:4;26428:2;26417:9;26413:18;26405:26;;26477:9;26471:4;26467:20;26463:1;26452:9;26448:17;26441:47;26505:131;26631:4;26505:131;:::i;:::-;26497:139;;26224:419;;;:::o;26649:::-;26815:4;26853:2;26842:9;26838:18;26830:26;;26902:9;26896:4;26892:20;26888:1;26877:9;26873:17;26866:47;26930:131;27056:4;26930:131;:::i;:::-;26922:139;;26649:419;;;:::o;27074:::-;27240:4;27278:2;27267:9;27263:18;27255:26;;27327:9;27321:4;27317:20;27313:1;27302:9;27298:17;27291:47;27355:131;27481:4;27355:131;:::i;:::-;27347:139;;27074:419;;;:::o;27499:::-;27665:4;27703:2;27692:9;27688:18;27680:26;;27752:9;27746:4;27742:20;27738:1;27727:9;27723:17;27716:47;27780:131;27906:4;27780:131;:::i;:::-;27772:139;;27499:419;;;:::o;27924:::-;28090:4;28128:2;28117:9;28113:18;28105:26;;28177:9;28171:4;28167:20;28163:1;28152:9;28148:17;28141:47;28205:131;28331:4;28205:131;:::i;:::-;28197:139;;27924:419;;;:::o;28349:::-;28515:4;28553:2;28542:9;28538:18;28530:26;;28602:9;28596:4;28592:20;28588:1;28577:9;28573:17;28566:47;28630:131;28756:4;28630:131;:::i;:::-;28622:139;;28349:419;;;:::o;28774:::-;28940:4;28978:2;28967:9;28963:18;28955:26;;29027:9;29021:4;29017:20;29013:1;29002:9;28998:17;28991:47;29055:131;29181:4;29055:131;:::i;:::-;29047:139;;28774:419;;;:::o;29199:::-;29365:4;29403:2;29392:9;29388:18;29380:26;;29452:9;29446:4;29442:20;29438:1;29427:9;29423:17;29416:47;29480:131;29606:4;29480:131;:::i;:::-;29472:139;;29199:419;;;:::o;29624:::-;29790:4;29828:2;29817:9;29813:18;29805:26;;29877:9;29871:4;29867:20;29863:1;29852:9;29848:17;29841:47;29905:131;30031:4;29905:131;:::i;:::-;29897:139;;29624:419;;;:::o;30049:::-;30215:4;30253:2;30242:9;30238:18;30230:26;;30302:9;30296:4;30292:20;30288:1;30277:9;30273:17;30266:47;30330:131;30456:4;30330:131;:::i;:::-;30322:139;;30049:419;;;:::o;30474:::-;30640:4;30678:2;30667:9;30663:18;30655:26;;30727:9;30721:4;30717:20;30713:1;30702:9;30698:17;30691:47;30755:131;30881:4;30755:131;:::i;:::-;30747:139;;30474:419;;;:::o;30899:::-;31065:4;31103:2;31092:9;31088:18;31080:26;;31152:9;31146:4;31142:20;31138:1;31127:9;31123:17;31116:47;31180:131;31306:4;31180:131;:::i;:::-;31172:139;;30899:419;;;:::o;31324:::-;31490:4;31528:2;31517:9;31513:18;31505:26;;31577:9;31571:4;31567:20;31563:1;31552:9;31548:17;31541:47;31605:131;31731:4;31605:131;:::i;:::-;31597:139;;31324:419;;;:::o;31749:::-;31915:4;31953:2;31942:9;31938:18;31930:26;;32002:9;31996:4;31992:20;31988:1;31977:9;31973:17;31966:47;32030:131;32156:4;32030:131;:::i;:::-;32022:139;;31749:419;;;:::o;32174:::-;32340:4;32378:2;32367:9;32363:18;32355:26;;32427:9;32421:4;32417:20;32413:1;32402:9;32398:17;32391:47;32455:131;32581:4;32455:131;:::i;:::-;32447:139;;32174:419;;;:::o;32599:::-;32765:4;32803:2;32792:9;32788:18;32780:26;;32852:9;32846:4;32842:20;32838:1;32827:9;32823:17;32816:47;32880:131;33006:4;32880:131;:::i;:::-;32872:139;;32599:419;;;:::o;33024:::-;33190:4;33228:2;33217:9;33213:18;33205:26;;33277:9;33271:4;33267:20;33263:1;33252:9;33248:17;33241:47;33305:131;33431:4;33305:131;:::i;:::-;33297:139;;33024:419;;;:::o;33449:::-;33615:4;33653:2;33642:9;33638:18;33630:26;;33702:9;33696:4;33692:20;33688:1;33677:9;33673:17;33666:47;33730:131;33856:4;33730:131;:::i;:::-;33722:139;;33449:419;;;:::o;33874:::-;34040:4;34078:2;34067:9;34063:18;34055:26;;34127:9;34121:4;34117:20;34113:1;34102:9;34098:17;34091:47;34155:131;34281:4;34155:131;:::i;:::-;34147:139;;33874:419;;;:::o;34724:::-;34890:4;34928:2;34917:9;34913:18;34905:26;;34977:9;34971:4;34967:20;34963:1;34952:9;34948:17;34941:47;35005:131;35131:4;35005:131;:::i;:::-;34997:139;;34724:419;;;:::o;35149:::-;35315:4;35353:2;35342:9;35338:18;35330:26;;35402:9;35396:4;35392:20;35388:1;35377:9;35373:17;35366:47;35430:131;35556:4;35430:131;:::i;:::-;35422:139;;35149:419;;;:::o;35574:222::-;35667:4;35705:2;35694:9;35690:18;35682:26;;35718:71;35786:1;35775:9;35771:17;35762:6;35718:71;:::i;:::-;35574:222;;;;:::o;35802:129::-;35836:6;35863:20;;:::i;:::-;35853:30;;35892:33;35920:4;35912:6;35892:33;:::i;:::-;35802:129;;;:::o;35937:75::-;35970:6;36003:2;35997:9;35987:19;;35937:75;:::o;36018:307::-;36079:4;36169:18;36161:6;36158:30;36155:56;;;36191:18;;:::i;:::-;36155:56;36229:29;36251:6;36229:29;:::i;:::-;36221:37;;36313:4;36307;36303:15;36295:23;;36018:307;;;:::o;36331:308::-;36393:4;36483:18;36475:6;36472:30;36469:56;;;36505:18;;:::i;:::-;36469:56;36543:29;36565:6;36543:29;:::i;:::-;36535:37;;36627:4;36621;36617:15;36609:23;;36331:308;;;:::o;36645:141::-;36694:4;36717:3;36709:11;;36740:3;36737:1;36730:14;36774:4;36771:1;36761:18;36753:26;;36645:141;;;:::o;36792:98::-;36843:6;36877:5;36871:12;36861:22;;36792:98;;;:::o;36896:99::-;36948:6;36982:5;36976:12;36966:22;;36896:99;;;:::o;37001:168::-;37084:11;37118:6;37113:3;37106:19;37158:4;37153:3;37149:14;37134:29;;37001:168;;;;:::o;37175:147::-;37276:11;37313:3;37298:18;;37175:147;;;;:::o;37328:169::-;37412:11;37446:6;37441:3;37434:19;37486:4;37481:3;37477:14;37462:29;;37328:169;;;;:::o;37503:148::-;37605:11;37642:3;37627:18;;37503:148;;;;:::o;37657:273::-;37697:3;37716:20;37734:1;37716:20;:::i;:::-;37711:25;;37750:20;37768:1;37750:20;:::i;:::-;37745:25;;37872:1;37836:34;37832:42;37829:1;37826:49;37823:75;;;37878:18;;:::i;:::-;37823:75;37922:1;37919;37915:9;37908:16;;37657:273;;;;:::o;37936:305::-;37976:3;37995:20;38013:1;37995:20;:::i;:::-;37990:25;;38029:20;38047:1;38029:20;:::i;:::-;38024:25;;38183:1;38115:66;38111:74;38108:1;38105:81;38102:107;;;38189:18;;:::i;:::-;38102:107;38233:1;38230;38226:9;38219:16;;37936:305;;;;:::o;38247:185::-;38287:1;38304:20;38322:1;38304:20;:::i;:::-;38299:25;;38338:20;38356:1;38338:20;:::i;:::-;38333:25;;38377:1;38367:35;;38382:18;;:::i;:::-;38367:35;38424:1;38421;38417:9;38412:14;;38247:185;;;;:::o;38438:348::-;38478:7;38501:20;38519:1;38501:20;:::i;:::-;38496:25;;38535:20;38553:1;38535:20;:::i;:::-;38530:25;;38723:1;38655:66;38651:74;38648:1;38645:81;38640:1;38633:9;38626:17;38622:105;38619:131;;;38730:18;;:::i;:::-;38619:131;38778:1;38775;38771:9;38760:20;;38438:348;;;;:::o;38792:191::-;38832:4;38852:20;38870:1;38852:20;:::i;:::-;38847:25;;38886:20;38904:1;38886:20;:::i;:::-;38881:25;;38925:1;38922;38919:8;38916:34;;;38930:18;;:::i;:::-;38916:34;38975:1;38972;38968:9;38960:17;;38792:191;;;;:::o;38989:96::-;39026:7;39055:24;39073:5;39055:24;:::i;:::-;39044:35;;38989:96;;;:::o;39091:90::-;39125:7;39168:5;39161:13;39154:21;39143:32;;39091:90;;;:::o;39187:149::-;39223:7;39263:66;39256:5;39252:78;39241:89;;39187:149;;;:::o;39342:125::-;39408:7;39437:24;39455:5;39437:24;:::i;:::-;39426:35;;39342:125;;;:::o;39473:118::-;39510:7;39550:34;39543:5;39539:46;39528:57;;39473:118;;;:::o;39597:126::-;39634:7;39674:42;39667:5;39663:54;39652:65;;39597:126;;;:::o;39729:77::-;39766:7;39795:5;39784:16;;39729:77;;;:::o;39812:154::-;39896:6;39891:3;39886;39873:30;39958:1;39949:6;39944:3;39940:16;39933:27;39812:154;;;:::o;39972:307::-;40040:1;40050:113;40064:6;40061:1;40058:13;40050:113;;;40149:1;40144:3;40140:11;40134:18;40130:1;40125:3;40121:11;40114:39;40086:2;40083:1;40079:10;40074:15;;40050:113;;;40181:6;40178:1;40175:13;40172:101;;;40261:1;40252:6;40247:3;40243:16;40236:27;40172:101;40021:258;39972:307;;;:::o;40285:171::-;40324:3;40347:24;40365:5;40347:24;:::i;:::-;40338:33;;40393:4;40386:5;40383:15;40380:41;;;40401:18;;:::i;:::-;40380:41;40448:1;40441:5;40437:13;40430:20;;40285:171;;;:::o;40462:320::-;40506:6;40543:1;40537:4;40533:12;40523:22;;40590:1;40584:4;40580:12;40611:18;40601:81;;40667:4;40659:6;40655:17;40645:27;;40601:81;40729:2;40721:6;40718:14;40698:18;40695:38;40692:84;;;40748:18;;:::i;:::-;40692:84;40513:269;40462:320;;;:::o;40788:281::-;40871:27;40893:4;40871:27;:::i;:::-;40863:6;40859:40;41001:6;40989:10;40986:22;40965:18;40953:10;40950:34;40947:62;40944:88;;;41012:18;;:::i;:::-;40944:88;41052:10;41048:2;41041:22;40831:238;40788:281;;:::o;41075:233::-;41114:3;41137:24;41155:5;41137:24;:::i;:::-;41128:33;;41183:66;41176:5;41173:77;41170:103;;;41253:18;;:::i;:::-;41170:103;41300:1;41293:5;41289:13;41282:20;;41075:233;;;:::o;41314:176::-;41346:1;41363:20;41381:1;41363:20;:::i;:::-;41358:25;;41397:20;41415:1;41397:20;:::i;:::-;41392:25;;41436:1;41426:35;;41441:18;;:::i;:::-;41426:35;41482:1;41479;41475:9;41470:14;;41314:176;;;;:::o;41496:180::-;41544:77;41541:1;41534:88;41641:4;41638:1;41631:15;41665:4;41662:1;41655:15;41682:180;41730:77;41727:1;41720:88;41827:4;41824:1;41817:15;41851:4;41848:1;41841:15;41868:180;41916:77;41913:1;41906:88;42013:4;42010:1;42003:15;42037:4;42034:1;42027:15;42054:180;42102:77;42099:1;42092:88;42199:4;42196:1;42189:15;42223:4;42220:1;42213:15;42240:180;42288:77;42285:1;42278:88;42385:4;42382:1;42375:15;42409:4;42406:1;42399:15;42426:117;42535:1;42532;42525:12;42549:117;42658:1;42655;42648:12;42672:117;42781:1;42778;42771:12;42795:117;42904:1;42901;42894:12;42918:102;42959:6;43010:2;43006:7;43001:2;42994:5;42990:14;42986:28;42976:38;;42918:102;;;:::o;43026:221::-;43166:34;43162:1;43154:6;43150:14;43143:58;43235:4;43230:2;43222:6;43218:15;43211:29;43026:221;:::o;43253:156::-;43393:8;43389:1;43381:6;43377:14;43370:32;43253:156;:::o;43415:225::-;43555:34;43551:1;43543:6;43539:14;43532:58;43624:8;43619:2;43611:6;43607:15;43600:33;43415:225;:::o;43646:229::-;43786:34;43782:1;43774:6;43770:14;43763:58;43855:12;43850:2;43842:6;43838:15;43831:37;43646:229;:::o;43881:160::-;44021:12;44017:1;44009:6;44005:14;43998:36;43881:160;:::o;44047:172::-;44187:24;44183:1;44175:6;44171:14;44164:48;44047:172;:::o;44225:222::-;44365:34;44361:1;44353:6;44349:14;44342:58;44434:5;44429:2;44421:6;44417:15;44410:30;44225:222;:::o;44453:224::-;44593:34;44589:1;44581:6;44577:14;44570:58;44662:7;44657:2;44649:6;44645:15;44638:32;44453:224;:::o;44683:172::-;44823:24;44819:1;44811:6;44807:14;44800:48;44683:172;:::o;44861:244::-;45001:34;44997:1;44989:6;44985:14;44978:58;45070:27;45065:2;45057:6;45053:15;45046:52;44861:244;:::o;45111:168::-;45251:20;45247:1;45239:6;45235:14;45228:44;45111:168;:::o;45285:230::-;45425:34;45421:1;45413:6;45409:14;45402:58;45494:13;45489:2;45481:6;45477:15;45470:38;45285:230;:::o;45521:171::-;45661:23;45657:1;45649:6;45645:14;45638:47;45521:171;:::o;45698:225::-;45838:34;45834:1;45826:6;45822:14;45815:58;45907:8;45902:2;45894:6;45890:15;45883:33;45698:225;:::o;45929:182::-;46069:34;46065:1;46057:6;46053:14;46046:58;45929:182;:::o;46117:176::-;46257:28;46253:1;46245:6;46241:14;46234:52;46117:176;:::o;46299:237::-;46439:34;46435:1;46427:6;46423:14;46416:58;46508:20;46503:2;46495:6;46491:15;46484:45;46299:237;:::o;46542:172::-;46682:24;46678:1;46670:6;46666:14;46659:48;46542:172;:::o;46720:221::-;46860:34;46856:1;46848:6;46844:14;46837:58;46929:4;46924:2;46916:6;46912:15;46905:29;46720:221;:::o;46947:114::-;;:::o;47067:222::-;47207:34;47203:1;47195:6;47191:14;47184:58;47276:5;47271:2;47263:6;47259:15;47252:30;47067:222;:::o;47295:238::-;47435:34;47431:1;47423:6;47419:14;47412:58;47504:21;47499:2;47491:6;47487:15;47480:46;47295:238;:::o;47539:179::-;47679:31;47675:1;47667:6;47663:14;47656:55;47539:179;:::o;47724:220::-;47864:34;47860:1;47852:6;47848:14;47841:58;47933:3;47928:2;47920:6;47916:15;47909:28;47724:220;:::o;47950:164::-;48090:16;48086:1;48078:6;48074:14;48067:40;47950:164;:::o;48120:233::-;48260:34;48256:1;48248:6;48244:14;48237:58;48329:16;48324:2;48316:6;48312:15;48305:41;48120:233;:::o;48599:232::-;48739:34;48735:1;48727:6;48723:14;48716:58;48808:15;48803:2;48795:6;48791:15;48784:40;48599:232;:::o;48837:162::-;48977:14;48973:1;48965:6;48961:14;48954:38;48837:162;:::o;49005:122::-;49078:24;49096:5;49078:24;:::i;:::-;49071:5;49068:35;49058:63;;49117:1;49114;49107:12;49058:63;49005:122;:::o;49133:116::-;49203:21;49218:5;49203:21;:::i;:::-;49196:5;49193:32;49183:60;;49239:1;49236;49229:12;49183:60;49133:116;:::o;49255:120::-;49327:23;49344:5;49327:23;:::i;:::-;49320:5;49317:34;49307:62;;49365:1;49362;49355:12;49307:62;49255:120;:::o;49381:180::-;49483:53;49530:5;49483:53;:::i;:::-;49476:5;49473:64;49463:92;;49551:1;49548;49541:12;49463:92;49381:180;:::o;49567:122::-;49640:24;49658:5;49640:24;:::i;:::-;49633:5;49630:35;49620:63;;49679:1;49676;49669:12;49620:63;49567:122;:::o

Swarm Source

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