ETH Price: $2,577.84 (-2.37%)
Gas: 7 Gwei

Token

Metaverse Water Limited FTX Edition (MW x FTX)
 

Overview

Max Total Supply

10 MW x FTX

Holders

8

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A
Filtered by Token Holder
jos3ph.eth
Balance
3 MW x FTX
0xc09c7f2f3e4d33bb940405b6f6b1f5f56ba7ebaa
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:
VendingMachine

Compiler Version
v0.8.7+commit.e28d00a7

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

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

// SPDX-License-Identifier: MIT

// File: @openzeppelin/contracts/token/ERC20/IERC20.sol


// OpenZeppelin Contracts (last updated v4.6.0) (token/ERC20/IERC20.sol)

pragma solidity ^0.8.0;

/**
 * @dev Interface of the ERC20 standard as defined in the EIP.
 */
interface IERC20 {
    /**
     * @dev Emitted when `value` tokens are moved from one account (`from`) to
     * another (`to`).
     *
     * Note that `value` may be zero.
     */
    event Transfer(address indexed from, address indexed to, uint256 value);

    /**
     * @dev Emitted when the allowance of a `spender` for an `owner` is set by
     * a call to {approve}. `value` is the new allowance.
     */
    event Approval(address indexed owner, address indexed spender, uint256 value);

    /**
     * @dev Returns the amount of tokens in existence.
     */
    function totalSupply() external view returns (uint256);

    /**
     * @dev Returns the amount of tokens owned by `account`.
     */
    function balanceOf(address account) external view returns (uint256);

    /**
     * @dev Moves `amount` tokens from the caller's account to `to`.
     *
     * Returns a boolean value indicating whether the operation succeeded.
     *
     * Emits a {Transfer} event.
     */
    function transfer(address to, uint256 amount) external returns (bool);

    /**
     * @dev Returns the remaining number of tokens that `spender` will be
     * allowed to spend on behalf of `owner` through {transferFrom}. This is
     * zero by default.
     *
     * This value changes when {approve} or {transferFrom} are called.
     */
    function allowance(address owner, address spender) external view returns (uint256);

    /**
     * @dev Sets `amount` as the allowance of `spender` over the caller's tokens.
     *
     * Returns a boolean value indicating whether the operation succeeded.
     *
     * IMPORTANT: Beware that changing an allowance with this method brings the risk
     * that someone may use both the old and the new allowance by unfortunate
     * transaction ordering. One possible solution to mitigate this race
     * condition is to first reduce the spender's allowance to 0 and set the
     * desired value afterwards:
     * https://github.com/ethereum/EIPs/issues/20#issuecomment-263524729
     *
     * Emits an {Approval} event.
     */
    function approve(address spender, uint256 amount) external returns (bool);

    /**
     * @dev Moves `amount` tokens from `from` to `to` using the
     * allowance mechanism. `amount` is then deducted from the caller's
     * allowance.
     *
     * Returns a boolean value indicating whether the operation succeeded.
     *
     * Emits a {Transfer} event.
     */
    function transferFrom(
        address from,
        address to,
        uint256 amount
    ) external returns (bool);
}

// File: @openzeppelin/contracts/interfaces/IERC20.sol


// OpenZeppelin Contracts v4.4.1 (interfaces/IERC20.sol)

pragma solidity ^0.8.0;


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


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

pragma solidity ^0.8.0;

/**
 * @title Counters
 * @author Matt Condon (@shrugs)
 * @dev Provides counters that can only be incremented, decremented or reset. This can be used e.g. to track the number
 * of elements in a mapping, issuing ERC721 ids, or counting request ids.
 *
 * Include with `using Counters for Counters.Counter;`
 */
library Counters {
    struct Counter {
        // This variable should never be directly accessed by users of the library: interactions must be restricted to
        // the library's function. As of Solidity v0.5.2, this cannot be enforced, though there is a proposal to add
        // this feature: see https://github.com/ethereum/solidity/issues/4637
        uint256 _value; // default: 0
    }

    function current(Counter storage counter) internal view returns (uint256) {
        return counter._value;
    }

    function increment(Counter storage counter) internal {
        unchecked {
            counter._value += 1;
        }
    }

    function decrement(Counter storage counter) internal {
        uint256 value = counter._value;
        require(value > 0, "Counter: decrement overflow");
        unchecked {
            counter._value = value - 1;
        }
    }

    function reset(Counter storage counter) internal {
        counter._value = 0;
    }
}

// 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/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: @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: @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 (last updated v4.6.0) (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 `IERC721Receiver.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 (last updated v4.6.0) (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`.
     *
     * 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;

    /**
     * @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 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 the account approved for `tokenId` token.
     *
     * Requirements:
     *
     * - `tokenId` must exist.
     */
    function getApproved(uint256 tokenId) external view returns (address operator);

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

// 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/token/ERC721/ERC721.sol


// OpenZeppelin Contracts (last updated v4.6.0) (token/ERC721/ERC721.sol)

pragma solidity ^0.8.0;








/**
 * @dev Implementation of https://eips.ethereum.org/EIPS/eip-721[ERC721] Non-Fungible Token Standard, including
 * the Metadata extension, but not including the Enumerable extension, which is available separately as
 * {ERC721Enumerable}.
 */
contract ERC721 is Context, ERC165, IERC721, IERC721Metadata {
    using Address for address;
    using Strings for uint256;

    // Token name
    string private _name;

    // Token symbol
    string private _symbol;

    // Mapping from token ID to owner address
    mapping(uint256 => address) private _owners;

    // Mapping owner address to token count
    mapping(address => uint256) private _balances;

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

    /**
     * @dev Initializes the contract by setting a `name` and a `symbol` to the token collection.
     */
    constructor(string memory name_, string memory symbol_) {
        _name = name_;
        _symbol = symbol_;
    }

    /**
     * @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 virtual override returns (uint256) {
        require(owner != address(0), "ERC721: balance query for the zero address");
        return _balances[owner];
    }

    /**
     * @dev See {IERC721-ownerOf}.
     */
    function ownerOf(uint256 tokenId) public view virtual override returns (address) {
        address owner = _owners[tokenId];
        require(owner != address(0), "ERC721: owner query for nonexistent token");
        return owner;
    }

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

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

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

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

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

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

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

        _approve(to, tokenId);
    }

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

        return _tokenApprovals[tokenId];
    }

    /**
     * @dev See {IERC721-setApprovalForAll}.
     */
    function setApprovalForAll(address operator, bool approved) public virtual override {
        _setApprovalForAll(_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 {
        //solhint-disable-next-line max-line-length
        require(_isApprovedOrOwner(_msgSender(), tokenId), "ERC721: transfer caller is not owner nor approved");

        _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 {
        require(_isApprovedOrOwner(_msgSender(), tokenId), "ERC721: transfer caller is not owner nor approved");
        _safeTransfer(from, to, tokenId, _data);
    }

    /**
     * @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.
     *
     * `_data` is additional data, it has no specified format and it is sent in call to `to`.
     *
     * This internal function is equivalent to {safeTransferFrom}, and can be used to e.g.
     * implement alternative mechanisms to perform token transfer, such as signature-based.
     *
     * Requirements:
     *
     * - `from` cannot be the zero address.
     * - `to` cannot be the zero address.
     * - `tokenId` token must exist and be owned by `from`.
     * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer.
     *
     * Emits a {Transfer} event.
     */
    function _safeTransfer(
        address from,
        address to,
        uint256 tokenId,
        bytes memory _data
    ) internal virtual {
        _transfer(from, to, tokenId);
        require(_checkOnERC721Received(from, to, tokenId, _data), "ERC721: transfer to non ERC721Receiver implementer");
    }

    /**
     * @dev Returns whether `tokenId` exists.
     *
     * Tokens can be managed by their owner or approved accounts via {approve} or {setApprovalForAll}.
     *
     * Tokens start existing when they are minted (`_mint`),
     * and stop existing when they are burned (`_burn`).
     */
    function _exists(uint256 tokenId) internal view virtual returns (bool) {
        return _owners[tokenId] != address(0);
    }

    /**
     * @dev Returns whether `spender` is allowed to manage `tokenId`.
     *
     * Requirements:
     *
     * - `tokenId` must exist.
     */
    function _isApprovedOrOwner(address spender, uint256 tokenId) internal view virtual returns (bool) {
        require(_exists(tokenId), "ERC721: operator query for nonexistent token");
        address owner = ERC721.ownerOf(tokenId);
        return (spender == owner || isApprovedForAll(owner, spender) || getApproved(tokenId) == spender);
    }

    /**
     * @dev Safely mints `tokenId` and transfers it to `to`.
     *
     * Requirements:
     *
     * - `tokenId` must not exist.
     * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer.
     *
     * Emits a {Transfer} event.
     */
    function _safeMint(address to, uint256 tokenId) internal virtual {
        _safeMint(to, tokenId, "");
    }

    /**
     * @dev Same as {xref-ERC721-_safeMint-address-uint256-}[`_safeMint`], with an additional `data` parameter which is
     * forwarded in {IERC721Receiver-onERC721Received} to contract recipients.
     */
    function _safeMint(
        address to,
        uint256 tokenId,
        bytes memory _data
    ) internal virtual {
        _mint(to, tokenId);
        require(
            _checkOnERC721Received(address(0), to, tokenId, _data),
            "ERC721: transfer to non ERC721Receiver implementer"
        );
    }

    /**
     * @dev Mints `tokenId` and transfers it to `to`.
     *
     * WARNING: Usage of this method is discouraged, use {_safeMint} whenever possible
     *
     * Requirements:
     *
     * - `tokenId` must not exist.
     * - `to` cannot be the zero address.
     *
     * Emits a {Transfer} event.
     */
    function _mint(address to, uint256 tokenId) internal virtual {
        require(to != address(0), "ERC721: mint to the zero address");
        require(!_exists(tokenId), "ERC721: token already minted");

        _beforeTokenTransfer(address(0), to, tokenId);

        _balances[to] += 1;
        _owners[tokenId] = to;

        emit Transfer(address(0), to, tokenId);

        _afterTokenTransfer(address(0), to, tokenId);
    }

    /**
     * @dev Destroys `tokenId`.
     * The approval is cleared when the token is burned.
     *
     * Requirements:
     *
     * - `tokenId` must exist.
     *
     * Emits a {Transfer} event.
     */
    function _burn(uint256 tokenId) internal virtual {
        address owner = ERC721.ownerOf(tokenId);

        _beforeTokenTransfer(owner, address(0), tokenId);

        // Clear approvals
        _approve(address(0), tokenId);

        _balances[owner] -= 1;
        delete _owners[tokenId];

        emit Transfer(owner, address(0), tokenId);

        _afterTokenTransfer(owner, address(0), tokenId);
    }

    /**
     * @dev Transfers `tokenId` from `from` to `to`.
     *  As opposed to {transferFrom}, this imposes no restrictions on msg.sender.
     *
     * 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
    ) internal virtual {
        require(ERC721.ownerOf(tokenId) == from, "ERC721: transfer from incorrect owner");
        require(to != address(0), "ERC721: transfer to the zero address");

        _beforeTokenTransfer(from, to, tokenId);

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

        _balances[from] -= 1;
        _balances[to] += 1;
        _owners[tokenId] = to;

        emit Transfer(from, to, tokenId);

        _afterTokenTransfer(from, to, tokenId);
    }

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

    /**
     * @dev Approve `operator` to operate on all of `owner` tokens
     *
     * Emits a {ApprovalForAll} event.
     */
    function _setApprovalForAll(
        address owner,
        address operator,
        bool approved
    ) internal virtual {
        require(owner != operator, "ERC721: approve to caller");
        _operatorApprovals[owner][operator] = approved;
        emit ApprovalForAll(owner, operator, approved);
    }

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

    /**
     * @dev Hook that is called before any token transfer. This includes minting
     * and burning.
     *
     * 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, ``from``'s `tokenId` will be burned.
     * - `from` and `to` are never both zero.
     *
     * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks].
     */
    function _beforeTokenTransfer(
        address from,
        address to,
        uint256 tokenId
    ) internal virtual {}

    /**
     * @dev Hook that is called after any transfer of tokens. This includes
     * minting and burning.
     *
     * Calling conditions:
     *
     * - when `from` and `to` are both non-zero.
     * - `from` and `to` are never both zero.
     *
     * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks].
     */
    function _afterTokenTransfer(
        address from,
        address to,
        uint256 tokenId
    ) internal virtual {}
}

// File: contracts/VendingMachine.sol


pragma solidity ^0.8.4;





/// @custom:security-contact [email protected]
contract VendingMachine is ERC721, Ownable {
    using Counters for Counters.Counter;

    Counters.Counter private _tokenIdCounter;

    string public _tokenURI;
    address private vendingMachineOwner;
    uint256 private nonce;
    uint256 private stickChance;

    mapping(address => bool) public acceptedPaymentOption;
    mapping(address => uint256) public paymentOptionPrice;
    mapping(address => bool) public stuckWaterBottle;



    event newBottlesLoaded(string bottle);
    event newPaymentOption(address paymentOption, uint256 price);
    event paymentOptionRemoved(address paymentOption);
    event NotifyManagement(address stuckAddress);

    constructor(string memory _newBottles, address[] memory paymentOptionAddresses, uint256[] memory paymentOptionPrices, address _vendingMachineOwner, uint256 _stickChance) ERC721("Metaverse Water Limited FTX Edition", "MW x FTX") {
        newBottles(_newBottles);
        
        for( uint256 i = 0; i < paymentOptionAddresses.length; i++){
            maintenanceAddPaymentOption(paymentOptionAddresses[i],paymentOptionPrices[i]);
        }

        vendingMachineOwner = _vendingMachineOwner;
        stickChance = _stickChance;
    }

    function vendWater(address to, address paymentToken) public {
        require(acceptedPaymentOption[paymentToken], "Sorry, we don't accept this form of payment");
        require(paymentOptionPrice[paymentToken] != 0, "Sorry, please pay the correct price");
        
        uint randNum = randomInt();
        if (randNum != 69){
            IERC20(paymentToken).transferFrom(msg.sender,vendingMachineOwner, paymentOptionPrice[paymentToken]);
            uint256 tokenId = _tokenIdCounter.current();
            _tokenIdCounter.increment();
            _safeMint(to, tokenId);

        }
        else {
            stuckWaterBottle[msg.sender] = true;
            emit NotifyManagement(msg.sender);
        }

        
    }

    function bangOnGlass() public {
        require(stuckWaterBottle[msg.sender] == true, "No bottle to unstick, try inserting coins");
        uint randInt = randomInt();
        if (randInt != 69){
            maintenanceVendWater(msg.sender);
            stuckWaterBottle[msg.sender] = false;
            emit NotifyManagement(msg.sender);
        }

    }


    function maintenanceVendWater(address to) public onlyOwner {
        uint256 tokenId = _tokenIdCounter.current();
        _tokenIdCounter.increment();
        _safeMint(to, tokenId);
    }

    function maintenanceAddPaymentOption(address paymentOption, uint256 _paymentOptionPrice) public onlyOwner {
        acceptedPaymentOption[paymentOption] = true;
        //store correct price based on decimals (DAI, USDC, USDT, etc)
        paymentOptionPrice[paymentOption] = _paymentOptionPrice;
        emit newPaymentOption(paymentOption,_paymentOptionPrice);
    }

    function maintenanceUnstickBottle(address stuckAddress) public onlyOwner {
        maintenanceVendWater(stuckAddress);
        stuckWaterBottle[msg.sender] = false;
        emit NotifyManagement(msg.sender);

    }

    function maintenanceRemovePaymentOption(address paymentOption) public onlyOwner {
        acceptedPaymentOption[paymentOption] = false;
        paymentOptionPrice[paymentOption] = 0;
        emit paymentOptionRemoved(paymentOption);
    }


    function tokenURI(uint256 tokenId) public view virtual override returns (string memory) {
        return _tokenURI;
    }

    function newBottles(string memory _newBottles) public onlyOwner {
        _tokenURI = _newBottles;
        emit newBottlesLoaded(_tokenURI);
    }

    function totalSupply() public view returns (uint256 tokenSupply) {
        tokenSupply = _tokenIdCounter.current();
        return tokenSupply;
    }

    // Randomness provided by this is gameable. but gaming it provides a bad outcome, not sure why one would do so.
    function randomInt() internal returns (uint) {
        uint random = uint(keccak256(abi.encode(block.timestamp, msg.sender, nonce))) % stickChance;
        nonce++;
        return random;
    }

}

Contract Security Audit

Contract ABI

[{"inputs":[{"internalType":"string","name":"_newBottles","type":"string"},{"internalType":"address[]","name":"paymentOptionAddresses","type":"address[]"},{"internalType":"uint256[]","name":"paymentOptionPrices","type":"uint256[]"},{"internalType":"address","name":"_vendingMachineOwner","type":"address"},{"internalType":"uint256","name":"_stickChance","type":"uint256"}],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"approved","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"stuckAddress","type":"address"}],"name":"NotifyManagement","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"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"string","name":"bottle","type":"string"}],"name":"newBottlesLoaded","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"paymentOption","type":"address"},{"indexed":false,"internalType":"uint256","name":"price","type":"uint256"}],"name":"newPaymentOption","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"paymentOption","type":"address"}],"name":"paymentOptionRemoved","type":"event"},{"inputs":[],"name":"_tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"acceptedPaymentOption","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":[],"name":"bangOnGlass","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"paymentOption","type":"address"},{"internalType":"uint256","name":"_paymentOptionPrice","type":"uint256"}],"name":"maintenanceAddPaymentOption","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"paymentOption","type":"address"}],"name":"maintenanceRemovePaymentOption","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"stuckAddress","type":"address"}],"name":"maintenanceUnstickBottle","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"}],"name":"maintenanceVendWater","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"string","name":"_newBottles","type":"string"}],"name":"newBottles","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"paymentOptionPrice","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"_data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"stuckWaterBottle","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"tokenSupply","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":[{"internalType":"address","name":"to","type":"address"},{"internalType":"address","name":"paymentToken","type":"address"}],"name":"vendWater","outputs":[],"stateMutability":"nonpayable","type":"function"}]

