Overview
ETH Balance
0 ETH
Eth Value
$0.00More Info
Private Name Tags
ContractCreator
Latest 1 from a total of 1 transactions
Transaction Hash |
Method
|
Block
|
From
|
To
|
|||||
---|---|---|---|---|---|---|---|---|---|
0x60a06040 | 13650723 | 1098 days ago | IN | 0 ETH | 0.14430724 |
View more zero value Internal Transactions in Advanced View mode
Advanced mode:
Loading...
Loading
This contract may be a proxy contract. Click on More Options and select Is this a proxy? to confirm and enable the "Read as Proxy" & "Write as Proxy" tabs.
Contract Name:
ERC721Base
Compiler Version
v0.8.9+commit.e5eed63a
Optimization Enabled:
Yes with 300 runs
Other Settings:
default evmVersion
Contract Source Code (Solidity Standard Json-Input format)
// SPDX-License-Identifier: GPL-3.0 pragma solidity 0.8.9; import {ERC721Upgradeable} from "@openzeppelin/contracts-upgradeable/token/ERC721/ERC721Upgradeable.sol"; import {IERC2981Upgradeable, IERC165Upgradeable} from "@openzeppelin/contracts-upgradeable/interfaces/IERC2981Upgradeable.sol"; import {OwnableUpgradeable} from "@openzeppelin/contracts-upgradeable/access/OwnableUpgradeable.sol"; import {StringsUpgradeable} from "@openzeppelin/contracts-upgradeable/utils/StringsUpgradeable.sol"; import {CountersUpgradeable} from "@openzeppelin/contracts-upgradeable/utils/CountersUpgradeable.sol"; import {IBaseERC721Interface} from "./IBaseERC721Interface.sol"; struct ConfigSettings { uint16 royaltyBps; string uriBase; string uriExtension; bool hasTransferHook; } /** This smart contract adds features and allows for a ownership only by another smart contract as fallback behavior while also implementing all normal ERC721 functions as expected */ contract ERC721Base is ERC721Upgradeable, IBaseERC721Interface, IERC2981Upgradeable, OwnableUpgradeable { using CountersUpgradeable for CountersUpgradeable.Counter; // Minted counter for totalSupply() CountersUpgradeable.Counter private mintedCounter; modifier onlyInternal() { require(msg.sender == address(this), "Only internal"); _; } /// on-chain record of when this contract was deployed uint256 public immutable deployedBlock; ConfigSettings public advancedConfig; /// Constructor called once when the base contract is deployed constructor() { // Can be used to verify contract implementation is correct at address deployedBlock = block.number; } /// Initializer that's called when a new child nft is setup /// @param newOwner Owner for the new derived nft /// @param _name name of NFT contract /// @param _symbol symbol of NFT contract /// @param settings configuration settings for uri, royalty, and hooks features function initialize( address newOwner, string memory _name, string memory _symbol, ConfigSettings memory settings ) public initializer { __ERC721_init(_name, _symbol); __Ownable_init(); advancedConfig = settings; transferOwnership(newOwner); } /// Getter to expose appoval status to root contract function isApprovedForAll(address _owner, address operator) public view override returns (bool) { return ERC721Upgradeable.isApprovedForAll(_owner, operator) || operator == address(this); } /// internal getter for approval by all /// When isApprovedForAll is overridden, this can be used to call original impl function __isApprovedForAll(address _owner, address operator) public view override returns (bool) { return isApprovedForAll(_owner, operator); } /// Hook that when enabled manually calls _beforeTokenTransfer on function _beforeTokenTransfer( address from, address to, uint256 tokenId ) internal override { if (advancedConfig.hasTransferHook) { (bool success, ) = address(this).delegatecall( abi.encodeWithSignature( "_beforeTokenTransfer(address,address,uint256)", from, to, tokenId ) ); // Raise error again from result if error exists assembly { switch success // delegatecall returns 0 on error. case 0 { returndatacopy(0, 0, returndatasize()) revert(0, returndatasize()) } } } } /// Internal-only function to update the base uri function __setBaseURI(string memory uriBase, string memory uriExtension) public override onlyInternal { advancedConfig.uriBase = uriBase; advancedConfig.uriExtension = uriExtension; } /// @dev returns the number of minted tokens /// uses some extra gas but makes etherscan and users happy so :shrug: /// partial erc721enumerable implemntation function totalSupply() public view returns (uint256) { return mintedCounter.current(); } /** Internal-only @param to address to send the newly minted NFT to @dev This mints one edition to the given address by an allowed minter on the edition instance. */ function __mint(address to, uint256 tokenId) external override onlyInternal { _mint(to, tokenId); mintedCounter.increment(); } /** @param tokenId Token ID to burn User burn function for token id */ function burn(uint256 tokenId) public { require(_isApprovedOrOwner(_msgSender(), tokenId), "Not allowed"); _burn(tokenId); mintedCounter.decrement(); } /// Internal only function __burn(uint256 tokenId) public onlyInternal { _burn(tokenId); mintedCounter.decrement(); } /** Simple override for owner interface. */ function owner() public view override(OwnableUpgradeable) returns (address) { return super.owner(); } /// internal alias for overrides function __owner() public view override(IBaseERC721Interface) returns (address) { return owner(); } /// Get royalty information for token /// ignored token id to get royalty info. able to override and set per-token royalties /// @param _salePrice sales price for token to determine royalty split function royaltyInfo(uint256, uint256 _salePrice) external view override returns (address receiver, uint256 royaltyAmount) { // If ownership is revoked, don't set royalties. if (owner() == address(0x0)) { return (owner(), 0); } return (owner(), (_salePrice * advancedConfig.royaltyBps) / 10_000); } /// Default simple token-uri implementation. works for ipfs folders too /// @param tokenId token id ot get uri for /// @return default uri getter functionality function tokenURI(uint256 tokenId) public view override returns (string memory) { require(_exists(tokenId), "No token"); return string( abi.encodePacked( advancedConfig.uriBase, StringsUpgradeable.toString(tokenId), advancedConfig.uriExtension ) ); } /// internal base override function __tokenURI(uint256 tokenId) public view onlyInternal returns (string memory) { return tokenURI(tokenId); } /// Exposing token exists check for base contract function __exists(uint256 tokenId) external view override returns (bool) { return _exists(tokenId); } /// Getter for approved or owner function __isApprovedOrOwner(address spender, uint256 tokenId) external view override onlyInternal returns (bool) { return _isApprovedOrOwner(spender, tokenId); } /// IERC165 getter /// @param interfaceId interfaceId bytes4 to check support for function supportsInterface(bytes4 interfaceId) public view override(ERC721Upgradeable, IERC165Upgradeable) returns (bool) { return type(IERC2981Upgradeable).interfaceId == interfaceId || type(IBaseERC721Interface).interfaceId == interfaceId || ERC721Upgradeable.supportsInterface(interfaceId); } }
// SPDX-License-Identifier: MIT pragma solidity ^0.8.0; import "./IERC721Upgradeable.sol"; import "./IERC721ReceiverUpgradeable.sol"; import "./extensions/IERC721MetadataUpgradeable.sol"; import "../../utils/AddressUpgradeable.sol"; import "../../utils/ContextUpgradeable.sol"; import "../../utils/StringsUpgradeable.sol"; import "../../utils/introspection/ERC165Upgradeable.sol"; import "../../proxy/utils/Initializable.sol"; /** * @dev Implementation of https://eips.ethereum.org/EIPS/eip-721[ERC721] Non-Fungible Token Standard, including * the Metadata extension, but not including the Enumerable extension, which is available separately as * {ERC721Enumerable}. */ contract ERC721Upgradeable is Initializable, ContextUpgradeable, ERC165Upgradeable, IERC721Upgradeable, IERC721MetadataUpgradeable { using AddressUpgradeable for address; using StringsUpgradeable 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. */ function __ERC721_init(string memory name_, string memory symbol_) internal initializer { __Context_init_unchained(); __ERC165_init_unchained(); __ERC721_init_unchained(name_, symbol_); } function __ERC721_init_unchained(string memory name_, string memory symbol_) internal initializer { _name = name_; _symbol = symbol_; } /** * @dev See {IERC165-supportsInterface}. */ function supportsInterface(bytes4 interfaceId) public view virtual override(ERC165Upgradeable, IERC165Upgradeable) returns (bool) { return interfaceId == type(IERC721Upgradeable).interfaceId || interfaceId == type(IERC721MetadataUpgradeable).interfaceId || super.supportsInterface(interfaceId); } /** * @dev See {IERC721-balanceOf}. */ function balanceOf(address owner) public view virtual override returns (uint256) { require(owner != address(0), "ERC721: balance query for the zero address"); return _balances[owner]; } /** * @dev See {IERC721-ownerOf}. */ function ownerOf(uint256 tokenId) public view virtual override returns (address) { address owner = _owners[tokenId]; require(owner != address(0), "ERC721: owner query for nonexistent token"); return owner; } /** * @dev See {IERC721Metadata-name}. */ function name() public view virtual override returns (string memory) { return _name; } /** * @dev See {IERC721Metadata-symbol}. */ function symbol() public view virtual override returns (string memory) { return _symbol; } /** * @dev See {IERC721Metadata-tokenURI}. */ function tokenURI(uint256 tokenId) public view virtual override returns (string memory) { require(_exists(tokenId), "ERC721Metadata: URI query for nonexistent token"); string memory baseURI = _baseURI(); return bytes(baseURI).length > 0 ? string(abi.encodePacked(baseURI, tokenId.toString())) : ""; } /** * @dev Base URI for computing {tokenURI}. If set, the resulting URI for each * token will be the concatenation of the `baseURI` and the `tokenId`. Empty * by default, can be overriden in child contracts. */ function _baseURI() internal view virtual returns (string memory) { return ""; } /** * @dev See {IERC721-approve}. */ function approve(address to, uint256 tokenId) public virtual override { address owner = ERC721Upgradeable.ownerOf(tokenId); require(to != owner, "ERC721: approval to current owner"); require( _msgSender() == owner || isApprovedForAll(owner, _msgSender()), "ERC721: approve caller is not owner nor approved for all" ); _approve(to, tokenId); } /** * @dev See {IERC721-getApproved}. */ function getApproved(uint256 tokenId) public view virtual override returns (address) { require(_exists(tokenId), "ERC721: approved query for nonexistent token"); return _tokenApprovals[tokenId]; } /** * @dev See {IERC721-setApprovalForAll}. */ function setApprovalForAll(address operator, bool approved) public virtual override { require(operator != _msgSender(), "ERC721: approve to caller"); _operatorApprovals[_msgSender()][operator] = approved; emit ApprovalForAll(_msgSender(), operator, approved); } /** * @dev See {IERC721-isApprovedForAll}. */ function isApprovedForAll(address owner, address operator) public view virtual override returns (bool) { return _operatorApprovals[owner][operator]; } /** * @dev See {IERC721-transferFrom}. */ function transferFrom( address from, address to, uint256 tokenId ) public virtual override { //solhint-disable-next-line max-line-length require(_isApprovedOrOwner(_msgSender(), tokenId), "ERC721: transfer caller is not owner nor approved"); _transfer(from, to, tokenId); } /** * @dev See {IERC721-safeTransferFrom}. */ function safeTransferFrom( address from, address to, uint256 tokenId ) public virtual override { safeTransferFrom(from, to, tokenId, ""); } /** * @dev See {IERC721-safeTransferFrom}. */ function safeTransferFrom( address from, address to, uint256 tokenId, bytes memory _data ) public virtual override { require(_isApprovedOrOwner(_msgSender(), tokenId), "ERC721: transfer caller is not owner nor approved"); _safeTransfer(from, to, tokenId, _data); } /** * @dev Safely transfers `tokenId` token from `from` to `to`, checking first that contract recipients * are aware of the ERC721 protocol to prevent tokens from being forever locked. * * `_data` is additional data, it has no specified format and it is sent in call to `to`. * * This internal function is equivalent to {safeTransferFrom}, and can be used to e.g. * implement alternative mechanisms to perform token transfer, such as signature-based. * * Requirements: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `tokenId` token must exist and be owned by `from`. * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer. * * Emits a {Transfer} event. */ function _safeTransfer( address from, address to, uint256 tokenId, bytes memory _data ) internal virtual { _transfer(from, to, tokenId); require(_checkOnERC721Received(from, to, tokenId, _data), "ERC721: transfer to non ERC721Receiver implementer"); } /** * @dev Returns whether `tokenId` exists. * * Tokens can be managed by their owner or approved accounts via {approve} or {setApprovalForAll}. * * Tokens start existing when they are minted (`_mint`), * and stop existing when they are burned (`_burn`). */ function _exists(uint256 tokenId) internal view virtual returns (bool) { return _owners[tokenId] != address(0); } /** * @dev Returns whether `spender` is allowed to manage `tokenId`. * * Requirements: * * - `tokenId` must exist. */ function _isApprovedOrOwner(address spender, uint256 tokenId) internal view virtual returns (bool) { require(_exists(tokenId), "ERC721: operator query for nonexistent token"); address owner = ERC721Upgradeable.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 = ERC721Upgradeable.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(ERC721Upgradeable.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(ERC721Upgradeable.ownerOf(tokenId), to, tokenId); } /** * @dev Internal function to invoke {IERC721Receiver-onERC721Received} on a target address. * The call is not executed if the target address is not a contract. * * @param from address representing the previous owner of the given token ID * @param to target address that will receive the tokens * @param tokenId uint256 ID of the token to be transferred * @param _data bytes optional data to send along with the call * @return bool whether the call correctly returned the expected magic value */ function _checkOnERC721Received( address from, address to, uint256 tokenId, bytes memory _data ) private returns (bool) { if (to.isContract()) { try IERC721ReceiverUpgradeable(to).onERC721Received(_msgSender(), from, tokenId, _data) returns (bytes4 retval) { return retval == IERC721ReceiverUpgradeable.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 {} uint256[44] private __gap; }
// SPDX-License-Identifier: MIT pragma solidity ^0.8.0; import "./IERC165Upgradeable.sol"; /** * @dev Interface for the NFT Royalty Standard */ interface IERC2981Upgradeable is IERC165Upgradeable { /** * @dev Called with the sale price to determine how much royalty is owed and to whom. * @param tokenId - the NFT asset queried for royalty information * @param salePrice - the sale price of the NFT asset specified by `tokenId` * @return receiver - address of who should be sent the royalty payment * @return royaltyAmount - the royalty payment amount for `salePrice` */ function royaltyInfo(uint256 tokenId, uint256 salePrice) external view returns (address receiver, uint256 royaltyAmount); }
// SPDX-License-Identifier: MIT pragma solidity ^0.8.0; import "../utils/ContextUpgradeable.sol"; import "../proxy/utils/Initializable.sol"; /** * @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 OwnableUpgradeable is Initializable, ContextUpgradeable { address private _owner; event OwnershipTransferred(address indexed previousOwner, address indexed newOwner); /** * @dev Initializes the contract setting the deployer as the initial owner. */ function __Ownable_init() internal initializer { __Context_init_unchained(); __Ownable_init_unchained(); } function __Ownable_init_unchained() internal initializer { _setOwner(_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 { _setOwner(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"); _setOwner(newOwner); } function _setOwner(address newOwner) private { address oldOwner = _owner; _owner = newOwner; emit OwnershipTransferred(oldOwner, newOwner); } uint256[49] private __gap; }
// SPDX-License-Identifier: MIT pragma solidity ^0.8.0; /** * @dev String operations. */ library StringsUpgradeable { 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); } }
// SPDX-License-Identifier: MIT 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 CountersUpgradeable { 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; } }
// SPDX-License-Identifier: GPL-3.0 pragma solidity 0.8.9; /// Additional features and functions assigned to the /// Base721 contract for hooks and overrides interface IBaseERC721Interface { /* Exposing common NFT internal functionality for base contract overrides To save gas and make API cleaner this is only for new functionality not exposed in the core ERC721 contract */ /// Mint an NFT. Allowed to mint by owner, approval or by the parent contract /// @param tokenId id to burn function __burn(uint256 tokenId) external; /// Mint an NFT. Allowed only by the parent contract /// @param to address to mint to /// @param tokenId token id to mint function __mint(address to, uint256 tokenId) external; /// Set the base URI of the contract. Allowed only by parent contract /// @param base base uri /// @param extension extension function __setBaseURI(string memory base, string memory extension) external; /* Exposes common internal read features for public use */ /// Token exists /// @param tokenId token id to see if it exists function __exists(uint256 tokenId) external view returns (bool); /// Simple approval for operation check on token for address /// @param spender address spending/changing token /// @param tokenId tokenID to change / operate on function __isApprovedOrOwner(address spender, uint256 tokenId) external view returns (bool); function __isApprovedForAll(address owner, address operator) external view returns (bool); function __tokenURI(uint256 tokenId) external view returns (string memory); function __owner() external view returns (address); }
// SPDX-License-Identifier: MIT pragma solidity ^0.8.0; import "../../utils/introspection/IERC165Upgradeable.sol"; /** * @dev Required interface of an ERC721 compliant contract. */ interface IERC721Upgradeable is IERC165Upgradeable { /** * @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; }
// SPDX-License-Identifier: MIT 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 IERC721ReceiverUpgradeable { /** * @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); }
// SPDX-License-Identifier: MIT pragma solidity ^0.8.0; import "../IERC721Upgradeable.sol"; /** * @title ERC-721 Non-Fungible Token Standard, optional metadata extension * @dev See https://eips.ethereum.org/EIPS/eip-721 */ interface IERC721MetadataUpgradeable is IERC721Upgradeable { /** * @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); }
// SPDX-License-Identifier: MIT pragma solidity ^0.8.0; /** * @dev Collection of functions related to the address type */ library AddressUpgradeable { /** * @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 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); } } } }
// SPDX-License-Identifier: MIT pragma solidity ^0.8.0; import "../proxy/utils/Initializable.sol"; /** * @dev Provides information about the current execution context, including the * sender of the transaction and its data. While these are generally available * via msg.sender and msg.data, they should not be accessed in such a direct * manner, since when dealing with meta-transactions the account sending and * paying for execution may not be the actual sender (as far as an application * is concerned). * * This contract is only required for intermediate, library-like contracts. */ abstract contract ContextUpgradeable is Initializable { function __Context_init() internal initializer { __Context_init_unchained(); } function __Context_init_unchained() internal initializer { } function _msgSender() internal view virtual returns (address) { return msg.sender; } function _msgData() internal view virtual returns (bytes calldata) { return msg.data; } uint256[50] private __gap; }
// SPDX-License-Identifier: MIT pragma solidity ^0.8.0; import "./IERC165Upgradeable.sol"; import "../../proxy/utils/Initializable.sol"; /** * @dev Implementation of the {IERC165} interface. * * Contracts that want to implement ERC165 should inherit from this contract and override {supportsInterface} to check * for the additional interface id that will be supported. For example: * * ```solidity * function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) { * return interfaceId == type(MyInterface).interfaceId || super.supportsInterface(interfaceId); * } * ``` * * Alternatively, {ERC165Storage} provides an easier to use but more expensive implementation. */ abstract contract ERC165Upgradeable is Initializable, IERC165Upgradeable { function __ERC165_init() internal initializer { __ERC165_init_unchained(); } function __ERC165_init_unchained() internal initializer { } /** * @dev See {IERC165-supportsInterface}. */ function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) { return interfaceId == type(IERC165Upgradeable).interfaceId; } uint256[50] private __gap; }
// SPDX-License-Identifier: MIT pragma solidity ^0.8.0; /** * @dev This is a base contract to aid in writing upgradeable contracts, or any kind of contract that will be deployed * behind a proxy. Since a proxied contract can't have a constructor, it's common to move constructor logic to an * external initializer function, usually called `initialize`. It then becomes necessary to protect this initializer * function so it can only be called once. The {initializer} modifier provided by this contract will have this effect. * * TIP: To avoid leaving the proxy in an uninitialized state, the initializer function should be called as early as * possible by providing the encoded function call as the `_data` argument to {ERC1967Proxy-constructor}. * * CAUTION: When used with inheritance, manual care must be taken to not invoke a parent initializer twice, or to ensure * that all initializers are idempotent. This is not verified automatically as constructors are by Solidity. */ abstract contract Initializable { /** * @dev Indicates that the contract has been initialized. */ bool private _initialized; /** * @dev Indicates that the contract is in the process of being initialized. */ bool private _initializing; /** * @dev Modifier to protect an initializer function from being invoked twice. */ modifier initializer() { require(_initializing || !_initialized, "Initializable: contract is already initialized"); bool isTopLevelCall = !_initializing; if (isTopLevelCall) { _initializing = true; _initialized = true; } _; if (isTopLevelCall) { _initializing = false; } } }
// SPDX-License-Identifier: MIT 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 IERC165Upgradeable { /** * @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); }
// SPDX-License-Identifier: MIT pragma solidity ^0.8.0; import "../utils/introspection/IERC165Upgradeable.sol";
{ "optimizer": { "enabled": true, "runs": 300 }, "outputSelection": { "*": { "*": [ "evm.bytecode", "evm.deployedBytecode", "devdoc", "userdoc", "metadata", "abi" ] } }, "metadata": { "useLiteralContent": true }, "libraries": {} }
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":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"__burn","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"__exists","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"__isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"__isApprovedOrOwner","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"__mint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"__owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"string","name":"uriBase","type":"string"},{"internalType":"string","name":"uriExtension","type":"string"}],"name":"__setBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"__tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"advancedConfig","outputs":[{"internalType":"uint16","name":"royaltyBps","type":"uint16"},{"internalType":"string","name":"uriBase","type":"string"},{"internalType":"string","name":"uriExtension","type":"string"},{"internalType":"bool","name":"hasTransferHook","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"burn","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"deployedBlock","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":[{"internalType":"address","name":"newOwner","type":"address"},{"internalType":"string","name":"_name","type":"string"},{"internalType":"string","name":"_symbol","type":"string"},{"components":[{"internalType":"uint16","name":"royaltyBps","type":"uint16"},{"internalType":"string","name":"uriBase","type":"string"},{"internalType":"string","name":"uriExtension","type":"string"},{"internalType":"bool","name":"hasTransferHook","type":"bool"}],"internalType":"struct ConfigSettings","name":"settings","type":"tuple"}],"name":"initialize","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"","type":"uint256"},{"internalType":"uint256","name":"_salePrice","type":"uint256"}],"name":"royaltyInfo","outputs":[{"internalType":"address","name":"receiver","type":"address"},{"internalType":"uint256","name":"royaltyAmount","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":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"_data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"}]
Contract Creation Code
60a060405234801561001057600080fd5b5043608052608051612455610030600039600061036401526124556000f3fe608060405234801561001057600080fd5b50600436106101da5760003560e01c806370a0823111610104578063a22cb465116100a2578063d1a0152011610071578063d1a015201461040d578063e985e9c514610420578063f2fde38b14610433578063f5dbba9d1461044657600080fd5b8063a22cb465146103c1578063b1a78e3f146103d4578063b88d4fde146103e7578063c87b56dd146103fa57600080fd5b80638553c3e9116100de5780638553c3e9146103865780638da5cb5b1461039957806395d89b41146103a1578063a1f1fdb9146103a957600080fd5b806370a0823114610344578063715018a61461035757806382ea7bfe1461035f57600080fd5b806318160ddd1161017c57806342842e0e1161014b57806342842e0e146102f857806342966c681461030b57806352d9e77a1461031e5780636352211e1461033157600080fd5b806318160ddd1461028a57806323b872dd146102a05780632a55205a146102b35780633dc8ded7146102e557600080fd5b8063081812fc116101b8578063081812fc14610231578063087ff6181461025c578063095ea7b31461026f57806313effa0f1461028257600080fd5b806301278b02146101df57806301ffc9a7146101f457806306fdde031461021c575b600080fd5b6101f26101ed366004611cc7565b610459565b005b610207610202366004611d41565b6104c9565b60405190151581526020015b60405180910390f35b61022461050f565b6040516102139190611db6565b61024461023f366004611dc9565b6105a1565b6040516001600160a01b039091168152602001610213565b61020761026a366004611df9565b610636565b6101f261027d366004611e2c565b610649565b61024461075a565b610292610769565b604051908152602001610213565b6101f26102ae366004611e56565b610774565b6102c66102c1366004611e92565b6107a6565b604080516001600160a01b039093168352602083019190915201610213565b6101f26102f3366004611e2c565b610807565b6101f2610306366004611e56565b610862565b6101f2610319366004611dc9565b61087d565b61020761032c366004611e2c565b6108d6565b61024461033f366004611dc9565b610921565b610292610352366004611eb4565b610998565b6101f2610a1f565b6102927f000000000000000000000000000000000000000000000000000000000000000081565b610207610394366004611dc9565b610a8a565b610244610aa9565b610224610abd565b6103b1610acc565b6040516102139493929190611ecf565b6101f26103cf366004611f22565b610bff565b6101f26103e2366004611f4c565b610cc4565b6101f26103f5366004612062565b610db8565b610224610408366004611dc9565b610df0565b6101f261041b366004611dc9565b610e77565b61020761042e366004611df9565b610eb6565b6101f2610441366004611eb4565b610efb565b610224610454366004611dc9565b610fc8565b33301461049d5760405162461bcd60e51b815260206004820152600d60248201526c13db9b1e481a5b9d195c9b985b609a1b60448201526064015b60405180910390fd5b81516104b09060cb906020850190611b59565b5080516104c49060cc906020840190611b59565b505050565b600063152a902d60e11b6001600160e01b0319831614806104fa5750633523b4bb60e21b6001600160e01b03198316145b80610509575061050982611017565b92915050565b60606065805461051e906120de565b80601f016020809104026020016040519081016040528092919081815260200182805461054a906120de565b80156105975780601f1061056c57610100808354040283529160200191610597565b820191906000526020600020905b81548152906001019060200180831161057a57829003601f168201915b5050505050905090565b6000818152606760205260408120546001600160a01b031661061a5760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b6064820152608401610494565b506000908152606960205260409020546001600160a01b031690565b60006106428383610eb6565b9392505050565b600061065482610921565b9050806001600160a01b0316836001600160a01b031614156106c25760405162461bcd60e51b815260206004820152602160248201527f4552433732313a20617070726f76616c20746f2063757272656e74206f776e656044820152603960f91b6064820152608401610494565b336001600160a01b03821614806106de57506106de8133610eb6565b6107505760405162461bcd60e51b815260206004820152603860248201527f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760448201527f6e6572206e6f7220617070726f76656420666f7220616c6c00000000000000006064820152608401610494565b6104c48383611067565b6000610764610aa9565b905090565b600061076460c95490565b61077f335b826110d5565b61079b5760405162461bcd60e51b815260040161049490612119565b6104c48383836111ac565b600080806107b2610aa9565b6001600160a01b031614156107d4576107c9610aa9565b600091509150610800565b6107dc610aa9565b60ca54612710906107f19061ffff1686612180565b6107fb91906121b5565b915091505b9250929050565b3330146108465760405162461bcd60e51b815260206004820152600d60248201526c13db9b1e481a5b9d195c9b985b609a1b6044820152606401610494565b6108508282611357565b61085e60c980546001019055565b5050565b6104c483838360405180602001604052806000815250610db8565b61088633610779565b6108c05760405162461bcd60e51b815260206004820152600b60248201526a139bdd08185b1b1bddd95960aa1b6044820152606401610494565b6108c9816114a5565b6108d360c961154c565b50565b60003330146109175760405162461bcd60e51b815260206004820152600d60248201526c13db9b1e481a5b9d195c9b985b609a1b6044820152606401610494565b61064283836110d5565b6000818152606760205260408120546001600160a01b0316806105095760405162461bcd60e51b815260206004820152602960248201527f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460448201526832b73a103a37b5b2b760b91b6064820152608401610494565b60006001600160a01b038216610a035760405162461bcd60e51b815260206004820152602a60248201527f4552433732313a2062616c616e636520717565727920666f7220746865207a65604482015269726f206164647265737360b01b6064820152608401610494565b506001600160a01b031660009081526068602052604090205490565b33610a28610aa9565b6001600160a01b031614610a7e5760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610494565b610a8860006115a3565b565b6000818152606760205260408120546001600160a01b03161515610509565b60006107646097546001600160a01b031690565b60606066805461051e906120de565b60ca805460cb805461ffff9092169291610ae5906120de565b80601f0160208091040260200160405190810160405280929190818152602001828054610b11906120de565b8015610b5e5780601f10610b3357610100808354040283529160200191610b5e565b820191906000526020600020905b815481529060010190602001808311610b4157829003601f168201915b505050505090806002018054610b73906120de565b80601f0160208091040260200160405190810160405280929190818152602001828054610b9f906120de565b8015610bec5780601f10610bc157610100808354040283529160200191610bec565b820191906000526020600020905b815481529060010190602001808311610bcf57829003601f168201915b5050506003909301549192505060ff1684565b6001600160a01b038216331415610c585760405162461bcd60e51b815260206004820152601960248201527f4552433732313a20617070726f766520746f2063616c6c6572000000000000006044820152606401610494565b336000818152606a602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b600054610100900460ff1680610cdd575060005460ff16155b610cf95760405162461bcd60e51b8152600401610494906121c9565b600054610100900460ff16158015610d1b576000805461ffff19166101011790555b610d2584846115f5565b610d2d61167c565b815160ca805461ffff191661ffff9092169190911781556020808401518051859392610d5e9260cb92910190611b59565b5060408201518051610d7a916002840191602090910190611b59565b50606091909101516003909101805460ff1916911515919091179055610d9f85610efb565b8015610db1576000805461ff00191690555b5050505050565b610dc233836110d5565b610dde5760405162461bcd60e51b815260040161049490612119565b610dea848484846116f7565b50505050565b6000818152606760205260409020546060906001600160a01b0316610e425760405162461bcd60e51b81526020600482015260086024820152672737903a37b5b2b760c11b6044820152606401610494565b60cb610e4d8361172a565b604051610e6192919060cc906020016122b1565b6040516020818303038152906040529050919050565b3330146108c05760405162461bcd60e51b815260206004820152600d60248201526c13db9b1e481a5b9d195c9b985b609a1b6044820152606401610494565b6001600160a01b038083166000908152606a6020908152604080832093851683529290529081205460ff168061064257506001600160a01b0382163014905092915050565b33610f04610aa9565b6001600160a01b031614610f5a5760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610494565b6001600160a01b038116610fbf5760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610494565b6108d3816115a3565b60603330146110095760405162461bcd60e51b815260206004820152600d60248201526c13db9b1e481a5b9d195c9b985b609a1b6044820152606401610494565b61050982610df0565b919050565b60006001600160e01b031982166380ac58cd60e01b148061104857506001600160e01b03198216635b5e139f60e01b145b8061050957506301ffc9a760e01b6001600160e01b0319831614610509565b600081815260696020526040902080546001600160a01b0319166001600160a01b038416908117909155819061109c82610921565b6001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b6000818152606760205260408120546001600160a01b031661114e5760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b6064820152608401610494565b600061115983610921565b9050806001600160a01b0316846001600160a01b031614806111945750836001600160a01b0316611189846105a1565b6001600160a01b0316145b806111a457506111a48185610eb6565b949350505050565b826001600160a01b03166111bf82610921565b6001600160a01b0316146112275760405162461bcd60e51b815260206004820152602960248201527f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960448201526839903737ba1037bbb760b91b6064820152608401610494565b6001600160a01b0382166112895760405162461bcd60e51b8152602060048201526024808201527f4552433732313a207472616e7366657220746f20746865207a65726f206164646044820152637265737360e01b6064820152608401610494565b611294838383611828565b61129f600082611067565b6001600160a01b03831660009081526068602052604081208054600192906112c89084906122e4565b90915550506001600160a01b03821660009081526068602052604081208054600192906112f69084906122fb565b909155505060008181526067602052604080822080546001600160a01b0319166001600160a01b0386811691821790925591518493918716917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef91a4505050565b6001600160a01b0382166113ad5760405162461bcd60e51b815260206004820181905260248201527f4552433732313a206d696e7420746f20746865207a65726f20616464726573736044820152606401610494565b6000818152606760205260409020546001600160a01b0316156114125760405162461bcd60e51b815260206004820152601c60248201527f4552433732313a20746f6b656e20616c7265616479206d696e746564000000006044820152606401610494565b61141e60008383611828565b6001600160a01b03821660009081526068602052604081208054600192906114479084906122fb565b909155505060008181526067602052604080822080546001600160a01b0319166001600160a01b03861690811790915590518392907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a45050565b60006114b082610921565b90506114be81600084611828565b6114c9600083611067565b6001600160a01b03811660009081526068602052604081208054600192906114f29084906122e4565b909155505060008281526067602052604080822080546001600160a01b0319169055518391906001600160a01b038416907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908390a45050565b80548061159b5760405162461bcd60e51b815260206004820152601b60248201527f436f756e7465723a2064656372656d656e74206f766572666c6f7700000000006044820152606401610494565b600019019055565b609780546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b600054610100900460ff168061160e575060005460ff16155b61162a5760405162461bcd60e51b8152600401610494906121c9565b600054610100900460ff1615801561164c576000805461ffff19166101011790555b6116546118ed565b61165c6118ed565b6116668383611957565b80156104c4576000805461ff0019169055505050565b600054610100900460ff1680611695575060005460ff16155b6116b15760405162461bcd60e51b8152600401610494906121c9565b600054610100900460ff161580156116d3576000805461ffff19166101011790555b6116db6118ed565b6116e36119ec565b80156108d3576000805461ff001916905550565b6117028484846111ac565b61170e84848484611a4c565b610dea5760405162461bcd60e51b815260040161049490612313565b60608161174e5750506040805180820190915260018152600360fc1b602082015290565b8160005b8115611778578061176281612365565b91506117719050600a836121b5565b9150611752565b60008167ffffffffffffffff81111561179357611793611bf2565b6040519080825280601f01601f1916602001820160405280156117bd576020820181803683370190505b5090505b84156111a4576117d26001836122e4565b91506117df600a86612380565b6117ea9060306122fb565b60f81b8183815181106117ff576117ff612394565b60200101906001600160f81b031916908160001a905350611821600a866121b5565b94506117c1565b60cd5460ff16156104c4576040516001600160a01b0384811660248301528316604482015260648101829052600090309060840160408051601f198184030181529181526020820180516001600160e01b031663cad3be8360e01b1790525161189191906123aa565b600060405180830381855af49150503d80600081146118cc576040519150601f19603f3d011682016040523d82523d6000602084013e6118d1565b606091505b5050905080600081146118e357610db1565b3d6000803e3d6000fd5b600054610100900460ff1680611906575060005460ff16155b6119225760405162461bcd60e51b8152600401610494906121c9565b600054610100900460ff161580156116e3576000805461ffff191661010117905580156108d3576000805461ff001916905550565b600054610100900460ff1680611970575060005460ff16155b61198c5760405162461bcd60e51b8152600401610494906121c9565b600054610100900460ff161580156119ae576000805461ffff19166101011790555b82516119c1906065906020860190611b59565b5081516119d5906066906020850190611b59565b5080156104c4576000805461ff0019169055505050565b600054610100900460ff1680611a05575060005460ff16155b611a215760405162461bcd60e51b8152600401610494906121c9565b600054610100900460ff16158015611a43576000805461ffff19166101011790555b6116e3336115a3565b60006001600160a01b0384163b15611b4e57604051630a85bd0160e11b81526001600160a01b0385169063150b7a0290611a909033908990889088906004016123c6565b602060405180830381600087803b158015611aaa57600080fd5b505af1925050508015611ada575060408051601f3d908101601f19168201909252611ad791810190612402565b60015b611b34573d808015611b08576040519150601f19603f3d011682016040523d82523d6000602084013e611b0d565b606091505b508051611b2c5760405162461bcd60e51b815260040161049490612313565b805181602001fd5b6001600160e01b031916630a85bd0160e11b1490506111a4565b506001949350505050565b828054611b65906120de565b90600052602060002090601f016020900481019282611b875760008555611bcd565b82601f10611ba057805160ff1916838001178555611bcd565b82800160010185558215611bcd579182015b82811115611bcd578251825591602001919060010190611bb2565b50611bd9929150611bdd565b5090565b5b80821115611bd95760008155600101611bde565b634e487b7160e01b600052604160045260246000fd5b6040516080810167ffffffffffffffff81118282101715611c2b57611c2b611bf2565b60405290565b600067ffffffffffffffff80841115611c4c57611c4c611bf2565b604051601f8501601f19908116603f01168101908282118183101715611c7457611c74611bf2565b81604052809350858152868686011115611c8d57600080fd5b858560208301376000602087830101525050509392505050565b600082601f830112611cb857600080fd5b61064283833560208501611c31565b60008060408385031215611cda57600080fd5b823567ffffffffffffffff80821115611cf257600080fd5b611cfe86838701611ca7565b93506020850135915080821115611d1457600080fd5b50611d2185828601611ca7565b9150509250929050565b6001600160e01b0319811681146108d357600080fd5b600060208284031215611d5357600080fd5b813561064281611d2b565b60005b83811015611d79578181015183820152602001611d61565b83811115610dea5750506000910152565b60008151808452611da2816020860160208601611d5e565b601f01601f19169290920160200192915050565b6020815260006106426020830184611d8a565b600060208284031215611ddb57600080fd5b5035919050565b80356001600160a01b038116811461101257600080fd5b60008060408385031215611e0c57600080fd5b611e1583611de2565b9150611e2360208401611de2565b90509250929050565b60008060408385031215611e3f57600080fd5b611e4883611de2565b946020939093013593505050565b600080600060608486031215611e6b57600080fd5b611e7484611de2565b9250611e8260208501611de2565b9150604084013590509250925092565b60008060408385031215611ea557600080fd5b50508035926020909101359150565b600060208284031215611ec657600080fd5b61064282611de2565b61ffff85168152608060208201526000611eec6080830186611d8a565b8281036040840152611efe8186611d8a565b915050821515606083015295945050505050565b8035801515811461101257600080fd5b60008060408385031215611f3557600080fd5b611f3e83611de2565b9150611e2360208401611f12565b60008060008060808587031215611f6257600080fd5b611f6b85611de2565b9350602085013567ffffffffffffffff80821115611f8857600080fd5b611f9488838901611ca7565b94506040870135915080821115611faa57600080fd5b611fb688838901611ca7565b93506060870135915080821115611fcc57600080fd5b9086019060808289031215611fe057600080fd5b611fe8611c08565b823561ffff81168114611ffa57600080fd5b815260208301358281111561200e57600080fd5b61201a8a828601611ca7565b60208301525060408301358281111561203257600080fd5b61203e8a828601611ca7565b60408301525061205060608401611f12565b60608201529598949750929550505050565b6000806000806080858703121561207857600080fd5b61208185611de2565b935061208f60208601611de2565b925060408501359150606085013567ffffffffffffffff8111156120b257600080fd5b8501601f810187136120c357600080fd5b6120d287823560208401611c31565b91505092959194509250565b600181811c908216806120f257607f821691505b6020821081141561211357634e487b7160e01b600052602260045260246000fd5b50919050565b60208082526031908201527f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f6040820152701ddb995c881b9bdc88185c1c1c9bdd9959607a1b606082015260800190565b634e487b7160e01b600052601160045260246000fd5b600081600019048311821515161561219a5761219a61216a565b500290565b634e487b7160e01b600052601260045260246000fd5b6000826121c4576121c461219f565b500490565b6020808252602e908201527f496e697469616c697a61626c653a20636f6e747261637420697320616c72656160408201526d191e481a5b9a5d1a585b1a5e995960921b606082015260800190565b8054600090600181811c908083168061223157607f831692505b602080841082141561225357634e487b7160e01b600052602260045260246000fd5b8180156122675760018114612278576122a5565b60ff198616895284890196506122a5565b60008881526020902060005b8681101561229d5781548b820152908501908301612284565b505084890196505b50505050505092915050565b60006122bd8286612217565b84516122cd818360208901611d5e565b6122d981830186612217565b979650505050505050565b6000828210156122f6576122f661216a565b500390565b6000821982111561230e5761230e61216a565b500190565b60208082526032908201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560408201527131b2b4bb32b91034b6b83632b6b2b73a32b960711b606082015260800190565b60006000198214156123795761237961216a565b5060010190565b60008261238f5761238f61219f565b500690565b634e487b7160e01b600052603260045260246000fd5b600082516123bc818460208701611d5e565b9190910192915050565b60006001600160a01b038087168352808616602084015250836040830152608060608301526123f86080830184611d8a565b9695505050505050565b60006020828403121561241457600080fd5b815161064281611d2b56fea264697066735822122039cad36d901e94a8e0ffad83f669dbcc206abf2098e74461a73ddc942ca5ba1964736f6c63430008090033
Deployed Bytecode
0x608060405234801561001057600080fd5b50600436106101da5760003560e01c806370a0823111610104578063a22cb465116100a2578063d1a0152011610071578063d1a015201461040d578063e985e9c514610420578063f2fde38b14610433578063f5dbba9d1461044657600080fd5b8063a22cb465146103c1578063b1a78e3f146103d4578063b88d4fde146103e7578063c87b56dd146103fa57600080fd5b80638553c3e9116100de5780638553c3e9146103865780638da5cb5b1461039957806395d89b41146103a1578063a1f1fdb9146103a957600080fd5b806370a0823114610344578063715018a61461035757806382ea7bfe1461035f57600080fd5b806318160ddd1161017c57806342842e0e1161014b57806342842e0e146102f857806342966c681461030b57806352d9e77a1461031e5780636352211e1461033157600080fd5b806318160ddd1461028a57806323b872dd146102a05780632a55205a146102b35780633dc8ded7146102e557600080fd5b8063081812fc116101b8578063081812fc14610231578063087ff6181461025c578063095ea7b31461026f57806313effa0f1461028257600080fd5b806301278b02146101df57806301ffc9a7146101f457806306fdde031461021c575b600080fd5b6101f26101ed366004611cc7565b610459565b005b610207610202366004611d41565b6104c9565b60405190151581526020015b60405180910390f35b61022461050f565b6040516102139190611db6565b61024461023f366004611dc9565b6105a1565b6040516001600160a01b039091168152602001610213565b61020761026a366004611df9565b610636565b6101f261027d366004611e2c565b610649565b61024461075a565b610292610769565b604051908152602001610213565b6101f26102ae366004611e56565b610774565b6102c66102c1366004611e92565b6107a6565b604080516001600160a01b039093168352602083019190915201610213565b6101f26102f3366004611e2c565b610807565b6101f2610306366004611e56565b610862565b6101f2610319366004611dc9565b61087d565b61020761032c366004611e2c565b6108d6565b61024461033f366004611dc9565b610921565b610292610352366004611eb4565b610998565b6101f2610a1f565b6102927f0000000000000000000000000000000000000000000000000000000000d04b2381565b610207610394366004611dc9565b610a8a565b610244610aa9565b610224610abd565b6103b1610acc565b6040516102139493929190611ecf565b6101f26103cf366004611f22565b610bff565b6101f26103e2366004611f4c565b610cc4565b6101f26103f5366004612062565b610db8565b610224610408366004611dc9565b610df0565b6101f261041b366004611dc9565b610e77565b61020761042e366004611df9565b610eb6565b6101f2610441366004611eb4565b610efb565b610224610454366004611dc9565b610fc8565b33301461049d5760405162461bcd60e51b815260206004820152600d60248201526c13db9b1e481a5b9d195c9b985b609a1b60448201526064015b60405180910390fd5b81516104b09060cb906020850190611b59565b5080516104c49060cc906020840190611b59565b505050565b600063152a902d60e11b6001600160e01b0319831614806104fa5750633523b4bb60e21b6001600160e01b03198316145b80610509575061050982611017565b92915050565b60606065805461051e906120de565b80601f016020809104026020016040519081016040528092919081815260200182805461054a906120de565b80156105975780601f1061056c57610100808354040283529160200191610597565b820191906000526020600020905b81548152906001019060200180831161057a57829003601f168201915b5050505050905090565b6000818152606760205260408120546001600160a01b031661061a5760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b6064820152608401610494565b506000908152606960205260409020546001600160a01b031690565b60006106428383610eb6565b9392505050565b600061065482610921565b9050806001600160a01b0316836001600160a01b031614156106c25760405162461bcd60e51b815260206004820152602160248201527f4552433732313a20617070726f76616c20746f2063757272656e74206f776e656044820152603960f91b6064820152608401610494565b336001600160a01b03821614806106de57506106de8133610eb6565b6107505760405162461bcd60e51b815260206004820152603860248201527f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760448201527f6e6572206e6f7220617070726f76656420666f7220616c6c00000000000000006064820152608401610494565b6104c48383611067565b6000610764610aa9565b905090565b600061076460c95490565b61077f335b826110d5565b61079b5760405162461bcd60e51b815260040161049490612119565b6104c48383836111ac565b600080806107b2610aa9565b6001600160a01b031614156107d4576107c9610aa9565b600091509150610800565b6107dc610aa9565b60ca54612710906107f19061ffff1686612180565b6107fb91906121b5565b915091505b9250929050565b3330146108465760405162461bcd60e51b815260206004820152600d60248201526c13db9b1e481a5b9d195c9b985b609a1b6044820152606401610494565b6108508282611357565b61085e60c980546001019055565b5050565b6104c483838360405180602001604052806000815250610db8565b61088633610779565b6108c05760405162461bcd60e51b815260206004820152600b60248201526a139bdd08185b1b1bddd95960aa1b6044820152606401610494565b6108c9816114a5565b6108d360c961154c565b50565b60003330146109175760405162461bcd60e51b815260206004820152600d60248201526c13db9b1e481a5b9d195c9b985b609a1b6044820152606401610494565b61064283836110d5565b6000818152606760205260408120546001600160a01b0316806105095760405162461bcd60e51b815260206004820152602960248201527f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460448201526832b73a103a37b5b2b760b91b6064820152608401610494565b60006001600160a01b038216610a035760405162461bcd60e51b815260206004820152602a60248201527f4552433732313a2062616c616e636520717565727920666f7220746865207a65604482015269726f206164647265737360b01b6064820152608401610494565b506001600160a01b031660009081526068602052604090205490565b33610a28610aa9565b6001600160a01b031614610a7e5760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610494565b610a8860006115a3565b565b6000818152606760205260408120546001600160a01b03161515610509565b60006107646097546001600160a01b031690565b60606066805461051e906120de565b60ca805460cb805461ffff9092169291610ae5906120de565b80601f0160208091040260200160405190810160405280929190818152602001828054610b11906120de565b8015610b5e5780601f10610b3357610100808354040283529160200191610b5e565b820191906000526020600020905b815481529060010190602001808311610b4157829003601f168201915b505050505090806002018054610b73906120de565b80601f0160208091040260200160405190810160405280929190818152602001828054610b9f906120de565b8015610bec5780601f10610bc157610100808354040283529160200191610bec565b820191906000526020600020905b815481529060010190602001808311610bcf57829003601f168201915b5050506003909301549192505060ff1684565b6001600160a01b038216331415610c585760405162461bcd60e51b815260206004820152601960248201527f4552433732313a20617070726f766520746f2063616c6c6572000000000000006044820152606401610494565b336000818152606a602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b600054610100900460ff1680610cdd575060005460ff16155b610cf95760405162461bcd60e51b8152600401610494906121c9565b600054610100900460ff16158015610d1b576000805461ffff19166101011790555b610d2584846115f5565b610d2d61167c565b815160ca805461ffff191661ffff9092169190911781556020808401518051859392610d5e9260cb92910190611b59565b5060408201518051610d7a916002840191602090910190611b59565b50606091909101516003909101805460ff1916911515919091179055610d9f85610efb565b8015610db1576000805461ff00191690555b5050505050565b610dc233836110d5565b610dde5760405162461bcd60e51b815260040161049490612119565b610dea848484846116f7565b50505050565b6000818152606760205260409020546060906001600160a01b0316610e425760405162461bcd60e51b81526020600482015260086024820152672737903a37b5b2b760c11b6044820152606401610494565b60cb610e4d8361172a565b604051610e6192919060cc906020016122b1565b6040516020818303038152906040529050919050565b3330146108c05760405162461bcd60e51b815260206004820152600d60248201526c13db9b1e481a5b9d195c9b985b609a1b6044820152606401610494565b6001600160a01b038083166000908152606a6020908152604080832093851683529290529081205460ff168061064257506001600160a01b0382163014905092915050565b33610f04610aa9565b6001600160a01b031614610f5a5760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610494565b6001600160a01b038116610fbf5760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610494565b6108d3816115a3565b60603330146110095760405162461bcd60e51b815260206004820152600d60248201526c13db9b1e481a5b9d195c9b985b609a1b6044820152606401610494565b61050982610df0565b919050565b60006001600160e01b031982166380ac58cd60e01b148061104857506001600160e01b03198216635b5e139f60e01b145b8061050957506301ffc9a760e01b6001600160e01b0319831614610509565b600081815260696020526040902080546001600160a01b0319166001600160a01b038416908117909155819061109c82610921565b6001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b6000818152606760205260408120546001600160a01b031661114e5760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b6064820152608401610494565b600061115983610921565b9050806001600160a01b0316846001600160a01b031614806111945750836001600160a01b0316611189846105a1565b6001600160a01b0316145b806111a457506111a48185610eb6565b949350505050565b826001600160a01b03166111bf82610921565b6001600160a01b0316146112275760405162461bcd60e51b815260206004820152602960248201527f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960448201526839903737ba1037bbb760b91b6064820152608401610494565b6001600160a01b0382166112895760405162461bcd60e51b8152602060048201526024808201527f4552433732313a207472616e7366657220746f20746865207a65726f206164646044820152637265737360e01b6064820152608401610494565b611294838383611828565b61129f600082611067565b6001600160a01b03831660009081526068602052604081208054600192906112c89084906122e4565b90915550506001600160a01b03821660009081526068602052604081208054600192906112f69084906122fb565b909155505060008181526067602052604080822080546001600160a01b0319166001600160a01b0386811691821790925591518493918716917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef91a4505050565b6001600160a01b0382166113ad5760405162461bcd60e51b815260206004820181905260248201527f4552433732313a206d696e7420746f20746865207a65726f20616464726573736044820152606401610494565b6000818152606760205260409020546001600160a01b0316156114125760405162461bcd60e51b815260206004820152601c60248201527f4552433732313a20746f6b656e20616c7265616479206d696e746564000000006044820152606401610494565b61141e60008383611828565b6001600160a01b03821660009081526068602052604081208054600192906114479084906122fb565b909155505060008181526067602052604080822080546001600160a01b0319166001600160a01b03861690811790915590518392907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a45050565b60006114b082610921565b90506114be81600084611828565b6114c9600083611067565b6001600160a01b03811660009081526068602052604081208054600192906114f29084906122e4565b909155505060008281526067602052604080822080546001600160a01b0319169055518391906001600160a01b038416907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908390a45050565b80548061159b5760405162461bcd60e51b815260206004820152601b60248201527f436f756e7465723a2064656372656d656e74206f766572666c6f7700000000006044820152606401610494565b600019019055565b609780546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b600054610100900460ff168061160e575060005460ff16155b61162a5760405162461bcd60e51b8152600401610494906121c9565b600054610100900460ff1615801561164c576000805461ffff19166101011790555b6116546118ed565b61165c6118ed565b6116668383611957565b80156104c4576000805461ff0019169055505050565b600054610100900460ff1680611695575060005460ff16155b6116b15760405162461bcd60e51b8152600401610494906121c9565b600054610100900460ff161580156116d3576000805461ffff19166101011790555b6116db6118ed565b6116e36119ec565b80156108d3576000805461ff001916905550565b6117028484846111ac565b61170e84848484611a4c565b610dea5760405162461bcd60e51b815260040161049490612313565b60608161174e5750506040805180820190915260018152600360fc1b602082015290565b8160005b8115611778578061176281612365565b91506117719050600a836121b5565b9150611752565b60008167ffffffffffffffff81111561179357611793611bf2565b6040519080825280601f01601f1916602001820160405280156117bd576020820181803683370190505b5090505b84156111a4576117d26001836122e4565b91506117df600a86612380565b6117ea9060306122fb565b60f81b8183815181106117ff576117ff612394565b60200101906001600160f81b031916908160001a905350611821600a866121b5565b94506117c1565b60cd5460ff16156104c4576040516001600160a01b0384811660248301528316604482015260648101829052600090309060840160408051601f198184030181529181526020820180516001600160e01b031663cad3be8360e01b1790525161189191906123aa565b600060405180830381855af49150503d80600081146118cc576040519150601f19603f3d011682016040523d82523d6000602084013e6118d1565b606091505b5050905080600081146118e357610db1565b3d6000803e3d6000fd5b600054610100900460ff1680611906575060005460ff16155b6119225760405162461bcd60e51b8152600401610494906121c9565b600054610100900460ff161580156116e3576000805461ffff191661010117905580156108d3576000805461ff001916905550565b600054610100900460ff1680611970575060005460ff16155b61198c5760405162461bcd60e51b8152600401610494906121c9565b600054610100900460ff161580156119ae576000805461ffff19166101011790555b82516119c1906065906020860190611b59565b5081516119d5906066906020850190611b59565b5080156104c4576000805461ff0019169055505050565b600054610100900460ff1680611a05575060005460ff16155b611a215760405162461bcd60e51b8152600401610494906121c9565b600054610100900460ff16158015611a43576000805461ffff19166101011790555b6116e3336115a3565b60006001600160a01b0384163b15611b4e57604051630a85bd0160e11b81526001600160a01b0385169063150b7a0290611a909033908990889088906004016123c6565b602060405180830381600087803b158015611aaa57600080fd5b505af1925050508015611ada575060408051601f3d908101601f19168201909252611ad791810190612402565b60015b611b34573d808015611b08576040519150601f19603f3d011682016040523d82523d6000602084013e611b0d565b606091505b508051611b2c5760405162461bcd60e51b815260040161049490612313565b805181602001fd5b6001600160e01b031916630a85bd0160e11b1490506111a4565b506001949350505050565b828054611b65906120de565b90600052602060002090601f016020900481019282611b875760008555611bcd565b82601f10611ba057805160ff1916838001178555611bcd565b82800160010185558215611bcd579182015b82811115611bcd578251825591602001919060010190611bb2565b50611bd9929150611bdd565b5090565b5b80821115611bd95760008155600101611bde565b634e487b7160e01b600052604160045260246000fd5b6040516080810167ffffffffffffffff81118282101715611c2b57611c2b611bf2565b60405290565b600067ffffffffffffffff80841115611c4c57611c4c611bf2565b604051601f8501601f19908116603f01168101908282118183101715611c7457611c74611bf2565b81604052809350858152868686011115611c8d57600080fd5b858560208301376000602087830101525050509392505050565b600082601f830112611cb857600080fd5b61064283833560208501611c31565b60008060408385031215611cda57600080fd5b823567ffffffffffffffff80821115611cf257600080fd5b611cfe86838701611ca7565b93506020850135915080821115611d1457600080fd5b50611d2185828601611ca7565b9150509250929050565b6001600160e01b0319811681146108d357600080fd5b600060208284031215611d5357600080fd5b813561064281611d2b565b60005b83811015611d79578181015183820152602001611d61565b83811115610dea5750506000910152565b60008151808452611da2816020860160208601611d5e565b601f01601f19169290920160200192915050565b6020815260006106426020830184611d8a565b600060208284031215611ddb57600080fd5b5035919050565b80356001600160a01b038116811461101257600080fd5b60008060408385031215611e0c57600080fd5b611e1583611de2565b9150611e2360208401611de2565b90509250929050565b60008060408385031215611e3f57600080fd5b611e4883611de2565b946020939093013593505050565b600080600060608486031215611e6b57600080fd5b611e7484611de2565b9250611e8260208501611de2565b9150604084013590509250925092565b60008060408385031215611ea557600080fd5b50508035926020909101359150565b600060208284031215611ec657600080fd5b61064282611de2565b61ffff85168152608060208201526000611eec6080830186611d8a565b8281036040840152611efe8186611d8a565b915050821515606083015295945050505050565b8035801515811461101257600080fd5b60008060408385031215611f3557600080fd5b611f3e83611de2565b9150611e2360208401611f12565b60008060008060808587031215611f6257600080fd5b611f6b85611de2565b9350602085013567ffffffffffffffff80821115611f8857600080fd5b611f9488838901611ca7565b94506040870135915080821115611faa57600080fd5b611fb688838901611ca7565b93506060870135915080821115611fcc57600080fd5b9086019060808289031215611fe057600080fd5b611fe8611c08565b823561ffff81168114611ffa57600080fd5b815260208301358281111561200e57600080fd5b61201a8a828601611ca7565b60208301525060408301358281111561203257600080fd5b61203e8a828601611ca7565b60408301525061205060608401611f12565b60608201529598949750929550505050565b6000806000806080858703121561207857600080fd5b61208185611de2565b935061208f60208601611de2565b925060408501359150606085013567ffffffffffffffff8111156120b257600080fd5b8501601f810187136120c357600080fd5b6120d287823560208401611c31565b91505092959194509250565b600181811c908216806120f257607f821691505b6020821081141561211357634e487b7160e01b600052602260045260246000fd5b50919050565b60208082526031908201527f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f6040820152701ddb995c881b9bdc88185c1c1c9bdd9959607a1b606082015260800190565b634e487b7160e01b600052601160045260246000fd5b600081600019048311821515161561219a5761219a61216a565b500290565b634e487b7160e01b600052601260045260246000fd5b6000826121c4576121c461219f565b500490565b6020808252602e908201527f496e697469616c697a61626c653a20636f6e747261637420697320616c72656160408201526d191e481a5b9a5d1a585b1a5e995960921b606082015260800190565b8054600090600181811c908083168061223157607f831692505b602080841082141561225357634e487b7160e01b600052602260045260246000fd5b8180156122675760018114612278576122a5565b60ff198616895284890196506122a5565b60008881526020902060005b8681101561229d5781548b820152908501908301612284565b505084890196505b50505050505092915050565b60006122bd8286612217565b84516122cd818360208901611d5e565b6122d981830186612217565b979650505050505050565b6000828210156122f6576122f661216a565b500390565b6000821982111561230e5761230e61216a565b500190565b60208082526032908201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560408201527131b2b4bb32b91034b6b83632b6b2b73a32b960711b606082015260800190565b60006000198214156123795761237961216a565b5060010190565b60008261238f5761238f61219f565b500690565b634e487b7160e01b600052603260045260246000fd5b600082516123bc818460208701611d5e565b9190910192915050565b60006001600160a01b038087168352808616602084015250836040830152608060608301526123f86080830184611d8a565b9695505050505050565b60006020828403121561241457600080fd5b815161064281611d2b56fea264697066735822122039cad36d901e94a8e0ffad83f669dbcc206abf2098e74461a73ddc942ca5ba1964736f6c63430008090033
Loading...
Loading
Loading...
Loading
Multichain Portfolio | 30 Chains
Chain | Token | Portfolio % | Price | Amount | Value |
---|
Loading...
Loading
[ 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.