Feature Tip: Add private address tag to any address under My Name Tag !
More Info
Private Name Tags
ContractCreator
TokenTracker
Latest 25 from a total of 34 transactions
Transaction Hash |
Method
|
Block
|
From
|
To
|
|||||
---|---|---|---|---|---|---|---|---|---|
Set Approval For... | 14982739 | 954 days ago | IN | 0 ETH | 0.00131876 | ||||
Safe Transfer Fr... | 14610198 | 1014 days ago | IN | 0 ETH | 0.00371936 | ||||
Safe Transfer Fr... | 14610176 | 1014 days ago | IN | 0 ETH | 0.00224839 | ||||
Safe Transfer Fr... | 14550207 | 1024 days ago | IN | 0 ETH | 0.00221316 | ||||
Safe Transfer Fr... | 14550207 | 1024 days ago | IN | 0 ETH | 0.0024578 | ||||
Safe Transfer Fr... | 14550206 | 1024 days ago | IN | 0 ETH | 0.00339773 | ||||
Set Approval For... | 14346276 | 1056 days ago | IN | 0 ETH | 0.00107549 | ||||
Mint | 14294540 | 1064 days ago | IN | 0.08 ETH | 0.00255178 | ||||
Mint | 14292350 | 1064 days ago | IN | 0.08 ETH | 0.00479388 | ||||
Mint | 14282609 | 1066 days ago | IN | 0.08 ETH | 0.00377962 | ||||
Set Base URI | 14256863 | 1069 days ago | IN | 0 ETH | 0.00272858 | ||||
Set Base URI | 14256859 | 1069 days ago | IN | 0 ETH | 0.00426307 | ||||
Set Base URI | 14256369 | 1070 days ago | IN | 0 ETH | 0.00191513 | ||||
Set Base URI | 14256293 | 1070 days ago | IN | 0 ETH | 0.00245331 | ||||
Mint | 14251138 | 1070 days ago | IN | 0.08 ETH | 0.01151448 | ||||
Mint | 14220352 | 1075 days ago | IN | 0.08 ETH | 0.00732192 | ||||
Mint | 14216746 | 1076 days ago | IN | 0.08 ETH | 0.00418643 | ||||
Mint | 14213970 | 1076 days ago | IN | 0.16 ETH | 0.01890823 | ||||
Transfer From | 14211691 | 1076 days ago | IN | 0 ETH | 0.00333364 | ||||
Mint | 14206411 | 1077 days ago | IN | 0.08 ETH | 0.00845029 | ||||
Set Public Sale | 14205781 | 1077 days ago | IN | 0 ETH | 0.00233033 | ||||
Withdraw All | 14205382 | 1077 days ago | IN | 0 ETH | 0.0023399 | ||||
Mint | 14205260 | 1077 days ago | IN | 0.24 ETH | 0.00778064 | ||||
Mint | 14205255 | 1077 days ago | IN | 0.08 ETH | 0.00525876 | ||||
Mint | 14205234 | 1077 days ago | IN | 0.16 ETH | 0.01003485 |
Latest 1 internal transaction
Advanced mode:
Parent Transaction Hash | Block |
From
|
To
|
|||
---|---|---|---|---|---|---|
14205382 | 1077 days ago | 0.96 ETH |
Loading...
Loading
Contract Source Code Verified (Exact Match)
Contract Name:
BalloonHearts
Compiler Version
v0.8.2+commit.661d1103
Contract Source Code (Solidity)
/** *Submitted for verification at Etherscan.io on 2022-02-13 */ // SPDX-License-Identifier: MIT // File: @openzeppelin/contracts/utils/Counters.sol // OpenZeppelin Contracts v4.4.1 (utils/Counters.sol) pragma solidity ^0.8.0; /** * @title Counters * @author Matt Condon (@shrugs) * @dev Provides counters that can only be incremented, decremented or reset. This can be used e.g. to track the number * of elements in a mapping, issuing ERC721 ids, or counting request ids. * * Include with `using Counters for Counters.Counter;` */ library Counters { struct Counter { // This variable should never be directly accessed by users of the library: interactions must be restricted to // the library's function. As of Solidity v0.5.2, this cannot be enforced, though there is a proposal to add // this feature: see https://github.com/ethereum/solidity/issues/4637 uint256 _value; // default: 0 } function current(Counter storage counter) internal view returns (uint256) { return counter._value; } function increment(Counter storage counter) internal { unchecked { counter._value += 1; } } function decrement(Counter storage counter) internal { uint256 value = counter._value; require(value > 0, "Counter: decrement overflow"); unchecked { counter._value = value - 1; } } function reset(Counter storage counter) internal { counter._value = 0; } } // File: @openzeppelin/contracts/utils/Strings.sol // OpenZeppelin Contracts v4.4.1 (utils/Strings.sol) pragma solidity ^0.8.0; /** * @dev String operations. */ library Strings { bytes16 private constant _HEX_SYMBOLS = "0123456789abcdef"; /** * @dev Converts a `uint256` to its ASCII `string` decimal representation. */ function toString(uint256 value) internal pure returns (string memory) { // Inspired by OraclizeAPI's implementation - MIT licence // https://github.com/oraclize/ethereum-api/blob/b42146b063c7d6ee1358846c198246239e9360e8/oraclizeAPI_0.4.25.sol if (value == 0) { return "0"; } uint256 temp = value; uint256 digits; while (temp != 0) { digits++; temp /= 10; } bytes memory buffer = new bytes(digits); while (value != 0) { digits -= 1; buffer[digits] = bytes1(uint8(48 + uint256(value % 10))); value /= 10; } return string(buffer); } /** * @dev Converts a `uint256` to its ASCII `string` hexadecimal representation. */ function toHexString(uint256 value) internal pure returns (string memory) { if (value == 0) { return "0x00"; } uint256 temp = value; uint256 length = 0; while (temp != 0) { length++; temp >>= 8; } return toHexString(value, length); } /** * @dev Converts a `uint256` to its ASCII `string` hexadecimal representation with fixed length. */ function toHexString(uint256 value, uint256 length) internal pure returns (string memory) { bytes memory buffer = new bytes(2 * length + 2); buffer[0] = "0"; buffer[1] = "x"; for (uint256 i = 2 * length + 1; i > 1; --i) { buffer[i] = _HEX_SYMBOLS[value & 0xf]; value >>= 4; } require(value == 0, "Strings: hex length insufficient"); return string(buffer); } } // File: @openzeppelin/contracts/utils/Context.sol // OpenZeppelin Contracts v4.4.1 (utils/Context.sol) pragma solidity ^0.8.0; /** * @dev Provides information about the current execution context, including the * sender of the transaction and its data. While these are generally available * via msg.sender and msg.data, they should not be accessed in such a direct * manner, since when dealing with meta-transactions the account sending and * paying for execution may not be the actual sender (as far as an application * is concerned). * * This contract is only required for intermediate, library-like contracts. */ abstract contract Context { function _msgSender() internal view virtual returns (address) { return msg.sender; } function _msgData() internal view virtual returns (bytes calldata) { return msg.data; } } // File: @openzeppelin/contracts/access/Ownable.sol // OpenZeppelin Contracts v4.4.1 (access/Ownable.sol) pragma solidity ^0.8.0; /** * @dev Contract module which provides a basic access control mechanism, where * there is an account (an owner) that can be granted exclusive access to * specific functions. * * By default, the owner account will be the one that deploys the contract. This * can later be changed with {transferOwnership}. * * This module is used through inheritance. It will make available the modifier * `onlyOwner`, which can be applied to your functions to restrict their use to * the owner. */ abstract contract Ownable is Context { address private _owner; event OwnershipTransferred(address indexed previousOwner, address indexed newOwner); /** * @dev Initializes the contract setting the deployer as the initial owner. */ constructor() { _transferOwnership(_msgSender()); } /** * @dev Returns the address of the current owner. */ function owner() public view virtual returns (address) { return _owner; } /** * @dev Throws if called by any account other than the owner. */ modifier onlyOwner() { require(owner() == _msgSender(), "Ownable: caller is not the owner"); _; } /** * @dev Leaves the contract without owner. It will not be possible to call * `onlyOwner` functions anymore. Can only be called by the current owner. * * NOTE: Renouncing ownership will leave the contract without an owner, * thereby removing any functionality that is only available to the owner. */ function renounceOwnership() public virtual onlyOwner { _transferOwnership(address(0)); } /** * @dev Transfers ownership of the contract to a new account (`newOwner`). * Can only be called by the current owner. */ function transferOwnership(address newOwner) public virtual onlyOwner { require(newOwner != address(0), "Ownable: new owner is the zero address"); _transferOwnership(newOwner); } /** * @dev Transfers ownership of the contract to a new account (`newOwner`). * Internal function without access restriction. */ function _transferOwnership(address newOwner) internal virtual { address oldOwner = _owner; _owner = newOwner; emit OwnershipTransferred(oldOwner, newOwner); } } // File: @openzeppelin/contracts/utils/Address.sol // OpenZeppelin Contracts v4.4.1 (utils/Address.sol) pragma solidity ^0.8.0; /** * @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 // OpenZeppelin Contracts v4.4.1 (token/ERC721/IERC721Receiver.sol) pragma solidity ^0.8.0; /** * @title ERC721 token receiver interface * @dev Interface for any contract that wants to support safeTransfers * from ERC721 asset contracts. */ interface IERC721Receiver { /** * @dev Whenever an {IERC721} `tokenId` token is transferred to this contract via {IERC721-safeTransferFrom} * by `operator` from `from`, this function is called. * * It must return its Solidity selector to confirm the token transfer. * If any other value is returned or the interface is not implemented by the recipient, the transfer will be reverted. * * The selector can be obtained in Solidity with `IERC721.onERC721Received.selector`. */ function onERC721Received( address operator, address from, uint256 tokenId, bytes calldata data ) external returns (bytes4); } // File: @openzeppelin/contracts/utils/introspection/IERC165.sol // OpenZeppelin Contracts v4.4.1 (utils/introspection/IERC165.sol) pragma solidity ^0.8.0; /** * @dev Interface of the ERC165 standard, as defined in the * https://eips.ethereum.org/EIPS/eip-165[EIP]. * * Implementers can declare support of contract interfaces, which can then be * queried by others ({ERC165Checker}). * * For an implementation, see {ERC165}. */ interface IERC165 { /** * @dev Returns true if this contract implements the interface defined by * `interfaceId`. See the corresponding * https://eips.ethereum.org/EIPS/eip-165#how-interfaces-are-identified[EIP section] * to learn more about how these ids are created. * * This function call must use less than 30 000 gas. */ function supportsInterface(bytes4 interfaceId) external view returns (bool); } // File: @openzeppelin/contracts/utils/introspection/ERC165.sol // OpenZeppelin Contracts v4.4.1 (utils/introspection/ERC165.sol) pragma solidity ^0.8.0; /** * @dev Implementation of the {IERC165} interface. * * Contracts that want to implement ERC165 should inherit from this contract and override {supportsInterface} to check * for the additional interface id that will be supported. For example: * * ```solidity * function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) { * return interfaceId == type(MyInterface).interfaceId || super.supportsInterface(interfaceId); * } * ``` * * Alternatively, {ERC165Storage} provides an easier to use but more expensive implementation. */ abstract contract ERC165 is IERC165 { /** * @dev See {IERC165-supportsInterface}. */ function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) { return interfaceId == type(IERC165).interfaceId; } } // File: @openzeppelin/contracts/token/ERC721/IERC721.sol // OpenZeppelin Contracts v4.4.1 (token/ERC721/IERC721.sol) pragma solidity ^0.8.0; /** * @dev Required interface of an ERC721 compliant contract. */ interface IERC721 is IERC165 { /** * @dev Emitted when `tokenId` token is transferred from `from` to `to`. */ event Transfer(address indexed from, address indexed to, uint256 indexed tokenId); /** * @dev Emitted when `owner` enables `approved` to manage the `tokenId` token. */ event Approval(address indexed owner, address indexed approved, uint256 indexed tokenId); /** * @dev Emitted when `owner` enables or disables (`approved`) `operator` to manage all of its assets. */ event ApprovalForAll(address indexed owner, address indexed operator, bool approved); /** * @dev Returns the number of tokens in ``owner``'s account. */ function balanceOf(address owner) external view returns (uint256 balance); /** * @dev Returns the owner of the `tokenId` token. * * Requirements: * * - `tokenId` must exist. */ function ownerOf(uint256 tokenId) external view returns (address owner); /** * @dev Safely transfers `tokenId` token from `from` to `to`, checking first that contract recipients * are aware of the ERC721 protocol to prevent tokens from being forever locked. * * Requirements: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `tokenId` token must exist and be owned by `from`. * - If the caller is not `from`, it must be have been allowed to move this token by either {approve} or {setApprovalForAll}. * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer. * * Emits a {Transfer} event. */ function safeTransferFrom( address from, address to, uint256 tokenId ) external; /** * @dev Transfers `tokenId` token from `from` to `to`. * * WARNING: Usage of this method is discouraged, use {safeTransferFrom} whenever possible. * * Requirements: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `tokenId` token must be owned by `from`. * - If the caller is not `from`, it must be approved to move this token by either {approve} or {setApprovalForAll}. * * Emits a {Transfer} event. */ function transferFrom( address from, address to, uint256 tokenId ) external; /** * @dev Gives permission to `to` to transfer `tokenId` token to another account. * The approval is cleared when the token is transferred. * * Only a single account can be approved at a time, so approving the zero address clears previous approvals. * * Requirements: * * - The caller must own the token or be an approved operator. * - `tokenId` must exist. * * Emits an {Approval} event. */ function approve(address to, uint256 tokenId) external; /** * @dev Returns the account approved for `tokenId` token. * * Requirements: * * - `tokenId` must exist. */ function getApproved(uint256 tokenId) external view returns (address operator); /** * @dev Approve or remove `operator` as an operator for the caller. * Operators can call {transferFrom} or {safeTransferFrom} for any token owned by the caller. * * Requirements: * * - The `operator` cannot be the caller. * * Emits an {ApprovalForAll} event. */ function setApprovalForAll(address operator, bool _approved) external; /** * @dev Returns if the `operator` is allowed to manage all of the assets of `owner`. * * See {setApprovalForAll} */ function isApprovedForAll(address owner, address operator) external view returns (bool); /** * @dev Safely transfers `tokenId` token from `from` to `to`. * * Requirements: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `tokenId` token must exist and be owned by `from`. * - If the caller is not `from`, it must be approved to move this token by either {approve} or {setApprovalForAll}. * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer. * * Emits a {Transfer} event. */ function safeTransferFrom( address from, address to, uint256 tokenId, bytes calldata data ) external; } // File: @openzeppelin/contracts/token/ERC721/extensions/IERC721Metadata.sol // OpenZeppelin Contracts v4.4.1 (token/ERC721/extensions/IERC721Metadata.sol) pragma solidity ^0.8.0; /** * @title ERC-721 Non-Fungible Token Standard, optional metadata extension * @dev See https://eips.ethereum.org/EIPS/eip-721 */ interface IERC721Metadata is IERC721 { /** * @dev Returns the token collection name. */ function name() external view returns (string memory); /** * @dev Returns the token collection symbol. */ function symbol() external view returns (string memory); /** * @dev Returns the Uniform Resource Identifier (URI) for `tokenId` token. */ function tokenURI(uint256 tokenId) external view returns (string memory); } // File: @openzeppelin/contracts/token/ERC721/ERC721.sol // OpenZeppelin Contracts v4.4.1 (token/ERC721/ERC721.sol) pragma solidity ^0.8.0; /** * @dev Implementation of https://eips.ethereum.org/EIPS/eip-721[ERC721] Non-Fungible Token Standard, including * the Metadata extension, but not including the Enumerable extension, which is available separately as * {ERC721Enumerable}. */ contract ERC721 is Context, ERC165, IERC721, IERC721Metadata { using Address for address; using Strings for uint256; // Token name string private _name; // Token symbol string private _symbol; // Mapping from token ID to owner address mapping(uint256 => address) private _owners; // Mapping owner address to token count mapping(address => uint256) private _balances; // Mapping from token ID to approved address mapping(uint256 => address) private _tokenApprovals; // Mapping from owner to operator approvals mapping(address => mapping(address => bool)) private _operatorApprovals; /** * @dev Initializes the contract by setting a `name` and a `symbol` to the token collection. */ constructor(string memory name_, string memory symbol_) { _name = name_; _symbol = symbol_; } /** * @dev See {IERC165-supportsInterface}. */ function supportsInterface(bytes4 interfaceId) public view virtual override(ERC165, IERC165) returns (bool) { return interfaceId == type(IERC721).interfaceId || interfaceId == type(IERC721Metadata).interfaceId || super.supportsInterface(interfaceId); } /** * @dev See {IERC721-balanceOf}. */ function balanceOf(address owner) public view virtual override returns (uint256) { require(owner != address(0), "ERC721: balance query for the zero address"); return _balances[owner]; } /** * @dev See {IERC721-ownerOf}. */ function ownerOf(uint256 tokenId) public view virtual override returns (address) { address owner = _owners[tokenId]; require(owner != address(0), "ERC721: owner query for nonexistent token"); return owner; } /** * @dev See {IERC721Metadata-name}. */ function name() public view virtual override returns (string memory) { return _name; } /** * @dev See {IERC721Metadata-symbol}. */ function symbol() public view virtual override returns (string memory) { return _symbol; } /** * @dev See {IERC721Metadata-tokenURI}. */ function tokenURI(uint256 tokenId) public view virtual override returns (string memory) { require(_exists(tokenId), "ERC721Metadata: URI query for nonexistent token"); string memory baseURI = _baseURI(); return bytes(baseURI).length > 0 ? string(abi.encodePacked(baseURI, tokenId.toString(), ".json")) : ""; } /** * @dev Base URI for computing {tokenURI}. If set, the resulting URI for each * token will be the concatenation of the `baseURI` and the `tokenId`. Empty * by default, can be overriden in child contracts. */ function _baseURI() internal view virtual returns (string memory) { return ""; } /** * @dev See {IERC721-approve}. */ function approve(address to, uint256 tokenId) public virtual override { address owner = ERC721.ownerOf(tokenId); require(to != owner, "ERC721: approval to current owner"); require( _msgSender() == owner || isApprovedForAll(owner, _msgSender()), "ERC721: approve caller is not owner nor approved for all" ); _approve(to, tokenId); } /** * @dev See {IERC721-getApproved}. */ function getApproved(uint256 tokenId) public view virtual override returns (address) { require(_exists(tokenId), "ERC721: approved query for nonexistent token"); return _tokenApprovals[tokenId]; } /** * @dev See {IERC721-setApprovalForAll}. */ function setApprovalForAll(address operator, bool approved) public virtual override { _setApprovalForAll(_msgSender(), operator, approved); } /** * @dev See {IERC721-isApprovedForAll}. */ function isApprovedForAll(address owner, address operator) public view virtual override returns (bool) { return _operatorApprovals[owner][operator]; } /** * @dev See {IERC721-transferFrom}. */ function transferFrom( address from, address to, uint256 tokenId ) public virtual override { //solhint-disable-next-line max-line-length require(_isApprovedOrOwner(_msgSender(), tokenId), "ERC721: transfer caller is not owner nor approved"); _transfer(from, to, tokenId); } /** * @dev See {IERC721-safeTransferFrom}. */ function safeTransferFrom( address from, address to, uint256 tokenId ) public virtual override { safeTransferFrom(from, to, tokenId, ""); } /** * @dev See {IERC721-safeTransferFrom}. */ function safeTransferFrom( address from, address to, uint256 tokenId, bytes memory _data ) public virtual override { require(_isApprovedOrOwner(_msgSender(), tokenId), "ERC721: transfer caller is not owner nor approved"); _safeTransfer(from, to, tokenId, _data); } /** * @dev Safely transfers `tokenId` token from `from` to `to`, checking first that contract recipients * are aware of the ERC721 protocol to prevent tokens from being forever locked. * * `_data` is additional data, it has no specified format and it is sent in call to `to`. * * This internal function is equivalent to {safeTransferFrom}, and can be used to e.g. * implement alternative mechanisms to perform token transfer, such as signature-based. * * Requirements: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `tokenId` token must exist and be owned by `from`. * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer. * * Emits a {Transfer} event. */ function _safeTransfer( address from, address to, uint256 tokenId, bytes memory _data ) internal virtual { _transfer(from, to, tokenId); require(_checkOnERC721Received(from, to, tokenId, _data), "ERC721: transfer to non ERC721Receiver implementer"); } /** * @dev Returns whether `tokenId` exists. * * Tokens can be managed by their owner or approved accounts via {approve} or {setApprovalForAll}. * * Tokens start existing when they are minted (`_mint`), * and stop existing when they are burned (`_burn`). */ function _exists(uint256 tokenId) internal view virtual returns (bool) { return _owners[tokenId] != address(0); } /** * @dev Returns whether `spender` is allowed to manage `tokenId`. * * Requirements: * * - `tokenId` must exist. */ function _isApprovedOrOwner(address spender, uint256 tokenId) internal view virtual returns (bool) { require(_exists(tokenId), "ERC721: operator query for nonexistent token"); address owner = ERC721.ownerOf(tokenId); return (spender == owner || 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 Approve `operator` to operate on all of `owner` tokens * * Emits a {ApprovalForAll} event. */ function _setApprovalForAll( address owner, address operator, bool approved ) internal virtual { require(owner != operator, "ERC721: approve to caller"); _operatorApprovals[owner][operator] = approved; emit ApprovalForAll(owner, operator, approved); } /** * @dev Internal function to invoke {IERC721Receiver-onERC721Received} on a target address. * The call is not executed if the target address is not a contract. * * @param from address representing the previous owner of the given token ID * @param to target address that will receive the tokens * @param tokenId uint256 ID of the token to be transferred * @param _data bytes optional data to send along with the call * @return bool whether the call correctly returned the expected magic value */ function _checkOnERC721Received( address from, address to, uint256 tokenId, bytes memory _data ) private returns (bool) { if (to.isContract()) { try IERC721Receiver(to).onERC721Received(_msgSender(), from, tokenId, _data) returns (bytes4 retval) { return retval == IERC721Receiver.onERC721Received.selector; } catch (bytes memory reason) { if (reason.length == 0) { revert("ERC721: transfer to non ERC721Receiver implementer"); } else { assembly { revert(add(32, reason), mload(reason)) } } } } else { return true; } } /** * @dev Hook that is called before any token transfer. This includes minting * and burning. * * Calling conditions: * * - When `from` and `to` are both non-zero, ``from``'s `tokenId` will be * transferred to `to`. * - When `from` is zero, `tokenId` will be minted for `to`. * - When `to` is zero, ``from``'s `tokenId` will be burned. * - `from` and `to` are never both zero. * * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks]. */ function _beforeTokenTransfer( address from, address to, uint256 tokenId ) internal virtual {} } // File: contracts/BalloonHearts.sol pragma solidity ^0.8.2; contract BalloonHearts is ERC721, Ownable { using Counters for Counters.Counter; Counters.Counter private _tokenIdCounter; string _baseUri = "ipfs://Qmd8LneUPbhRs8U6M3sgQML7WB6ZLz5mbYgzcePnwYsLxA/"; uint256 public constant MAX_SUPPLY = 1000; uint256 public maxCurrentMint = 1000; uint256 public price = 0.08 ether; uint256 public maxPresaleMint = 3; uint256 public maxMint = 12; uint256 public maxPerTransaction = 6; bool public hasPresaleStarted = false; bool public hasPublicSaleStarted = false; mapping(address => bool) public presaleWhitelist; mapping(address => uint256) public purchased; constructor() ERC721("Balloon Hearts", "BalloonHearts") { } function addToPresaleWhitelist(address[] calldata entries) external onlyOwner { for(uint256 i = 0; i < entries.length; i++) { presaleWhitelist[entries[i]] = true; } } function removeFromPresaleWhitelist(address[] calldata entries) external onlyOwner { for(uint256 i = 0; i < entries.length; i++) { presaleWhitelist[entries[i]] = false; } } function reserve(address[] calldata receivers) external onlyOwner { require(receivers.length + totalSupply() <= MAX_SUPPLY, "Not enough tokens left for minting"); for (uint256 i = 0; i < receivers.length; i++) { safeMint(receivers[i]); } } function mint(uint256 amount) external payable { require(msg.value >= price * amount, "Incorrect ETH"); require(hasPresaleStarted, "Cannot mint before presale"); require(hasPublicSaleStarted || presaleWhitelist[msg.sender], "Buyer not whitelisted for presale"); require(amount + totalSupply() <= MAX_SUPPLY && amount + totalSupply() <= maxCurrentMint, "Not enough tokens left for minting"); require(purchased[msg.sender] + amount <= maxMint, "Cannot mint more than the max tokens per Address"); require(amount <= maxPresaleMint || (hasPublicSaleStarted && amount <= maxPerTransaction), "Max mint per transaction exceeded"); for (uint256 i = 0; i < amount; i++) { safeMint(msg.sender); } purchased[msg.sender] += amount; } function safeMint(address to) internal { uint256 tokenId = _tokenIdCounter.current(); _tokenIdCounter.increment(); _safeMint(to, tokenId); } function totalSupply() public view returns (uint256) { return _tokenIdCounter.current(); } function _baseURI() internal view override returns (string memory) { return _baseUri; } function setBaseURI(string memory newBaseURI) external onlyOwner { _baseUri = newBaseURI; } function setPresale(bool val) external onlyOwner { hasPresaleStarted = val; } function setPublicSale(bool val) external onlyOwner { hasPublicSaleStarted = val; } function setPrice(uint256 newPrice) external onlyOwner { price = newPrice; } function setMaxMint(uint256 newMint) external onlyOwner { maxCurrentMint = newMint; } function withdrawAll() external onlyOwner { require(payable(msg.sender).send(address(this).balance)); } }
Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"approved","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[],"name":"MAX_SUPPLY","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address[]","name":"entries","type":"address[]"}],"name":"addToPresaleWhitelist","outputs":[],"stateMutability":"nonpayable","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":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"hasPresaleStarted","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"hasPublicSaleStarted","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxCurrentMint","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxMint","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxPerTransaction","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxPresaleMint","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"mint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"presaleWhitelist","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"price","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"purchased","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address[]","name":"entries","type":"address[]"}],"name":"removeFromPresaleWhitelist","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address[]","name":"receivers","type":"address[]"}],"name":"reserve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"_data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"newBaseURI","type":"string"}],"name":"setBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"newMint","type":"uint256"}],"name":"setMaxMint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"val","type":"bool"}],"name":"setPresale","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"newPrice","type":"uint256"}],"name":"setPrice","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"val","type":"bool"}],"name":"setPublicSale","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"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"withdrawAll","outputs":[],"stateMutability":"nonpayable","type":"function"}]
Contract Creation Code
60e060405260366080818152906200246d60a039805162000029916008916020909101906200014d565b506103e860095567011c37937e080000600a556003600b55600c80556006600d55600e805461ffff191690553480156200006257600080fd5b50604080518082018252600e81526d42616c6c6f6f6e2048656172747360901b60208083019182528351808501909452600d84526c42616c6c6f6f6e48656172747360981b908401528151919291620000be916000916200014d565b508051620000d49060019060208401906200014d565b505050620000f1620000eb620000f760201b60201c565b620000fb565b62000230565b3390565b600680546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b8280546200015b90620001f3565b90600052602060002090601f0160209004810192826200017f5760008555620001ca565b82601f106200019a57805160ff1916838001178555620001ca565b82800160010185558215620001ca579182015b82811115620001ca578251825591602001919060010190620001ad565b50620001d8929150620001dc565b5090565b5b80821115620001d85760008155600101620001dd565b6002810460018216806200020857607f821691505b602082108114156200022a57634e487b7160e01b600052602260045260246000fd5b50919050565b61222d80620002406000396000f3fe60806040526004361061021a5760003560e01c8063853828b611610123578063b0220015116100ab578063d682ed861161006f578063d682ed86146105ee578063e985e9c51461060e578063eb8835ab14610657578063f2fde38b14610687578063fdd4b0f0146106a75761021a565b8063b02200151461055e578063b457627814610578578063b88d4fde1461058e578063c54e73e3146105ae578063c87b56dd146105ce5761021a565b806391b7f5ed116100f257806391b7f5ed146104e057806395d89b4114610500578063a035b1fe14610515578063a0712d681461052b578063a22cb4651461053e5761021a565b8063853828b61461046d5780638da5cb5b146104825780638e07484c146104a05780638f65fe0a146104c05761021a565b8063522fe98e116101a65780635aca1bb6116101755780635aca1bb6146103e25780636352211e1461040257806370a0823114610422578063715018a6146104425780637501f741146104575761021a565b8063522fe98e1461035f578063547520fe1461038c57806355f804b3146103ac578063571b04b2146103cc5761021a565b806318160ddd116101ed57806318160ddd146102d057806323b872dd146102f357806332cb6b0c1461031357806342842e0e146103295780634b980d67146103495761021a565b806301ffc9a71461021f57806306fdde0314610254578063081812fc14610276578063095ea7b3146102ae575b600080fd5b34801561022b57600080fd5b5061023f61023a366004611e3c565b6106c6565b60405190151581526020015b60405180910390f35b34801561026057600080fd5b5061026961071a565b60405161024b9190611f7a565b34801561028257600080fd5b50610296610291366004611eba565b6107ac565b6040516001600160a01b03909116815260200161024b565b3480156102ba57600080fd5b506102ce6102c9366004611d8a565b610846565b005b3480156102dc57600080fd5b506102e561095c565b60405190815260200161024b565b3480156102ff57600080fd5b506102ce61030e366004611cad565b61096c565b34801561031f57600080fd5b506102e56103e881565b34801561033557600080fd5b506102ce610344366004611cad565b61099d565b34801561035557600080fd5b506102e5600d5481565b34801561036b57600080fd5b506102e561037a366004611c61565b60106020526000908152604090205481565b34801561039857600080fd5b506102ce6103a7366004611eba565b6109b8565b3480156103b857600080fd5b506102ce6103c7366004611e74565b6109e7565b3480156103d857600080fd5b506102e560095481565b3480156103ee57600080fd5b506102ce6103fd366004611e22565b610a28565b34801561040e57600080fd5b5061029661041d366004611eba565b610a6c565b34801561042e57600080fd5b506102e561043d366004611c61565b610ae3565b34801561044e57600080fd5b506102ce610b6a565b34801561046357600080fd5b506102e5600c5481565b34801561047957600080fd5b506102ce610ba0565b34801561048e57600080fd5b506006546001600160a01b0316610296565b3480156104ac57600080fd5b506102ce6104bb366004611db3565b610bee565b3480156104cc57600080fd5b506102ce6104db366004611db3565b610c98565b3480156104ec57600080fd5b506102ce6104fb366004611eba565b610d42565b34801561050c57600080fd5b50610269610d71565b34801561052157600080fd5b506102e5600a5481565b6102ce610539366004611eba565b610d80565b34801561054a57600080fd5b506102ce610559366004611d61565b61103a565b34801561056a57600080fd5b50600e5461023f9060ff1681565b34801561058457600080fd5b506102e5600b5481565b34801561059a57600080fd5b506102ce6105a9366004611ce8565b611045565b3480156105ba57600080fd5b506102ce6105c9366004611e22565b61107d565b3480156105da57600080fd5b506102696105e9366004611eba565b6110ba565b3480156105fa57600080fd5b506102ce610609366004611db3565b611195565b34801561061a57600080fd5b5061023f610629366004611c7b565b6001600160a01b03918216600090815260056020908152604080832093909416825291909152205460ff1690565b34801561066357600080fd5b5061023f610672366004611c61565b600f6020526000908152604090205460ff1681565b34801561069357600080fd5b506102ce6106a2366004611c61565b61124c565b3480156106b357600080fd5b50600e5461023f90610100900460ff1681565b60006001600160e01b031982166380ac58cd60e01b14806106f757506001600160e01b03198216635b5e139f60e01b145b8061071257506301ffc9a760e01b6001600160e01b03198316145b90505b919050565b60606000805461072990612135565b80601f016020809104026020016040519081016040528092919081815260200182805461075590612135565b80156107a25780601f10610777576101008083540402835291602001916107a2565b820191906000526020600020905b81548152906001019060200180831161078557829003601f168201915b5050505050905090565b6000818152600260205260408120546001600160a01b031661082a5760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b60648201526084015b60405180910390fd5b506000908152600460205260409020546001600160a01b031690565b600061085182610a6c565b9050806001600160a01b0316836001600160a01b031614156108bf5760405162461bcd60e51b815260206004820152602160248201527f4552433732313a20617070726f76616c20746f2063757272656e74206f776e656044820152603960f91b6064820152608401610821565b336001600160a01b03821614806108db57506108db8133610629565b61094d5760405162461bcd60e51b815260206004820152603860248201527f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760448201527f6e6572206e6f7220617070726f76656420666f7220616c6c00000000000000006064820152608401610821565b61095783836112e7565b505050565b600061096760075490565b905090565b6109763382611355565b6109925760405162461bcd60e51b815260040161082190612056565b61095783838361144c565b61095783838360405180602001604052806000815250611045565b6006546001600160a01b031633146109e25760405162461bcd60e51b815260040161082190612021565b600955565b6006546001600160a01b03163314610a115760405162461bcd60e51b815260040161082190612021565b8051610a24906008906020840190611b2b565b5050565b6006546001600160a01b03163314610a525760405162461bcd60e51b815260040161082190612021565b600e80549115156101000261ff0019909216919091179055565b6000818152600260205260408120546001600160a01b0316806107125760405162461bcd60e51b815260206004820152602960248201527f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460448201526832b73a103a37b5b2b760b91b6064820152608401610821565b60006001600160a01b038216610b4e5760405162461bcd60e51b815260206004820152602a60248201527f4552433732313a2062616c616e636520717565727920666f7220746865207a65604482015269726f206164647265737360b01b6064820152608401610821565b506001600160a01b031660009081526003602052604090205490565b6006546001600160a01b03163314610b945760405162461bcd60e51b815260040161082190612021565b610b9e60006115ec565b565b6006546001600160a01b03163314610bca5760405162461bcd60e51b815260040161082190612021565b60405133904780156108fc02916000818181858888f19350505050610b9e57600080fd5b6006546001600160a01b03163314610c185760405162461bcd60e51b815260040161082190612021565b60005b81811015610957576001600f6000858585818110610c4957634e487b7160e01b600052603260045260246000fd5b9050602002016020810190610c5e9190611c61565b6001600160a01b031681526020810191909152604001600020805460ff191691151591909117905580610c9081612170565b915050610c1b565b6006546001600160a01b03163314610cc25760405162461bcd60e51b815260040161082190612021565b60005b81811015610957576000600f6000858585818110610cf357634e487b7160e01b600052603260045260246000fd5b9050602002016020810190610d089190611c61565b6001600160a01b031681526020810191909152604001600020805460ff191691151591909117905580610d3a81612170565b915050610cc5565b6006546001600160a01b03163314610d6c5760405162461bcd60e51b815260040161082190612021565b600a55565b60606001805461072990612135565b80600a54610d8e91906120d3565b341015610dcd5760405162461bcd60e51b815260206004820152600d60248201526c092dcc6dee4e4cac6e8408aa89609b1b6044820152606401610821565b600e5460ff16610e1f5760405162461bcd60e51b815260206004820152601a60248201527f43616e6e6f74206d696e74206265666f72652070726573616c650000000000006044820152606401610821565b600e54610100900460ff1680610e445750336000908152600f602052604090205460ff165b610e9a5760405162461bcd60e51b815260206004820152602160248201527f4275796572206e6f742077686974656c697374656420666f722070726573616c6044820152606560f81b6064820152608401610821565b6103e8610ea561095c565b610eaf90836120a7565b11158015610ed05750600954610ec361095c565b610ecd90836120a7565b11155b610eec5760405162461bcd60e51b815260040161082190611fdf565b600c5433600090815260106020526040902054610f0a9083906120a7565b1115610f715760405162461bcd60e51b815260206004820152603060248201527f43616e6e6f74206d696e74206d6f7265207468616e20746865206d617820746f60448201526f6b656e7320706572204164647265737360801b6064820152608401610821565b600b5481111580610f965750600e54610100900460ff168015610f965750600d548111155b610fec5760405162461bcd60e51b815260206004820152602160248201527f4d6178206d696e7420706572207472616e73616374696f6e20657863656564656044820152601960fa1b6064820152608401610821565b60005b81811015611012576110003361163e565b8061100a81612170565b915050610fef565b5033600090815260106020526040812080548392906110329084906120a7565b909155505050565b610a24338383611663565b61104f3383611355565b61106b5760405162461bcd60e51b815260040161082190612056565b61107784848484611732565b50505050565b6006546001600160a01b031633146110a75760405162461bcd60e51b815260040161082190612021565b600e805460ff1916911515919091179055565b6000818152600260205260409020546060906001600160a01b03166111395760405162461bcd60e51b815260206004820152602f60248201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60448201526e3732bc34b9ba32b73a103a37b5b2b760891b6064820152608401610821565b6000611143611765565b90506000815111611163576040518060200160405280600081525061118e565b8061116d84611774565b60405160200161117e929190611efe565b6040516020818303038152906040525b9392505050565b6006546001600160a01b031633146111bf5760405162461bcd60e51b815260040161082190612021565b6103e86111ca61095c565b6111d490836120a7565b11156111f25760405162461bcd60e51b815260040161082190611fdf565b60005b818110156109575761123a83838381811061122057634e487b7160e01b600052603260045260246000fd5b90506020020160208101906112359190611c61565b61163e565b8061124481612170565b9150506111f5565b6006546001600160a01b031633146112765760405162461bcd60e51b815260040161082190612021565b6001600160a01b0381166112db5760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610821565b6112e4816115ec565b50565b600081815260046020526040902080546001600160a01b0319166001600160a01b038416908117909155819061131c82610a6c565b6001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b6000818152600260205260408120546001600160a01b03166113ce5760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b6064820152608401610821565b60006113d983610a6c565b9050806001600160a01b0316846001600160a01b031614806114145750836001600160a01b0316611409846107ac565b6001600160a01b0316145b8061144457506001600160a01b0380821660009081526005602090815260408083209388168352929052205460ff165b949350505050565b826001600160a01b031661145f82610a6c565b6001600160a01b0316146114c75760405162461bcd60e51b815260206004820152602960248201527f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960448201526839903737ba1037bbb760b91b6064820152608401610821565b6001600160a01b0382166115295760405162461bcd60e51b8152602060048201526024808201527f4552433732313a207472616e7366657220746f20746865207a65726f206164646044820152637265737360e01b6064820152608401610821565b6115346000826112e7565b6001600160a01b038316600090815260036020526040812080546001929061155d9084906120f2565b90915550506001600160a01b038216600090815260036020526040812080546001929061158b9084906120a7565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b0386811691821790925591518493918716917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef91a4505050565b600680546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b600061164960075490565b9050611659600780546001019055565b610a24828261188f565b816001600160a01b0316836001600160a01b031614156116c55760405162461bcd60e51b815260206004820152601960248201527f4552433732313a20617070726f766520746f2063616c6c6572000000000000006044820152606401610821565b6001600160a01b03838116600081815260056020908152604080832094871680845294825291829020805460ff191686151590811790915591519182527f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a3505050565b61173d84848461144c565b611749848484846118a9565b6110775760405162461bcd60e51b815260040161082190611f8d565b60606008805461072990612135565b60608161179957506040805180820190915260018152600360fc1b6020820152610715565b8160005b81156117c357806117ad81612170565b91506117bc9050600a836120bf565b915061179d565b60008167ffffffffffffffff8111156117ec57634e487b7160e01b600052604160045260246000fd5b6040519080825280601f01601f191660200182016040528015611816576020820181803683370190505b5090505b84156114445761182b6001836120f2565b9150611838600a8661218b565b6118439060306120a7565b60f81b81838151811061186657634e487b7160e01b600052603260045260246000fd5b60200101906001600160f81b031916908160001a905350611888600a866120bf565b945061181a565b610a248282604051806020016040528060008152506119b6565b60006001600160a01b0384163b156119ab57604051630a85bd0160e11b81526001600160a01b0385169063150b7a02906118ed903390899088908890600401611f3d565b602060405180830381600087803b15801561190757600080fd5b505af1925050508015611937575060408051601f3d908101601f1916820190925261193491810190611e58565b60015b611991573d808015611965576040519150601f19603f3d011682016040523d82523d6000602084013e61196a565b606091505b5080516119895760405162461bcd60e51b815260040161082190611f8d565b805181602001fd5b6001600160e01b031916630a85bd0160e11b149050611444565b506001949350505050565b6119c083836119e9565b6119cd60008484846118a9565b6109575760405162461bcd60e51b815260040161082190611f8d565b6001600160a01b038216611a3f5760405162461bcd60e51b815260206004820181905260248201527f4552433732313a206d696e7420746f20746865207a65726f20616464726573736044820152606401610821565b6000818152600260205260409020546001600160a01b031615611aa45760405162461bcd60e51b815260206004820152601c60248201527f4552433732313a20746f6b656e20616c7265616479206d696e746564000000006044820152606401610821565b6001600160a01b0382166000908152600360205260408120805460019290611acd9084906120a7565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b03861690811790915590518392907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a45050565b828054611b3790612135565b90600052602060002090601f016020900481019282611b595760008555611b9f565b82601f10611b7257805160ff1916838001178555611b9f565b82800160010185558215611b9f579182015b82811115611b9f578251825591602001919060010190611b84565b50611bab929150611baf565b5090565b5b80821115611bab5760008155600101611bb0565b600067ffffffffffffffff80841115611bdf57611bdf6121cb565b604051601f8501601f19908116603f01168101908282118183101715611c0757611c076121cb565b81604052809350858152868686011115611c2057600080fd5b858560208301376000602087830101525050509392505050565b80356001600160a01b038116811461071557600080fd5b8035801515811461071557600080fd5b600060208284031215611c72578081fd5b61118e82611c3a565b60008060408385031215611c8d578081fd5b611c9683611c3a565b9150611ca460208401611c3a565b90509250929050565b600080600060608486031215611cc1578081fd5b611cca84611c3a565b9250611cd860208501611c3a565b9150604084013590509250925092565b60008060008060808587031215611cfd578081fd5b611d0685611c3a565b9350611d1460208601611c3a565b925060408501359150606085013567ffffffffffffffff811115611d36578182fd5b8501601f81018713611d46578182fd5b611d5587823560208401611bc4565b91505092959194509250565b60008060408385031215611d73578182fd5b611d7c83611c3a565b9150611ca460208401611c51565b60008060408385031215611d9c578182fd5b611da583611c3a565b946020939093013593505050565b60008060208385031215611dc5578182fd5b823567ffffffffffffffff80821115611ddc578384fd5b818501915085601f830112611def578384fd5b813581811115611dfd578485fd5b8660208083028501011115611e10578485fd5b60209290920196919550909350505050565b600060208284031215611e33578081fd5b61118e82611c51565b600060208284031215611e4d578081fd5b813561118e816121e1565b600060208284031215611e69578081fd5b815161118e816121e1565b600060208284031215611e85578081fd5b813567ffffffffffffffff811115611e9b578182fd5b8201601f81018413611eab578182fd5b61144484823560208401611bc4565b600060208284031215611ecb578081fd5b5035919050565b60008151808452611eea816020860160208601612109565b601f01601f19169290920160200192915050565b60008351611f10818460208801612109565b835190830190611f24818360208801612109565b64173539b7b760d91b9101908152600501949350505050565b6001600160a01b0385811682528416602082015260408101839052608060608201819052600090611f7090830184611ed2565b9695505050505050565b60006020825261118e6020830184611ed2565b60208082526032908201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560408201527131b2b4bb32b91034b6b83632b6b2b73a32b960711b606082015260800190565b60208082526022908201527f4e6f7420656e6f75676820746f6b656e73206c65667420666f72206d696e74696040820152616e6760f01b606082015260800190565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b60208082526031908201527f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f6040820152701ddb995c881b9bdc88185c1c1c9bdd9959607a1b606082015260800190565b600082198211156120ba576120ba61219f565b500190565b6000826120ce576120ce6121b5565b500490565b60008160001904831182151516156120ed576120ed61219f565b500290565b6000828210156121045761210461219f565b500390565b60005b8381101561212457818101518382015260200161210c565b838111156110775750506000910152565b60028104600182168061214957607f821691505b6020821081141561216a57634e487b7160e01b600052602260045260246000fd5b50919050565b60006000198214156121845761218461219f565b5060010190565b60008261219a5761219a6121b5565b500690565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052601260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b6001600160e01b0319811681146112e457600080fdfea264697066735822122045f4f7b3500a9461d909f12df2166c8021ee202f573568ac73598d72ecaeed6364736f6c63430008020033697066733a2f2f516d64384c6e655550626852733855364d337367514d4c375742365a4c7a356d6259677a6365506e7759734c78412f
Deployed Bytecode
0x60806040526004361061021a5760003560e01c8063853828b611610123578063b0220015116100ab578063d682ed861161006f578063d682ed86146105ee578063e985e9c51461060e578063eb8835ab14610657578063f2fde38b14610687578063fdd4b0f0146106a75761021a565b8063b02200151461055e578063b457627814610578578063b88d4fde1461058e578063c54e73e3146105ae578063c87b56dd146105ce5761021a565b806391b7f5ed116100f257806391b7f5ed146104e057806395d89b4114610500578063a035b1fe14610515578063a0712d681461052b578063a22cb4651461053e5761021a565b8063853828b61461046d5780638da5cb5b146104825780638e07484c146104a05780638f65fe0a146104c05761021a565b8063522fe98e116101a65780635aca1bb6116101755780635aca1bb6146103e25780636352211e1461040257806370a0823114610422578063715018a6146104425780637501f741146104575761021a565b8063522fe98e1461035f578063547520fe1461038c57806355f804b3146103ac578063571b04b2146103cc5761021a565b806318160ddd116101ed57806318160ddd146102d057806323b872dd146102f357806332cb6b0c1461031357806342842e0e146103295780634b980d67146103495761021a565b806301ffc9a71461021f57806306fdde0314610254578063081812fc14610276578063095ea7b3146102ae575b600080fd5b34801561022b57600080fd5b5061023f61023a366004611e3c565b6106c6565b60405190151581526020015b60405180910390f35b34801561026057600080fd5b5061026961071a565b60405161024b9190611f7a565b34801561028257600080fd5b50610296610291366004611eba565b6107ac565b6040516001600160a01b03909116815260200161024b565b3480156102ba57600080fd5b506102ce6102c9366004611d8a565b610846565b005b3480156102dc57600080fd5b506102e561095c565b60405190815260200161024b565b3480156102ff57600080fd5b506102ce61030e366004611cad565b61096c565b34801561031f57600080fd5b506102e56103e881565b34801561033557600080fd5b506102ce610344366004611cad565b61099d565b34801561035557600080fd5b506102e5600d5481565b34801561036b57600080fd5b506102e561037a366004611c61565b60106020526000908152604090205481565b34801561039857600080fd5b506102ce6103a7366004611eba565b6109b8565b3480156103b857600080fd5b506102ce6103c7366004611e74565b6109e7565b3480156103d857600080fd5b506102e560095481565b3480156103ee57600080fd5b506102ce6103fd366004611e22565b610a28565b34801561040e57600080fd5b5061029661041d366004611eba565b610a6c565b34801561042e57600080fd5b506102e561043d366004611c61565b610ae3565b34801561044e57600080fd5b506102ce610b6a565b34801561046357600080fd5b506102e5600c5481565b34801561047957600080fd5b506102ce610ba0565b34801561048e57600080fd5b506006546001600160a01b0316610296565b3480156104ac57600080fd5b506102ce6104bb366004611db3565b610bee565b3480156104cc57600080fd5b506102ce6104db366004611db3565b610c98565b3480156104ec57600080fd5b506102ce6104fb366004611eba565b610d42565b34801561050c57600080fd5b50610269610d71565b34801561052157600080fd5b506102e5600a5481565b6102ce610539366004611eba565b610d80565b34801561054a57600080fd5b506102ce610559366004611d61565b61103a565b34801561056a57600080fd5b50600e5461023f9060ff1681565b34801561058457600080fd5b506102e5600b5481565b34801561059a57600080fd5b506102ce6105a9366004611ce8565b611045565b3480156105ba57600080fd5b506102ce6105c9366004611e22565b61107d565b3480156105da57600080fd5b506102696105e9366004611eba565b6110ba565b3480156105fa57600080fd5b506102ce610609366004611db3565b611195565b34801561061a57600080fd5b5061023f610629366004611c7b565b6001600160a01b03918216600090815260056020908152604080832093909416825291909152205460ff1690565b34801561066357600080fd5b5061023f610672366004611c61565b600f6020526000908152604090205460ff1681565b34801561069357600080fd5b506102ce6106a2366004611c61565b61124c565b3480156106b357600080fd5b50600e5461023f90610100900460ff1681565b60006001600160e01b031982166380ac58cd60e01b14806106f757506001600160e01b03198216635b5e139f60e01b145b8061071257506301ffc9a760e01b6001600160e01b03198316145b90505b919050565b60606000805461072990612135565b80601f016020809104026020016040519081016040528092919081815260200182805461075590612135565b80156107a25780601f10610777576101008083540402835291602001916107a2565b820191906000526020600020905b81548152906001019060200180831161078557829003601f168201915b5050505050905090565b6000818152600260205260408120546001600160a01b031661082a5760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b60648201526084015b60405180910390fd5b506000908152600460205260409020546001600160a01b031690565b600061085182610a6c565b9050806001600160a01b0316836001600160a01b031614156108bf5760405162461bcd60e51b815260206004820152602160248201527f4552433732313a20617070726f76616c20746f2063757272656e74206f776e656044820152603960f91b6064820152608401610821565b336001600160a01b03821614806108db57506108db8133610629565b61094d5760405162461bcd60e51b815260206004820152603860248201527f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760448201527f6e6572206e6f7220617070726f76656420666f7220616c6c00000000000000006064820152608401610821565b61095783836112e7565b505050565b600061096760075490565b905090565b6109763382611355565b6109925760405162461bcd60e51b815260040161082190612056565b61095783838361144c565b61095783838360405180602001604052806000815250611045565b6006546001600160a01b031633146109e25760405162461bcd60e51b815260040161082190612021565b600955565b6006546001600160a01b03163314610a115760405162461bcd60e51b815260040161082190612021565b8051610a24906008906020840190611b2b565b5050565b6006546001600160a01b03163314610a525760405162461bcd60e51b815260040161082190612021565b600e80549115156101000261ff0019909216919091179055565b6000818152600260205260408120546001600160a01b0316806107125760405162461bcd60e51b815260206004820152602960248201527f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460448201526832b73a103a37b5b2b760b91b6064820152608401610821565b60006001600160a01b038216610b4e5760405162461bcd60e51b815260206004820152602a60248201527f4552433732313a2062616c616e636520717565727920666f7220746865207a65604482015269726f206164647265737360b01b6064820152608401610821565b506001600160a01b031660009081526003602052604090205490565b6006546001600160a01b03163314610b945760405162461bcd60e51b815260040161082190612021565b610b9e60006115ec565b565b6006546001600160a01b03163314610bca5760405162461bcd60e51b815260040161082190612021565b60405133904780156108fc02916000818181858888f19350505050610b9e57600080fd5b6006546001600160a01b03163314610c185760405162461bcd60e51b815260040161082190612021565b60005b81811015610957576001600f6000858585818110610c4957634e487b7160e01b600052603260045260246000fd5b9050602002016020810190610c5e9190611c61565b6001600160a01b031681526020810191909152604001600020805460ff191691151591909117905580610c9081612170565b915050610c1b565b6006546001600160a01b03163314610cc25760405162461bcd60e51b815260040161082190612021565b60005b81811015610957576000600f6000858585818110610cf357634e487b7160e01b600052603260045260246000fd5b9050602002016020810190610d089190611c61565b6001600160a01b031681526020810191909152604001600020805460ff191691151591909117905580610d3a81612170565b915050610cc5565b6006546001600160a01b03163314610d6c5760405162461bcd60e51b815260040161082190612021565b600a55565b60606001805461072990612135565b80600a54610d8e91906120d3565b341015610dcd5760405162461bcd60e51b815260206004820152600d60248201526c092dcc6dee4e4cac6e8408aa89609b1b6044820152606401610821565b600e5460ff16610e1f5760405162461bcd60e51b815260206004820152601a60248201527f43616e6e6f74206d696e74206265666f72652070726573616c650000000000006044820152606401610821565b600e54610100900460ff1680610e445750336000908152600f602052604090205460ff165b610e9a5760405162461bcd60e51b815260206004820152602160248201527f4275796572206e6f742077686974656c697374656420666f722070726573616c6044820152606560f81b6064820152608401610821565b6103e8610ea561095c565b610eaf90836120a7565b11158015610ed05750600954610ec361095c565b610ecd90836120a7565b11155b610eec5760405162461bcd60e51b815260040161082190611fdf565b600c5433600090815260106020526040902054610f0a9083906120a7565b1115610f715760405162461bcd60e51b815260206004820152603060248201527f43616e6e6f74206d696e74206d6f7265207468616e20746865206d617820746f60448201526f6b656e7320706572204164647265737360801b6064820152608401610821565b600b5481111580610f965750600e54610100900460ff168015610f965750600d548111155b610fec5760405162461bcd60e51b815260206004820152602160248201527f4d6178206d696e7420706572207472616e73616374696f6e20657863656564656044820152601960fa1b6064820152608401610821565b60005b81811015611012576110003361163e565b8061100a81612170565b915050610fef565b5033600090815260106020526040812080548392906110329084906120a7565b909155505050565b610a24338383611663565b61104f3383611355565b61106b5760405162461bcd60e51b815260040161082190612056565b61107784848484611732565b50505050565b6006546001600160a01b031633146110a75760405162461bcd60e51b815260040161082190612021565b600e805460ff1916911515919091179055565b6000818152600260205260409020546060906001600160a01b03166111395760405162461bcd60e51b815260206004820152602f60248201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60448201526e3732bc34b9ba32b73a103a37b5b2b760891b6064820152608401610821565b6000611143611765565b90506000815111611163576040518060200160405280600081525061118e565b8061116d84611774565b60405160200161117e929190611efe565b6040516020818303038152906040525b9392505050565b6006546001600160a01b031633146111bf5760405162461bcd60e51b815260040161082190612021565b6103e86111ca61095c565b6111d490836120a7565b11156111f25760405162461bcd60e51b815260040161082190611fdf565b60005b818110156109575761123a83838381811061122057634e487b7160e01b600052603260045260246000fd5b90506020020160208101906112359190611c61565b61163e565b8061124481612170565b9150506111f5565b6006546001600160a01b031633146112765760405162461bcd60e51b815260040161082190612021565b6001600160a01b0381166112db5760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610821565b6112e4816115ec565b50565b600081815260046020526040902080546001600160a01b0319166001600160a01b038416908117909155819061131c82610a6c565b6001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b6000818152600260205260408120546001600160a01b03166113ce5760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b6064820152608401610821565b60006113d983610a6c565b9050806001600160a01b0316846001600160a01b031614806114145750836001600160a01b0316611409846107ac565b6001600160a01b0316145b8061144457506001600160a01b0380821660009081526005602090815260408083209388168352929052205460ff165b949350505050565b826001600160a01b031661145f82610a6c565b6001600160a01b0316146114c75760405162461bcd60e51b815260206004820152602960248201527f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960448201526839903737ba1037bbb760b91b6064820152608401610821565b6001600160a01b0382166115295760405162461bcd60e51b8152602060048201526024808201527f4552433732313a207472616e7366657220746f20746865207a65726f206164646044820152637265737360e01b6064820152608401610821565b6115346000826112e7565b6001600160a01b038316600090815260036020526040812080546001929061155d9084906120f2565b90915550506001600160a01b038216600090815260036020526040812080546001929061158b9084906120a7565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b0386811691821790925591518493918716917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef91a4505050565b600680546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b600061164960075490565b9050611659600780546001019055565b610a24828261188f565b816001600160a01b0316836001600160a01b031614156116c55760405162461bcd60e51b815260206004820152601960248201527f4552433732313a20617070726f766520746f2063616c6c6572000000000000006044820152606401610821565b6001600160a01b03838116600081815260056020908152604080832094871680845294825291829020805460ff191686151590811790915591519182527f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a3505050565b61173d84848461144c565b611749848484846118a9565b6110775760405162461bcd60e51b815260040161082190611f8d565b60606008805461072990612135565b60608161179957506040805180820190915260018152600360fc1b6020820152610715565b8160005b81156117c357806117ad81612170565b91506117bc9050600a836120bf565b915061179d565b60008167ffffffffffffffff8111156117ec57634e487b7160e01b600052604160045260246000fd5b6040519080825280601f01601f191660200182016040528015611816576020820181803683370190505b5090505b84156114445761182b6001836120f2565b9150611838600a8661218b565b6118439060306120a7565b60f81b81838151811061186657634e487b7160e01b600052603260045260246000fd5b60200101906001600160f81b031916908160001a905350611888600a866120bf565b945061181a565b610a248282604051806020016040528060008152506119b6565b60006001600160a01b0384163b156119ab57604051630a85bd0160e11b81526001600160a01b0385169063150b7a02906118ed903390899088908890600401611f3d565b602060405180830381600087803b15801561190757600080fd5b505af1925050508015611937575060408051601f3d908101601f1916820190925261193491810190611e58565b60015b611991573d808015611965576040519150601f19603f3d011682016040523d82523d6000602084013e61196a565b606091505b5080516119895760405162461bcd60e51b815260040161082190611f8d565b805181602001fd5b6001600160e01b031916630a85bd0160e11b149050611444565b506001949350505050565b6119c083836119e9565b6119cd60008484846118a9565b6109575760405162461bcd60e51b815260040161082190611f8d565b6001600160a01b038216611a3f5760405162461bcd60e51b815260206004820181905260248201527f4552433732313a206d696e7420746f20746865207a65726f20616464726573736044820152606401610821565b6000818152600260205260409020546001600160a01b031615611aa45760405162461bcd60e51b815260206004820152601c60248201527f4552433732313a20746f6b656e20616c7265616479206d696e746564000000006044820152606401610821565b6001600160a01b0382166000908152600360205260408120805460019290611acd9084906120a7565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b03861690811790915590518392907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a45050565b828054611b3790612135565b90600052602060002090601f016020900481019282611b595760008555611b9f565b82601f10611b7257805160ff1916838001178555611b9f565b82800160010185558215611b9f579182015b82811115611b9f578251825591602001919060010190611b84565b50611bab929150611baf565b5090565b5b80821115611bab5760008155600101611bb0565b600067ffffffffffffffff80841115611bdf57611bdf6121cb565b604051601f8501601f19908116603f01168101908282118183101715611c0757611c076121cb565b81604052809350858152868686011115611c2057600080fd5b858560208301376000602087830101525050509392505050565b80356001600160a01b038116811461071557600080fd5b8035801515811461071557600080fd5b600060208284031215611c72578081fd5b61118e82611c3a565b60008060408385031215611c8d578081fd5b611c9683611c3a565b9150611ca460208401611c3a565b90509250929050565b600080600060608486031215611cc1578081fd5b611cca84611c3a565b9250611cd860208501611c3a565b9150604084013590509250925092565b60008060008060808587031215611cfd578081fd5b611d0685611c3a565b9350611d1460208601611c3a565b925060408501359150606085013567ffffffffffffffff811115611d36578182fd5b8501601f81018713611d46578182fd5b611d5587823560208401611bc4565b91505092959194509250565b60008060408385031215611d73578182fd5b611d7c83611c3a565b9150611ca460208401611c51565b60008060408385031215611d9c578182fd5b611da583611c3a565b946020939093013593505050565b60008060208385031215611dc5578182fd5b823567ffffffffffffffff80821115611ddc578384fd5b818501915085601f830112611def578384fd5b813581811115611dfd578485fd5b8660208083028501011115611e10578485fd5b60209290920196919550909350505050565b600060208284031215611e33578081fd5b61118e82611c51565b600060208284031215611e4d578081fd5b813561118e816121e1565b600060208284031215611e69578081fd5b815161118e816121e1565b600060208284031215611e85578081fd5b813567ffffffffffffffff811115611e9b578182fd5b8201601f81018413611eab578182fd5b61144484823560208401611bc4565b600060208284031215611ecb578081fd5b5035919050565b60008151808452611eea816020860160208601612109565b601f01601f19169290920160200192915050565b60008351611f10818460208801612109565b835190830190611f24818360208801612109565b64173539b7b760d91b9101908152600501949350505050565b6001600160a01b0385811682528416602082015260408101839052608060608201819052600090611f7090830184611ed2565b9695505050505050565b60006020825261118e6020830184611ed2565b60208082526032908201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560408201527131b2b4bb32b91034b6b83632b6b2b73a32b960711b606082015260800190565b60208082526022908201527f4e6f7420656e6f75676820746f6b656e73206c65667420666f72206d696e74696040820152616e6760f01b606082015260800190565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b60208082526031908201527f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f6040820152701ddb995c881b9bdc88185c1c1c9bdd9959607a1b606082015260800190565b600082198211156120ba576120ba61219f565b500190565b6000826120ce576120ce6121b5565b500490565b60008160001904831182151516156120ed576120ed61219f565b500290565b6000828210156121045761210461219f565b500390565b60005b8381101561212457818101518382015260200161210c565b838111156110775750506000910152565b60028104600182168061214957607f821691505b6020821081141561216a57634e487b7160e01b600052602260045260246000fd5b50919050565b60006000198214156121845761218461219f565b5060010190565b60008261219a5761219a6121b5565b500690565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052601260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b6001600160e01b0319811681146112e457600080fdfea264697066735822122045f4f7b3500a9461d909f12df2166c8021ee202f573568ac73598d72ecaeed6364736f6c63430008020033
Deployed Bytecode Sourcemap
37766:3350:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;25242:305;;;;;;;;;;-1:-1:-1;25242:305:0;;;;;:::i;:::-;;:::i;:::-;;;6891:14:1;;6884:22;6866:41;;6854:2;6839:18;25242:305:0;;;;;;;;26187:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;27755:221::-;;;;;;;;;;-1:-1:-1;27755:221:0;;;;;:::i;:::-;;:::i;:::-;;;-1:-1:-1;;;;;6189:32:1;;;6171:51;;6159:2;6144:18;27755:221:0;6126:102:1;27278:411:0;;;;;;;;;;-1:-1:-1;27278:411:0;;;;;:::i;:::-;;:::i;:::-;;40253:104;;;;;;;;;;;;;:::i;:::-;;;15991:25:1;;;15979:2;15964:18;40253:104:0;15946:76:1;28505:339:0;;;;;;;;;;-1:-1:-1;28505:339:0;;;;;:::i;:::-;;:::i;37989:41::-;;;;;;;;;;;;38026:4;37989:41;;28915:185;;;;;;;;;;-1:-1:-1;28915:185:0;;;;;:::i;:::-;;:::i;38194:36::-;;;;;;;;;;;;;;;;38385:44;;;;;;;;;;-1:-1:-1;38385:44:0;;;;;:::i;:::-;;;;;;;;;;;;;;40889:99;;;;;;;;;;-1:-1:-1;40889:99:0;;;;;:::i;:::-;;:::i;40474:105::-;;;;;;;;;;-1:-1:-1;40474:105:0;;;;;:::i;:::-;;:::i;38037:36::-;;;;;;;;;;;;;;;;40686:97;;;;;;;;;;-1:-1:-1;40686:97:0;;;;;:::i;:::-;;:::i;25881:239::-;;;;;;;;;;-1:-1:-1;25881:239:0;;;;;:::i;:::-;;:::i;25611:208::-;;;;;;;;;;-1:-1:-1;25611:208:0;;;;;:::i;:::-;;:::i;6230:103::-;;;;;;;;;;;;;:::i;38160:27::-;;;;;;;;;;;;;;;;40996:117;;;;;;;;;;;;;:::i;5579:87::-;;;;;;;;;;-1:-1:-1;5652:6:0;;-1:-1:-1;;;;;5652:6:0;5579:87;;38510:205;;;;;;;;;;-1:-1:-1;38510:205:0;;;;;:::i;:::-;;:::i;38723:208::-;;;;;;;;;;-1:-1:-1;38723:208:0;;;;;:::i;:::-;;:::i;40791:90::-;;;;;;;;;;-1:-1:-1;40791:90:0;;;;;:::i;:::-;;:::i;26356:104::-;;;;;;;;;;;;;:::i;38080:33::-;;;;;;;;;;;;;;;;39241:824;;;;;;:::i;:::-;;:::i;28048:155::-;;;;;;;;;;-1:-1:-1;28048:155:0;;;;;:::i;:::-;;:::i;38237:37::-;;;;;;;;;;-1:-1:-1;38237:37:0;;;;;;;;38120:33;;;;;;;;;;;;;;;;29171:328;;;;;;;;;;-1:-1:-1;29171:328:0;;;;;:::i;:::-;;:::i;40587:91::-;;;;;;;;;;-1:-1:-1;40587:91:0;;;;;:::i;:::-;;:::i;26531:343::-;;;;;;;;;;-1:-1:-1;26531:343:0;;;;;:::i;:::-;;:::i;38939:294::-;;;;;;;;;;-1:-1:-1;38939:294:0;;;;;:::i;:::-;;:::i;28274:164::-;;;;;;;;;;-1:-1:-1;28274:164:0;;;;;:::i;:::-;-1:-1:-1;;;;;28395:25:0;;;28371:4;28395:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;;;;28274:164;38330:48;;;;;;;;;;-1:-1:-1;38330:48:0;;;;;:::i;:::-;;;;;;;;;;;;;;;;6488:201;;;;;;;;;;-1:-1:-1;6488:201:0;;;;;:::i;:::-;;:::i;38281:40::-;;;;;;;;;;-1:-1:-1;38281:40:0;;;;;;;;;;;25242:305;25344:4;-1:-1:-1;;;;;;25381:40:0;;-1:-1:-1;;;25381:40:0;;:105;;-1:-1:-1;;;;;;;25438:48:0;;-1:-1:-1;;;25438:48:0;25381:105;:158;;;-1:-1:-1;;;;;;;;;;18120:40:0;;;25503:36;25361:178;;25242:305;;;;:::o;26187:100::-;26241:13;26274:5;26267:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;26187:100;:::o;27755:221::-;27831:7;31098:16;;;:7;:16;;;;;;-1:-1:-1;;;;;31098:16:0;27851:73;;;;-1:-1:-1;;;27851:73:0;;13224:2:1;27851:73:0;;;13206:21:1;13263:2;13243:18;;;13236:30;13302:34;13282:18;;;13275:62;-1:-1:-1;;;13353:18:1;;;13346:42;13405:19;;27851:73:0;;;;;;;;;-1:-1:-1;27944:24:0;;;;:15;:24;;;;;;-1:-1:-1;;;;;27944:24:0;;27755:221::o;27278:411::-;27359:13;27375:23;27390:7;27375:14;:23::i;:::-;27359:39;;27423:5;-1:-1:-1;;;;;27417:11:0;:2;-1:-1:-1;;;;;27417:11:0;;;27409:57;;;;-1:-1:-1;;;27409:57:0;;15227:2:1;27409:57:0;;;15209:21:1;15266:2;15246:18;;;15239:30;15305:34;15285:18;;;15278:62;-1:-1:-1;;;15356:18:1;;;15349:31;15397:19;;27409:57:0;15199:223:1;27409:57:0;4383:10;-1:-1:-1;;;;;27501:21:0;;;;:62;;-1:-1:-1;27526:37:0;27543:5;4383:10;27550:12;4303:98;27526:37;27479:168;;;;-1:-1:-1;;;27479:168:0;;11617:2:1;27479:168:0;;;11599:21:1;11656:2;11636:18;;;11629:30;11695:34;11675:18;;;11668:62;11766:26;11746:18;;;11739:54;11810:19;;27479:168:0;11589:246:1;27479:168:0;27660:21;27669:2;27673:7;27660:8;:21::i;:::-;27278:411;;;:::o;40253:104::-;40297:7;40324:25;:15;999:14;;907:114;40324:25;40317:32;;40253:104;:::o;28505:339::-;28700:41;4383:10;28733:7;28700:18;:41::i;:::-;28692:103;;;;-1:-1:-1;;;28692:103:0;;;;;;;:::i;:::-;28808:28;28818:4;28824:2;28828:7;28808:9;:28::i;28915:185::-;29053:39;29070:4;29076:2;29080:7;29053:39;;;;;;;;;;;;:16;:39::i;40889:99::-;5652:6;;-1:-1:-1;;;;;5652:6:0;4383:10;5799:23;5791:68;;;;-1:-1:-1;;;5791:68:0;;;;;;;:::i;:::-;40956:14:::1;:24:::0;40889:99::o;40474:105::-;5652:6;;-1:-1:-1;;;;;5652:6:0;4383:10;5799:23;5791:68;;;;-1:-1:-1;;;5791:68:0;;;;;;;:::i;:::-;40550:21;;::::1;::::0;:8:::1;::::0;:21:::1;::::0;::::1;::::0;::::1;:::i;:::-;;40474:105:::0;:::o;40686:97::-;5652:6;;-1:-1:-1;;;;;5652:6:0;4383:10;5799:23;5791:68;;;;-1:-1:-1;;;5791:68:0;;;;;;;:::i;:::-;40749:20:::1;:26:::0;;;::::1;;;;-1:-1:-1::0;;40749:26:0;;::::1;::::0;;;::::1;::::0;;40686:97::o;25881:239::-;25953:7;25989:16;;;:7;:16;;;;;;-1:-1:-1;;;;;25989:16:0;26024:19;26016:73;;;;-1:-1:-1;;;26016:73:0;;12453:2:1;26016:73:0;;;12435:21:1;12492:2;12472:18;;;12465:30;12531:34;12511:18;;;12504:62;-1:-1:-1;;;12582:18:1;;;12575:39;12631:19;;26016:73:0;12425:231:1;25611:208:0;25683:7;-1:-1:-1;;;;;25711:19:0;;25703:74;;;;-1:-1:-1;;;25703:74:0;;12042:2:1;25703:74:0;;;12024:21:1;12081:2;12061:18;;;12054:30;12120:34;12100:18;;;12093:62;-1:-1:-1;;;12171:18:1;;;12164:40;12221:19;;25703:74:0;12014:232:1;25703:74:0;-1:-1:-1;;;;;;25795:16:0;;;;;:9;:16;;;;;;;25611:208::o;6230:103::-;5652:6;;-1:-1:-1;;;;;5652:6:0;4383:10;5799:23;5791:68;;;;-1:-1:-1;;;5791:68:0;;;;;;;:::i;:::-;6295:30:::1;6322:1;6295:18;:30::i;:::-;6230:103::o:0;40996:117::-;5652:6;;-1:-1:-1;;;;;5652:6:0;4383:10;5799:23;5791:68;;;;-1:-1:-1;;;5791:68:0;;;;;;;:::i;:::-;41057:47:::1;::::0;41065:10:::1;::::0;41082:21:::1;41057:47:::0;::::1;;;::::0;::::1;::::0;;;41082:21;41065:10;41057:47;::::1;;;;;;41049:56;;;::::0;::::1;38510:205:::0;5652:6;;-1:-1:-1;;;;;5652:6:0;4383:10;5799:23;5791:68;;;;-1:-1:-1;;;5791:68:0;;;;;;;:::i;:::-;38603:9:::1;38599:106;38618:18:::0;;::::1;38599:106;;;38689:4;38658:16;:28;38675:7;;38683:1;38675:10;;;;;-1:-1:-1::0;;;38675:10:0::1;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;-1:-1:-1::0;;;;;38658:28:0::1;::::0;;::::1;::::0;::::1;::::0;;;;;;-1:-1:-1;38658:28:0;:35;;-1:-1:-1;;38658:35:0::1;::::0;::::1;;::::0;;;::::1;::::0;;38638:3;::::1;::::0;::::1;:::i;:::-;;;;38599:106;;38723:208:::0;5652:6;;-1:-1:-1;;;;;5652:6:0;4383:10;5799:23;5791:68;;;;-1:-1:-1;;;5791:68:0;;;;;;;:::i;:::-;38821:9:::1;38817:107;38836:18:::0;;::::1;38817:107;;;38907:5;38876:16;:28;38893:7;;38901:1;38893:10;;;;;-1:-1:-1::0;;;38893:10:0::1;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;-1:-1:-1::0;;;;;38876:28:0::1;::::0;;::::1;::::0;::::1;::::0;;;;;;-1:-1:-1;38876:28:0;:36;;-1:-1:-1;;38876:36:0::1;::::0;::::1;;::::0;;;::::1;::::0;;38856:3;::::1;::::0;::::1;:::i;:::-;;;;38817:107;;40791:90:::0;5652:6;;-1:-1:-1;;;;;5652:6:0;4383:10;5799:23;5791:68;;;;-1:-1:-1;;;5791:68:0;;;;;;;:::i;:::-;40857:5:::1;:16:::0;40791:90::o;26356:104::-;26412:13;26445:7;26438:14;;;;;:::i;39241:824::-;39328:6;39320:5;;:14;;;;:::i;:::-;39307:9;:27;;39299:53;;;;-1:-1:-1;;;39299:53:0;;9701:2:1;39299:53:0;;;9683:21:1;9740:2;9720:18;;;9713:30;-1:-1:-1;;;9759:18:1;;;9752:43;9812:18;;39299:53:0;9673:163:1;39299:53:0;39371:17;;;;39363:56;;;;-1:-1:-1;;;39363:56:0;;7344:2:1;39363:56:0;;;7326:21:1;7383:2;7363:18;;;7356:30;7422:28;7402:18;;;7395:56;7468:18;;39363:56:0;7316:176:1;39363:56:0;39438:20;;;;;;;;:52;;-1:-1:-1;39479:10:0;39462:28;;;;:16;:28;;;;;;;;39438:52;39430:98;;;;-1:-1:-1;;;39430:98:0;;11215:2:1;39430:98:0;;;11197:21:1;11254:2;11234:18;;;11227:30;11293:34;11273:18;;;11266:62;-1:-1:-1;;;11344:18:1;;;11337:31;11385:19;;39430:98:0;11187:223:1;39430:98:0;38026:4;39556:13;:11;:13::i;:::-;39547:22;;:6;:22;:::i;:::-;:36;;:80;;;;;39613:14;;39596:13;:11;:13::i;:::-;39587:22;;:6;:22;:::i;:::-;:40;;39547:80;39539:127;;;;-1:-1:-1;;;39539:127:0;;;;;;;:::i;:::-;39719:7;;39695:10;39685:21;;;;:9;:21;;;;;;:30;;39709:6;;39685:30;:::i;:::-;:41;;39677:102;;;;-1:-1:-1;;;39677:102:0;;7699:2:1;39677:102:0;;;7681:21:1;7738:2;7718:18;;;7711:30;7777:34;7757:18;;;7750:62;-1:-1:-1;;;7828:18:1;;;7821:46;7884:19;;39677:102:0;7671:238:1;39677:102:0;39808:14;;39798:6;:24;;:81;;;-1:-1:-1;39827:20:0;;;;;;;:51;;;;;39861:17;;39851:6;:27;;39827:51;39790:127;;;;-1:-1:-1;;;39790:127:0;;8116:2:1;39790:127:0;;;8098:21:1;8155:2;8135:18;;;8128:30;8194:34;8174:18;;;8167:62;-1:-1:-1;;;8245:18:1;;;8238:31;8286:19;;39790:127:0;8088:223:1;39790:127:0;39935:9;39930:84;39954:6;39950:1;:10;39930:84;;;39982:20;39991:10;39982:8;:20::i;:::-;39962:3;;;;:::i;:::-;;;;39930:84;;;-1:-1:-1;40036:10:0;40026:21;;;;:9;:21;;;;;:31;;40051:6;;40026:21;:31;;40051:6;;40026:31;:::i;:::-;;;;-1:-1:-1;;;39241:824:0:o;28048:155::-;28143:52;4383:10;28176:8;28186;28143:18;:52::i;29171:328::-;29346:41;4383:10;29379:7;29346:18;:41::i;:::-;29338:103;;;;-1:-1:-1;;;29338:103:0;;;;;;;:::i;:::-;29452:39;29466:4;29472:2;29476:7;29485:5;29452:13;:39::i;:::-;29171:328;;;;:::o;40587:91::-;5652:6;;-1:-1:-1;;;;;5652:6:0;4383:10;5799:23;5791:68;;;;-1:-1:-1;;;5791:68:0;;;;;;;:::i;:::-;40647:17:::1;:23:::0;;-1:-1:-1;;40647:23:0::1;::::0;::::1;;::::0;;;::::1;::::0;;40587:91::o;26531:343::-;31074:4;31098:16;;;:7;:16;;;;;;26604:13;;-1:-1:-1;;;;;31098:16:0;26630:76;;;;-1:-1:-1;;;26630:76:0;;14811:2:1;26630:76:0;;;14793:21:1;14850:2;14830:18;;;14823:30;14889:34;14869:18;;;14862:62;-1:-1:-1;;;14940:18:1;;;14933:45;14995:19;;26630:76:0;14783:237:1;26630:76:0;26719:21;26743:10;:8;:10::i;:::-;26719:34;;26795:1;26777:7;26771:21;:25;:95;;;;;;;;;;;;;;;;;26823:7;26832:18;:7;:16;:18::i;:::-;26806:54;;;;;;;;;:::i;:::-;;;;;;;;;;;;;26771:95;26764:102;26531:343;-1:-1:-1;;;26531:343:0:o;38939:294::-;5652:6;;-1:-1:-1;;;;;5652:6:0;4383:10;5799:23;5791:68;;;;-1:-1:-1;;;5791:68:0;;;;;;;:::i;:::-;38026:4:::1;39043:13;:11;:13::i;:::-;39024:32;::::0;:9;:32:::1;:::i;:::-;:46;;39016:93;;;;-1:-1:-1::0;;;39016:93:0::1;;;;;;;:::i;:::-;39135:9;39130:96;39150:20:::0;;::::1;39130:96;;;39192:22;39201:9;;39211:1;39201:12;;;;;-1:-1:-1::0;;;39201:12:0::1;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;39192:8;:22::i;:::-;39172:3:::0;::::1;::::0;::::1;:::i;:::-;;;;39130:96;;6488:201:::0;5652:6;;-1:-1:-1;;;;;5652:6:0;4383:10;5799:23;5791:68;;;;-1:-1:-1;;;5791:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;6577:22:0;::::1;6569:73;;;::::0;-1:-1:-1;;;6569:73:0;;8937:2:1;6569:73:0::1;::::0;::::1;8919:21:1::0;8976:2;8956:18;;;8949:30;9015:34;8995:18;;;8988:62;-1:-1:-1;;;9066:18:1;;;9059:36;9112:19;;6569:73:0::1;8909:228:1::0;6569:73:0::1;6653:28;6672:8;6653:18;:28::i;:::-;6488:201:::0;:::o;34991:174::-;35066:24;;;;:15;:24;;;;;:29;;-1:-1:-1;;;;;;35066:29:0;-1:-1:-1;;;;;35066:29:0;;;;;;;;:24;;35120:23;35066:24;35120:14;:23::i;:::-;-1:-1:-1;;;;;35111:46:0;;;;;;;;;;;34991:174;;:::o;31303:348::-;31396:4;31098:16;;;:7;:16;;;;;;-1:-1:-1;;;;;31098:16:0;31413:73;;;;-1:-1:-1;;;31413:73:0;;10802:2:1;31413:73:0;;;10784:21:1;10841:2;10821:18;;;10814:30;10880:34;10860:18;;;10853:62;-1:-1:-1;;;10931:18:1;;;10924:42;10983:19;;31413:73:0;10774:234:1;31413:73:0;31497:13;31513:23;31528:7;31513:14;:23::i;:::-;31497:39;;31566:5;-1:-1:-1;;;;;31555:16:0;:7;-1:-1:-1;;;;;31555:16:0;;:51;;;;31599:7;-1:-1:-1;;;;;31575:31:0;:20;31587:7;31575:11;:20::i;:::-;-1:-1:-1;;;;;31575:31:0;;31555:51;:87;;;-1:-1:-1;;;;;;28395:25:0;;;28371:4;28395:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;31610:32;31547:96;31303:348;-1:-1:-1;;;;31303:348:0:o;34295:578::-;34454:4;-1:-1:-1;;;;;34427:31:0;:23;34442:7;34427:14;:23::i;:::-;-1:-1:-1;;;;;34427:31:0;;34419:85;;;;-1:-1:-1;;;34419:85:0;;14401:2:1;34419:85:0;;;14383:21:1;14440:2;14420:18;;;14413:30;14479:34;14459:18;;;14452:62;-1:-1:-1;;;14530:18:1;;;14523:39;14579:19;;34419:85:0;14373:231:1;34419:85:0;-1:-1:-1;;;;;34523:16:0;;34515:65;;;;-1:-1:-1;;;34515:65:0;;10043:2:1;34515:65:0;;;10025:21:1;10082:2;10062:18;;;10055:30;10121:34;10101:18;;;10094:62;-1:-1:-1;;;10172:18:1;;;10165:34;10216:19;;34515:65:0;10015:226:1;34515:65:0;34697:29;34714:1;34718:7;34697:8;:29::i;:::-;-1:-1:-1;;;;;34739:15:0;;;;;;:9;:15;;;;;:20;;34758:1;;34739:15;:20;;34758:1;;34739:20;:::i;:::-;;;;-1:-1:-1;;;;;;;34770:13:0;;;;;;:9;:13;;;;;:18;;34787:1;;34770:13;:18;;34787:1;;34770:18;:::i;:::-;;;;-1:-1:-1;;34799:16:0;;;;:7;:16;;;;;;:21;;-1:-1:-1;;;;;;34799:21:0;-1:-1:-1;;;;;34799:21:0;;;;;;;;;34838:27;;34799:16;;34838:27;;;;;;;34295:578;;;:::o;6849:191::-;6942:6;;;-1:-1:-1;;;;;6959:17:0;;;-1:-1:-1;;;;;;6959:17:0;;;;;;;6992:40;;6942:6;;;6959:17;6942:6;;6992:40;;6923:16;;6992:40;6849:191;;:::o;40073:172::-;40123:15;40141:25;:15;999:14;;907:114;40141:25;40123:43;;40177:27;:15;1118:19;;1136:1;1118:19;;;1029:127;40177:27;40215:22;40225:2;40229:7;40215:9;:22::i;35307:315::-;35462:8;-1:-1:-1;;;;;35453:17:0;:5;-1:-1:-1;;;;;35453:17:0;;;35445:55;;;;-1:-1:-1;;;35445:55:0;;10448:2:1;35445:55:0;;;10430:21:1;10487:2;10467:18;;;10460:30;10526:27;10506:18;;;10499:55;10571:18;;35445:55:0;10420:175:1;35445:55:0;-1:-1:-1;;;;;35511:25:0;;;;;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;;:46;;-1:-1:-1;;35511:46:0;;;;;;;;;;35573:41;;6866::1;;;35573::0;;6839:18:1;35573:41:0;;;;;;;35307:315;;;:::o;30381:::-;30538:28;30548:4;30554:2;30558:7;30538:9;:28::i;:::-;30585:48;30608:4;30614:2;30618:7;30627:5;30585:22;:48::i;:::-;30577:111;;;;-1:-1:-1;;;30577:111:0;;;;;;;:::i;40365:101::-;40417:13;40450:8;40443:15;;;;;:::i;1865:723::-;1921:13;2142:10;2138:53;;-1:-1:-1;2169:10:0;;;;;;;;;;;;-1:-1:-1;;;2169:10:0;;;;;;2138:53;2216:5;2201:12;2257:78;2264:9;;2257:78;;2290:8;;;;:::i;:::-;;-1:-1:-1;2313:10:0;;-1:-1:-1;2321:2:0;2313:10;;:::i;:::-;;;2257:78;;;2345:19;2377:6;2367:17;;;;;;-1:-1:-1;;;2367:17:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;2367:17:0;;2345:39;;2395:154;2402:10;;2395:154;;2429:11;2439:1;2429:11;;:::i;:::-;;-1:-1:-1;2498:10:0;2506:2;2498:5;:10;:::i;:::-;2485:24;;:2;:24;:::i;:::-;2472:39;;2455:6;2462;2455:14;;;;;;-1:-1:-1;;;2455:14:0;;;;;;;;;;;;:56;-1:-1:-1;;;;;2455:56:0;;;;;;;;-1:-1:-1;2526:11:0;2535:2;2526:11;;:::i;:::-;;;2395:154;;31993:110;32069:26;32079:2;32083:7;32069:26;;;;;;;;;;;;:9;:26::i;36187:799::-;36342:4;-1:-1:-1;;;;;36363:13:0;;8190:20;8238:8;36359:620;;36399:72;;-1:-1:-1;;;36399:72:0;;-1:-1:-1;;;;;36399:36:0;;;;;:72;;4383:10;;36450:4;;36456:7;;36465:5;;36399:72;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;36399:72:0;;;;;;;;-1:-1:-1;;36399:72:0;;;;;;;;;;;;:::i;:::-;;;36395:529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;36641:13:0;;36637:272;;36684:60;;-1:-1:-1;;;36684:60:0;;;;;;;:::i;36637:272::-;36859:6;36853:13;36844:6;36840:2;36836:15;36829:38;36395:529;-1:-1:-1;;;;;;36522:51:0;-1:-1:-1;;;36522:51:0;;-1:-1:-1;36515:58:0;;36359:620;-1:-1:-1;36963:4:0;36187:799;;;;;;:::o;32330:321::-;32460:18;32466:2;32470:7;32460:5;:18::i;:::-;32511:54;32542:1;32546:2;32550:7;32559:5;32511:22;:54::i;:::-;32489:154;;;;-1:-1:-1;;;32489:154:0;;;;;;;:::i;32987:382::-;-1:-1:-1;;;;;33067:16:0;;33059:61;;;;-1:-1:-1;;;33059:61:0;;12863:2:1;33059:61:0;;;12845:21:1;;;12882:18;;;12875:30;12941:34;12921:18;;;12914:62;12993:18;;33059:61:0;12835:182:1;33059:61:0;31074:4;31098:16;;;:7;:16;;;;;;-1:-1:-1;;;;;31098:16:0;:30;33131:58;;;;-1:-1:-1;;;33131:58:0;;9344:2:1;33131:58:0;;;9326:21:1;9383:2;9363:18;;;9356:30;9422;9402:18;;;9395:58;9470:18;;33131:58:0;9316:178:1;33131:58:0;-1:-1:-1;;;;;33260:13:0;;;;;;:9;:13;;;;;:18;;33277:1;;33260:13;:18;;33277:1;;33260:18;:::i;:::-;;;;-1:-1:-1;;33289:16:0;;;;:7;:16;;;;;;:21;;-1:-1:-1;;;;;;33289:21:0;-1:-1:-1;;;;;33289:21:0;;;;;;;;33328:33;;33289:16;;;33328:33;;33289:16;;33328:33;32987:382;;:::o;-1:-1:-1:-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;;;;;;;;;14:631:1;;108:18;149:2;141:6;138:14;135:2;;;155:18;;:::i;:::-;230:2;224:9;198:2;284:15;;-1:-1:-1;;280:24:1;;;306:2;276:33;272:42;260:55;;;330:18;;;350:22;;;327:46;324:2;;;376:18;;:::i;:::-;416:10;412:2;405:22;445:6;436:15;;475:6;467;460:22;515:3;506:6;501:3;497:16;494:25;491:2;;;532:1;529;522:12;491:2;582:6;577:3;570:4;562:6;558:17;545:44;637:1;630:4;621:6;613;609:19;605:30;598:41;;;;88:557;;;;;:::o;650:173::-;718:20;;-1:-1:-1;;;;;767:31:1;;757:42;;747:2;;813:1;810;803:12;828:160;893:20;;949:13;;942:21;932:32;;922:2;;978:1;975;968:12;993:196;;1105:2;1093:9;1084:7;1080:23;1076:32;1073:2;;;1126:6;1118;1111:22;1073:2;1154:29;1173:9;1154:29;:::i;1194:270::-;;;1323:2;1311:9;1302:7;1298:23;1294:32;1291:2;;;1344:6;1336;1329:22;1291:2;1372:29;1391:9;1372:29;:::i;:::-;1362:39;;1420:38;1454:2;1443:9;1439:18;1420:38;:::i;:::-;1410:48;;1281:183;;;;;:::o;1469:338::-;;;;1615:2;1603:9;1594:7;1590:23;1586:32;1583:2;;;1636:6;1628;1621:22;1583:2;1664:29;1683:9;1664:29;:::i;:::-;1654:39;;1712:38;1746:2;1735:9;1731:18;1712:38;:::i;:::-;1702:48;;1797:2;1786:9;1782:18;1769:32;1759:42;;1573:234;;;;;:::o;1812:696::-;;;;;1984:3;1972:9;1963:7;1959:23;1955:33;1952:2;;;2006:6;1998;1991:22;1952:2;2034:29;2053:9;2034:29;:::i;:::-;2024:39;;2082:38;2116:2;2105:9;2101:18;2082:38;:::i;:::-;2072:48;;2167:2;2156:9;2152:18;2139:32;2129:42;;2222:2;2211:9;2207:18;2194:32;2249:18;2241:6;2238:30;2235:2;;;2286:6;2278;2271:22;2235:2;2314:22;;2367:4;2359:13;;2355:27;-1:-1:-1;2345:2:1;;2401:6;2393;2386:22;2345:2;2429:73;2494:7;2489:2;2476:16;2471:2;2467;2463:11;2429:73;:::i;:::-;2419:83;;;1942:566;;;;;;;:::o;2513:264::-;;;2639:2;2627:9;2618:7;2614:23;2610:32;2607:2;;;2660:6;2652;2645:22;2607:2;2688:29;2707:9;2688:29;:::i;:::-;2678:39;;2736:35;2767:2;2756:9;2752:18;2736:35;:::i;2782:264::-;;;2911:2;2899:9;2890:7;2886:23;2882:32;2879:2;;;2932:6;2924;2917:22;2879:2;2960:29;2979:9;2960:29;:::i;:::-;2950:39;3036:2;3021:18;;;;3008:32;;-1:-1:-1;;;2869:177:1:o;3051:666::-;;;3198:2;3186:9;3177:7;3173:23;3169:32;3166:2;;;3219:6;3211;3204:22;3166:2;3264:9;3251:23;3293:18;3334:2;3326:6;3323:14;3320:2;;;3355:6;3347;3340:22;3320:2;3398:6;3387:9;3383:22;3373:32;;3443:7;3436:4;3432:2;3428:13;3424:27;3414:2;;3470:6;3462;3455:22;3414:2;3515;3502:16;3541:2;3533:6;3530:14;3527:2;;;3562:6;3554;3547:22;3527:2;3621:7;3616:2;3610;3602:6;3598:15;3594:2;3590:24;3586:33;3583:46;3580:2;;;3647:6;3639;3632:22;3580:2;3683;3675:11;;;;;3705:6;;-1:-1:-1;3156:561:1;;-1:-1:-1;;;;3156:561:1:o;3722:190::-;;3831:2;3819:9;3810:7;3806:23;3802:32;3799:2;;;3852:6;3844;3837:22;3799:2;3880:26;3896:9;3880:26;:::i;3917:255::-;;4028:2;4016:9;4007:7;4003:23;3999:32;3996:2;;;4049:6;4041;4034:22;3996:2;4093:9;4080:23;4112:30;4136:5;4112:30;:::i;4177:259::-;;4299:2;4287:9;4278:7;4274:23;4270:32;4267:2;;;4320:6;4312;4305:22;4267:2;4357:9;4351:16;4376:30;4400:5;4376:30;:::i;4441:480::-;;4563:2;4551:9;4542:7;4538:23;4534:32;4531:2;;;4584:6;4576;4569:22;4531:2;4629:9;4616:23;4662:18;4654:6;4651:30;4648:2;;;4699:6;4691;4684:22;4648:2;4727:22;;4780:4;4772:13;;4768:27;-1:-1:-1;4758:2:1;;4814:6;4806;4799:22;4758:2;4842:73;4907:7;4902:2;4889:16;4884:2;4880;4876:11;4842:73;:::i;4926:190::-;;5038:2;5026:9;5017:7;5013:23;5009:32;5006:2;;;5059:6;5051;5044:22;5006:2;-1:-1:-1;5087:23:1;;4996:120;-1:-1:-1;4996:120:1:o;5121:257::-;;5200:5;5194:12;5227:6;5222:3;5215:19;5243:63;5299:6;5292:4;5287:3;5283:14;5276:4;5269:5;5265:16;5243:63;:::i;:::-;5360:2;5339:15;-1:-1:-1;;5335:29:1;5326:39;;;;5367:4;5322:50;;5170:208;-1:-1:-1;;5170:208:1:o;5383:637::-;;5701:6;5695:13;5717:53;5763:6;5758:3;5751:4;5743:6;5739:17;5717:53;:::i;:::-;5833:13;;5792:16;;;;5855:57;5833:13;5792:16;5889:4;5877:17;;5855:57;:::i;:::-;-1:-1:-1;;;5934:20:1;;5963:22;;;6012:1;6001:13;;5671:349;-1:-1:-1;;;;5671:349:1:o;6233:488::-;-1:-1:-1;;;;;6502:15:1;;;6484:34;;6554:15;;6549:2;6534:18;;6527:43;6601:2;6586:18;;6579:34;;;6649:3;6644:2;6629:18;;6622:31;;;6233:488;;6670:45;;6695:19;;6687:6;6670:45;:::i;:::-;6662:53;6436:285;-1:-1:-1;;;;;;6436:285:1:o;6918:219::-;;7067:2;7056:9;7049:21;7087:44;7127:2;7116:9;7112:18;7104:6;7087:44;:::i;8316:414::-;8518:2;8500:21;;;8557:2;8537:18;;;8530:30;8596:34;8591:2;8576:18;;8569:62;-1:-1:-1;;;8662:2:1;8647:18;;8640:48;8720:3;8705:19;;8490:240::o;13435:398::-;13637:2;13619:21;;;13676:2;13656:18;;;13649:30;13715:34;13710:2;13695:18;;13688:62;-1:-1:-1;;;13781:2:1;13766:18;;13759:32;13823:3;13808:19;;13609:224::o;13838:356::-;14040:2;14022:21;;;14059:18;;;14052:30;14118:34;14113:2;14098:18;;14091:62;14185:2;14170:18;;14012:182::o;15427:413::-;15629:2;15611:21;;;15668:2;15648:18;;;15641:30;15707:34;15702:2;15687:18;;15680:62;-1:-1:-1;;;15773:2:1;15758:18;;15751:47;15830:3;15815:19;;15601:239::o;16027:128::-;;16098:1;16094:6;16091:1;16088:13;16085:2;;;16104:18;;:::i;:::-;-1:-1:-1;16140:9:1;;16075:80::o;16160:120::-;;16226:1;16216:2;;16231:18;;:::i;:::-;-1:-1:-1;16265:9:1;;16206:74::o;16285:168::-;;16391:1;16387;16383:6;16379:14;16376:1;16373:21;16368:1;16361:9;16354:17;16350:45;16347:2;;;16398:18;;:::i;:::-;-1:-1:-1;16438:9:1;;16337:116::o;16458:125::-;;16526:1;16523;16520:8;16517:2;;;16531:18;;:::i;:::-;-1:-1:-1;16568:9:1;;16507:76::o;16588:258::-;16660:1;16670:113;16684:6;16681:1;16678:13;16670:113;;;16760:11;;;16754:18;16741:11;;;16734:39;16706:2;16699:10;16670:113;;;16801:6;16798:1;16795:13;16792:2;;;-1:-1:-1;;16836:1:1;16818:16;;16811:27;16641:205::o;16851:380::-;16936:1;16926:12;;16983:1;16973:12;;;16994:2;;17048:4;17040:6;17036:17;17026:27;;16994:2;17101;17093:6;17090:14;17070:18;17067:38;17064:2;;;17147:10;17142:3;17138:20;17135:1;17128:31;17182:4;17179:1;17172:15;17210:4;17207:1;17200:15;17064:2;;16906:325;;;:::o;17236:135::-;;-1:-1:-1;;17296:17:1;;17293:2;;;17316:18;;:::i;:::-;-1:-1:-1;17363:1:1;17352:13;;17283:88::o;17376:112::-;;17434:1;17424:2;;17439:18;;:::i;:::-;-1:-1:-1;17473:9:1;;17414:74::o;17493:127::-;17554:10;17549:3;17545:20;17542:1;17535:31;17585:4;17582:1;17575:15;17609:4;17606:1;17599:15;17625:127;17686:10;17681:3;17677:20;17674:1;17667:31;17717:4;17714:1;17707:15;17741:4;17738:1;17731:15;17757:127;17818:10;17813:3;17809:20;17806:1;17799:31;17849:4;17846:1;17839:15;17873:4;17870:1;17863:15;17889:131;-1:-1:-1;;;;;;17963:32:1;;17953:43;;17943:2;;18010:1;18007;18000:12
Swarm Source
ipfs://45f4f7b3500a9461d909f12df2166c8021ee202f573568ac73598d72ecaeed63
Loading...
Loading
Loading...
Loading
Multichain Portfolio | 30 Chains
Chain | Token | Portfolio % | Price | Amount | Value |
---|---|---|---|---|---|
ETH | Ether (ETH) | 100.00% | $3,131.01 | 0.72 | $2,254.33 |
Loading...
Loading
[ Download: CSV Export ]
[ 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.