60806040523480156200001157600080fd5b5060405162004755380380620047558339818101604052810190620000379190620007ae565b60405180606001604052806023815260200162004732602391396040518060400160405280600881526020017f4d5720782046545800000000000000000000000000000000000000000000000081525081600090805190602001906200009f929190620004f6565b508060019080519060200190620000b8929190620004f6565b505050620000db620000cf620001af60201b60201c565b620001b760201b60201c565b620000ec856200027d60201b60201c565b60005b84518110156200015b576200014585828151811062000113576200011262000c4a565b5b602002602001015185838151811062000131576200013062000c4a565b5b60200260200101516200036260201b60201c565b8080620001529062000b9e565b915050620000ef565b5081600960006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555080600b81905550505050505062000d2f565b600033905090565b6000600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600660006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b6200028d620001af60201b60201c565b73ffffffffffffffffffffffffffffffffffffffff16620002b3620004cc60201b60201c565b73ffffffffffffffffffffffffffffffffffffffff16146200030c576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016200030390620009b9565b60405180910390fd5b806008908051906020019062000324929190620004f6565b507f14f192f64bd673b0c50dadc05fa83acf9ebe47b0dad7bdc275be00cea4466928600860405162000357919062000995565b60405180910390a150565b62000372620001af60201b60201c565b73ffffffffffffffffffffffffffffffffffffffff1662000398620004cc60201b60201c565b73ffffffffffffffffffffffffffffffffffffffff1614620003f1576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620003e890620009b9565b60405180910390fd5b6001600c60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff02191690831515021790555080600d60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055507f1e911ced6a7cf8d0665a44096e7028f4885ccdb36cdb15b8dfa166d8f0e467af8282604051620004c092919062000968565b60405180910390a15050565b6000600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b828054620005049062000b32565b90600052602060002090601f01602090048101928262000528576000855562000574565b82601f106200054357805160ff191683800117855562000574565b8280016001018555821562000574579182015b828111156200057357825182559160200191906001019062000556565b5b50905062000583919062000587565b5090565b5b80821115620005a257600081600090555060010162000588565b5090565b6000620005bd620005b78462000a04565b620009db565b90508083825260208201905082856020860282011115620005e357620005e262000cad565b5b60005b85811015620006175781620005fc8882620006e7565b845260208401935060208301925050600181019050620005e6565b5050509392505050565b600062000638620006328462000a33565b620009db565b905080838252602082019050828560208602820111156200065e576200065d62000cad565b5b60005b8581101562000692578162000677888262000797565b84526020840193506020830192505060018101905062000661565b5050509392505050565b6000620006b3620006ad8462000a62565b620009db565b905082815260208101848484011115620006d257620006d162000cb2565b5b620006df84828562000afc565b509392505050565b600081519050620006f88162000cfb565b92915050565b600082601f83011262000716576200071562000ca8565b5b815162000728848260208601620005a6565b91505092915050565b600082601f83011262000749576200074862000ca8565b5b81516200075b84826020860162000621565b91505092915050565b600082601f8301126200077c576200077b62000ca8565b5b81516200078e8482602086016200069c565b91505092915050565b600081519050620007a88162000d15565b92915050565b600080600080600060a08688031215620007cd57620007cc62000cbc565b5b600086015167ffffffffffffffff811115620007ee57620007ed62000cb7565b5b620007fc8882890162000764565b955050602086015167ffffffffffffffff81111562000820576200081f62000cb7565b5b6200082e88828901620006fe565b945050604086015167ffffffffffffffff81111562000852576200085162000cb7565b5b620008608882890162000731565b93505060606200087388828901620006e7565b9250506080620008868882890162000797565b9150509295509295909350565b6200089e8162000abe565b82525050565b60008154620008b38162000b32565b620008bf818662000aad565b94506001821660008114620008dd5760018114620008f05762000927565b60ff198316865260208601935062000927565b620008fb8562000a98565b60005b838110156200091f57815481890152600182019150602081019050620008fe565b808801955050505b50505092915050565b60006200093f60208362000aad565b91506200094c8262000cd2565b602082019050919050565b620009628162000af2565b82525050565b60006040820190506200097f600083018562000893565b6200098e602083018462000957565b9392505050565b60006020820190508181036000830152620009b18184620008a4565b905092915050565b60006020820190508181036000830152620009d48162000930565b9050919050565b6000620009e7620009fa565b9050620009f5828262000b68565b919050565b6000604051905090565b600067ffffffffffffffff82111562000a225762000a2162000c79565b5b602082029050602081019050919050565b600067ffffffffffffffff82111562000a515762000a5062000c79565b5b602082029050602081019050919050565b600067ffffffffffffffff82111562000a805762000a7f62000c79565b5b62000a8b8262000cc1565b9050602081019050919050565b60008190508160005260206000209050919050565b600082825260208201905092915050565b600062000acb8262000ad2565b9050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b60005b8381101562000b1c57808201518184015260208101905062000aff565b8381111562000b2c576000848401525b50505050565b6000600282049050600182168062000b4b57607f821691505b6020821081141562000b625762000b6162000c1b565b5b50919050565b62000b738262000cc1565b810181811067ffffffffffffffff8211171562000b955762000b9462000c79565b5b80604052505050565b600062000bab8262000af2565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82141562000be15762000be062000bec565b5b600182019050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600080fd5b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b62000d068162000abe565b811462000d1257600080fd5b50565b62000d208162000af2565b811462000d2c57600080fd5b50565b6139f38062000d3f6000396000f3fe608060405234801561001057600080fd5b50600436106101c45760003560e01c80637db4b3cd116100f9578063c203e61111610097578063d15c2de011610071578063d15c2de0146104ef578063e985e9c51461050b578063f2fde38b1461053b578063f744b52114610557576101c4565b8063c203e61114610487578063c87b56dd146104a3578063cf570770146104d3576101c4565b80639bb459b1116100d35780639bb459b114610401578063a22cb46514610431578063b4ce37d21461044d578063b88d4fde1461046b576101c4565b80637db4b3cd146103a95780638da5cb5b146103c557806395d89b41146103e3576101c4565b806323f12dbe116101665780636352211e116101405780636352211e14610323578063651e6e671461035357806370a082311461036f578063715018a61461039f576101c4565b806323f12dbe146102a757806342842e0e146102d75780634729945f146102f3576101c4565b8063095ea7b3116101a2578063095ea7b31461024757806318160ddd146102635780631d9ee1691461028157806323b872dd1461028b576101c4565b806301ffc9a7146101c957806306fdde03146101f9578063081812fc14610217575b600080fd5b6101e360048036038101906101de919061287c565b610573565b6040516101f09190612da8565b60405180910390f35b610201610655565b60405161020e9190612dc3565b60405180910390f35b610231600480360381019061022c919061291f565b6106e7565b60405161023e9190612ce1565b60405180910390f35b610261600480360381019061025c919061280f565b61076c565b005b61026b610884565b6040516102789190613047565b60405180910390f35b610289610895565b005b6102a560048036038101906102a091906126f9565b6109d8565b005b6102c160048036038101906102bc919061268c565b610a38565b6040516102ce9190613047565b60405180910390f35b6102f160048036038101906102ec91906126f9565b610a50565b005b61030d6004803603810190610308919061268c565b610a70565b60405161031a9190612da8565b60405180910390f35b61033d6004803603810190610338919061291f565b610a90565b60405161034a9190612ce1565b60405180910390f35b61036d600480360381019061036891906128d6565b610b42565b005b6103896004803603810190610384919061268c565b610c10565b6040516103969190613047565b60405180910390f35b6103a7610cc8565b005b6103c360048036038101906103be919061268c565b610d50565b005b6103cd610df2565b6040516103da9190612ce1565b60405180910390f35b6103eb610e1c565b6040516103f89190612dc3565b60405180910390f35b61041b6004803603810190610416919061268c565b610eae565b6040516104289190612da8565b60405180910390f35b61044b600480360381019061044691906127cf565b610ece565b005b610455610ee4565b6040516104629190612dc3565b60405180910390f35b6104856004803603810190610480919061274c565b610f72565b005b6104a1600480360381019061049c919061268c565b610fd4565b005b6104bd60048036038101906104b8919061291f565b611127565b6040516104ca9190612dc3565b60405180910390f35b6104ed60048036038101906104e8919061268c565b6111bb565b005b610509600480360381019061050491906126b9565b6112d2565b005b610525600480360381019061052091906126b9565b6115a3565b6040516105329190612da8565b60405180910390f35b6105556004803603810190610550919061268c565b611637565b005b610571600480360381019061056c919061280f565b61172f565b005b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916148061063e57507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b8061064e575061064d82611884565b5b9050919050565b606060008054610664906132ad565b80601f0160208091040260200160405190810160405280929190818152602001828054610690906132ad565b80156106dd5780601f106106b2576101008083540402835291602001916106dd565b820191906000526020600020905b8154815290600101906020018083116106c057829003601f168201915b5050505050905090565b60006106f2826118ee565b610731576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161072890612f87565b60405180910390fd5b6004600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b600061077782610a90565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614156107e8576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016107df90613007565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff1661080761195a565b73ffffffffffffffffffffffffffffffffffffffff16148061083657506108358161083061195a565b6115a3565b5b610875576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161086c90612ee7565b60405180910390fd5b61087f8383611962565b505050565b60006108906007611a1b565b905090565b60011515600e60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16151514610928576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161091f90612f47565b60405180910390fd5b6000610932611a29565b9050604581146109d55761094533610d50565b6000600e60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055507fa74d92a240ab2715747af6a53fec23b1540fe87f967dc4c4f839473c7325fa2d336040516109cc9190612ce1565b60405180910390a15b50565b6109e96109e361195a565b82611a8a565b610a28576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a1f90613027565b60405180910390fd5b610a33838383611b68565b505050565b600d6020528060005260406000206000915090505481565b610a6b83838360405180602001604052806000815250610f72565b505050565b600c6020528060005260406000206000915054906101000a900460ff1681565b6000806002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415610b39576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b3090612f27565b60405180910390fd5b80915050919050565b610b4a61195a565b73ffffffffffffffffffffffffffffffffffffffff16610b68610df2565b73ffffffffffffffffffffffffffffffffffffffff1614610bbe576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610bb590612fa7565b60405180910390fd5b8060089080519060200190610bd492919061248b565b507f14f192f64bd673b0c50dadc05fa83acf9ebe47b0dad7bdc275be00cea44669286008604051610c059190612de5565b60405180910390a150565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415610c81576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c7890612f07565b60405180910390fd5b600360008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b610cd061195a565b73ffffffffffffffffffffffffffffffffffffffff16610cee610df2565b73ffffffffffffffffffffffffffffffffffffffff1614610d44576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d3b90612fa7565b60405180910390fd5b610d4e6000611dcf565b565b610d5861195a565b73ffffffffffffffffffffffffffffffffffffffff16610d76610df2565b73ffffffffffffffffffffffffffffffffffffffff1614610dcc576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610dc390612fa7565b60405180910390fd5b6000610dd86007611a1b565b9050610de46007611e95565b610dee8282611eab565b5050565b6000600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b606060018054610e2b906132ad565b80601f0160208091040260200160405190810160405280929190818152602001828054610e57906132ad565b8015610ea45780601f10610e7957610100808354040283529160200191610ea4565b820191906000526020600020905b815481529060010190602001808311610e8757829003601f168201915b5050505050905090565b600e6020528060005260406000206000915054906101000a900460ff1681565b610ee0610ed961195a565b8383611ec9565b5050565b60088054610ef1906132ad565b80601f0160208091040260200160405190810160405280929190818152602001828054610f1d906132ad565b8015610f6a5780601f10610f3f57610100808354040283529160200191610f6a565b820191906000526020600020905b815481529060010190602001808311610f4d57829003601f168201915b505050505081565b610f83610f7d61195a565b83611a8a565b610fc2576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610fb990613027565b60405180910390fd5b610fce84848484612036565b50505050565b610fdc61195a565b73ffffffffffffffffffffffffffffffffffffffff16610ffa610df2565b73ffffffffffffffffffffffffffffffffffffffff1614611050576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161104790612fa7565b60405180910390fd5b6000600c60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055506000600d60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055507f197be6be1ba9d534a44c46f3448f5a555b883ac35d22e1920ceb962288709eb48160405161111c9190612ce1565b60405180910390a150565b606060088054611136906132ad565b80601f0160208091040260200160405190810160405280929190818152602001828054611162906132ad565b80156111af5780601f10611184576101008083540402835291602001916111af565b820191906000526020600020905b81548152906001019060200180831161119257829003601f168201915b50505050509050919050565b6111c361195a565b73ffffffffffffffffffffffffffffffffffffffff166111e1610df2565b73ffffffffffffffffffffffffffffffffffffffff1614611237576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161122e90612fa7565b60405180910390fd5b61124081610d50565b6000600e60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055507fa74d92a240ab2715747af6a53fec23b1540fe87f967dc4c4f839473c7325fa2d336040516112c79190612ce1565b60405180910390a150565b600c60008273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1661135e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161135590612fe7565b60405180910390fd5b6000600d60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205414156113e1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113d890612fc7565b60405180910390fd5b60006113eb611a29565b90506045811461150e578173ffffffffffffffffffffffffffffffffffffffff166323b872dd33600960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16600d60008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546040518463ffffffff1660e01b815260040161149393929190612cfc565b602060405180830381600087803b1580156114ad57600080fd5b505af11580156114c1573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906114e5919061284f565b5060006114f26007611a1b565b90506114fe6007611e95565b6115088482611eab565b5061159e565b6001600e60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055507fa74d92a240ab2715747af6a53fec23b1540fe87f967dc4c4f839473c7325fa2d336040516115959190612ce1565b60405180910390a15b505050565b6000600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b61163f61195a565b73ffffffffffffffffffffffffffffffffffffffff1661165d610df2565b73ffffffffffffffffffffffffffffffffffffffff16146116b3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116aa90612fa7565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415611723576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161171a90612e27565b60405180910390fd5b61172c81611dcf565b50565b61173761195a565b73ffffffffffffffffffffffffffffffffffffffff16611755610df2565b73ffffffffffffffffffffffffffffffffffffffff16146117ab576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117a290612fa7565b60405180910390fd5b6001600c60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff02191690831515021790555080600d60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055507f1e911ced6a7cf8d0665a44096e7028f4885ccdb36cdb15b8dfa166d8f0e467af8282604051611878929190612d7f565b60405180910390a15050565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b60008073ffffffffffffffffffffffffffffffffffffffff166002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614159050919050565b600033905090565b816004600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff166119d583610a90565b73ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b600081600001549050919050565b600080600b544233600a54604051602001611a4693929190613062565b6040516020818303038152906040528051906020012060001c611a699190613359565b9050600a6000815480929190611a7e90613310565b91905055508091505090565b6000611a95826118ee565b611ad4576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611acb90612ec7565b60405180910390fd5b6000611adf83610a90565b90508073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161480611b215750611b2081856115a3565b5b80611b5f57508373ffffffffffffffffffffffffffffffffffffffff16611b47846106e7565b73ffffffffffffffffffffffffffffffffffffffff16145b91505092915050565b8273ffffffffffffffffffffffffffffffffffffffff16611b8882610a90565b73ffffffffffffffffffffffffffffffffffffffff1614611bde576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611bd590612e47565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611c4e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c4590612e87565b60405180910390fd5b611c59838383612092565b611c64600082611962565b6001600360008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254611cb491906131c3565b925050819055506001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254611d0b919061316d565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4611dca838383612097565b505050565b6000600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600660006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b6001816000016000828254019250508190555050565b611ec582826040518060200160405280600081525061209c565b5050565b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415611f38576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f2f90612ea7565b60405180910390fd5b80600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31836040516120299190612da8565b60405180910390a3505050565b612041848484611b68565b61204d848484846120f7565b61208c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161208390612e07565b60405180910390fd5b50505050565b505050565b505050565b6120a6838361228e565b6120b360008484846120f7565b6120f2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016120e990612e07565b60405180910390fd5b505050565b60006121188473ffffffffffffffffffffffffffffffffffffffff16612468565b15612281578373ffffffffffffffffffffffffffffffffffffffff1663150b7a0261214161195a565b8786866040518563ffffffff1660e01b81526004016121639493929190612d33565b602060405180830381600087803b15801561217d57600080fd5b505af19250505080156121ae57506040513d601f19601f820116820180604052508101906121ab91906128a9565b60015b612231573d80600081146121de576040519150601f19603f3d011682016040523d82523d6000602084013e6121e3565b606091505b50600081511415612229576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161222090612e07565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050612286565b600190505b949350505050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156122fe576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016122f590612f67565b60405180910390fd5b612307816118ee565b15612347576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161233e90612e67565b60405180910390fd5b61235360008383612092565b6001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546123a3919061316d565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a461246460008383612097565b5050565b6000808273ffffffffffffffffffffffffffffffffffffffff163b119050919050565b828054612497906132ad565b90600052602060002090601f0160209004810192826124b95760008555612500565b82601f106124d257805160ff1916838001178555612500565b82800160010185558215612500579182015b828111156124ff5782518255916020019190600101906124e4565b5b50905061250d9190612511565b5090565b5b8082111561252a576000816000905550600101612512565b5090565b600061254161253c846130be565b613099565b90508281526020810184848401111561255d5761255c61344b565b5b61256884828561326b565b509392505050565b600061258361257e846130ef565b613099565b90508281526020810184848401111561259f5761259e61344b565b5b6125aa84828561326b565b509392505050565b6000813590506125c181613961565b92915050565b6000813590506125d681613978565b92915050565b6000815190506125eb81613978565b92915050565b6000813590506126008161398f565b92915050565b6000815190506126158161398f565b92915050565b600082601f8301126126305761262f613446565b5b813561264084826020860161252e565b91505092915050565b600082601f83011261265e5761265d613446565b5b813561266e848260208601612570565b91505092915050565b600081359050612686816139a6565b92915050565b6000602082840312156126a2576126a1613455565b5b60006126b0848285016125b2565b91505092915050565b600080604083850312156126d0576126cf613455565b5b60006126de858286016125b2565b92505060206126ef858286016125b2565b9150509250929050565b60008060006060848603121561271257612711613455565b5b6000612720868287016125b2565b9350506020612731868287016125b2565b925050604061274286828701612677565b9150509250925092565b6000806000806080858703121561276657612765613455565b5b6000612774878288016125b2565b9450506020612785878288016125b2565b935050604061279687828801612677565b925050606085013567ffffffffffffffff8111156127b7576127b6613450565b5b6127c38782880161261b565b91505092959194509250565b600080604083850312156127e6576127e5613455565b5b60006127f4858286016125b2565b9250506020612805858286016125c7565b9150509250929050565b6000806040838503121561282657612825613455565b5b6000612834858286016125b2565b925050602061284585828601612677565b9150509250929050565b60006020828403121561286557612864613455565b5b6000612873848285016125dc565b91505092915050565b60006020828403121561289257612891613455565b5b60006128a0848285016125f1565b91505092915050565b6000602082840312156128bf576128be613455565b5b60006128cd84828501612606565b91505092915050565b6000602082840312156128ec576128eb613455565b5b600082013567ffffffffffffffff81111561290a57612909613450565b5b61291684828501612649565b91505092915050565b60006020828403121561293557612934613455565b5b600061294384828501612677565b91505092915050565b612955816131f7565b82525050565b61296481613209565b82525050565b600061297582613135565b61297f818561314b565b935061298f81856020860161327a565b6129988161345a565b840191505092915050565b60006129ae82613140565b6129b8818561315c565b93506129c881856020860161327a565b6129d18161345a565b840191505092915050565b600081546129e9816132ad565b6129f3818661315c565b94506001821660008114612a0e5760018114612a2057612a53565b60ff1983168652602086019350612a53565b612a2985613120565b60005b83811015612a4b57815481890152600182019150602081019050612a2c565b808801955050505b50505092915050565b6000612a6960328361315c565b9150612a748261346b565b604082019050919050565b6000612a8c60268361315c565b9150612a97826134ba565b604082019050919050565b6000612aaf60258361315c565b9150612aba82613509565b604082019050919050565b6000612ad2601c8361315c565b9150612add82613558565b602082019050919050565b6000612af560248361315c565b9150612b0082613581565b604082019050919050565b6000612b1860198361315c565b9150612b23826135d0565b602082019050919050565b6000612b3b602c8361315c565b9150612b46826135f9565b604082019050919050565b6000612b5e60388361315c565b9150612b6982613648565b604082019050919050565b6000612b81602a8361315c565b9150612b8c82613697565b604082019050919050565b6000612ba460298361315c565b9150612baf826136e6565b604082019050919050565b6000612bc760298361315c565b9150612bd282613735565b604082019050919050565b6000612bea60208361315c565b9150612bf582613784565b602082019050919050565b6000612c0d602c8361315c565b9150612c18826137ad565b604082019050919050565b6000612c3060208361315c565b9150612c3b826137fc565b602082019050919050565b6000612c5360238361315c565b9150612c5e82613825565b604082019050919050565b6000612c76602b8361315c565b9150612c8182613874565b604082019050919050565b6000612c9960218361315c565b9150612ca4826138c3565b604082019050919050565b6000612cbc60318361315c565b9150612cc782613912565b604082019050919050565b612cdb81613261565b82525050565b6000602082019050612cf6600083018461294c565b92915050565b6000606082019050612d11600083018661294c565b612d1e602083018561294c565b612d2b6040830184612cd2565b949350505050565b6000608082019050612d48600083018761294c565b612d55602083018661294c565b612d626040830185612cd2565b8181036060830152612d74818461296a565b905095945050505050565b6000604082019050612d94600083018561294c565b612da16020830184612cd2565b9392505050565b6000602082019050612dbd600083018461295b565b92915050565b60006020820190508181036000830152612ddd81846129a3565b905092915050565b60006020820190508181036000830152612dff81846129dc565b905092915050565b60006020820190508181036000830152612e2081612a5c565b9050919050565b60006020820190508181036000830152612e4081612a7f565b9050919050565b60006020820190508181036000830152612e6081612aa2565b9050919050565b60006020820190508181036000830152612e8081612ac5565b9050919050565b60006020820190508181036000830152612ea081612ae8565b9050919050565b60006020820190508181036000830152612ec081612b0b565b9050919050565b60006020820190508181036000830152612ee081612b2e565b9050919050565b60006020820190508181036000830152612f0081612b51565b9050919050565b60006020820190508181036000830152612f2081612b74565b9050919050565b60006020820190508181036000830152612f4081612b97565b9050919050565b60006020820190508181036000830152612f6081612bba565b9050919050565b60006020820190508181036000830152612f8081612bdd565b9050919050565b60006020820190508181036000830152612fa081612c00565b9050919050565b60006020820190508181036000830152612fc081612c23565b9050919050565b60006020820190508181036000830152612fe081612c46565b9050919050565b6000602082019050818103600083015261300081612c69565b9050919050565b6000602082019050818103600083015261302081612c8c565b9050919050565b6000602082019050818103600083015261304081612caf565b9050919050565b600060208201905061305c6000830184612cd2565b92915050565b60006060820190506130776000830186612cd2565b613084602083018561294c565b6130916040830184612cd2565b949350505050565b60006130a36130b4565b90506130af82826132df565b919050565b6000604051905090565b600067ffffffffffffffff8211156130d9576130d8613417565b5b6130e28261345a565b9050602081019050919050565b600067ffffffffffffffff82111561310a57613109613417565b5b6131138261345a565b9050602081019050919050565b60008190508160005260206000209050919050565b600081519050919050565b600081519050919050565b600082825260208201905092915050565b600082825260208201905092915050565b600061317882613261565b915061318383613261565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff038211156131b8576131b761338a565b5b828201905092915050565b60006131ce82613261565b91506131d983613261565b9250828210156131ec576131eb61338a565b5b828203905092915050565b600061320282613241565b9050919050565b60008115159050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b82818337600083830152505050565b60005b8381101561329857808201518184015260208101905061327d565b838111156132a7576000848401525b50505050565b600060028204905060018216806132c557607f821691505b602082108114156132d9576132d86133e8565b5b50919050565b6132e88261345a565b810181811067ffffffffffffffff8211171561330757613306613417565b5b80604052505050565b600061331b82613261565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82141561334e5761334d61338a565b5b600182019050919050565b600061336482613261565b915061336f83613261565b92508261337f5761337e6133b9565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b7f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560008201527f63656976657220696d706c656d656e7465720000000000000000000000000000602082015250565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a207472616e736665722066726f6d20696e636f72726563742060008201527f6f776e6572000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000600082015250565b7f4552433732313a207472616e7366657220746f20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f766520746f2063616c6c657200000000000000600082015250565b7f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760008201527f6e6572206e6f7220617070726f76656420666f7220616c6c0000000000000000602082015250565b7f4552433732313a2062616c616e636520717565727920666f7220746865207a6560008201527f726f206164647265737300000000000000000000000000000000000000000000602082015250565b7f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460008201527f656e7420746f6b656e0000000000000000000000000000000000000000000000602082015250565b7f4e6f20626f74746c6520746f20756e737469636b2c2074727920696e7365727460008201527f696e6720636f696e730000000000000000000000000000000000000000000000602082015250565b7f4552433732313a206d696e7420746f20746865207a65726f2061646472657373600082015250565b7f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f536f7272792c20706c65617365207061792074686520636f727265637420707260008201527f6963650000000000000000000000000000000000000000000000000000000000602082015250565b7f536f7272792c20776520646f6e277420616363657074207468697320666f726d60008201527f206f66207061796d656e74000000000000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f76616c20746f2063757272656e74206f776e6560008201527f7200000000000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f60008201527f776e6572206e6f7220617070726f766564000000000000000000000000000000602082015250565b61396a816131f7565b811461397557600080fd5b50565b61398181613209565b811461398c57600080fd5b50565b61399881613215565b81146139a357600080fd5b50565b6139af81613261565b81146139ba57600080fd5b5056fea26469706673582212201f77d49ce929abb5d361cd9c839dd5c957c58c0895b3b944baaeed4a977af47964736f6c634300080700334d6574617665727365205761746572204c696d69746564204654582045646974696f6e00000000000000000000000000000000000000000000000000000000000000a0000000000000000000000000000000000000000000000000000000000000014000000000000000000000000000000000000000000000000000000000000001a00000000000000000000000009c61bfa257763f5d9e86adfe6428feeb009de94e0000000000000000000000000000000000000000000000000000000000000064000000000000000000000000000000000000000000000000000000000000007468747470733a2f2f737033613662646978616132756e747462686c377636377876697365683433776a7476646e6c6a70336973736a793633357761712e617277656176652e6e65742f6b5f59504247693441616f3263776e582d7676337169524438335a4d366a61744c396f6c4a4f50623759450000000000000000000000000000000000000000000000000000000000000000000000000000000000000002000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb480000000000000000000000006b175474e89094c44da98b954eedeac495271d0f000000000000000000000000000000000000000000000000000000000000000200000000000000000000000000000000000000000000000000000000003567e000000000000000000000000000000000000000000000000030927f74c9de0000

