ETH Price: $3,128.80 (+1.59%)
Gas: 3 Gwei

Token

The Blinkless (BLNK)
 

Overview

Max Total Supply

5,555 BLNK

Holders

857

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A
Balance
1 BLNK
0x147315b89468da7f7026ae4d3ddfa9fc5490b4ea
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:
Blinkless

Compiler Version
v0.8.7+commit.e28d00a7

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion, None license

Contract Source Code (Solidity)

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

// File: @openzeppelin/contracts/utils/cryptography/MerkleProof.sol


// OpenZeppelin Contracts (last updated v4.5.0) (utils/cryptography/MerkleProof.sol)

pragma solidity ^0.8.0;

/**
 * @dev These functions deal with verification of Merkle Trees proofs.
 *
 * The proofs can be generated using the JavaScript library
 * https://github.com/miguelmota/merkletreejs[merkletreejs].
 * Note: the hashing algorithm should be keccak256 and pair sorting should be enabled.
 *
 * See `test/utils/cryptography/MerkleProof.test.js` for some examples.
 */
library MerkleProof {
    /**
     * @dev Returns true if a `leaf` can be proved to be a part of a Merkle tree
     * defined by `root`. For this, a `proof` must be provided, containing
     * sibling hashes on the branch from the leaf to the root of the tree. Each
     * pair of leaves and each pair of pre-images are assumed to be sorted.
     */
    function verify(
        bytes32[] memory proof,
        bytes32 root,
        bytes32 leaf
    ) internal pure returns (bool) {
        return processProof(proof, leaf) == root;
    }

    /**
     * @dev Returns the rebuilt hash obtained by traversing a Merklee tree up
     * from `leaf` using `proof`. A `proof` is valid if and only if the rebuilt
     * hash matches the root of the tree. When processing the proof, the pairs
     * of leafs & pre-images are assumed to be sorted.
     *
     * _Available since v4.4._
     */
    function processProof(bytes32[] memory proof, bytes32 leaf) internal pure returns (bytes32) {
        bytes32 computedHash = leaf;
        for (uint256 i = 0; i < proof.length; i++) {
            bytes32 proofElement = proof[i];
            if (computedHash <= proofElement) {
                // Hash(current computed hash + current element of the proof)
                computedHash = _efficientHash(computedHash, proofElement);
            } else {
                // Hash(current element of the proof + current computed hash)
                computedHash = _efficientHash(proofElement, computedHash);
            }
        }
        return computedHash;
    }

    function _efficientHash(bytes32 a, bytes32 b) private pure returns (bytes32 value) {
        assembly {
            mstore(0x00, a)
            mstore(0x20, b)
            value := keccak256(0x00, 0x40)
        }
    }
}

// File: @openzeppelin/contracts/utils/Strings.sol


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

pragma solidity ^0.8.0;

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

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

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

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

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

// File: @openzeppelin/contracts/utils/Address.sol


// OpenZeppelin Contracts (last updated v4.5.0) (utils/Address.sol)

pragma solidity ^0.8.1;

