Token
MultiFaucet NFT (MFNFT)
ERC-721
Overview
Max Total Supply
0 MFNFT
Holders
43,644
Market
Onchain Market Cap
$0.00
Circulating Supply Market Cap
-
Other Info
Token Contract
Balance
5 MFNFTLoading...
Loading
Loading...
Loading
Loading...
Loading
Contract Name:
MultiFaucet
Compiler Version
v0.8.7+commit.e28d00a7
Contract Source Code (Solidity)
/** *Submitted for verification at moonbase.moonscan.io on 2022-03-16 */ // SPDX-License-Identifier: AGPL-3.0-only pragma solidity ^0.8.0; // File: @openzeppelin/contracts/utils/Strings.sol /** * @dev String operations. */ library Strings { bytes16 private constant _HEX_SYMBOLS = "0123456789abcdef"; /** * @dev Converts a `uint256` to its ASCII `string` decimal representation. */ function toString(uint256 value) internal pure returns (string memory) { // Inspired by OraclizeAPI's implementation - MIT licence // https://github.com/oraclize/ethereum-api/blob/b42146b063c7d6ee1358846c198246239e9360e8/oraclizeAPI_0.4.25.sol if (value == 0) { return "0"; } uint256 temp = value; uint256 digits; while (temp != 0) { digits++; temp /= 10; } bytes memory buffer = new bytes(digits); while (value != 0) { digits -= 1; buffer[digits] = bytes1(uint8(48 + uint256(value % 10))); value /= 10; } return string(buffer); } /** * @dev Converts a `uint256` to its ASCII `string` hexadecimal representation. */ function toHexString(uint256 value) internal pure returns (string memory) { if (value == 0) { return "0x00"; } uint256 temp = value; uint256 length = 0; while (temp != 0) { length++; temp >>= 8; } return toHexString(value, length); } /** * @dev Converts a `uint256` to its ASCII `string` hexadecimal representation with fixed length. */ function toHexString(uint256 value, uint256 length) internal pure returns (string memory) { bytes memory buffer = new bytes(2 * length + 2); buffer[0] = "0"; buffer[1] = "x"; for (uint256 i = 2 * length + 1; i > 1; --i) { buffer[i] = _HEX_SYMBOLS[value & 0xf]; value >>= 4; } require(value == 0, "Strings: hex length insufficient"); return string(buffer); } } // File: @openzeppelin/contracts/utils/Context.sol /** * @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/utils/Address.sol /** * @dev Collection of functions related to the address type */ library Address { /** * @dev Returns true if `account` is a contract. * * [IMPORTANT] * ==== * It is unsafe to assume that an address for which this function returns * false is an externally-owned account (EOA) and not a contract. * * Among others, `isContract` will return false for the following * types of addresses: * * - an externally-owned account * - a contract in construction * - an address where a contract will be created * - an address where a contract lived, but was destroyed * ==== */ function isContract(address account) internal view returns (bool) { // This method relies on extcodesize, which returns 0 for contracts in // construction, since the code is only stored at the end of the // constructor execution. uint256 size; assembly { size := extcodesize(account) } return size > 0; } /** * @dev Replacement for Solidity's `transfer`: sends `amount` wei to * `recipient`, forwarding all available gas and reverting on errors. * * https://eips.ethereum.org/EIPS/eip-1884[EIP1884] increases the gas cost * of certain opcodes, possibly making contracts go over the 2300 gas limit * imposed by `transfer`, making them unable to receive funds via * `transfer`. {sendValue} removes this limitation. * * https://diligence.consensys.net/posts/2019/09/stop-using-soliditys-transfer-now/[Learn more]. * * IMPORTANT: because control is transferred to `recipient`, care must be * taken to not create reentrancy vulnerabilities. Consider using * {ReentrancyGuard} or the * https://solidity.readthedocs.io/en/v0.5.11/security-considerations.html#use-the-checks-effects-interactions-pattern[checks-effects-interactions pattern]. */ function sendValue(address payable recipient, uint256 amount) internal { require(address(this).balance >= amount, "Address: insufficient balance"); (bool success, ) = recipient.call{value: amount}(""); require(success, "Address: unable to send value, recipient may have reverted"); } /** * @dev Performs a Solidity function call using a low level `call`. A * plain `call` is an unsafe replacement for a function call: use this * function instead. * * If `target` reverts with a revert reason, it is bubbled up by this * function (like regular Solidity function calls). * * Returns the raw returned data. To convert to the expected return value, * use https://solidity.readthedocs.io/en/latest/units-and-global-variables.html?highlight=abi.decode#abi-encoding-and-decoding-functions[`abi.decode`]. * * Requirements: * * - `target` must be a contract. * - calling `target` with `data` must not revert. * * _Available since v3.1._ */ function functionCall(address target, bytes memory data) internal returns (bytes memory) { return functionCall(target, data, "Address: low-level call failed"); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], but with * `errorMessage` as a fallback revert reason when `target` reverts. * * _Available since v3.1._ */ function functionCall( address target, bytes memory data, string memory errorMessage ) internal returns (bytes memory) { return functionCallWithValue(target, data, 0, errorMessage); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], * but also transferring `value` wei to `target`. * * Requirements: * * - the calling contract must have an ETH balance of at least `value`. * - the called Solidity function must be `payable`. * * _Available since v3.1._ */ function functionCallWithValue( address target, bytes memory data, uint256 value ) internal returns (bytes memory) { return functionCallWithValue(target, data, value, "Address: low-level call with value failed"); } /** * @dev Same as {xref-Address-functionCallWithValue-address-bytes-uint256-}[`functionCallWithValue`], but * with `errorMessage` as a fallback revert reason when `target` reverts. * * _Available since v3.1._ */ function functionCallWithValue( address target, bytes memory data, uint256 value, string memory errorMessage ) internal returns (bytes memory) { require(address(this).balance >= value, "Address: insufficient balance for call"); require(isContract(target), "Address: call to non-contract"); (bool success, bytes memory returndata) = target.call{value: value}(data); return verifyCallResult(success, returndata, errorMessage); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], * but performing a static call. * * _Available since v3.3._ */ function functionStaticCall(address target, bytes memory data) internal view returns (bytes memory) { return functionStaticCall(target, data, "Address: low-level static call failed"); } /** * @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`], * but performing a static call. * * _Available since v3.3._ */ function functionStaticCall( address target, bytes memory data, string memory errorMessage ) internal view returns (bytes memory) { require(isContract(target), "Address: static call to non-contract"); (bool success, bytes memory returndata) = target.staticcall(data); return verifyCallResult(success, returndata, errorMessage); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], * but performing a delegate call. * * _Available since v3.4._ */ function functionDelegateCall(address target, bytes memory data) internal returns (bytes memory) { return functionDelegateCall(target, data, "Address: low-level delegate call failed"); } /** * @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`], * but performing a delegate call. * * _Available since v3.4._ */ function functionDelegateCall( address target, bytes memory data, string memory errorMessage ) internal returns (bytes memory) { require(isContract(target), "Address: delegate call to non-contract"); (bool success, bytes memory returndata) = target.delegatecall(data); return verifyCallResult(success, returndata, errorMessage); } /** * @dev Tool to verifies that a low level call was successful, and revert if it wasn't, either by bubbling the * revert reason using the provided one. * * _Available since v4.3._ */ function verifyCallResult( bool success, bytes memory returndata, string memory errorMessage ) internal pure returns (bytes memory) { if (success) { return returndata; } else { // Look for revert reason and bubble it up if present if (returndata.length > 0) { // The easiest way to bubble the revert reason is using memory via assembly assembly { let returndata_size := mload(returndata) revert(add(32, returndata), returndata_size) } } else { revert(errorMessage); } } } } // File: @openzeppelin/contracts/token/ERC721/IERC721Receiver.sol /** * @title ERC721 token receiver interface * @dev Interface for any contract that wants to support safeTransfers * from ERC721 asset contracts. */ interface IERC721Receiver { /** * @dev Whenever an {IERC721} `tokenId` token is transferred to this contract via {IERC721-safeTransferFrom} * by `operator` from `from`, this function is called. * * It must return its Solidity selector to confirm the token transfer. * If any other value is returned or the interface is not implemented by the recipient, the transfer will be reverted. * * The selector can be obtained in Solidity with `IERC721.onERC721Received.selector`. */ function onERC721Received( address operator, address from, uint256 tokenId, bytes calldata data ) external returns (bytes4); } // File: @openzeppelin/contracts/utils/introspection/IERC165.sol /** * @dev Interface of the ERC165 standard, as defined in the * https://eips.ethereum.org/EIPS/eip-165[EIP]. * * Implementers can declare support of contract interfaces, which can then be * queried by others ({ERC165Checker}). * * For an implementation, see {ERC165}. */ interface IERC165 { /** * @dev Returns true if this contract implements the interface defined by * `interfaceId`. See the corresponding * https://eips.ethereum.org/EIPS/eip-165#how-interfaces-are-identified[EIP section] * to learn more about how these ids are created. * * This function call must use less than 30 000 gas. */ function supportsInterface(bytes4 interfaceId) external view returns (bool); } // File: @openzeppelin/contracts/utils/introspection/ERC165.sol /** * @dev Implementation of the {IERC165} interface. * * Contracts that want to implement ERC165 should inherit from this contract and override {supportsInterface} to check * for the additional interface id that will be supported. For example: * * ```solidity * function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) { * return interfaceId == type(MyInterface).interfaceId || super.supportsInterface(interfaceId); * } * ``` * * Alternatively, {ERC165Storage} provides an easier to use but more expensive implementation. */ abstract contract ERC165 is IERC165 { /** * @dev See {IERC165-supportsInterface}. */ function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) { return interfaceId == type(IERC165).interfaceId; } } // File: @openzeppelin/contracts/token/ERC721/IERC721.sol /** * @dev Required interface of an ERC721 compliant contract. */ interface IERC721 is IERC165 { /** * @dev Emitted when `tokenId` token is transferred from `from` to `to`. */ event Transfer(address indexed from, address indexed to, uint256 indexed tokenId); /** * @dev Emitted when `owner` enables `approved` to manage the `tokenId` token. */ event Approval(address indexed owner, address indexed approved, uint256 indexed tokenId); /** * @dev Emitted when `owner` enables or disables (`approved`) `operator` to manage all of its assets. */ event ApprovalForAll(address indexed owner, address indexed operator, bool approved); /** * @dev Returns the number of tokens in ``owner``'s account. */ function balanceOf(address owner) external view returns (uint256 balance); /** * @dev Returns the owner of the `tokenId` token. * * Requirements: * * - `tokenId` must exist. */ function ownerOf(uint256 tokenId) external view returns (address owner); /** * @dev Safely transfers `tokenId` token from `from` to `to`, checking first that contract recipients * are aware of the ERC721 protocol to prevent tokens from being forever locked. * * Requirements: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `tokenId` token must exist and be owned by `from`. * - If the caller is not `from`, it must be have been allowed to move this token by either {approve} or {setApprovalForAll}. * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer. * * Emits a {Transfer} event. */ function safeTransferFrom( address from, address to, uint256 tokenId ) external; /** * @dev Transfers `tokenId` token from `from` to `to`. * * WARNING: Usage of this method is discouraged, use {safeTransferFrom} whenever possible. * * Requirements: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `tokenId` token must be owned by `from`. * - If the caller is not `from`, it must be approved to move this token by either {approve} or {setApprovalForAll}. * * Emits a {Transfer} event. */ function transferFrom( address from, address to, uint256 tokenId ) external; /** * @dev Gives permission to `to` to transfer `tokenId` token to another account. * The approval is cleared when the token is transferred. * * Only a single account can be approved at a time, so approving the zero address clears previous approvals. * * Requirements: * * - The caller must own the token or be an approved operator. * - `tokenId` must exist. * * Emits an {Approval} event. */ function approve(address to, uint256 tokenId) external; /** * @dev Returns the account approved for `tokenId` token. * * Requirements: * * - `tokenId` must exist. */ function getApproved(uint256 tokenId) external view returns (address operator); /** * @dev Approve or remove `operator` as an operator for the caller. * Operators can call {transferFrom} or {safeTransferFrom} for any token owned by the caller. * * Requirements: * * - The `operator` cannot be the caller. * * Emits an {ApprovalForAll} event. */ function setApprovalForAll(address operator, bool _approved) external; /** * @dev Returns if the `operator` is allowed to manage all of the assets of `owner`. * * See {setApprovalForAll} */ function isApprovedForAll(address owner, address operator) external view returns (bool); /** * @dev Safely transfers `tokenId` token from `from` to `to`. * * Requirements: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `tokenId` token must exist and be owned by `from`. * - If the caller is not `from`, it must be approved to move this token by either {approve} or {setApprovalForAll}. * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer. * * Emits a {Transfer} event. */ function safeTransferFrom( address from, address to, uint256 tokenId, bytes calldata data ) external; } // File: @openzeppelin/contracts/token/ERC721/extensions/IERC721Metadata.sol /** * @title ERC-721 Non-Fungible Token Standard, optional metadata extension * @dev See https://eips.ethereum.org/EIPS/eip-721 */ interface IERC721Metadata is IERC721 { /** * @dev Returns the token collection name. */ function name() external view returns (string memory); /** * @dev Returns the token collection symbol. */ function symbol() external view returns (string memory); /** * @dev Returns the Uniform Resource Identifier (URI) for `tokenId` token. */ function tokenURI(uint256 tokenId) external view returns (string memory); } // File: @openzeppelin/contracts/token/ERC721/ERC721.sol /** * @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 overriden 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 { require(operator != _msgSender(), "ERC721: approve to caller"); _operatorApprovals[_msgSender()][operator] = approved; emit ApprovalForAll(_msgSender(), operator, approved); } /** * @dev See {IERC721-isApprovedForAll}. */ function isApprovedForAll(address owner, address operator) public view virtual override returns (bool) { return _operatorApprovals[owner][operator]; } /** * @dev See {IERC721-transferFrom}. */ function transferFrom( address from, address to, uint256 tokenId ) public 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 || getApproved(tokenId) == spender || isApprovedForAll(owner, 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); } /** * @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); } /** * @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 of token that is not own"); 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); } /** * @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 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 {} } // File: contracts/interfaces/IERC20.sol interface IERC20 { /// @notice ERC0 transfer tokens function transfer(address recipient, uint256 amount) external returns (bool); /// @notice ERC20 balance of address function balanceOf(address account) external view returns (uint256); } // File: contracts/MultiFaucet.sol /// @title MultiFaucet /// @author Anish Agnihotri /// @notice Drips ETH, DAI, wETH, and mints NFTs contract MultiFaucet is ERC721 { /// ============ Immutable storage ============ /// @notice DAI ERC20 token IERC20 public immutable DAI; /// @notice wETH ERC20 token IERC20 public immutable WETH; /// ============ Mutable storage ============ /// @notice Default NFT uri string public URI; /// @notice Count of minted NFTs uint256 public nftsMinted; /// @notice Number of ERC721 NFTs to mint uint256 public NFT_COUNT = 5; /// @notice ETH to disperse uint256 public ETH_AMOUNT = 5e18; /// @notice DAI to disperse uint256 public DAI_AMOUNT = 5_000e18; /// @notice wETH to disperse uint256 public WETH_AMOUNT = 5e18; /// @notice Addresses of approved operators mapping(address => bool) public approvedOperators; /// @notice Addresses of super operators mapping(address => bool) public superOperators; /// ============ Modifiers ============ /// @notice Requires sender to be contract super operator modifier isSuperOperator() { // Ensure sender is super operator require(superOperators[msg.sender], "Not super operator"); _; } /// @notice Requires sender to be contract approved operator modifier isApprovedOperator() { // Ensure sender is in approved operators or is super operator require( approvedOperators[msg.sender] || superOperators[msg.sender], "Not approved operator" ); _; } /// ============ Events ============ /// @notice Emitted after faucet drips to a recipient /// @param recipient address dripped to event FaucetDripped(address indexed recipient); /// @notice Emitted after faucet drained to a recipient /// @param recipient address drained to event FaucetDrained(address indexed recipient); /// @notice Emitted after operator status is updated /// @param operator address being updated /// @param status new operator status event OperatorUpdated(address indexed operator, bool status); /// @notice Emitted after super operator is updated /// @param operator address being updated /// @param status new operator status event SuperOperatorUpdated(address indexed operator, bool status); /// ============ Constructor ============ /// @notice Creates a new MultiFaucet contract /// @param _DAI address of DAI contract /// @param _WETH address of wETH contract /// @param _URI string of token URI constructor(address _DAI, address _WETH, string memory _URI) ERC721("MultiFaucet NFT", "MFNFT") { DAI = IERC20(_DAI); WETH = IERC20(_WETH); URI = _URI; superOperators[msg.sender] = true; } /// ============ Functions ============ /// @notice Drips and mints tokens to recipient /// @param _recipient to drip tokens to function drip(address _recipient) external isApprovedOperator { // Drip Ether (bool sent,) = _recipient.call{value: ETH_AMOUNT}(""); require(sent, "Failed dripping ETH"); // Drip DAI require(DAI.transfer(_recipient, DAI_AMOUNT), "Failed dripping DAI"); // Drip wETH require(WETH.transfer(_recipient, WETH_AMOUNT), "Failed dripping wETH"); // Mint NFTs for (uint256 i = 1; i <= NFT_COUNT; i++) { _mint(_recipient, nftsMinted + i); } nftsMinted += NFT_COUNT; emit FaucetDripped(_recipient); } /// @notice Returns number of available drips by token /// @return ethDrips — available Ether drips /// @return daiDrips — available DAI drips /// @return wethDrips — available wETH drips function availableDrips() public view returns (uint256 ethDrips, uint256 daiDrips, uint256 wethDrips) { ethDrips = address(this).balance / ETH_AMOUNT; daiDrips = DAI.balanceOf(address(this)) / DAI_AMOUNT; wethDrips = WETH.balanceOf(address(this)) / WETH_AMOUNT; } /// @notice Allows super operator to drain contract of tokens /// @param _recipient to send drained tokens to function drain(address _recipient) external isSuperOperator { // Drain all Ether (bool sent,) = _recipient.call{value: address(this).balance}(""); require(sent, "Failed draining ETH"); // Drain all DAI uint256 daiBalance = DAI.balanceOf(address(this)); require(DAI.transfer(_recipient, daiBalance), "Failed draining DAI"); // Drain all wETH uint256 wethBalance = WETH.balanceOf(address(this)); require(WETH.transfer(_recipient, wethBalance), "Failed dripping wETH"); emit FaucetDrained(_recipient); } /// @notice Allows super operator to update approved drip operator status /// @param _operator address to update /// @param _status of operator to toggle (true == allowed to drip) function updateApprovedOperator(address _operator, bool _status) external isSuperOperator { approvedOperators[_operator] = _status; emit OperatorUpdated(_operator, _status); } /// @notice Allows super operator to update super operator /// @param _operator address to update /// @param _status of operator to toggle (true === is super operator) function updateSuperOperator(address _operator, bool _status) external isSuperOperator { superOperators[_operator] = _status; emit SuperOperatorUpdated(_operator, _status); } /// @notice Override internal ERC721 function to return single image per NFT /// @param tokenId of ERC721 NFT function tokenURI(uint256 tokenId) public view virtual override returns (string memory) { // OpenZeppelin check: ensure token exists require(_exists(tokenId), "ERC721Metadata: URI query for nonexistent token"); return URI; } /// @notice Allows super operator to update NFT uri /// @param _URI of collection function updateTokenURI(string memory _URI) external isSuperOperator { URI = _URI; } /// @notice Allows super operator to update drip amounts /// @param _nftCount number of NFTs to mint per drip /// @param _ethAmount ETH to drip /// @param _daiAmount DAI to drip /// @param _wethAmount wETH to drip function updateDripAmounts( uint256 _nftCount, uint256 _ethAmount, uint256 _daiAmount, uint256 _wethAmount ) external isSuperOperator { NFT_COUNT = _nftCount; ETH_AMOUNT = _ethAmount; DAI_AMOUNT = _daiAmount; WETH_AMOUNT = _wethAmount; } /// @notice Allows receiving ETH receive() external payable {} }
[{"inputs":[{"internalType":"address","name":"_DAI","type":"address"},{"internalType":"address","name":"_WETH","type":"address"},{"internalType":"string","name":"_URI","type":"string"}],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"approved","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"recipient","type":"address"}],"name":"FaucetDrained","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"recipient","type":"address"}],"name":"FaucetDripped","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"status","type":"bool"}],"name":"OperatorUpdated","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"status","type":"bool"}],"name":"SuperOperatorUpdated","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[],"name":"DAI","outputs":[{"internalType":"contract IERC20","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"DAI_AMOUNT","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"ETH_AMOUNT","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"NFT_COUNT","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"URI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"WETH","outputs":[{"internalType":"contract IERC20","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"WETH_AMOUNT","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"approvedOperators","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"availableDrips","outputs":[{"internalType":"uint256","name":"ethDrips","type":"uint256"},{"internalType":"uint256","name":"daiDrips","type":"uint256"},{"internalType":"uint256","name":"wethDrips","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_recipient","type":"address"}],"name":"drain","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_recipient","type":"address"}],"name":"drip","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"nftsMinted","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"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":"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":"superOperators","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":[{"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":"_operator","type":"address"},{"internalType":"bool","name":"_status","type":"bool"}],"name":"updateApprovedOperator","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_nftCount","type":"uint256"},{"internalType":"uint256","name":"_ethAmount","type":"uint256"},{"internalType":"uint256","name":"_daiAmount","type":"uint256"},{"internalType":"uint256","name":"_wethAmount","type":"uint256"}],"name":"updateDripAmounts","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_operator","type":"address"},{"internalType":"bool","name":"_status","type":"bool"}],"name":"updateSuperOperator","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_URI","type":"string"}],"name":"updateTokenURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"stateMutability":"payable","type":"receive"}]
Contract Creation Code
60c06040526005600855674563918244f4000060095569010f0cf064dd59200000600a55674563918244f40000600b553480156200003c57600080fd5b506040516200315d3803806200315d8339810160408190526200005f91620001e3565b604080518082018252600f81526e135d5b1d1a51985d58d95d08139195608a1b602080830191825283518085019094526005845264135193919560da1b908401528151919291620000b39160009162000120565b508051620000c990600190602084019062000120565b5050506001600160601b0319606084811b821660805283901b1660a0528051620000fb90600690602084019062000120565b5050336000908152600d60205260409020805460ff19166001179055506200033a9050565b8280546200012e90620002e7565b90600052602060002090601f0160209004810192826200015257600085556200019d565b82601f106200016d57805160ff19168380011785556200019d565b828001600101855582156200019d579182015b828111156200019d57825182559160200191906001019062000180565b50620001ab929150620001af565b5090565b5b80821115620001ab5760008155600101620001b0565b80516001600160a01b0381168114620001de57600080fd5b919050565b600080600060608486031215620001f957600080fd5b6200020484620001c6565b9250602062000215818601620001c6565b60408601519093506001600160401b03808211156200023357600080fd5b818701915087601f8301126200024857600080fd5b8151818111156200025d576200025d62000324565b604051601f8201601f19908116603f0116810190838211818310171562000288576200028862000324565b816040528281528a86848701011115620002a157600080fd5b600093505b82841015620002c55784840186015181850187015292850192620002a6565b82841115620002d75760008684830101525b8096505050505050509250925092565b600181811c90821680620002fc57607f821691505b602082108114156200031e57634e487b7160e01b600052602260045260246000fd5b50919050565b634e487b7160e01b600052604160045260246000fd5b60805160601c60a05160601c612dbf6200039e600039600081816104bd01528181610c6c015281816110a401528181611c820152611d6001526000818161056701528181610b9e01528181610f7001528181611a8f0152611b6d0152612dbf6000f3fe6080604052600436106101d15760003560e01c8063929398f5116100f7578063b88d4fde11610095578063e0bab4c411610064578063e0bab4c414610555578063e985e9c514610589578063ece53132146105df578063ff721aba146105ff57600080fd5b8063b88d4fde146104df578063c14033ba146104ff578063c87b56dd14610515578063d370169d1461053557600080fd5b80639d4944c8116100d15780639d4944c81461043b5780639f40c9a71461045b578063a22cb4651461048b578063ad5c4648146104ab57600080fd5b8063929398f5146103f057806395d89b411461040657806398cd61531461041b57600080fd5b806342842e0e1161016f5780636e99fddf1161013e5780636e99fddf1461038457806370a082311461039a57806377caec8d146103ba57806383464e22146103da57600080fd5b806342842e0e1461030057806360df19e0146103205780636352211e1461034457806367a5cd061461036457600080fd5b8063095ea7b3116101ab578063095ea7b3146102795780631141d7de1461029b57806323b872dd146102b057806324cf0771146102d057600080fd5b806301ffc9a7146101dd57806306fdde0314610212578063081812fc1461023457600080fd5b366101d857005b600080fd5b3480156101e957600080fd5b506101fd6101f8366004612a47565b61062f565b60405190151581526020015b60405180910390f35b34801561021e57600080fd5b50610227610714565b6040516102099190612be2565b34801561024057600080fd5b5061025461024f366004612aca565b6107a6565b60405173ffffffffffffffffffffffffffffffffffffffff9091168152602001610209565b34801561028557600080fd5b50610299610294366004612a00565b610885565b005b3480156102a757600080fd5b50610227610a12565b3480156102bc57600080fd5b506102996102cb366004612911565b610aa0565b3480156102dc57600080fd5b506102e5610b41565b60408051938452602084019290925290820152606001610209565b34801561030c57600080fd5b5061029961031b366004612911565b610cf7565b34801561032c57600080fd5b5061033660075481565b604051908152602001610209565b34801561035057600080fd5b5061025461035f366004612aca565b610d12565b34801561037057600080fd5b5061029961037f3660046128bc565b610dc4565b34801561039057600080fd5b5061033660085481565b3480156103a657600080fd5b506103366103b53660046128bc565b61121c565b3480156103c657600080fd5b506102996103d53660046129c9565b6112ea565b3480156103e657600080fd5b50610336600b5481565b3480156103fc57600080fd5b50610336600a5481565b34801561041257600080fd5b506102276113ee565b34801561042757600080fd5b50610299610436366004612a81565b6113fd565b34801561044757600080fd5b50610299610456366004612afc565b61148d565b34801561046757600080fd5b506101fd6104763660046128bc565b600d6020526000908152604090205460ff1681565b34801561049757600080fd5b506102996104a63660046129c9565b61151a565b3480156104b757600080fd5b506102547f000000000000000000000000000000000000000000000000000000000000000081565b3480156104eb57600080fd5b506102996104fa36600461294d565b611631565b34801561050b57600080fd5b5061033660095481565b34801561052157600080fd5b50610227610530366004612aca565b6116d9565b34801561054157600080fd5b506102996105503660046129c9565b61181f565b34801561056157600080fd5b506102547f000000000000000000000000000000000000000000000000000000000000000081565b34801561059557600080fd5b506101fd6105a43660046128de565b73ffffffffffffffffffffffffffffffffffffffff918216600090815260056020908152604080832093909416825291909152205460ff1690565b3480156105eb57600080fd5b506102996105fa3660046128bc565b61191b565b34801561060b57600080fd5b506101fd61061a3660046128bc565b600c6020526000908152604090205460ff1681565b60007fffffffff0000000000000000000000000000000000000000000000000000000082167f80ac58cd0000000000000000000000000000000000000000000000000000000014806106c257507fffffffff0000000000000000000000000000000000000000000000000000000082167f5b5e139f00000000000000000000000000000000000000000000000000000000145b8061070e57507f01ffc9a7000000000000000000000000000000000000000000000000000000007fffffffff000000000000000000000000000000000000000000000000000000008316145b92915050565b60606000805461072390612c5f565b80601f016020809104026020016040519081016040528092919081815260200182805461074f90612c5f565b801561079c5780601f106107715761010080835404028352916020019161079c565b820191906000526020600020905b81548152906001019060200180831161077f57829003601f168201915b5050505050905090565b60008181526002602052604081205473ffffffffffffffffffffffffffffffffffffffff1661085c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602c60248201527f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860448201527f697374656e7420746f6b656e000000000000000000000000000000000000000060648201526084015b60405180910390fd5b5060009081526004602052604090205473ffffffffffffffffffffffffffffffffffffffff1690565b600061089082610d12565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16141561094e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602160248201527f4552433732313a20617070726f76616c20746f2063757272656e74206f776e6560448201527f72000000000000000000000000000000000000000000000000000000000000006064820152608401610853565b3373ffffffffffffffffffffffffffffffffffffffff82161480610977575061097781336105a4565b610a03576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152603860248201527f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760448201527f6e6572206e6f7220617070726f76656420666f7220616c6c00000000000000006064820152608401610853565b610a0d8383611e8b565b505050565b60068054610a1f90612c5f565b80601f0160208091040260200160405190810160405280929190818152602001828054610a4b90612c5f565b8015610a985780601f10610a6d57610100808354040283529160200191610a98565b820191906000526020600020905b815481529060010190602001808311610a7b57829003601f168201915b505050505081565b610aaa3382611f2b565b610b36576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152603160248201527f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f60448201527f776e6572206e6f7220617070726f7665640000000000000000000000000000006064820152608401610853565b610a0d83838361209b565b600080600060095447610b549190612c0d565b600a546040517f70a082310000000000000000000000000000000000000000000000000000000081523060048201529194509073ffffffffffffffffffffffffffffffffffffffff7f000000000000000000000000000000000000000000000000000000000000000016906370a082319060240160206040518083038186803b158015610be057600080fd5b505afa158015610bf4573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610c189190612ae3565b610c229190612c0d565b600b546040517f70a082310000000000000000000000000000000000000000000000000000000081523060048201529193509073ffffffffffffffffffffffffffffffffffffffff7f000000000000000000000000000000000000000000000000000000000000000016906370a082319060240160206040518083038186803b158015610cae57600080fd5b505afa158015610cc2573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610ce69190612ae3565b610cf09190612c0d565b9050909192565b610a0d83838360405180602001604052806000815250611631565b60008181526002602052604081205473ffffffffffffffffffffffffffffffffffffffff168061070e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602960248201527f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460448201527f656e7420746f6b656e00000000000000000000000000000000000000000000006064820152608401610853565b336000908152600c602052604090205460ff1680610df15750336000908152600d602052604090205460ff165b610e57576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601560248201527f4e6f7420617070726f766564206f70657261746f7200000000000000000000006044820152606401610853565b60095460405160009173ffffffffffffffffffffffffffffffffffffffff8416918381818185875af1925050503d8060008114610eb0576040519150601f19603f3d011682016040523d82523d6000602084013e610eb5565b606091505b5050905080610f20576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601360248201527f4661696c6564206472697070696e6720455448000000000000000000000000006044820152606401610853565b600a546040517fa9059cbb00000000000000000000000000000000000000000000000000000000815273ffffffffffffffffffffffffffffffffffffffff848116600483015260248201929092527f00000000000000000000000000000000000000000000000000000000000000009091169063a9059cbb90604401602060405180830381600087803b158015610fb657600080fd5b505af1158015610fca573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610fee9190612a2a565b611054576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601360248201527f4661696c6564206472697070696e6720444149000000000000000000000000006044820152606401610853565b600b546040517fa9059cbb00000000000000000000000000000000000000000000000000000000815273ffffffffffffffffffffffffffffffffffffffff848116600483015260248201929092527f00000000000000000000000000000000000000000000000000000000000000009091169063a9059cbb90604401602060405180830381600087803b1580156110ea57600080fd5b505af11580156110fe573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906111229190612a2a565b611188576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601460248201527f4661696c6564206472697070696e6720774554480000000000000000000000006044820152606401610853565b60015b60085481116111bd576111ab83826007546111a69190612bf5565b612302565b806111b581612cb3565b91505061118b565b50600854600760008282546111d29190612bf5565b909155505060405173ffffffffffffffffffffffffffffffffffffffff8316907f15b77122e87b6c2a7a9afcd86d718fe489828e6fd4d686aef3b823179ab04dbf90600090a25050565b600073ffffffffffffffffffffffffffffffffffffffff82166112c1576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602a60248201527f4552433732313a2062616c616e636520717565727920666f7220746865207a6560448201527f726f2061646472657373000000000000000000000000000000000000000000006064820152608401610853565b5073ffffffffffffffffffffffffffffffffffffffff1660009081526003602052604090205490565b336000908152600d602052604090205460ff16611363576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601260248201527f4e6f74207375706572206f70657261746f7200000000000000000000000000006044820152606401610853565b73ffffffffffffffffffffffffffffffffffffffff82166000818152600c602090815260409182902080547fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff001685151590811790915591519182527f966c160e1c4dbc7df8d69af4ace01e9297c3cf016397b7914971f2fbfa32672d91015b60405180910390a25050565b60606001805461072390612c5f565b336000908152600d602052604090205460ff16611476576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601260248201527f4e6f74207375706572206f70657261746f7200000000000000000000000000006044820152606401610853565b8051611489906006906020840190612766565b5050565b336000908152600d602052604090205460ff16611506576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601260248201527f4e6f74207375706572206f70657261746f7200000000000000000000000000006044820152606401610853565b600893909355600991909155600a55600b55565b73ffffffffffffffffffffffffffffffffffffffff821633141561159a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601960248201527f4552433732313a20617070726f766520746f2063616c6c6572000000000000006044820152606401610853565b33600081815260056020908152604080832073ffffffffffffffffffffffffffffffffffffffff87168085529083529281902080547fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff001686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b61163b3383611f2b565b6116c7576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152603160248201527f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f60448201527f776e6572206e6f7220617070726f7665640000000000000000000000000000006064820152608401610853565b6116d3848484846124c4565b50505050565b60008181526002602052604090205460609073ffffffffffffffffffffffffffffffffffffffff1661178d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602f60248201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60448201527f6e6578697374656e7420746f6b656e00000000000000000000000000000000006064820152608401610853565b6006805461179a90612c5f565b80601f01602080910402602001604051908101604052809291908181526020018280546117c690612c5f565b80156118135780601f106117e857610100808354040283529160200191611813565b820191906000526020600020905b8154815290600101906020018083116117f657829003601f168201915b50505050509050919050565b336000908152600d602052604090205460ff16611898576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601260248201527f4e6f74207375706572206f70657261746f7200000000000000000000000000006044820152606401610853565b73ffffffffffffffffffffffffffffffffffffffff82166000818152600d602090815260409182902080547fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff001685151590811790915591519182527f16b3641b846fa469157c01910687996a0318a9c2159e882502ed4d838d593c4291016113e2565b336000908152600d602052604090205460ff16611994576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601260248201527f4e6f74207375706572206f70657261746f7200000000000000000000000000006044820152606401610853565b60008173ffffffffffffffffffffffffffffffffffffffff164760405160006040518083038185875af1925050503d80600081146119ee576040519150601f19603f3d011682016040523d82523d6000602084013e6119f3565b606091505b5050905080611a5e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601360248201527f4661696c656420647261696e696e6720455448000000000000000000000000006044820152606401610853565b6040517f70a082310000000000000000000000000000000000000000000000000000000081523060048201526000907f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff16906370a082319060240160206040518083038186803b158015611ae657600080fd5b505afa158015611afa573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611b1e9190612ae3565b6040517fa9059cbb00000000000000000000000000000000000000000000000000000000815273ffffffffffffffffffffffffffffffffffffffff8581166004830152602482018390529192507f00000000000000000000000000000000000000000000000000000000000000009091169063a9059cbb90604401602060405180830381600087803b158015611bb357600080fd5b505af1158015611bc7573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611beb9190612a2a565b611c51576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601360248201527f4661696c656420647261696e696e6720444149000000000000000000000000006044820152606401610853565b6040517f70a082310000000000000000000000000000000000000000000000000000000081523060048201526000907f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff16906370a082319060240160206040518083038186803b158015611cd957600080fd5b505afa158015611ced573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611d119190612ae3565b6040517fa9059cbb00000000000000000000000000000000000000000000000000000000815273ffffffffffffffffffffffffffffffffffffffff8681166004830152602482018390529192507f00000000000000000000000000000000000000000000000000000000000000009091169063a9059cbb90604401602060405180830381600087803b158015611da657600080fd5b505af1158015611dba573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611dde9190612a2a565b611e44576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601460248201527f4661696c6564206472697070696e6720774554480000000000000000000000006044820152606401610853565b60405173ffffffffffffffffffffffffffffffffffffffff8516907f7c8fc2d32492ea30dc289f81f32ebd6e1bcb12644f56039a3a274a924decc4a190600090a250505050565b600081815260046020526040902080547fffffffffffffffffffffffff00000000000000000000000000000000000000001673ffffffffffffffffffffffffffffffffffffffff84169081179091558190611ee582610d12565b73ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b60008181526002602052604081205473ffffffffffffffffffffffffffffffffffffffff16611fdc576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602c60248201527f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860448201527f697374656e7420746f6b656e00000000000000000000000000000000000000006064820152608401610853565b6000611fe783610d12565b90508073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff16148061205657508373ffffffffffffffffffffffffffffffffffffffff1661203e846107a6565b73ffffffffffffffffffffffffffffffffffffffff16145b80612093575073ffffffffffffffffffffffffffffffffffffffff80821660009081526005602090815260408083209388168352929052205460ff165b949350505050565b8273ffffffffffffffffffffffffffffffffffffffff166120bb82610d12565b73ffffffffffffffffffffffffffffffffffffffff161461215e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602960248201527f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960448201527f73206e6f74206f776e00000000000000000000000000000000000000000000006064820152608401610853565b73ffffffffffffffffffffffffffffffffffffffff8216612200576040517f08c379a0000000000000000000000000000000000000000000000000000000008152602060048201526024808201527f4552433732313a207472616e7366657220746f20746865207a65726f2061646460448201527f72657373000000000000000000000000000000000000000000000000000000006064820152608401610853565b61220b600082611e8b565b73ffffffffffffffffffffffffffffffffffffffff83166000908152600360205260408120805460019290612241908490612c48565b909155505073ffffffffffffffffffffffffffffffffffffffff8216600090815260036020526040812080546001929061227c908490612bf5565b909155505060008181526002602052604080822080547fffffffffffffffffffffffff00000000000000000000000000000000000000001673ffffffffffffffffffffffffffffffffffffffff86811691821790925591518493918716917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef91a4505050565b73ffffffffffffffffffffffffffffffffffffffff821661237f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820181905260248201527f4552433732313a206d696e7420746f20746865207a65726f20616464726573736044820152606401610853565b60008181526002602052604090205473ffffffffffffffffffffffffffffffffffffffff161561240b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601c60248201527f4552433732313a20746f6b656e20616c7265616479206d696e746564000000006044820152606401610853565b73ffffffffffffffffffffffffffffffffffffffff82166000908152600360205260408120805460019290612441908490612bf5565b909155505060008181526002602052604080822080547fffffffffffffffffffffffff00000000000000000000000000000000000000001673ffffffffffffffffffffffffffffffffffffffff861690811790915590518392907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a45050565b6124cf84848461209b565b6124db84848484612567565b6116d3576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152603260248201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560448201527f63656976657220696d706c656d656e74657200000000000000000000000000006064820152608401610853565b600073ffffffffffffffffffffffffffffffffffffffff84163b1561275b576040517f150b7a0200000000000000000000000000000000000000000000000000000000815273ffffffffffffffffffffffffffffffffffffffff85169063150b7a02906125de903390899088908890600401612b99565b602060405180830381600087803b1580156125f857600080fd5b505af1925050508015612646575060408051601f3d9081017fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe016820190925261264391810190612a64565b60015b612710573d808015612674576040519150601f19603f3d011682016040523d82523d6000602084013e612679565b606091505b508051612708576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152603260248201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560448201527f63656976657220696d706c656d656e74657200000000000000000000000000006064820152608401610853565b805181602001fd5b7fffffffff00000000000000000000000000000000000000000000000000000000167f150b7a0200000000000000000000000000000000000000000000000000000000149050612093565b506001949350505050565b82805461277290612c5f565b90600052602060002090601f01602090048101928261279457600085556127da565b82601f106127ad57805160ff19168380011785556127da565b828001600101855582156127da579182015b828111156127da5782518255916020019190600101906127bf565b506127e69291506127ea565b5090565b5b808211156127e657600081556001016127eb565b600067ffffffffffffffff8084111561281a5761281a612d1b565b604051601f85017fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe0908116603f0116810190828211818310171561286057612860612d1b565b8160405280935085815286868601111561287957600080fd5b858560208301376000602087830101525050509392505050565b803573ffffffffffffffffffffffffffffffffffffffff811681146128b757600080fd5b919050565b6000602082840312156128ce57600080fd5b6128d782612893565b9392505050565b600080604083850312156128f157600080fd5b6128fa83612893565b915061290860208401612893565b90509250929050565b60008060006060848603121561292657600080fd5b61292f84612893565b925061293d60208501612893565b9150604084013590509250925092565b6000806000806080858703121561296357600080fd5b61296c85612893565b935061297a60208601612893565b925060408501359150606085013567ffffffffffffffff81111561299d57600080fd5b8501601f810187136129ae57600080fd5b6129bd878235602084016127ff565b91505092959194509250565b600080604083850312156129dc57600080fd5b6129e583612893565b915060208301356129f581612d4a565b809150509250929050565b60008060408385031215612a1357600080fd5b612a1c83612893565b946020939093013593505050565b600060208284031215612a3c57600080fd5b81516128d781612d4a565b600060208284031215612a5957600080fd5b81356128d781612d5b565b600060208284031215612a7657600080fd5b81516128d781612d5b565b600060208284031215612a9357600080fd5b813567ffffffffffffffff811115612aaa57600080fd5b8201601f81018413612abb57600080fd5b612093848235602084016127ff565b600060208284031215612adc57600080fd5b5035919050565b600060208284031215612af557600080fd5b5051919050565b60008060008060808587031215612b1257600080fd5b5050823594602084013594506040840135936060013592509050565b6000815180845260005b81811015612b5457602081850181015186830182015201612b38565b81811115612b66576000602083870101525b50601f017fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe0169290920160200192915050565b600073ffffffffffffffffffffffffffffffffffffffff808716835280861660208401525083604083015260806060830152612bd86080830184612b2e565b9695505050505050565b6020815260006128d76020830184612b2e565b60008219821115612c0857612c08612cec565b500190565b600082612c43577f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b500490565b600082821015612c5a57612c5a612cec565b500390565b600181811c90821680612c7357607f821691505b60208210811415612cad577f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b50919050565b60007fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff821415612ce557612ce5612cec565b5060010190565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b8015158114612d5857600080fd5b50565b7fffffffff0000000000000000000000000000000000000000000000000000000081168114612d5857600080fdfea2646970667358221220433945fa440a5b76b7d1a1716183c52fa5bed1b7dda12505395fc596fd16fff764736f6c634300080700330000000000000000000000004c153bfad26628bdbafecbcd160a0790b1b8f212000000000000000000000000d909178cc99d318e4d46e7e66a972955859670e10000000000000000000000000000000000000000000000000000000000000060000000000000000000000000000000000000000000000000000000000000005068747470733a2f2f697066732e696f2f697066732f62616679626569657a6564733537366b796761726c71363732636e6a74696d627372737078356233747233676374326c687175643661626a67697500000000000000000000000000000000
Deployed Bytecode
0x6080604052600436106101d15760003560e01c8063929398f5116100f7578063b88d4fde11610095578063e0bab4c411610064578063e0bab4c414610555578063e985e9c514610589578063ece53132146105df578063ff721aba146105ff57600080fd5b8063b88d4fde146104df578063c14033ba146104ff578063c87b56dd14610515578063d370169d1461053557600080fd5b80639d4944c8116100d15780639d4944c81461043b5780639f40c9a71461045b578063a22cb4651461048b578063ad5c4648146104ab57600080fd5b8063929398f5146103f057806395d89b411461040657806398cd61531461041b57600080fd5b806342842e0e1161016f5780636e99fddf1161013e5780636e99fddf1461038457806370a082311461039a57806377caec8d146103ba57806383464e22146103da57600080fd5b806342842e0e1461030057806360df19e0146103205780636352211e1461034457806367a5cd061461036457600080fd5b8063095ea7b3116101ab578063095ea7b3146102795780631141d7de1461029b57806323b872dd146102b057806324cf0771146102d057600080fd5b806301ffc9a7146101dd57806306fdde0314610212578063081812fc1461023457600080fd5b366101d857005b600080fd5b3480156101e957600080fd5b506101fd6101f8366004612a47565b61062f565b60405190151581526020015b60405180910390f35b34801561021e57600080fd5b50610227610714565b6040516102099190612be2565b34801561024057600080fd5b5061025461024f366004612aca565b6107a6565b60405173ffffffffffffffffffffffffffffffffffffffff9091168152602001610209565b34801561028557600080fd5b50610299610294366004612a00565b610885565b005b3480156102a757600080fd5b50610227610a12565b3480156102bc57600080fd5b506102996102cb366004612911565b610aa0565b3480156102dc57600080fd5b506102e5610b41565b60408051938452602084019290925290820152606001610209565b34801561030c57600080fd5b5061029961031b366004612911565b610cf7565b34801561032c57600080fd5b5061033660075481565b604051908152602001610209565b34801561035057600080fd5b5061025461035f366004612aca565b610d12565b34801561037057600080fd5b5061029961037f3660046128bc565b610dc4565b34801561039057600080fd5b5061033660085481565b3480156103a657600080fd5b506103366103b53660046128bc565b61121c565b3480156103c657600080fd5b506102996103d53660046129c9565b6112ea565b3480156103e657600080fd5b50610336600b5481565b3480156103fc57600080fd5b50610336600a5481565b34801561041257600080fd5b506102276113ee565b34801561042757600080fd5b50610299610436366004612a81565b6113fd565b34801561044757600080fd5b50610299610456366004612afc565b61148d565b34801561046757600080fd5b506101fd6104763660046128bc565b600d6020526000908152604090205460ff1681565b34801561049757600080fd5b506102996104a63660046129c9565b61151a565b3480156104b757600080fd5b506102547f000000000000000000000000d909178cc99d318e4d46e7e66a972955859670e181565b3480156104eb57600080fd5b506102996104fa36600461294d565b611631565b34801561050b57600080fd5b5061033660095481565b34801561052157600080fd5b50610227610530366004612aca565b6116d9565b34801561054157600080fd5b506102996105503660046129c9565b61181f565b34801561056157600080fd5b506102547f0000000000000000000000004c153bfad26628bdbafecbcd160a0790b1b8f21281565b34801561059557600080fd5b506101fd6105a43660046128de565b73ffffffffffffffffffffffffffffffffffffffff918216600090815260056020908152604080832093909416825291909152205460ff1690565b3480156105eb57600080fd5b506102996105fa3660046128bc565b61191b565b34801561060b57600080fd5b506101fd61061a3660046128bc565b600c6020526000908152604090205460ff1681565b60007fffffffff0000000000000000000000000000000000000000000000000000000082167f80ac58cd0000000000000000000000000000000000000000000000000000000014806106c257507fffffffff0000000000000000000000000000000000000000000000000000000082167f5b5e139f00000000000000000000000000000000000000000000000000000000145b8061070e57507f01ffc9a7000000000000000000000000000000000000000000000000000000007fffffffff000000000000000000000000000000000000000000000000000000008316145b92915050565b60606000805461072390612c5f565b80601f016020809104026020016040519081016040528092919081815260200182805461074f90612c5f565b801561079c5780601f106107715761010080835404028352916020019161079c565b820191906000526020600020905b81548152906001019060200180831161077f57829003601f168201915b5050505050905090565b60008181526002602052604081205473ffffffffffffffffffffffffffffffffffffffff1661085c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602c60248201527f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860448201527f697374656e7420746f6b656e000000000000000000000000000000000000000060648201526084015b60405180910390fd5b5060009081526004602052604090205473ffffffffffffffffffffffffffffffffffffffff1690565b600061089082610d12565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16141561094e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602160248201527f4552433732313a20617070726f76616c20746f2063757272656e74206f776e6560448201527f72000000000000000000000000000000000000000000000000000000000000006064820152608401610853565b3373ffffffffffffffffffffffffffffffffffffffff82161480610977575061097781336105a4565b610a03576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152603860248201527f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760448201527f6e6572206e6f7220617070726f76656420666f7220616c6c00000000000000006064820152608401610853565b610a0d8383611e8b565b505050565b60068054610a1f90612c5f565b80601f0160208091040260200160405190810160405280929190818152602001828054610a4b90612c5f565b8015610a985780601f10610a6d57610100808354040283529160200191610a98565b820191906000526020600020905b815481529060010190602001808311610a7b57829003601f168201915b505050505081565b610aaa3382611f2b565b610b36576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152603160248201527f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f60448201527f776e6572206e6f7220617070726f7665640000000000000000000000000000006064820152608401610853565b610a0d83838361209b565b600080600060095447610b549190612c0d565b600a546040517f70a082310000000000000000000000000000000000000000000000000000000081523060048201529194509073ffffffffffffffffffffffffffffffffffffffff7f0000000000000000000000004c153bfad26628bdbafecbcd160a0790b1b8f21216906370a082319060240160206040518083038186803b158015610be057600080fd5b505afa158015610bf4573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610c189190612ae3565b610c229190612c0d565b600b546040517f70a082310000000000000000000000000000000000000000000000000000000081523060048201529193509073ffffffffffffffffffffffffffffffffffffffff7f000000000000000000000000d909178cc99d318e4d46e7e66a972955859670e116906370a082319060240160206040518083038186803b158015610cae57600080fd5b505afa158015610cc2573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610ce69190612ae3565b610cf09190612c0d565b9050909192565b610a0d83838360405180602001604052806000815250611631565b60008181526002602052604081205473ffffffffffffffffffffffffffffffffffffffff168061070e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602960248201527f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460448201527f656e7420746f6b656e00000000000000000000000000000000000000000000006064820152608401610853565b336000908152600c602052604090205460ff1680610df15750336000908152600d602052604090205460ff165b610e57576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601560248201527f4e6f7420617070726f766564206f70657261746f7200000000000000000000006044820152606401610853565b60095460405160009173ffffffffffffffffffffffffffffffffffffffff8416918381818185875af1925050503d8060008114610eb0576040519150601f19603f3d011682016040523d82523d6000602084013e610eb5565b606091505b5050905080610f20576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601360248201527f4661696c6564206472697070696e6720455448000000000000000000000000006044820152606401610853565b600a546040517fa9059cbb00000000000000000000000000000000000000000000000000000000815273ffffffffffffffffffffffffffffffffffffffff848116600483015260248201929092527f0000000000000000000000004c153bfad26628bdbafecbcd160a0790b1b8f2129091169063a9059cbb90604401602060405180830381600087803b158015610fb657600080fd5b505af1158015610fca573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610fee9190612a2a565b611054576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601360248201527f4661696c6564206472697070696e6720444149000000000000000000000000006044820152606401610853565b600b546040517fa9059cbb00000000000000000000000000000000000000000000000000000000815273ffffffffffffffffffffffffffffffffffffffff848116600483015260248201929092527f000000000000000000000000d909178cc99d318e4d46e7e66a972955859670e19091169063a9059cbb90604401602060405180830381600087803b1580156110ea57600080fd5b505af11580156110fe573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906111229190612a2a565b611188576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601460248201527f4661696c6564206472697070696e6720774554480000000000000000000000006044820152606401610853565b60015b60085481116111bd576111ab83826007546111a69190612bf5565b612302565b806111b581612cb3565b91505061118b565b50600854600760008282546111d29190612bf5565b909155505060405173ffffffffffffffffffffffffffffffffffffffff8316907f15b77122e87b6c2a7a9afcd86d718fe489828e6fd4d686aef3b823179ab04dbf90600090a25050565b600073ffffffffffffffffffffffffffffffffffffffff82166112c1576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602a60248201527f4552433732313a2062616c616e636520717565727920666f7220746865207a6560448201527f726f2061646472657373000000000000000000000000000000000000000000006064820152608401610853565b5073ffffffffffffffffffffffffffffffffffffffff1660009081526003602052604090205490565b336000908152600d602052604090205460ff16611363576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601260248201527f4e6f74207375706572206f70657261746f7200000000000000000000000000006044820152606401610853565b73ffffffffffffffffffffffffffffffffffffffff82166000818152600c602090815260409182902080547fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff001685151590811790915591519182527f966c160e1c4dbc7df8d69af4ace01e9297c3cf016397b7914971f2fbfa32672d91015b60405180910390a25050565b60606001805461072390612c5f565b336000908152600d602052604090205460ff16611476576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601260248201527f4e6f74207375706572206f70657261746f7200000000000000000000000000006044820152606401610853565b8051611489906006906020840190612766565b5050565b336000908152600d602052604090205460ff16611506576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601260248201527f4e6f74207375706572206f70657261746f7200000000000000000000000000006044820152606401610853565b600893909355600991909155600a55600b55565b73ffffffffffffffffffffffffffffffffffffffff821633141561159a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601960248201527f4552433732313a20617070726f766520746f2063616c6c6572000000000000006044820152606401610853565b33600081815260056020908152604080832073ffffffffffffffffffffffffffffffffffffffff87168085529083529281902080547fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff001686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b61163b3383611f2b565b6116c7576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152603160248201527f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f60448201527f776e6572206e6f7220617070726f7665640000000000000000000000000000006064820152608401610853565b6116d3848484846124c4565b50505050565b60008181526002602052604090205460609073ffffffffffffffffffffffffffffffffffffffff1661178d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602f60248201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60448201527f6e6578697374656e7420746f6b656e00000000000000000000000000000000006064820152608401610853565b6006805461179a90612c5f565b80601f01602080910402602001604051908101604052809291908181526020018280546117c690612c5f565b80156118135780601f106117e857610100808354040283529160200191611813565b820191906000526020600020905b8154815290600101906020018083116117f657829003601f168201915b50505050509050919050565b336000908152600d602052604090205460ff16611898576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601260248201527f4e6f74207375706572206f70657261746f7200000000000000000000000000006044820152606401610853565b73ffffffffffffffffffffffffffffffffffffffff82166000818152600d602090815260409182902080547fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff001685151590811790915591519182527f16b3641b846fa469157c01910687996a0318a9c2159e882502ed4d838d593c4291016113e2565b336000908152600d602052604090205460ff16611994576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601260248201527f4e6f74207375706572206f70657261746f7200000000000000000000000000006044820152606401610853565b60008173ffffffffffffffffffffffffffffffffffffffff164760405160006040518083038185875af1925050503d80600081146119ee576040519150601f19603f3d011682016040523d82523d6000602084013e6119f3565b606091505b5050905080611a5e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601360248201527f4661696c656420647261696e696e6720455448000000000000000000000000006044820152606401610853565b6040517f70a082310000000000000000000000000000000000000000000000000000000081523060048201526000907f0000000000000000000000004c153bfad26628bdbafecbcd160a0790b1b8f21273ffffffffffffffffffffffffffffffffffffffff16906370a082319060240160206040518083038186803b158015611ae657600080fd5b505afa158015611afa573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611b1e9190612ae3565b6040517fa9059cbb00000000000000000000000000000000000000000000000000000000815273ffffffffffffffffffffffffffffffffffffffff8581166004830152602482018390529192507f0000000000000000000000004c153bfad26628bdbafecbcd160a0790b1b8f2129091169063a9059cbb90604401602060405180830381600087803b158015611bb357600080fd5b505af1158015611bc7573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611beb9190612a2a565b611c51576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601360248201527f4661696c656420647261696e696e6720444149000000000000000000000000006044820152606401610853565b6040517f70a082310000000000000000000000000000000000000000000000000000000081523060048201526000907f000000000000000000000000d909178cc99d318e4d46e7e66a972955859670e173ffffffffffffffffffffffffffffffffffffffff16906370a082319060240160206040518083038186803b158015611cd957600080fd5b505afa158015611ced573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611d119190612ae3565b6040517fa9059cbb00000000000000000000000000000000000000000000000000000000815273ffffffffffffffffffffffffffffffffffffffff8681166004830152602482018390529192507f000000000000000000000000d909178cc99d318e4d46e7e66a972955859670e19091169063a9059cbb90604401602060405180830381600087803b158015611da657600080fd5b505af1158015611dba573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611dde9190612a2a565b611e44576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601460248201527f4661696c6564206472697070696e6720774554480000000000000000000000006044820152606401610853565b60405173ffffffffffffffffffffffffffffffffffffffff8516907f7c8fc2d32492ea30dc289f81f32ebd6e1bcb12644f56039a3a274a924decc4a190600090a250505050565b600081815260046020526040902080547fffffffffffffffffffffffff00000000000000000000000000000000000000001673ffffffffffffffffffffffffffffffffffffffff84169081179091558190611ee582610d12565b73ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b60008181526002602052604081205473ffffffffffffffffffffffffffffffffffffffff16611fdc576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602c60248201527f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860448201527f697374656e7420746f6b656e00000000000000000000000000000000000000006064820152608401610853565b6000611fe783610d12565b90508073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff16148061205657508373ffffffffffffffffffffffffffffffffffffffff1661203e846107a6565b73ffffffffffffffffffffffffffffffffffffffff16145b80612093575073ffffffffffffffffffffffffffffffffffffffff80821660009081526005602090815260408083209388168352929052205460ff165b949350505050565b8273ffffffffffffffffffffffffffffffffffffffff166120bb82610d12565b73ffffffffffffffffffffffffffffffffffffffff161461215e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602960248201527f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960448201527f73206e6f74206f776e00000000000000000000000000000000000000000000006064820152608401610853565b73ffffffffffffffffffffffffffffffffffffffff8216612200576040517f08c379a0000000000000000000000000000000000000000000000000000000008152602060048201526024808201527f4552433732313a207472616e7366657220746f20746865207a65726f2061646460448201527f72657373000000000000000000000000000000000000000000000000000000006064820152608401610853565b61220b600082611e8b565b73ffffffffffffffffffffffffffffffffffffffff83166000908152600360205260408120805460019290612241908490612c48565b909155505073ffffffffffffffffffffffffffffffffffffffff8216600090815260036020526040812080546001929061227c908490612bf5565b909155505060008181526002602052604080822080547fffffffffffffffffffffffff00000000000000000000000000000000000000001673ffffffffffffffffffffffffffffffffffffffff86811691821790925591518493918716917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef91a4505050565b73ffffffffffffffffffffffffffffffffffffffff821661237f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820181905260248201527f4552433732313a206d696e7420746f20746865207a65726f20616464726573736044820152606401610853565b60008181526002602052604090205473ffffffffffffffffffffffffffffffffffffffff161561240b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601c60248201527f4552433732313a20746f6b656e20616c7265616479206d696e746564000000006044820152606401610853565b73ffffffffffffffffffffffffffffffffffffffff82166000908152600360205260408120805460019290612441908490612bf5565b909155505060008181526002602052604080822080547fffffffffffffffffffffffff00000000000000000000000000000000000000001673ffffffffffffffffffffffffffffffffffffffff861690811790915590518392907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a45050565b6124cf84848461209b565b6124db84848484612567565b6116d3576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152603260248201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560448201527f63656976657220696d706c656d656e74657200000000000000000000000000006064820152608401610853565b600073ffffffffffffffffffffffffffffffffffffffff84163b1561275b576040517f150b7a0200000000000000000000000000000000000000000000000000000000815273ffffffffffffffffffffffffffffffffffffffff85169063150b7a02906125de903390899088908890600401612b99565b602060405180830381600087803b1580156125f857600080fd5b505af1925050508015612646575060408051601f3d9081017fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe016820190925261264391810190612a64565b60015b612710573d808015612674576040519150601f19603f3d011682016040523d82523d6000602084013e612679565b606091505b508051612708576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152603260248201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560448201527f63656976657220696d706c656d656e74657200000000000000000000000000006064820152608401610853565b805181602001fd5b7fffffffff00000000000000000000000000000000000000000000000000000000167f150b7a0200000000000000000000000000000000000000000000000000000000149050612093565b506001949350505050565b82805461277290612c5f565b90600052602060002090601f01602090048101928261279457600085556127da565b82601f106127ad57805160ff19168380011785556127da565b828001600101855582156127da579182015b828111156127da5782518255916020019190600101906127bf565b506127e69291506127ea565b5090565b5b808211156127e657600081556001016127eb565b600067ffffffffffffffff8084111561281a5761281a612d1b565b604051601f85017fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe0908116603f0116810190828211818310171561286057612860612d1b565b8160405280935085815286868601111561287957600080fd5b858560208301376000602087830101525050509392505050565b803573ffffffffffffffffffffffffffffffffffffffff811681146128b757600080fd5b919050565b6000602082840312156128ce57600080fd5b6128d782612893565b9392505050565b600080604083850312156128f157600080fd5b6128fa83612893565b915061290860208401612893565b90509250929050565b60008060006060848603121561292657600080fd5b61292f84612893565b925061293d60208501612893565b9150604084013590509250925092565b6000806000806080858703121561296357600080fd5b61296c85612893565b935061297a60208601612893565b925060408501359150606085013567ffffffffffffffff81111561299d57600080fd5b8501601f810187136129ae57600080fd5b6129bd878235602084016127ff565b91505092959194509250565b600080604083850312156129dc57600080fd5b6129e583612893565b915060208301356129f581612d4a565b809150509250929050565b60008060408385031215612a1357600080fd5b612a1c83612893565b946020939093013593505050565b600060208284031215612a3c57600080fd5b81516128d781612d4a565b600060208284031215612a5957600080fd5b81356128d781612d5b565b600060208284031215612a7657600080fd5b81516128d781612d5b565b600060208284031215612a9357600080fd5b813567ffffffffffffffff811115612aaa57600080fd5b8201601f81018413612abb57600080fd5b612093848235602084016127ff565b600060208284031215612adc57600080fd5b5035919050565b600060208284031215612af557600080fd5b5051919050565b60008060008060808587031215612b1257600080fd5b5050823594602084013594506040840135936060013592509050565b6000815180845260005b81811015612b5457602081850181015186830182015201612b38565b81811115612b66576000602083870101525b50601f017fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe0169290920160200192915050565b600073ffffffffffffffffffffffffffffffffffffffff808716835280861660208401525083604083015260806060830152612bd86080830184612b2e565b9695505050505050565b6020815260006128d76020830184612b2e565b60008219821115612c0857612c08612cec565b500190565b600082612c43577f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b500490565b600082821015612c5a57612c5a612cec565b500390565b600181811c90821680612c7357607f821691505b60208210811415612cad577f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b50919050565b60007fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff821415612ce557612ce5612cec565b5060010190565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b8015158114612d5857600080fd5b50565b7fffffffff0000000000000000000000000000000000000000000000000000000081168114612d5857600080fdfea2646970667358221220433945fa440a5b76b7d1a1716183c52fa5bed1b7dda12505395fc596fd16fff764736f6c63430008070033
Constructor Arguments (ABI-Encoded and is the last bytes of the Contract Creation Code above)
0000000000000000000000004c153bfad26628bdbafecbcd160a0790b1b8f212000000000000000000000000d909178cc99d318e4d46e7e66a972955859670e10000000000000000000000000000000000000000000000000000000000000060000000000000000000000000000000000000000000000000000000000000005068747470733a2f2f697066732e696f2f697066732f62616679626569657a6564733537366b796761726c71363732636e6a74696d627372737078356233747233676374326c687175643661626a67697500000000000000000000000000000000
-----Decoded View---------------
Arg [0] : _DAI (address): 0x4C153BFaD26628BdbaFECBCD160A0790b1b8F212
Arg [1] : _WETH (address): 0xD909178CC99d318e4D46e7E66a972955859670E1
Arg [2] : _URI (string): https://ipfs.io/ipfs/bafybeiezeds576kygarlq672cnjtimbsrspx5b3tr3gct2lhqud6abjgiu
-----Encoded View---------------
7 Constructor Arguments found :
Arg [0] : 0000000000000000000000004c153bfad26628bdbafecbcd160a0790b1b8f212
Arg [1] : 000000000000000000000000d909178cc99d318e4d46e7e66a972955859670e1
Arg [2] : 0000000000000000000000000000000000000000000000000000000000000060
Arg [3] : 0000000000000000000000000000000000000000000000000000000000000050
Arg [4] : 68747470733a2f2f697066732e696f2f697066732f62616679626569657a6564
Arg [5] : 733537366b796761726c71363732636e6a74696d627372737078356233747233
Arg [6] : 676374326c687175643661626a67697500000000000000000000000000000000
Deployed Bytecode Sourcemap
33038:6924:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;20464:305;;;;;;;;;;-1:-1:-1;20464:305:0;;;;;:::i;:::-;;:::i;:::-;;;6881:14:1;;6874:22;6856:41;;6844:2;6829:18;20464:305:0;;;;;;;;21409:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;22968:221::-;;;;;;;;;;-1:-1:-1;22968:221:0;;;;;:::i;:::-;;:::i;:::-;;;5843:42:1;5831:55;;;5813:74;;5801:2;5786:18;22968:221:0;5667:226:1;22491:411:0;;;;;;;;;;-1:-1:-1;22491:411:0;;;;;:::i;:::-;;:::i;:::-;;33357:17;;;;;;;;;;;;;:::i;23858:339::-;;;;;;;;;;-1:-1:-1;23858:339:0;;;;;:::i;:::-;;:::i;36856:311::-;;;;;;;;;;;;;:::i;:::-;;;;15814:25:1;;;15870:2;15855:18;;15848:34;;;;15898:18;;;15891:34;15802:2;15787:18;36856:311:0;15612:319:1;24268:185:0;;;;;;;;;;-1:-1:-1;24268:185:0;;;;;:::i;:::-;;:::i;33419:25::-;;;;;;;;;;;;;;;;;;;15576::1;;;15564:2;15549:18;33419:25:0;15430:177:1;21103:239:0;;;;;;;;;;-1:-1:-1;21103:239:0;;;;;:::i;:::-;;:::i;36010:624::-;;;;;;;;;;-1:-1:-1;36010:624:0;;;;;:::i;:::-;;:::i;33498:28::-;;;;;;;;;;;;;;;;20833:208;;;;;;;;;;-1:-1:-1;20833:208:0;;;;;:::i;:::-;;:::i;38099:224::-;;;;;;;;;;-1:-1:-1;38099:224:0;;;;;:::i;:::-;;:::i;33715:33::-;;;;;;;;;;;;;;;;33638:36;;;;;;;;;;;;;;;;21578:104;;;;;;;;;;;;;:::i;39219:98::-;;;;;;;;;;-1:-1:-1;39219:98:0;;;;;:::i;:::-;;:::i;39564:320::-;;;;;;;;;;-1:-1:-1;39564:320:0;;;;;:::i;:::-;;:::i;33906:46::-;;;;;;;;;;-1:-1:-1;33906:46:0;;;;;:::i;:::-;;;;;;;;;;;;;;;;23261:295;;;;;;;;;;-1:-1:-1;23261:295:0;;;;;:::i;:::-;;:::i;33234:28::-;;;;;;;;;;;;;;;24524:328;;;;;;;;;;-1:-1:-1;24524:328:0;;;;;:::i;:::-;;:::i;33566:32::-;;;;;;;;;;;;;;;;38863:256;;;;;;;;;;-1:-1:-1;38863:256:0;;;;;:::i;:::-;;:::i;38514:221::-;;;;;;;;;;-1:-1:-1;38514:221:0;;;;;:::i;:::-;;:::i;33166:27::-;;;;;;;;;;;;;;;23627:164;;;;;;;;;;-1:-1:-1;23627:164:0;;;;;:::i;:::-;23748:25;;;;23724:4;23748:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;;;;23627:164;37295:601;;;;;;;;;;-1:-1:-1;37295:601:0;;;;;:::i;:::-;;:::i;33804:49::-;;;;;;;;;;-1:-1:-1;33804:49:0;;;;;:::i;:::-;;;;;;;;;;;;;;;;20464:305;20566:4;20603:40;;;20618:25;20603:40;;:105;;-1:-1:-1;20660:48:0;;;20675:33;20660:48;20603:105;:158;;;-1:-1:-1;13651:25:0;13636:40;;;;20725:36;20583:178;20464:305;-1:-1:-1;;20464:305:0:o;21409:100::-;21463:13;21496:5;21489:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;21409:100;:::o;22968:221::-;23044:7;26451:16;;;:7;:16;;;;;;:30;:16;23064:73;;;;;;;12875:2:1;23064:73:0;;;12857:21:1;12914:2;12894:18;;;12887:30;12953:34;12933:18;;;12926:62;13024:14;13004:18;;;12997:42;13056:19;;23064:73:0;;;;;;;;;-1:-1:-1;23157:24:0;;;;:15;:24;;;;;;;;;22968:221::o;22491:411::-;22572:13;22588:23;22603:7;22588:14;:23::i;:::-;22572:39;;22636:5;22630:11;;:2;:11;;;;22622:57;;;;;;;14114:2:1;22622:57:0;;;14096:21:1;14153:2;14133:18;;;14126:30;14192:34;14172:18;;;14165:62;14263:3;14243:18;;;14236:31;14284:19;;22622:57:0;13912:397:1;22622:57:0;2789:10;22714:21;;;;;:62;;-1:-1:-1;22739:37:0;22756:5;2789:10;23627:164;:::i;22739:37::-;22692:168;;;;;;;10572:2:1;22692:168:0;;;10554:21:1;10611:2;10591:18;;;10584:30;10650:34;10630:18;;;10623:62;10721:26;10701:18;;;10694:54;10765:19;;22692:168:0;10370:420:1;22692:168:0;22873:21;22882:2;22886:7;22873:8;:21::i;:::-;22561:341;22491:411;;:::o;33357:17::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;23858:339::-;24053:41;2789:10;24086:7;24053:18;:41::i;:::-;24045:103;;;;;;;14516:2:1;24045:103:0;;;14498:21:1;14555:2;14535:18;;;14528:30;14594:34;14574:18;;;14567:62;14665:19;14645:18;;;14638:47;14702:19;;24045:103:0;14314:413:1;24045:103:0;24161:28;24171:4;24177:2;24181:7;24161:9;:28::i;36856:311::-;36913:16;36931;36949:17;37020:10;;36996:21;:34;;;;:::i;:::-;37083:10;;37052:28;;;;;37074:4;37052:28;;;5813:74:1;36985:45:0;;-1:-1:-1;37083:10:0;37052:13;:3;:13;;;;5786:18:1;;37052:28:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;:41;;;;:::i;:::-;37148:11;;37116:29;;;;;37139:4;37116:29;;;5813:74:1;37041:52:0;;-1:-1:-1;37148:11:0;37116:14;:4;:14;;;;5786:18:1;;37116:29:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;:43;;;;:::i;:::-;37104:55;;36856:311;;;:::o;24268:185::-;24406:39;24423:4;24429:2;24433:7;24406:39;;;;;;;;;;;;:16;:39::i;21103:239::-;21175:7;21211:16;;;:7;:16;;;;;;;;21246:19;21238:73;;;;;;;11408:2:1;21238:73:0;;;11390:21:1;11447:2;11427:18;;;11420:30;11486:34;11466:18;;;11459:62;11557:11;11537:18;;;11530:39;11586:19;;21238:73:0;11206:405:1;36010:624:0;34457:10;34439:29;;;;:17;:29;;;;;;;;;:59;;-1:-1:-1;34487:10:0;34472:26;;;;:14;:26;;;;;;;;34439:59;34417:131;;;;;;;15282:2:1;34417:131:0;;;15264:21:1;15321:2;15301:18;;;15294:30;15360:23;15340:18;;;15333:51;15401:18;;34417:131:0;15080:345:1;34417:131:0;36144:10:::1;::::0;36121:38:::1;::::0;36107:9:::1;::::0;36121:15:::1;::::0;::::1;::::0;36107:9;36121:38;36107:9;36121:38;36144:10;36121:15;:38:::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;36106:53;;;36178:4;36170:36;;;::::0;::::1;::::0;;14934:2:1;36170:36:0::1;::::0;::::1;14916:21:1::0;14973:2;14953:18;;;14946:30;15012:21;14992:18;;;14985:49;15051:18;;36170:36:0::1;14732:343:1::0;36170:36:0::1;36273:10;::::0;36248:36:::1;::::0;;;;:12:::1;6606:55:1::0;;;36248:36:0::1;::::0;::::1;6588:74:1::0;6678:18;;;6671:34;;;;36248:3:0::1;:12:::0;;::::1;::::0;::::1;::::0;6561:18:1;;36248:36:0::1;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;36240:68;;;::::0;::::1;::::0;;12527:2:1;36240:68:0::1;::::0;::::1;12509:21:1::0;12566:2;12546:18;;;12539:30;12605:21;12585:18;;;12578:49;12644:18;;36240:68:0::1;12325:343:1::0;36240:68:0::1;36377:11;::::0;36351:38:::1;::::0;;;;:13:::1;6606:55:1::0;;;36351:38:0::1;::::0;::::1;6588:74:1::0;6678:18;;;6671:34;;;;36351:4:0::1;:13:::0;;::::1;::::0;::::1;::::0;6561:18:1;;36351:38:0::1;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;36343:71;;;::::0;::::1;::::0;;10223:2:1;36343:71:0::1;::::0;::::1;10205:21:1::0;10262:2;10242:18;;;10235:30;10301:22;10281:18;;;10274:50;10341:18;;36343:71:0::1;10021:344:1::0;36343:71:0::1;36466:1;36449:101;36474:9;;36469:1;:14;36449:101;;36505:33;36511:10;36536:1;36523:10;;:14;;;;:::i;:::-;36505:5;:33::i;:::-;36485:3:::0;::::1;::::0;::::1;:::i;:::-;;;;36449:101;;;;36574:9;;36560:10;;:23;;;;;;;:::i;:::-;::::0;;;-1:-1:-1;;36601:25:0::1;::::0;::::1;::::0;::::1;::::0;::::1;::::0;;;::::1;36072:562;36010:624:::0;:::o;20833:208::-;20905:7;20933:19;;;20925:74;;;;;;;10997:2:1;20925:74:0;;;10979:21:1;11036:2;11016:18;;;11009:30;11075:34;11055:18;;;11048:62;11146:12;11126:18;;;11119:40;11176:19;;20925:74:0;10795:406:1;20925:74:0;-1:-1:-1;21017:16:0;;;;;;:9;:16;;;;;;;20833:208::o;38099:224::-;34176:10;34161:26;;;;:14;:26;;;;;;;;34153:57;;;;;;;7928:2:1;34153:57:0;;;7910:21:1;7967:2;7947:18;;;7940:30;8006:20;7986:18;;;7979:48;8044:18;;34153:57:0;7726:342:1;34153:57:0;38226:28:::1;::::0;::::1;;::::0;;;:17:::1;:28;::::0;;;;;;;;:38;;;::::1;::::0;::::1;;::::0;;::::1;::::0;;;38280:35;;6856:41:1;;;38280:35:0::1;::::0;6829:18:1;38280:35:0::1;;;;;;;;38099:224:::0;;:::o;21578:104::-;21634:13;21667:7;21660:14;;;;;:::i;39219:98::-;34176:10;34161:26;;;;:14;:26;;;;;;;;34153:57;;;;;;;7928:2:1;34153:57:0;;;7910:21:1;7967:2;7947:18;;;7940:30;8006:20;7986:18;;;7979:48;8044:18;;34153:57:0;7726:342:1;34153:57:0;39299:10;;::::1;::::0;:3:::1;::::0;:10:::1;::::0;::::1;::::0;::::1;:::i;:::-;;39219:98:::0;:::o;39564:320::-;34176:10;34161:26;;;;:14;:26;;;;;;;;34153:57;;;;;;;7928:2:1;34153:57:0;;;7910:21:1;7967:2;7947:18;;;7940:30;8006:20;7986:18;;;7979:48;8044:18;;34153:57:0;7726:342:1;34153:57:0;39751:9:::1;:21:::0;;;;39783:10:::1;:23:::0;;;;39817:10:::1;:23:::0;39851:11:::1;:25:::0;39564:320::o;23261:295::-;23364:24;;;2789:10;23364:24;;23356:62;;;;;;;9456:2:1;23356:62:0;;;9438:21:1;9495:2;9475:18;;;9468:30;9534:27;9514:18;;;9507:55;9579:18;;23356:62:0;9254:349:1;23356:62:0;2789:10;23431:32;;;;:18;:32;;;;;;;;;:42;;;;;;;;;;;;:53;;;;;;;;;;;;;23500:48;;6856:41:1;;;23431:42:0;;2789:10;23500:48;;6829:18:1;23500:48:0;;;;;;;23261:295;;:::o;24524:328::-;24699:41;2789:10;24732:7;24699:18;:41::i;:::-;24691:103;;;;;;;14516:2:1;24691:103:0;;;14498:21:1;14555:2;14535:18;;;14528:30;14594:34;14574:18;;;14567:62;14665:19;14645:18;;;14638:47;14702:19;;24691:103:0;14314:413:1;24691:103:0;24805:39;24819:4;24825:2;24829:7;24838:5;24805:13;:39::i;:::-;24524:328;;;;:::o;38863:256::-;26427:4;26451:16;;;:7;:16;;;;;;38936:13;;26451:30;:16;39014:76;;;;;;;13698:2:1;39014:76:0;;;13680:21:1;13737:2;13717:18;;;13710:30;13776:34;13756:18;;;13749:62;13847:17;13827:18;;;13820:45;13882:19;;39014:76:0;13496:411:1;39014:76:0;39108:3;39101:10;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;38863:256;;;:::o;38514:221::-;34176:10;34161:26;;;;:14;:26;;;;;;;;34153:57;;;;;;;7928:2:1;34153:57:0;;;7910:21:1;7967:2;7947:18;;;7940:30;8006:20;7986:18;;;7979:48;8044:18;;34153:57:0;7726:342:1;34153:57:0;38636:25:::1;::::0;::::1;;::::0;;;:14:::1;:25;::::0;;;;;;;;:35;;;::::1;::::0;::::1;;::::0;;::::1;::::0;;;38687:40;;6856:41:1;;;38687:40:0::1;::::0;6829:18:1;38687:40:0::1;6716:187:1::0;37295:601:0;34176:10;34161:26;;;;:14;:26;;;;;;;;34153:57;;;;;;;7928:2:1;34153:57:0;;;7910:21:1;7967:2;7947:18;;;7940:30;8006:20;7986:18;;;7979:48;8044:18;;34153:57:0;7726:342:1;34153:57:0;37395:9:::1;37409:10;:15;;37432:21;37409:49;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;37394:64;;;37477:4;37469:36;;;::::0;::::1;::::0;;7580:2:1;37469:36:0::1;::::0;::::1;7562:21:1::0;7619:2;7599:18;;;7592:30;7658:21;7638:18;;;7631:49;7697:18;;37469:36:0::1;7378:343:1::0;37469:36:0::1;37565:28;::::0;;;;37587:4:::1;37565:28;::::0;::::1;5813:74:1::0;37544:18:0::1;::::0;37565:3:::1;:13;;::::0;::::1;::::0;5786:18:1;;37565:28:0::1;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;37612:36;::::0;;;;:12:::1;6606:55:1::0;;;37612:36:0::1;::::0;::::1;6588:74:1::0;6678:18;;;6671:34;;;37544:49:0;;-1:-1:-1;37612:3:0::1;:12:::0;;::::1;::::0;::::1;::::0;6561:18:1;;37612:36:0::1;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;37604:68;;;::::0;::::1;::::0;;11818:2:1;37604:68:0::1;::::0;::::1;11800:21:1::0;11857:2;11837:18;;;11830:30;11896:21;11876:18;;;11869:49;11935:18;;37604:68:0::1;11616:343:1::0;37604:68:0::1;37734:29;::::0;;;;37757:4:::1;37734:29;::::0;::::1;5813:74:1::0;37712:19:0::1;::::0;37734:4:::1;:14;;::::0;::::1;::::0;5786:18:1;;37734:29:0::1;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;37782:38;::::0;;;;:13:::1;6606:55:1::0;;;37782:38:0::1;::::0;::::1;6588:74:1::0;6678:18;;;6671:34;;;37712:51:0;;-1:-1:-1;37782:4:0::1;:13:::0;;::::1;::::0;::::1;::::0;6561:18:1;;37782:38:0::1;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;37774:71;;;::::0;::::1;::::0;;10223:2:1;37774:71:0::1;::::0;::::1;10205:21:1::0;10262:2;10242:18;;;10235:30;10301:22;10281:18;;;10274:50;10341:18;;37774:71:0::1;10021:344:1::0;37774:71:0::1;37863:25;::::0;::::1;::::0;::::1;::::0;::::1;::::0;;;::::1;37355:541;;;37295:601:::0;:::o;30344:174::-;30419:24;;;;:15;:24;;;;;:29;;;;;;;;;;;;;:24;;30473:23;30419:24;30473:14;:23::i;:::-;30464:46;;;;;;;;;;;;30344:174;;:::o;26656:348::-;26749:4;26451:16;;;:7;:16;;;;;;:30;:16;26766:73;;;;;;;9810:2:1;26766:73:0;;;9792:21:1;9849:2;9829:18;;;9822:30;9888:34;9868:18;;;9861:62;9959:14;9939:18;;;9932:42;9991:19;;26766:73:0;9608:408:1;26766:73:0;26850:13;26866:23;26881:7;26866:14;:23::i;:::-;26850:39;;26919:5;26908:16;;:7;:16;;;:51;;;;26952:7;26928:31;;:20;26940:7;26928:11;:20::i;:::-;:31;;;26908:51;:87;;;-1:-1:-1;23748:25:0;;;;23724:4;23748:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;26963:32;26900:96;26656:348;-1:-1:-1;;;;26656:348:0:o;29648:578::-;29807:4;29780:31;;:23;29795:7;29780:14;:23::i;:::-;:31;;;29772:85;;;;;;;13288:2:1;29772:85:0;;;13270:21:1;13327:2;13307:18;;;13300:30;13366:34;13346:18;;;13339:62;13437:11;13417:18;;;13410:39;13466:19;;29772:85:0;13086:405:1;29772:85:0;29876:16;;;29868:65;;;;;;;9051:2:1;29868:65:0;;;9033:21:1;9090:2;9070:18;;;9063:30;9129:34;9109:18;;;9102:62;9200:6;9180:18;;;9173:34;9224:19;;29868:65:0;8849:400:1;29868:65:0;30050:29;30067:1;30071:7;30050:8;:29::i;:::-;30092:15;;;;;;;:9;:15;;;;;:20;;30111:1;;30092:15;:20;;30111:1;;30092:20;:::i;:::-;;;;-1:-1:-1;;30123:13:0;;;;;;;:9;:13;;;;;:18;;30140:1;;30123:13;:18;;30140:1;;30123:18;:::i;:::-;;;;-1:-1:-1;;30152:16:0;;;;:7;:16;;;;;;:21;;;;;;;;;;;;;;30191:27;;30152:16;;30191:27;;;;;;;29648:578;;;:::o;28340:382::-;28420:16;;;28412:61;;;;;;;12166:2:1;28412:61:0;;;12148:21:1;;;12185:18;;;12178:30;12244:34;12224:18;;;12217:62;12296:18;;28412:61:0;11964:356:1;28412:61:0;26427:4;26451:16;;;:7;:16;;;;;;:30;:16;:30;28484:58;;;;;;;8694:2:1;28484:58:0;;;8676:21:1;8733:2;8713:18;;;8706:30;8772;8752:18;;;8745:58;8820:18;;28484:58:0;8492:352:1;28484:58:0;28613:13;;;;;;;:9;:13;;;;;:18;;28630:1;;28613:13;:18;;28630:1;;28613:18;:::i;:::-;;;;-1:-1:-1;;28642:16:0;;;;:7;:16;;;;;;:21;;;;;;;;;;;;;28681:33;;28642:16;;;28681:33;;28642:16;;28681:33;28340:382;;:::o;25734:315::-;25891:28;25901:4;25907:2;25911:7;25891:9;:28::i;:::-;25938:48;25961:4;25967:2;25971:7;25980:5;25938:22;:48::i;:::-;25930:111;;;;;;;8275:2:1;25930:111:0;;;8257:21:1;8314:2;8294:18;;;8287:30;8353:34;8333:18;;;8326:62;8424:20;8404:18;;;8397:48;8462:19;;25930:111:0;8073:414:1;31083:799:0;31238:4;31259:13;;;3987:20;4035:8;31255:620;;31295:72;;;;;:36;;;;;;:72;;2789:10;;31346:4;;31352:7;;31361:5;;31295:72;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;31295:72:0;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;31291:529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;31537:13:0;;31533:272;;31580:60;;;;;8275:2:1;31580:60:0;;;8257:21:1;8314:2;8294:18;;;8287:30;8353:34;8333:18;;;8326:62;8424:20;8404:18;;;8397:48;8462:19;;31580:60:0;8073:414:1;31533:272:0;31755:6;31749:13;31740:6;31736:2;31732:15;31725:38;31291:529;31418:51;;31428:41;31418:51;;-1:-1:-1;31411:58:0;;31255:620;-1:-1:-1;31859:4:0;31083:799;;;;;;:::o;-1:-1:-1:-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;;;;;;;;;14:690:1;78:5;108:18;149:2;141:6;138:14;135:40;;;155:18;;:::i;:::-;289:2;283:9;355:2;343:15;;194:66;339:24;;;365:2;335:33;331:42;319:55;;;389:18;;;409:22;;;386:46;383:72;;;435:18;;:::i;:::-;475:10;471:2;464:22;504:6;495:15;;534:6;526;519:22;574:3;565:6;560:3;556:16;553:25;550:45;;;591:1;588;581:12;550:45;641:6;636:3;629:4;621:6;617:17;604:44;696:1;689:4;680:6;672;668:19;664:30;657:41;;;;14:690;;;;;:::o;709:196::-;777:20;;837:42;826:54;;816:65;;806:93;;895:1;892;885:12;806:93;709:196;;;:::o;910:186::-;969:6;1022:2;1010:9;1001:7;997:23;993:32;990:52;;;1038:1;1035;1028:12;990:52;1061:29;1080:9;1061:29;:::i;:::-;1051:39;910:186;-1:-1:-1;;;910:186:1:o;1101:260::-;1169:6;1177;1230:2;1218:9;1209:7;1205:23;1201:32;1198:52;;;1246:1;1243;1236:12;1198:52;1269:29;1288:9;1269:29;:::i;:::-;1259:39;;1317:38;1351:2;1340:9;1336:18;1317:38;:::i;:::-;1307:48;;1101:260;;;;;:::o;1366:328::-;1443:6;1451;1459;1512:2;1500:9;1491:7;1487:23;1483:32;1480:52;;;1528:1;1525;1518:12;1480:52;1551:29;1570:9;1551:29;:::i;:::-;1541:39;;1599:38;1633:2;1622:9;1618:18;1599:38;:::i;:::-;1589:48;;1684:2;1673:9;1669:18;1656:32;1646:42;;1366:328;;;;;:::o;1699:666::-;1794:6;1802;1810;1818;1871:3;1859:9;1850:7;1846:23;1842:33;1839:53;;;1888:1;1885;1878:12;1839:53;1911:29;1930:9;1911:29;:::i;:::-;1901:39;;1959:38;1993:2;1982:9;1978:18;1959:38;:::i;:::-;1949:48;;2044:2;2033:9;2029:18;2016:32;2006:42;;2099:2;2088:9;2084:18;2071:32;2126:18;2118:6;2115:30;2112:50;;;2158:1;2155;2148:12;2112:50;2181:22;;2234:4;2226:13;;2222:27;-1:-1:-1;2212:55:1;;2263:1;2260;2253:12;2212:55;2286:73;2351:7;2346:2;2333:16;2328:2;2324;2320:11;2286:73;:::i;:::-;2276:83;;;1699:666;;;;;;;:::o;2370:315::-;2435:6;2443;2496:2;2484:9;2475:7;2471:23;2467:32;2464:52;;;2512:1;2509;2502:12;2464:52;2535:29;2554:9;2535:29;:::i;:::-;2525:39;;2614:2;2603:9;2599:18;2586:32;2627:28;2649:5;2627:28;:::i;:::-;2674:5;2664:15;;;2370:315;;;;;:::o;2690:254::-;2758:6;2766;2819:2;2807:9;2798:7;2794:23;2790:32;2787:52;;;2835:1;2832;2825:12;2787:52;2858:29;2877:9;2858:29;:::i;:::-;2848:39;2934:2;2919:18;;;;2906:32;;-1:-1:-1;;;2690:254:1:o;2949:245::-;3016:6;3069:2;3057:9;3048:7;3044:23;3040:32;3037:52;;;3085:1;3082;3075:12;3037:52;3117:9;3111:16;3136:28;3158:5;3136:28;:::i;3199:245::-;3257:6;3310:2;3298:9;3289:7;3285:23;3281:32;3278:52;;;3326:1;3323;3316:12;3278:52;3365:9;3352:23;3384:30;3408:5;3384:30;:::i;3449:249::-;3518:6;3571:2;3559:9;3550:7;3546:23;3542:32;3539:52;;;3587:1;3584;3577:12;3539:52;3619:9;3613:16;3638:30;3662:5;3638:30;:::i;3703:450::-;3772:6;3825:2;3813:9;3804:7;3800:23;3796:32;3793:52;;;3841:1;3838;3831:12;3793:52;3881:9;3868:23;3914:18;3906:6;3903:30;3900:50;;;3946:1;3943;3936:12;3900:50;3969:22;;4022:4;4014:13;;4010:27;-1:-1:-1;4000:55:1;;4051:1;4048;4041:12;4000:55;4074:73;4139:7;4134:2;4121:16;4116:2;4112;4108:11;4074:73;:::i;4158:180::-;4217:6;4270:2;4258:9;4249:7;4245:23;4241:32;4238:52;;;4286:1;4283;4276:12;4238:52;-1:-1:-1;4309:23:1;;4158:180;-1:-1:-1;4158:180:1:o;4343:184::-;4413:6;4466:2;4454:9;4445:7;4441:23;4437:32;4434:52;;;4482:1;4479;4472:12;4434:52;-1:-1:-1;4505:16:1;;4343:184;-1:-1:-1;4343:184:1:o;4532:385::-;4618:6;4626;4634;4642;4695:3;4683:9;4674:7;4670:23;4666:33;4663:53;;;4712:1;4709;4702:12;4663:53;-1:-1:-1;;4735:23:1;;;4805:2;4790:18;;4777:32;;-1:-1:-1;4856:2:1;4841:18;;4828:32;;4907:2;4892:18;4879:32;;-1:-1:-1;4532:385:1;-1:-1:-1;4532:385:1:o;4922:530::-;4963:3;5001:5;4995:12;5028:6;5023:3;5016:19;5053:1;5063:162;5077:6;5074:1;5071:13;5063:162;;;5139:4;5195:13;;;5191:22;;5185:29;5167:11;;;5163:20;;5156:59;5092:12;5063:162;;;5243:6;5240:1;5237:13;5234:87;;;5309:1;5302:4;5293:6;5288:3;5284:16;5280:27;5273:38;5234:87;-1:-1:-1;5366:2:1;5354:15;5371:66;5350:88;5341:98;;;;5441:4;5337:109;;4922:530;-1:-1:-1;;4922:530:1:o;5898:511::-;6092:4;6121:42;6202:2;6194:6;6190:15;6179:9;6172:34;6254:2;6246:6;6242:15;6237:2;6226:9;6222:18;6215:43;;6294:6;6289:2;6278:9;6274:18;6267:34;6337:3;6332:2;6321:9;6317:18;6310:31;6358:45;6398:3;6387:9;6383:19;6375:6;6358:45;:::i;:::-;6350:53;5898:511;-1:-1:-1;;;;;;5898:511:1:o;7154:219::-;7303:2;7292:9;7285:21;7266:4;7323:44;7363:2;7352:9;7348:18;7340:6;7323:44;:::i;15936:128::-;15976:3;16007:1;16003:6;16000:1;15997:13;15994:39;;;16013:18;;:::i;:::-;-1:-1:-1;16049:9:1;;15936:128::o;16069:274::-;16109:1;16135;16125:189;;16170:77;16167:1;16160:88;16271:4;16268:1;16261:15;16299:4;16296:1;16289:15;16125:189;-1:-1:-1;16328:9:1;;16069:274::o;16348:125::-;16388:4;16416:1;16413;16410:8;16407:34;;;16421:18;;:::i;:::-;-1:-1:-1;16458:9:1;;16348:125::o;16478:437::-;16557:1;16553:12;;;;16600;;;16621:61;;16675:4;16667:6;16663:17;16653:27;;16621:61;16728:2;16720:6;16717:14;16697:18;16694:38;16691:218;;;16765:77;16762:1;16755:88;16866:4;16863:1;16856:15;16894:4;16891:1;16884:15;16691:218;;16478:437;;;:::o;16920:195::-;16959:3;16990:66;16983:5;16980:77;16977:103;;;17060:18;;:::i;:::-;-1:-1:-1;17107:1:1;17096:13;;16920:195::o;17120:184::-;17172:77;17169:1;17162:88;17269:4;17266:1;17259:15;17293:4;17290:1;17283:15;17309:184;17361:77;17358:1;17351:88;17458:4;17455:1;17448:15;17482:4;17479:1;17472:15;17498:118;17584:5;17577:13;17570:21;17563:5;17560:32;17550:60;;17606:1;17603;17596:12;17550:60;17498:118;:::o;17621:177::-;17706:66;17699:5;17695:78;17688:5;17685:89;17675:117;;17788:1;17785;17778:12
Swarm Source
ipfs://433945fa440a5b76b7d1a1716183c52fa5bed1b7dda12505395fc596fd16fff7
[ 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.