Deployed Bytecode

0x608060405234801561001057600080fd5b50600436106101c45760003560e01c80637db4b3cd116100f9578063c203e61111610097578063d15c2de011610071578063d15c2de0146104ef578063e985e9c51461050b578063f2fde38b1461053b578063f744b52114610557576101c4565b8063c203e61114610487578063c87b56dd146104a3578063cf570770146104d3576101c4565b80639bb459b1116100d35780639bb459b114610401578063a22cb46514610431578063b4ce37d21461044d578063b88d4fde1461046b576101c4565b80637db4b3cd146103a95780638da5cb5b146103c557806395d89b41146103e3576101c4565b806323f12dbe116101665780636352211e116101405780636352211e14610323578063651e6e671461035357806370a082311461036f578063715018a61461039f576101c4565b806323f12dbe146102a757806342842e0e146102d75780634729945f146102f3576101c4565b8063095ea7b3116101a2578063095ea7b31461024757806318160ddd146102635780631d9ee1691461028157806323b872dd1461028b576101c4565b806301ffc9a7146101c957806306fdde03146101f9578063081812fc14610217575b600080fd5b6101e360048036038101906101de919061287c565b610573565b6040516101f09190612da8565b60405180910390f35b610201610655565b60405161020e9190612dc3565b60405180910390f35b610231600480360381019061022c919061291f565b6106e7565b60405161023e9190612ce1565b60405180910390f35b610261600480360381019061025c919061280f565b61076c565b005b61026b610884565b6040516102789190613047565b60405180910390f35b610289610895565b005b6102a560048036038101906102a091906126f9565b6109d8565b005b6102c160048036038101906102bc919061268c565b610a38565b6040516102ce9190613047565b60405180910390f35b6102f160048036038101906102ec91906126f9565b610a50565b005b61030d6004803603810190610308919061268c565b610a70565b60405161031a9190612da8565b60405180910390f35b61033d6004803603810190610338919061291f565b610a90565b60405161034a9190612ce1565b60405180910390f35b61036d600480360381019061036891906128d6565b610b42565b005b6103896004803603810190610384919061268c565b610c10565b6040516103969190613047565b60405180910390f35b6103a7610cc8565b005b6103c360048036038101906103be919061268c565b610d50565b005b6103cd610df2565b6040516103da9190612ce1565b60405180910390f35b6103eb610e1c565b6040516103f89190612dc3565b60405180910390f35b61041b6004803603810190610416919061268c565b610eae565b6040516104289190612da8565b60405180910390f35b61044b600480360381019061044691906127cf565b610ece565b005b610455610ee4565b6040516104629190612dc3565b60405180910390f35b6104856004803603810190610480919061274c565b610f72565b005b6104a1600480360381019061049c919061268c565b610fd4565b005b6104bd60048036038101906104b8919061291f565b611127565b6040516104ca9190612dc3565b60405180910390f35b6104ed60048036038101906104e8919061268c565b6111bb565b005b610509600480360381019061050491906126b9565b6112d2565b005b610525600480360381019061052091906126b9565b6115a3565b6040516105329190612da8565b60405180910390f35b6105556004803603810190610550919061268c565b611637565b005b610571600480360381019061056c919061280f565b61172f565b005b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916148061063e57507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b8061064e575061064d82611884565b5b9050919050565b606060008054610664906132ad565b80601f0160208091040260200160405190810160405280929190818152602001828054610690906132ad565b80156106dd5780601f106106b2576101008083540402835291602001916106dd565b820191906000526020600020905b8154815290600101906020018083116106c057829003601f168201915b5050505050905090565b60006106f2826118ee565b610731576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161072890612f87565b60405180910390fd5b6004600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b600061077782610a90565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614156107e8576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016107df90613007565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff1661080761195a565b73ffffffffffffffffffffffffffffffffffffffff16148061083657506108358161083061195a565b6115a3565b5b610875576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161086c90612ee7565b60405180910390fd5b61087f8383611962565b505050565b60006108906007611a1b565b905090565b60011515600e60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16151514610928576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161091f90612f47565b60405180910390fd5b6000610932611a29565b9050604581146109d55761094533610d50565b6000600e60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055507fa74d92a240ab2715747af6a53fec23b1540fe87f967dc4c4f839473c7325fa2d336040516109cc9190612ce1565b60405180910390a15b50565b6109e96109e361195a565b82611a8a565b610a28576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a1f90613027565b60405180910390fd5b610a33838383611b68565b505050565b600d6020528060005260406000206000915090505481565b610a6b83838360405180602001604052806000815250610f72565b505050565b600c6020528060005260406000206000915054906101000a900460ff1681565b6000806002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415610b39576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b3090612f27565b60405180910390fd5b80915050919050565b610b4a61195a565b73ffffffffffffffffffffffffffffffffffffffff16610b68610df2565b73ffffffffffffffffffffffffffffffffffffffff1614610bbe576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610bb590612fa7565b60405180910390fd5b8060089080519060200190610bd492919061248b565b507f14f192f64bd673b0c50dadc05fa83acf9ebe47b0dad7bdc275be00cea44669286008604051610c059190612de5565b60405180910390a150565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415610c81576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c7890612f07565b60405180910390fd5b600360008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b610cd061195a565b73ffffffffffffffffffffffffffffffffffffffff16610cee610df2565b73ffffffffffffffffffffffffffffffffffffffff1614610d44576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d3b90612fa7565b60405180910390fd5b610d4e6000611dcf565b565b610d5861195a565b73ffffffffffffffffffffffffffffffffffffffff16610d76610df2565b73ffffffffffffffffffffffffffffffffffffffff1614610dcc576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610dc390612fa7565b60405180910390fd5b6000610dd86007611a1b565b9050610de46007611e95565b610dee8282611eab565b5050565b6000600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b606060018054610e2b906132ad565b80601f0160208091040260200160405190810160405280929190818152602001828054610e57906132ad565b8015610ea45780601f10610e7957610100808354040283529160200191610ea4565b820191906000526020600020905b815481529060010190602001808311610e8757829003601f168201915b5050505050905090565b600e6020528060005260406000206000915054906101000a900460ff1681565b610ee0610ed961195a565b8383611ec9565b5050565b60088054610ef1906132ad565b80601f0160208091040260200160405190810160405280929190818152602001828054610f1d906132ad565b8015610f6a5780601f10610f3f57610100808354040283529160200191610f6a565b820191906000526020600020905b815481529060010190602001808311610f4d57829003601f168201915b505050505081565b610f83610f7d61195a565b83611a8a565b610fc2576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610fb990613027565b60405180910390fd5b610fce84848484612036565b50505050565b610fdc61195a565b73ffffffffffffffffffffffffffffffffffffffff16610ffa610df2565b73ffffffffffffffffffffffffffffffffffffffff1614611050576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161104790612fa7565b60405180910390fd5b6000600c60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055506000600d60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055507f197be6be1ba9d534a44c46f3448f5a555b883ac35d22e1920ceb962288709eb48160405161111c9190612ce1565b60405180910390a150565b606060088054611136906132ad565b80601f0160208091040260200160405190810160405280929190818152602001828054611162906132ad565b80156111af5780601f10611184576101008083540402835291602001916111af565b820191906000526020600020905b81548152906001019060200180831161119257829003601f168201915b50505050509050919050565b6111c361195a565b73ffffffffffffffffffffffffffffffffffffffff166111e1610df2565b73ffffffffffffffffffffffffffffffffffffffff1614611237576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161122e90612fa7565b60405180910390fd5b61124081610d50565b6000600e60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055507fa74d92a240ab2715747af6a53fec23b1540fe87f967dc4c4f839473c7325fa2d336040516112c79190612ce1565b60405180910390a150565b600c60008273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1661135e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161135590612fe7565b60405180910390fd5b6000600d60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205414156113e1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113d890612fc7565b60405180910390fd5b60006113eb611a29565b90506045811461150e578173ffffffffffffffffffffffffffffffffffffffff166323b872dd33600960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16600d60008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546040518463ffffffff1660e01b815260040161149393929190612cfc565b602060405180830381600087803b1580156114ad57600080fd5b505af11580156114c1573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906114e5919061284f565b5060006114f26007611a1b565b90506114fe6007611e95565b6115088482611eab565b5061159e565b6001600e60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055507fa74d92a240ab2715747af6a53fec23b1540fe87f967dc4c4f839473c7325fa2d336040516115959190612ce1565b60405180910390a15b505050565b6000600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b61163f61195a565b73ffffffffffffffffffffffffffffffffffffffff1661165d610df2565b73ffffffffffffffffffffffffffffffffffffffff16146116b3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116aa90612fa7565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415611723576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161171a90612e27565b60405180910390fd5b61172c81611dcf565b50565b61173761195a565b73ffffffffffffffffffffffffffffffffffffffff16611755610df2565b73ffffffffffffffffffffffffffffffffffffffff16146117ab576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117a290612fa7565b60405180910390fd5b6001600c60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff02191690831515021790555080600d60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055507f1e911ced6a7cf8d0665a44096e7028f4885ccdb36cdb15b8dfa166d8f0e467af8282604051611878929190612d7f565b60405180910390a15050565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b60008073ffffffffffffffffffffffffffffffffffffffff166002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614159050919050565b600033905090565b816004600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff166119d583610a90565b73ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b600081600001549050919050565b600080600b544233600a54604051602001611a4693929190613062565b6040516020818303038152906040528051906020012060001c611a699190613359565b9050600a6000815480929190611a7e90613310565b91905055508091505090565b6000611a95826118ee565b611ad4576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611acb90612ec7565b60405180910390fd5b6000611adf83610a90565b90508073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161480611b215750611b2081856115a3565b5b80611b5f57508373ffffffffffffffffffffffffffffffffffffffff16611b47846106e7565b73ffffffffffffffffffffffffffffffffffffffff16145b91505092915050565b8273ffffffffffffffffffffffffffffffffffffffff16611b8882610a90565b73ffffffffffffffffffffffffffffffffffffffff1614611bde576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611bd590612e47565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611c4e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c4590612e87565b60405180910390fd5b611c59838383612092565b611c64600082611962565b6001600360008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254611cb491906131c3565b925050819055506001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254611d0b919061316d565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4611dca838383612097565b505050565b6000600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600660006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b6001816000016000828254019250508190555050565b611ec582826040518060200160405280600081525061209c565b5050565b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415611f38576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f2f90612ea7565b60405180910390fd5b80600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31836040516120299190612da8565b60405180910390a3505050565b612041848484611b68565b61204d848484846120f7565b61208c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161208390612e07565b60405180910390fd5b50505050565b505050565b505050565b6120a6838361228e565b6120b360008484846120f7565b6120f2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016120e990612e07565b60405180910390fd5b505050565b60006121188473ffffffffffffffffffffffffffffffffffffffff16612468565b15612281578373ffffffffffffffffffffffffffffffffffffffff1663150b7a0261214161195a565b8786866040518563ffffffff1660e01b81526004016121639493929190612d33565b602060405180830381600087803b15801561217d57600080fd5b505af19250505080156121ae57506040513d601f19601f820116820180604052508101906121ab91906128a9565b60015b612231573d80600081146121de576040519150601f19603f3d011682016040523d82523d6000602084013e6121e3565b606091505b50600081511415612229576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161222090612e07565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050612286565b600190505b949350505050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156122fe576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016122f590612f67565b60405180910390fd5b612307816118ee565b15612347576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161233e90612e67565b60405180910390fd5b61235360008383612092565b6001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546123a3919061316d565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a461246460008383612097565b5050565b6000808273ffffffffffffffffffffffffffffffffffffffff163b119050919050565b828054612497906132ad565b90600052602060002090601f0160209004810192826124b95760008555612500565b82601f106124d257805160ff1916838001178555612500565b82800160010185558215612500579182015b828111156124ff5782518255916020019190600101906124e4565b5b50905061250d9190612511565b5090565b5b8082111561252a576000816000905550600101612512565b5090565b600061254161253c846130be565b613099565b90508281526020810184848401111561255d5761255c61344b565b5b61256884828561326b565b509392505050565b600061258361257e846130ef565b613099565b90508281526020810184848401111561259f5761259e61344b565b5b6125aa84828561326b565b509392505050565b6000813590506125c181613961565b92915050565b6000813590506125d681613978565b92915050565b6000815190506125eb81613978565b92915050565b6000813590506126008161398f565b92915050565b6000815190506126158161398f565b92915050565b600082601f8301126126305761262f613446565b5b813561264084826020860161252e565b91505092915050565b600082601f83011261265e5761265d613446565b5b813561266e848260208601612570565b91505092915050565b600081359050612686816139a6565b92915050565b6000602082840312156126a2576126a1613455565b5b60006126b0848285016125b2565b91505092915050565b600080604083850312156126d0576126cf613455565b5b60006126de858286016125b2565b92505060206126ef858286016125b2565b9150509250929050565b60008060006060848603121561271257612711613455565b5b6000612720868287016125b2565b9350506020612731868287016125b2565b925050604061274286828701612677565b9150509250925092565b6000806000806080858703121561276657612765613455565b5b6000612774878288016125b2565b9450506020612785878288016125b2565b935050604061279687828801612677565b925050606085013567ffffffffffffffff8111156127b7576127b6613450565b5b6127c38782880161261b565b91505092959194509250565b600080604083850312156127e6576127e5613455565b5b60006127f4858286016125b2565b9250506020612805858286016125c7565b9150509250929050565b6000806040838503121561282657612825613455565b5b6000612834858286016125b2565b925050602061284585828601612677565b9150509250929050565b60006020828403121561286557612864613455565b5b6000612873848285016125dc565b91505092915050565b60006020828403121561289257612891613455565b5b60006128a0848285016125f1565b91505092915050565b6000602082840312156128bf576128be613455565b5b60006128cd84828501612606565b91505092915050565b6000602082840312156128ec576128eb613455565b5b600082013567ffffffffffffffff81111561290a57612909613450565b5b61291684828501612649565b91505092915050565b60006020828403121561293557612934613455565b5b600061294384828501612677565b91505092915050565b612955816131f7565b82525050565b61296481613209565b82525050565b600061297582613135565b61297f818561314b565b935061298f81856020860161327a565b6129988161345a565b840191505092915050565b60006129ae82613140565b6129b8818561315c565b93506129c881856020860161327a565b6129d18161345a565b840191505092915050565b600081546129e9816132ad565b6129f3818661315c565b94506001821660008114612a0e5760018114612a2057612a53565b60ff1983168652602086019350612a53565b612a2985613120565b60005b83811015612a4b57815481890152600182019150602081019050612a2c565b808801955050505b50505092915050565b6000612a6960328361315c565b9150612a748261346b565b604082019050919050565b6000612a8c60268361315c565b9150612a97826134ba565b604082019050919050565b6000612aaf60258361315c565b9150612aba82613509565b604082019050919050565b6000612ad2601c8361315c565b9150612add82613558565b602082019050919050565b6000612af560248361315c565b9150612b0082613581565b604082019050919050565b6000612b1860198361315c565b9150612b23826135d0565b602082019050919050565b6000612b3b602c8361315c565b9150612b46826135f9565b604082019050919050565b6000612b5e60388361315c565b9150612b6982613648565b604082019050919050565b6000612b81602a8361315c565b9150612b8c82613697565b604082019050919050565b6000612ba460298361315c565b9150612baf826136e6565b604082019050919050565b6000612bc760298361315c565b9150612bd282613735565b604082019050919050565b6000612bea60208361315c565b9150612bf582613784565b602082019050919050565b6000612c0d602c8361315c565b9150612c18826137ad565b604082019050919050565b6000612c3060208361315c565b9150612c3b826137fc565b602082019050919050565b6000612c5360238361315c565b9150612c5e82613825565b604082019050919050565b6000612c76602b8361315c565b9150612c8182613874565b604082019050919050565b6000612c9960218361315c565b9150612ca4826138c3565b604082019050919050565b6000612cbc60318361315c565b9150612cc782613912565b604082019050919050565b612cdb81613261565b82525050565b6000602082019050612cf6600083018461294c565b92915050565b6000606082019050612d11600083018661294c565b612d1e602083018561294c565b612d2b6040830184612cd2565b949350505050565b6000608082019050612d48600083018761294c565b612d55602083018661294c565b612d626040830185612cd2565b8181036060830152612d74818461296a565b905095945050505050565b6000604082019050612d94600083018561294c565b612da16020830184612cd2565b9392505050565b6000602082019050612dbd600083018461295b565b92915050565b60006020820190508181036000830152612ddd81846129a3565b905092915050565b60006020820190508181036000830152612dff81846129dc565b905092915050565b60006020820190508181036000830152612e2081612a5c565b9050919050565b60006020820190508181036000830152612e4081612a7f565b9050919050565b60006020820190508181036000830152612e6081612aa2565b9050919050565b60006020820190508181036000830152612e8081612ac5565b9050919050565b60006020820190508181036000830152612ea081612ae8565b9050919050565b60006020820190508181036000830152612ec081612b0b565b9050919050565b60006020820190508181036000830152612ee081612b2e565b9050919050565b60006020820190508181036000830152612f0081612b51565b9050919050565b60006020820190508181036000830152612f2081612b74565b9050919050565b60006020820190508181036000830152612f4081612b97565b9050919050565b60006020820190508181036000830152612f6081612bba565b9050919050565b60006020820190508181036000830152612f8081612bdd565b9050919050565b60006020820190508181036000830152612fa081612c00565b9050919050565b60006020820190508181036000830152612fc081612c23565b9050919050565b60006020820190508181036000830152612fe081612c46565b9050919050565b6000602082019050818103600083015261300081612c69565b9050919050565b6000602082019050818103600083015261302081612c8c565b9050919050565b6000602082019050818103600083015261304081612caf565b9050919050565b600060208201905061305c6000830184612cd2565b92915050565b60006060820190506130776000830186612cd2565b613084602083018561294c565b6130916040830184612cd2565b949350505050565b60006130a36130b4565b90506130af82826132df565b919050565b6000604051905090565b600067ffffffffffffffff8211156130d9576130d8613417565b5b6130e28261345a565b9050602081019050919050565b600067ffffffffffffffff82111561310a57613109613417565b5b6131138261345a565b9050602081019050919050565b60008190508160005260206000209050919050565b600081519050919050565b600081519050919050565b600082825260208201905092915050565b600082825260208201905092915050565b600061317882613261565b915061318383613261565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff038211156131b8576131b761338a565b5b828201905092915050565b60006131ce82613261565b91506131d983613261565b9250828210156131ec576131eb61338a565b5b828203905092915050565b600061320282613241565b9050919050565b60008115159050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b82818337600083830152505050565b60005b8381101561329857808201518184015260208101905061327d565b838111156132a7576000848401525b50505050565b600060028204905060018216806132c557607f821691505b602082108114156132d9576132d86133e8565b5b50919050565b6132e88261345a565b810181811067ffffffffffffffff8211171561330757613306613417565b5b80604052505050565b600061331b82613261565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82141561334e5761334d61338a565b5b600182019050919050565b600061336482613261565b915061336f83613261565b92508261337f5761337e6133b9565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b7f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560008201527f63656976657220696d706c656d656e7465720000000000000000000000000000602082015250565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a207472616e736665722066726f6d20696e636f72726563742060008201527f6f776e6572000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000600082015250565b7f4552433732313a207472616e7366657220746f20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f766520746f2063616c6c657200000000000000600082015250565b7f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760008201527f6e6572206e6f7220617070726f76656420666f7220616c6c0000000000000000602082015250565b7f4552433732313a2062616c616e636520717565727920666f7220746865207a6560008201527f726f206164647265737300000000000000000000000000000000000000000000602082015250565b7f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460008201527f656e7420746f6b656e0000000000000000000000000000000000000000000000602082015250565b7f4e6f20626f74746c6520746f20756e737469636b2c2074727920696e7365727460008201527f696e6720636f696e730000000000000000000000000000000000000000000000602082015250565b7f4552433732313a206d696e7420746f20746865207a65726f2061646472657373600082015250565b7f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f536f7272792c20706c65617365207061792074686520636f727265637420707260008201527f6963650000000000000000000000000000000000000000000000000000000000602082015250565b7f536f7272792c20776520646f6e277420616363657074207468697320666f726d60008201527f206f66207061796d656e74000000000000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f76616c20746f2063757272656e74206f776e6560008201527f7200000000000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f60008201527f776e6572206e6f7220617070726f766564000000000000000000000000000000602082015250565b61396a816131f7565b811461397557600080fd5b50565b61398181613209565b811461398c57600080fd5b50565b61399881613215565b81146139a357600080fd5b50565b6139af81613261565b81146139ba57600080fd5b5056fea26469706673582212201f77d49ce929abb5d361cd9c839dd5c957c58c0895b3b944baaeed4a977af47964736f6c63430008070033

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