/**
 * @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
     * ====
     *
     * [IMPORTANT]
     * ====
     * You shouldn't rely on `isContract` to protect against flash loan attacks!
     *
     * Preventing calls from contracts is highly discouraged. It breaks composability, breaks support for smart wallets
     * like Gnosis Safe, and does not provide security since it can be circumvented by calling from a contract
     * constructor.
     * ====
     */
    function isContract(address account) internal view returns (bool) {
        // This method relies on extcodesize/address.code.length, which returns 0
        // for contracts in construction, since the code is only stored at the end
        // of the constructor execution.

        return account.code.length > 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/token/ERC721/IERC721Receiver.sol


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

pragma solidity ^0.8.0;

/**
 * @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/utils/introspection/IERC165.sol


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

pragma solidity ^0.8.0;

/**
 * @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/utils/introspection/ERC165.sol


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

pragma solidity ^0.8.0;


/**
 * @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: @openzeppelin/contracts/token/ERC721/IERC721.sol


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

pragma solidity ^0.8.0;


/**
 * @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/extensions/IERC721Metadata.sol


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

pragma solidity ^0.8.0;


/**
 * @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/security/ReentrancyGuard.sol


// OpenZeppelin Contracts v4.4.1 (security/ReentrancyGuard.sol)

pragma solidity ^0.8.0;

/**
 * @dev Contract module that helps prevent reentrant calls to a function.
 *
 * Inheriting from `ReentrancyGuard` will make the {nonReentrant} modifier
 * available, which can be applied to functions to make sure there are no nested
 * (reentrant) calls to them.
 *
 * Note that because there is a single `nonReentrant` guard, functions marked as
 * `nonReentrant` may not call one another. This can be worked around by making
 * those functions `private`, and then adding `external` `nonReentrant` entry
 * points to them.
 *
 * TIP: If you would like to learn more about reentrancy and alternative ways
 * to protect against it, check out our blog post
 * https://blog.openzeppelin.com/reentrancy-after-istanbul/[Reentrancy After Istanbul].
 */
abstract contract ReentrancyGuard {
    // Booleans are more expensive than uint256 or any type that takes up a full
    // word because each write operation emits an extra SLOAD to first read the
    // slot's contents, replace the bits taken up by the boolean, and then write
    // back. This is the compiler's defense against contract upgrades and
    // pointer aliasing, and it cannot be disabled.

    // The values being non-zero value makes deployment a bit more expensive,
    // but in exchange the refund on every call to nonReentrant will be lower in
    // amount. Since refunds are capped to a percentage of the total
    // transaction's gas, it is best to keep them low in cases like this one, to
    // increase the likelihood of the full refund coming into effect.
    uint256 private constant _NOT_ENTERED = 1;
    uint256 private constant _ENTERED = 2;

    uint256 private _status;

    constructor() {
        _status = _NOT_ENTERED;
    }

    /**
     * @dev Prevents a contract from calling itself, directly or indirectly.
     * Calling a `nonReentrant` function from another `nonReentrant`
     * function is not supported. It is possible to prevent this from happening
     * by making the `nonReentrant` function external, and making it call a
     * `private` function that does the actual work.
     */
    modifier nonReentrant() {
        // On the first call to nonReentrant, _notEntered will be true
        require(_status != _ENTERED, "ReentrancyGuard: reentrant call");

        // Any calls to nonReentrant after this point will fail
        _status = _ENTERED;

        _;

        // By storing the original value once again, a refund is triggered (see
        // https://eips.ethereum.org/EIPS/eip-2200)
        _status = _NOT_ENTERED;
    }
}

// File: @openzeppelin/contracts/utils/Context.sol


// 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: contracts/ERC721B.sol


/*  Creator: Chiru Labs. 
    ===========================
    Adapted by @digitalkemical. 
    This is not intended to be a new standard. 
    It is an adaptation of the ERC721A which adds a few features.
*/

pragma solidity ^0.8.4;








error ApprovalCallerNotOwnerNorApproved();
error ApprovalQueryForNonexistentToken();
error ApproveToCaller();
error ApprovalToCurrentOwner();
error BalanceQueryForZeroAddress();
error MintToZeroAddress();
error MintZeroQuantity();
error OwnerQueryForNonexistentToken();
error TransferCallerNotOwnerNorApproved();
error TransferFromIncorrectOwner();
error TransferToNonERC721ReceiverImplementer();
error TransferToZeroAddress();
error URIQueryForNonexistentToken();

/**
 * @dev Implementation of https://eips.ethereum.org/EIPS/eip-721[ERC721] Non-Fungible Token Standard, including
 * the Metadata extension. Built to optimize for lower gas during batch mints.
 *
 * Assumes serials are sequentially minted starting at _startTokenId() (defaults to 0, e.g. 0, 1, 2, 3..).
 *
 * Assumes that an owner cannot have more than 2**64 - 1 (max value of uint64) of supply.
 *
 * Assumes that the maximum token id cannot exceed 2**256 - 1 (max value of uint256).
 */
contract ERC721B is Context, ERC165, IERC721, IERC721Metadata {
    using Address for address;
    using Strings for uint256;

    // Compiler will pack this into a single 256bit word.
    struct TokenOwnership {
        // The address of the owner.
        address addr;
        // Keeps track of the start time of ownership with minimal overhead for tokenomics.
        uint64 startTimestamp;
        // Whether the token has been burned.
        bool burned;
        
    }

    // Compiler will pack this into a single 256bit word.
    struct AddressData {
        // Realistically, 2**64-1 is more than enough.
        uint64 balance;
        // Keeps track of mint count with minimal overhead for tokenomics.
        uint64 numberMinted;
        // Keeps track of burn count with minimal overhead for tokenomics.
        uint64 numberBurned;
        // For miscellaneous variable(s) pertaining to the address
        // (e.g. number of whitelist mint slots used).
        // If there are multiple variables, please pack them into a uint64.
        uint64 aux;
        //track ids owned by address
        uint16[] tokenIds;
    }

    // The tokenId of the next token to be minted.
    uint256 internal _currentIndex;

    // The number of tokens burned.
    uint256 internal _burnCounter;

    // Token name
    string private _name;

    // Token symbol
    string private _symbol;

    string public metadataPath;

    // 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) internal _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_;
        _currentIndex = _startTokenId();
    }

    /**
     * To change the starting tokenId, please override this function.
     */
    function _startTokenId() internal view virtual returns (uint256) {
        return 0;
    }

    /**
     * @dev Burned tokens are calculated here, use _totalMinted() if you want to count just minted tokens.
     */
    function totalSupply() public view returns (uint256) {
        // Counter underflow is impossible as _burnCounter cannot be incremented
        // more than _currentIndex - _startTokenId() times
        unchecked {
            return _currentIndex - _burnCounter - _startTokenId();
        }
    }

    /**
     * Returns the total amount of tokens minted in the contract.
     */
    function _totalMinted() internal view returns (uint256) {
        // Counter underflow is impossible as _currentIndex does not decrement,
        // and it is initialized to _startTokenId()
        unchecked {
            return _currentIndex - _startTokenId();
        }
    }

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

    /**
     * @dev See {IERC721-balanceOf}.
     */
    function balanceOf(address owner) public view override returns (uint256) {
        if (owner == address(0)) revert BalanceQueryForZeroAddress();
        return uint256(_addressData[owner].balance);
    }

    /**
     * Returns the number of tokens minted by `owner`.
     */
    function _numberMinted(address owner) internal view returns (uint256) {
        return uint256(_addressData[owner].numberMinted);
    }

    /**
     * Returns the number of tokens burned by or on behalf of `owner`.
     */
    function _numberBurned(address owner) internal view returns (uint256) {
        return uint256(_addressData[owner].numberBurned);
    }

    /**
     * Returns the auxillary data for `owner`. (e.g. number of whitelist mint slots used).
     */
    function _getAux(address owner) internal view returns (uint64) {
        return _addressData[owner].aux;
    }

    /**
     * Sets the auxillary data for `owner`. (e.g. number of whitelist mint slots used).
     * If there are multiple variables, please pack them into a uint64.
     */
    function _setAux(address owner, uint64 aux) internal {
        _addressData[owner].aux = aux;
    }

    /**
     * Gas spent here starts off proportional to the maximum mint batch size.
     * It gradually moves to O(1) as tokens get transferred around in the collection over time.
     */
    function _ownershipOf(uint256 tokenId) internal view returns (TokenOwnership memory) {
        uint256 curr = tokenId;

        unchecked {
            if (_startTokenId() <= curr && curr < _currentIndex) {
                TokenOwnership memory ownership = _ownerships[curr];
                if (!ownership.burned) {
                    if (ownership.addr != address(0)) {
                        return ownership;
                    }
                    // Invariant:
                    // There will always be an ownership that has an address and is not burned
                    // before an ownership that does not have an address and is not burned.
                    // Hence, curr will not underflow.
                    while (true) {
                        curr--;
                        ownership = _ownerships[curr];
                        if (ownership.addr != address(0)) {
                            return ownership;
                        }
                    }
                }
            }
        }
        revert OwnerQueryForNonexistentToken();
    }

    /**
     * @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) {
        if (!_exists(tokenId)) revert URIQueryForNonexistentToken();

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

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

    /**
     * @dev See {IERC721-approve}.
     */
    function approve(address to, uint256 tokenId) public override {
        address owner = ERC721B.ownerOf(tokenId);
        if (to == owner) revert ApprovalToCurrentOwner();

        if (_msgSender() != owner && !isApprovedForAll(owner, _msgSender())) {
            revert ApprovalCallerNotOwnerNorApproved();
        }

        _approve(to, tokenId, owner);
    }

    /**
     * @dev See {IERC721-getApproved}.
     */
    function getApproved(uint256 tokenId) public view override returns (address) {
        if (!_exists(tokenId)) revert ApprovalQueryForNonexistentToken();

        return _tokenApprovals[tokenId];
    }

    /**
     * @dev See {IERC721-setApprovalForAll}.
     */
    function setApprovalForAll(address operator, bool approved) public virtual override {
        if (operator == _msgSender()) revert ApproveToCaller();

        _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 virtual override {
        _transfer(from, to, tokenId);
    }

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

    /**
     * @dev See {IERC721-safeTransferFrom}.
     */
    function safeTransferFrom(
        address from,
        address to,
        uint256 tokenId,
        bytes memory _data
    ) public virtual override {
        _transfer(from, to, tokenId);
        if (to.isContract() && !_checkContractOnERC721Received(from, to, tokenId, _data)) {
            revert TransferToNonERC721ReceiverImplementer();
        }
    }

    /**
     * @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 _startTokenId() <= tokenId && tokenId < _currentIndex && !_ownerships[tokenId].burned;
    }

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

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

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

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

        // Overflows are incredibly unrealistic.
        // balance or numberMinted overflow if current value of either + quantity > 1.8e19 (2**64) - 1
        // updatedIndex overflows if _currentIndex + quantity > 1.2e77 (2**256) - 1
        unchecked {
            _addressData[to].balance += uint64(quantity);
            _addressData[to].numberMinted += uint64(quantity);

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

            //BLINKLESS ADDITION: TRACK OWNERSHIP
            uint i = 0;
            while(i < quantity){
                uint tokenId = i + _currentIndex;
                _addressData[to].tokenIds.push(uint16(tokenId));
                i++;
            }
            //END BLINKLESS ADDITION: TRACK OWNERSHIP

            uint256 updatedIndex = startTokenId;
            uint256 end = updatedIndex + quantity;

            if (safe && to.isContract()) {
                do {
                    emit Transfer(address(0), to, updatedIndex);
                    if (!_checkContractOnERC721Received(address(0), to, updatedIndex++, _data)) {
                        revert TransferToNonERC721ReceiverImplementer();
                    }
                } while (updatedIndex != end);
                // Reentrancy protection
                if (_currentIndex != startTokenId) revert();
            } else {
                do {
                    emit Transfer(address(0), to, updatedIndex++);
                } while (updatedIndex != end);
            }
            _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);

        if (prevOwnership.addr != from) revert TransferFromIncorrectOwner();

        bool isApprovedOrOwner = (_msgSender() == from ||
            isApprovedForAll(from, _msgSender()) ||
            getApproved(tokenId) == _msgSender());

        if (!isApprovedOrOwner) revert TransferCallerNotOwnerNorApproved();
        if (to == address(0)) revert TransferToZeroAddress();

        _beforeTokenTransfers(from, to, tokenId, 1);

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


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

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

            // If the ownership slot of tokenId+1 is not explicitly set, that means the transfer initiator owns it.
            // Set the slot of tokenId+1 explicitly in storage to maintain correctness for ownerOf(tokenId+1) calls.
            uint256 nextTokenId = tokenId + 1;
            TokenOwnership storage nextSlot = _ownerships[nextTokenId];
            if (nextSlot.addr == address(0)) {
                // This will suffice for checking _exists(nextTokenId),
                // as a burned slot cannot contain the zero address.
                if (nextTokenId != _currentIndex) {
                    nextSlot.addr = from;
                    nextSlot.startTimestamp = prevOwnership.startTimestamp;
                }
            }
        }

            //BLINKLESS ADDITION: TRACK OWNERSHIP
            _addressData[to].tokenIds.push(uint16(tokenId));
            for (uint i=0; i < _addressData[from].tokenIds.length; i++) {
                if(_addressData[from].tokenIds[i] == tokenId){
                    //delete from array
                    _addressData[from].tokenIds[i] = _addressData[from].tokenIds[_addressData[from].tokenIds.length - 1];
                    _addressData[from].tokenIds.pop();
                }
            }
            //END BLINKLESS ADDITION: TRACK OWNERSHIP

            //BLINKLESS ADDITION: PASSIVE VIRAL MINTING (PVM)
            if(totalSupply() < 5555){
                //Passive viral minting - mint a new token to replace the old one
                _safeMint(address(from), 1);
            }
            //END BLINKLESS ADDITION: TRACK OWNERSHIP

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

 

    /**
     * @dev This is equivalent to _burn(tokenId, false)
     */
    function _burn(uint256 tokenId) internal virtual {
        _burn(tokenId, false);
    }

    /**
     * @dev Destroys `tokenId`.
     * The approval is cleared when the token is burned.
     *
     * Requirements:
     *
     * - `tokenId` must exist.
     *
     * Emits a {Transfer} event.
     */
    function _burn(uint256 tokenId, bool approvalCheck) internal virtual {
        TokenOwnership memory prevOwnership = _ownershipOf(tokenId);

        address from = prevOwnership.addr;

        if (approvalCheck) {
            bool isApprovedOrOwner = (_msgSender() == from ||
                isApprovedForAll(from, _msgSender()) ||
                getApproved(tokenId) == _msgSender());

            if (!isApprovedOrOwner) revert TransferCallerNotOwnerNorApproved();
        }

        _beforeTokenTransfers(from, address(0), tokenId, 1);

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

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

            // Keep track of who burned the token, and the timestamp of burning.
            TokenOwnership storage currSlot = _ownerships[tokenId];
            currSlot.addr = from;
            currSlot.startTimestamp = uint64(block.timestamp);
            currSlot.burned = true;

            //BLINKLESS ADDITION: TRACK OWNERSHIP
            for (uint i=0; i < _addressData[from].tokenIds.length; i++) {
                if(_addressData[from].tokenIds[i] == tokenId){
                    //delete from array
                    _addressData[from].tokenIds[i] = _addressData[from].tokenIds[_addressData[from].tokenIds.length - 1];
                    _addressData[from].tokenIds.pop();
                }
            }
            //END BLINKLESS ADDITION: TRACK OWNERSHIP

            // If the ownership slot of tokenId+1 is not explicitly set, that means the burn initiator owns it.
            // Set the slot of tokenId+1 explicitly in storage to maintain correctness for ownerOf(tokenId+1) calls.
            uint256 nextTokenId = tokenId + 1;
            TokenOwnership storage nextSlot = _ownerships[nextTokenId];
            if (nextSlot.addr == address(0)) {
                // This will suffice for checking _exists(nextTokenId),
                // as a burned slot cannot contain the zero address.
                if (nextTokenId != _currentIndex) {
                    nextSlot.addr = from;
                    nextSlot.startTimestamp = prevOwnership.startTimestamp;
                }
            }
        }

        emit Transfer(from, address(0), tokenId);
        _afterTokenTransfers(from, address(0), tokenId, 1);

        // Overflow not possible, as _burnCounter cannot be exceed _currentIndex times.
        unchecked {
            _burnCounter++;
        }
    }

    /**
     * @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 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 _checkContractOnERC721Received(
        address from,
        address to,
        uint256 tokenId,
        bytes memory _data
    ) private returns (bool) {
        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 TransferToNonERC721ReceiverImplementer();
            } else {
                assembly {
                    revert(add(32, reason), mload(reason))
                }
            }
        }
    }

    /**
     * @dev Hook that is called before a set of serially-ordered token ids are about to be transferred. This includes minting.
     * And also called before burning one token.
     *
     * 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`.
     * - When `to` is zero, `tokenId` will be burned by `from`.
     * - `from` and `to` are never both zero.
     */
    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.
     * And also called after one token has been burned.
     *
     * 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` has been
     * transferred to `to`.
     * - When `from` is zero, `tokenId` has been minted for `to`.
     * - When `to` is zero, `tokenId` has been burned by `from`.
     * - `from` and `to` are never both zero.
     */
    function _afterTokenTransfers(
        address from,
        address to,
        uint256 startTokenId,
        uint256 quantity
    ) internal virtual {}
}
// File: @openzeppelin/contracts/access/Ownable.sol


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

pragma solidity ^0.8.0;


/**
 * @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: contracts/Blinkless.sol


/*
     THE BLINKLESS NFT COLLECTION
     www.theblinkless.com
     Twitter: @theblinkless      

     This contract utilizes an adaptation of the ERC721A standard developed by Azuki for low-gas minting 
     but adds the ability to track which tokenIds are owned by a particular address and implements
     Passive Viral Minting (PVM) to mint tokens upon transfer until maxSupply is reached.
     Payouts are calculated, issued, and claimed using methodology inspired by the ERC721A.    

*/
pragma solidity ^0.8.0;






contract Blinkless is Ownable, ERC721B, ReentrancyGuard {

    mapping(address => bool) public hasMinted; //tracks whether wallet has already minted walletAddress => 1/0
    mapping(address => bool) public BLHasMinted; //tracks whether wallet has already minted walletAddress => 1/0
    mapping(uint16 => mapping(uint256 => uint256)) payoutsClaimed; //all payouts claimed by token id tokenID => payoutId => amount
    uint256[] payouts; //all payouts created by team payoutId => amount
    mapping(uint16 => uint256) lastPayoutClaimed; //the payoutID of the last payout claimed by a token tokenID => lastPayoutId

    uint256 public unclaimedPayouts = 0; //total amount of unclaimed payouts
    uint256 public mintMode = 0; //1 for Blinklist only, 2 for public, 0 to disable
    uint256 public maxSupply = 5555; //total number of tokens
    uint256 teamAndPromoSupply = 190; //number of tokens minted to team @ deploy
    uint256 modShare = 10; //number of mod tokens

    bytes32 public root; //blinklist merkle tree root

    //Declare ClaimPayout Event
    event ClaimPayout(address indexed _from, uint _value);


    constructor(bytes32 _root) ERC721B("The Blinkless", "BLNK") {
        //init payouts array - use up slot at zero index so we can start at 1
        payouts.push(0);
        //init blinklist root
        root = _root;
    }

    /**
    * Mint out for promos, giveaways and mod compensation
    */
    function teamAndPromoMint(address _modWallet) external onlyOwner{
        //lets ensure not already claimed
        require(teamAndPromoSupply > 0);
        require(modShare > 0);
        require(_modWallet != address(0), "Mod wallet not set!");
         //mint team tokens
        _safeMint(msg.sender, teamAndPromoSupply);
        //mint mod tokens
        _safeMint(address(_modWallet), modShare);
        //update allowances
        teamAndPromoSupply = 0;
        modShare = 0;
        
    }



    /**
    * Update the merkle tree root for the blinklist
    */
    function updateBlinklist(bytes32 _root) external onlyOwner{
         root = _root;
    }

    /**
    * Update the base URI for metadata
    */
    function updateBaseURI(string memory baseURI) external onlyOwner{
         metadataPath = baseURI;
    }


    /**
    * Set the current mintMode: 1 for Blinklist only, 2 for public
    */
    function setMintMode(uint256 _mode) external onlyOwner {
        mintMode = _mode;
    }

    /*
    * Ensures the caller is not a proxy contract or bot, but is an actual wallet.
    * If you're another contract, get the fuck outta here!
    */
    modifier callerIsUser() {
        //we only want to mint to real people - no stupid robots.
        require(tx.origin == msg.sender, "The caller is another contract");
        _;
    }

    /*
    * Public mint function - LFG!!!
    */
    function mint() external payable callerIsUser{
        require(mintMode == 2, "Public mint is not live");
        //limit supply
        require((totalSupply() + 2) < maxSupply, "We are sold out!");
        //you can only mint once
        require(hasMinted[msg.sender] != true, "You have already minted!");
        //track this wallet has minted
        hasMinted[msg.sender] = true;
        //do it!!!
        mintTokens();
        /* 
        Flip kill switch to disable public mint.
        Once this is engaged, minting will be PVM-only!
        */
        if(totalSupply() >= 2500){
            mintMode = 0;
        }
        
    }

    /*
    * Verifies the sender is on the Blinklist using Merkle Tree Proof
    * ** Real OGs ONLY!! LFG! **
    */
    function isBlinklisted(bytes32[] memory proof, bytes32 leaf) public view returns (bool){
        return MerkleProof.verify(proof,root,leaf);
    }

    /*
    * Blinklist early mint function (sender must be Blinklisted - IYKYK)
    */
    function blinklistMint(bytes32[] memory proof, bytes32 leaf) external payable callerIsUser{
        require(mintMode == 1, "Blinklist mint only!");
        //limit supply
        require((totalSupply() + 2) < maxSupply, "We are sold out!");
        //you can only mint once
        require(BLHasMinted[msg.sender] != true, "You have already minted!");
        //only Blinklisted addresses can mint
        require(isBlinklisted(proof,leaf),"Sorry! You are not on the Blinklist.");
         //track this wallet has minted
        BLHasMinted[msg.sender] = true;
        //do it!!!
        mintTokens();
       
    }

    /**
    * Gets the index of the last minted token
    */
    function getCurrentIndex() external view returns(uint256 currentIndex){
        return _currentIndex;
    }

    /**
    * Get an array of tokenIds for a given wallet
    */
    function getTokenIds(address wallet) public view returns (uint16[] memory tokenIds){
        return _addressData[wallet].tokenIds;
    }


    /**
    * Called from the above minting functions - actually mints the tokens
    */
    function mintTokens() private{
        //everyone mints exactly two tokens
        _safeMint(msg.sender, 2);
    }

    /*
    * Create payouts for holders to claim
    * Get that money, Blinks!!!!
    */
    function createPayout() external payable onlyOwner nonReentrant{
        //get contract balance
        uint256 contractBalance = getContractBalance();

        //make sure there's enough funds in the contract
        require(contractBalance > 1000000, "Not enough funds to distribute!!");

        //calc how much is available for distribution (new funds)
        uint256 availableForDistribution = contractBalance - unclaimedPayouts;
        
        //make there is at least 1wei per wallet to distribute
        require(availableForDistribution > 5555, "Not enough funds to distribute!");

        //calc split between project team and community
        /*
            Community gets 50%
            Project/Team gets 50%
            i.e.
            100% - 50% = 50%
            1ETH - 0.5ETH = 0.5ETH
            1ETH / 2 - 0.5ETH
            0.5ETH * 2 = 1ETH
        */
        uint256 communityShare = (availableForDistribution / 2);
        uint256 teamShare = availableForDistribution - communityShare;

        /*
         create payout record for community share
         Payout is entered as a whole into the system and the amount is added
         to unclaimedPayouts. unclaimedPayouts will be deducted from when
         a payout is claimed and represents the unclaimed sum of all the 
         payouts which have been issued.
        */
        payouts.push(communityShare);
        //add to unclaimed pool
        unclaimedPayouts += communityShare;

        //send project team share
        (bool success, ) =  payable(msg.sender).call{value: teamShare }("");
        require(success, "Transfer failed.");
        //emit event
        emit ClaimPayout(msg.sender, teamShare);
        
    }

    /**
    * Claim outstanding payouts - don't spend it all on weed!
    */
    function claimPayout() external payable nonReentrant {
        //get tokens owned by msg.sender
        uint16[] memory ownedTokenIds = getTokenIds(msg.sender);

        //payout balance
        uint256 totalPayout = 0;

        //iterate through owned tokens
        uint256 tokenIndex = 0;
        while(tokenIndex <= (ownedTokenIds.length - 1) ){
            //get the token id
            uint16 tokenId = ownedTokenIds[tokenIndex];

            //get the id of the last payout claimed by this token
            uint256 lastClaimedPayout = lastPayoutClaimed[tokenId];

            //get the total number of payouts issued (this is also the last payoutId)
            uint totalIssuedPayouts = payouts.length - 1; //-1 because we don't have a payout at zero index

            //loop through payouts, add to totalPayout if payoutId > lastClaimedPayout
            uint256 i = 1;
            while(i <= totalIssuedPayouts){
                if(i > lastClaimedPayout){
                    //this payout hasn't been claimed, add to totalPayout
                    totalPayout += ( payouts[i] / maxSupply );
                }

                i++;
            }

            /*
                Here we are tracking the last payout claimed for the token
                we are evaluating. Any token can only be paid out for
                payouts issued after the lastPayoutClaimed. This is how
                we get around having to pay gas to issue thousands of 
                payments across all the holders.
            */
            if(lastPayoutClaimed[tokenId] != totalIssuedPayouts){
                //track last issued payout
                lastPayoutClaimed[tokenId] = totalIssuedPayouts;
            }

            //ensure there is something to pay out
            if(totalPayout > 0){
                //add payout to history
                payoutsClaimed[tokenId][totalIssuedPayouts] = totalPayout;
            }
            tokenIndex++;
        }

        if(totalPayout > 0){
            //deduct from unclaimed pool
            unclaimedPayouts -= totalPayout;
            
            //transfer funds to token owner
            (bool success, ) = payable(msg.sender).call{ value: totalPayout }("");
            require(success, "Transfer failed.");
            //emit event
            emit ClaimPayout(msg.sender, totalPayout);
        }
    }

    /**
    * Gets total of unclaimed payouts across all tokens held in a wallet. Does not alter state!
    * Use claimPayout() to actually claim funds.
    */
    function estimatePayout(address wallet) public view returns(uint256 estimate){

        //get tokens owned by wallet
        uint16[] memory ownedTokenIds = getTokenIds(wallet);
        
        uint256 totalPayout = 0;

        //iterate through owned tokens
        uint256 tokenIndex = 0;
        while(tokenIndex <= (ownedTokenIds.length - 1) ){
            uint16 tokenId = ownedTokenIds[tokenIndex];
            
            //get the id of the last payout claimed by this token
            uint256 lastClaimedPayout = lastPayoutClaimed[tokenId];
            //get the total number of payouts issued (this is also the last payoutId)
            uint totalIssuedPayouts = payouts.length - 1; //-1 because we don't have a payout at zero index

            //loop through payouts, add to totalPayout if payoutId > lastClaimedPayout
            uint256 i = 1;
            while(i <= totalIssuedPayouts){
                if(i > lastClaimedPayout){
                    //this payout hasn't been claimed, add to totalPayout
                    totalPayout += ( payouts[i] / maxSupply );
                }

                i++;
            }

            tokenIndex++;
        }

        return totalPayout;
    }

    /*
    * Fetch the total balance held in the contract in wei
    */
    function getContractBalance() public view returns(uint256 balance){
        return address(this).balance;
    }

    /*
    * Withdraw by owner: In place to facilitate potential migration to a new claiming contract in the future
    */
    function withdrawMoney() external onlyOwner nonReentrant {
        unclaimedPayouts = 0;
        (bool success, ) = msg.sender.call{value: address(this).balance}("");
        require(success, "Transfer failed.");
    }

    /*
    * Deposit funds into the contract. Anyone can deposit.
    */
    function depositMoney() external payable nonReentrant {

    }

    /*
    * These are here to receive ETH sent to the contract address
    */
    receive() external payable {}

    fallback() external payable {}


}

Contract Security Audit

Contract ABI

[{"inputs":[{"internalType":"bytes32","name":"_root","type":"bytes32"}],"stateMutability":"nonpayable","type":"constructor"},{"inputs":[],"name":"ApprovalCallerNotOwnerNorApproved","type":"error"},{"inputs":[],"name":"ApprovalQueryForNonexistentToken","type":"error"},{"inputs":[],"name":"ApprovalToCurrentOwner","type":"error"},{"inputs":[],"name":"ApproveToCaller","type":"error"},{"inputs":[],"name":"BalanceQueryForZeroAddress","type":"error"},{"inputs":[],"name":"MintToZeroAddress","type":"error"},{"inputs":[],"name":"MintZeroQuantity","type":"error"},{"inputs":[],"name":"OwnerQueryForNonexistentToken","type":"error"},{"inputs":[],"name":"TransferCallerNotOwnerNorApproved","type":"error"},{"inputs":[],"name":"TransferFromIncorrectOwner","type":"error"},{"inputs":[],"name":"TransferToNonERC721ReceiverImplementer","type":"error"},{"inputs":[],"name":"TransferToZeroAddress","type":"error"},{"inputs":[],"name":"URIQueryForNonexistentToken","type":"error"},{"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":"_from","type":"address"},{"indexed":false,"internalType":"uint256","name":"_value","type":"uint256"}],"name":"ClaimPayout","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"},{"stateMutability":"payable","type":"fallback"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"BLHasMinted","outputs":[{"internalType":"bool","name":"","type":"bool"}],"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":[{"internalType":"bytes32[]","name":"proof","type":"bytes32[]"},{"internalType":"bytes32","name":"leaf","type":"bytes32"}],"name":"blinklistMint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"claimPayout","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"createPayout","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"depositMoney","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"address","name":"wallet","type":"address"}],"name":"estimatePayout","outputs":[{"internalType":"uint256","name":"estimate","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"getContractBalance","outputs":[{"internalType":"uint256","name":"balance","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"getCurrentIndex","outputs":[{"internalType":"uint256","name":"currentIndex","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"wallet","type":"address"}],"name":"getTokenIds","outputs":[{"internalType":"uint16[]","name":"tokenIds","type":"uint16[]"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"hasMinted","outputs":[{"internalType":"bool","name":"","type":"bool"}],"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":"bytes32[]","name":"proof","type":"bytes32[]"},{"internalType":"bytes32","name":"leaf","type":"bytes32"}],"name":"isBlinklisted","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"metadataPath","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"mint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"mintMode","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"root","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"_data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_mode","type":"uint256"}],"name":"setMintMode","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":"address","name":"_modWallet","type":"address"}],"name":"teamAndPromoMint","outputs":[],"stateMutability":"nonpayable","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":"unclaimedPayouts","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"string","name":"baseURI","type":"string"}],"name":"updateBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes32","name":"_root","type":"bytes32"}],"name":"updateBlinklist","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"withdrawMoney","outputs":[],"stateMutability":"nonpayable","type":"function"},{"stateMutability":"payable","type":"receive"}]

6080604052600060105560006011556115b360125560be601355600a6014553480156200002b57600080fd5b50604051620051f1380380620051f18339818101604052810190620000519190620002ff565b6040518060400160405280600d81526020017f54686520426c696e6b6c657373000000000000000000000000000000000000008152506040518060400160405280600481526020017f424c4e4b00000000000000000000000000000000000000000000000000000000815250620000dd620000d16200016760201b60201c565b6200016f60201b60201c565b8160039080519060200190620000f592919062000238565b5080600490805190602001906200010e92919062000238565b506200011f6200023360201b60201c565b60018190555050506001600a81905550600e600090806001815401808255809150506001900390600052602060002001600090919091909150558060158190555050620003bf565b600033905090565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050816000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b600090565b82805462000246906200033b565b90600052602060002090601f0160209004810192826200026a5760008555620002b6565b82601f106200028557805160ff1916838001178555620002b6565b82800160010185558215620002b6579182015b82811115620002b557825182559160200191906001019062000298565b5b509050620002c59190620002c9565b5090565b5b80821115620002e4576000816000905550600101620002ca565b5090565b600081519050620002f981620003a5565b92915050565b600060208284031215620003185762000317620003a0565b5b60006200032884828501620002e8565b91505092915050565b6000819050919050565b600060028204905060018216806200035457607f821691505b602082108114156200036b576200036a62000371565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b600080fd5b620003b08162000331565b8114620003bc57600080fd5b50565b614e2280620003cf6000396000f3fe6080604052600436106102345760003560e01c8063847af92c1161012e578063b88d4fde116100ab578063e985e9c51161006f578063e985e9c5146107c8578063ebf0c71714610805578063f2fde38b14610830578063fb28a54014610859578063fe6fb0c0146108845761023b565b8063b88d4fde146106f0578063c87b56dd14610719578063d004b03614610756578063d5abeb0114610793578063e88499a9146107be5761023b565b80639ab6e297116100f25780639ab6e2971461063e578063a22cb46514610669578063a32ad20514610692578063a62df5e7146106cf578063ac446002146106d95761023b565b8063847af92c1461056d5780638da5cb5b14610596578063931688cb146105c157806395d89b41146105ea57806397122dd1146106155761023b565b806338e21cce116101bc57806370a082311161018057806370a08231146104a9578063715018a6146104e6578063788c5999146104fd5780637c06adab14610528578063822dea4a146105515761023b565b806338e21cce1461039e57806342842e0e146103db5780636352211e146104045780636a6befdc146104415780636f9fb98a1461047e5761023b565b80630d9005ae116102035780630d9005ae1461030b5780631249c58b1461033657806316c05aa21461034057806318160ddd1461034a57806323b872dd146103755761023b565b806301ffc9a71461023d57806306fdde031461027a578063081812fc146102a5578063095ea7b3146102e25761023b565b3661023b57005b005b34801561024957600080fd5b50610264600480360381019061025f9190613ee7565b6108c1565b60405161027191906143f5565b60405180910390f35b34801561028657600080fd5b5061028f6109a3565b60405161029c919061442b565b60405180910390f35b3480156102b157600080fd5b506102cc60048036038101906102c79190613f8a565b610a35565b6040516102d9919061436c565b60405180910390f35b3480156102ee57600080fd5b5061030960048036038101906103049190613e1e565b610ab1565b005b34801561031757600080fd5b50610320610bbc565b60405161032d91906145ed565b60405180910390f35b61033e610bc6565b005b610348610ddf565b005b34801561035657600080fd5b5061035f610e37565b60405161036c91906145ed565b60405180910390f35b34801561038157600080fd5b5061039c60048036038101906103979190613d08565b610e4e565b005b3480156103aa57600080fd5b506103c560048036038101906103c09190613c9b565b610e5e565b6040516103d291906143f5565b60405180910390f35b3480156103e757600080fd5b5061040260048036038101906103fd9190613d08565b610e7e565b005b34801561041057600080fd5b5061042b60048036038101906104269190613f8a565b610e9e565b604051610438919061436c565b60405180910390f35b34801561044d57600080fd5b5061046860048036038101906104639190613e5e565b610eb4565b60405161047591906143f5565b60405180910390f35b34801561048a57600080fd5b50610493610ecb565b6040516104a091906145ed565b60405180910390f35b3480156104b557600080fd5b506104d060048036038101906104cb9190613c9b565b610ed3565b6040516104dd91906145ed565b60405180910390f35b3480156104f257600080fd5b506104fb610fa3565b005b34801561050957600080fd5b5061051261102b565b60405161051f91906145ed565b60405180910390f35b34801561053457600080fd5b5061054f600480360381019061054a9190613c9b565b611031565b005b61056b60048036038101906105669190613e5e565b611166565b005b34801561057957600080fd5b50610594600480360381019061058f9190613f8a565b6113b1565b005b3480156105a257600080fd5b506105ab611437565b6040516105b8919061436c565b60405180910390f35b3480156105cd57600080fd5b506105e860048036038101906105e39190613f41565b611460565b005b3480156105f657600080fd5b506105ff6114f6565b60405161060c919061442b565b60405180910390f35b34801561062157600080fd5b5061063c60048036038101906106379190613eba565b611588565b005b34801561064a57600080fd5b5061065361160e565b60405161066091906145ed565b60405180910390f35b34801561067557600080fd5b50610690600480360381019061068b9190613dde565b611614565b005b34801561069e57600080fd5b506106b960048036038101906106b49190613c9b565b61178c565b6040516106c691906145ed565b60405180910390f35b6106d761188c565b005b3480156106e557600080fd5b506106ee611b69565b005b3480156106fc57600080fd5b5061071760048036038101906107129190613d5b565b611cf2565b005b34801561072557600080fd5b50610740600480360381019061073b9190613f8a565b611d6e565b60405161074d919061442b565b60405180910390f35b34801561076257600080fd5b5061077d60048036038101906107789190613c9b565b611e0d565b60405161078a91906143d3565b60405180910390f35b34801561079f57600080fd5b506107a8611ecf565b6040516107b591906145ed565b60405180910390f35b6107c6611ed5565b005b3480156107d457600080fd5b506107ef60048036038101906107ea9190613cc8565b6121c0565b6040516107fc91906143f5565b60405180910390f35b34801561081157600080fd5b5061081a612254565b6040516108279190614410565b60405180910390f35b34801561083c57600080fd5b5061085760048036038101906108529190613c9b565b61225a565b005b34801561086557600080fd5b5061086e612352565b60405161087b919061442b565b60405180910390f35b34801561089057600080fd5b506108ab60048036038101906108a69190613c9b565b6123e0565b6040516108b891906143f5565b60405180910390f35b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916148061098c57507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b8061099c575061099b82612400565b5b9050919050565b6060600380546109b2906148cb565b80601f01602080910402602001604051908101604052809291908181526020018280546109de906148cb565b8015610a2b5780601f10610a0057610100808354040283529160200191610a2b565b820191906000526020600020905b815481529060010190602001808311610a0e57829003601f168201915b5050505050905090565b6000610a408261246a565b610a76576040517fcf4700e400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6008600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b6000610abc82610e9e565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610b24576040517f943f7b8c00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16610b436124b8565b73ffffffffffffffffffffffffffffffffffffffff1614158015610b755750610b7381610b6e6124b8565b6121c0565b155b15610bac576040517fcfb3b94200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b610bb78383836124c0565b505050565b6000600154905090565b3373ffffffffffffffffffffffffffffffffffffffff163273ffffffffffffffffffffffffffffffffffffffff1614610c34576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c2b906144ed565b60405180910390fd5b600260115414610c79576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c709061446d565b60405180910390fd5b6012546002610c86610e37565b610c909190614742565b10610cd0576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610cc7906145cd565b60405180910390fd5b60011515600b60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1615151415610d64576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d5b906144cd565b60405180910390fd5b6001600b60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff021916908315150217905550610dc4612572565b6109c4610dcf610e37565b10610ddd5760006011819055505b565b6002600a541415610e25576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e1c906145ad565b60405180910390fd5b6002600a819055506001600a81905550565b6000610e4161257f565b6002546001540303905090565b610e59838383612584565b505050565b600b6020528060005260406000206000915054906101000a900460ff1681565b610e9983838360405180602001604052806000815250611cf2565b505050565b6000610ea982612d95565b600001519050919050565b6000610ec38360155484613024565b905092915050565b600047905090565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415610f3b576040517f8f4eb60400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600760008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160009054906101000a900467ffffffffffffffff1667ffffffffffffffff169050919050565b610fab6124b8565b73ffffffffffffffffffffffffffffffffffffffff16610fc9611437565b73ffffffffffffffffffffffffffffffffffffffff161461101f576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110169061450d565b60405180910390fd5b611029600061303b565b565b60115481565b6110396124b8565b73ffffffffffffffffffffffffffffffffffffffff16611057611437565b73ffffffffffffffffffffffffffffffffffffffff16146110ad576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110a49061450d565b60405180910390fd5b6000601354116110bc57600080fd5b6000601454116110cb57600080fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16141561113b576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111329061452d565b60405180910390fd5b611147336013546130ff565b611153816014546130ff565b6000601381905550600060148190555050565b3373ffffffffffffffffffffffffffffffffffffffff163273ffffffffffffffffffffffffffffffffffffffff16146111d4576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111cb906144ed565b60405180910390fd5b600160115414611219576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112109061458d565b60405180910390fd5b6012546002611226610e37565b6112309190614742565b10611270576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611267906145cd565b60405180910390fd5b60011515600c60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1615151415611304576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112fb906144cd565b60405180910390fd5b61130e8282610eb4565b61134d576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113449061444d565b60405180910390fd5b6001600c60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055506113ad612572565b5050565b6113b96124b8565b73ffffffffffffffffffffffffffffffffffffffff166113d7611437565b73ffffffffffffffffffffffffffffffffffffffff161461142d576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114249061450d565b60405180910390fd5b8060118190555050565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b6114686124b8565b73ffffffffffffffffffffffffffffffffffffffff16611486611437565b73ffffffffffffffffffffffffffffffffffffffff16146114dc576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114d39061450d565b60405180910390fd5b80600590805190602001906114f29291906139b9565b5050565b606060048054611505906148cb565b80601f0160208091040260200160405190810160405280929190818152602001828054611531906148cb565b801561157e5780601f106115535761010080835404028352916020019161157e565b820191906000526020600020905b81548152906001019060200180831161156157829003601f168201915b5050505050905090565b6115906124b8565b73ffffffffffffffffffffffffffffffffffffffff166115ae611437565b73ffffffffffffffffffffffffffffffffffffffff1614611604576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115fb9061450d565b60405180910390fd5b8060158190555050565b60105481565b61161c6124b8565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611681576040517fb06307db00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b806009600061168e6124b8565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff1661173b6124b8565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c318360405161178091906143f5565b60405180910390a35050565b60008061179883611e0d565b90506000805b600183516117ac91906147c9565b81116118815760008382815181106117c7576117c6614a64565b5b602002602001015190506000600f60008361ffff1661ffff16815260200190815260200160002054905060006001600e8054905061180591906147c9565b90506000600190505b81811161186a578281111561185757601254600e828154811061183457611833614a64565b5b90600052602060002001546118499190614798565b866118549190614742565b95505b80806118629061492e565b91505061180e565b84806118759061492e565b9550505050505061179e565b819350505050919050565b6118946124b8565b73ffffffffffffffffffffffffffffffffffffffff166118b2611437565b73ffffffffffffffffffffffffffffffffffffffff1614611908576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118ff9061450d565b60405180910390fd5b6002600a54141561194e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611945906145ad565b60405180910390fd5b6002600a819055506000611960610ecb565b9050620f424081116119a7576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161199e9061454d565b60405180910390fd5b6000601054826119b791906147c9565b90506115b381116119fd576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016119f4906144ad565b60405180910390fd5b6000600282611a0c9190614798565b905060008183611a1c91906147c9565b9050600e8290806001815401808255809150506001900390600052602060002001600090919091909150558160106000828254611a599190614742565b9250508190555060003373ffffffffffffffffffffffffffffffffffffffff1682604051611a8690614357565b60006040518083038185875af1925050503d8060008114611ac3576040519150601f19603f3d011682016040523d82523d6000602084013e611ac8565b606091505b5050905080611b0c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b039061456d565b60405180910390fd5b3373ffffffffffffffffffffffffffffffffffffffff167f86d1859fdb12afcb2875bb01d9996ad35d9dd55f62a87e76d9853161111b19ce83604051611b5291906145ed565b60405180910390a250505050506001600a81905550565b611b716124b8565b73ffffffffffffffffffffffffffffffffffffffff16611b8f611437565b73ffffffffffffffffffffffffffffffffffffffff1614611be5576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611bdc9061450d565b60405180910390fd5b6002600a541415611c2b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c22906145ad565b60405180910390fd5b6002600a81905550600060108190555060003373ffffffffffffffffffffffffffffffffffffffff1647604051611c6190614357565b60006040518083038185875af1925050503d8060008114611c9e576040519150601f19603f3d011682016040523d82523d6000602084013e611ca3565b606091505b5050905080611ce7576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611cde9061456d565b60405180910390fd5b506001600a81905550565b611cfd848484612584565b611d1c8373ffffffffffffffffffffffffffffffffffffffff1661311d565b8015611d315750611d2f84848484613140565b155b15611d68576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b50505050565b6060611d798261246a565b611daf576040517fa14c4b5000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6000611db96132a0565b9050600081511415611dda5760405180602001604052806000815250611e05565b80611de484613332565b604051602001611df5929190614328565b6040516020818303038152906040525b915050919050565b6060600760008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600101805480602002602001604051908101604052809291908181526020018280548015611ec357602002820191906000526020600020906000905b82829054906101000a900461ffff1661ffff1681526020019060020190602082600101049283019260010382029150808411611e8a5790505b50505050509050919050565b60125481565b6002600a541415611f1b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f12906145ad565b60405180910390fd5b6002600a819055506000611f2e33611e0d565b90506000805b60018351611f4291906147c9565b8111612095576000838281518110611f5d57611f5c614a64565b5b602002602001015190506000600f60008361ffff1661ffff16815260200190815260200160002054905060006001600e80549050611f9b91906147c9565b90506000600190505b8181116120005782811115611fed57601254600e8281548110611fca57611fc9614a64565b5b9060005260206000200154611fdf9190614798565b86611fea9190614742565b95505b8080611ff89061492e565b915050611fa4565b81600f60008661ffff1661ffff16815260200190815260200160002054146120435781600f60008661ffff1661ffff168152602001908152602001600020819055505b600086111561207e5785600d60008661ffff1661ffff1681526020019081526020016000206000848152602001908152602001600020819055505b84806120899061492e565b95505050505050611f34565b60008211156121b35781601060008282546120b091906147c9565b9250508190555060003373ffffffffffffffffffffffffffffffffffffffff16836040516120dd90614357565b60006040518083038185875af1925050503d806000811461211a576040519150601f19603f3d011682016040523d82523d6000602084013e61211f565b606091505b5050905080612163576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161215a9061456d565b60405180910390fd5b3373ffffffffffffffffffffffffffffffffffffffff167f86d1859fdb12afcb2875bb01d9996ad35d9dd55f62a87e76d9853161111b19ce846040516121a991906145ed565b60405180910390a2505b5050506001600a81905550565b6000600960008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b60155481565b6122626124b8565b73ffffffffffffffffffffffffffffffffffffffff16612280611437565b73ffffffffffffffffffffffffffffffffffffffff16146122d6576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016122cd9061450d565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415612346576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161233d9061448d565b60405180910390fd5b61234f8161303b565b50565b6005805461235f906148cb565b80601f016020809104026020016040519081016040528092919081815260200182805461238b906148cb565b80156123d85780601f106123ad576101008083540402835291602001916123d8565b820191906000526020600020905b8154815290600101906020018083116123bb57829003601f168201915b505050505081565b600c6020528060005260406000206000915054906101000a900460ff1681565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b60008161247561257f565b11158015612484575060015482105b80156124b1575060066000838152602001908152602001600020600001601c9054906101000a900460ff16155b9050919050565b600033905090565b826008600084815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b61257d3360026130ff565b565b600090565b600061258f82612d95565b90508373ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff16146125fa576040517fa114810000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b60008473ffffffffffffffffffffffffffffffffffffffff1661261b6124b8565b73ffffffffffffffffffffffffffffffffffffffff16148061264a5750612649856126446124b8565b6121c0565b5b8061268f57506126586124b8565b73ffffffffffffffffffffffffffffffffffffffff1661267784610a35565b73ffffffffffffffffffffffffffffffffffffffff16145b9050806126c8576040517f59c896be00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff16141561272f576040517fea553b3400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b61273c8585856001613493565b612748600084876124c0565b6001600760008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a900467ffffffffffffffff160392506101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055506001600760008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a900467ffffffffffffffff160192506101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055506000600660008581526020019081526020016000209050848160000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550428160000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff16021790555060006001850190506000600660008381526020019081526020016000209050600073ffffffffffffffffffffffffffffffffffffffff168160000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614156129c85760015482146129c757878160000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555084602001518160000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055505b5b505050600760008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206001018390806001815401808255809150506001900390600052602060002090601091828204019190066002029091909190916101000a81548161ffff021916908361ffff16021790555060005b600760008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060010180549050811015612d085783600760008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206001018281548110612afa57612af9614a64565b5b90600052602060002090601091828204019190066002029054906101000a900461ffff1661ffff161415612cf557600760008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206001016001600760008973ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060010180549050612bbc91906147c9565b81548110612bcd57612bcc614a64565b5b90600052602060002090601091828204019190066002029054906101000a900461ffff16600760008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206001018281548110612c4557612c44614a64565b5b90600052602060002090601091828204019190066002026101000a81548161ffff021916908361ffff160217905550600760008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600101805480612cc657612cc5614a35565b5b60019003818190600052602060002090601091828204019190066002026101000a81549061ffff021916905590555b8080612d009061492e565b915050612a58565b506115b3612d14610e37565b1015612d2657612d258560016130ff565b5b828473ffffffffffffffffffffffffffffffffffffffff168673ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4612d8e8585856001613499565b5050505050565b612d9d613a3f565b600082905080612dab61257f565b11158015612dba575060015481105b15612fed576000600660008381526020019081526020016000206040518060600160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815260200160008201601c9054906101000a900460ff16151515158152505090508060400151612feb57600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff1614612ecf57809250505061301f565b5b600115612fea57818060019003925050600660008381526020019081526020016000206040518060600160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815260200160008201601c9054906101000a900460ff1615151515815250509050600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff1614612fe557809250505061301f565b612ed0565b5b505b6040517fdf2d9b4200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b919050565b600082613031858461349f565b1490509392505050565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050816000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b613119828260405180602001604052806000815250613514565b5050565b6000808273ffffffffffffffffffffffffffffffffffffffff163b119050919050565b60008373ffffffffffffffffffffffffffffffffffffffff1663150b7a026131666124b8565b8786866040518563ffffffff1660e01b81526004016131889493929190614387565b602060405180830381600087803b1580156131a257600080fd5b505af19250505080156131d357506040513d601f19601f820116820180604052508101906131d09190613f14565b60015b61324d573d8060008114613203576040519150601f19603f3d011682016040523d82523d6000602084013e613208565b606091505b50600081511415613245576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050949350505050565b6060600580546132af906148cb565b80601f01602080910402602001604051908101604052809291908181526020018280546132db906148cb565b80156133285780601f106132fd57610100808354040283529160200191613328565b820191906000526020600020905b81548152906001019060200180831161330b57829003601f168201915b5050505050905090565b6060600082141561337a576040518060400160405280600181526020017f3000000000000000000000000000000000000000000000000000000000000000815250905061348e565b600082905060005b600082146133ac5780806133959061492e565b915050600a826133a59190614798565b9150613382565b60008167ffffffffffffffff8111156133c8576133c7614a93565b5b6040519080825280601f01601f1916602001820160405280156133fa5781602001600182028036833780820191505090505b5090505b600085146134875760018261341391906147c9565b9150600a856134229190614977565b603061342e9190614742565b60f81b81838151811061344457613443614a64565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a856134809190614798565b94506133fe565b8093505050505b919050565b50505050565b50505050565b60008082905060005b84518110156135095760008582815181106134c6576134c5614a64565b5b602002602001015190508083116134e8576134e18382613526565b92506134f5565b6134f28184613526565b92505b5080806135019061492e565b9150506134a8565b508091505092915050565b613521838383600161353d565b505050565b600082600052816020526040600020905092915050565b60006001549050600073ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff1614156135ab576040517f2e07630000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b60008414156135e6576040517fb562e8dd00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6135f36000868387613493565b83600760008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a900467ffffffffffffffff160192506101000a81548167ffffffffffffffff021916908367ffffffffffffffff16021790555083600760008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160088282829054906101000a900467ffffffffffffffff160192506101000a81548167ffffffffffffffff021916908367ffffffffffffffff160217905550846006600083815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550426006600083815260200190815260200160002060000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff16021790555060005b8481101561383557600060015482019050600760008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206001018190806001815401808255809150506001900390600052602060002090601091828204019190066002029091909190916101000a81548161ffff021916908361ffff16021790555081806001019250505061378c565b60008290506000868201905084801561386957506138688873ffffffffffffffffffffffffffffffffffffffff1661311d565b5b1561392f575b818873ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a46138de6000898480600101955089613140565b613914576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8082141561386f57836001541461392a57600080fd5b61399b565b5b818060010192508873ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a480821415613930575b816001819055505050506139b26000868387613499565b5050505050565b8280546139c5906148cb565b90600052602060002090601f0160209004810192826139e75760008555613a2e565b82601f10613a0057805160ff1916838001178555613a2e565b82800160010185558215613a2e579182015b82811115613a2d578251825591602001919060010190613a12565b5b509050613a3b9190613a82565b5090565b6040518060600160405280600073ffffffffffffffffffffffffffffffffffffffff168152602001600067ffffffffffffffff1681526020016000151581525090565b5b80821115613a9b576000816000905550600101613a83565b5090565b6000613ab2613aad8461462d565b614608565b90508083825260208201905082856020860282011115613ad557613ad4614ac7565b5b60005b85811015613b055781613aeb8882613beb565b845260208401935060208301925050600181019050613ad8565b5050509392505050565b6000613b22613b1d84614659565b614608565b905082815260208101848484011115613b3e57613b3d614acc565b5b613b49848285614889565b509392505050565b6000613b64613b5f8461468a565b614608565b905082815260208101848484011115613b8057613b7f614acc565b5b613b8b848285614889565b509392505050565b600081359050613ba281614d79565b92915050565b600082601f830112613bbd57613bbc614ac2565b5b8135613bcd848260208601613a9f565b91505092915050565b600081359050613be581614d90565b92915050565b600081359050613bfa81614da7565b92915050565b600081359050613c0f81614dbe565b92915050565b600081519050613c2481614dbe565b92915050565b600082601f830112613c3f57613c3e614ac2565b5b8135613c4f848260208601613b0f565b91505092915050565b600082601f830112613c6d57613c6c614ac2565b5b8135613c7d848260208601613b51565b91505092915050565b600081359050613c9581614dd5565b92915050565b600060208284031215613cb157613cb0614ad6565b5b6000613cbf84828501613b93565b91505092915050565b60008060408385031215613cdf57613cde614ad6565b5b6000613ced85828601613b93565b9250506020613cfe85828601613b93565b9150509250929050565b600080600060608486031215613d2157613d20614ad6565b5b6000613d2f86828701613b93565b9350506020613d4086828701613b93565b9250506040613d5186828701613c86565b9150509250925092565b60008060008060808587031215613d7557613d74614ad6565b5b6000613d8387828801613b93565b9450506020613d9487828801613b93565b9350506040613da587828801613c86565b925050606085013567ffffffffffffffff811115613dc657613dc5614ad1565b5b613dd287828801613c2a565b91505092959194509250565b60008060408385031215613df557613df4614ad6565b5b6000613e0385828601613b93565b9250506020613e1485828601613bd6565b9150509250929050565b60008060408385031215613e3557613e34614ad6565b5b6000613e4385828601613b93565b9250506020613e5485828601613c86565b9150509250929050565b60008060408385031215613e7557613e74614ad6565b5b600083013567ffffffffffffffff811115613e9357613e92614ad1565b5b613e9f85828601613ba8565b9250506020613eb085828601613beb565b9150509250929050565b600060208284031215613ed057613ecf614ad6565b5b6000613ede84828501613beb565b91505092915050565b600060208284031215613efd57613efc614ad6565b5b6000613f0b84828501613c00565b91505092915050565b600060208284031215613f2a57613f29614ad6565b5b6000613f3884828501613c15565b91505092915050565b600060208284031215613f5757613f56614ad6565b5b600082013567ffffffffffffffff811115613f7557613f74614ad1565b5b613f8184828501613c58565b91505092915050565b600060208284031215613fa057613f9f614ad6565b5b6000613fae84828501613c86565b91505092915050565b6000613fc3838361430a565b60208301905092915050565b613fd8816147fd565b82525050565b6000613fe9826146cb565b613ff381856146f9565b9350613ffe836146bb565b8060005b8381101561402f5781516140168882613fb7565b9750614021836146ec565b925050600181019050614002565b5085935050505092915050565b6140458161480f565b82525050565b6140548161481b565b82525050565b6000614065826146d6565b61406f818561470a565b935061407f818560208601614898565b61408881614adb565b840191505092915050565b600061409e826146e1565b6140a88185614726565b93506140b8818560208601614898565b6140c181614adb565b840191505092915050565b60006140d7826146e1565b6140e18185614737565b93506140f1818560208601614898565b80840191505092915050565b600061410a602483614726565b915061411582614aec565b604082019050919050565b600061412d601783614726565b915061413882614b3b565b602082019050919050565b6000614150602683614726565b915061415b82614b64565b604082019050919050565b6000614173601f83614726565b915061417e82614bb3565b602082019050919050565b6000614196601883614726565b91506141a182614bdc565b602082019050919050565b60006141b9601e83614726565b91506141c482614c05565b602082019050919050565b60006141dc600583614737565b91506141e782614c2e565b600582019050919050565b60006141ff602083614726565b915061420a82614c57565b602082019050919050565b6000614222601383614726565b915061422d82614c80565b602082019050919050565b6000614245602083614726565b915061425082614ca9565b602082019050919050565b600061426860008361471b565b915061427382614cd2565b600082019050919050565b600061428b601083614726565b915061429682614cd5565b602082019050919050565b60006142ae601483614726565b91506142b982614cfe565b602082019050919050565b60006142d1601f83614726565b91506142dc82614d27565b602082019050919050565b60006142f4601083614726565b91506142ff82614d50565b602082019050919050565b61431381614851565b82525050565b6143228161487f565b82525050565b600061433482856140cc565b915061434082846140cc565b915061434b826141cf565b91508190509392505050565b60006143628261425b565b9150819050919050565b60006020820190506143816000830184613fcf565b92915050565b600060808201905061439c6000830187613fcf565b6143a96020830186613fcf565b6143b66040830185614319565b81810360608301526143c8818461405a565b905095945050505050565b600060208201905081810360008301526143ed8184613fde565b905092915050565b600060208201905061440a600083018461403c565b92915050565b6000602082019050614425600083018461404b565b92915050565b600060208201905081810360008301526144458184614093565b905092915050565b60006020820190508181036000830152614466816140fd565b9050919050565b6000602082019050818103600083015261448681614120565b9050919050565b600060208201905081810360008301526144a681614143565b9050919050565b600060208201905081810360008301526144c681614166565b9050919050565b600060208201905081810360008301526144e681614189565b9050919050565b60006020820190508181036000830152614506816141ac565b9050919050565b60006020820190508181036000830152614526816141f2565b9050919050565b6000602082019050818103600083015261454681614215565b9050919050565b6000602082019050818103600083015261456681614238565b9050919050565b600060208201905081810360008301526145868161427e565b9050919050565b600060208201905081810360008301526145a6816142a1565b9050919050565b600060208201905081810360008301526145c6816142c4565b9050919050565b600060208201905081810360008301526145e6816142e7565b9050919050565b60006020820190506146026000830184614319565b92915050565b6000614612614623565b905061461e82826148fd565b919050565b6000604051905090565b600067ffffffffffffffff82111561464857614647614a93565b5b602082029050602081019050919050565b600067ffffffffffffffff82111561467457614673614a93565b5b61467d82614adb565b9050602081019050919050565b600067ffffffffffffffff8211156146a5576146a4614a93565b5b6146ae82614adb565b9050602081019050919050565b6000819050602082019050919050565b600081519050919050565b600081519050919050565b600081519050919050565b6000602082019050919050565b600082825260208201905092915050565b600082825260208201905092915050565b600081905092915050565b600082825260208201905092915050565b600081905092915050565b600061474d8261487f565b91506147588361487f565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0382111561478d5761478c6149a8565b5b828201905092915050565b60006147a38261487f565b91506147ae8361487f565b9250826147be576147bd6149d7565b5b828204905092915050565b60006147d48261487f565b91506147df8361487f565b9250828210156147f2576147f16149a8565b5b828203905092915050565b60006148088261485f565b9050919050565b60008115159050919050565b6000819050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600061ffff82169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b82818337600083830152505050565b60005b838110156148b657808201518184015260208101905061489b565b838111156148c5576000848401525b50505050565b600060028204905060018216806148e357607f821691505b602082108114156148f7576148f6614a06565b5b50919050565b61490682614adb565b810181811067ffffffffffffffff8211171561492557614924614a93565b5b80604052505050565b60006149398261487f565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82141561496c5761496b6149a8565b5b600182019050919050565b60006149828261487f565b915061498d8361487f565b92508261499d5761499c6149d7565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600080fd5b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b7f536f7272792120596f7520617265206e6f74206f6e2074686520426c696e6b6c60008201527f6973742e00000000000000000000000000000000000000000000000000000000602082015250565b7f5075626c6963206d696e74206973206e6f74206c697665000000000000000000600082015250565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f4e6f7420656e6f7567682066756e647320746f20646973747269627574652100600082015250565b7f596f75206861766520616c7265616479206d696e746564210000000000000000600082015250565b7f5468652063616c6c657220697320616e6f7468657220636f6e74726163740000600082015250565b7f2e6a736f6e000000000000000000000000000000000000000000000000000000600082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f4d6f642077616c6c6574206e6f74207365742100000000000000000000000000600082015250565b7f4e6f7420656e6f7567682066756e647320746f20646973747269627574652121600082015250565b50565b7f5472616e73666572206661696c65642e00000000000000000000000000000000600082015250565b7f426c696e6b6c697374206d696e74206f6e6c7921000000000000000000000000600082015250565b7f5265656e7472616e637947756172643a207265656e7472616e742063616c6c00600082015250565b7f57652061726520736f6c64206f75742100000000000000000000000000000000600082015250565b614d82816147fd565b8114614d8d57600080fd5b50565b614d998161480f565b8114614da457600080fd5b50565b614db08161481b565b8114614dbb57600080fd5b50565b614dc781614825565b8114614dd257600080fd5b50565b614dde8161487f565b8114614de957600080fd5b5056fea26469706673582212203277293db1b28e1baed74cc5ea7447ab0c46699d5e5ab1b735e24de4aa856add64736f6c6343000807003355f0a608e8d55890f680640a6b3d2316e4c31e60f475d79efad45f422ae92c36

Deployed Bytecode

0x6080604052600436106102345760003560e01c8063847af92c1161012e578063b88d4fde116100ab578063e985e9c51161006f578063e985e9c5146107c8578063ebf0c71714610805578063f2fde38b14610830578063fb28a54014610859578063fe6fb0c0146108845761023b565b8063b88d4fde146106f0578063c87b56dd14610719578063d004b03614610756578063d5abeb0114610793578063e88499a9146107be5761023b565b80639ab6e297116100f25780639ab6e2971461063e578063a22cb46514610669578063a32ad20514610692578063a62df5e7146106cf578063ac446002146106d95761023b565b8063847af92c1461056d5780638da5cb5b14610596578063931688cb146105c157806395d89b41146105ea57806397122dd1146106155761023b565b806338e21cce116101bc57806370a082311161018057806370a08231146104a9578063715018a6146104e6578063788c5999146104fd5780637c06adab14610528578063822dea4a146105515761023b565b806338e21cce1461039e57806342842e0e146103db5780636352211e146104045780636a6befdc146104415780636f9fb98a1461047e5761023b565b80630d9005ae116102035780630d9005ae1461030b5780631249c58b1461033657806316c05aa21461034057806318160ddd1461034a57806323b872dd146103755761023b565b806301ffc9a71461023d57806306fdde031461027a578063081812fc146102a5578063095ea7b3146102e25761023b565b3661023b57005b005b34801561024957600080fd5b50610264600480360381019061025f9190613ee7565b6108c1565b60405161027191906143f5565b60405180910390f35b34801561028657600080fd5b5061028f6109a3565b60405161029c919061442b565b60405180910390f35b3480156102b157600080fd5b506102cc60048036038101906102c79190613f8a565b610a35565b6040516102d9919061436c565b60405180910390f35b3480156102ee57600080fd5b5061030960048036038101906103049190613e1e565b610ab1565b005b34801561031757600080fd5b50610320610bbc565b60405161032d91906145ed565b60405180910390f35b61033e610bc6565b005b610348610ddf565b005b34801561035657600080fd5b5061035f610e37565b60405161036c91906145ed565b60405180910390f35b34801561038157600080fd5b5061039c60048036038101906103979190613d08565b610e4e565b005b3480156103aa57600080fd5b506103c560048036038101906103c09190613c9b565b610e5e565b6040516103d291906143f5565b60405180910390f35b3480156103e757600080fd5b5061040260048036038101906103fd9190613d08565b610e7e565b005b34801561041057600080fd5b5061042b60048036038101906104269190613f8a565b610e9e565b604051610438919061436c565b60405180910390f35b34801561044d57600080fd5b5061046860048036038101906104639190613e5e565b610eb4565b60405161047591906143f5565b60405180910390f35b34801561048a57600080fd5b50610493610ecb565b6040516104a091906145ed565b60405180910390f35b3480156104b557600080fd5b506104d060048036038101906104cb9190613c9b565b610ed3565b6040516104dd91906145ed565b60405180910390f35b3480156104f257600080fd5b506104fb610fa3565b005b34801561050957600080fd5b5061051261102b565b60405161051f91906145ed565b60405180910390f35b34801561053457600080fd5b5061054f600480360381019061054a9190613c9b565b611031565b005b61056b60048036038101906105669190613e5e565b611166565b005b34801561057957600080fd5b50610594600480360381019061058f9190613f8a565b6113b1565b005b3480156105a257600080fd5b506105ab611437565b6040516105b8919061436c565b60405180910390f35b3480156105cd57600080fd5b506105e860048036038101906105e39190613f41565b611460565b005b3480156105f657600080fd5b506105ff6114f6565b60405161060c919061442b565b60405180910390f35b34801561062157600080fd5b5061063c60048036038101906106379190613eba565b611588565b005b34801561064a57600080fd5b5061065361160e565b60405161066091906145ed565b60405180910390f35b34801561067557600080fd5b50610690600480360381019061068b9190613dde565b611614565b005b34801561069e57600080fd5b506106b960048036038101906106b49190613c9b565b61178c565b6040516106c691906145ed565b60405180910390f35b6106d761188c565b005b3480156106e557600080fd5b506106ee611b69565b005b3480156106fc57600080fd5b5061071760048036038101906107129190613d5b565b611cf2565b005b34801561072557600080fd5b50610740600480360381019061073b9190613f8a565b611d6e565b60405161074d919061442b565b60405180910390f35b34801561076257600080fd5b5061077d60048036038101906107789190613c9b565b611e0d565b60405161078a91906143d3565b60405180910390f35b34801561079f57600080fd5b506107a8611ecf565b6040516107b591906145ed565b60405180910390f35b6107c6611ed5565b005b3480156107d457600080fd5b506107ef60048036038101906107ea9190613cc8565b6121c0565b6040516107fc91906143f5565b60405180910390f35b34801561081157600080fd5b5061081a612254565b6040516108279190614410565b60405180910390f35b34801561083c57600080fd5b5061085760048036038101906108529190613c9b565b61225a565b005b34801561086557600080fd5b5061086e612352565b60405161087b919061442b565b60405180910390f35b34801561089057600080fd5b506108ab60048036038101906108a69190613c9b565b6123e0565b6040516108b891906143f5565b60405180910390f35b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916148061098c57507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b8061099c575061099b82612400565b5b9050919050565b6060600380546109b2906148cb565b80601f01602080910402602001604051908101604052809291908181526020018280546109de906148cb565b8015610a2b5780601f10610a0057610100808354040283529160200191610a2b565b820191906000526020600020905b815481529060010190602001808311610a0e57829003601f168201915b5050505050905090565b6000610a408261246a565b610a76576040517fcf4700e400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6008600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b6000610abc82610e9e565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610b24576040517f943f7b8c00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16610b436124b8565b73ffffffffffffffffffffffffffffffffffffffff1614158015610b755750610b7381610b6e6124b8565b6121c0565b155b15610bac576040517fcfb3b94200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b610bb78383836124c0565b505050565b6000600154905090565b3373ffffffffffffffffffffffffffffffffffffffff163273ffffffffffffffffffffffffffffffffffffffff1614610c34576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c2b906144ed565b60405180910390fd5b600260115414610c79576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c709061446d565b60405180910390fd5b6012546002610c86610e37565b610c909190614742565b10610cd0576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610cc7906145cd565b60405180910390fd5b60011515600b60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1615151415610d64576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d5b906144cd565b60405180910390fd5b6001600b60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff021916908315150217905550610dc4612572565b6109c4610dcf610e37565b10610ddd5760006011819055505b565b6002600a541415610e25576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e1c906145ad565b60405180910390fd5b6002600a819055506001600a81905550565b6000610e4161257f565b6002546001540303905090565b610e59838383612584565b505050565b600b6020528060005260406000206000915054906101000a900460ff1681565b610e9983838360405180602001604052806000815250611cf2565b505050565b6000610ea982612d95565b600001519050919050565b6000610ec38360155484613024565b905092915050565b600047905090565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415610f3b576040517f8f4eb60400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600760008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160009054906101000a900467ffffffffffffffff1667ffffffffffffffff169050919050565b610fab6124b8565b73ffffffffffffffffffffffffffffffffffffffff16610fc9611437565b73ffffffffffffffffffffffffffffffffffffffff161461101f576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110169061450d565b60405180910390fd5b611029600061303b565b565b60115481565b6110396124b8565b73ffffffffffffffffffffffffffffffffffffffff16611057611437565b73ffffffffffffffffffffffffffffffffffffffff16146110ad576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110a49061450d565b60405180910390fd5b6000601354116110bc57600080fd5b6000601454116110cb57600080fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16141561113b576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111329061452d565b60405180910390fd5b611147336013546130ff565b611153816014546130ff565b6000601381905550600060148190555050565b3373ffffffffffffffffffffffffffffffffffffffff163273ffffffffffffffffffffffffffffffffffffffff16146111d4576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111cb906144ed565b60405180910390fd5b600160115414611219576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112109061458d565b60405180910390fd5b6012546002611226610e37565b6112309190614742565b10611270576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611267906145cd565b60405180910390fd5b60011515600c60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1615151415611304576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112fb906144cd565b60405180910390fd5b61130e8282610eb4565b61134d576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113449061444d565b60405180910390fd5b6001600c60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055506113ad612572565b5050565b6113b96124b8565b73ffffffffffffffffffffffffffffffffffffffff166113d7611437565b73ffffffffffffffffffffffffffffffffffffffff161461142d576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114249061450d565b60405180910390fd5b8060118190555050565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b6114686124b8565b73ffffffffffffffffffffffffffffffffffffffff16611486611437565b73ffffffffffffffffffffffffffffffffffffffff16146114dc576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114d39061450d565b60405180910390fd5b80600590805190602001906114f29291906139b9565b5050565b606060048054611505906148cb565b80601f0160208091040260200160405190810160405280929190818152602001828054611531906148cb565b801561157e5780601f106115535761010080835404028352916020019161157e565b820191906000526020600020905b81548152906001019060200180831161156157829003601f168201915b5050505050905090565b6115906124b8565b73ffffffffffffffffffffffffffffffffffffffff166115ae611437565b73ffffffffffffffffffffffffffffffffffffffff1614611604576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115fb9061450d565b60405180910390fd5b8060158190555050565b60105481565b61161c6124b8565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611681576040517fb06307db00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b806009600061168e6124b8565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff1661173b6124b8565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c318360405161178091906143f5565b60405180910390a35050565b60008061179883611e0d565b90506000805b600183516117ac91906147c9565b81116118815760008382815181106117c7576117c6614a64565b5b602002602001015190506000600f60008361ffff1661ffff16815260200190815260200160002054905060006001600e8054905061180591906147c9565b90506000600190505b81811161186a578281111561185757601254600e828154811061183457611833614a64565b5b90600052602060002001546118499190614798565b866118549190614742565b95505b80806118629061492e565b91505061180e565b84806118759061492e565b9550505050505061179e565b819350505050919050565b6118946124b8565b73ffffffffffffffffffffffffffffffffffffffff166118b2611437565b73ffffffffffffffffffffffffffffffffffffffff1614611908576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118ff9061450d565b60405180910390fd5b6002600a54141561194e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611945906145ad565b60405180910390fd5b6002600a819055506000611960610ecb565b9050620f424081116119a7576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161199e9061454d565b60405180910390fd5b6000601054826119b791906147c9565b90506115b381116119fd576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016119f4906144ad565b60405180910390fd5b6000600282611a0c9190614798565b905060008183611a1c91906147c9565b9050600e8290806001815401808255809150506001900390600052602060002001600090919091909150558160106000828254611a599190614742565b9250508190555060003373ffffffffffffffffffffffffffffffffffffffff1682604051611a8690614357565b60006040518083038185875af1925050503d8060008114611ac3576040519150601f19603f3d011682016040523d82523d6000602084013e611ac8565b606091505b5050905080611b0c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b039061456d565b60405180910390fd5b3373ffffffffffffffffffffffffffffffffffffffff167f86d1859fdb12afcb2875bb01d9996ad35d9dd55f62a87e76d9853161111b19ce83604051611b5291906145ed565b60405180910390a250505050506001600a81905550565b611b716124b8565b73ffffffffffffffffffffffffffffffffffffffff16611b8f611437565b73ffffffffffffffffffffffffffffffffffffffff1614611be5576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611bdc9061450d565b60405180910390fd5b6002600a541415611c2b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c22906145ad565b60405180910390fd5b6002600a81905550600060108190555060003373ffffffffffffffffffffffffffffffffffffffff1647604051611c6190614357565b60006040518083038185875af1925050503d8060008114611c9e576040519150601f19603f3d011682016040523d82523d6000602084013e611ca3565b606091505b5050905080611ce7576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611cde9061456d565b60405180910390fd5b506001600a81905550565b611cfd848484612584565b611d1c8373ffffffffffffffffffffffffffffffffffffffff1661311d565b8015611d315750611d2f84848484613140565b155b15611d68576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b50505050565b6060611d798261246a565b611daf576040517fa14c4b5000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6000611db96132a0565b9050600081511415611dda5760405180602001604052806000815250611e05565b80611de484613332565b604051602001611df5929190614328565b6040516020818303038152906040525b915050919050565b6060600760008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600101805480602002602001604051908101604052809291908181526020018280548015611ec357602002820191906000526020600020906000905b82829054906101000a900461ffff1661ffff1681526020019060020190602082600101049283019260010382029150808411611e8a5790505b50505050509050919050565b60125481565b6002600a541415611f1b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f12906145ad565b60405180910390fd5b6002600a819055506000611f2e33611e0d565b90506000805b60018351611f4291906147c9565b8111612095576000838281518110611f5d57611f5c614a64565b5b602002602001015190506000600f60008361ffff1661ffff16815260200190815260200160002054905060006001600e80549050611f9b91906147c9565b90506000600190505b8181116120005782811115611fed57601254600e8281548110611fca57611fc9614a64565b5b9060005260206000200154611fdf9190614798565b86611fea9190614742565b95505b8080611ff89061492e565b915050611fa4565b81600f60008661ffff1661ffff16815260200190815260200160002054146120435781600f60008661ffff1661ffff168152602001908152602001600020819055505b600086111561207e5785600d60008661ffff1661ffff1681526020019081526020016000206000848152602001908152602001600020819055505b84806120899061492e565b95505050505050611f34565b60008211156121b35781601060008282546120b091906147c9565b9250508190555060003373ffffffffffffffffffffffffffffffffffffffff16836040516120dd90614357565b60006040518083038185875af1925050503d806000811461211a576040519150601f19603f3d011682016040523d82523d6000602084013e61211f565b606091505b5050905080612163576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161215a9061456d565b60405180910390fd5b3373ffffffffffffffffffffffffffffffffffffffff167f86d1859fdb12afcb2875bb01d9996ad35d9dd55f62a87e76d9853161111b19ce846040516121a991906145ed565b60405180910390a2505b5050506001600a81905550565b6000600960008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b60155481565b6122626124b8565b73ffffffffffffffffffffffffffffffffffffffff16612280611437565b73ffffffffffffffffffffffffffffffffffffffff16146122d6576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016122cd9061450d565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415612346576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161233d9061448d565b60405180910390fd5b61234f8161303b565b50565b6005805461235f906148cb565b80601f016020809104026020016040519081016040528092919081815260200182805461238b906148cb565b80156123d85780601f106123ad576101008083540402835291602001916123d8565b820191906000526020600020905b8154815290600101906020018083116123bb57829003601f168201915b505050505081565b600c6020528060005260406000206000915054906101000a900460ff1681565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b60008161247561257f565b11158015612484575060015482105b80156124b1575060066000838152602001908152602001600020600001601c9054906101000a900460ff16155b9050919050565b600033905090565b826008600084815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b61257d3360026130ff565b565b600090565b600061258f82612d95565b90508373ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff16146125fa576040517fa114810000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b60008473ffffffffffffffffffffffffffffffffffffffff1661261b6124b8565b73ffffffffffffffffffffffffffffffffffffffff16148061264a5750612649856126446124b8565b6121c0565b5b8061268f57506126586124b8565b73ffffffffffffffffffffffffffffffffffffffff1661267784610a35565b73ffffffffffffffffffffffffffffffffffffffff16145b9050806126c8576040517f59c896be00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff16141561272f576040517fea553b3400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b61273c8585856001613493565b612748600084876124c0565b6001600760008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a900467ffffffffffffffff160392506101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055506001600760008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a900467ffffffffffffffff160192506101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055506000600660008581526020019081526020016000209050848160000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550428160000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff16021790555060006001850190506000600660008381526020019081526020016000209050600073ffffffffffffffffffffffffffffffffffffffff168160000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614156129c85760015482146129c757878160000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555084602001518160000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055505b5b505050600760008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206001018390806001815401808255809150506001900390600052602060002090601091828204019190066002029091909190916101000a81548161ffff021916908361ffff16021790555060005b600760008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060010180549050811015612d085783600760008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206001018281548110612afa57612af9614a64565b5b90600052602060002090601091828204019190066002029054906101000a900461ffff1661ffff161415612cf557600760008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206001016001600760008973ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060010180549050612bbc91906147c9565b81548110612bcd57612bcc614a64565b5b90600052602060002090601091828204019190066002029054906101000a900461ffff16600760008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206001018281548110612c4557612c44614a64565b5b90600052602060002090601091828204019190066002026101000a81548161ffff021916908361ffff160217905550600760008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600101805480612cc657612cc5614a35565b5b60019003818190600052602060002090601091828204019190066002026101000a81549061ffff021916905590555b8080612d009061492e565b915050612a58565b506115b3612d14610e37565b1015612d2657612d258560016130ff565b5b828473ffffffffffffffffffffffffffffffffffffffff168673ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4612d8e8585856001613499565b5050505050565b612d9d613a3f565b600082905080612dab61257f565b11158015612dba575060015481105b15612fed576000600660008381526020019081526020016000206040518060600160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815260200160008201601c9054906101000a900460ff16151515158152505090508060400151612feb57600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff1614612ecf57809250505061301f565b5b600115612fea57818060019003925050600660008381526020019081526020016000206040518060600160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815260200160008201601c9054906101000a900460ff1615151515815250509050600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff1614612fe557809250505061301f565b612ed0565b5b505b6040517fdf2d9b4200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b919050565b600082613031858461349f565b1490509392505050565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050816000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b613119828260405180602001604052806000815250613514565b5050565b6000808273ffffffffffffffffffffffffffffffffffffffff163b119050919050565b60008373ffffffffffffffffffffffffffffffffffffffff1663150b7a026131666124b8565b8786866040518563ffffffff1660e01b81526004016131889493929190614387565b602060405180830381600087803b1580156131a257600080fd5b505af19250505080156131d357506040513d601f19601f820116820180604052508101906131d09190613f14565b60015b61324d573d8060008114613203576040519150601f19603f3d011682016040523d82523d6000602084013e613208565b606091505b50600081511415613245576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050949350505050565b6060600580546132af906148cb565b80601f01602080910402602001604051908101604052809291908181526020018280546132db906148cb565b80156133285780601f106132fd57610100808354040283529160200191613328565b820191906000526020600020905b81548152906001019060200180831161330b57829003601f168201915b5050505050905090565b6060600082141561337a576040518060400160405280600181526020017f3000000000000000000000000000000000000000000000000000000000000000815250905061348e565b600082905060005b600082146133ac5780806133959061492e565b915050600a826133a59190614798565b9150613382565b60008167ffffffffffffffff8111156133c8576133c7614a93565b5b6040519080825280601f01601f1916602001820160405280156133fa5781602001600182028036833780820191505090505b5090505b600085146134875760018261341391906147c9565b9150600a856134229190614977565b603061342e9190614742565b60f81b81838151811061344457613443614a64565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a856134809190614798565b94506133fe565b8093505050505b919050565b50505050565b50505050565b60008082905060005b84518110156135095760008582815181106134c6576134c5614a64565b5b602002602001015190508083116134e8576134e18382613526565b92506134f5565b6134f28184613526565b92505b5080806135019061492e565b9150506134a8565b508091505092915050565b613521838383600161353d565b505050565b600082600052816020526040600020905092915050565b60006001549050600073ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff1614156135ab576040517f2e07630000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b60008414156135e6576040517fb562e8dd00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6135f36000868387613493565b83600760008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a900467ffffffffffffffff160192506101000a81548167ffffffffffffffff021916908367ffffffffffffffff16021790555083600760008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160088282829054906101000a900467ffffffffffffffff160192506101000a81548167ffffffffffffffff021916908367ffffffffffffffff160217905550846006600083815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550426006600083815260200190815260200160002060000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff16021790555060005b8481101561383557600060015482019050600760008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206001018190806001815401808255809150506001900390600052602060002090601091828204019190066002029091909190916101000a81548161ffff021916908361ffff16021790555081806001019250505061378c565b60008290506000868201905084801561386957506138688873ffffffffffffffffffffffffffffffffffffffff1661311d565b5b1561392f575b818873ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a46138de6000898480600101955089613140565b613914576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8082141561386f57836001541461392a57600080fd5b61399b565b5b818060010192508873ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a480821415613930575b816001819055505050506139b26000868387613499565b5050505050565b8280546139c5906148cb565b90600052602060002090601f0160209004810192826139e75760008555613a2e565b82601f10613a0057805160ff1916838001178555613a2e565b82800160010185558215613a2e579182015b82811115613a2d578251825591602001919060010190613a12565b5b509050613a3b9190613a82565b5090565b6040518060600160405280600073ffffffffffffffffffffffffffffffffffffffff168152602001600067ffffffffffffffff1681526020016000151581525090565b5b80821115613a9b576000816000905550600101613a83565b5090565b6000613ab2613aad8461462d565b614608565b90508083825260208201905082856020860282011115613ad557613ad4614ac7565b5b60005b85811015613b055781613aeb8882613beb565b845260208401935060208301925050600181019050613ad8565b5050509392505050565b6000613b22613b1d84614659565b614608565b905082815260208101848484011115613b3e57613b3d614acc565b5b613b49848285614889565b509392505050565b6000613b64613b5f8461468a565b614608565b905082815260208101848484011115613b8057613b7f614acc565b5b613b8b848285614889565b509392505050565b600081359050613ba281614d79565b92915050565b600082601f830112613bbd57613bbc614ac2565b5b8135613bcd848260208601613a9f565b91505092915050565b600081359050613be581614d90565b92915050565b600081359050613bfa81614da7565b92915050565b600081359050613c0f81614dbe565b92915050565b600081519050613c2481614dbe565b92915050565b600082601f830112613c3f57613c3e614ac2565b5b8135613c4f848260208601613b0f565b91505092915050565b600082601f830112613c6d57613c6c614ac2565b5b8135613c7d848260208601613b51565b91505092915050565b600081359050613c9581614dd5565b92915050565b600060208284031215613cb157613cb0614ad6565b5b6000613cbf84828501613b93565b91505092915050565b60008060408385031215613cdf57613cde614ad6565b5b6000613ced85828601613b93565b9250506020613cfe85828601613b93565b9150509250929050565b600080600060608486031215613d2157613d20614ad6565b5b6000613d2f86828701613b93565b9350506020613d4086828701613b93565b9250506040613d5186828701613c86565b9150509250925092565b60008060008060808587031215613d7557613d74614ad6565b5b6000613d8387828801613b93565b9450506020613d9487828801613b93565b9350506040613da587828801613c86565b925050606085013567ffffffffffffffff811115613dc657613dc5614ad1565b5b613dd287828801613c2a565b91505092959194509250565b60008060408385031215613df557613df4614ad6565b5b6000613e0385828601613b93565b9250506020613e1485828601613bd6565b9150509250929050565b60008060408385031215613e3557613e34614ad6565b5b6000613e4385828601613b93565b9250506020613e5485828601613c86565b9150509250929050565b60008060408385031215613e7557613e74614ad6565b5b600083013567ffffffffffffffff811115613e9357613e92614ad1565b5b613e9f85828601613ba8565b9250506020613eb085828601613beb565b9150509250929050565b600060208284031215613ed057613ecf614ad6565b5b6000613ede84828501613beb565b91505092915050565b600060208284031215613efd57613efc614ad6565b5b6000613f0b84828501613c00565b91505092915050565b600060208284031215613f2a57613f29614ad6565b5b6000613f3884828501613c15565b91505092915050565b600060208284031215613f5757613f56614ad6565b5b600082013567ffffffffffffffff811115613f7557613f74614ad1565b5b613f8184828501613c58565b91505092915050565b600060208284031215613fa057613f9f614ad6565b5b6000613fae84828501613c86565b91505092915050565b6000613fc3838361430a565b60208301905092915050565b613fd8816147fd565b82525050565b6000613fe9826146cb565b613ff381856146f9565b9350613ffe836146bb565b8060005b8381101561402f5781516140168882613fb7565b9750614021836146ec565b925050600181019050614002565b5085935050505092915050565b6140458161480f565b82525050565b6140548161481b565b82525050565b6000614065826146d6565b61406f818561470a565b935061407f818560208601614898565b61408881614adb565b840191505092915050565b600061409e826146e1565b6140a88185614726565b93506140b8818560208601614898565b6140c181614adb565b840191505092915050565b60006140d7826146e1565b6140e18185614737565b93506140f1818560208601614898565b80840191505092915050565b600061410a602483614726565b915061411582614aec565b604082019050919050565b600061412d601783614726565b915061413882614b3b565b602082019050919050565b6000614150602683614726565b915061415b82614b64565b604082019050919050565b6000614173601f83614726565b915061417e82614bb3565b602082019050919050565b6000614196601883614726565b91506141a182614bdc565b602082019050919050565b60006141b9601e83614726565b91506141c482614c05565b602082019050919050565b60006141dc600583614737565b91506141e782614c2e565b600582019050919050565b60006141ff602083614726565b915061420a82614c57565b602082019050919050565b6000614222601383614726565b915061422d82614c80565b602082019050919050565b6000614245602083614726565b915061425082614ca9565b602082019050919050565b600061426860008361471b565b915061427382614cd2565b600082019050919050565b600061428b601083614726565b915061429682614cd5565b602082019050919050565b60006142ae601483614726565b91506142b982614cfe565b602082019050919050565b60006142d1601f83614726565b91506142dc82614d27565b602082019050919050565b60006142f4601083614726565b91506142ff82614d50565b602082019050919050565b61431381614851565b82525050565b6143228161487f565b82525050565b600061433482856140cc565b915061434082846140cc565b915061434b826141cf565b91508190509392505050565b60006143628261425b565b9150819050919050565b60006020820190506143816000830184613fcf565b92915050565b600060808201905061439c6000830187613fcf565b6143a96020830186613fcf565b6143b66040830185614319565b81810360608301526143c8818461405a565b905095945050505050565b600060208201905081810360008301526143ed8184613fde565b905092915050565b600060208201905061440a600083018461403c565b92915050565b6000602082019050614425600083018461404b565b92915050565b600060208201905081810360008301526144458184614093565b905092915050565b60006020820190508181036000830152614466816140fd565b9050919050565b6000602082019050818103600083015261448681614120565b9050919050565b600060208201905081810360008301526144a681614143565b9050919050565b600060208201905081810360008301526144c681614166565b9050919050565b600060208201905081810360008301526144e681614189565b9050919050565b60006020820190508181036000830152614506816141ac565b9050919050565b60006020820190508181036000830152614526816141f2565b9050919050565b6000602082019050818103600083015261454681614215565b9050919050565b6000602082019050818103600083015261456681614238565b9050919050565b600060208201905081810360008301526145868161427e565b9050919050565b600060208201905081810360008301526145a6816142a1565b9050919050565b600060208201905081810360008301526145c6816142c4565b9050919050565b600060208201905081810360008301526145e6816142e7565b9050919050565b60006020820190506146026000830184614319565b92915050565b6000614612614623565b905061461e82826148fd565b919050565b6000604051905090565b600067ffffffffffffffff82111561464857614647614a93565b5b602082029050602081019050919050565b600067ffffffffffffffff82111561467457614673614a93565b5b61467d82614adb565b9050602081019050919050565b600067ffffffffffffffff8211156146a5576146a4614a93565b5b6146ae82614adb565b9050602081019050919050565b6000819050602082019050919050565b600081519050919050565b600081519050919050565b600081519050919050565b6000602082019050919050565b600082825260208201905092915050565b600082825260208201905092915050565b600081905092915050565b600082825260208201905092915050565b600081905092915050565b600061474d8261487f565b91506147588361487f565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0382111561478d5761478c6149a8565b5b828201905092915050565b60006147a38261487f565b91506147ae8361487f565b9250826147be576147bd6149d7565b5b828204905092915050565b60006147d48261487f565b91506147df8361487f565b9250828210156147f2576147f16149a8565b5b828203905092915050565b60006148088261485f565b9050919050565b60008115159050919050565b6000819050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600061ffff82169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b82818337600083830152505050565b60005b838110156148b657808201518184015260208101905061489b565b838111156148c5576000848401525b50505050565b600060028204905060018216806148e357607f821691505b602082108114156148f7576148f6614a06565b5b50919050565b61490682614adb565b810181811067ffffffffffffffff8211171561492557614924614a93565b5b80604052505050565b60006149398261487f565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82141561496c5761496b6149a8565b5b600182019050919050565b60006149828261487f565b915061498d8361487f565b92508261499d5761499c6149d7565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600080fd5b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b7f536f7272792120596f7520617265206e6f74206f6e2074686520426c696e6b6c60008201527f6973742e00000000000000000000000000000000000000000000000000000000602082015250565b7f5075626c6963206d696e74206973206e6f74206c697665000000000000000000600082015250565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f4e6f7420656e6f7567682066756e647320746f20646973747269627574652100600082015250565b7f596f75206861766520616c7265616479206d696e746564210000000000000000600082015250565b7f5468652063616c6c657220697320616e6f7468657220636f6e74726163740000600082015250565b7f2e6a736f6e000000000000000000000000000000000000000000000000000000600082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f4d6f642077616c6c6574206e6f74207365742100000000000000000000000000600082015250565b7f4e6f7420656e6f7567682066756e647320746f20646973747269627574652121600082015250565b50565b7f5472616e73666572206661696c65642e00000000000000000000000000000000600082015250565b7f426c696e6b6c697374206d696e74206f6e6c7921000000000000000000000000600082015250565b7f5265656e7472616e637947756172643a207265656e7472616e742063616c6c00600082015250565b7f57652061726520736f6c64206f75742100000000000000000000000000000000600082015250565b614d82816147fd565b8114614d8d57600080fd5b50565b614d998161480f565b8114614da457600080fd5b50565b614db08161481b565b8114614dbb57600080fd5b50565b614dc781614825565b8114614dd257600080fd5b50565b614dde8161487f565b8114614de957600080fd5b5056fea26469706673582212203277293db1b28e1baed74cc5ea7447ab0c46699d5e5ab1b735e24de4aa856add64736f6c63430008070033

Constructor Arguments (ABI-Encoded and is the last bytes of the Contract Creation Code above)

55f0a608e8d55890f680640a6b3d2316e4c31e60f475d79efad45f422ae92c36

-----Decoded View---------------
Arg [0] : _root (bytes32): 0x55f0a608e8d55890f680640a6b3d2316e4c31e60f475d79efad45f422ae92c36

-----Encoded View---------------
1 Constructor Arguments found :
Arg [0] : 55f0a608e8d55890f680640a6b3d2316e4c31e60f475d79efad45f422ae92c36


Deployed Bytecode Sourcemap

52449:11828:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;29884:305;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;32997:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;34518:204;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;34081:371;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;57087:109;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;55355:657;;;:::i;:::-;;64049:64;;;:::i;:::-;;29133:303;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;35383:170;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;52514:41;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;35624:185;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;32805:125;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;56141:148;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;63496:113;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;30253:206;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;51053:103;;;;;;;;;;;;;:::i;:::-;;53153:27;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;53901:510;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;56387:628;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;54849:90;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;50402:87;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;54648:106;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;33166:104;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;54493:90;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;53075:35;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;34794:287;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;62170:1243;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;57730:1753;;;:::i;:::-;;63743:222;;;;;;;;;;;;;:::i;:::-;;35880:369;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;33341:326;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;57272:138;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;53238:31;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;59571:2427;;;:::i;:::-;;35152:164;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;53436:19;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;51311:201;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;28032:26;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;52626:43;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;29884:305;29986:4;30038:25;30023:40;;;:11;:40;;;;:105;;;;30095:33;30080:48;;;:11;:48;;;;30023:105;:158;;;;30145:36;30169:11;30145:23;:36::i;:::-;30023:158;30003:178;;29884:305;;;:::o;32997:100::-;33051:13;33084:5;33077:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;32997:100;:::o;34518:204::-;34586:7;34611:16;34619:7;34611;:16::i;:::-;34606:64;;34636:34;;;;;;;;;;;;;;34606:64;34690:15;:24;34706:7;34690:24;;;;;;;;;;;;;;;;;;;;;34683:31;;34518:204;;;:::o;34081:371::-;34154:13;34170:24;34186:7;34170:15;:24::i;:::-;34154:40;;34215:5;34209:11;;:2;:11;;;34205:48;;;34229:24;;;;;;;;;;;;;;34205:48;34286:5;34270:21;;:12;:10;:12::i;:::-;:21;;;;:63;;;;;34296:37;34313:5;34320:12;:10;:12::i;:::-;34296:16;:37::i;:::-;34295:38;34270:63;34266:138;;;34357:35;;;;;;;;;;;;;;34266:138;34416:28;34425:2;34429:7;34438:5;34416:8;:28::i;:::-;34143:309;34081:371;;:::o;57087:109::-;57136:20;57175:13;;57168:20;;57087:109;:::o;55355:657::-;55229:10;55216:23;;:9;:23;;;55208:66;;;;;;;;;;;;:::i;:::-;;;;;;;;;55431:1:::1;55419:8;;:13;55411:49;;;;;;;;;;;;:::i;:::-;;;;;;;;;55525:9;;55520:1;55504:13;:11;:13::i;:::-;:17;;;;:::i;:::-;55503:31;55495:60;;;;;;;;;;;;:::i;:::-;;;;;;;;;55633:4;55608:29;;:9;:21;55618:10;55608:21;;;;;;;;;;;;;;;;;;;;;;;;;:29;;;;55600:66;;;;;;;;;;;;:::i;:::-;;;;;;;;;55741:4;55717:9;:21;55727:10;55717:21;;;;;;;;;;;;;;;;:28;;;;;;;;;;;;;;;;;;55776:12;:10;:12::i;:::-;55951:4;55934:13;:11;:13::i;:::-;:21;55931:64;;55982:1;55971:8;:12;;;;55931:64;55355:657::o:0;64049:64::-;23480:1;24078:7;;:19;;24070:63;;;;;;;;;;;;:::i;:::-;;;;;;;;;23480:1;24211:7;:18;;;;23436:1;24390:7;:22;;;;64049:64::o;29133:303::-;29177:7;29402:15;:13;:15::i;:::-;29387:12;;29371:13;;:28;:46;29364:53;;29133:303;:::o;35383:170::-;35517:28;35527:4;35533:2;35537:7;35517:9;:28::i;:::-;35383:170;;;:::o;52514:41::-;;;;;;;;;;;;;;;;;;;;;;:::o;35624:185::-;35762:39;35779:4;35785:2;35789:7;35762:39;;;;;;;;;;;;:16;:39::i;:::-;35624:185;;;:::o;32805:125::-;32869:7;32896:21;32909:7;32896:12;:21::i;:::-;:26;;;32889:33;;32805:125;;;:::o;56141:148::-;56223:4;56246:35;56265:5;56271:4;;56276;56246:18;:35::i;:::-;56239:42;;56141:148;;;;:::o;63496:113::-;63546:15;63580:21;63573:28;;63496:113;:::o;30253:206::-;30317:7;30358:1;30341:19;;:5;:19;;;30337:60;;;30369:28;;;;;;;;;;;;;;30337:60;30423:12;:19;30436:5;30423:19;;;;;;;;;;;;;;;:27;;;;;;;;;;;;30415:36;;30408:43;;30253:206;;;:::o;51053:103::-;50633:12;:10;:12::i;:::-;50622:23;;:7;:5;:7::i;:::-;:23;;;50614:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;51118:30:::1;51145:1;51118:18;:30::i;:::-;51053:103::o:0;53153:27::-;;;;:::o;53901:510::-;50633:12;:10;:12::i;:::-;50622:23;;:7;:5;:7::i;:::-;:23;;;50614:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;54048:1:::1;54027:18;;:22;54019:31;;;::::0;::::1;;54080:1;54069:8;;:12;54061:21;;;::::0;::::1;;54123:1;54101:24;;:10;:24;;;;54093:56;;;;;;;;;;;;:::i;:::-;;;;;;;;;54189:41;54199:10;54211:18;;54189:9;:41::i;:::-;54268:40;54286:10;54299:8;;54268:9;:40::i;:::-;54369:1;54348:18;:22;;;;54392:1;54381:8;:12;;;;53901:510:::0;:::o;56387:628::-;55229:10;55216:23;;:9;:23;;;55208:66;;;;;;;;;;;;:::i;:::-;;;;;;;;;56508:1:::1;56496:8;;:13;56488:46;;;;;;;;;;;;:::i;:::-;;;;;;;;;56599:9;;56594:1;56578:13;:11;:13::i;:::-;:17;;;;:::i;:::-;56577:31;56569:60;;;;;;;;;;;;:::i;:::-;;;;;;;;;56709:4;56682:31;;:11;:23;56694:10;56682:23;;;;;;;;;;;;;;;;;;;;;;;;;:31;;;;56674:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;56808:25;56822:5;56828:4;56808:13;:25::i;:::-;56800:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;56951:4;56925:11;:23;56937:10;56925:23;;;;;;;;;;;;;;;;:30;;;;;;;;;;;;;;;;;;56986:12;:10;:12::i;:::-;56387:628:::0;;:::o;54849:90::-;50633:12;:10;:12::i;:::-;50622:23;;:7;:5;:7::i;:::-;:23;;;50614:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;54926:5:::1;54915:8;:16;;;;54849:90:::0;:::o;50402:87::-;50448:7;50475:6;;;;;;;;;;;50468:13;;50402:87;:::o;54648:106::-;50633:12;:10;:12::i;:::-;50622:23;;:7;:5;:7::i;:::-;:23;;;50614:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;54739:7:::1;54724:12;:22;;;;;;;;;;;;:::i;:::-;;54648:106:::0;:::o;33166:104::-;33222:13;33255:7;33248:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;33166:104;:::o;54493:90::-;50633:12;:10;:12::i;:::-;50622:23;;:7;:5;:7::i;:::-;:23;;;50614:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;54570:5:::1;54563:4;:12;;;;54493:90:::0;:::o;53075:35::-;;;;:::o;34794:287::-;34905:12;:10;:12::i;:::-;34893:24;;:8;:24;;;34889:54;;;34926:17;;;;;;;;;;;;;;34889:54;35001:8;34956:18;:32;34975:12;:10;:12::i;:::-;34956:32;;;;;;;;;;;;;;;:42;34989:8;34956:42;;;;;;;;;;;;;;;;:53;;;;;;;;;;;;;;;;;;35054:8;35025:48;;35040:12;:10;:12::i;:::-;35025:48;;;35064:8;35025:48;;;;;;:::i;:::-;;;;;;;;34794:287;;:::o;62170:1243::-;62230:16;62298:29;62330:19;62342:6;62330:11;:19::i;:::-;62298:51;;62370:19;62446:18;62479:896;62523:1;62500:13;:20;:24;;;;:::i;:::-;62485:10;:40;62479:896;;62542:14;62559:13;62573:10;62559:25;;;;;;;;:::i;:::-;;;;;;;;62542:42;;62680:25;62708:17;:26;62726:7;62708:26;;;;;;;;;;;;;;;;62680:54;;62836:23;62879:1;62862:7;:14;;;;:18;;;;:::i;:::-;62836:44;;63035:9;63047:1;63035:13;;63063:272;63074:18;63069:1;:23;63063:272;;63119:17;63115:1;:21;63112:184;;;63265:9;;63252:7;63260:1;63252:10;;;;;;;;:::i;:::-;;;;;;;;;;:22;;;;:::i;:::-;63235:41;;;;;:::i;:::-;;;63112:184;63316:3;;;;;:::i;:::-;;;;63063:272;;;63351:12;;;;;:::i;:::-;;;;62527:848;;;;62479:896;;;63394:11;63387:18;;;;;62170:1243;;;:::o;57730:1753::-;50633:12;:10;:12::i;:::-;50622:23;;:7;:5;:7::i;:::-;:23;;;50614:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;23480:1:::1;24078:7;;:19;;24070:63;;;;;;;;;;;;:::i;:::-;;;;;;;;;23480:1;24211:7;:18;;;;57836:23:::2;57862:20;:18;:20::i;:::-;57836:46;;57979:7;57961:15;:25;57953:70;;;;;;;;;;;;:::i;:::-;;;;;;;;;58103:32;58156:16;;58138:15;:34;;;;:::i;:::-;58103:69;;58292:4;58265:24;:31;58257:75;;;;;;;;;;;;:::i;:::-;;;;;;;;;58639:22;58692:1;58665:24;:28;;;;:::i;:::-;58639:55;;58705:17;58752:14;58725:24;:41;;;;:::i;:::-;58705:61;;59125:7;59138:14;59125:28;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;59217:14;59197:16;;:34;;;;;;;:::i;:::-;;;;;;;;59280:12;59307:10;59299:24;;59331:9;59299:47;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;59279:67;;;59365:7;59357:36;;;;;;;;;;;;:::i;:::-;;;;;;;;;59443:10;59431:34;;;59455:9;59431:34;;;;;;:::i;:::-;;;;;;;;57793:1690;;;;;23436:1:::1;24390:7;:22;;;;57730:1753::o:0;63743:222::-;50633:12;:10;:12::i;:::-;50622:23;;:7;:5;:7::i;:::-;:23;;;50614:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;23480:1:::1;24078:7;;:19;;24070:63;;;;;;;;;;;;:::i;:::-;;;;;;;;;23480:1;24211:7;:18;;;;63830:1:::2;63811:16;:20;;;;63843:12;63861:10;:15;;63884:21;63861:49;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;63842:68;;;63929:7;63921:36;;;;;;;;;;;;:::i;:::-;;;;;;;;;63800:165;23436:1:::1;24390:7;:22;;;;63743:222::o:0;35880:369::-;36047:28;36057:4;36063:2;36067:7;36047:9;:28::i;:::-;36090:15;:2;:13;;;:15::i;:::-;:76;;;;;36110:56;36141:4;36147:2;36151:7;36160:5;36110:30;:56::i;:::-;36109:57;36090:76;36086:156;;;36190:40;;;;;;;;;;;;;;36086:156;35880:369;;;;:::o;33341:326::-;33414:13;33445:16;33453:7;33445;:16::i;:::-;33440:59;;33470:29;;;;;;;;;;;;;;33440:59;33512:21;33536:10;:8;:10::i;:::-;33512:34;;33589:1;33570:7;33564:21;:26;;:95;;;;;;;;;;;;;;;;;33617:7;33626:18;:7;:16;:18::i;:::-;33600:53;;;;;;;;;:::i;:::-;;;;;;;;;;;;;33564:95;33557:102;;;33341:326;;;:::o;57272:138::-;57330:24;57373:12;:20;57386:6;57373:20;;;;;;;;;;;;;;;:29;;57366:36;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;57272:138;;;:::o;53238:31::-;;;;:::o;59571:2427::-;23480:1;24078:7;;:19;;24070:63;;;;;;;;;;;;:::i;:::-;;;;;;;;;23480:1;24211:7;:18;;;;59677:29:::1;59709:23;59721:10;59709:11;:23::i;:::-;59677:55;;59771:19;59847:18:::0;59880:1704:::1;59924:1;59901:13;:20;:24;;;;:::i;:::-;59886:10;:40;59880:1704;;59975:14;59992:13;60006:10;59992:25;;;;;;;;:::i;:::-;;;;;;;;59975:42;;60101:25;60129:17;:26;60147:7;60129:26;;;;;;;;;;;;;;;;60101:54;;60259:23;60302:1;60285:7;:14;;;;:18;;;;:::i;:::-;60259:44;;60458:9;60470:1;60458:13;;60486:272;60497:18;60492:1;:23;60486:272;;60542:17;60538:1;:21;60535:184;;;60688:9;;60675:7;60683:1;60675:10;;;;;;;;:::i;:::-;;;;;;;;;;:22;;;;:::i;:::-;60658:41;;;;;:::i;:::-;;;60535:184;60739:3;;;;;:::i;:::-;;;;60486:272;;;61181:18;61151:17;:26;61169:7;61151:26;;;;;;;;;;;;;;;;:48;61148:178;;61292:18;61263:17;:26;61281:7;61263:26;;;;;;;;;;;;;;;:47;;;;61148:178;61411:1;61397:11;:15;61394:152;;;61519:11;61473:14;:23;61488:7;61473:23;;;;;;;;;;;;;;;:43;61497:18;61473:43;;;;;;;;;;;:57;;;;61394:152;61560:12;;;;;:::i;:::-;;;;59928:1656;;;;59880:1704;;;61613:1;61599:11;:15;61596:395;;;61692:11;61672:16;;:31;;;;;;;:::i;:::-;;;;;;;;61778:12;61804:10;61796:24;;61829:11;61796:50;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;61777:69;;;61869:7;61861:36;;;;;;;;;;;;:::i;:::-;;;;;;;;;61955:10;61943:36;;;61967:11;61943:36;;;;;;:::i;:::-;;;;;;;;61615:376;61596:395;59624:2374;;;23436:1:::0;24390:7;:22;;;;59571:2427::o;35152:164::-;35249:4;35273:18;:25;35292:5;35273:25;;;;;;;;;;;;;;;:35;35299:8;35273:35;;;;;;;;;;;;;;;;;;;;;;;;;35266:42;;35152:164;;;;:::o;53436:19::-;;;;:::o;51311:201::-;50633:12;:10;:12::i;:::-;50622:23;;:7;:5;:7::i;:::-;:23;;;50614:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;51420:1:::1;51400:22;;:8;:22;;;;51392:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;51476:28;51495:8;51476:18;:28::i;:::-;51311:201:::0;:::o;28032:26::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;52626:43::-;;;;;;;;;;;;;;;;;;;;;;:::o;15829:157::-;15914:4;15953:25;15938:40;;;:11;:40;;;;15931:47;;15829:157;;;:::o;36504:174::-;36561:4;36604:7;36585:15;:13;:15::i;:::-;:26;;:53;;;;;36625:13;;36615:7;:23;36585:53;:85;;;;;36643:11;:20;36655:7;36643:20;;;;;;;;;;;:27;;;;;;;;;;;;36642:28;36585:85;36578:92;;36504:174;;;:::o;25106:98::-;25159:7;25186:10;25179:17;;25106:98;:::o;46356:196::-;46498:2;46471:15;:24;46487:7;46471:24;;;;;;;;;;;;:29;;;;;;;;;;;;;;;;;;46536:7;46532:2;46516:28;;46525:5;46516:28;;;;;;;;;;;;46356:196;;;:::o;57512:117::-;57597:24;57607:10;57619:1;57597:9;:24::i;:::-;57512:117::o;28907:92::-;28963:7;28907:92;:::o;39925:2998::-;40040:35;40078:21;40091:7;40078:12;:21::i;:::-;40040:59;;40138:4;40116:26;;:13;:18;;;:26;;;40112:67;;40151:28;;;;;;;;;;;;;;40112:67;40192:22;40234:4;40218:20;;:12;:10;:12::i;:::-;:20;;;:73;;;;40255:36;40272:4;40278:12;:10;:12::i;:::-;40255:16;:36::i;:::-;40218:73;:126;;;;40332:12;:10;:12::i;:::-;40308:36;;:20;40320:7;40308:11;:20::i;:::-;:36;;;40218:126;40192:153;;40363:17;40358:66;;40389:35;;;;;;;;;;;;;;40358:66;40453:1;40439:16;;:2;:16;;;40435:52;;;40464:23;;;;;;;;;;;;;;40435:52;40500:43;40522:4;40528:2;40532:7;40541:1;40500:21;:43::i;:::-;40608:35;40625:1;40629:7;40638:4;40608:8;:35::i;:::-;40971:1;40941:12;:18;40954:4;40941:18;;;;;;;;;;;;;;;:26;;;:31;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;41015:1;40987:12;:16;41000:2;40987:16;;;;;;;;;;;;;;;:24;;;:29;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;41033:31;41067:11;:20;41079:7;41067:20;;;;;;;;;;;41033:54;;41118:2;41102:8;:13;;;:18;;;;;;;;;;;;;;;;;;41168:15;41135:8;:23;;;:49;;;;;;;;;;;;;;;;;;41436:19;41468:1;41458:7;:11;41436:33;;41484:31;41518:11;:24;41530:11;41518:24;;;;;;;;;;;41484:58;;41586:1;41561:27;;:8;:13;;;;;;;;;;;;:27;;;41557:384;;;41771:13;;41756:11;:28;41752:174;;41825:4;41809:8;:13;;;:20;;;;;;;;;;;;;;;;;;41878:13;:28;;;41852:8;:23;;;:54;;;;;;;;;;;;;;;;;;41752:174;41557:384;40916:1036;;;42019:12;:16;42032:2;42019:16;;;;;;;;;;;;;;;:25;;42057:7;42019:47;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;42086:6;42081:379;42100:12;:18;42113:4;42100:18;;;;;;;;;;;;;;;:27;;:34;;;;42096:1;:38;42081:379;;;42197:7;42163:12;:18;42176:4;42163:18;;;;;;;;;;;;;;;:27;;42191:1;42163:30;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:41;;;42160:285;;;42302:12;:18;42315:4;42302:18;;;;;;;;;;;;;;;:27;;42367:1;42330:12;:18;42343:4;42330:18;;;;;;;;;;;;;;;:27;;:34;;;;:38;;;;:::i;:::-;42302:67;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;42269:12;:18;42282:4;42269:18;;;;;;;;;;;;;;;:27;;42297:1;42269:30;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;:100;;;;;;;;;;;;;;;;;;42392:12;:18;42405:4;42392:18;;;;;;;;;;;;;;;:27;;:33;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;42160:285;42136:3;;;;;:::i;:::-;;;;42081:379;;;;42613:4;42597:13;:11;:13::i;:::-;:20;42594:169;;;42720:27;42738:4;42745:1;42720:9;:27::i;:::-;42594:169;42854:7;42850:2;42835:27;;42844:4;42835:27;;;;;;;;;;;;42873:42;42894:4;42900:2;42904:7;42913:1;42873:20;:42::i;:::-;40029:2894;;39925:2998;;;:::o;31634:1109::-;31696:21;;:::i;:::-;31730:12;31745:7;31730:22;;31813:4;31794:15;:13;:15::i;:::-;:23;;:47;;;;;31828:13;;31821:4;:20;31794:47;31790:886;;;31862:31;31896:11;:17;31908:4;31896:17;;;;;;;;;;;31862:51;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;31937:9;:16;;;31932:729;;32008:1;31982:28;;:9;:14;;;:28;;;31978:101;;32046:9;32039:16;;;;;;31978:101;32381:261;32388:4;32381:261;;;32421:6;;;;;;;;32466:11;:17;32478:4;32466:17;;;;;;;;;;;32454:29;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;32540:1;32514:28;;:9;:14;;;:28;;;32510:109;;32582:9;32575:16;;;;;;32510:109;32381:261;;;31932:729;31843:833;31790:886;32704:31;;;;;;;;;;;;;;31634:1109;;;;:::o;923:190::-;1048:4;1101;1072:25;1085:5;1092:4;1072:12;:25::i;:::-;:33;1065:40;;923:190;;;;;:::o;51672:191::-;51746:16;51765:6;;;;;;;;;;;51746:25;;51791:8;51782:6;;:17;;;;;;;;;;;;;;;;;;51846:8;51815:40;;51836:8;51815:40;;;;;;;;;;;;51735:128;51672:191;:::o;36686:104::-;36755:27;36765:2;36769:8;36755:27;;;;;;;;;;;;:9;:27::i;:::-;36686:104;;:::o;5746:326::-;5806:4;6063:1;6041:7;:19;;;:23;6034:30;;5746:326;;;:::o;47044:667::-;47207:4;47244:2;47228:36;;;47265:12;:10;:12::i;:::-;47279:4;47285:7;47294:5;47228:72;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;47224:480;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;47479:1;47462:6;:13;:18;47458:235;;;47508:40;;;;;;;;;;;;;;47458:235;47651:6;47645:13;47636:6;47632:2;47628:15;47621:38;47224:480;47357:45;;;47347:55;;;:6;:55;;;;47340:62;;;47044:667;;;;;;:::o;33915:104::-;33966:13;33999:12;33992:19;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;33915:104;:::o;2754:723::-;2810:13;3040:1;3031:5;:10;3027:53;;;3058:10;;;;;;;;;;;;;;;;;;;;;3027:53;3090:12;3105:5;3090:20;;3121:14;3146:78;3161:1;3153:4;:9;3146:78;;3179:8;;;;;:::i;:::-;;;;3210:2;3202:10;;;;;:::i;:::-;;;3146:78;;;3234:19;3266:6;3256:17;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3234:39;;3284:154;3300:1;3291:5;:10;3284:154;;3328:1;3318:11;;;;;:::i;:::-;;;3395:2;3387:5;:10;;;;:::i;:::-;3374:2;:24;;;;:::i;:::-;3361:39;;3344:6;3351;3344:14;;;;;;;;:::i;:::-;;;;;:56;;;;;;;;;;;3424:2;3415:11;;;;;:::i;:::-;;;3284:154;;;3462:6;3448:21;;;;;2754:723;;;;:::o;48359:159::-;;;;;:::o;49177:158::-;;;;;:::o;1475:675::-;1558:7;1578:20;1601:4;1578:27;;1621:9;1616:497;1640:5;:12;1636:1;:16;1616:497;;;1674:20;1697:5;1703:1;1697:8;;;;;;;;:::i;:::-;;;;;;;;1674:31;;1740:12;1724;:28;1720:382;;1867:42;1882:12;1896;1867:14;:42::i;:::-;1852:57;;1720:382;;;2044:42;2059:12;2073;2044:14;:42::i;:::-;2029:57;;1720:382;1659:454;1654:3;;;;;:::i;:::-;;;;1616:497;;;;2130:12;2123:19;;;1475:675;;;;:::o;37153:163::-;37276:32;37282:2;37286:8;37296:5;37303:4;37276:5;:32::i;:::-;37153:163;;;:::o;2158:224::-;2226:13;2289:1;2283:4;2276:15;2318:1;2312:4;2305:15;2359:4;2353;2343:21;2334:30;;2158:224;;;;:::o;37575:2096::-;37714:20;37737:13;;37714:36;;37779:1;37765:16;;:2;:16;;;37761:48;;;37790:19;;;;;;;;;;;;;;37761:48;37836:1;37824:8;:13;37820:44;;;37846:18;;;;;;;;;;;;;;37820:44;37877:61;37907:1;37911:2;37915:12;37929:8;37877:21;:61::i;:::-;38250:8;38215:12;:16;38228:2;38215:16;;;;;;;;;;;;;;;:24;;;:44;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;38314:8;38274:12;:16;38287:2;38274:16;;;;;;;;;;;;;;;:29;;;:49;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;38373:2;38340:11;:25;38352:12;38340:25;;;;;;;;;;;:30;;;:35;;;;;;;;;;;;;;;;;;38440:15;38390:11;:25;38402:12;38390:25;;;;;;;;;;;:40;;;:66;;;;;;;;;;;;;;;;;;38524:6;38549:174;38559:8;38555:1;:12;38549:174;;;38587:12;38606:13;;38602:1;:17;38587:32;;38638:12;:16;38651:2;38638:16;;;;;;;;;;;;;;;:25;;38676:7;38638:47;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;38704:3;;;;;;;38568:155;38549:174;;;38794:20;38817:12;38794:35;;38844:11;38873:8;38858:12;:23;38844:37;;38902:4;:23;;;;;38910:15;:2;:13;;;:15::i;:::-;38902:23;38898:641;;;38946:314;39002:12;38998:2;38977:38;;38994:1;38977:38;;;;;;;;;;;;39043:69;39082:1;39086:2;39090:14;;;;;;39106:5;39043:30;:69::i;:::-;39038:174;;39148:40;;;;;;;;;;;;;;39038:174;39255:3;39239:12;:19;;38946:314;;39341:12;39324:13;;:29;39320:43;;39355:8;;;39320:43;38898:641;;;39404:120;39460:14;;;;;;39456:2;39435:40;;39452:1;39435:40;;;;;;;;;;;;39519:3;39503:12;:19;;39404:120;;38898:641;39569:12;39553:13;:28;;;;38190:1403;;;39603:60;39632:1;39636:2;39640:12;39654:8;39603:20;:60::i;:::-;37703:1968;37575:2096;;;;:::o;-1:-1:-1:-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;:::-;;;;;;;;;;;;;;;;;;;;;:::o;24:722:1:-;120:5;145:81;161:64;218:6;161:64;:::i;:::-;145:81;:::i;:::-;136:90;;246:5;275:6;268:5;261:21;309:4;302:5;298:16;291:23;;335:6;385:3;377:4;369:6;365:17;360:3;356:27;353:36;350:143;;;404:79;;:::i;:::-;350:143;517:1;502:238;527:6;524:1;521:13;502:238;;;595:3;624:37;657:3;645:10;624:37;:::i;:::-;619:3;612:50;691:4;686:3;682:14;675:21;;725:4;720:3;716:14;709:21;;562:178;549:1;546;542:9;537:14;;502:238;;;506:14;126:620;;24:722;;;;;:::o;752:410::-;829:5;854:65;870:48;911:6;870:48;:::i;:::-;854:65;:::i;:::-;845:74;;942:6;935:5;928:21;980:4;973:5;969:16;1018:3;1009:6;1004:3;1000:16;997:25;994:112;;;1025:79;;:::i;:::-;994:112;1115:41;1149:6;1144:3;1139;1115:41;:::i;:::-;835:327;752:410;;;;;:::o;1168:412::-;1246:5;1271:66;1287:49;1329:6;1287:49;:::i;:::-;1271:66;:::i;:::-;1262:75;;1360:6;1353:5;1346:21;1398:4;1391:5;1387:16;1436:3;1427:6;1422:3;1418:16;1415:25;1412:112;;;1443:79;;:::i;:::-;1412:112;1533:41;1567:6;1562:3;1557;1533:41;:::i;:::-;1252:328;1168:412;;;;;:::o;1586:139::-;1632:5;1670:6;1657:20;1648:29;;1686:33;1713:5;1686:33;:::i;:::-;1586:139;;;;:::o;1748:370::-;1819:5;1868:3;1861:4;1853:6;1849:17;1845:27;1835:122;;1876:79;;:::i;:::-;1835:122;1993:6;1980:20;2018:94;2108:3;2100:6;2093:4;2085:6;2081:17;2018:94;:::i;:::-;2009:103;;1825:293;1748:370;;;;:::o;2124:133::-;2167:5;2205:6;2192:20;2183:29;;2221:30;2245:5;2221:30;:::i;:::-;2124:133;;;;:::o;2263:139::-;2309:5;2347:6;2334:20;2325:29;;2363:33;2390:5;2363:33;:::i;:::-;2263:139;;;;:::o;2408:137::-;2453:5;2491:6;2478:20;2469:29;;2507:32;2533:5;2507:32;:::i;:::-;2408:137;;;;:::o;2551:141::-;2607:5;2638:6;2632:13;2623:22;;2654:32;2680:5;2654:32;:::i;:::-;2551:141;;;;:::o;2711:338::-;2766:5;2815:3;2808:4;2800:6;2796:17;2792:27;2782:122;;2823:79;;:::i;:::-;2782:122;2940:6;2927:20;2965:78;3039:3;3031:6;3024:4;3016:6;3012:17;2965:78;:::i;:::-;2956:87;;2772:277;2711:338;;;;:::o;3069:340::-;3125:5;3174:3;3167:4;3159:6;3155:17;3151:27;3141:122;;3182:79;;:::i;:::-;3141:122;3299:6;3286:20;3324:79;3399:3;3391:6;3384:4;3376:6;3372:17;3324:79;:::i;:::-;3315:88;;3131:278;3069:340;;;;:::o;3415:139::-;3461:5;3499:6;3486:20;3477:29;;3515:33;3542:5;3515:33;:::i;:::-;3415:139;;;;:::o;3560:329::-;3619:6;3668:2;3656:9;3647:7;3643:23;3639:32;3636:119;;;3674:79;;:::i;:::-;3636:119;3794:1;3819:53;3864:7;3855:6;3844:9;3840:22;3819:53;:::i;:::-;3809:63;;3765:117;3560:329;;;;:::o;3895:474::-;3963:6;3971;4020:2;4008:9;3999:7;3995:23;3991:32;3988:119;;;4026:79;;:::i;:::-;3988:119;4146:1;4171:53;4216:7;4207:6;4196:9;4192:22;4171:53;:::i;:::-;4161:63;;4117:117;4273:2;4299:53;4344:7;4335:6;4324:9;4320:22;4299:53;:::i;:::-;4289:63;;4244:118;3895:474;;;;;:::o;4375:619::-;4452:6;4460;4468;4517:2;4505:9;4496:7;4492:23;4488:32;4485:119;;;4523:79;;:::i;:::-;4485:119;4643:1;4668:53;4713:7;4704:6;4693:9;4689:22;4668:53;:::i;:::-;4658:63;;4614:117;4770:2;4796:53;4841:7;4832:6;4821:9;4817:22;4796:53;:::i;:::-;4786:63;;4741:118;4898:2;4924:53;4969:7;4960:6;4949:9;4945:22;4924:53;:::i;:::-;4914:63;;4869:118;4375:619;;;;;:::o;5000:943::-;5095:6;5103;5111;5119;5168:3;5156:9;5147:7;5143:23;5139:33;5136:120;;;5175:79;;:::i;:::-;5136:120;5295:1;5320:53;5365:7;5356:6;5345:9;5341:22;5320:53;:::i;:::-;5310:63;;5266:117;5422:2;5448:53;5493:7;5484:6;5473:9;5469:22;5448:53;:::i;:::-;5438:63;;5393:118;5550:2;5576:53;5621:7;5612:6;5601:9;5597:22;5576:53;:::i;:::-;5566:63;;5521:118;5706:2;5695:9;5691:18;5678:32;5737:18;5729:6;5726:30;5723:117;;;5759:79;;:::i;:::-;5723:117;5864:62;5918:7;5909:6;5898:9;5894:22;5864:62;:::i;:::-;5854:72;;5649:287;5000:943;;;;;;;:::o;5949:468::-;6014:6;6022;6071:2;6059:9;6050:7;6046:23;6042:32;6039:119;;;6077:79;;:::i;:::-;6039:119;6197:1;6222:53;6267:7;6258:6;6247:9;6243:22;6222:53;:::i;:::-;6212:63;;6168:117;6324:2;6350:50;6392:7;6383:6;6372:9;6368:22;6350:50;:::i;:::-;6340:60;;6295:115;5949:468;;;;;:::o;6423:474::-;6491:6;6499;6548:2;6536:9;6527:7;6523:23;6519:32;6516:119;;;6554:79;;:::i;:::-;6516:119;6674:1;6699:53;6744:7;6735:6;6724:9;6720:22;6699:53;:::i;:::-;6689:63;;6645:117;6801:2;6827:53;6872:7;6863:6;6852:9;6848:22;6827:53;:::i;:::-;6817:63;;6772:118;6423:474;;;;;:::o;6903:684::-;6996:6;7004;7053:2;7041:9;7032:7;7028:23;7024:32;7021:119;;;7059:79;;:::i;:::-;7021:119;7207:1;7196:9;7192:17;7179:31;7237:18;7229:6;7226:30;7223:117;;;7259:79;;:::i;:::-;7223:117;7364:78;7434:7;7425:6;7414:9;7410:22;7364:78;:::i;:::-;7354:88;;7150:302;7491:2;7517:53;7562:7;7553:6;7542:9;7538:22;7517:53;:::i;:::-;7507:63;;7462:118;6903:684;;;;;:::o;7593:329::-;7652:6;7701:2;7689:9;7680:7;7676:23;7672:32;7669:119;;;7707:79;;:::i;:::-;7669:119;7827:1;7852:53;7897:7;7888:6;7877:9;7873:22;7852:53;:::i;:::-;7842:63;;7798:117;7593:329;;;;:::o;7928:327::-;7986:6;8035:2;8023:9;8014:7;8010:23;8006:32;8003:119;;;8041:79;;:::i;:::-;8003:119;8161:1;8186:52;8230:7;8221:6;8210:9;8206:22;8186:52;:::i;:::-;8176:62;;8132:116;7928:327;;;;:::o;8261:349::-;8330:6;8379:2;8367:9;8358:7;8354:23;8350:32;8347:119;;;8385:79;;:::i;:::-;8347:119;8505:1;8530:63;8585:7;8576:6;8565:9;8561:22;8530:63;:::i;:::-;8520:73;;8476:127;8261:349;;;;:::o;8616:509::-;8685:6;8734:2;8722:9;8713:7;8709:23;8705:32;8702:119;;;8740:79;;:::i;:::-;8702:119;8888:1;8877:9;8873:17;8860:31;8918:18;8910:6;8907:30;8904:117;;;8940:79;;:::i;:::-;8904:117;9045:63;9100:7;9091:6;9080:9;9076:22;9045:63;:::i;:::-;9035:73;;8831:287;8616:509;;;;:::o;9131:329::-;9190:6;9239:2;9227:9;9218:7;9214:23;9210:32;9207:119;;;9245:79;;:::i;:::-;9207:119;9365:1;9390:53;9435:7;9426:6;9415:9;9411:22;9390:53;:::i;:::-;9380:63;;9336:117;9131:329;;;;:::o;9466:175::-;9533:10;9554:44;9594:3;9586:6;9554:44;:::i;:::-;9630:4;9625:3;9621:14;9607:28;;9466:175;;;;:::o;9647:118::-;9734:24;9752:5;9734:24;:::i;:::-;9729:3;9722:37;9647:118;;:::o;9799:724::-;9916:3;9945:53;9992:5;9945:53;:::i;:::-;10014:85;10092:6;10087:3;10014:85;:::i;:::-;10007:92;;10123:55;10172:5;10123:55;:::i;:::-;10201:7;10232:1;10217:281;10242:6;10239:1;10236:13;10217:281;;;10318:6;10312:13;10345:61;10402:3;10387:13;10345:61;:::i;:::-;10338:68;;10429:59;10481:6;10429:59;:::i;:::-;10419:69;;10277:221;10264:1;10261;10257:9;10252:14;;10217:281;;;10221:14;10514:3;10507:10;;9921:602;;;9799:724;;;;:::o;10529:109::-;10610:21;10625:5;10610:21;:::i;:::-;10605:3;10598:34;10529:109;;:::o;10644:118::-;10731:24;10749:5;10731:24;:::i;:::-;10726:3;10719:37;10644:118;;:::o;10768:360::-;10854:3;10882:38;10914:5;10882:38;:::i;:::-;10936:70;10999:6;10994:3;10936:70;:::i;:::-;10929:77;;11015:52;11060:6;11055:3;11048:4;11041:5;11037:16;11015:52;:::i;:::-;11092:29;11114:6;11092:29;:::i;:::-;11087:3;11083:39;11076:46;;10858:270;10768:360;;;;:::o;11134:364::-;11222:3;11250:39;11283:5;11250:39;:::i;:::-;11305:71;11369:6;11364:3;11305:71;:::i;:::-;11298:78;;11385:52;11430:6;11425:3;11418:4;11411:5;11407:16;11385:52;:::i;:::-;11462:29;11484:6;11462:29;:::i;:::-;11457:3;11453:39;11446:46;;11226:272;11134:364;;;;:::o;11504:377::-;11610:3;11638:39;11671:5;11638:39;:::i;:::-;11693:89;11775:6;11770:3;11693:89;:::i;:::-;11686:96;;11791:52;11836:6;11831:3;11824:4;11817:5;11813:16;11791:52;:::i;:::-;11868:6;11863:3;11859:16;11852:23;;11614:267;11504:377;;;;:::o;11887:366::-;12029:3;12050:67;12114:2;12109:3;12050:67;:::i;:::-;12043:74;;12126:93;12215:3;12126:93;:::i;:::-;12244:2;12239:3;12235:12;12228:19;;11887:366;;;:::o;12259:::-;12401:3;12422:67;12486:2;12481:3;12422:67;:::i;:::-;12415:74;;12498:93;12587:3;12498:93;:::i;:::-;12616:2;12611:3;12607:12;12600:19;;12259:366;;;:::o;12631:::-;12773:3;12794:67;12858:2;12853:3;12794:67;:::i;:::-;12787:74;;12870:93;12959:3;12870:93;:::i;:::-;12988:2;12983:3;12979:12;12972:19;;12631:366;;;:::o;13003:::-;13145:3;13166:67;13230:2;13225:3;13166:67;:::i;:::-;13159:74;;13242:93;13331:3;13242:93;:::i;:::-;13360:2;13355:3;13351:12;13344:19;;13003:366;;;:::o;13375:::-;13517:3;13538:67;13602:2;13597:3;13538:67;:::i;:::-;13531:74;;13614:93;13703:3;13614:93;:::i;:::-;13732:2;13727:3;13723:12;13716:19;;13375:366;;;:::o;13747:::-;13889:3;13910:67;13974:2;13969:3;13910:67;:::i;:::-;13903:74;;13986:93;14075:3;13986:93;:::i;:::-;14104:2;14099:3;14095:12;14088:19;;13747:366;;;:::o;14119:400::-;14279:3;14300:84;14382:1;14377:3;14300:84;:::i;:::-;14293:91;;14393:93;14482:3;14393:93;:::i;:::-;14511:1;14506:3;14502:11;14495:18;;14119:400;;;:::o;14525:366::-;14667:3;14688:67;14752:2;14747:3;14688:67;:::i;:::-;14681:74;;14764:93;14853:3;14764:93;:::i;:::-;14882:2;14877:3;14873:12;14866:19;;14525:366;;;:::o;14897:::-;15039:3;15060:67;15124:2;15119:3;15060:67;:::i;:::-;15053:74;;15136:93;15225:3;15136:93;:::i;:::-;15254:2;15249:3;15245:12;15238:19;;14897:366;;;:::o;15269:::-;15411:3;15432:67;15496:2;15491:3;15432:67;:::i;:::-;15425:74;;15508:93;15597:3;15508:93;:::i;:::-;15626:2;15621:3;15617:12;15610:19;;15269:366;;;:::o;15641:398::-;15800:3;15821:83;15902:1;15897:3;15821:83;:::i;:::-;15814:90;;15913:93;16002:3;15913:93;:::i;:::-;16031:1;16026:3;16022:11;16015:18;;15641:398;;;:::o;16045:366::-;16187:3;16208:67;16272:2;16267:3;16208:67;:::i;:::-;16201:74;;16284:93;16373:3;16284:93;:::i;:::-;16402:2;16397:3;16393:12;16386:19;;16045:366;;;:::o;16417:::-;16559:3;16580:67;16644:2;16639:3;16580:67;:::i;:::-;16573:74;;16656:93;16745:3;16656:93;:::i;:::-;16774:2;16769:3;16765:12;16758:19;;16417:366;;;:::o;16789:::-;16931:3;16952:67;17016:2;17011:3;16952:67;:::i;:::-;16945:74;;17028:93;17117:3;17028:93;:::i;:::-;17146:2;17141:3;17137:12;17130:19;;16789:366;;;:::o;17161:::-;17303:3;17324:67;17388:2;17383:3;17324:67;:::i;:::-;17317:74;;17400:93;17489:3;17400:93;:::i;:::-;17518:2;17513:3;17509:12;17502:19;;17161:366;;;:::o;17533:105::-;17608:23;17625:5;17608:23;:::i;:::-;17603:3;17596:36;17533:105;;:::o;17644:118::-;17731:24;17749:5;17731:24;:::i;:::-;17726:3;17719:37;17644:118;;:::o;17768:701::-;18049:3;18071:95;18162:3;18153:6;18071:95;:::i;:::-;18064:102;;18183:95;18274:3;18265:6;18183:95;:::i;:::-;18176:102;;18295:148;18439:3;18295:148;:::i;:::-;18288:155;;18460:3;18453:10;;17768:701;;;;;:::o;18475:379::-;18659:3;18681:147;18824:3;18681:147;:::i;:::-;18674:154;;18845:3;18838:10;;18475:379;;;:::o;18860:222::-;18953:4;18991:2;18980:9;18976:18;18968:26;;19004:71;19072:1;19061:9;19057:17;19048:6;19004:71;:::i;:::-;18860:222;;;;:::o;19088:640::-;19283:4;19321:3;19310:9;19306:19;19298:27;;19335:71;19403:1;19392:9;19388:17;19379:6;19335:71;:::i;:::-;19416:72;19484:2;19473:9;19469:18;19460:6;19416:72;:::i;:::-;19498;19566:2;19555:9;19551:18;19542:6;19498:72;:::i;:::-;19617:9;19611:4;19607:20;19602:2;19591:9;19587:18;19580:48;19645:76;19716:4;19707:6;19645:76;:::i;:::-;19637:84;;19088:640;;;;;;;:::o;19734:369::-;19875:4;19913:2;19902:9;19898:18;19890:26;;19962:9;19956:4;19952:20;19948:1;19937:9;19933:17;19926:47;19990:106;20091:4;20082:6;19990:106;:::i;:::-;19982:114;;19734:369;;;;:::o;20109:210::-;20196:4;20234:2;20223:9;20219:18;20211:26;;20247:65;20309:1;20298:9;20294:17;20285:6;20247:65;:::i;:::-;20109:210;;;;:::o;20325:222::-;20418:4;20456:2;20445:9;20441:18;20433:26;;20469:71;20537:1;20526:9;20522:17;20513:6;20469:71;:::i;:::-;20325:222;;;;:::o;20553:313::-;20666:4;20704:2;20693:9;20689:18;20681:26;;20753:9;20747:4;20743:20;20739:1;20728:9;20724:17;20717:47;20781:78;20854:4;20845:6;20781:78;:::i;:::-;20773:86;;20553:313;;;;:::o;20872:419::-;21038:4;21076:2;21065:9;21061:18;21053:26;;21125:9;21119:4;21115:20;21111:1;21100:9;21096:17;21089:47;21153:131;21279:4;21153:131;:::i;:::-;21145:139;;20872:419;;;:::o;21297:::-;21463:4;21501:2;21490:9;21486:18;21478:26;;21550:9;21544:4;21540:20;21536:1;21525:9;21521:17;21514:47;21578:131;21704:4;21578:131;:::i;:::-;21570:139;;21297:419;;;:::o;21722:::-;21888:4;21926:2;21915:9;21911:18;21903:26;;21975:9;21969:4;21965:20;21961:1;21950:9;21946:17;21939:47;22003:131;22129:4;22003:131;:::i;:::-;21995:139;;21722:419;;;:::o;22147:::-;22313:4;22351:2;22340:9;22336:18;22328:26;;22400:9;22394:4;22390:20;22386:1;22375:9;22371:17;22364:47;22428:131;22554:4;22428:131;:::i;:::-;22420:139;;22147:419;;;:::o;22572:::-;22738:4;22776:2;22765:9;22761:18;22753:26;;22825:9;22819:4;22815:20;22811:1;22800:9;22796:17;22789:47;22853:131;22979:4;22853:131;:::i;:::-;22845:139;;22572:419;;;:::o;22997:::-;23163:4;23201:2;23190:9;23186:18;23178:26;;23250:9;23244:4;23240:20;23236:1;23225:9;23221:17;23214:47;23278:131;23404:4;23278:131;:::i;:::-;23270:139;;22997:419;;;:::o;23422:::-;23588:4;23626:2;23615:9;23611:18;23603:26;;23675:9;23669:4;23665:20;23661:1;23650:9;23646:17;23639:47;23703:131;23829:4;23703:131;:::i;:::-;23695:139;;23422:419;;;:::o;23847:::-;24013:4;24051:2;24040:9;24036:18;24028:26;;24100:9;24094:4;24090:20;24086:1;24075:9;24071:17;24064:47;24128:131;24254:4;24128:131;:::i;:::-;24120:139;;23847:419;;;:::o;24272:::-;24438:4;24476:2;24465:9;24461:18;24453:26;;24525:9;24519:4;24515:20;24511:1;24500:9;24496:17;24489:47;24553:131;24679:4;24553:131;:::i;:::-;24545:139;;24272:419;;;:::o;24697:::-;24863:4;24901:2;24890:9;24886:18;24878:26;;24950:9;24944:4;24940:20;24936:1;24925:9;24921:17;24914:47;24978:131;25104:4;24978:131;:::i;:::-;24970:139;;24697:419;;;:::o;25122:::-;25288:4;25326:2;25315:9;25311:18;25303:26;;25375:9;25369:4;25365:20;25361:1;25350:9;25346:17;25339:47;25403:131;25529:4;25403:131;:::i;:::-;25395:139;;25122:419;;;:::o;25547:::-;25713:4;25751:2;25740:9;25736:18;25728:26;;25800:9;25794:4;25790:20;25786:1;25775:9;25771:17;25764:47;25828:131;25954:4;25828:131;:::i;:::-;25820:139;;25547:419;;;:::o;25972:::-;26138:4;26176:2;26165:9;26161:18;26153:26;;26225:9;26219:4;26215:20;26211:1;26200:9;26196:17;26189:47;26253:131;26379:4;26253:131;:::i;:::-;26245:139;;25972:419;;;:::o;26397:222::-;26490:4;26528:2;26517:9;26513:18;26505:26;;26541:71;26609:1;26598:9;26594:17;26585:6;26541:71;:::i;:::-;26397:222;;;;:::o;26625:129::-;26659:6;26686:20;;:::i;:::-;26676:30;;26715:33;26743:4;26735:6;26715:33;:::i;:::-;26625:129;;;:::o;26760:75::-;26793:6;26826:2;26820:9;26810:19;;26760:75;:::o;26841:311::-;26918:4;27008:18;27000:6;26997:30;26994:56;;;27030:18;;:::i;:::-;26994:56;27080:4;27072:6;27068:17;27060:25;;27140:4;27134;27130:15;27122:23;;26841:311;;;:::o;27158:307::-;27219:4;27309:18;27301:6;27298:30;27295:56;;;27331:18;;:::i;:::-;27295:56;27369:29;27391:6;27369:29;:::i;:::-;27361:37;;27453:4;27447;27443:15;27435:23;;27158:307;;;:::o;27471:308::-;27533:4;27623:18;27615:6;27612:30;27609:56;;;27645:18;;:::i;:::-;27609:56;27683:29;27705:6;27683:29;:::i;:::-;27675:37;;27767:4;27761;27757:15;27749:23;;27471:308;;;:::o;27785:131::-;27851:4;27874:3;27866:11;;27904:4;27899:3;27895:14;27887:22;;27785:131;;;:::o;27922:113::-;27988:6;28022:5;28016:12;28006:22;;27922:113;;;:::o;28041:98::-;28092:6;28126:5;28120:12;28110:22;;28041:98;;;:::o;28145:99::-;28197:6;28231:5;28225:12;28215:22;;28145:99;;;:::o;28250:112::-;28319:4;28351;28346:3;28342:14;28334:22;;28250:112;;;:::o;28368:183::-;28466:11;28500:6;28495:3;28488:19;28540:4;28535:3;28531:14;28516:29;;28368:183;;;;:::o;28557:168::-;28640:11;28674:6;28669:3;28662:19;28714:4;28709:3;28705:14;28690:29;;28557:168;;;;:::o;28731:147::-;28832:11;28869:3;28854:18;;28731:147;;;;:::o;28884:169::-;28968:11;29002:6;28997:3;28990:19;29042:4;29037:3;29033:14;29018:29;;28884:169;;;;:::o;29059:148::-;29161:11;29198:3;29183:18;;29059:148;;;;:::o;29213:305::-;29253:3;29272:20;29290:1;29272:20;:::i;:::-;29267:25;;29306:20;29324:1;29306:20;:::i;:::-;29301:25;;29460:1;29392:66;29388:74;29385:1;29382:81;29379:107;;;29466:18;;:::i;:::-;29379:107;29510:1;29507;29503:9;29496:16;;29213:305;;;;:::o;29524:185::-;29564:1;29581:20;29599:1;29581:20;:::i;:::-;29576:25;;29615:20;29633:1;29615:20;:::i;:::-;29610:25;;29654:1;29644:35;;29659:18;;:::i;:::-;29644:35;29701:1;29698;29694:9;29689:14;;29524:185;;;;:::o;29715:191::-;29755:4;29775:20;29793:1;29775:20;:::i;:::-;29770:25;;29809:20;29827:1;29809:20;:::i;:::-;29804:25;;29848:1;29845;29842:8;29839:34;;;29853:18;;:::i;:::-;29839:34;29898:1;29895;29891:9;29883:17;;29715:191;;;;:::o;29912:96::-;29949:7;29978:24;29996:5;29978:24;:::i;:::-;29967:35;;29912:96;;;:::o;30014:90::-;30048:7;30091:5;30084:13;30077:21;30066:32;;30014:90;;;:::o;30110:77::-;30147:7;30176:5;30165:16;;30110:77;;;:::o;30193:149::-;30229:7;30269:66;30262:5;30258:78;30247:89;;30193:149;;;:::o;30348:89::-;30384:7;30424:6;30417:5;30413:18;30402:29;;30348:89;;;:::o;30443:126::-;30480:7;30520:42;30513:5;30509:54;30498:65;;30443:126;;;:::o;30575:77::-;30612:7;30641:5;30630:16;;30575:77;;;:::o;30658:154::-;30742:6;30737:3;30732;30719:30;30804:1;30795:6;30790:3;30786:16;30779:27;30658:154;;;:::o;30818:307::-;30886:1;30896:113;30910:6;30907:1;30904:13;30896:113;;;30995:1;30990:3;30986:11;30980:18;30976:1;30971:3;30967:11;30960:39;30932:2;30929:1;30925:10;30920:15;;30896:113;;;31027:6;31024:1;31021:13;31018:101;;;31107:1;31098:6;31093:3;31089:16;31082:27;31018:101;30867:258;30818:307;;;:::o;31131:320::-;31175:6;31212:1;31206:4;31202:12;31192:22;;31259:1;31253:4;31249:12;31280:18;31270:81;;31336:4;31328:6;31324:17;31314:27;;31270:81;31398:2;31390:6;31387:14;31367:18;31364:38;31361:84;;;31417:18;;:::i;:::-;31361:84;31182:269;31131:320;;;:::o;31457:281::-;31540:27;31562:4;31540:27;:::i;:::-;31532:6;31528:40;31670:6;31658:10;31655:22;31634:18;31622:10;31619:34;31616:62;31613:88;;;31681:18;;:::i;:::-;31613:88;31721:10;31717:2;31710:22;31500:238;31457:281;;:::o;31744:233::-;31783:3;31806:24;31824:5;31806:24;:::i;:::-;31797:33;;31852:66;31845:5;31842:77;31839:103;;;31922:18;;:::i;:::-;31839:103;31969:1;31962:5;31958:13;31951:20;;31744:233;;;:::o;31983:176::-;32015:1;32032:20;32050:1;32032:20;:::i;:::-;32027:25;;32066:20;32084:1;32066:20;:::i;:::-;32061:25;;32105:1;32095:35;;32110:18;;:::i;:::-;32095:35;32151:1;32148;32144:9;32139:14;;31983:176;;;;:::o;32165:180::-;32213:77;32210:1;32203:88;32310:4;32307:1;32300:15;32334:4;32331:1;32324:15;32351:180;32399:77;32396:1;32389:88;32496:4;32493:1;32486:15;32520:4;32517:1;32510:15;32537:180;32585:77;32582:1;32575:88;32682:4;32679:1;32672:15;32706:4;32703:1;32696:15;32723:180;32771:77;32768:1;32761:88;32868:4;32865:1;32858:15;32892:4;32889:1;32882:15;32909:180;32957:77;32954:1;32947:88;33054:4;33051:1;33044:15;33078:4;33075:1;33068:15;33095:180;33143:77;33140:1;33133:88;33240:4;33237:1;33230:15;33264:4;33261:1;33254:15;33281:117;33390:1;33387;33380:12;33404:117;33513:1;33510;33503:12;33527:117;33636:1;33633;33626:12;33650:117;33759:1;33756;33749:12;33773:117;33882:1;33879;33872:12;33896:102;33937:6;33988:2;33984:7;33979:2;33972:5;33968:14;33964:28;33954:38;;33896:102;;;:::o;34004:223::-;34144:34;34140:1;34132:6;34128:14;34121:58;34213:6;34208:2;34200:6;34196:15;34189:31;34004:223;:::o;34233:173::-;34373:25;34369:1;34361:6;34357:14;34350:49;34233:173;:::o;34412:225::-;34552:34;34548:1;34540:6;34536:14;34529:58;34621:8;34616:2;34608:6;34604:15;34597:33;34412:225;:::o;34643:181::-;34783:33;34779:1;34771:6;34767:14;34760:57;34643:181;:::o;34830:174::-;34970:26;34966:1;34958:6;34954:14;34947:50;34830:174;:::o;35010:180::-;35150:32;35146:1;35138:6;35134:14;35127:56;35010:180;:::o;35196:155::-;35336:7;35332:1;35324:6;35320:14;35313:31;35196:155;:::o;35357:182::-;35497:34;35493:1;35485:6;35481:14;35474:58;35357:182;:::o;35545:169::-;35685:21;35681:1;35673:6;35669:14;35662:45;35545:169;:::o;35720:182::-;35860:34;35856:1;35848:6;35844:14;35837:58;35720:182;:::o;35908:114::-;;:::o;36028:166::-;36168:18;36164:1;36156:6;36152:14;36145:42;36028:166;:::o;36200:170::-;36340:22;36336:1;36328:6;36324:14;36317:46;36200:170;:::o;36376:181::-;36516:33;36512:1;36504:6;36500:14;36493:57;36376:181;:::o;36563:166::-;36703:18;36699:1;36691:6;36687:14;36680:42;36563:166;:::o;36735:122::-;36808:24;36826:5;36808:24;:::i;:::-;36801:5;36798:35;36788:63;;36847:1;36844;36837:12;36788:63;36735:122;:::o;36863:116::-;36933:21;36948:5;36933:21;:::i;:::-;36926:5;36923:32;36913:60;;36969:1;36966;36959:12;36913:60;36863:116;:::o;36985:122::-;37058:24;37076:5;37058:24;:::i;:::-;37051:5;37048:35;37038:63;;37097:1;37094;37087:12;37038:63;36985:122;:::o;37113:120::-;37185:23;37202:5;37185:23;:::i;:::-;37178:5;37175:34;37165:62;;37223:1;37220;37213:12;37165:62;37113:120;:::o;37239:122::-;37312:24;37330:5;37312:24;:::i;:::-;37305:5;37302:35;37292:63;;37351:1;37348;37341:12;37292:63;37239:122;:::o

Swarm Source

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