More Info
Private Name Tags
ContractCreator
TokenTracker
Latest 25 from a total of 95 transactions
Transaction Hash |
Method
|
Block
|
From
|
To
|
|||||
---|---|---|---|---|---|---|---|---|---|
Set Approval For... | 57122055 | 263 days ago | IN | 0 POL | 0.00138414 | ||||
Set Approval For... | 49438283 | 462 days ago | IN | 0 POL | 0.00327125 | ||||
Set Approval For... | 49416221 | 463 days ago | IN | 0 POL | 0.00316722 | ||||
Safe Transfer Fr... | 49389281 | 463 days ago | IN | 0 POL | 0.00426233 | ||||
Set Approval For... | 49377996 | 464 days ago | IN | 0 POL | 0.0046888 | ||||
Set Approval For... | 49377556 | 464 days ago | IN | 0 POL | 0.00338565 | ||||
Set Approval For... | 49337665 | 465 days ago | IN | 0 POL | 0.00399127 | ||||
Set Approval For... | 49336825 | 465 days ago | IN | 0 POL | 0.00234849 | ||||
Set Approval For... | 49336620 | 465 days ago | IN | 0 POL | 0.00321231 | ||||
Set Approval For... | 49336588 | 465 days ago | IN | 0 POL | 0.00171055 | ||||
Set Approval For... | 49186993 | 468 days ago | IN | 0 POL | 0.00377606 | ||||
Set Approval For... | 49128118 | 470 days ago | IN | 0 POL | 0.00344146 | ||||
Safe Transfer Fr... | 48841361 | 477 days ago | IN | 0 POL | 0.00207757 | ||||
Set Approval For... | 48661252 | 482 days ago | IN | 0 POL | 0.00388937 | ||||
Set Approval For... | 48633351 | 483 days ago | IN | 0 POL | 0.00325305 | ||||
Set Approval For... | 48521520 | 485 days ago | IN | 0 POL | 0.00336678 | ||||
Set Approval For... | 48463054 | 487 days ago | IN | 0 POL | 0.00222766 | ||||
Safe Transfer Fr... | 47776834 | 504 days ago | IN | 0 POL | 0.00513632 | ||||
Set Approval For... | 46867137 | 527 days ago | IN | 0 POL | 0.00514409 | ||||
Set Approval For... | 46060663 | 548 days ago | IN | 0 POL | 0.00861004 | ||||
Set Approval For... | 45471740 | 562 days ago | IN | 0 POL | 0.0036789 | ||||
Set Approval For... | 44240171 | 594 days ago | IN | 0 POL | 0.0099658 | ||||
Set Approval For... | 43649689 | 609 days ago | IN | 0 POL | 0.00683158 | ||||
Safe Transfer Fr... | 43330753 | 618 days ago | IN | 0 POL | 0.0097368 | ||||
Set Approval For... | 42785778 | 631 days ago | IN | 0 POL | 0.00644402 |
Loading...
Loading
Contract Name:
Faucet721
Compiler Version
v0.8.13+commit.abaa5c0e
Contract Source Code (Solidity)
/** *Submitted for verification at polygonscan.com on 2022-09-22 */ // SPDX-License-Identifier: MIT pragma solidity >=0.8.4; // OpenZeppelin Contracts (last updated v4.7.0) (token/ERC721/ERC721.sol) // OpenZeppelin Contracts (last updated v4.7.0) (token/ERC721/IERC721.sol) // OpenZeppelin Contracts v4.4.1 (utils/introspection/IERC165.sol) /** * @dev Interface of the ERC165 standard, as defined in the * https://eips.ethereum.org/EIPS/eip-165[EIP]. * * Implementers can declare support of contract interfaces, which can then be * queried by others ({ERC165Checker}). * * For an implementation, see {ERC165}. */ interface IERC165 { /** * @dev Returns true if this contract implements the interface defined by * `interfaceId`. See the corresponding * https://eips.ethereum.org/EIPS/eip-165#how-interfaces-are-identified[EIP section] * to learn more about how these ids are created. * * This function call must use less than 30 000 gas. */ function supportsInterface(bytes4 interfaceId) external view returns (bool); } /** * @dev Required interface of an ERC721 compliant contract. */ interface IERC721 is IERC165 { /** * @dev Emitted when `tokenId` token is transferred from `from` to `to`. */ event Transfer(address indexed from, address indexed to, uint256 indexed tokenId); /** * @dev Emitted when `owner` enables `approved` to manage the `tokenId` token. */ event Approval(address indexed owner, address indexed approved, uint256 indexed tokenId); /** * @dev Emitted when `owner` enables or disables (`approved`) `operator` to manage all of its assets. */ event ApprovalForAll(address indexed owner, address indexed operator, bool approved); /** * @dev Returns the number of tokens in ``owner``'s account. */ function balanceOf(address owner) external view returns (uint256 balance); /** * @dev Returns the owner of the `tokenId` token. * * Requirements: * * - `tokenId` must exist. */ function ownerOf(uint256 tokenId) external view returns (address owner); /** * @dev Safely transfers `tokenId` token from `from` to `to`. * * Requirements: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `tokenId` token must exist and be owned by `from`. * - If the caller is not `from`, it must be approved to move this token by either {approve} or {setApprovalForAll}. * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer. * * Emits a {Transfer} event. */ function safeTransferFrom( address from, address to, uint256 tokenId, bytes calldata data ) external; /** * @dev Safely transfers `tokenId` token from `from` to `to`, checking first that contract recipients * are aware of the ERC721 protocol to prevent tokens from being forever locked. * * Requirements: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `tokenId` token must exist and be owned by `from`. * - If the caller is not `from`, it must have been allowed to move this token by either {approve} or {setApprovalForAll}. * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer. * * Emits a {Transfer} event. */ function safeTransferFrom( address from, address to, uint256 tokenId ) external; /** * @dev Transfers `tokenId` token from `from` to `to`. * * WARNING: Usage of this method is discouraged, use {safeTransferFrom} whenever possible. * * Requirements: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `tokenId` token must be owned by `from`. * - If the caller is not `from`, it must be approved to move this token by either {approve} or {setApprovalForAll}. * * Emits a {Transfer} event. */ function transferFrom( address from, address to, uint256 tokenId ) external; /** * @dev Gives permission to `to` to transfer `tokenId` token to another account. * The approval is cleared when the token is transferred. * * Only a single account can be approved at a time, so approving the zero address clears previous approvals. * * Requirements: * * - The caller must own the token or be an approved operator. * - `tokenId` must exist. * * Emits an {Approval} event. */ function approve(address to, uint256 tokenId) external; /** * @dev Approve or remove `operator` as an operator for the caller. * Operators can call {transferFrom} or {safeTransferFrom} for any token owned by the caller. * * Requirements: * * - The `operator` cannot be the caller. * * Emits an {ApprovalForAll} event. */ function setApprovalForAll(address operator, bool _approved) external; /** * @dev Returns the account approved for `tokenId` token. * * Requirements: * * - `tokenId` must exist. */ function getApproved(uint256 tokenId) external view returns (address operator); /** * @dev Returns if the `operator` is allowed to manage all of the assets of `owner`. * * See {setApprovalForAll} */ function isApprovedForAll(address owner, address operator) external view returns (bool); } // OpenZeppelin Contracts (last updated v4.6.0) (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 `IERC721Receiver.onERC721Received.selector`. */ function onERC721Received( address operator, address from, uint256 tokenId, bytes calldata data ) external returns (bytes4); } // OpenZeppelin Contracts v4.4.1 (token/ERC721/extensions/IERC721Metadata.sol) /** * @title ERC-721 Non-Fungible Token Standard, optional metadata extension * @dev See https://eips.ethereum.org/EIPS/eip-721 */ interface IERC721Metadata is IERC721 { /** * @dev Returns the token collection name. */ function name() external view returns (string memory); /** * @dev Returns the token collection symbol. */ function symbol() external view returns (string memory); /** * @dev Returns the Uniform Resource Identifier (URI) for `tokenId` token. */ function tokenURI(uint256 tokenId) external view returns (string memory); } // OpenZeppelin Contracts (last updated v4.7.0) (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 * ==== * * [IMPORTANT] * ==== * You shouldn't rely on `isContract` to protect against flash loan attacks! * * Preventing calls from contracts is highly discouraged. It breaks composability, breaks support for smart wallets * like Gnosis Safe, and does not provide security since it can be circumvented by calling from a contract * constructor. * ==== */ function isContract(address account) internal view returns (bool) { // This method relies on extcodesize/address.code.length, which returns 0 // for contracts in construction, since the code is only stored at the end // of the constructor execution. return account.code.length > 0; } /** * @dev Replacement for Solidity's `transfer`: sends `amount` wei to * `recipient`, forwarding all available gas and reverting on errors. * * https://eips.ethereum.org/EIPS/eip-1884[EIP1884] increases the gas cost * of certain opcodes, possibly making contracts go over the 2300 gas limit * imposed by `transfer`, making them unable to receive funds via * `transfer`. {sendValue} removes this limitation. * * https://diligence.consensys.net/posts/2019/09/stop-using-soliditys-transfer-now/[Learn more]. * * IMPORTANT: because control is transferred to `recipient`, care must be * taken to not create reentrancy vulnerabilities. Consider using * {ReentrancyGuard} or the * https://solidity.readthedocs.io/en/v0.5.11/security-considerations.html#use-the-checks-effects-interactions-pattern[checks-effects-interactions pattern]. */ function sendValue(address payable recipient, uint256 amount) internal { require(address(this).balance >= amount, "Address: insufficient balance"); (bool success, ) = recipient.call{value: amount}(""); require(success, "Address: unable to send value, recipient may have reverted"); } /** * @dev Performs a Solidity function call using a low level `call`. A * plain `call` is an unsafe replacement for a function call: use this * function instead. * * If `target` reverts with a revert reason, it is bubbled up by this * function (like regular Solidity function calls). * * Returns the raw returned data. To convert to the expected return value, * use https://solidity.readthedocs.io/en/latest/units-and-global-variables.html?highlight=abi.decode#abi-encoding-and-decoding-functions[`abi.decode`]. * * Requirements: * * - `target` must be a contract. * - calling `target` with `data` must not revert. * * _Available since v3.1._ */ function functionCall(address target, bytes memory data) internal returns (bytes memory) { return functionCallWithValue(target, data, 0, "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"); (bool success, bytes memory returndata) = target.call{value: value}(data); return verifyCallResultFromTarget(target, 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) { (bool success, bytes memory returndata) = target.staticcall(data); return verifyCallResultFromTarget(target, 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) { (bool success, bytes memory returndata) = target.delegatecall(data); return verifyCallResultFromTarget(target, success, returndata, errorMessage); } /** * @dev Tool to verify that a low level call to smart-contract was successful, and revert (either by bubbling * the revert reason or using the provided one) in case of unsuccessful call or if target was not a contract. * * _Available since v4.8._ */ function verifyCallResultFromTarget( address target, bool success, bytes memory returndata, string memory errorMessage ) internal view returns (bytes memory) { if (success) { if (returndata.length == 0) { // only check isContract if the call was successful and the return data is empty // otherwise we already know that it was a contract require(isContract(target), "Address: call to non-contract"); } return returndata; } else { _revert(returndata, errorMessage); } } /** * @dev Tool to verify that a low level call was successful, and revert if it wasn't, either by bubbling the * revert reason or 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 { _revert(returndata, errorMessage); } } function _revert(bytes memory returndata, string memory errorMessage) private pure { // 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 /// @solidity memory-safe-assembly assembly { let returndata_size := mload(returndata) revert(add(32, returndata), returndata_size) } } else { revert(errorMessage); } } } // OpenZeppelin Contracts v4.4.1 (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; } } // OpenZeppelin Contracts (last updated v4.7.0) (utils/Strings.sol) /** * @dev String operations. */ library Strings { bytes16 private constant _HEX_SYMBOLS = "0123456789abcdef"; uint8 private constant _ADDRESS_LENGTH = 20; /** * @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); } /** * @dev Converts an `address` with fixed length of 20 bytes to its not checksummed ASCII `string` hexadecimal representation. */ function toHexString(address addr) internal pure returns (string memory) { return toHexString(uint256(uint160(addr)), _ADDRESS_LENGTH); } } // OpenZeppelin Contracts v4.4.1 (utils/introspection/ERC165.sol) /** * @dev Implementation of the {IERC165} interface. * * Contracts that want to implement ERC165 should inherit from this contract and override {supportsInterface} to check * for the additional interface id that will be supported. For example: * * ```solidity * function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) { * return interfaceId == type(MyInterface).interfaceId || super.supportsInterface(interfaceId); * } * ``` * * Alternatively, {ERC165Storage} provides an easier to use but more expensive implementation. */ abstract contract ERC165 is IERC165 { /** * @dev See {IERC165-supportsInterface}. */ function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) { return interfaceId == type(IERC165).interfaceId; } } /** * @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: address zero is not a valid owner"); 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: invalid token ID"); 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) { _requireMinted(tokenId); string memory baseURI = _baseURI(); return bytes(baseURI).length > 0 ? string(abi.encodePacked(baseURI, tokenId.toString())) : ""; } /** * @dev Base URI for computing {tokenURI}. If set, the resulting URI for each * token will be the concatenation of the `baseURI` and the `tokenId`. Empty * by default, can be overridden in child contracts. */ function _baseURI() internal view virtual returns (string memory) { return ""; } /** * @dev See {IERC721-approve}. */ function approve(address to, uint256 tokenId) public virtual override { address owner = ERC721.ownerOf(tokenId); require(to != owner, "ERC721: approval to current owner"); require( _msgSender() == owner || isApprovedForAll(owner, _msgSender()), "ERC721: approve caller is not token owner or approved for all" ); _approve(to, tokenId); } /** * @dev See {IERC721-getApproved}. */ function getApproved(uint256 tokenId) public view virtual override returns (address) { _requireMinted(tokenId); return _tokenApprovals[tokenId]; } /** * @dev See {IERC721-setApprovalForAll}. */ function setApprovalForAll(address operator, bool approved) public virtual override { _setApprovalForAll(_msgSender(), operator, approved); } /** * @dev See {IERC721-isApprovedForAll}. */ function isApprovedForAll(address owner, address operator) public view virtual override returns (bool) { return _operatorApprovals[owner][operator]; } /** * @dev See {IERC721-transferFrom}. */ function transferFrom( address from, address to, uint256 tokenId ) public virtual override { //solhint-disable-next-line max-line-length require(_isApprovedOrOwner(_msgSender(), tokenId), "ERC721: caller is not token owner or 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: caller is not token owner or 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) { address owner = ERC721.ownerOf(tokenId); return (spender == owner || isApprovedForAll(owner, spender) || getApproved(tokenId) == spender); } /** * @dev Safely mints `tokenId` and transfers it to `to`. * * Requirements: * * - `tokenId` must not exist. * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer. * * Emits a {Transfer} event. */ function _safeMint(address to, uint256 tokenId) internal virtual { _safeMint(to, tokenId, ""); } /** * @dev Same as {xref-ERC721-_safeMint-address-uint256-}[`_safeMint`], with an additional `data` parameter which is * forwarded in {IERC721Receiver-onERC721Received} to contract recipients. */ function _safeMint( address to, uint256 tokenId, bytes memory data ) internal virtual { _mint(to, tokenId); require( _checkOnERC721Received(address(0), to, tokenId, data), "ERC721: transfer to non ERC721Receiver implementer" ); } /** * @dev Mints `tokenId` and transfers it to `to`. * * WARNING: Usage of this method is discouraged, use {_safeMint} whenever possible * * Requirements: * * - `tokenId` must not exist. * - `to` cannot be the zero address. * * Emits a {Transfer} event. */ function _mint(address to, uint256 tokenId) internal virtual { require(to != address(0), "ERC721: mint to the zero address"); require(!_exists(tokenId), "ERC721: token already minted"); _beforeTokenTransfer(address(0), to, tokenId); _balances[to] += 1; _owners[tokenId] = to; emit Transfer(address(0), to, tokenId); _afterTokenTransfer(address(0), to, tokenId); } /** * @dev Destroys `tokenId`. * The approval is cleared when the token is burned. * This is an internal function that does not check if the sender is authorized to operate on the token. * * 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 delete _tokenApprovals[tokenId]; _balances[owner] -= 1; delete _owners[tokenId]; emit Transfer(owner, address(0), tokenId); _afterTokenTransfer(owner, address(0), tokenId); } /** * @dev Transfers `tokenId` from `from` to `to`. * As opposed to {transferFrom}, this imposes no restrictions on msg.sender. * * Requirements: * * - `to` cannot be the zero address. * - `tokenId` token must be owned by `from`. * * Emits a {Transfer} event. */ function _transfer( address from, address to, uint256 tokenId ) internal virtual { require(ERC721.ownerOf(tokenId) == from, "ERC721: transfer from incorrect owner"); require(to != address(0), "ERC721: transfer to the zero address"); _beforeTokenTransfer(from, to, tokenId); // Clear approvals from the previous owner delete _tokenApprovals[tokenId]; _balances[from] -= 1; _balances[to] += 1; _owners[tokenId] = to; emit Transfer(from, to, tokenId); _afterTokenTransfer(from, to, tokenId); } /** * @dev Approve `to` to operate on `tokenId` * * Emits an {Approval} event. */ function _approve(address to, uint256 tokenId) internal virtual { _tokenApprovals[tokenId] = to; emit Approval(ERC721.ownerOf(tokenId), to, tokenId); } /** * @dev Approve `operator` to operate on all of `owner` tokens * * Emits an {ApprovalForAll} event. */ function _setApprovalForAll( address owner, address operator, bool approved ) internal virtual { require(owner != operator, "ERC721: approve to caller"); _operatorApprovals[owner][operator] = approved; emit ApprovalForAll(owner, operator, approved); } /** * @dev Reverts if the `tokenId` has not been minted yet. */ function _requireMinted(uint256 tokenId) internal view virtual { require(_exists(tokenId), "ERC721: invalid token ID"); } /** * @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 { /// @solidity memory-safe-assembly assembly { revert(add(32, reason), mload(reason)) } } } } else { return true; } } /** * @dev Hook that is called before any token transfer. This includes minting * and burning. * * Calling conditions: * * - When `from` and `to` are both non-zero, ``from``'s `tokenId` will be * transferred to `to`. * - When `from` is zero, `tokenId` will be minted for `to`. * - When `to` is zero, ``from``'s `tokenId` will be burned. * - `from` and `to` are never both zero. * * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks]. */ function _beforeTokenTransfer( address from, address to, uint256 tokenId ) internal virtual {} /** * @dev Hook that is called after any transfer of tokens. This includes * minting and burning. * * Calling conditions: * * - when `from` and `to` are both non-zero. * - `from` and `to` are never both zero. * * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks]. */ function _afterTokenTransfer( address from, address to, uint256 tokenId ) internal virtual {} } // OpenZeppelin Contracts v4.4.1 (utils/Counters.sol) /** * @title Counters * @author Matt Condon (@shrugs) * @dev Provides counters that can only be incremented, decremented or reset. This can be used e.g. to track the number * of elements in a mapping, issuing ERC721 ids, or counting request ids. * * Include with `using Counters for Counters.Counter;` */ library Counters { struct Counter { // This variable should never be directly accessed by users of the library: interactions must be restricted to // the library's function. As of Solidity v0.5.2, this cannot be enforced, though there is a proposal to add // this feature: see https://github.com/ethereum/solidity/issues/4637 uint256 _value; // default: 0 } function current(Counter storage counter) internal view returns (uint256) { return counter._value; } function increment(Counter storage counter) internal { unchecked { counter._value += 1; } } function decrement(Counter storage counter) internal { uint256 value = counter._value; require(value > 0, "Counter: decrement overflow"); unchecked { counter._value = value - 1; } } function reset(Counter storage counter) internal { counter._value = 0; } } contract Faucet721 is ERC721 { using Counters for Counters.Counter; Counters.Counter private _tokenIds; uint256 public MAX_SUPPLY = 10000; constructor( string memory _name, string memory _symbol ) ERC721(_name, _symbol) {} function _mint(uint256 _amountOfTokens) internal { require( (_tokenIds.current() + _amountOfTokens) <= MAX_SUPPLY, "Mint would exceed max supply" ); unchecked { for (uint256 i = 0; i < _amountOfTokens; i++) { _tokenIds.increment(); _mint(msg.sender, _tokenIds.current()); } } } function mint(uint256 _amountOfTokens) public { _mint(_amountOfTokens); } function bulkMint(address[] memory _addressList) public { require( (_tokenIds.current() + _addressList.length) <= MAX_SUPPLY, "Mint would exceed max supply" ); for (uint i = 0; i < _addressList.length; ++i){ _tokenIds.increment(); _safeMint(_addressList[i], _tokenIds.current()); } } function totalSupply() public view returns (uint256) { return _tokenIds.current(); } function tokenURI(uint256 tokenId) public view override returns (string memory) { require( _exists(tokenId), "ERC721Metadata: URI query for nonexistent token" ); string[4] memory parts; parts[ 0 ] = "<svg xmlns='http://www.w3.org/2000/svg' preserveAspectRatio='xMinYMin meet' viewBox='0 0 350 350'><style>.base { fill: white; font-family: serif; font-size: 24px; } .roll { fill: yellow; font-family: serif; font-size: 48px; text-decoration: underline} .block { fill: red; font-family: serif; font-size: 24px;}</style><rect width='100%' height='100%' fill='black' /><text x='10' y='40' class='base'>"; parts[1] = "Test #"; parts[2] = uint2str(tokenId); parts[3] = "</text></svg>"; string memory output = string( abi.encodePacked(parts[0], parts[1], parts[2], parts[3]) ); string memory json = string( abi.encodePacked( '{"name": "Test #', uint2str(tokenId), '", "description": "This is a test description", "image_data": "', output, '", "attributes": [ {"trait_type": "Test Number", "value": "', parts[2], '"}]}' ) ); output = string(abi.encodePacked("data:application/json;utf8,", json)); return output; } function uint2str(uint256 _i) internal pure returns (string memory _uintAsString) { if (_i == 0) { return "0"; } uint256 j = _i; uint256 len; while (j != 0) { len++; j /= 10; } bytes memory bstr = new bytes(len); uint256 k = len; while (_i != 0) { k = k - 1; uint8 temp = (48 + uint8(_i - (_i / 10) * 10)); bytes1 b1 = bytes1(temp); bstr[k] = b1; _i /= 10; } return string(bstr); } }
Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
[{"inputs":[{"internalType":"string","name":"_name","type":"string"},{"internalType":"string","name":"_symbol","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":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[],"name":"MAX_SUPPLY","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address[]","name":"_addressList","type":"address[]"}],"name":"bulkMint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_amountOfTokens","type":"uint256"}],"name":"mint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"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":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"}]
Contract Creation Code
60806040526127106007553480156200001757600080fd5b5060405162001f0e38038062001f0e8339810160408190526200003a91620001e7565b8151829082906200005390600090602085019062000074565b5080516200006990600190602084019062000074565b50505050506200028d565b828054620000829062000251565b90600052602060002090601f016020900481019282620000a65760008555620000f1565b82601f10620000c157805160ff1916838001178555620000f1565b82800160010185558215620000f1579182015b82811115620000f1578251825591602001919060010190620000d4565b50620000ff92915062000103565b5090565b5b80821115620000ff576000815560010162000104565b634e487b7160e01b600052604160045260246000fd5b600082601f8301126200014257600080fd5b81516001600160401b03808211156200015f576200015f6200011a565b604051601f8301601f19908116603f011681019082821181831017156200018a576200018a6200011a565b81604052838152602092508683858801011115620001a757600080fd5b600091505b83821015620001cb5785820183015181830184015290820190620001ac565b83821115620001dd5760008385830101525b9695505050505050565b60008060408385031215620001fb57600080fd5b82516001600160401b03808211156200021357600080fd5b620002218683870162000130565b935060208501519150808211156200023857600080fd5b50620002478582860162000130565b9150509250929050565b600181811c908216806200026657607f821691505b6020821081036200028757634e487b7160e01b600052602260045260246000fd5b50919050565b611c71806200029d6000396000f3fe608060405234801561001057600080fd5b506004361061011b5760003560e01c806342842e0e116100b2578063a0712d6811610081578063b88d4fde11610066578063b88d4fde14610249578063c87b56dd1461025c578063e985e9c51461026f57600080fd5b8063a0712d6814610223578063a22cb4651461023657600080fd5b806342842e0e146101e25780636352211e146101f557806370a082311461020857806395d89b411461021b57600080fd5b806318160ddd116100ee57806318160ddd1461019d57806323b872dd146101b357806332cb6b0c146101c65780633771aaa1146101cf57600080fd5b806301ffc9a71461012057806306fdde0314610148578063081812fc1461015d578063095ea7b314610188575b600080fd5b61013361012e366004611404565b6102ab565b60405190151581526020015b60405180910390f35b610150610348565b60405161013f9190611480565b61017061016b366004611493565b6103da565b6040516001600160a01b03909116815260200161013f565b61019b6101963660046114c8565b610401565b005b6101a5610537565b60405190815260200161013f565b61019b6101c13660046114f2565b610547565b6101a560075481565b61019b6101dd366004611575565b6105be565b61019b6101f03660046114f2565b610677565b610170610203366004611493565b610692565b6101a5610216366004611622565b6106f7565b610150610791565b61019b610231366004611493565b6107a0565b61019b61024436600461163d565b6107ac565b61019b610257366004611679565b6107b7565b61015061026a366004611493565b610835565b61013361027d366004611739565b6001600160a01b03918216600090815260056020908152604080832093909416825291909152205460ff1690565b60006001600160e01b031982167f80ac58cd00000000000000000000000000000000000000000000000000000000148061030e57506001600160e01b031982167f5b5e139f00000000000000000000000000000000000000000000000000000000145b8061034257507f01ffc9a7000000000000000000000000000000000000000000000000000000006001600160e01b03198316145b92915050565b6060600080546103579061176c565b80601f01602080910402602001604051908101604052809291908181526020018280546103839061176c565b80156103d05780601f106103a5576101008083540402835291602001916103d0565b820191906000526020600020905b8154815290600101906020018083116103b357829003601f168201915b5050505050905090565b60006103e5826109fc565b506000908152600460205260409020546001600160a01b031690565b600061040c82610692565b9050806001600160a01b0316836001600160a01b03160361049a5760405162461bcd60e51b815260206004820152602160248201527f4552433732313a20617070726f76616c20746f2063757272656e74206f776e6560448201527f720000000000000000000000000000000000000000000000000000000000000060648201526084015b60405180910390fd5b336001600160a01b03821614806104b657506104b6813361027d565b6105285760405162461bcd60e51b815260206004820152603d60248201527f4552433732313a20617070726f76652063616c6c6572206973206e6f7420746f60448201527f6b656e206f776e6572206f7220617070726f76656420666f7220616c6c0000006064820152608401610491565b6105328383610a60565b505050565b600061054260065490565b905090565b6105513382610adb565b6105b35760405162461bcd60e51b815260206004820152602d60248201527f4552433732313a2063616c6c6572206973206e6f7420746f6b656e206f776e6560448201526c1c881bdc88185c1c1c9bdd9959609a1b6064820152608401610491565b610532838383610b5a565b60075481516006546105d091906117bc565b111561061e5760405162461bcd60e51b815260206004820152601c60248201527f4d696e7420776f756c6420657863656564206d617820737570706c79000000006044820152606401610491565b60005b815181101561067357610638600680546001019055565b61066382828151811061064d5761064d6117d4565b602002602001015161065e60065490565b610d50565b61066c816117ea565b9050610621565b5050565b610532838383604051806020016040528060008152506107b7565b6000818152600260205260408120546001600160a01b0316806103425760405162461bcd60e51b815260206004820152601860248201527f4552433732313a20696e76616c696420746f6b656e20494400000000000000006044820152606401610491565b60006001600160a01b0382166107755760405162461bcd60e51b815260206004820152602960248201527f4552433732313a2061646472657373207a65726f206973206e6f74206120766160448201527f6c6964206f776e657200000000000000000000000000000000000000000000006064820152608401610491565b506001600160a01b031660009081526003602052604090205490565b6060600180546103579061176c565b6107a981610d6a565b50565b610673338383610e02565b6107c13383610adb565b6108235760405162461bcd60e51b815260206004820152602d60248201527f4552433732313a2063616c6c6572206973206e6f7420746f6b656e206f776e6560448201526c1c881bdc88185c1c1c9bdd9959609a1b6064820152608401610491565b61082f84848484610ed0565b50505050565b6000818152600260205260409020546060906001600160a01b03166108c25760405162461bcd60e51b815260206004820152602f60248201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60448201527f6e6578697374656e7420746f6b656e00000000000000000000000000000000006064820152608401610491565b6108ca6113c7565b604051806101c001604052806101908152602001611aac6101909139815260408051808201909152600681527f54657374202300000000000000000000000000000000000000000000000000006020820152816001602002015261092d83610f4e565b604082810191825280518082018252600d81527f3c2f746578743e3c2f7376673e00000000000000000000000000000000000000602080830191909152606085018290528451818601519451935160009561098e9592949093909101611803565b604051602081830303815290604052905060006109aa85610f4e565b60408085015190516109c19291859160200161185a565b6040516020818303038152906040529050806040516020016109e39190611990565b60408051601f1981840301815291905295945050505050565b6000818152600260205260409020546001600160a01b03166107a95760405162461bcd60e51b815260206004820152601860248201527f4552433732313a20696e76616c696420746f6b656e20494400000000000000006044820152606401610491565b6000818152600460205260409020805473ffffffffffffffffffffffffffffffffffffffff19166001600160a01b0384169081179091558190610aa282610692565b6001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b600080610ae783610692565b9050806001600160a01b0316846001600160a01b03161480610b2e57506001600160a01b0380821660009081526005602090815260408083209388168352929052205460ff165b80610b525750836001600160a01b0316610b47846103da565b6001600160a01b0316145b949350505050565b826001600160a01b0316610b6d82610692565b6001600160a01b031614610be95760405162461bcd60e51b815260206004820152602560248201527f4552433732313a207472616e736665722066726f6d20696e636f72726563742060448201527f6f776e65720000000000000000000000000000000000000000000000000000006064820152608401610491565b6001600160a01b038216610c645760405162461bcd60e51b8152602060048201526024808201527f4552433732313a207472616e7366657220746f20746865207a65726f2061646460448201527f72657373000000000000000000000000000000000000000000000000000000006064820152608401610491565b6000818152600460209081526040808320805473ffffffffffffffffffffffffffffffffffffffff191690556001600160a01b038616835260039091528120805460019290610cb49084906119d5565b90915550506001600160a01b0382166000908152600360205260408120805460019290610ce29084906117bc565b9091555050600081815260026020526040808220805473ffffffffffffffffffffffffffffffffffffffff19166001600160a01b0386811691821790925591518493918716917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef91a4505050565b6106738282604051806020016040528060008152506110ae565b60075481610d7760065490565b610d8191906117bc565b1115610dcf5760405162461bcd60e51b815260206004820152601c60248201527f4d696e7420776f756c6420657863656564206d617820737570706c79000000006044820152606401610491565b60005b8181101561067357610de8600680546001019055565b610dfa33610df560065490565b61112c565b600101610dd2565b816001600160a01b0316836001600160a01b031603610e635760405162461bcd60e51b815260206004820152601960248201527f4552433732313a20617070726f766520746f2063616c6c6572000000000000006044820152606401610491565b6001600160a01b03838116600081815260056020908152604080832094871680845294825291829020805460ff191686151590811790915591519182527f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a3505050565b610edb848484610b5a565b610ee78484848461127b565b61082f5760405162461bcd60e51b815260206004820152603260248201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560448201527131b2b4bb32b91034b6b83632b6b2b73a32b960711b6064820152608401610491565b606081600003610f9157505060408051808201909152600181527f3000000000000000000000000000000000000000000000000000000000000000602082015290565b8160005b8115610fbb5780610fa5816117ea565b9150610fb49050600a836119ec565b9150610f95565b60008167ffffffffffffffff811115610fd657610fd661152e565b6040519080825280601f01601f191660200182016040528015611000576020820181803683370190505b509050815b85156110a5576110166001826119d5565b90506000611025600a886119ec565b61103090600a611a0e565b61103a90886119d5565b611045906030611a2d565b905060008160f81b905080848481518110611062576110626117d4565b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a90535061109c600a896119ec565b97505050611005565b50949350505050565b6110b8838361112c565b6110c5600084848461127b565b6105325760405162461bcd60e51b815260206004820152603260248201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560448201527131b2b4bb32b91034b6b83632b6b2b73a32b960711b6064820152608401610491565b6001600160a01b0382166111825760405162461bcd60e51b815260206004820181905260248201527f4552433732313a206d696e7420746f20746865207a65726f20616464726573736044820152606401610491565b6000818152600260205260409020546001600160a01b0316156111e75760405162461bcd60e51b815260206004820152601c60248201527f4552433732313a20746f6b656e20616c7265616479206d696e746564000000006044820152606401610491565b6001600160a01b03821660009081526003602052604081208054600192906112109084906117bc565b9091555050600081815260026020526040808220805473ffffffffffffffffffffffffffffffffffffffff19166001600160a01b03861690811790915590518392907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a45050565b60006001600160a01b0384163b156113bc57604051630a85bd0160e11b81526001600160a01b0385169063150b7a02906112bf903390899088908890600401611a52565b6020604051808303816000875af19250505080156112fa575060408051601f3d908101601f191682019092526112f791810190611a8e565b60015b6113a2573d808015611328576040519150601f19603f3d011682016040523d82523d6000602084013e61132d565b606091505b50805160000361139a5760405162461bcd60e51b815260206004820152603260248201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560448201527131b2b4bb32b91034b6b83632b6b2b73a32b960711b6064820152608401610491565b805181602001fd5b6001600160e01b031916630a85bd0160e11b149050610b52565b506001949350505050565b60405180608001604052806004905b60608152602001906001900390816113d65790505090565b6001600160e01b0319811681146107a957600080fd5b60006020828403121561141657600080fd5b8135611421816113ee565b9392505050565b60005b8381101561144357818101518382015260200161142b565b8381111561082f5750506000910152565b6000815180845261146c816020860160208601611428565b601f01601f19169290920160200192915050565b6020815260006114216020830184611454565b6000602082840312156114a557600080fd5b5035919050565b80356001600160a01b03811681146114c357600080fd5b919050565b600080604083850312156114db57600080fd5b6114e4836114ac565b946020939093013593505050565b60008060006060848603121561150757600080fd5b611510846114ac565b925061151e602085016114ac565b9150604084013590509250925092565b634e487b7160e01b600052604160045260246000fd5b604051601f8201601f1916810167ffffffffffffffff8111828210171561156d5761156d61152e565b604052919050565b6000602080838503121561158857600080fd5b823567ffffffffffffffff808211156115a057600080fd5b818501915085601f8301126115b457600080fd5b8135818111156115c6576115c661152e565b8060051b91506115d7848301611544565b81815291830184019184810190888411156115f157600080fd5b938501935b8385101561161657611607856114ac565b825293850193908501906115f6565b98975050505050505050565b60006020828403121561163457600080fd5b611421826114ac565b6000806040838503121561165057600080fd5b611659836114ac565b91506020830135801515811461166e57600080fd5b809150509250929050565b6000806000806080858703121561168f57600080fd5b611698856114ac565b935060206116a78187016114ac565b935060408601359250606086013567ffffffffffffffff808211156116cb57600080fd5b818801915088601f8301126116df57600080fd5b8135818111156116f1576116f161152e565b611703601f8201601f19168501611544565b9150808252898482850101111561171957600080fd5b808484018584013760008482840101525080935050505092959194509250565b6000806040838503121561174c57600080fd5b611755836114ac565b9150611763602084016114ac565b90509250929050565b600181811c9082168061178057607f821691505b6020821081036117a057634e487b7160e01b600052602260045260246000fd5b50919050565b634e487b7160e01b600052601160045260246000fd5b600082198211156117cf576117cf6117a6565b500190565b634e487b7160e01b600052603260045260246000fd5b6000600182016117fc576117fc6117a6565b5060010190565b60008551611815818460208a01611428565b855190830190611829818360208a01611428565b855191019061183c818360208901611428565b845191019061184f818360208801611428565b019695505050505050565b7f7b226e616d65223a202254657374202300000000000000000000000000000000815260008451611892816010850160208901611428565b7f222c20226465736372697074696f6e223a2022546869732069732061207465736010918401918201527f74206465736372697074696f6e222c2022696d6167655f64617461223a202200603082015284516118f581604f840160208901611428565b7f222c202261747472696275746573223a205b207b2274726169745f7479706522604f92909101918201527f3a202254657374204e756d626572222c202276616c7565223a20220000000000606f820152835161195981608a840160208801611428565b7f227d5d7d00000000000000000000000000000000000000000000000000000000608a9290910191820152608e0195945050505050565b7f646174613a6170706c69636174696f6e2f6a736f6e3b757466382c00000000008152600082516119c881601b850160208701611428565b91909101601b0192915050565b6000828210156119e7576119e76117a6565b500390565b600082611a0957634e487b7160e01b600052601260045260246000fd5b500490565b6000816000190483118215151615611a2857611a286117a6565b500290565b600060ff821660ff84168060ff03821115611a4a57611a4a6117a6565b019392505050565b60006001600160a01b03808716835280861660208401525083604083015260806060830152611a846080830184611454565b9695505050505050565b600060208284031215611aa057600080fd5b8151611421816113ee56fe3c73766720786d6c6e733d27687474703a2f2f7777772e77332e6f72672f323030302f73766727207072657365727665417370656374526174696f3d27784d696e594d696e206d656574272076696577426f783d273020302033353020333530273e3c7374796c653e2e62617365207b2066696c6c3a2077686974653b20666f6e742d66616d696c793a2073657269663b20666f6e742d73697a653a20323470783b207d2020202e726f6c6c207b2066696c6c3a2079656c6c6f773b20666f6e742d66616d696c793a2073657269663b20666f6e742d73697a653a20343870783b20746578742d6465636f726174696f6e3a20756e6465726c696e657d202e626c6f636b207b2066696c6c3a207265643b20666f6e742d66616d696c793a2073657269663b20666f6e742d73697a653a20323470783b7d3c2f7374796c653e3c726563742077696474683d273130302527206865696768743d2731303025272066696c6c3d27626c61636b27202f3e3c7465787420783d2731302720793d2734302720636c6173733d2762617365273ea2646970667358221220cfa4ef6c2d1bd3e964e6960a1c7b2824d865b2c31199ffd8115973912bdcdc9e64736f6c634300080d003300000000000000000000000000000000000000000000000000000000000000400000000000000000000000000000000000000000000000000000000000000080000000000000000000000000000000000000000000000000000000000000000d476f6f64204d6f726e696e6773000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000003474d530000000000000000000000000000000000000000000000000000000000
Deployed Bytecode
0x608060405234801561001057600080fd5b506004361061011b5760003560e01c806342842e0e116100b2578063a0712d6811610081578063b88d4fde11610066578063b88d4fde14610249578063c87b56dd1461025c578063e985e9c51461026f57600080fd5b8063a0712d6814610223578063a22cb4651461023657600080fd5b806342842e0e146101e25780636352211e146101f557806370a082311461020857806395d89b411461021b57600080fd5b806318160ddd116100ee57806318160ddd1461019d57806323b872dd146101b357806332cb6b0c146101c65780633771aaa1146101cf57600080fd5b806301ffc9a71461012057806306fdde0314610148578063081812fc1461015d578063095ea7b314610188575b600080fd5b61013361012e366004611404565b6102ab565b60405190151581526020015b60405180910390f35b610150610348565b60405161013f9190611480565b61017061016b366004611493565b6103da565b6040516001600160a01b03909116815260200161013f565b61019b6101963660046114c8565b610401565b005b6101a5610537565b60405190815260200161013f565b61019b6101c13660046114f2565b610547565b6101a560075481565b61019b6101dd366004611575565b6105be565b61019b6101f03660046114f2565b610677565b610170610203366004611493565b610692565b6101a5610216366004611622565b6106f7565b610150610791565b61019b610231366004611493565b6107a0565b61019b61024436600461163d565b6107ac565b61019b610257366004611679565b6107b7565b61015061026a366004611493565b610835565b61013361027d366004611739565b6001600160a01b03918216600090815260056020908152604080832093909416825291909152205460ff1690565b60006001600160e01b031982167f80ac58cd00000000000000000000000000000000000000000000000000000000148061030e57506001600160e01b031982167f5b5e139f00000000000000000000000000000000000000000000000000000000145b8061034257507f01ffc9a7000000000000000000000000000000000000000000000000000000006001600160e01b03198316145b92915050565b6060600080546103579061176c565b80601f01602080910402602001604051908101604052809291908181526020018280546103839061176c565b80156103d05780601f106103a5576101008083540402835291602001916103d0565b820191906000526020600020905b8154815290600101906020018083116103b357829003601f168201915b5050505050905090565b60006103e5826109fc565b506000908152600460205260409020546001600160a01b031690565b600061040c82610692565b9050806001600160a01b0316836001600160a01b03160361049a5760405162461bcd60e51b815260206004820152602160248201527f4552433732313a20617070726f76616c20746f2063757272656e74206f776e6560448201527f720000000000000000000000000000000000000000000000000000000000000060648201526084015b60405180910390fd5b336001600160a01b03821614806104b657506104b6813361027d565b6105285760405162461bcd60e51b815260206004820152603d60248201527f4552433732313a20617070726f76652063616c6c6572206973206e6f7420746f60448201527f6b656e206f776e6572206f7220617070726f76656420666f7220616c6c0000006064820152608401610491565b6105328383610a60565b505050565b600061054260065490565b905090565b6105513382610adb565b6105b35760405162461bcd60e51b815260206004820152602d60248201527f4552433732313a2063616c6c6572206973206e6f7420746f6b656e206f776e6560448201526c1c881bdc88185c1c1c9bdd9959609a1b6064820152608401610491565b610532838383610b5a565b60075481516006546105d091906117bc565b111561061e5760405162461bcd60e51b815260206004820152601c60248201527f4d696e7420776f756c6420657863656564206d617820737570706c79000000006044820152606401610491565b60005b815181101561067357610638600680546001019055565b61066382828151811061064d5761064d6117d4565b602002602001015161065e60065490565b610d50565b61066c816117ea565b9050610621565b5050565b610532838383604051806020016040528060008152506107b7565b6000818152600260205260408120546001600160a01b0316806103425760405162461bcd60e51b815260206004820152601860248201527f4552433732313a20696e76616c696420746f6b656e20494400000000000000006044820152606401610491565b60006001600160a01b0382166107755760405162461bcd60e51b815260206004820152602960248201527f4552433732313a2061646472657373207a65726f206973206e6f74206120766160448201527f6c6964206f776e657200000000000000000000000000000000000000000000006064820152608401610491565b506001600160a01b031660009081526003602052604090205490565b6060600180546103579061176c565b6107a981610d6a565b50565b610673338383610e02565b6107c13383610adb565b6108235760405162461bcd60e51b815260206004820152602d60248201527f4552433732313a2063616c6c6572206973206e6f7420746f6b656e206f776e6560448201526c1c881bdc88185c1c1c9bdd9959609a1b6064820152608401610491565b61082f84848484610ed0565b50505050565b6000818152600260205260409020546060906001600160a01b03166108c25760405162461bcd60e51b815260206004820152602f60248201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60448201527f6e6578697374656e7420746f6b656e00000000000000000000000000000000006064820152608401610491565b6108ca6113c7565b604051806101c001604052806101908152602001611aac6101909139815260408051808201909152600681527f54657374202300000000000000000000000000000000000000000000000000006020820152816001602002015261092d83610f4e565b604082810191825280518082018252600d81527f3c2f746578743e3c2f7376673e00000000000000000000000000000000000000602080830191909152606085018290528451818601519451935160009561098e9592949093909101611803565b604051602081830303815290604052905060006109aa85610f4e565b60408085015190516109c19291859160200161185a565b6040516020818303038152906040529050806040516020016109e39190611990565b60408051601f1981840301815291905295945050505050565b6000818152600260205260409020546001600160a01b03166107a95760405162461bcd60e51b815260206004820152601860248201527f4552433732313a20696e76616c696420746f6b656e20494400000000000000006044820152606401610491565b6000818152600460205260409020805473ffffffffffffffffffffffffffffffffffffffff19166001600160a01b0384169081179091558190610aa282610692565b6001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b600080610ae783610692565b9050806001600160a01b0316846001600160a01b03161480610b2e57506001600160a01b0380821660009081526005602090815260408083209388168352929052205460ff165b80610b525750836001600160a01b0316610b47846103da565b6001600160a01b0316145b949350505050565b826001600160a01b0316610b6d82610692565b6001600160a01b031614610be95760405162461bcd60e51b815260206004820152602560248201527f4552433732313a207472616e736665722066726f6d20696e636f72726563742060448201527f6f776e65720000000000000000000000000000000000000000000000000000006064820152608401610491565b6001600160a01b038216610c645760405162461bcd60e51b8152602060048201526024808201527f4552433732313a207472616e7366657220746f20746865207a65726f2061646460448201527f72657373000000000000000000000000000000000000000000000000000000006064820152608401610491565b6000818152600460209081526040808320805473ffffffffffffffffffffffffffffffffffffffff191690556001600160a01b038616835260039091528120805460019290610cb49084906119d5565b90915550506001600160a01b0382166000908152600360205260408120805460019290610ce29084906117bc565b9091555050600081815260026020526040808220805473ffffffffffffffffffffffffffffffffffffffff19166001600160a01b0386811691821790925591518493918716917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef91a4505050565b6106738282604051806020016040528060008152506110ae565b60075481610d7760065490565b610d8191906117bc565b1115610dcf5760405162461bcd60e51b815260206004820152601c60248201527f4d696e7420776f756c6420657863656564206d617820737570706c79000000006044820152606401610491565b60005b8181101561067357610de8600680546001019055565b610dfa33610df560065490565b61112c565b600101610dd2565b816001600160a01b0316836001600160a01b031603610e635760405162461bcd60e51b815260206004820152601960248201527f4552433732313a20617070726f766520746f2063616c6c6572000000000000006044820152606401610491565b6001600160a01b03838116600081815260056020908152604080832094871680845294825291829020805460ff191686151590811790915591519182527f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a3505050565b610edb848484610b5a565b610ee78484848461127b565b61082f5760405162461bcd60e51b815260206004820152603260248201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560448201527131b2b4bb32b91034b6b83632b6b2b73a32b960711b6064820152608401610491565b606081600003610f9157505060408051808201909152600181527f3000000000000000000000000000000000000000000000000000000000000000602082015290565b8160005b8115610fbb5780610fa5816117ea565b9150610fb49050600a836119ec565b9150610f95565b60008167ffffffffffffffff811115610fd657610fd661152e565b6040519080825280601f01601f191660200182016040528015611000576020820181803683370190505b509050815b85156110a5576110166001826119d5565b90506000611025600a886119ec565b61103090600a611a0e565b61103a90886119d5565b611045906030611a2d565b905060008160f81b905080848481518110611062576110626117d4565b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a90535061109c600a896119ec565b97505050611005565b50949350505050565b6110b8838361112c565b6110c5600084848461127b565b6105325760405162461bcd60e51b815260206004820152603260248201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560448201527131b2b4bb32b91034b6b83632b6b2b73a32b960711b6064820152608401610491565b6001600160a01b0382166111825760405162461bcd60e51b815260206004820181905260248201527f4552433732313a206d696e7420746f20746865207a65726f20616464726573736044820152606401610491565b6000818152600260205260409020546001600160a01b0316156111e75760405162461bcd60e51b815260206004820152601c60248201527f4552433732313a20746f6b656e20616c7265616479206d696e746564000000006044820152606401610491565b6001600160a01b03821660009081526003602052604081208054600192906112109084906117bc565b9091555050600081815260026020526040808220805473ffffffffffffffffffffffffffffffffffffffff19166001600160a01b03861690811790915590518392907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a45050565b60006001600160a01b0384163b156113bc57604051630a85bd0160e11b81526001600160a01b0385169063150b7a02906112bf903390899088908890600401611a52565b6020604051808303816000875af19250505080156112fa575060408051601f3d908101601f191682019092526112f791810190611a8e565b60015b6113a2573d808015611328576040519150601f19603f3d011682016040523d82523d6000602084013e61132d565b606091505b50805160000361139a5760405162461bcd60e51b815260206004820152603260248201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560448201527131b2b4bb32b91034b6b83632b6b2b73a32b960711b6064820152608401610491565b805181602001fd5b6001600160e01b031916630a85bd0160e11b149050610b52565b506001949350505050565b60405180608001604052806004905b60608152602001906001900390816113d65790505090565b6001600160e01b0319811681146107a957600080fd5b60006020828403121561141657600080fd5b8135611421816113ee565b9392505050565b60005b8381101561144357818101518382015260200161142b565b8381111561082f5750506000910152565b6000815180845261146c816020860160208601611428565b601f01601f19169290920160200192915050565b6020815260006114216020830184611454565b6000602082840312156114a557600080fd5b5035919050565b80356001600160a01b03811681146114c357600080fd5b919050565b600080604083850312156114db57600080fd5b6114e4836114ac565b946020939093013593505050565b60008060006060848603121561150757600080fd5b611510846114ac565b925061151e602085016114ac565b9150604084013590509250925092565b634e487b7160e01b600052604160045260246000fd5b604051601f8201601f1916810167ffffffffffffffff8111828210171561156d5761156d61152e565b604052919050565b6000602080838503121561158857600080fd5b823567ffffffffffffffff808211156115a057600080fd5b818501915085601f8301126115b457600080fd5b8135818111156115c6576115c661152e565b8060051b91506115d7848301611544565b81815291830184019184810190888411156115f157600080fd5b938501935b8385101561161657611607856114ac565b825293850193908501906115f6565b98975050505050505050565b60006020828403121561163457600080fd5b611421826114ac565b6000806040838503121561165057600080fd5b611659836114ac565b91506020830135801515811461166e57600080fd5b809150509250929050565b6000806000806080858703121561168f57600080fd5b611698856114ac565b935060206116a78187016114ac565b935060408601359250606086013567ffffffffffffffff808211156116cb57600080fd5b818801915088601f8301126116df57600080fd5b8135818111156116f1576116f161152e565b611703601f8201601f19168501611544565b9150808252898482850101111561171957600080fd5b808484018584013760008482840101525080935050505092959194509250565b6000806040838503121561174c57600080fd5b611755836114ac565b9150611763602084016114ac565b90509250929050565b600181811c9082168061178057607f821691505b6020821081036117a057634e487b7160e01b600052602260045260246000fd5b50919050565b634e487b7160e01b600052601160045260246000fd5b600082198211156117cf576117cf6117a6565b500190565b634e487b7160e01b600052603260045260246000fd5b6000600182016117fc576117fc6117a6565b5060010190565b60008551611815818460208a01611428565b855190830190611829818360208a01611428565b855191019061183c818360208901611428565b845191019061184f818360208801611428565b019695505050505050565b7f7b226e616d65223a202254657374202300000000000000000000000000000000815260008451611892816010850160208901611428565b7f222c20226465736372697074696f6e223a2022546869732069732061207465736010918401918201527f74206465736372697074696f6e222c2022696d6167655f64617461223a202200603082015284516118f581604f840160208901611428565b7f222c202261747472696275746573223a205b207b2274726169745f7479706522604f92909101918201527f3a202254657374204e756d626572222c202276616c7565223a20220000000000606f820152835161195981608a840160208801611428565b7f227d5d7d00000000000000000000000000000000000000000000000000000000608a9290910191820152608e0195945050505050565b7f646174613a6170706c69636174696f6e2f6a736f6e3b757466382c00000000008152600082516119c881601b850160208701611428565b91909101601b0192915050565b6000828210156119e7576119e76117a6565b500390565b600082611a0957634e487b7160e01b600052601260045260246000fd5b500490565b6000816000190483118215151615611a2857611a286117a6565b500290565b600060ff821660ff84168060ff03821115611a4a57611a4a6117a6565b019392505050565b60006001600160a01b03808716835280861660208401525083604083015260806060830152611a846080830184611454565b9695505050505050565b600060208284031215611aa057600080fd5b8151611421816113ee56fe3c73766720786d6c6e733d27687474703a2f2f7777772e77332e6f72672f323030302f73766727207072657365727665417370656374526174696f3d27784d696e594d696e206d656574272076696577426f783d273020302033353020333530273e3c7374796c653e2e62617365207b2066696c6c3a2077686974653b20666f6e742d66616d696c793a2073657269663b20666f6e742d73697a653a20323470783b207d2020202e726f6c6c207b2066696c6c3a2079656c6c6f773b20666f6e742d66616d696c793a2073657269663b20666f6e742d73697a653a20343870783b20746578742d6465636f726174696f6e3a20756e6465726c696e657d202e626c6f636b207b2066696c6c3a207265643b20666f6e742d66616d696c793a2073657269663b20666f6e742d73697a653a20323470783b7d3c2f7374796c653e3c726563742077696474683d273130302527206865696768743d2731303025272066696c6c3d27626c61636b27202f3e3c7465787420783d2731302720793d2734302720636c6173733d2762617365273ea2646970667358221220cfa4ef6c2d1bd3e964e6960a1c7b2824d865b2c31199ffd8115973912bdcdc9e64736f6c634300080d0033
Constructor Arguments (ABI-Encoded and is the last bytes of the Contract Creation Code above)
00000000000000000000000000000000000000000000000000000000000000400000000000000000000000000000000000000000000000000000000000000080000000000000000000000000000000000000000000000000000000000000000d476f6f64204d6f726e696e6773000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000003474d530000000000000000000000000000000000000000000000000000000000
-----Decoded View---------------
Arg [0] : _name (string): Good Mornings
Arg [1] : _symbol (string): GMS
-----Encoded View---------------
6 Constructor Arguments found :
Arg [0] : 0000000000000000000000000000000000000000000000000000000000000040
Arg [1] : 0000000000000000000000000000000000000000000000000000000000000080
Arg [2] : 000000000000000000000000000000000000000000000000000000000000000d
Arg [3] : 476f6f64204d6f726e696e677300000000000000000000000000000000000000
Arg [4] : 0000000000000000000000000000000000000000000000000000000000000003
Arg [5] : 474d530000000000000000000000000000000000000000000000000000000000
Deployed Bytecode Sourcemap
36799:3400:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;22125:305;;;;;;:::i;:::-;;:::i;:::-;;;611:14:1;;604:22;586:41;;574:2;559:18;22125:305:0;;;;;;;;23052:100;;;:::i;:::-;;;;;;;:::i;24564:171::-;;;;;;:::i;:::-;;:::i;:::-;;;-1:-1:-1;;;;;1738:55:1;;;1720:74;;1708:2;1693:18;24564:171:0;1574:226:1;24082:416:0;;;;;;:::i;:::-;;:::i;:::-;;37971:98;;;:::i;:::-;;;2411:25:1;;;2399:2;2384:18;37971:98:0;2265:177:1;25264:335:0;;;;;;:::i;:::-;;:::i;36920:33::-;;;;;;37583:380;;;;;;:::i;:::-;;:::i;25670:185::-;;;;;;:::i;:::-;;:::i;22763:222::-;;;;;;:::i;:::-;;:::i;22494:207::-;;;;;;:::i;:::-;;:::i;23221:104::-;;;:::i;37488:87::-;;;;;;:::i;:::-;;:::i;24807:155::-;;;;;;:::i;:::-;;:::i;25926:322::-;;;;;;:::i;:::-;;:::i;38077:1490::-;;;;;;:::i;:::-;;:::i;25033:164::-;;;;;;:::i;:::-;-1:-1:-1;;;;;25154:25:0;;;25130:4;25154:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;;;;25033:164;22125:305;22227:4;-1:-1:-1;;;;;;22264:40:0;;22279:25;22264:40;;:105;;-1:-1:-1;;;;;;;22321:48:0;;22336:33;22321:48;22264:105;:158;;;-1:-1:-1;20858:25:0;-1:-1:-1;;;;;;20843:40:0;;;22386:36;22244:178;22125:305;-1:-1:-1;;22125:305:0:o;23052:100::-;23106:13;23139:5;23132:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;23052:100;:::o;24564:171::-;24640:7;24660:23;24675:7;24660:14;:23::i;:::-;-1:-1:-1;24703:24:0;;;;:15;:24;;;;;;-1:-1:-1;;;;;24703:24:0;;24564:171::o;24082:416::-;24163:13;24179:23;24194:7;24179:14;:23::i;:::-;24163:39;;24227:5;-1:-1:-1;;;;;24221:11:0;:2;-1:-1:-1;;;;;24221:11:0;;24213:57;;;;-1:-1:-1;;;24213:57:0;;6643:2:1;24213:57:0;;;6625:21:1;6682:2;6662:18;;;6655:30;6721:34;6701:18;;;6694:62;6792:3;6772:18;;;6765:31;6813:19;;24213:57:0;;;;;;;;;17419:10;-1:-1:-1;;;;;24305:21:0;;;;:62;;-1:-1:-1;24330:37:0;24347:5;17419:10;25033:164;:::i;24330:37::-;24283:173;;;;-1:-1:-1;;;24283:173:0;;7045:2:1;24283:173:0;;;7027:21:1;7084:2;7064:18;;;7057:30;7123:34;7103:18;;;7096:62;7194:31;7174:18;;;7167:59;7243:19;;24283:173:0;6843:425:1;24283:173:0;24469:21;24478:2;24482:7;24469:8;:21::i;:::-;24152:346;24082:416;;:::o;37971:98::-;38015:7;38042:19;:9;36298:14;;36206:114;38042:19;38035:26;;37971:98;:::o;25264:335::-;25459:41;17419:10;25492:7;25459:18;:41::i;:::-;25451:99;;;;-1:-1:-1;;;25451:99:0;;7475:2:1;25451:99:0;;;7457:21:1;7514:2;7494:18;;;7487:30;7553:34;7533:18;;;7526:62;-1:-1:-1;;;7604:18:1;;;7597:43;7657:19;;25451:99:0;7273:409:1;25451:99:0;25563:28;25573:4;25579:2;25583:7;25563:9;:28::i;37583:380::-;37719:10;;37695:19;;37673:9;36298:14;37673:41;;;;:::i;:::-;37672:57;;37650:135;;;;-1:-1:-1;;;37650:135:0;;8211:2:1;37650:135:0;;;8193:21:1;8250:2;8230:18;;;8223:30;8289;8269:18;;;8262:58;8337:18;;37650:135:0;8009:352:1;37650:135:0;37805:6;37800:156;37821:12;:19;37817:1;:23;37800:156;;;37861:21;:9;36417:19;;36435:1;36417:19;;;36328:127;37861:21;37897:47;37907:12;37920:1;37907:15;;;;;;;;:::i;:::-;;;;;;;37924:19;:9;36298:14;;36206:114;37924:19;37897:9;:47::i;:::-;37842:3;;;:::i;:::-;;;37800:156;;;;37583:380;:::o;25670:185::-;25808:39;25825:4;25831:2;25835:7;25808:39;;;;;;;;;;;;:16;:39::i;22763:222::-;22835:7;22871:16;;;:7;:16;;;;;;-1:-1:-1;;;;;22871:16:0;;22898:56;;;;-1:-1:-1;;;22898:56:0;;8897:2:1;22898:56:0;;;8879:21:1;8936:2;8916:18;;;8909:30;8975:26;8955:18;;;8948:54;9019:18;;22898:56:0;8695:348:1;22494:207:0;22566:7;-1:-1:-1;;;;;22594:19:0;;22586:73;;;;-1:-1:-1;;;22586:73:0;;9250:2:1;22586:73:0;;;9232:21:1;9289:2;9269:18;;;9262:30;9328:34;9308:18;;;9301:62;9399:11;9379:18;;;9372:39;9428:19;;22586:73:0;9048:405:1;22586:73:0;-1:-1:-1;;;;;;22677:16:0;;;;;:9;:16;;;;;;;22494:207::o;23221:104::-;23277:13;23310:7;23303:14;;;;;:::i;37488:87::-;37545:22;37551:15;37545:5;:22::i;:::-;37488:87;:::o;24807:155::-;24902:52;17419:10;24935:8;24945;24902:18;:52::i;25926:322::-;26100:41;17419:10;26133:7;26100:18;:41::i;:::-;26092:99;;;;-1:-1:-1;;;26092:99:0;;7475:2:1;26092:99:0;;;7457:21:1;7514:2;7494:18;;;7487:30;7553:34;7533:18;;;7526:62;-1:-1:-1;;;7604:18:1;;;7597:43;7657:19;;26092:99:0;7273:409:1;26092:99:0;26202:38;26216:4;26222:2;26226:7;26235:4;26202:13;:38::i;:::-;25926:322;;;;:::o;38077:1490::-;27820:4;27844:16;;;:7;:16;;;;;;38178:13;;-1:-1:-1;;;;;27844:16:0;38209:113;;;;-1:-1:-1;;;38209:113:0;;9660:2:1;38209:113:0;;;9642:21:1;9699:2;9679:18;;;9672:30;9738:34;9718:18;;;9711:62;9809:17;9789:18;;;9782:45;9844:19;;38209:113:0;9458:411:1;38209:113:0;38335:22;;:::i;:::-;38368:437;;;;;;;;;;;;;;;;;;;38818:19;;;;;;;;;;;;;38368:32;38818:19;;;38368:5;38824:1;38818:8;;;:19;38861:17;38870:7;38861:8;:17::i;:::-;38850:8;;;;:28;;;38891:26;;;;;;;;;;;38850:8;38891:26;;;;;;;:8;;;:26;;;38991:8;;39001;;;;39011;;38974:56;;-1:-1:-1;;38974:56:0;;38991:8;;39001;;38891:26;;38974:56;;:::i;:::-;;;;;;;;;;;;;38930:111;;39054:18;39168:17;39177:7;39168:8;:17::i;:::-;39393:8;;;;;39096:345;;;;;39288:6;;39393:8;39096:345;;:::i;:::-;;;;;;;;;;;;;39054:398;;39527:4;39479:53;;;;;;;;:::i;:::-;;;;-1:-1:-1;;39479:53:0;;;;;;;;;;38077:1490;-1:-1:-1;;;;;38077:1490:0:o;32651:135::-;27820:4;27844:16;;;:7;:16;;;;;;-1:-1:-1;;;;;27844:16:0;32725:53;;;;-1:-1:-1;;;32725:53:0;;8897:2:1;32725:53:0;;;8879:21:1;8936:2;8916:18;;;8909:30;8975:26;8955:18;;;8948:54;9019:18;;32725:53:0;8695:348:1;31930:174:0;32005:24;;;;:15;:24;;;;;:29;;-1:-1:-1;;32005:29:0;-1:-1:-1;;;;;32005:29:0;;;;;;;;:24;;32059:23;32005:24;32059:14;:23::i;:::-;-1:-1:-1;;;;;32050:46:0;;;;;;;;;;;31930:174;;:::o;28049:264::-;28142:4;28159:13;28175:23;28190:7;28175:14;:23::i;:::-;28159:39;;28228:5;-1:-1:-1;;;;;28217:16:0;:7;-1:-1:-1;;;;;28217:16:0;;:52;;;-1:-1:-1;;;;;;25154:25:0;;;25130:4;25154:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;28237:32;28217:87;;;;28297:7;-1:-1:-1;;;;;28273:31:0;:20;28285:7;28273:11;:20::i;:::-;-1:-1:-1;;;;;28273:31:0;;28217:87;28209:96;28049:264;-1:-1:-1;;;;28049:264:0:o;31184:627::-;31343:4;-1:-1:-1;;;;;31316:31:0;:23;31331:7;31316:14;:23::i;:::-;-1:-1:-1;;;;;31316:31:0;;31308:81;;;;-1:-1:-1;;;31308:81:0;;13074:2:1;31308:81:0;;;13056:21:1;13113:2;13093:18;;;13086:30;13152:34;13132:18;;;13125:62;13223:7;13203:18;;;13196:35;13248:19;;31308:81:0;12872:401:1;31308:81:0;-1:-1:-1;;;;;31408:16:0;;31400:65;;;;-1:-1:-1;;;31400:65:0;;13480:2:1;31400:65:0;;;13462:21:1;13519:2;13499:18;;;13492:30;13558:34;13538:18;;;13531:62;13629:6;13609:18;;;13602:34;13653:19;;31400:65:0;13278:400:1;31400:65:0;31589:24;;;;:15;:24;;;;;;;;31582:31;;-1:-1:-1;;31582:31:0;;;-1:-1:-1;;;;;31626:15:0;;;;:9;:15;;;;;:20;;31582:31;;31589:24;31626:20;;31582:31;;31626:20;:::i;:::-;;;;-1:-1:-1;;;;;;;31657:13:0;;;;;;:9;:13;;;;;:18;;31674:1;;31657:13;:18;;31674:1;;31657:18;:::i;:::-;;;;-1:-1:-1;;31686:16:0;;;;:7;:16;;;;;;:21;;-1:-1:-1;;31686:21:0;-1:-1:-1;;;;;31686:21:0;;;;;;;;;31725:27;;31686:16;;31725:27;;;;;;;24152:346;24082:416;;:::o;28655:110::-;28731:26;28741:2;28745:7;28731:26;;;;;;;;;;;;:9;:26::i;37076:404::-;37201:10;;37181:15;37159:19;:9;36298:14;;36206:114;37159:19;:37;;;;:::i;:::-;37158:53;;37136:131;;;;-1:-1:-1;;;37136:131:0;;8211:2:1;37136:131:0;;;8193:21:1;8250:2;8230:18;;;8223:30;8289;8269:18;;;8262:58;8337:18;;37136:131:0;8009:352:1;37136:131:0;37308:9;37303:159;37327:15;37323:1;:19;37303:159;;;37368:21;:9;36417:19;;36435:1;36417:19;;;36328:127;37368:21;37408:38;37414:10;37426:19;:9;36298:14;;36206:114;37426:19;37408:5;:38::i;:::-;37344:3;;37303:159;;32247:315;32402:8;-1:-1:-1;;;;;32393:17:0;:5;-1:-1:-1;;;;;32393:17:0;;32385:55;;;;-1:-1:-1;;;32385:55:0;;14015:2:1;32385:55:0;;;13997:21:1;14054:2;14034:18;;;14027:30;14093:27;14073:18;;;14066:55;14138:18;;32385:55:0;13813:349:1;32385:55:0;-1:-1:-1;;;;;32451:25:0;;;;;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;;:46;;-1:-1:-1;;32451:46:0;;;;;;;;;;32513:41;;586::1;;;32513::0;;559:18:1;32513:41:0;;;;;;;32247:315;;;:::o;27129:313::-;27285:28;27295:4;27301:2;27305:7;27285:9;:28::i;:::-;27332:47;27355:4;27361:2;27365:7;27374:4;27332:22;:47::i;:::-;27324:110;;;;-1:-1:-1;;;27324:110:0;;14369:2:1;27324:110:0;;;14351:21:1;14408:2;14388:18;;;14381:30;14447:34;14427:18;;;14420:62;-1:-1:-1;;;14498:18:1;;;14491:48;14556:19;;27324:110:0;14167:414:1;39575:621:0;39655:27;39704:2;39710:1;39704:7;39700:50;;-1:-1:-1;;39728:10:0;;;;;;;;;;;;;;;;;;39575:621::o;39700:50::-;39772:2;39760:9;39807:69;39814:6;;39807:69;;39837:5;;;;:::i;:::-;;-1:-1:-1;39857:7:0;;-1:-1:-1;39862:2:0;39857:7;;:::i;:::-;;;39807:69;;;39886:17;39916:3;39906:14;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;39906:14:0;-1:-1:-1;39886:34:0;-1:-1:-1;39943:3:0;39957:202;39964:7;;39957:202;;39992:5;39996:1;39992;:5;:::i;:::-;39988:9;-1:-1:-1;40012:10:0;40043:7;40048:2;40043;:7;:::i;:::-;40042:14;;40054:2;40042:14;:::i;:::-;40037:19;;:2;:19;:::i;:::-;40026:31;;:2;:31;:::i;:::-;40012:46;;40073:9;40092:4;40085:12;;40073:24;;40122:2;40112:4;40117:1;40112:7;;;;;;;;:::i;:::-;;;;:12;;;;;;;;;;-1:-1:-1;40139:8:0;40145:2;40139:8;;:::i;:::-;;;39973:186;;39957:202;;;-1:-1:-1;40183:4:0;39575:621;-1:-1:-1;;;;39575:621:0:o;28992:319::-;29121:18;29127:2;29131:7;29121:5;:18::i;:::-;29172:53;29203:1;29207:2;29211:7;29220:4;29172:22;:53::i;:::-;29150:153;;;;-1:-1:-1;;;29150:153:0;;14369:2:1;29150:153:0;;;14351:21:1;14408:2;14388:18;;;14381:30;14447:34;14427:18;;;14420:62;-1:-1:-1;;;14498:18:1;;;14491:48;14556:19;;29150:153:0;14167:414:1;29647:439:0;-1:-1:-1;;;;;29727:16:0;;29719:61;;;;-1:-1:-1;;;29719:61:0;;15449:2:1;29719:61:0;;;15431:21:1;;;15468:18;;;15461:30;15527:34;15507:18;;;15500:62;15579:18;;29719:61:0;15247:356:1;29719:61:0;27820:4;27844:16;;;:7;:16;;;;;;-1:-1:-1;;;;;27844:16:0;:30;29791:58;;;;-1:-1:-1;;;29791:58:0;;15810:2:1;29791:58:0;;;15792:21:1;15849:2;15829:18;;;15822:30;15888;15868:18;;;15861:58;15936:18;;29791:58:0;15608:352:1;29791:58:0;-1:-1:-1;;;;;29920:13:0;;;;;;:9;:13;;;;;:18;;29937:1;;29920:13;:18;;29937:1;;29920:18;:::i;:::-;;;;-1:-1:-1;;29949:16:0;;;;:7;:16;;;;;;:21;;-1:-1:-1;;29949:21:0;-1:-1:-1;;;;;29949:21:0;;;;;;;;29988:33;;29949:16;;;29988:33;;29949:16;;29988:33;37800:156;37583:380;:::o;33350:853::-;33504:4;-1:-1:-1;;;;;33525:13:0;;8843:19;:23;33521:675;;33561:71;;-1:-1:-1;;;33561:71:0;;-1:-1:-1;;;;;33561:36:0;;;;;:71;;17419:10;;33612:4;;33618:7;;33627:4;;33561:71;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;-1:-1:-1;33561:71:0;;;;;;;;-1:-1:-1;;33561:71:0;;;;;;;;;;;;:::i;:::-;;;33557:584;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;33802:6;:13;33819:1;33802:18;33798:328;;33845:60;;-1:-1:-1;;;33845:60:0;;14369:2:1;33845:60:0;;;14351:21:1;14408:2;14388:18;;;14381:30;14447:34;14427:18;;;14420:62;-1:-1:-1;;;14498:18:1;;;14491:48;14556:19;;33845:60:0;14167:414:1;33798:328:0;34076:6;34070:13;34061:6;34057:2;34053:15;34046:38;33557:584;-1:-1:-1;;;;;;33683:51:0;-1:-1:-1;;;33683:51:0;;-1:-1:-1;33676:58:0;;33521:675;-1:-1:-1;34180:4:0;33350:853;;;;;;:::o;-1:-1:-1:-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;14:177:1:-;-1:-1:-1;;;;;;92:5:1;88:78;81:5;78:89;68:117;;181:1;178;171:12;196:245;254:6;307:2;295:9;286:7;282:23;278:32;275:52;;;323:1;320;313:12;275:52;362:9;349:23;381:30;405:5;381:30;:::i;:::-;430:5;196:245;-1:-1:-1;;;196:245:1:o;638:258::-;710:1;720:113;734:6;731:1;728:13;720:113;;;810:11;;;804:18;791:11;;;784:39;756:2;749:10;720:113;;;851:6;848:1;845:13;842:48;;;-1:-1:-1;;886:1:1;868:16;;861:27;638:258::o;901:::-;943:3;981:5;975:12;1008:6;1003:3;996:19;1024:63;1080:6;1073:4;1068:3;1064:14;1057:4;1050:5;1046:16;1024:63;:::i;:::-;1141:2;1120:15;-1:-1:-1;;1116:29:1;1107:39;;;;1148:4;1103:50;;901:258;-1:-1:-1;;901:258:1:o;1164:220::-;1313:2;1302:9;1295:21;1276:4;1333:45;1374:2;1363:9;1359:18;1351:6;1333:45;:::i;1389:180::-;1448:6;1501:2;1489:9;1480:7;1476:23;1472:32;1469:52;;;1517:1;1514;1507:12;1469:52;-1:-1:-1;1540:23:1;;1389:180;-1:-1:-1;1389:180:1:o;1805:196::-;1873:20;;-1:-1:-1;;;;;1922:54:1;;1912:65;;1902:93;;1991:1;1988;1981:12;1902:93;1805:196;;;:::o;2006:254::-;2074:6;2082;2135:2;2123:9;2114:7;2110:23;2106:32;2103:52;;;2151:1;2148;2141:12;2103:52;2174:29;2193:9;2174:29;:::i;:::-;2164:39;2250:2;2235:18;;;;2222:32;;-1:-1:-1;;;2006:254:1:o;2447:328::-;2524:6;2532;2540;2593:2;2581:9;2572:7;2568:23;2564:32;2561:52;;;2609:1;2606;2599:12;2561:52;2632:29;2651:9;2632:29;:::i;:::-;2622:39;;2680:38;2714:2;2703:9;2699:18;2680:38;:::i;:::-;2670:48;;2765:2;2754:9;2750:18;2737:32;2727:42;;2447:328;;;;;:::o;2780:184::-;-1:-1:-1;;;2829:1:1;2822:88;2929:4;2926:1;2919:15;2953:4;2950:1;2943:15;2969:275;3040:2;3034:9;3105:2;3086:13;;-1:-1:-1;;3082:27:1;3070:40;;3140:18;3125:34;;3161:22;;;3122:62;3119:88;;;3187:18;;:::i;:::-;3223:2;3216:22;2969:275;;-1:-1:-1;2969:275:1:o;3249:952::-;3333:6;3364:2;3407;3395:9;3386:7;3382:23;3378:32;3375:52;;;3423:1;3420;3413:12;3375:52;3463:9;3450:23;3492:18;3533:2;3525:6;3522:14;3519:34;;;3549:1;3546;3539:12;3519:34;3587:6;3576:9;3572:22;3562:32;;3632:7;3625:4;3621:2;3617:13;3613:27;3603:55;;3654:1;3651;3644:12;3603:55;3690:2;3677:16;3712:2;3708;3705:10;3702:36;;;3718:18;;:::i;:::-;3764:2;3761:1;3757:10;3747:20;;3787:28;3811:2;3807;3803:11;3787:28;:::i;:::-;3849:15;;;3919:11;;;3915:20;;;3880:12;;;;3947:19;;;3944:39;;;3979:1;3976;3969:12;3944:39;4003:11;;;;4023:148;4039:6;4034:3;4031:15;4023:148;;;4105:23;4124:3;4105:23;:::i;:::-;4093:36;;4056:12;;;;4149;;;;4023:148;;;4190:5;3249:952;-1:-1:-1;;;;;;;;3249:952:1:o;4206:186::-;4265:6;4318:2;4306:9;4297:7;4293:23;4289:32;4286:52;;;4334:1;4331;4324:12;4286:52;4357:29;4376:9;4357:29;:::i;4397:347::-;4462:6;4470;4523:2;4511:9;4502:7;4498:23;4494:32;4491:52;;;4539:1;4536;4529:12;4491:52;4562:29;4581:9;4562:29;:::i;:::-;4552:39;;4641:2;4630:9;4626:18;4613:32;4688:5;4681:13;4674:21;4667:5;4664:32;4654:60;;4710:1;4707;4700:12;4654:60;4733:5;4723:15;;;4397:347;;;;;:::o;4749:980::-;4844:6;4852;4860;4868;4921:3;4909:9;4900:7;4896:23;4892:33;4889:53;;;4938:1;4935;4928:12;4889:53;4961:29;4980:9;4961:29;:::i;:::-;4951:39;;5009:2;5030:38;5064:2;5053:9;5049:18;5030:38;:::i;:::-;5020:48;;5115:2;5104:9;5100:18;5087:32;5077:42;;5170:2;5159:9;5155:18;5142:32;5193:18;5234:2;5226:6;5223:14;5220:34;;;5250:1;5247;5240:12;5220:34;5288:6;5277:9;5273:22;5263:32;;5333:7;5326:4;5322:2;5318:13;5314:27;5304:55;;5355:1;5352;5345:12;5304:55;5391:2;5378:16;5413:2;5409;5406:10;5403:36;;;5419:18;;:::i;:::-;5461:53;5504:2;5485:13;;-1:-1:-1;;5481:27:1;5477:36;;5461:53;:::i;:::-;5448:66;;5537:2;5530:5;5523:17;5577:7;5572:2;5567;5563;5559:11;5555:20;5552:33;5549:53;;;5598:1;5595;5588:12;5549:53;5653:2;5648;5644;5640:11;5635:2;5628:5;5624:14;5611:45;5697:1;5692:2;5687;5680:5;5676:14;5672:23;5665:34;;5718:5;5708:15;;;;;4749:980;;;;;;;:::o;5734:260::-;5802:6;5810;5863:2;5851:9;5842:7;5838:23;5834:32;5831:52;;;5879:1;5876;5869:12;5831:52;5902:29;5921:9;5902:29;:::i;:::-;5892:39;;5950:38;5984:2;5973:9;5969:18;5950:38;:::i;:::-;5940:48;;5734:260;;;;;:::o;5999:437::-;6078:1;6074:12;;;;6121;;;6142:61;;6196:4;6188:6;6184:17;6174:27;;6142:61;6249:2;6241:6;6238:14;6218:18;6215:38;6212:218;;-1:-1:-1;;;6283:1:1;6276:88;6387:4;6384:1;6377:15;6415:4;6412:1;6405:15;6212:218;;5999:437;;;:::o;7687:184::-;-1:-1:-1;;;7736:1:1;7729:88;7836:4;7833:1;7826:15;7860:4;7857:1;7850:15;7876:128;7916:3;7947:1;7943:6;7940:1;7937:13;7934:39;;;7953:18;;:::i;:::-;-1:-1:-1;7989:9:1;;7876:128::o;8366:184::-;-1:-1:-1;;;8415:1:1;8408:88;8515:4;8512:1;8505:15;8539:4;8536:1;8529:15;8555:135;8594:3;8615:17;;;8612:43;;8635:18;;:::i;:::-;-1:-1:-1;8682:1:1;8671:13;;8555:135::o;9874:858::-;10149:3;10187:6;10181:13;10203:53;10249:6;10244:3;10237:4;10229:6;10225:17;10203:53;:::i;:::-;10319:13;;10278:16;;;;10341:57;10319:13;10278:16;10375:4;10363:17;;10341:57;:::i;:::-;10465:13;;10420:20;;;10487:57;10465:13;10420:20;10521:4;10509:17;;10487:57;:::i;:::-;10611:13;;10566:20;;;10633:57;10611:13;10566:20;10667:4;10655:17;;10633:57;:::i;:::-;10706:20;;9874:858;-1:-1:-1;;;;;;9874:858:1:o;10737:1679::-;11398:66;11393:3;11386:79;11368:3;11494:6;11488:13;11510:62;11565:6;11560:2;11555:3;11551:12;11544:4;11536:6;11532:17;11510:62;:::i;:::-;11636:66;11631:2;11591:16;;;11623:11;;;11616:87;11732:66;11727:2;11719:11;;11712:87;11824:13;;11846:63;11824:13;11895:2;11887:11;;11880:4;11868:17;;11846:63;:::i;:::-;11974:66;11969:2;11928:17;;;;11961:11;;;11954:87;12071:66;12065:3;12057:12;;12050:88;12163:13;;12185:64;12163:13;12234:3;12226:12;;12219:4;12207:17;;12185:64;:::i;:::-;12315:66;12309:3;12268:17;;;;12301:12;;;12294:88;12406:3;12398:12;;10737:1679;-1:-1:-1;;;;;10737:1679:1:o;12421:446::-;12683:29;12678:3;12671:42;12653:3;12742:6;12736:13;12758:62;12813:6;12808:2;12803:3;12799:12;12792:4;12784:6;12780:17;12758:62;:::i;:::-;12840:16;;;;12858:2;12836:25;;12421:446;-1:-1:-1;;12421:446:1:o;13683:125::-;13723:4;13751:1;13748;13745:8;13742:34;;;13756:18;;:::i;:::-;-1:-1:-1;13793:9:1;;13683:125::o;14586:274::-;14626:1;14652;14642:189;;-1:-1:-1;;;14684:1:1;14677:88;14788:4;14785:1;14778:15;14816:4;14813:1;14806:15;14642:189;-1:-1:-1;14845:9:1;;14586:274::o;14865:168::-;14905:7;14971:1;14967;14963:6;14959:14;14956:1;14953:21;14948:1;14941:9;14934:17;14930:45;14927:71;;;14978:18;;:::i;:::-;-1:-1:-1;15018:9:1;;14865:168::o;15038:204::-;15076:3;15112:4;15109:1;15105:12;15144:4;15141:1;15137:12;15179:3;15173:4;15169:14;15164:3;15161:23;15158:49;;;15187:18;;:::i;:::-;15223:13;;15038:204;-1:-1:-1;;;15038:204:1:o;15965:512::-;16159:4;-1:-1:-1;;;;;16269:2:1;16261:6;16257:15;16246:9;16239:34;16321:2;16313:6;16309:15;16304:2;16293:9;16289:18;16282:43;;16361:6;16356:2;16345:9;16341:18;16334:34;16404:3;16399:2;16388:9;16384:18;16377:31;16425:46;16466:3;16455:9;16451:19;16443:6;16425:46;:::i;:::-;16417:54;15965:512;-1:-1:-1;;;;;;15965:512:1:o;16482:249::-;16551:6;16604:2;16592:9;16583:7;16579:23;16575:32;16572:52;;;16620:1;16617;16610:12;16572:52;16652:9;16646:16;16671:30;16695:5;16671:30;:::i
Swarm Source
ipfs://cfa4ef6c2d1bd3e964e6960a1c7b2824d865b2c31199ffd8115973912bdcdc9e
Loading...
Loading
Loading...
Loading
Multichain Portfolio | 30 Chains
Chain | Token | Portfolio % | Price | Amount | Value |
---|
[ Download: CSV Export ]
A contract address hosts a smart contract, which is a set of code stored on the blockchain that runs when predetermined conditions are met. Learn more about addresses in our Knowledge Base.