00000000000000000000000000000000000000000000000000000000000000a0000000000000000000000000000000000000000000000000000000000000014000000000000000000000000000000000000000000000000000000000000001a00000000000000000000000009c61bfa257763f5d9e86adfe6428feeb009de94e0000000000000000000000000000000000000000000000000000000000000064000000000000000000000000000000000000000000000000000000000000007468747470733a2f2f737033613662646978616132756e747462686c377636377876697365683433776a7476646e6c6a70336973736a793633357761712e617277656176652e6e65742f6b5f59504247693441616f3263776e582d7676337169524438335a4d366a61744c396f6c4a4f50623759450000000000000000000000000000000000000000000000000000000000000000000000000000000000000002000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb480000000000000000000000006b175474e89094c44da98b954eedeac495271d0f000000000000000000000000000000000000000000000000000000000000000200000000000000000000000000000000000000000000000000000000003567e000000000000000000000000000000000000000000000000030927f74c9de0000

-----Decoded View---------------
Arg [0] : _newBottles (string): https://sp3a6bdixaa2unttbhl7v67xviseh43wjtvdnljp3issjy635waq.arweave.net/k_YPBGi4Aao2cwnX-vv3qiRD83ZM6jatL9olJOPb7YE
Arg [1] : paymentOptionAddresses (address[]): 0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48,0x6B175474E89094C44Da98b954EedeAC495271d0F
Arg [2] : paymentOptionPrices (uint256[]): 3500000,3500000000000000000
Arg [3] : _vendingMachineOwner (address): 0x9c61BFA257763f5D9e86ADFE6428fEeb009De94E
Arg [4] : _stickChance (uint256): 100

-----Encoded View---------------
16 Constructor Arguments found :
Arg [0] : 00000000000000000000000000000000000000000000000000000000000000a0
Arg [1] : 0000000000000000000000000000000000000000000000000000000000000140
Arg [2] : 00000000000000000000000000000000000000000000000000000000000001a0
Arg [3] : 0000000000000000000000009c61bfa257763f5d9e86adfe6428feeb009de94e
Arg [4] : 0000000000000000000000000000000000000000000000000000000000000064
Arg [5] : 0000000000000000000000000000000000000000000000000000000000000074
Arg [6] : 68747470733a2f2f737033613662646978616132756e747462686c3776363778
Arg [7] : 76697365683433776a7476646e6c6a70336973736a793633357761712e617277
Arg [8] : 656176652e6e65742f6b5f59504247693441616f3263776e582d767633716952
Arg [9] : 4438335a4d366a61744c396f6c4a4f5062375945000000000000000000000000
Arg [10] : 0000000000000000000000000000000000000000000000000000000000000002
Arg [11] : 000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48
Arg [12] : 0000000000000000000000006b175474e89094c44da98b954eedeac495271d0f
Arg [13] : 0000000000000000000000000000000000000000000000000000000000000002
Arg [14] : 00000000000000000000000000000000000000000000000000000000003567e0
Arg [15] : 00000000000000000000000000000000000000000000000030927f74c9de0000


Deployed Bytecode Sourcemap

41931:4185:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;28675:305;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;29620:100;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;31180:221;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;30703:411;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;45637:152;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;43915:364;;;:::i;:::-;;31930:339;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;42270:53;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;32340:185;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;42210:53;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;29314:239;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;45480:149;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;29044:208;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;9258:103;;;:::i;:::-;;44289:192;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;8607:87;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;29789:104;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;42330:48;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;31473:155;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;42074:23;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;32596:328;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;45097:242;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;45349:123;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;44870:219;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;43164:743;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;31699:164;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;9516:201;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;44489:373;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;28675:305;28777:4;28829:25;28814:40;;;:11;:40;;;;:105;;;;28886:33;28871:48;;;:11;:48;;;;28814:105;:158;;;;28936:36;28960:11;28936:23;:36::i;:::-;28814:158;28794:178;;28675:305;;;:::o;29620:100::-;29674:13;29707:5;29700:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;29620:100;:::o;31180:221::-;31256:7;31284:16;31292:7;31284;:16::i;:::-;31276:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;31369:15;:24;31385:7;31369:24;;;;;;;;;;;;;;;;;;;;;31362:31;;31180:221;;;:::o;30703:411::-;30784:13;30800:23;30815:7;30800:14;:23::i;:::-;30784:39;;30848:5;30842:11;;:2;:11;;;;30834:57;;;;;;;;;;;;:::i;:::-;;;;;;;;;30942:5;30926:21;;:12;:10;:12::i;:::-;:21;;;:62;;;;30951:37;30968:5;30975:12;:10;:12::i;:::-;30951:16;:37::i;:::-;30926:62;30904:168;;;;;;;;;;;;:::i;:::-;;;;;;;;;31085:21;31094:2;31098:7;31085:8;:21::i;:::-;30773:341;30703:411;;:::o;45637:152::-;45681:19;45727:25;:15;:23;:25::i;:::-;45713:39;;45637:152;:::o;43915:364::-;43996:4;43964:36;;:16;:28;43981:10;43964:28;;;;;;;;;;;;;;;;;;;;;;;;;:36;;;43956:90;;;;;;;;;;;;:::i;:::-;;;;;;;;;44057:12;44072:11;:9;:11::i;:::-;44057:26;;44109:2;44098:7;:13;44094:176;;44127:32;44148:10;44127:20;:32::i;:::-;44205:5;44174:16;:28;44191:10;44174:28;;;;;;;;;;;;;;;;:36;;;;;;;;;;;;;;;;;;44230:28;44247:10;44230:28;;;;;;:::i;:::-;;;;;;;;44094:176;43945:334;43915:364::o;31930:339::-;32125:41;32144:12;:10;:12::i;:::-;32158:7;32125:18;:41::i;:::-;32117:103;;;;;;;;;;;;:::i;:::-;;;;;;;;;32233:28;32243:4;32249:2;32253:7;32233:9;:28::i;:::-;31930:339;;;:::o;42270:53::-;;;;;;;;;;;;;;;;;:::o;32340:185::-;32478:39;32495:4;32501:2;32505:7;32478:39;;;;;;;;;;;;:16;:39::i;:::-;32340:185;;;:::o;42210:53::-;;;;;;;;;;;;;;;;;;;;;;:::o;29314:239::-;29386:7;29406:13;29422:7;:16;29430:7;29422:16;;;;;;;;;;;;;;;;;;;;;29406:32;;29474:1;29457:19;;:5;:19;;;;29449:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;29540:5;29533:12;;;29314:239;;;:::o;45480:149::-;8838:12;:10;:12::i;:::-;8827:23;;:7;:5;:7::i;:::-;:23;;;8819:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;45567:11:::1;45555:9;:23;;;;;;;;;;;;:::i;:::-;;45594:27;45611:9;45594:27;;;;;;:::i;:::-;;;;;;;;45480:149:::0;:::o;29044:208::-;29116:7;29161:1;29144:19;;:5;:19;;;;29136:74;;;;;;;;;;;;:::i;:::-;;;;;;;;;29228:9;:16;29238:5;29228:16;;;;;;;;;;;;;;;;29221:23;;29044:208;;;:::o;9258:103::-;8838:12;:10;:12::i;:::-;8827:23;;:7;:5;:7::i;:::-;:23;;;8819:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;9323:30:::1;9350:1;9323:18;:30::i;:::-;9258:103::o:0;44289:192::-;8838:12;:10;:12::i;:::-;8827:23;;:7;:5;:7::i;:::-;:23;;;8819:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;44359:15:::1;44377:25;:15;:23;:25::i;:::-;44359:43;;44413:27;:15;:25;:27::i;:::-;44451:22;44461:2;44465:7;44451:9;:22::i;:::-;44348:133;44289:192:::0;:::o;8607:87::-;8653:7;8680:6;;;;;;;;;;;8673:13;;8607:87;:::o;29789:104::-;29845:13;29878:7;29871:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;29789:104;:::o;42330:48::-;;;;;;;;;;;;;;;;;;;;;;:::o;31473:155::-;31568:52;31587:12;:10;:12::i;:::-;31601:8;31611;31568:18;:52::i;:::-;31473:155;;:::o;42074:23::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;32596:328::-;32771:41;32790:12;:10;:12::i;:::-;32804:7;32771:18;:41::i;:::-;32763:103;;;;;;;;;;;;:::i;:::-;;;;;;;;;32877:39;32891:4;32897:2;32901:7;32910:5;32877:13;:39::i;:::-;32596:328;;;;:::o;45097:242::-;8838:12;:10;:12::i;:::-;8827:23;;:7;:5;:7::i;:::-;:23;;;8819:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;45227:5:::1;45188:21;:36;45210:13;45188:36;;;;;;;;;;;;;;;;:44;;;;;;;;;;;;;;;;;;45279:1;45243:18;:33;45262:13;45243:33;;;;;;;;;;;;;;;:37;;;;45296:35;45317:13;45296:35;;;;;;:::i;:::-;;;;;;;;45097:242:::0;:::o;45349:123::-;45422:13;45455:9;45448:16;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;45349:123;;;:::o;44870:219::-;8838:12;:10;:12::i;:::-;8827:23;;:7;:5;:7::i;:::-;:23;;;8819:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;44954:34:::1;44975:12;44954:20;:34::i;:::-;45030:5;44999:16;:28;45016:10;44999:28;;;;;;;;;;;;;;;;:36;;;;;;;;;;;;;;;;;;45051:28;45068:10;45051:28;;;;;;:::i;:::-;;;;;;;;44870:219:::0;:::o;43164:743::-;43243:21;:35;43265:12;43243:35;;;;;;;;;;;;;;;;;;;;;;;;;43235:91;;;;;;;;;;;;:::i;:::-;;;;;;;;;43381:1;43345:18;:32;43364:12;43345:32;;;;;;;;;;;;;;;;:37;;43337:85;;;;;;;;;;;;:::i;:::-;;;;;;;;;43443:12;43458:11;:9;:11::i;:::-;43443:26;;43495:2;43484:7;:13;43480:408;;43520:12;43513:33;;;43547:10;43558:19;;;;;;;;;;;43579:18;:32;43598:12;43579:32;;;;;;;;;;;;;;;;43513:99;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;43627:15;43645:25;:15;:23;:25::i;:::-;43627:43;;43685:27;:15;:25;:27::i;:::-;43727:22;43737:2;43741:7;43727:9;:22::i;:::-;43498:265;43480:408;;;43824:4;43793:16;:28;43810:10;43793:28;;;;;;;;;;;;;;;;:35;;;;;;;;;;;;;;;;;;43848:28;43865:10;43848:28;;;;;;:::i;:::-;;;;;;;;43480:408;43224:683;43164:743;;:::o;31699:164::-;31796:4;31820:18;:25;31839:5;31820:25;;;;;;;;;;;;;;;:35;31846:8;31820:35;;;;;;;;;;;;;;;;;;;;;;;;;31813:42;;31699:164;;;;:::o;9516:201::-;8838:12;:10;:12::i;:::-;8827:23;;:7;:5;:7::i;:::-;:23;;;8819:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;9625:1:::1;9605:22;;:8;:22;;;;9597:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;9681:28;9700:8;9681:18;:28::i;:::-;9516:201:::0;:::o;44489:373::-;8838:12;:10;:12::i;:::-;8827:23;;:7;:5;:7::i;:::-;:23;;;8819:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;44645:4:::1;44606:21;:36;44628:13;44606:36;;;;;;;;;;;;;;;;:43;;;;;;;;;;;;;;;;;;44768:19;44732:18;:33;44751:13;44732:33;;;;;;;;;;;;;;;:55;;;;44803:51;44820:13;44834:19;44803:51;;;;;;;:::i;:::-;;;;;;;;44489:373:::0;;:::o;21414:157::-;21499:4;21538:25;21523:40;;;:11;:40;;;;21516:47;;21414:157;;;:::o;34434:127::-;34499:4;34551:1;34523:30;;:7;:16;34531:7;34523:16;;;;;;;;;;;;;;;;;;;;;:30;;;;34516:37;;34434:127;;;:::o;7331:98::-;7384:7;7411:10;7404:17;;7331:98;:::o;38580:174::-;38682:2;38655:15;:24;38671:7;38655:24;;;;;;;;;;;;:29;;;;;;;;;;;;;;;;;;38738:7;38734:2;38700:46;;38709:23;38724:7;38709:14;:23::i;:::-;38700:46;;;;;;;;;;;;38580:174;;:::o;3935:114::-;4000:7;4027;:14;;;4020:21;;3935:114;;;:::o;45914:197::-;45953:4;45970:11;46050;;46010:15;46027:10;46039:5;;45999:46;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;45989:57;;;;;;45984:63;;:77;;;;:::i;:::-;45970:91;;46072:5;;:7;;;;;;;;;:::i;:::-;;;;;;46097:6;46090:13;;;45914:197;:::o;34728:348::-;34821:4;34846:16;34854:7;34846;:16::i;:::-;34838:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;34922:13;34938:23;34953:7;34938:14;:23::i;:::-;34922:39;;34991:5;34980:16;;:7;:16;;;:52;;;;35000:32;35017:5;35024:7;35000:16;:32::i;:::-;34980:52;:87;;;;35060:7;35036:31;;:20;35048:7;35036:11;:20::i;:::-;:31;;;34980:87;34972:96;;;34728:348;;;;:::o;37837:625::-;37996:4;37969:31;;:23;37984:7;37969:14;:23::i;:::-;:31;;;37961:81;;;;;;;;;;;;:::i;:::-;;;;;;;;;38075:1;38061:16;;:2;:16;;;;38053:65;;;;;;;;;;;;:::i;:::-;;;;;;;;;38131:39;38152:4;38158:2;38162:7;38131:20;:39::i;:::-;38235:29;38252:1;38256:7;38235:8;:29::i;:::-;38296:1;38277:9;:15;38287:4;38277:15;;;;;;;;;;;;;;;;:20;;;;;;;:::i;:::-;;;;;;;;38325:1;38308:9;:13;38318:2;38308:13;;;;;;;;;;;;;;;;:18;;;;;;;:::i;:::-;;;;;;;;38356:2;38337:7;:16;38345:7;38337:16;;;;;;;;;;;;:21;;;;;;;;;;;;;;;;;;38395:7;38391:2;38376:27;;38385:4;38376:27;;;;;;;;;;;;38416:38;38436:4;38442:2;38446:7;38416:19;:38::i;:::-;37837:625;;;:::o;9877:191::-;9951:16;9970:6;;;;;;;;;;;9951:25;;9996:8;9987:6;;:17;;;;;;;;;;;;;;;;;;10051:8;10020:40;;10041:8;10020:40;;;;;;;;;;;;9940:128;9877:191;:::o;4057:127::-;4164:1;4146:7;:14;;;:19;;;;;;;;;;;4057:127;:::o;35418:110::-;35494:26;35504:2;35508:7;35494:26;;;;;;;;;;;;:9;:26::i;:::-;35418:110;;:::o;38896:315::-;39051:8;39042:17;;:5;:17;;;;39034:55;;;;;;;;;;;;:::i;:::-;;;;;;;;;39138:8;39100:18;:25;39119:5;39100:25;;;;;;;;;;;;;;;:35;39126:8;39100:35;;;;;;;;;;;;;;;;:46;;;;;;;;;;;;;;;;;;39184:8;39162:41;;39177:5;39162:41;;;39194:8;39162:41;;;;;;:::i;:::-;;;;;;;;38896:315;;;:::o;33806:::-;33963:28;33973:4;33979:2;33983:7;33963:9;:28::i;:::-;34010:48;34033:4;34039:2;34043:7;34052:5;34010:22;:48::i;:::-;34002:111;;;;;;;;;;;;:::i;:::-;;;;;;;;;33806:315;;;;:::o;41147:126::-;;;;:::o;41658:125::-;;;;:::o;35755:321::-;35885:18;35891:2;35895:7;35885:5;:18::i;:::-;35936:54;35967:1;35971:2;35975:7;35984:5;35936:22;:54::i;:::-;35914:154;;;;;;;;;;;;:::i;:::-;;;;;;;;;35755:321;;;:::o;39776:799::-;39931:4;39952:15;:2;:13;;;:15::i;:::-;39948:620;;;40004:2;39988:36;;;40025:12;:10;:12::i;:::-;40039:4;40045:7;40054:5;39988:72;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;39984:529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;40247:1;40230:6;:13;:18;40226:272;;;40273:60;;;;;;;;;;:::i;:::-;;;;;;;;40226:272;40448:6;40442:13;40433:6;40429:2;40425:15;40418:38;39984:529;40121:41;;;40111:51;;;:6;:51;;;;40104:58;;;;;39948:620;40552:4;40545:11;;39776:799;;;;;;;:::o;36412:439::-;36506:1;36492:16;;:2;:16;;;;36484:61;;;;;;;;;;;;:::i;:::-;;;;;;;;;36565:16;36573:7;36565;:16::i;:::-;36564:17;36556:58;;;;;;;;;;;;:::i;:::-;;;;;;;;;36627:45;36656:1;36660:2;36664:7;36627:20;:45::i;:::-;36702:1;36685:9;:13;36695:2;36685:13;;;;;;;;;;;;;;;;:18;;;;;;;:::i;:::-;;;;;;;;36733:2;36714:7;:16;36722:7;36714:16;;;;;;;;;;;;:21;;;;;;;;;;;;;;;;;;36778:7;36774:2;36753:33;;36770:1;36753:33;;;;;;;;;;;;36799:44;36827:1;36831:2;36835:7;36799:19;:44::i;:::-;36412:439;;:::o;11308:326::-;11368:4;11625:1;11603:7;:19;;;:23;11596:30;;11308:326;;;:::o;-1:-1:-1:-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;;;;;;;;;;;;;;;:::o;7:410:1:-;84:5;109:65;125:48;166:6;125:48;:::i;:::-;109:65;:::i;:::-;100:74;;197:6;190:5;183:21;235:4;228:5;224:16;273:3;264:6;259:3;255:16;252:25;249:112;;;280:79;;:::i;:::-;249:112;370:41;404:6;399:3;394;370:41;:::i;:::-;90:327;7:410;;;;;:::o;423:412::-;501:5;526:66;542:49;584:6;542:49;:::i;:::-;526:66;:::i;:::-;517:75;;615:6;608:5;601:21;653:4;646:5;642:16;691:3;682:6;677:3;673:16;670:25;667:112;;;698:79;;:::i;:::-;667:112;788:41;822:6;817:3;812;788:41;:::i;:::-;507:328;423:412;;;;;:::o;841:139::-;887:5;925:6;912:20;903:29;;941:33;968:5;941:33;:::i;:::-;841:139;;;;:::o;986:133::-;1029:5;1067:6;1054:20;1045:29;;1083:30;1107:5;1083:30;:::i;:::-;986:133;;;;:::o;1125:137::-;1179:5;1210:6;1204:13;1195:22;;1226:30;1250:5;1226:30;:::i;:::-;1125:137;;;;:::o;1268:::-;1313:5;1351:6;1338:20;1329:29;;1367:32;1393:5;1367:32;:::i;:::-;1268:137;;;;:::o;1411:141::-;1467:5;1498:6;1492:13;1483:22;;1514:32;1540:5;1514:32;:::i;:::-;1411:141;;;;:::o;1571:338::-;1626:5;1675:3;1668:4;1660:6;1656:17;1652:27;1642:122;;1683:79;;:::i;:::-;1642:122;1800:6;1787:20;1825:78;1899:3;1891:6;1884:4;1876:6;1872:17;1825:78;:::i;:::-;1816:87;;1632:277;1571:338;;;;:::o;1929:340::-;1985:5;2034:3;2027:4;2019:6;2015:17;2011:27;2001:122;;2042:79;;:::i;:::-;2001:122;2159:6;2146:20;2184:79;2259:3;2251:6;2244:4;2236:6;2232:17;2184:79;:::i;:::-;2175:88;;1991:278;1929:340;;;;:::o;2275:139::-;2321:5;2359:6;2346:20;2337:29;;2375:33;2402:5;2375:33;:::i;:::-;2275:139;;;;:::o;2420:329::-;2479:6;2528:2;2516:9;2507:7;2503:23;2499:32;2496:119;;;2534:79;;:::i;:::-;2496:119;2654:1;2679:53;2724:7;2715:6;2704:9;2700:22;2679:53;:::i;:::-;2669:63;;2625:117;2420:329;;;;:::o;2755:474::-;2823:6;2831;2880:2;2868:9;2859:7;2855:23;2851:32;2848:119;;;2886:79;;:::i;:::-;2848:119;3006:1;3031:53;3076:7;3067:6;3056:9;3052:22;3031:53;:::i;:::-;3021:63;;2977:117;3133:2;3159:53;3204:7;3195:6;3184:9;3180:22;3159:53;:::i;:::-;3149:63;;3104:118;2755:474;;;;;:::o;3235:619::-;3312:6;3320;3328;3377:2;3365:9;3356:7;3352:23;3348:32;3345:119;;;3383:79;;:::i;:::-;3345:119;3503:1;3528:53;3573:7;3564:6;3553:9;3549:22;3528:53;:::i;:::-;3518:63;;3474:117;3630:2;3656:53;3701:7;3692:6;3681:9;3677:22;3656:53;:::i;:::-;3646:63;;3601:118;3758:2;3784:53;3829:7;3820:6;3809:9;3805:22;3784:53;:::i;:::-;3774:63;;3729:118;3235:619;;;;;:::o;3860:943::-;3955:6;3963;3971;3979;4028:3;4016:9;4007:7;4003:23;3999:33;3996:120;;;4035:79;;:::i;:::-;3996:120;4155:1;4180:53;4225:7;4216:6;4205:9;4201:22;4180:53;:::i;:::-;4170:63;;4126:117;4282:2;4308:53;4353:7;4344:6;4333:9;4329:22;4308:53;:::i;:::-;4298:63;;4253:118;4410:2;4436:53;4481:7;4472:6;4461:9;4457:22;4436:53;:::i;:::-;4426:63;;4381:118;4566:2;4555:9;4551:18;4538:32;4597:18;4589:6;4586:30;4583:117;;;4619:79;;:::i;:::-;4583:117;4724:62;4778:7;4769:6;4758:9;4754:22;4724:62;:::i;:::-;4714:72;;4509:287;3860:943;;;;;;;:::o;4809:468::-;4874:6;4882;4931:2;4919:9;4910:7;4906:23;4902:32;4899:119;;;4937:79;;:::i;:::-;4899:119;5057:1;5082:53;5127:7;5118:6;5107:9;5103:22;5082:53;:::i;:::-;5072:63;;5028:117;5184:2;5210:50;5252:7;5243:6;5232:9;5228:22;5210:50;:::i;:::-;5200:60;;5155:115;4809:468;;;;;:::o;5283:474::-;5351:6;5359;5408:2;5396:9;5387:7;5383:23;5379:32;5376:119;;;5414:79;;:::i;:::-;5376:119;5534:1;5559:53;5604:7;5595:6;5584:9;5580:22;5559:53;:::i;:::-;5549:63;;5505:117;5661:2;5687:53;5732:7;5723:6;5712:9;5708:22;5687:53;:::i;:::-;5677:63;;5632:118;5283:474;;;;;:::o;5763:345::-;5830:6;5879:2;5867:9;5858:7;5854:23;5850:32;5847:119;;;5885:79;;:::i;:::-;5847:119;6005:1;6030:61;6083:7;6074:6;6063:9;6059:22;6030:61;:::i;:::-;6020:71;;5976:125;5763:345;;;;:::o;6114:327::-;6172:6;6221:2;6209:9;6200:7;6196:23;6192:32;6189:119;;;6227:79;;:::i;:::-;6189:119;6347:1;6372:52;6416:7;6407:6;6396:9;6392:22;6372:52;:::i;:::-;6362:62;;6318:116;6114:327;;;;:::o;6447:349::-;6516:6;6565:2;6553:9;6544:7;6540:23;6536:32;6533:119;;;6571:79;;:::i;:::-;6533:119;6691:1;6716:63;6771:7;6762:6;6751:9;6747:22;6716:63;:::i;:::-;6706:73;;6662:127;6447:349;;;;:::o;6802:509::-;6871:6;6920:2;6908:9;6899:7;6895:23;6891:32;6888:119;;;6926:79;;:::i;:::-;6888:119;7074:1;7063:9;7059:17;7046:31;7104:18;7096:6;7093:30;7090:117;;;7126:79;;:::i;:::-;7090:117;7231:63;7286:7;7277:6;7266:9;7262:22;7231:63;:::i;:::-;7221:73;;7017:287;6802:509;;;;:::o;7317:329::-;7376:6;7425:2;7413:9;7404:7;7400:23;7396:32;7393:119;;;7431:79;;:::i;:::-;7393:119;7551:1;7576:53;7621:7;7612:6;7601:9;7597:22;7576:53;:::i;:::-;7566:63;;7522:117;7317:329;;;;:::o;7652:118::-;7739:24;7757:5;7739:24;:::i;:::-;7734:3;7727:37;7652:118;;:::o;7776:109::-;7857:21;7872:5;7857:21;:::i;:::-;7852:3;7845:34;7776:109;;:::o;7891:360::-;7977:3;8005:38;8037:5;8005:38;:::i;:::-;8059:70;8122:6;8117:3;8059:70;:::i;:::-;8052:77;;8138:52;8183:6;8178:3;8171:4;8164:5;8160:16;8138:52;:::i;:::-;8215:29;8237:6;8215:29;:::i;:::-;8210:3;8206:39;8199:46;;7981:270;7891:360;;;;:::o;8257:364::-;8345:3;8373:39;8406:5;8373:39;:::i;:::-;8428:71;8492:6;8487:3;8428:71;:::i;:::-;8421:78;;8508:52;8553:6;8548:3;8541:4;8534:5;8530:16;8508:52;:::i;:::-;8585:29;8607:6;8585:29;:::i;:::-;8580:3;8576:39;8569:46;;8349:272;8257:364;;;;:::o;8651:802::-;8736:3;8773:5;8767:12;8802:36;8828:9;8802:36;:::i;:::-;8854:71;8918:6;8913:3;8854:71;:::i;:::-;8847:78;;8956:1;8945:9;8941:17;8972:1;8967:135;;;;9116:1;9111:336;;;;8934:513;;8967:135;9051:4;9047:9;9036;9032:25;9027:3;9020:38;9087:4;9082:3;9078:14;9071:21;;8967:135;;9111:336;9178:38;9210:5;9178:38;:::i;:::-;9238:1;9252:154;9266:6;9263:1;9260:13;9252:154;;;9340:7;9334:14;9330:1;9325:3;9321:11;9314:35;9390:1;9381:7;9377:15;9366:26;;9288:4;9285:1;9281:12;9276:17;;9252:154;;;9435:1;9430:3;9426:11;9419:18;;9118:329;;8934:513;;8740:713;;8651:802;;;;:::o;9459:366::-;9601:3;9622:67;9686:2;9681:3;9622:67;:::i;:::-;9615:74;;9698:93;9787:3;9698:93;:::i;:::-;9816:2;9811:3;9807:12;9800:19;;9459:366;;;:::o;9831:::-;9973:3;9994:67;10058:2;10053:3;9994:67;:::i;:::-;9987:74;;10070:93;10159:3;10070:93;:::i;:::-;10188:2;10183:3;10179:12;10172:19;;9831:366;;;:::o;10203:::-;10345:3;10366:67;10430:2;10425:3;10366:67;:::i;:::-;10359:74;;10442:93;10531:3;10442:93;:::i;:::-;10560:2;10555:3;10551:12;10544:19;;10203:366;;;:::o;10575:::-;10717:3;10738:67;10802:2;10797:3;10738:67;:::i;:::-;10731:74;;10814:93;10903:3;10814:93;:::i;:::-;10932:2;10927:3;10923:12;10916:19;;10575:366;;;:::o;10947:::-;11089:3;11110:67;11174:2;11169:3;11110:67;:::i;:::-;11103:74;;11186:93;11275:3;11186:93;:::i;:::-;11304:2;11299:3;11295:12;11288:19;;10947:366;;;:::o;11319:::-;11461:3;11482:67;11546:2;11541:3;11482:67;:::i;:::-;11475:74;;11558:93;11647:3;11558:93;:::i;:::-;11676:2;11671:3;11667:12;11660:19;;11319:366;;;:::o;11691:::-;11833:3;11854:67;11918:2;11913:3;11854:67;:::i;:::-;11847:74;;11930:93;12019:3;11930:93;:::i;:::-;12048:2;12043:3;12039:12;12032:19;;11691:366;;;:::o;12063:::-;12205:3;12226:67;12290:2;12285:3;12226:67;:::i;:::-;12219:74;;12302:93;12391:3;12302:93;:::i;:::-;12420:2;12415:3;12411:12;12404:19;;12063:366;;;:::o;12435:::-;12577:3;12598:67;12662:2;12657:3;12598:67;:::i;:::-;12591:74;;12674:93;12763:3;12674:93;:::i;:::-;12792:2;12787:3;12783:12;12776:19;;12435:366;;;:::o;12807:::-;12949:3;12970:67;13034:2;13029:3;12970:67;:::i;:::-;12963:74;;13046:93;13135:3;13046:93;:::i;:::-;13164:2;13159:3;13155:12;13148:19;;12807:366;;;:::o;13179:::-;13321:3;13342:67;13406:2;13401:3;13342:67;:::i;:::-;13335:74;;13418:93;13507:3;13418:93;:::i;:::-;13536:2;13531:3;13527:12;13520:19;;13179:366;;;:::o;13551:::-;13693:3;13714:67;13778:2;13773:3;13714:67;:::i;:::-;13707:74;;13790:93;13879:3;13790:93;:::i;:::-;13908:2;13903:3;13899:12;13892:19;;13551:366;;;:::o;13923:::-;14065:3;14086:67;14150:2;14145:3;14086:67;:::i;:::-;14079:74;;14162:93;14251:3;14162:93;:::i;:::-;14280:2;14275:3;14271:12;14264:19;;13923:366;;;:::o;14295:::-;14437:3;14458:67;14522:2;14517:3;14458:67;:::i;:::-;14451:74;;14534:93;14623:3;14534:93;:::i;:::-;14652:2;14647:3;14643:12;14636:19;;14295:366;;;:::o;14667:::-;14809:3;14830:67;14894:2;14889:3;14830:67;:::i;:::-;14823:74;;14906:93;14995:3;14906:93;:::i;:::-;15024:2;15019:3;15015:12;15008:19;;14667:366;;;:::o;15039:::-;15181:3;15202:67;15266:2;15261:3;15202:67;:::i;:::-;15195:74;;15278:93;15367:3;15278:93;:::i;:::-;15396:2;15391:3;15387:12;15380:19;;15039:366;;;:::o;15411:::-;15553:3;15574:67;15638:2;15633:3;15574:67;:::i;:::-;15567:74;;15650:93;15739:3;15650:93;:::i;:::-;15768:2;15763:3;15759:12;15752:19;;15411:366;;;:::o;15783:::-;15925:3;15946:67;16010:2;16005:3;15946:67;:::i;:::-;15939:74;;16022:93;16111:3;16022:93;:::i;:::-;16140:2;16135:3;16131:12;16124:19;;15783:366;;;:::o;16155:118::-;16242:24;16260:5;16242:24;:::i;:::-;16237:3;16230:37;16155:118;;:::o;16279:222::-;16372:4;16410:2;16399:9;16395:18;16387:26;;16423:71;16491:1;16480:9;16476:17;16467:6;16423:71;:::i;:::-;16279:222;;;;:::o;16507:442::-;16656:4;16694:2;16683:9;16679:18;16671:26;;16707:71;16775:1;16764:9;16760:17;16751:6;16707:71;:::i;:::-;16788:72;16856:2;16845:9;16841:18;16832:6;16788:72;:::i;:::-;16870;16938:2;16927:9;16923:18;16914:6;16870:72;:::i;:::-;16507:442;;;;;;:::o;16955:640::-;17150:4;17188:3;17177:9;17173:19;17165:27;;17202:71;17270:1;17259:9;17255:17;17246:6;17202:71;:::i;:::-;17283:72;17351:2;17340:9;17336:18;17327:6;17283:72;:::i;:::-;17365;17433:2;17422:9;17418:18;17409:6;17365:72;:::i;:::-;17484:9;17478:4;17474:20;17469:2;17458:9;17454:18;17447:48;17512:76;17583:4;17574:6;17512:76;:::i;:::-;17504:84;;16955:640;;;;;;;:::o;17601:332::-;17722:4;17760:2;17749:9;17745:18;17737:26;;17773:71;17841:1;17830:9;17826:17;17817:6;17773:71;:::i;:::-;17854:72;17922:2;17911:9;17907:18;17898:6;17854:72;:::i;:::-;17601:332;;;;;:::o;17939:210::-;18026:4;18064:2;18053:9;18049:18;18041:26;;18077:65;18139:1;18128:9;18124:17;18115:6;18077:65;:::i;:::-;17939:210;;;;:::o;18155:313::-;18268:4;18306:2;18295:9;18291:18;18283:26;;18355:9;18349:4;18345:20;18341:1;18330:9;18326:17;18319:47;18383:78;18456:4;18447:6;18383:78;:::i;:::-;18375:86;;18155:313;;;;:::o;18474:307::-;18584:4;18622:2;18611:9;18607:18;18599:26;;18671:9;18665:4;18661:20;18657:1;18646:9;18642:17;18635:47;18699:75;18769:4;18760:6;18699:75;:::i;:::-;18691:83;;18474:307;;;;:::o;18787:419::-;18953:4;18991:2;18980:9;18976:18;18968:26;;19040:9;19034:4;19030:20;19026:1;19015:9;19011:17;19004:47;19068:131;19194:4;19068:131;:::i;:::-;19060:139;;18787:419;;;:::o;19212:::-;19378:4;19416:2;19405:9;19401:18;19393:26;;19465:9;19459:4;19455:20;19451:1;19440:9;19436:17;19429:47;19493:131;19619:4;19493:131;:::i;:::-;19485:139;;19212:419;;;:::o;19637:::-;19803:4;19841:2;19830:9;19826:18;19818:26;;19890:9;19884:4;19880:20;19876:1;19865:9;19861:17;19854:47;19918:131;20044:4;19918:131;:::i;:::-;19910:139;;19637:419;;;:::o;20062:::-;20228:4;20266:2;20255:9;20251:18;20243:26;;20315:9;20309:4;20305:20;20301:1;20290:9;20286:17;20279:47;20343:131;20469:4;20343:131;:::i;:::-;20335:139;;20062:419;;;:::o;20487:::-;20653:4;20691:2;20680:9;20676:18;20668:26;;20740:9;20734:4;20730:20;20726:1;20715:9;20711:17;20704:47;20768:131;20894:4;20768:131;:::i;:::-;20760:139;;20487:419;;;:::o;20912:::-;21078:4;21116:2;21105:9;21101:18;21093:26;;21165:9;21159:4;21155:20;21151:1;21140:9;21136:17;21129:47;21193:131;21319:4;21193:131;:::i;:::-;21185:139;;20912:419;;;:::o;21337:::-;21503:4;21541:2;21530:9;21526:18;21518:26;;21590:9;21584:4;21580:20;21576:1;21565:9;21561:17;21554:47;21618:131;21744:4;21618:131;:::i;:::-;21610:139;;21337:419;;;:::o;21762:::-;21928:4;21966:2;21955:9;21951:18;21943:26;;22015:9;22009:4;22005:20;22001:1;21990:9;21986:17;21979:47;22043:131;22169:4;22043:131;:::i;:::-;22035:139;;21762:419;;;:::o;22187:::-;22353:4;22391:2;22380:9;22376:18;22368:26;;22440:9;22434:4;22430:20;22426:1;22415:9;22411:17;22404:47;22468:131;22594:4;22468:131;:::i;:::-;22460:139;;22187:419;;;:::o;22612:::-;22778:4;22816:2;22805:9;22801:18;22793:26;;22865:9;22859:4;22855:20;22851:1;22840:9;22836:17;22829:47;22893:131;23019:4;22893:131;:::i;:::-;22885:139;;22612:419;;;:::o;23037:::-;23203:4;23241:2;23230:9;23226:18;23218:26;;23290:9;23284:4;23280:20;23276:1;23265:9;23261:17;23254:47;23318:131;23444:4;23318:131;:::i;:::-;23310:139;;23037:419;;;:::o;23462:::-;23628:4;23666:2;23655:9;23651:18;23643:26;;23715:9;23709:4;23705:20;23701:1;23690:9;23686:17;23679:47;23743:131;23869:4;23743:131;:::i;:::-;23735:139;;23462:419;;;:::o;23887:::-;24053:4;24091:2;24080:9;24076:18;24068:26;;24140:9;24134:4;24130:20;24126:1;24115:9;24111:17;24104:47;24168:131;24294:4;24168:131;:::i;:::-;24160:139;;23887:419;;;:::o;24312:::-;24478:4;24516:2;24505:9;24501:18;24493:26;;24565:9;24559:4;24555:20;24551:1;24540:9;24536:17;24529:47;24593:131;24719:4;24593:131;:::i;:::-;24585:139;;24312:419;;;:::o;24737:::-;24903:4;24941:2;24930:9;24926:18;24918:26;;24990:9;24984:4;24980:20;24976:1;24965:9;24961:17;24954:47;25018:131;25144:4;25018:131;:::i;:::-;25010:139;;24737:419;;;:::o;25162:::-;25328:4;25366:2;25355:9;25351:18;25343:26;;25415:9;25409:4;25405:20;25401:1;25390:9;25386:17;25379:47;25443:131;25569:4;25443:131;:::i;:::-;25435:139;;25162:419;;;:::o;25587:::-;25753:4;25791:2;25780:9;25776:18;25768:26;;25840:9;25834:4;25830:20;25826:1;25815:9;25811:17;25804:47;25868:131;25994:4;25868:131;:::i;:::-;25860:139;;25587:419;;;:::o;26012:::-;26178:4;26216:2;26205:9;26201:18;26193:26;;26265:9;26259:4;26255:20;26251:1;26240:9;26236:17;26229:47;26293:131;26419:4;26293:131;:::i;:::-;26285:139;;26012:419;;;:::o;26437:222::-;26530:4;26568:2;26557:9;26553:18;26545:26;;26581:71;26649:1;26638:9;26634:17;26625:6;26581:71;:::i;:::-;26437:222;;;;:::o;26665:442::-;26814:4;26852:2;26841:9;26837:18;26829:26;;26865:71;26933:1;26922:9;26918:17;26909:6;26865:71;:::i;:::-;26946:72;27014:2;27003:9;26999:18;26990:6;26946:72;:::i;:::-;27028;27096:2;27085:9;27081:18;27072:6;27028:72;:::i;:::-;26665:442;;;;;;:::o;27113:129::-;27147:6;27174:20;;:::i;:::-;27164:30;;27203:33;27231:4;27223:6;27203:33;:::i;:::-;27113:129;;;:::o;27248:75::-;27281:6;27314:2;27308:9;27298:19;;27248:75;:::o;27329:307::-;27390:4;27480:18;27472:6;27469:30;27466:56;;;27502:18;;:::i;:::-;27466:56;27540:29;27562:6;27540:29;:::i;:::-;27532:37;;27624:4;27618;27614:15;27606:23;;27329:307;;;:::o;27642:308::-;27704:4;27794:18;27786:6;27783:30;27780:56;;;27816:18;;:::i;:::-;27780:56;27854:29;27876:6;27854:29;:::i;:::-;27846:37;;27938:4;27932;27928:15;27920:23;;27642:308;;;:::o;27956:141::-;28005:4;28028:3;28020:11;;28051:3;28048:1;28041:14;28085:4;28082:1;28072:18;28064:26;;27956:141;;;:::o;28103:98::-;28154:6;28188:5;28182:12;28172:22;;28103:98;;;:::o;28207:99::-;28259:6;28293:5;28287:12;28277:22;;28207:99;;;:::o;28312:168::-;28395:11;28429:6;28424:3;28417:19;28469:4;28464:3;28460:14;28445:29;;28312:168;;;;:::o;28486:169::-;28570:11;28604:6;28599:3;28592:19;28644:4;28639:3;28635:14;28620:29;;28486:169;;;;:::o;28661:305::-;28701:3;28720:20;28738:1;28720:20;:::i;:::-;28715:25;;28754:20;28772:1;28754:20;:::i;:::-;28749:25;;28908:1;28840:66;28836:74;28833:1;28830:81;28827:107;;;28914:18;;:::i;:::-;28827:107;28958:1;28955;28951:9;28944:16;;28661:305;;;;:::o;28972:191::-;29012:4;29032:20;29050:1;29032:20;:::i;:::-;29027:25;;29066:20;29084:1;29066:20;:::i;:::-;29061:25;;29105:1;29102;29099:8;29096:34;;;29110:18;;:::i;:::-;29096:34;29155:1;29152;29148:9;29140:17;;28972:191;;;;:::o;29169:96::-;29206:7;29235:24;29253:5;29235:24;:::i;:::-;29224:35;;29169:96;;;:::o;29271:90::-;29305:7;29348:5;29341:13;29334:21;29323:32;;29271:90;;;:::o;29367:149::-;29403:7;29443:66;29436:5;29432:78;29421:89;;29367:149;;;:::o;29522:126::-;29559:7;29599:42;29592:5;29588:54;29577:65;;29522:126;;;:::o;29654:77::-;29691:7;29720:5;29709:16;;29654:77;;;:::o;29737:154::-;29821:6;29816:3;29811;29798:30;29883:1;29874:6;29869:3;29865:16;29858:27;29737:154;;;:::o;29897:307::-;29965:1;29975:113;29989:6;29986:1;29983:13;29975:113;;;30074:1;30069:3;30065:11;30059:18;30055:1;30050:3;30046:11;30039:39;30011:2;30008:1;30004:10;29999:15;;29975:113;;;30106:6;30103:1;30100:13;30097:101;;;30186:1;30177:6;30172:3;30168:16;30161:27;30097:101;29946:258;29897:307;;;:::o;30210:320::-;30254:6;30291:1;30285:4;30281:12;30271:22;;30338:1;30332:4;30328:12;30359:18;30349:81;;30415:4;30407:6;30403:17;30393:27;;30349:81;30477:2;30469:6;30466:14;30446:18;30443:38;30440:84;;;30496:18;;:::i;:::-;30440:84;30261:269;30210:320;;;:::o;30536:281::-;30619:27;30641:4;30619:27;:::i;:::-;30611:6;30607:40;30749:6;30737:10;30734:22;30713:18;30701:10;30698:34;30695:62;30692:88;;;30760:18;;:::i;:::-;30692:88;30800:10;30796:2;30789:22;30579:238;30536:281;;:::o;30823:233::-;30862:3;30885:24;30903:5;30885:24;:::i;:::-;30876:33;;30931:66;30924:5;30921:77;30918:103;;;31001:18;;:::i;:::-;30918:103;31048:1;31041:5;31037:13;31030:20;;30823:233;;;:::o;31062:176::-;31094:1;31111:20;31129:1;31111:20;:::i;:::-;31106:25;;31145:20;31163:1;31145:20;:::i;:::-;31140:25;;31184:1;31174:35;;31189:18;;:::i;:::-;31174:35;31230:1;31227;31223:9;31218:14;;31062:176;;;;:::o;31244:180::-;31292:77;31289:1;31282:88;31389:4;31386:1;31379:15;31413:4;31410:1;31403:15;31430:180;31478:77;31475:1;31468:88;31575:4;31572:1;31565:15;31599:4;31596:1;31589:15;31616:180;31664:77;31661:1;31654:88;31761:4;31758:1;31751:15;31785:4;31782:1;31775:15;31802:180;31850:77;31847:1;31840:88;31947:4;31944:1;31937:15;31971:4;31968:1;31961:15;31988:117;32097:1;32094;32087:12;32111:117;32220:1;32217;32210:12;32234:117;32343:1;32340;32333:12;32357:117;32466:1;32463;32456:12;32480:102;32521:6;32572:2;32568:7;32563:2;32556:5;32552:14;32548:28;32538:38;;32480:102;;;:::o;32588:237::-;32728:34;32724:1;32716:6;32712:14;32705:58;32797:20;32792:2;32784:6;32780:15;32773:45;32588:237;:::o;32831:225::-;32971:34;32967:1;32959:6;32955:14;32948:58;33040:8;33035:2;33027:6;33023:15;33016:33;32831:225;:::o;33062:224::-;33202:34;33198:1;33190:6;33186:14;33179:58;33271:7;33266:2;33258:6;33254:15;33247:32;33062:224;:::o;33292:178::-;33432:30;33428:1;33420:6;33416:14;33409:54;33292:178;:::o;33476:223::-;33616:34;33612:1;33604:6;33600:14;33593:58;33685:6;33680:2;33672:6;33668:15;33661:31;33476:223;:::o;33705:175::-;33845:27;33841:1;33833:6;33829:14;33822:51;33705:175;:::o;33886:231::-;34026:34;34022:1;34014:6;34010:14;34003:58;34095:14;34090:2;34082:6;34078:15;34071:39;33886:231;:::o;34123:243::-;34263:34;34259:1;34251:6;34247:14;34240:58;34332:26;34327:2;34319:6;34315:15;34308:51;34123:243;:::o;34372:229::-;34512:34;34508:1;34500:6;34496:14;34489:58;34581:12;34576:2;34568:6;34564:15;34557:37;34372:229;:::o;34607:228::-;34747:34;34743:1;34735:6;34731:14;34724:58;34816:11;34811:2;34803:6;34799:15;34792:36;34607:228;:::o;34841:::-;34981:34;34977:1;34969:6;34965:14;34958:58;35050:11;35045:2;35037:6;35033:15;35026:36;34841:228;:::o;35075:182::-;35215:34;35211:1;35203:6;35199:14;35192:58;35075:182;:::o;35263:231::-;35403:34;35399:1;35391:6;35387:14;35380:58;35472:14;35467:2;35459:6;35455:15;35448:39;35263:231;:::o;35500:182::-;35640:34;35636:1;35628:6;35624:14;35617:58;35500:182;:::o;35688:222::-;35828:34;35824:1;35816:6;35812:14;35805:58;35897:5;35892:2;35884:6;35880:15;35873:30;35688:222;:::o;35916:230::-;36056:34;36052:1;36044:6;36040:14;36033:58;36125:13;36120:2;36112:6;36108:15;36101:38;35916:230;:::o;36152:220::-;36292:34;36288:1;36280:6;36276:14;36269:58;36361:3;36356:2;36348:6;36344:15;36337:28;36152:220;:::o;36378:236::-;36518:34;36514:1;36506:6;36502:14;36495:58;36587:19;36582:2;36574:6;36570:15;36563:44;36378:236;:::o;36620:122::-;36693:24;36711:5;36693:24;:::i;:::-;36686:5;36683:35;36673:63;;36732:1;36729;36722:12;36673:63;36620:122;:::o;36748:116::-;36818:21;36833:5;36818:21;:::i;:::-;36811:5;36808:32;36798:60;;36854:1;36851;36844:12;36798:60;36748:116;:::o;36870:120::-;36942:23;36959:5;36942:23;:::i;:::-;36935:5;36932:34;36922:62;;36980:1;36977;36970:12;36922:62;36870:120;:::o;36996:122::-;37069:24;37087:5;37069:24;:::i;:::-;37062:5;37059:35;37049:63;;37108:1;37105;37098:12;37049:63;36996:122;:::o

Swarm Source

ipfs://1f77d49ce929abb5d361cd9c839dd5c957c58c0895b3b944baaeed4a977af479
Loading...
Loading
Loading...
Loading
[ Download: CSV Export  ]
[ Download: CSV Export  ]

A token is a representation of an on-chain or off-chain asset. The token page shows information such as price, total supply, holders, transfers and social links. Learn more about this page in our Knowledge Base.