Overview
ETH Balance
0 ETH
ETH Value
$0.00More Info
Private Name Tags
ContractCreator
Multichain Info
No addresses found
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 Source Code Verified (Exact Match)
Contract Name:
WellID
Compiler Version
v0.8.24+commit.e11b9ed9
Optimization Enabled:
Yes with 200 runs
Other Settings:
paris EvmVersion
Contract Source Code (Solidity Standard Json-Input format)
// SPDX-License-Identifier: MIT pragma solidity ^0.8.20; import {ERC721Upgradeable} from "@openzeppelin/contracts-upgradeable/token/ERC721/ERC721Upgradeable.sol"; import {UUPSUpgradeable} from "@openzeppelin/contracts-upgradeable/proxy/utils/UUPSUpgradeable.sol"; import {OwnableUpgradeable} from "@openzeppelin/contracts-upgradeable/access/OwnableUpgradeable.sol"; import {EnumerableSet} from "@openzeppelin/contracts/utils/structs/EnumerableSet.sol"; import {Math} from "@openzeppelin/contracts/utils/math/Math.sol"; contract WellID is ERC721Upgradeable, OwnableUpgradeable, UUPSUpgradeable { using EnumerableSet for EnumerableSet.UintSet; // ================ UUPS ================ address public upgrader; bool public upgraderRenounced; string public baseTokenURI; // Mapping of names to token IDs mapping(string => uint256) public nameToTokenId; // Mapping of token IDs to names mapping(uint256 => string) public tokenIdToName; // Mapping of addresses to token IDs (to ensure each address can only mint once) mapping(address => uint256) public addressToTokenId; EnumerableSet.UintSet allTokenIds; // Authorized address that can mint NFTs (defaults to owner) address public authorizedMinter; // Counter for token IDs uint256 public rngCounter; bool public transfersAllowed; uint256 public MAX_RENAMES; mapping(uint256 => uint256) public renameCounts; // Event emitted when a new NFT is minted event NewWellID( address indexed owner, uint256 indexed tokenId, string name ); event RenameWellID(uint256 indexed tokenId, string oldName, string newName); // Initialize the contract function initialize() public initializer { ERC721Upgradeable.__ERC721_init("Well ID", "WID"); OwnableUpgradeable.__Ownable_init_unchained(msg.sender); UUPSUpgradeable.__UUPSUpgradeable_init(); authorizedMinter = msg.sender; upgrader = msg.sender; } // Mint a new NFT to a user function mint(address user, string calldata name) public { require( msg.sender == authorizedMinter || msg.sender == owner(), "Only authorized minter can mint" ); require(addressToTokenId[user] == 0, "User already has a Well ID"); require(nameToTokenId[name] == 0, "Name is already used"); uint256 newTokenId = uint256( keccak256(abi.encodePacked("WellID-2", name)) ); _mint(user, newTokenId); nameToTokenId[name] = newTokenId; tokenIdToName[newTokenId] = name; addressToTokenId[user] = newTokenId; allTokenIds.add(newTokenId); emit NewWellID(user, newTokenId, name); } function mintMulti( address[] calldata users, string[] calldata names ) public { require( users.length == names.length, "Users and names arrays must be of the same length" ); for (uint256 i = 0; i < users.length; ) { mint(users[i], names[i]); unchecked { i++; } } } function checkName(string calldata _str) public pure returns (bool) { bytes memory strBytes = bytes(_str); if (strBytes.length < 6 || strBytes.length > 15) { return false; } for (uint256 i = 0; i < strBytes.length; i++) { bytes1 char = strBytes[i]; if ( !(char >= 0x30 && char <= 0x39) && // 0-9 !(char >= 0x61 && char <= 0x7A) && // a-z char != 0x5F ) { // _ return false; } } return true; } // name must fit len=6-15 a-z0-9_ and not include ".well" function userRename(uint256 tokenId, string calldata rawName) external { require(ownerOf(tokenId) == msg.sender, "Not owner of token"); renameCounts[tokenId] += 1; require(renameCounts[tokenId] <= MAX_RENAMES, "No rename quota"); require(checkName(rawName), "Invalid name"); string memory newName = string.concat(rawName, ".well"); require(nameToTokenId[newName] == 0, "Name is already used"); string memory oldName = tokenIdToName[tokenId]; nameToTokenId[oldName] = 0; nameToTokenId[newName] = tokenId; tokenIdToName[tokenId] = newName; emit RenameWellID(tokenId, oldName, newName); } function adminRename( uint256 tokenId, string calldata name, bool force ) public { require( msg.sender == authorizedMinter || msg.sender == owner(), "Only authorized minter can rename" ); if (!force) { require(nameToTokenId[name] == 0, "Name is already used"); } string memory oldName = tokenIdToName[tokenId]; nameToTokenId[oldName] = 0; nameToTokenId[name] = tokenId; tokenIdToName[tokenId] = name; emit RenameWellID(tokenId, oldName, name); } function adminRenameMulti( uint256[] calldata tokenIds, string[] calldata names, bool force ) external { require( tokenIds.length == names.length, "tokenIds and names arrays must be of the same length" ); for (uint256 i = 0; i < tokenIds.length; ) { adminRename(tokenIds[i], names[i], force); unchecked { i++; } } } // Set the authorized minter address function setAuthorizedMinter(address newMinter) public onlyOwner { authorizedMinter = newMinter; } // Set the authorized minter address function setTransferAllowed(bool allowed) public onlyOwner { transfersAllowed = allowed; } // Set the authorized minter address function setMaxRenames(uint256 renames) public onlyOwner { MAX_RENAMES = renames; } function transferFrom( address from, address to, uint256 tokenId ) public override { require(transfersAllowed, "Token transfers are not allowed"); super.transferFrom(from, to, tokenId); } // =============== BASE URI =============== function _baseURI() internal view virtual override returns (string memory) { return baseTokenURI; } function setBaseURI(string calldata baseURI) external onlyOwner { baseTokenURI = baseURI; } // ================ Util ================ function tokenIdsToNamesMultiple( uint256[] calldata tokenIds ) external view returns (string[] memory) { string[] memory part = new string[](tokenIds.length); for (uint256 i = 0; i < tokenIds.length; i++) { part[i] = tokenIdToName[tokenIds[i]]; } return part; } function namesToTokenIdsMultiple( string[] calldata names ) external view returns (uint256[] memory) { uint256[] memory part = new uint256[](names.length); for (uint256 i = 0; i < names.length; i++) { part[i] = nameToTokenId[names[i]]; } return part; } function addressesToTokenIdsMultiple( address[] calldata addresses ) external view returns (uint256[] memory) { uint256[] memory part = new uint256[](addresses.length); for (uint256 i = 0; i < addresses.length; i++) { part[i] = addressToTokenId[addresses[i]]; } return part; } function getAllTokenIdsCount() external view returns (uint256) { return allTokenIds.length(); } function getAllTokenIds( uint256 fromIdx, uint256 toIdx ) external view returns (uint256[] memory) { toIdx = Math.min(toIdx, allTokenIds.length()); uint256[] memory part = new uint256[](toIdx - fromIdx); for (uint256 i = 0; i < toIdx - fromIdx; i++) { part[i] = allTokenIds.at(i + fromIdx); } return part; } // function rngesus() private returns (uint256) { // unchecked { // rngCounter++; // } // return // uint256( // keccak256( // abi.encodePacked( // block.difficulty, // block.timestamp, // rngCounter // ) // ) // ); // } // ================ UUPS ================ modifier onlyUpgrader() { require(_msgSender() == upgrader, "Unauthorized"); _; } // required by the OZ UUPS module function _authorizeUpgrade(address) internal override onlyUpgrader {} /// @dev Set the new UUPS proxy upgrader, allow setting address(0) to disable upgradeability /// @param _upgrader New upgrader function setUpgrader(address _upgrader) external onlyOwner { require(!upgraderRenounced, "UpgraderRenounced"); upgrader = _upgrader; // emit UpgraderUpdated(_upgrader); } // /// @notice Renounce the upgradibility of this contract function renounceUpgrader() external onlyOwner { require(!upgraderRenounced, "UpgraderRenounced"); upgraderRenounced = true; upgrader = address(0); // emit UpgraderUpdated(address(0)); } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v5.0.0) (access/Ownable.sol) pragma solidity ^0.8.20; import {ContextUpgradeable} from "../utils/ContextUpgradeable.sol"; import {Initializable} from "../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. * * The initial owner is set to the address provided by the deployer. 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 { /// @custom:storage-location erc7201:openzeppelin.storage.Ownable struct OwnableStorage { address _owner; } // keccak256(abi.encode(uint256(keccak256("openzeppelin.storage.Ownable")) - 1)) & ~bytes32(uint256(0xff)) bytes32 private constant OwnableStorageLocation = 0x9016d09d72d40fdae2fd8ceac6b6234c7706214fd39c1cd1e609a0528c199300; function _getOwnableStorage() private pure returns (OwnableStorage storage $) { assembly { $.slot := OwnableStorageLocation } } /** * @dev The caller account is not authorized to perform an operation. */ error OwnableUnauthorizedAccount(address account); /** * @dev The owner is not a valid owner account. (eg. `address(0)`) */ error OwnableInvalidOwner(address owner); event OwnershipTransferred(address indexed previousOwner, address indexed newOwner); /** * @dev Initializes the contract setting the address provided by the deployer as the initial owner. */ function __Ownable_init(address initialOwner) internal onlyInitializing { __Ownable_init_unchained(initialOwner); } function __Ownable_init_unchained(address initialOwner) internal onlyInitializing { if (initialOwner == address(0)) { revert OwnableInvalidOwner(address(0)); } _transferOwnership(initialOwner); } /** * @dev Throws if called by any account other than the owner. */ modifier onlyOwner() { _checkOwner(); _; } /** * @dev Returns the address of the current owner. */ function owner() public view virtual returns (address) { OwnableStorage storage $ = _getOwnableStorage(); return $._owner; } /** * @dev Throws if the sender is not the owner. */ function _checkOwner() internal view virtual { if (owner() != _msgSender()) { revert OwnableUnauthorizedAccount(_msgSender()); } } /** * @dev Leaves the contract without owner. It will not be possible to call * `onlyOwner` functions. Can only be called by the current owner. * * NOTE: Renouncing ownership will leave the contract without an owner, * thereby disabling 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 { if (newOwner == address(0)) { revert OwnableInvalidOwner(address(0)); } _transferOwnership(newOwner); } /** * @dev Transfers ownership of the contract to a new account (`newOwner`). * Internal function without access restriction. */ function _transferOwnership(address newOwner) internal virtual { OwnableStorage storage $ = _getOwnableStorage(); address oldOwner = $._owner; $._owner = newOwner; emit OwnershipTransferred(oldOwner, newOwner); } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v5.0.0) (proxy/utils/Initializable.sol) pragma solidity ^0.8.20; /** * @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 proxied contracts do not make use of 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. * * The initialization functions use a version number. Once a version number is used, it is consumed and cannot be * reused. This mechanism prevents re-execution of each "step" but allows the creation of new initialization steps in * case an upgrade adds a module that needs to be initialized. * * For example: * * [.hljs-theme-light.nopadding] * ```solidity * contract MyToken is ERC20Upgradeable { * function initialize() initializer public { * __ERC20_init("MyToken", "MTK"); * } * } * * contract MyTokenV2 is MyToken, ERC20PermitUpgradeable { * function initializeV2() reinitializer(2) public { * __ERC20Permit_init("MyToken"); * } * } * ``` * * 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. * * [CAUTION] * ==== * Avoid leaving a contract uninitialized. * * An uninitialized contract can be taken over by an attacker. This applies to both a proxy and its implementation * contract, which may impact the proxy. To prevent the implementation contract from being used, you should invoke * the {_disableInitializers} function in the constructor to automatically lock it when it is deployed: * * [.hljs-theme-light.nopadding] * ``` * /// @custom:oz-upgrades-unsafe-allow constructor * constructor() { * _disableInitializers(); * } * ``` * ==== */ abstract contract Initializable { /** * @dev Storage of the initializable contract. * * It's implemented on a custom ERC-7201 namespace to reduce the risk of storage collisions * when using with upgradeable contracts. * * @custom:storage-location erc7201:openzeppelin.storage.Initializable */ struct InitializableStorage { /** * @dev Indicates that the contract has been initialized. */ uint64 _initialized; /** * @dev Indicates that the contract is in the process of being initialized. */ bool _initializing; } // keccak256(abi.encode(uint256(keccak256("openzeppelin.storage.Initializable")) - 1)) & ~bytes32(uint256(0xff)) bytes32 private constant INITIALIZABLE_STORAGE = 0xf0c57e16840df040f15088dc2f81fe391c3923bec73e23a9662efc9c229c6a00; /** * @dev The contract is already initialized. */ error InvalidInitialization(); /** * @dev The contract is not initializing. */ error NotInitializing(); /** * @dev Triggered when the contract has been initialized or reinitialized. */ event Initialized(uint64 version); /** * @dev A modifier that defines a protected initializer function that can be invoked at most once. In its scope, * `onlyInitializing` functions can be used to initialize parent contracts. * * Similar to `reinitializer(1)`, except that in the context of a constructor an `initializer` may be invoked any * number of times. This behavior in the constructor can be useful during testing and is not expected to be used in * production. * * Emits an {Initialized} event. */ modifier initializer() { // solhint-disable-next-line var-name-mixedcase InitializableStorage storage $ = _getInitializableStorage(); // Cache values to avoid duplicated sloads bool isTopLevelCall = !$._initializing; uint64 initialized = $._initialized; // Allowed calls: // - initialSetup: the contract is not in the initializing state and no previous version was // initialized // - construction: the contract is initialized at version 1 (no reininitialization) and the // current contract is just being deployed bool initialSetup = initialized == 0 && isTopLevelCall; bool construction = initialized == 1 && address(this).code.length == 0; if (!initialSetup && !construction) { revert InvalidInitialization(); } $._initialized = 1; if (isTopLevelCall) { $._initializing = true; } _; if (isTopLevelCall) { $._initializing = false; emit Initialized(1); } } /** * @dev A modifier that defines a protected reinitializer function that can be invoked at most once, and only if the * contract hasn't been initialized to a greater version before. In its scope, `onlyInitializing` functions can be * used to initialize parent contracts. * * A reinitializer may be used after the original initialization step. This is essential to configure modules that * are added through upgrades and that require initialization. * * When `version` is 1, this modifier is similar to `initializer`, except that functions marked with `reinitializer` * cannot be nested. If one is invoked in the context of another, execution will revert. * * Note that versions can jump in increments greater than 1; this implies that if multiple reinitializers coexist in * a contract, executing them in the right order is up to the developer or operator. * * WARNING: Setting the version to 2**64 - 1 will prevent any future reinitialization. * * Emits an {Initialized} event. */ modifier reinitializer(uint64 version) { // solhint-disable-next-line var-name-mixedcase InitializableStorage storage $ = _getInitializableStorage(); if ($._initializing || $._initialized >= version) { revert InvalidInitialization(); } $._initialized = version; $._initializing = true; _; $._initializing = false; emit Initialized(version); } /** * @dev Modifier to protect an initialization function so that it can only be invoked by functions with the * {initializer} and {reinitializer} modifiers, directly or indirectly. */ modifier onlyInitializing() { _checkInitializing(); _; } /** * @dev Reverts if the contract is not in an initializing state. See {onlyInitializing}. */ function _checkInitializing() internal view virtual { if (!_isInitializing()) { revert NotInitializing(); } } /** * @dev Locks the contract, preventing any future reinitialization. This cannot be part of an initializer call. * Calling this in the constructor of a contract will prevent that contract from being initialized or reinitialized * to any version. It is recommended to use this to lock implementation contracts that are designed to be called * through proxies. * * Emits an {Initialized} event the first time it is successfully executed. */ function _disableInitializers() internal virtual { // solhint-disable-next-line var-name-mixedcase InitializableStorage storage $ = _getInitializableStorage(); if ($._initializing) { revert InvalidInitialization(); } if ($._initialized != type(uint64).max) { $._initialized = type(uint64).max; emit Initialized(type(uint64).max); } } /** * @dev Returns the highest version that has been initialized. See {reinitializer}. */ function _getInitializedVersion() internal view returns (uint64) { return _getInitializableStorage()._initialized; } /** * @dev Returns `true` if the contract is currently initializing. See {onlyInitializing}. */ function _isInitializing() internal view returns (bool) { return _getInitializableStorage()._initializing; } /** * @dev Returns a pointer to the storage namespace. */ // solhint-disable-next-line var-name-mixedcase function _getInitializableStorage() private pure returns (InitializableStorage storage $) { assembly { $.slot := INITIALIZABLE_STORAGE } } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v5.0.0) (proxy/utils/UUPSUpgradeable.sol) pragma solidity ^0.8.20; import {IERC1822Proxiable} from "@openzeppelin/contracts/interfaces/draft-IERC1822.sol"; import {ERC1967Utils} from "@openzeppelin/contracts/proxy/ERC1967/ERC1967Utils.sol"; import {Initializable} from "./Initializable.sol"; /** * @dev An upgradeability mechanism designed for UUPS proxies. The functions included here can perform an upgrade of an * {ERC1967Proxy}, when this contract is set as the implementation behind such a proxy. * * A security mechanism ensures that an upgrade does not turn off upgradeability accidentally, although this risk is * reinstated if the upgrade retains upgradeability but removes the security mechanism, e.g. by replacing * `UUPSUpgradeable` with a custom implementation of upgrades. * * The {_authorizeUpgrade} function must be overridden to include access restriction to the upgrade mechanism. */ abstract contract UUPSUpgradeable is Initializable, IERC1822Proxiable { /// @custom:oz-upgrades-unsafe-allow state-variable-immutable address private immutable __self = address(this); /** * @dev The version of the upgrade interface of the contract. If this getter is missing, both `upgradeTo(address)` * and `upgradeToAndCall(address,bytes)` are present, and `upgradeTo` must be used if no function should be called, * while `upgradeToAndCall` will invoke the `receive` function if the second argument is the empty byte string. * If the getter returns `"5.0.0"`, only `upgradeToAndCall(address,bytes)` is present, and the second argument must * be the empty byte string if no function should be called, making it impossible to invoke the `receive` function * during an upgrade. */ string public constant UPGRADE_INTERFACE_VERSION = "5.0.0"; /** * @dev The call is from an unauthorized context. */ error UUPSUnauthorizedCallContext(); /** * @dev The storage `slot` is unsupported as a UUID. */ error UUPSUnsupportedProxiableUUID(bytes32 slot); /** * @dev Check that the execution is being performed through a delegatecall call and that the execution context is * a proxy contract with an implementation (as defined in ERC1967) pointing to self. This should only be the case * for UUPS and transparent proxies that are using the current contract as their implementation. Execution of a * function through ERC1167 minimal proxies (clones) would not normally pass this test, but is not guaranteed to * fail. */ modifier onlyProxy() { _checkProxy(); _; } /** * @dev Check that the execution is not being performed through a delegate call. This allows a function to be * callable on the implementing contract but not through proxies. */ modifier notDelegated() { _checkNotDelegated(); _; } function __UUPSUpgradeable_init() internal onlyInitializing { } function __UUPSUpgradeable_init_unchained() internal onlyInitializing { } /** * @dev Implementation of the ERC1822 {proxiableUUID} function. This returns the storage slot used by the * implementation. It is used to validate the implementation's compatibility when performing an upgrade. * * IMPORTANT: A proxy pointing at a proxiable contract should not be considered proxiable itself, because this risks * bricking a proxy that upgrades to it, by delegating to itself until out of gas. Thus it is critical that this * function revert if invoked through a proxy. This is guaranteed by the `notDelegated` modifier. */ function proxiableUUID() external view virtual notDelegated returns (bytes32) { return ERC1967Utils.IMPLEMENTATION_SLOT; } /** * @dev Upgrade the implementation of the proxy to `newImplementation`, and subsequently execute the function call * encoded in `data`. * * Calls {_authorizeUpgrade}. * * Emits an {Upgraded} event. * * @custom:oz-upgrades-unsafe-allow-reachable delegatecall */ function upgradeToAndCall(address newImplementation, bytes memory data) public payable virtual onlyProxy { _authorizeUpgrade(newImplementation); _upgradeToAndCallUUPS(newImplementation, data); } /** * @dev Reverts if the execution is not performed via delegatecall or the execution * context is not of a proxy with an ERC1967-compliant implementation pointing to self. * See {_onlyProxy}. */ function _checkProxy() internal view virtual { if ( address(this) == __self || // Must be called through delegatecall ERC1967Utils.getImplementation() != __self // Must be called through an active proxy ) { revert UUPSUnauthorizedCallContext(); } } /** * @dev Reverts if the execution is performed via delegatecall. * See {notDelegated}. */ function _checkNotDelegated() internal view virtual { if (address(this) != __self) { // Must not be called through delegatecall revert UUPSUnauthorizedCallContext(); } } /** * @dev Function that should revert when `msg.sender` is not authorized to upgrade the contract. Called by * {upgradeToAndCall}. * * Normally, this function will use an xref:access.adoc[access control] modifier such as {Ownable-onlyOwner}. * * ```solidity * function _authorizeUpgrade(address) internal onlyOwner {} * ``` */ function _authorizeUpgrade(address newImplementation) internal virtual; /** * @dev Performs an implementation upgrade with a security check for UUPS proxies, and additional setup call. * * As a security check, {proxiableUUID} is invoked in the new implementation, and the return value * is expected to be the implementation slot in ERC1967. * * Emits an {IERC1967-Upgraded} event. */ function _upgradeToAndCallUUPS(address newImplementation, bytes memory data) private { try IERC1822Proxiable(newImplementation).proxiableUUID() returns (bytes32 slot) { if (slot != ERC1967Utils.IMPLEMENTATION_SLOT) { revert UUPSUnsupportedProxiableUUID(slot); } ERC1967Utils.upgradeToAndCall(newImplementation, data); } catch { // The implementation is not UUPS revert ERC1967Utils.ERC1967InvalidImplementation(newImplementation); } } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v5.0.0) (token/ERC721/ERC721.sol) pragma solidity ^0.8.20; import {IERC721} from "@openzeppelin/contracts/token/ERC721/IERC721.sol"; import {IERC721Receiver} from "@openzeppelin/contracts/token/ERC721/IERC721Receiver.sol"; import {IERC721Metadata} from "@openzeppelin/contracts/token/ERC721/extensions/IERC721Metadata.sol"; import {ContextUpgradeable} from "../../utils/ContextUpgradeable.sol"; import {Strings} from "@openzeppelin/contracts/utils/Strings.sol"; import {IERC165} from "@openzeppelin/contracts/utils/introspection/IERC165.sol"; import {ERC165Upgradeable} from "../../utils/introspection/ERC165Upgradeable.sol"; import {IERC721Errors} from "@openzeppelin/contracts/interfaces/draft-IERC6093.sol"; import {Initializable} from "../../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}. */ abstract contract ERC721Upgradeable is Initializable, ContextUpgradeable, ERC165Upgradeable, IERC721, IERC721Metadata, IERC721Errors { using Strings for uint256; /// @custom:storage-location erc7201:openzeppelin.storage.ERC721 struct ERC721Storage { // Token name string _name; // Token symbol string _symbol; mapping(uint256 tokenId => address) _owners; mapping(address owner => uint256) _balances; mapping(uint256 tokenId => address) _tokenApprovals; mapping(address owner => mapping(address operator => bool)) _operatorApprovals; } // keccak256(abi.encode(uint256(keccak256("openzeppelin.storage.ERC721")) - 1)) & ~bytes32(uint256(0xff)) bytes32 private constant ERC721StorageLocation = 0x80bb2b638cc20bc4d0a60d66940f3ab4a00c1d7b313497ca82fb0b4ab0079300; function _getERC721Storage() private pure returns (ERC721Storage storage $) { assembly { $.slot := ERC721StorageLocation } } /** * @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 onlyInitializing { __ERC721_init_unchained(name_, symbol_); } function __ERC721_init_unchained(string memory name_, string memory symbol_) internal onlyInitializing { ERC721Storage storage $ = _getERC721Storage(); $._name = name_; $._symbol = symbol_; } /** * @dev See {IERC165-supportsInterface}. */ function supportsInterface(bytes4 interfaceId) public view virtual override(ERC165Upgradeable, 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 returns (uint256) { ERC721Storage storage $ = _getERC721Storage(); if (owner == address(0)) { revert ERC721InvalidOwner(address(0)); } return $._balances[owner]; } /** * @dev See {IERC721-ownerOf}. */ function ownerOf(uint256 tokenId) public view virtual returns (address) { return _requireOwned(tokenId); } /** * @dev See {IERC721Metadata-name}. */ function name() public view virtual returns (string memory) { ERC721Storage storage $ = _getERC721Storage(); return $._name; } /** * @dev See {IERC721Metadata-symbol}. */ function symbol() public view virtual returns (string memory) { ERC721Storage storage $ = _getERC721Storage(); return $._symbol; } /** * @dev See {IERC721Metadata-tokenURI}. */ function tokenURI(uint256 tokenId) public view virtual returns (string memory) { _requireOwned(tokenId); string memory baseURI = _baseURI(); return bytes(baseURI).length > 0 ? string.concat(baseURI, tokenId.toString()) : ""; } /** * @dev Base URI for computing {tokenURI}. If set, the resulting URI for each * token will be the concatenation of the `baseURI` and the `tokenId`. Empty * by default, can be overridden in child contracts. */ function _baseURI() internal view virtual returns (string memory) { return ""; } /** * @dev See {IERC721-approve}. */ function approve(address to, uint256 tokenId) public virtual { _approve(to, tokenId, _msgSender()); } /** * @dev See {IERC721-getApproved}. */ function getApproved(uint256 tokenId) public view virtual returns (address) { _requireOwned(tokenId); return _getApproved(tokenId); } /** * @dev See {IERC721-setApprovalForAll}. */ function setApprovalForAll(address operator, bool approved) public virtual { _setApprovalForAll(_msgSender(), operator, approved); } /** * @dev See {IERC721-isApprovedForAll}. */ function isApprovedForAll(address owner, address operator) public view virtual returns (bool) { ERC721Storage storage $ = _getERC721Storage(); return $._operatorApprovals[owner][operator]; } /** * @dev See {IERC721-transferFrom}. */ function transferFrom(address from, address to, uint256 tokenId) public virtual { if (to == address(0)) { revert ERC721InvalidReceiver(address(0)); } // Setting an "auth" arguments enables the `_isAuthorized` check which verifies that the token exists // (from != 0). Therefore, it is not needed to verify that the return value is not 0 here. address previousOwner = _update(to, tokenId, _msgSender()); if (previousOwner != from) { revert ERC721IncorrectOwner(from, tokenId, previousOwner); } } /** * @dev See {IERC721-safeTransferFrom}. */ function safeTransferFrom(address from, address to, uint256 tokenId) public { safeTransferFrom(from, to, tokenId, ""); } /** * @dev See {IERC721-safeTransferFrom}. */ function safeTransferFrom(address from, address to, uint256 tokenId, bytes memory data) public virtual { transferFrom(from, to, tokenId); _checkOnERC721Received(from, to, tokenId, data); } /** * @dev Returns the owner of the `tokenId`. Does NOT revert if token doesn't exist * * IMPORTANT: Any overrides to this function that add ownership of tokens not tracked by the * core ERC721 logic MUST be matched with the use of {_increaseBalance} to keep balances * consistent with ownership. The invariant to preserve is that for any address `a` the value returned by * `balanceOf(a)` must be equal to the number of tokens such that `_ownerOf(tokenId)` is `a`. */ function _ownerOf(uint256 tokenId) internal view virtual returns (address) { ERC721Storage storage $ = _getERC721Storage(); return $._owners[tokenId]; } /** * @dev Returns the approved address for `tokenId`. Returns 0 if `tokenId` is not minted. */ function _getApproved(uint256 tokenId) internal view virtual returns (address) { ERC721Storage storage $ = _getERC721Storage(); return $._tokenApprovals[tokenId]; } /** * @dev Returns whether `spender` is allowed to manage `owner`'s tokens, or `tokenId` in * particular (ignoring whether it is owned by `owner`). * * WARNING: This function assumes that `owner` is the actual owner of `tokenId` and does not verify this * assumption. */ function _isAuthorized(address owner, address spender, uint256 tokenId) internal view virtual returns (bool) { return spender != address(0) && (owner == spender || isApprovedForAll(owner, spender) || _getApproved(tokenId) == spender); } /** * @dev Checks if `spender` can operate on `tokenId`, assuming the provided `owner` is the actual owner. * Reverts if `spender` does not have approval from the provided `owner` for the given token or for all its assets * the `spender` for the specific `tokenId`. * * WARNING: This function assumes that `owner` is the actual owner of `tokenId` and does not verify this * assumption. */ function _checkAuthorized(address owner, address spender, uint256 tokenId) internal view virtual { if (!_isAuthorized(owner, spender, tokenId)) { if (owner == address(0)) { revert ERC721NonexistentToken(tokenId); } else { revert ERC721InsufficientApproval(spender, tokenId); } } } /** * @dev Unsafe write access to the balances, used by extensions that "mint" tokens using an {ownerOf} override. * * NOTE: the value is limited to type(uint128).max. This protect against _balance overflow. It is unrealistic that * a uint256 would ever overflow from increments when these increments are bounded to uint128 values. * * WARNING: Increasing an account's balance using this function tends to be paired with an override of the * {_ownerOf} function to resolve the ownership of the corresponding tokens so that balances and ownership * remain consistent with one another. */ function _increaseBalance(address account, uint128 value) internal virtual { ERC721Storage storage $ = _getERC721Storage(); unchecked { $._balances[account] += value; } } /** * @dev Transfers `tokenId` from its current owner to `to`, or alternatively mints (or burns) if the current owner * (or `to`) is the zero address. Returns the owner of the `tokenId` before the update. * * The `auth` argument is optional. If the value passed is non 0, then this function will check that * `auth` is either the owner of the token, or approved to operate on the token (by the owner). * * Emits a {Transfer} event. * * NOTE: If overriding this function in a way that tracks balances, see also {_increaseBalance}. */ function _update(address to, uint256 tokenId, address auth) internal virtual returns (address) { ERC721Storage storage $ = _getERC721Storage(); address from = _ownerOf(tokenId); // Perform (optional) operator check if (auth != address(0)) { _checkAuthorized(from, auth, tokenId); } // Execute the update if (from != address(0)) { // Clear approval. No need to re-authorize or emit the Approval event _approve(address(0), tokenId, address(0), false); unchecked { $._balances[from] -= 1; } } if (to != address(0)) { unchecked { $._balances[to] += 1; } } $._owners[tokenId] = to; emit Transfer(from, to, tokenId); return from; } /** * @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 { if (to == address(0)) { revert ERC721InvalidReceiver(address(0)); } address previousOwner = _update(to, tokenId, address(0)); if (previousOwner != address(0)) { revert ERC721InvalidSender(address(0)); } } /** * @dev Mints `tokenId`, transfers it to `to` and checks for `to` acceptance. * * 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 { _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); _checkOnERC721Received(address(0), to, tokenId, data); } /** * @dev Destroys `tokenId`. * The approval is cleared when the token is burned. * This is an internal function that does not check if the sender is authorized to operate on the token. * * Requirements: * * - `tokenId` must exist. * * Emits a {Transfer} event. */ function _burn(uint256 tokenId) internal { address previousOwner = _update(address(0), tokenId, address(0)); if (previousOwner == address(0)) { revert ERC721NonexistentToken(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 { if (to == address(0)) { revert ERC721InvalidReceiver(address(0)); } address previousOwner = _update(to, tokenId, address(0)); if (previousOwner == address(0)) { revert ERC721NonexistentToken(tokenId); } else if (previousOwner != from) { revert ERC721IncorrectOwner(from, tokenId, previousOwner); } } /** * @dev Safely transfers `tokenId` token from `from` to `to`, checking that contract recipients * are aware of the ERC721 standard 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 like {safeTransferFrom} in the sense that it invokes * {IERC721Receiver-onERC721Received} on the receiver, and can be used to e.g. * implement alternative mechanisms to perform token transfer, such as signature-based. * * Requirements: * * - `tokenId` token must exist and be owned by `from`. * - `to` cannot be the zero address. * - `from` cannot be the zero address. * - 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) internal { _safeTransfer(from, to, tokenId, ""); } /** * @dev Same as {xref-ERC721-_safeTransfer-address-address-uint256-}[`_safeTransfer`], with an additional `data` parameter which is * forwarded in {IERC721Receiver-onERC721Received} to contract recipients. */ function _safeTransfer(address from, address to, uint256 tokenId, bytes memory data) internal virtual { _transfer(from, to, tokenId); _checkOnERC721Received(from, to, tokenId, data); } /** * @dev Approve `to` to operate on `tokenId` * * The `auth` argument is optional. If the value passed is non 0, then this function will check that `auth` is * either the owner of the token, or approved to operate on all tokens held by this owner. * * Emits an {Approval} event. * * Overrides to this logic should be done to the variant with an additional `bool emitEvent` argument. */ function _approve(address to, uint256 tokenId, address auth) internal { _approve(to, tokenId, auth, true); } /** * @dev Variant of `_approve` with an optional flag to enable or disable the {Approval} event. The event is not * emitted in the context of transfers. */ function _approve(address to, uint256 tokenId, address auth, bool emitEvent) internal virtual { ERC721Storage storage $ = _getERC721Storage(); // Avoid reading the owner unless necessary if (emitEvent || auth != address(0)) { address owner = _requireOwned(tokenId); // We do not use _isAuthorized because single-token approvals should not be able to call approve if (auth != address(0) && owner != auth && !isApprovedForAll(owner, auth)) { revert ERC721InvalidApprover(auth); } if (emitEvent) { emit Approval(owner, to, tokenId); } } $._tokenApprovals[tokenId] = to; } /** * @dev Approve `operator` to operate on all of `owner` tokens * * Requirements: * - operator can't be the address zero. * * Emits an {ApprovalForAll} event. */ function _setApprovalForAll(address owner, address operator, bool approved) internal virtual { ERC721Storage storage $ = _getERC721Storage(); if (operator == address(0)) { revert ERC721InvalidOperator(operator); } $._operatorApprovals[owner][operator] = approved; emit ApprovalForAll(owner, operator, approved); } /** * @dev Reverts if the `tokenId` doesn't have a current owner (it hasn't been minted, or it has been burned). * Returns the owner. * * Overrides to ownership logic should be done to {_ownerOf}. */ function _requireOwned(uint256 tokenId) internal view returns (address) { address owner = _ownerOf(tokenId); if (owner == address(0)) { revert ERC721NonexistentToken(tokenId); } return owner; } /** * @dev Private function to invoke {IERC721Receiver-onERC721Received} on a target address. This will revert if the * recipient doesn't accept the token transfer. 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 */ function _checkOnERC721Received(address from, address to, uint256 tokenId, bytes memory data) private { if (to.code.length > 0) { try IERC721Receiver(to).onERC721Received(_msgSender(), from, tokenId, data) returns (bytes4 retval) { if (retval != IERC721Receiver.onERC721Received.selector) { revert ERC721InvalidReceiver(to); } } catch (bytes memory reason) { if (reason.length == 0) { revert ERC721InvalidReceiver(to); } else { /// @solidity memory-safe-assembly assembly { revert(add(32, reason), mload(reason)) } } } } } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v5.0.1) (utils/Context.sol) pragma solidity ^0.8.20; import {Initializable} from "../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 onlyInitializing { } function __Context_init_unchained() internal onlyInitializing { } function _msgSender() internal view virtual returns (address) { return msg.sender; } function _msgData() internal view virtual returns (bytes calldata) { return msg.data; } function _contextSuffixLength() internal view virtual returns (uint256) { return 0; } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v5.0.0) (utils/introspection/ERC165.sol) pragma solidity ^0.8.20; import {IERC165} from "@openzeppelin/contracts/utils/introspection/IERC165.sol"; import {Initializable} from "../../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); * } * ``` */ abstract contract ERC165Upgradeable is Initializable, IERC165 { function __ERC165_init() internal onlyInitializing { } function __ERC165_init_unchained() internal onlyInitializing { } /** * @dev See {IERC165-supportsInterface}. */ function supportsInterface(bytes4 interfaceId) public view virtual returns (bool) { return interfaceId == type(IERC165).interfaceId; } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v5.0.0) (interfaces/draft-IERC1822.sol) pragma solidity ^0.8.20; /** * @dev ERC1822: Universal Upgradeable Proxy Standard (UUPS) documents a method for upgradeability through a simplified * proxy whose upgrades are fully controlled by the current implementation. */ interface IERC1822Proxiable { /** * @dev Returns the storage slot that the proxiable contract assumes is being used to store the implementation * address. * * IMPORTANT: A proxy pointing at a proxiable contract should not be considered proxiable itself, because this risks * bricking a proxy that upgrades to it, by delegating to itself until out of gas. Thus it is critical that this * function revert if invoked through a proxy. */ function proxiableUUID() external view returns (bytes32); }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v5.0.0) (interfaces/draft-IERC6093.sol) pragma solidity ^0.8.20; /** * @dev Standard ERC20 Errors * Interface of the https://eips.ethereum.org/EIPS/eip-6093[ERC-6093] custom errors for ERC20 tokens. */ interface IERC20Errors { /** * @dev Indicates an error related to the current `balance` of a `sender`. Used in transfers. * @param sender Address whose tokens are being transferred. * @param balance Current balance for the interacting account. * @param needed Minimum amount required to perform a transfer. */ error ERC20InsufficientBalance(address sender, uint256 balance, uint256 needed); /** * @dev Indicates a failure with the token `sender`. Used in transfers. * @param sender Address whose tokens are being transferred. */ error ERC20InvalidSender(address sender); /** * @dev Indicates a failure with the token `receiver`. Used in transfers. * @param receiver Address to which tokens are being transferred. */ error ERC20InvalidReceiver(address receiver); /** * @dev Indicates a failure with the `spender`’s `allowance`. Used in transfers. * @param spender Address that may be allowed to operate on tokens without being their owner. * @param allowance Amount of tokens a `spender` is allowed to operate with. * @param needed Minimum amount required to perform a transfer. */ error ERC20InsufficientAllowance(address spender, uint256 allowance, uint256 needed); /** * @dev Indicates a failure with the `approver` of a token to be approved. Used in approvals. * @param approver Address initiating an approval operation. */ error ERC20InvalidApprover(address approver); /** * @dev Indicates a failure with the `spender` to be approved. Used in approvals. * @param spender Address that may be allowed to operate on tokens without being their owner. */ error ERC20InvalidSpender(address spender); } /** * @dev Standard ERC721 Errors * Interface of the https://eips.ethereum.org/EIPS/eip-6093[ERC-6093] custom errors for ERC721 tokens. */ interface IERC721Errors { /** * @dev Indicates that an address can't be an owner. For example, `address(0)` is a forbidden owner in EIP-20. * Used in balance queries. * @param owner Address of the current owner of a token. */ error ERC721InvalidOwner(address owner); /** * @dev Indicates a `tokenId` whose `owner` is the zero address. * @param tokenId Identifier number of a token. */ error ERC721NonexistentToken(uint256 tokenId); /** * @dev Indicates an error related to the ownership over a particular token. Used in transfers. * @param sender Address whose tokens are being transferred. * @param tokenId Identifier number of a token. * @param owner Address of the current owner of a token. */ error ERC721IncorrectOwner(address sender, uint256 tokenId, address owner); /** * @dev Indicates a failure with the token `sender`. Used in transfers. * @param sender Address whose tokens are being transferred. */ error ERC721InvalidSender(address sender); /** * @dev Indicates a failure with the token `receiver`. Used in transfers. * @param receiver Address to which tokens are being transferred. */ error ERC721InvalidReceiver(address receiver); /** * @dev Indicates a failure with the `operator`’s approval. Used in transfers. * @param operator Address that may be allowed to operate on tokens without being their owner. * @param tokenId Identifier number of a token. */ error ERC721InsufficientApproval(address operator, uint256 tokenId); /** * @dev Indicates a failure with the `approver` of a token to be approved. Used in approvals. * @param approver Address initiating an approval operation. */ error ERC721InvalidApprover(address approver); /** * @dev Indicates a failure with the `operator` to be approved. Used in approvals. * @param operator Address that may be allowed to operate on tokens without being their owner. */ error ERC721InvalidOperator(address operator); } /** * @dev Standard ERC1155 Errors * Interface of the https://eips.ethereum.org/EIPS/eip-6093[ERC-6093] custom errors for ERC1155 tokens. */ interface IERC1155Errors { /** * @dev Indicates an error related to the current `balance` of a `sender`. Used in transfers. * @param sender Address whose tokens are being transferred. * @param balance Current balance for the interacting account. * @param needed Minimum amount required to perform a transfer. * @param tokenId Identifier number of a token. */ error ERC1155InsufficientBalance(address sender, uint256 balance, uint256 needed, uint256 tokenId); /** * @dev Indicates a failure with the token `sender`. Used in transfers. * @param sender Address whose tokens are being transferred. */ error ERC1155InvalidSender(address sender); /** * @dev Indicates a failure with the token `receiver`. Used in transfers. * @param receiver Address to which tokens are being transferred. */ error ERC1155InvalidReceiver(address receiver); /** * @dev Indicates a failure with the `operator`’s approval. Used in transfers. * @param operator Address that may be allowed to operate on tokens without being their owner. * @param owner Address of the current owner of a token. */ error ERC1155MissingApprovalForAll(address operator, address owner); /** * @dev Indicates a failure with the `approver` of a token to be approved. Used in approvals. * @param approver Address initiating an approval operation. */ error ERC1155InvalidApprover(address approver); /** * @dev Indicates a failure with the `operator` to be approved. Used in approvals. * @param operator Address that may be allowed to operate on tokens without being their owner. */ error ERC1155InvalidOperator(address operator); /** * @dev Indicates an array length mismatch between ids and values in a safeBatchTransferFrom operation. * Used in batch transfers. * @param idsLength Length of the array of token identifiers * @param valuesLength Length of the array of token amounts */ error ERC1155InvalidArrayLength(uint256 idsLength, uint256 valuesLength); }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v5.0.0) (proxy/beacon/IBeacon.sol) pragma solidity ^0.8.20; /** * @dev This is the interface that {BeaconProxy} expects of its beacon. */ interface IBeacon { /** * @dev Must return an address that can be used as a delegate call target. * * {UpgradeableBeacon} will check that this address is a contract. */ function implementation() external view returns (address); }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v5.0.0) (proxy/ERC1967/ERC1967Utils.sol) pragma solidity ^0.8.20; import {IBeacon} from "../beacon/IBeacon.sol"; import {Address} from "../../utils/Address.sol"; import {StorageSlot} from "../../utils/StorageSlot.sol"; /** * @dev This abstract contract provides getters and event emitting update functions for * https://eips.ethereum.org/EIPS/eip-1967[EIP1967] slots. */ library ERC1967Utils { // We re-declare ERC-1967 events here because they can't be used directly from IERC1967. // This will be fixed in Solidity 0.8.21. At that point we should remove these events. /** * @dev Emitted when the implementation is upgraded. */ event Upgraded(address indexed implementation); /** * @dev Emitted when the admin account has changed. */ event AdminChanged(address previousAdmin, address newAdmin); /** * @dev Emitted when the beacon is changed. */ event BeaconUpgraded(address indexed beacon); /** * @dev Storage slot with the address of the current implementation. * This is the keccak-256 hash of "eip1967.proxy.implementation" subtracted by 1. */ // solhint-disable-next-line private-vars-leading-underscore bytes32 internal constant IMPLEMENTATION_SLOT = 0x360894a13ba1a3210667c828492db98dca3e2076cc3735a920a3ca505d382bbc; /** * @dev The `implementation` of the proxy is invalid. */ error ERC1967InvalidImplementation(address implementation); /** * @dev The `admin` of the proxy is invalid. */ error ERC1967InvalidAdmin(address admin); /** * @dev The `beacon` of the proxy is invalid. */ error ERC1967InvalidBeacon(address beacon); /** * @dev An upgrade function sees `msg.value > 0` that may be lost. */ error ERC1967NonPayable(); /** * @dev Returns the current implementation address. */ function getImplementation() internal view returns (address) { return StorageSlot.getAddressSlot(IMPLEMENTATION_SLOT).value; } /** * @dev Stores a new address in the EIP1967 implementation slot. */ function _setImplementation(address newImplementation) private { if (newImplementation.code.length == 0) { revert ERC1967InvalidImplementation(newImplementation); } StorageSlot.getAddressSlot(IMPLEMENTATION_SLOT).value = newImplementation; } /** * @dev Performs implementation upgrade with additional setup call if data is nonempty. * This function is payable only if the setup call is performed, otherwise `msg.value` is rejected * to avoid stuck value in the contract. * * Emits an {IERC1967-Upgraded} event. */ function upgradeToAndCall(address newImplementation, bytes memory data) internal { _setImplementation(newImplementation); emit Upgraded(newImplementation); if (data.length > 0) { Address.functionDelegateCall(newImplementation, data); } else { _checkNonPayable(); } } /** * @dev Storage slot with the admin of the contract. * This is the keccak-256 hash of "eip1967.proxy.admin" subtracted by 1. */ // solhint-disable-next-line private-vars-leading-underscore bytes32 internal constant ADMIN_SLOT = 0xb53127684a568b3173ae13b9f8a6016e243e63b6e8ee1178d6a717850b5d6103; /** * @dev Returns the current admin. * * TIP: To get this value clients can read directly from the storage slot shown below (specified by EIP1967) using * the https://eth.wiki/json-rpc/API#eth_getstorageat[`eth_getStorageAt`] RPC call. * `0xb53127684a568b3173ae13b9f8a6016e243e63b6e8ee1178d6a717850b5d6103` */ function getAdmin() internal view returns (address) { return StorageSlot.getAddressSlot(ADMIN_SLOT).value; } /** * @dev Stores a new address in the EIP1967 admin slot. */ function _setAdmin(address newAdmin) private { if (newAdmin == address(0)) { revert ERC1967InvalidAdmin(address(0)); } StorageSlot.getAddressSlot(ADMIN_SLOT).value = newAdmin; } /** * @dev Changes the admin of the proxy. * * Emits an {IERC1967-AdminChanged} event. */ function changeAdmin(address newAdmin) internal { emit AdminChanged(getAdmin(), newAdmin); _setAdmin(newAdmin); } /** * @dev The storage slot of the UpgradeableBeacon contract which defines the implementation for this proxy. * This is the keccak-256 hash of "eip1967.proxy.beacon" subtracted by 1. */ // solhint-disable-next-line private-vars-leading-underscore bytes32 internal constant BEACON_SLOT = 0xa3f0ad74e5423aebfd80d3ef4346578335a9a72aeaee59ff6cb3582b35133d50; /** * @dev Returns the current beacon. */ function getBeacon() internal view returns (address) { return StorageSlot.getAddressSlot(BEACON_SLOT).value; } /** * @dev Stores a new beacon in the EIP1967 beacon slot. */ function _setBeacon(address newBeacon) private { if (newBeacon.code.length == 0) { revert ERC1967InvalidBeacon(newBeacon); } StorageSlot.getAddressSlot(BEACON_SLOT).value = newBeacon; address beaconImplementation = IBeacon(newBeacon).implementation(); if (beaconImplementation.code.length == 0) { revert ERC1967InvalidImplementation(beaconImplementation); } } /** * @dev Change the beacon and trigger a setup call if data is nonempty. * This function is payable only if the setup call is performed, otherwise `msg.value` is rejected * to avoid stuck value in the contract. * * Emits an {IERC1967-BeaconUpgraded} event. * * CAUTION: Invoking this function has no effect on an instance of {BeaconProxy} since v5, since * it uses an immutable beacon without looking at the value of the ERC-1967 beacon slot for * efficiency. */ function upgradeBeaconToAndCall(address newBeacon, bytes memory data) internal { _setBeacon(newBeacon); emit BeaconUpgraded(newBeacon); if (data.length > 0) { Address.functionDelegateCall(IBeacon(newBeacon).implementation(), data); } else { _checkNonPayable(); } } /** * @dev Reverts if `msg.value` is not zero. It can be used to avoid `msg.value` stuck in the contract * if an upgrade doesn't perform an initialization call. */ function _checkNonPayable() private { if (msg.value > 0) { revert ERC1967NonPayable(); } } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v5.0.0) (token/ERC721/extensions/IERC721Metadata.sol) pragma solidity ^0.8.20; import {IERC721} from "../IERC721.sol"; /** * @title ERC-721 Non-Fungible Token Standard, optional metadata extension * @dev See https://eips.ethereum.org/EIPS/eip-721 */ interface IERC721Metadata is IERC721 { /** * @dev Returns the token collection name. */ function name() external view returns (string memory); /** * @dev Returns the token collection symbol. */ function symbol() external view returns (string memory); /** * @dev Returns the Uniform Resource Identifier (URI) for `tokenId` token. */ function tokenURI(uint256 tokenId) external view returns (string memory); }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v5.0.0) (token/ERC721/IERC721.sol) pragma solidity ^0.8.20; import {IERC165} from "../../utils/introspection/IERC165.sol"; /** * @dev Required interface of an ERC721 compliant contract. */ interface IERC721 is IERC165 { /** * @dev Emitted when `tokenId` token is transferred from `from` to `to`. */ event Transfer(address indexed from, address indexed to, uint256 indexed tokenId); /** * @dev Emitted when `owner` enables `approved` to manage the `tokenId` token. */ event Approval(address indexed owner, address indexed approved, uint256 indexed tokenId); /** * @dev Emitted when `owner` enables or disables (`approved`) `operator` to manage all of its assets. */ event ApprovalForAll(address indexed owner, address indexed operator, bool approved); /** * @dev Returns the number of tokens in ``owner``'s account. */ function balanceOf(address owner) external view returns (uint256 balance); /** * @dev Returns the owner of the `tokenId` token. * * Requirements: * * - `tokenId` must exist. */ function ownerOf(uint256 tokenId) external view returns (address owner); /** * @dev Safely transfers `tokenId` token from `from` to `to`. * * Requirements: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `tokenId` token must exist and be owned by `from`. * - If the caller is not `from`, it must be approved to move this token by either {approve} or {setApprovalForAll}. * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon * a safe transfer. * * Emits a {Transfer} event. */ function safeTransferFrom(address from, address to, uint256 tokenId, bytes calldata data) external; /** * @dev Safely transfers `tokenId` token from `from` to `to`, checking first that contract recipients * are aware of the ERC721 protocol to prevent tokens from being forever locked. * * Requirements: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `tokenId` token must exist and be owned by `from`. * - If the caller is not `from`, it must have been allowed to move this token by either {approve} or * {setApprovalForAll}. * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon * a safe transfer. * * Emits a {Transfer} event. */ function safeTransferFrom(address from, address to, uint256 tokenId) external; /** * @dev Transfers `tokenId` token from `from` to `to`. * * WARNING: Note that the caller is responsible to confirm that the recipient is capable of receiving ERC721 * or else they may be permanently lost. Usage of {safeTransferFrom} prevents loss, though the caller must * understand this adds an external call which potentially creates a reentrancy vulnerability. * * Requirements: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `tokenId` token must be owned by `from`. * - If the caller is not `from`, it must be approved to move this token by either {approve} or {setApprovalForAll}. * * Emits a {Transfer} event. */ function transferFrom(address from, address to, uint256 tokenId) external; /** * @dev Gives permission to `to` to transfer `tokenId` token to another account. * The approval is cleared when the token is transferred. * * Only a single account can be approved at a time, so approving the zero address clears previous approvals. * * Requirements: * * - The caller must own the token or be an approved operator. * - `tokenId` must exist. * * Emits an {Approval} event. */ function approve(address to, uint256 tokenId) external; /** * @dev Approve or remove `operator` as an operator for the caller. * Operators can call {transferFrom} or {safeTransferFrom} for any token owned by the caller. * * Requirements: * * - The `operator` cannot be the address zero. * * Emits an {ApprovalForAll} event. */ function setApprovalForAll(address operator, bool approved) external; /** * @dev Returns the account approved for `tokenId` token. * * Requirements: * * - `tokenId` must exist. */ function getApproved(uint256 tokenId) external view returns (address operator); /** * @dev Returns if the `operator` is allowed to manage all of the assets of `owner`. * * See {setApprovalForAll} */ function isApprovedForAll(address owner, address operator) external view returns (bool); }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v5.0.0) (token/ERC721/IERC721Receiver.sol) pragma solidity ^0.8.20; /** * @title ERC721 token receiver interface * @dev Interface for any contract that wants to support safeTransfers * from ERC721 asset contracts. */ interface IERC721Receiver { /** * @dev Whenever an {IERC721} `tokenId` token is transferred to this contract via {IERC721-safeTransferFrom} * by `operator` from `from`, this function is called. * * It must return its Solidity selector to confirm the token transfer. * If any other value is returned or the interface is not implemented by the recipient, the transfer will be * reverted. * * The selector can be obtained in Solidity with `IERC721Receiver.onERC721Received.selector`. */ function onERC721Received( address operator, address from, uint256 tokenId, bytes calldata data ) external returns (bytes4); }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v5.0.0) (utils/Address.sol) pragma solidity ^0.8.20; /** * @dev Collection of functions related to the address type */ library Address { /** * @dev The ETH balance of the account is not enough to perform the operation. */ error AddressInsufficientBalance(address account); /** * @dev There's no code at `target` (it is not a contract). */ error AddressEmptyCode(address target); /** * @dev A call to an address target failed. The target may have reverted. */ error FailedInnerCall(); /** * @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://consensys.net/diligence/blog/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.8.20/security-considerations.html#use-the-checks-effects-interactions-pattern[checks-effects-interactions pattern]. */ function sendValue(address payable recipient, uint256 amount) internal { if (address(this).balance < amount) { revert AddressInsufficientBalance(address(this)); } (bool success, ) = recipient.call{value: amount}(""); if (!success) { revert FailedInnerCall(); } } /** * @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 or custom error, it is bubbled * up by this function (like regular Solidity function calls). However, if * the call reverted with no returned reason, this function reverts with a * {FailedInnerCall} error. * * 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. */ function functionCall(address target, bytes memory data) internal returns (bytes memory) { return functionCallWithValue(target, data, 0); } /** * @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`. */ function functionCallWithValue(address target, bytes memory data, uint256 value) internal returns (bytes memory) { if (address(this).balance < value) { revert AddressInsufficientBalance(address(this)); } (bool success, bytes memory returndata) = target.call{value: value}(data); return verifyCallResultFromTarget(target, success, returndata); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], * but performing a static call. */ function functionStaticCall(address target, bytes memory data) internal view returns (bytes memory) { (bool success, bytes memory returndata) = target.staticcall(data); return verifyCallResultFromTarget(target, success, returndata); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], * but performing a delegate call. */ function functionDelegateCall(address target, bytes memory data) internal returns (bytes memory) { (bool success, bytes memory returndata) = target.delegatecall(data); return verifyCallResultFromTarget(target, success, returndata); } /** * @dev Tool to verify that a low level call to smart-contract was successful, and reverts if the target * was not a contract or bubbling up the revert reason (falling back to {FailedInnerCall}) in case of an * unsuccessful call. */ function verifyCallResultFromTarget( address target, bool success, bytes memory returndata ) internal view returns (bytes memory) { if (!success) { _revert(returndata); } else { // only check if target is a contract if the call was successful and the return data is empty // otherwise we already know that it was a contract if (returndata.length == 0 && target.code.length == 0) { revert AddressEmptyCode(target); } return returndata; } } /** * @dev Tool to verify that a low level call was successful, and reverts if it wasn't, either by bubbling the * revert reason or with a default {FailedInnerCall} error. */ function verifyCallResult(bool success, bytes memory returndata) internal pure returns (bytes memory) { if (!success) { _revert(returndata); } else { return returndata; } } /** * @dev Reverts with returndata if present. Otherwise reverts with {FailedInnerCall}. */ function _revert(bytes memory returndata) private pure { // Look for revert reason and bubble it up if present if (returndata.length > 0) { // The easiest way to bubble the revert reason is using memory via assembly /// @solidity memory-safe-assembly assembly { let returndata_size := mload(returndata) revert(add(32, returndata), returndata_size) } } else { revert FailedInnerCall(); } } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v5.0.0) (utils/introspection/IERC165.sol) pragma solidity ^0.8.20; /** * @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); }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v5.0.0) (utils/math/Math.sol) pragma solidity ^0.8.20; /** * @dev Standard math utilities missing in the Solidity language. */ library Math { /** * @dev Muldiv operation overflow. */ error MathOverflowedMulDiv(); enum Rounding { Floor, // Toward negative infinity Ceil, // Toward positive infinity Trunc, // Toward zero Expand // Away from zero } /** * @dev Returns the addition of two unsigned integers, with an overflow flag. */ function tryAdd(uint256 a, uint256 b) internal pure returns (bool, uint256) { unchecked { uint256 c = a + b; if (c < a) return (false, 0); return (true, c); } } /** * @dev Returns the subtraction of two unsigned integers, with an overflow flag. */ function trySub(uint256 a, uint256 b) internal pure returns (bool, uint256) { unchecked { if (b > a) return (false, 0); return (true, a - b); } } /** * @dev Returns the multiplication of two unsigned integers, with an overflow flag. */ function tryMul(uint256 a, uint256 b) internal pure returns (bool, uint256) { unchecked { // Gas optimization: this is cheaper than requiring 'a' not being zero, but the // benefit is lost if 'b' is also tested. // See: https://github.com/OpenZeppelin/openzeppelin-contracts/pull/522 if (a == 0) return (true, 0); uint256 c = a * b; if (c / a != b) return (false, 0); return (true, c); } } /** * @dev Returns the division of two unsigned integers, with a division by zero flag. */ function tryDiv(uint256 a, uint256 b) internal pure returns (bool, uint256) { unchecked { if (b == 0) return (false, 0); return (true, a / b); } } /** * @dev Returns the remainder of dividing two unsigned integers, with a division by zero flag. */ function tryMod(uint256 a, uint256 b) internal pure returns (bool, uint256) { unchecked { if (b == 0) return (false, 0); return (true, a % b); } } /** * @dev Returns the largest of two numbers. */ function max(uint256 a, uint256 b) internal pure returns (uint256) { return a > b ? a : b; } /** * @dev Returns the smallest of two numbers. */ function min(uint256 a, uint256 b) internal pure returns (uint256) { return a < b ? a : b; } /** * @dev Returns the average of two numbers. The result is rounded towards * zero. */ function average(uint256 a, uint256 b) internal pure returns (uint256) { // (a + b) / 2 can overflow. return (a & b) + (a ^ b) / 2; } /** * @dev Returns the ceiling of the division of two numbers. * * This differs from standard division with `/` in that it rounds towards infinity instead * of rounding towards zero. */ function ceilDiv(uint256 a, uint256 b) internal pure returns (uint256) { if (b == 0) { // Guarantee the same behavior as in a regular Solidity division. return a / b; } // (a + b - 1) / b can overflow on addition, so we distribute. return a == 0 ? 0 : (a - 1) / b + 1; } /** * @notice Calculates floor(x * y / denominator) with full precision. Throws if result overflows a uint256 or * denominator == 0. * @dev Original credit to Remco Bloemen under MIT license (https://xn--2-umb.com/21/muldiv) with further edits by * Uniswap Labs also under MIT license. */ function mulDiv(uint256 x, uint256 y, uint256 denominator) internal pure returns (uint256 result) { unchecked { // 512-bit multiply [prod1 prod0] = x * y. Compute the product mod 2^256 and mod 2^256 - 1, then use // use the Chinese Remainder Theorem to reconstruct the 512 bit result. The result is stored in two 256 // variables such that product = prod1 * 2^256 + prod0. uint256 prod0 = x * y; // Least significant 256 bits of the product uint256 prod1; // Most significant 256 bits of the product assembly { let mm := mulmod(x, y, not(0)) prod1 := sub(sub(mm, prod0), lt(mm, prod0)) } // Handle non-overflow cases, 256 by 256 division. if (prod1 == 0) { // Solidity will revert if denominator == 0, unlike the div opcode on its own. // The surrounding unchecked block does not change this fact. // See https://docs.soliditylang.org/en/latest/control-structures.html#checked-or-unchecked-arithmetic. return prod0 / denominator; } // Make sure the result is less than 2^256. Also prevents denominator == 0. if (denominator <= prod1) { revert MathOverflowedMulDiv(); } /////////////////////////////////////////////// // 512 by 256 division. /////////////////////////////////////////////// // Make division exact by subtracting the remainder from [prod1 prod0]. uint256 remainder; assembly { // Compute remainder using mulmod. remainder := mulmod(x, y, denominator) // Subtract 256 bit number from 512 bit number. prod1 := sub(prod1, gt(remainder, prod0)) prod0 := sub(prod0, remainder) } // Factor powers of two out of denominator and compute largest power of two divisor of denominator. // Always >= 1. See https://cs.stackexchange.com/q/138556/92363. uint256 twos = denominator & (0 - denominator); assembly { // Divide denominator by twos. denominator := div(denominator, twos) // Divide [prod1 prod0] by twos. prod0 := div(prod0, twos) // Flip twos such that it is 2^256 / twos. If twos is zero, then it becomes one. twos := add(div(sub(0, twos), twos), 1) } // Shift in bits from prod1 into prod0. prod0 |= prod1 * twos; // Invert denominator mod 2^256. Now that denominator is an odd number, it has an inverse modulo 2^256 such // that denominator * inv = 1 mod 2^256. Compute the inverse by starting with a seed that is correct for // four bits. That is, denominator * inv = 1 mod 2^4. uint256 inverse = (3 * denominator) ^ 2; // Use the Newton-Raphson iteration to improve the precision. Thanks to Hensel's lifting lemma, this also // works in modular arithmetic, doubling the correct bits in each step. inverse *= 2 - denominator * inverse; // inverse mod 2^8 inverse *= 2 - denominator * inverse; // inverse mod 2^16 inverse *= 2 - denominator * inverse; // inverse mod 2^32 inverse *= 2 - denominator * inverse; // inverse mod 2^64 inverse *= 2 - denominator * inverse; // inverse mod 2^128 inverse *= 2 - denominator * inverse; // inverse mod 2^256 // Because the division is now exact we can divide by multiplying with the modular inverse of denominator. // This will give us the correct result modulo 2^256. Since the preconditions guarantee that the outcome is // less than 2^256, this is the final result. We don't need to compute the high bits of the result and prod1 // is no longer required. result = prod0 * inverse; return result; } } /** * @notice Calculates x * y / denominator with full precision, following the selected rounding direction. */ function mulDiv(uint256 x, uint256 y, uint256 denominator, Rounding rounding) internal pure returns (uint256) { uint256 result = mulDiv(x, y, denominator); if (unsignedRoundsUp(rounding) && mulmod(x, y, denominator) > 0) { result += 1; } return result; } /** * @dev Returns the square root of a number. If the number is not a perfect square, the value is rounded * towards zero. * * Inspired by Henry S. Warren, Jr.'s "Hacker's Delight" (Chapter 11). */ function sqrt(uint256 a) internal pure returns (uint256) { if (a == 0) { return 0; } // For our first guess, we get the biggest power of 2 which is smaller than the square root of the target. // // We know that the "msb" (most significant bit) of our target number `a` is a power of 2 such that we have // `msb(a) <= a < 2*msb(a)`. This value can be written `msb(a)=2**k` with `k=log2(a)`. // // This can be rewritten `2**log2(a) <= a < 2**(log2(a) + 1)` // → `sqrt(2**k) <= sqrt(a) < sqrt(2**(k+1))` // → `2**(k/2) <= sqrt(a) < 2**((k+1)/2) <= 2**(k/2 + 1)` // // Consequently, `2**(log2(a) / 2)` is a good first approximation of `sqrt(a)` with at least 1 correct bit. uint256 result = 1 << (log2(a) >> 1); // At this point `result` is an estimation with one bit of precision. We know the true value is a uint128, // since it is the square root of a uint256. Newton's method converges quadratically (precision doubles at // every iteration). We thus need at most 7 iteration to turn our partial result with one bit of precision // into the expected uint128 result. unchecked { result = (result + a / result) >> 1; result = (result + a / result) >> 1; result = (result + a / result) >> 1; result = (result + a / result) >> 1; result = (result + a / result) >> 1; result = (result + a / result) >> 1; result = (result + a / result) >> 1; return min(result, a / result); } } /** * @notice Calculates sqrt(a), following the selected rounding direction. */ function sqrt(uint256 a, Rounding rounding) internal pure returns (uint256) { unchecked { uint256 result = sqrt(a); return result + (unsignedRoundsUp(rounding) && result * result < a ? 1 : 0); } } /** * @dev Return the log in base 2 of a positive value rounded towards zero. * Returns 0 if given 0. */ function log2(uint256 value) internal pure returns (uint256) { uint256 result = 0; unchecked { if (value >> 128 > 0) { value >>= 128; result += 128; } if (value >> 64 > 0) { value >>= 64; result += 64; } if (value >> 32 > 0) { value >>= 32; result += 32; } if (value >> 16 > 0) { value >>= 16; result += 16; } if (value >> 8 > 0) { value >>= 8; result += 8; } if (value >> 4 > 0) { value >>= 4; result += 4; } if (value >> 2 > 0) { value >>= 2; result += 2; } if (value >> 1 > 0) { result += 1; } } return result; } /** * @dev Return the log in base 2, following the selected rounding direction, of a positive value. * Returns 0 if given 0. */ function log2(uint256 value, Rounding rounding) internal pure returns (uint256) { unchecked { uint256 result = log2(value); return result + (unsignedRoundsUp(rounding) && 1 << result < value ? 1 : 0); } } /** * @dev Return the log in base 10 of a positive value rounded towards zero. * Returns 0 if given 0. */ function log10(uint256 value) internal pure returns (uint256) { uint256 result = 0; unchecked { if (value >= 10 ** 64) { value /= 10 ** 64; result += 64; } if (value >= 10 ** 32) { value /= 10 ** 32; result += 32; } if (value >= 10 ** 16) { value /= 10 ** 16; result += 16; } if (value >= 10 ** 8) { value /= 10 ** 8; result += 8; } if (value >= 10 ** 4) { value /= 10 ** 4; result += 4; } if (value >= 10 ** 2) { value /= 10 ** 2; result += 2; } if (value >= 10 ** 1) { result += 1; } } return result; } /** * @dev Return the log in base 10, following the selected rounding direction, of a positive value. * Returns 0 if given 0. */ function log10(uint256 value, Rounding rounding) internal pure returns (uint256) { unchecked { uint256 result = log10(value); return result + (unsignedRoundsUp(rounding) && 10 ** result < value ? 1 : 0); } } /** * @dev Return the log in base 256 of a positive value rounded towards zero. * Returns 0 if given 0. * * Adding one to the result gives the number of pairs of hex symbols needed to represent `value` as a hex string. */ function log256(uint256 value) internal pure returns (uint256) { uint256 result = 0; unchecked { if (value >> 128 > 0) { value >>= 128; result += 16; } if (value >> 64 > 0) { value >>= 64; result += 8; } if (value >> 32 > 0) { value >>= 32; result += 4; } if (value >> 16 > 0) { value >>= 16; result += 2; } if (value >> 8 > 0) { result += 1; } } return result; } /** * @dev Return the log in base 256, following the selected rounding direction, of a positive value. * Returns 0 if given 0. */ function log256(uint256 value, Rounding rounding) internal pure returns (uint256) { unchecked { uint256 result = log256(value); return result + (unsignedRoundsUp(rounding) && 1 << (result << 3) < value ? 1 : 0); } } /** * @dev Returns whether a provided rounding mode is considered rounding up for unsigned integers. */ function unsignedRoundsUp(Rounding rounding) internal pure returns (bool) { return uint8(rounding) % 2 == 1; } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v5.0.0) (utils/math/SignedMath.sol) pragma solidity ^0.8.20; /** * @dev Standard signed math utilities missing in the Solidity language. */ library SignedMath { /** * @dev Returns the largest of two signed numbers. */ function max(int256 a, int256 b) internal pure returns (int256) { return a > b ? a : b; } /** * @dev Returns the smallest of two signed numbers. */ function min(int256 a, int256 b) internal pure returns (int256) { return a < b ? a : b; } /** * @dev Returns the average of two signed numbers without overflow. * The result is rounded towards zero. */ function average(int256 a, int256 b) internal pure returns (int256) { // Formula from the book "Hacker's Delight" int256 x = (a & b) + ((a ^ b) >> 1); return x + (int256(uint256(x) >> 255) & (a ^ b)); } /** * @dev Returns the absolute unsigned value of a signed value. */ function abs(int256 n) internal pure returns (uint256) { unchecked { // must be unchecked in order to support `n = type(int256).min` return uint256(n >= 0 ? n : -n); } } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v5.0.0) (utils/StorageSlot.sol) // This file was procedurally generated from scripts/generate/templates/StorageSlot.js. pragma solidity ^0.8.20; /** * @dev Library for reading and writing primitive types to specific storage slots. * * Storage slots are often used to avoid storage conflict when dealing with upgradeable contracts. * This library helps with reading and writing to such slots without the need for inline assembly. * * The functions in this library return Slot structs that contain a `value` member that can be used to read or write. * * Example usage to set ERC1967 implementation slot: * ```solidity * contract ERC1967 { * bytes32 internal constant _IMPLEMENTATION_SLOT = 0x360894a13ba1a3210667c828492db98dca3e2076cc3735a920a3ca505d382bbc; * * function _getImplementation() internal view returns (address) { * return StorageSlot.getAddressSlot(_IMPLEMENTATION_SLOT).value; * } * * function _setImplementation(address newImplementation) internal { * require(newImplementation.code.length > 0); * StorageSlot.getAddressSlot(_IMPLEMENTATION_SLOT).value = newImplementation; * } * } * ``` */ library StorageSlot { struct AddressSlot { address value; } struct BooleanSlot { bool value; } struct Bytes32Slot { bytes32 value; } struct Uint256Slot { uint256 value; } struct StringSlot { string value; } struct BytesSlot { bytes value; } /** * @dev Returns an `AddressSlot` with member `value` located at `slot`. */ function getAddressSlot(bytes32 slot) internal pure returns (AddressSlot storage r) { /// @solidity memory-safe-assembly assembly { r.slot := slot } } /** * @dev Returns an `BooleanSlot` with member `value` located at `slot`. */ function getBooleanSlot(bytes32 slot) internal pure returns (BooleanSlot storage r) { /// @solidity memory-safe-assembly assembly { r.slot := slot } } /** * @dev Returns an `Bytes32Slot` with member `value` located at `slot`. */ function getBytes32Slot(bytes32 slot) internal pure returns (Bytes32Slot storage r) { /// @solidity memory-safe-assembly assembly { r.slot := slot } } /** * @dev Returns an `Uint256Slot` with member `value` located at `slot`. */ function getUint256Slot(bytes32 slot) internal pure returns (Uint256Slot storage r) { /// @solidity memory-safe-assembly assembly { r.slot := slot } } /** * @dev Returns an `StringSlot` with member `value` located at `slot`. */ function getStringSlot(bytes32 slot) internal pure returns (StringSlot storage r) { /// @solidity memory-safe-assembly assembly { r.slot := slot } } /** * @dev Returns an `StringSlot` representation of the string storage pointer `store`. */ function getStringSlot(string storage store) internal pure returns (StringSlot storage r) { /// @solidity memory-safe-assembly assembly { r.slot := store.slot } } /** * @dev Returns an `BytesSlot` with member `value` located at `slot`. */ function getBytesSlot(bytes32 slot) internal pure returns (BytesSlot storage r) { /// @solidity memory-safe-assembly assembly { r.slot := slot } } /** * @dev Returns an `BytesSlot` representation of the bytes storage pointer `store`. */ function getBytesSlot(bytes storage store) internal pure returns (BytesSlot storage r) { /// @solidity memory-safe-assembly assembly { r.slot := store.slot } } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v5.0.0) (utils/Strings.sol) pragma solidity ^0.8.20; import {Math} from "./math/Math.sol"; import {SignedMath} from "./math/SignedMath.sol"; /** * @dev String operations. */ library Strings { bytes16 private constant HEX_DIGITS = "0123456789abcdef"; uint8 private constant ADDRESS_LENGTH = 20; /** * @dev The `value` string doesn't fit in the specified `length`. */ error StringsInsufficientHexLength(uint256 value, uint256 length); /** * @dev Converts a `uint256` to its ASCII `string` decimal representation. */ function toString(uint256 value) internal pure returns (string memory) { unchecked { uint256 length = Math.log10(value) + 1; string memory buffer = new string(length); uint256 ptr; /// @solidity memory-safe-assembly assembly { ptr := add(buffer, add(32, length)) } while (true) { ptr--; /// @solidity memory-safe-assembly assembly { mstore8(ptr, byte(mod(value, 10), HEX_DIGITS)) } value /= 10; if (value == 0) break; } return buffer; } } /** * @dev Converts a `int256` to its ASCII `string` decimal representation. */ function toStringSigned(int256 value) internal pure returns (string memory) { return string.concat(value < 0 ? "-" : "", toString(SignedMath.abs(value))); } /** * @dev Converts a `uint256` to its ASCII `string` hexadecimal representation. */ function toHexString(uint256 value) internal pure returns (string memory) { unchecked { return toHexString(value, Math.log256(value) + 1); } } /** * @dev Converts a `uint256` to its ASCII `string` hexadecimal representation with fixed length. */ function toHexString(uint256 value, uint256 length) internal pure returns (string memory) { uint256 localValue = value; 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_DIGITS[localValue & 0xf]; localValue >>= 4; } if (localValue != 0) { revert StringsInsufficientHexLength(value, length); } return string(buffer); } /** * @dev Converts an `address` with fixed length of 20 bytes to its not checksummed ASCII `string` hexadecimal * representation. */ function toHexString(address addr) internal pure returns (string memory) { return toHexString(uint256(uint160(addr)), ADDRESS_LENGTH); } /** * @dev Returns true if the two strings are equal. */ function equal(string memory a, string memory b) internal pure returns (bool) { return bytes(a).length == bytes(b).length && keccak256(bytes(a)) == keccak256(bytes(b)); } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v5.0.0) (utils/structs/EnumerableSet.sol) // This file was procedurally generated from scripts/generate/templates/EnumerableSet.js. pragma solidity ^0.8.20; /** * @dev Library for managing * https://en.wikipedia.org/wiki/Set_(abstract_data_type)[sets] of primitive * types. * * Sets have the following properties: * * - Elements are added, removed, and checked for existence in constant time * (O(1)). * - Elements are enumerated in O(n). No guarantees are made on the ordering. * * ```solidity * contract Example { * // Add the library methods * using EnumerableSet for EnumerableSet.AddressSet; * * // Declare a set state variable * EnumerableSet.AddressSet private mySet; * } * ``` * * As of v3.3.0, sets of type `bytes32` (`Bytes32Set`), `address` (`AddressSet`) * and `uint256` (`UintSet`) are supported. * * [WARNING] * ==== * Trying to delete such a structure from storage will likely result in data corruption, rendering the structure * unusable. * See https://github.com/ethereum/solidity/pull/11843[ethereum/solidity#11843] for more info. * * In order to clean an EnumerableSet, you can either remove all elements one by one or create a fresh instance using an * array of EnumerableSet. * ==== */ library EnumerableSet { // To implement this library for multiple types with as little code // repetition as possible, we write it in terms of a generic Set type with // bytes32 values. // The Set implementation uses private functions, and user-facing // implementations (such as AddressSet) are just wrappers around the // underlying Set. // This means that we can only create new EnumerableSets for types that fit // in bytes32. struct Set { // Storage of set values bytes32[] _values; // Position is the index of the value in the `values` array plus 1. // Position 0 is used to mean a value is not in the set. mapping(bytes32 value => uint256) _positions; } /** * @dev Add a value to a set. O(1). * * Returns true if the value was added to the set, that is if it was not * already present. */ function _add(Set storage set, bytes32 value) private returns (bool) { if (!_contains(set, value)) { set._values.push(value); // The value is stored at length-1, but we add 1 to all indexes // and use 0 as a sentinel value set._positions[value] = set._values.length; return true; } else { return false; } } /** * @dev Removes a value from a set. O(1). * * Returns true if the value was removed from the set, that is if it was * present. */ function _remove(Set storage set, bytes32 value) private returns (bool) { // We cache the value's position to prevent multiple reads from the same storage slot uint256 position = set._positions[value]; if (position != 0) { // Equivalent to contains(set, value) // To delete an element from the _values array in O(1), we swap the element to delete with the last one in // the array, and then remove the last element (sometimes called as 'swap and pop'). // This modifies the order of the array, as noted in {at}. uint256 valueIndex = position - 1; uint256 lastIndex = set._values.length - 1; if (valueIndex != lastIndex) { bytes32 lastValue = set._values[lastIndex]; // Move the lastValue to the index where the value to delete is set._values[valueIndex] = lastValue; // Update the tracked position of the lastValue (that was just moved) set._positions[lastValue] = position; } // Delete the slot where the moved value was stored set._values.pop(); // Delete the tracked position for the deleted slot delete set._positions[value]; return true; } else { return false; } } /** * @dev Returns true if the value is in the set. O(1). */ function _contains(Set storage set, bytes32 value) private view returns (bool) { return set._positions[value] != 0; } /** * @dev Returns the number of values on the set. O(1). */ function _length(Set storage set) private view returns (uint256) { return set._values.length; } /** * @dev Returns the value stored at position `index` in the set. O(1). * * Note that there are no guarantees on the ordering of values inside the * array, and it may change when more values are added or removed. * * Requirements: * * - `index` must be strictly less than {length}. */ function _at(Set storage set, uint256 index) private view returns (bytes32) { return set._values[index]; } /** * @dev Return the entire set in an array * * WARNING: This operation will copy the entire storage to memory, which can be quite expensive. This is designed * to mostly be used by view accessors that are queried without any gas fees. Developers should keep in mind that * this function has an unbounded cost, and using it as part of a state-changing function may render the function * uncallable if the set grows to a point where copying to memory consumes too much gas to fit in a block. */ function _values(Set storage set) private view returns (bytes32[] memory) { return set._values; } // Bytes32Set struct Bytes32Set { Set _inner; } /** * @dev Add a value to a set. O(1). * * Returns true if the value was added to the set, that is if it was not * already present. */ function add(Bytes32Set storage set, bytes32 value) internal returns (bool) { return _add(set._inner, value); } /** * @dev Removes a value from a set. O(1). * * Returns true if the value was removed from the set, that is if it was * present. */ function remove(Bytes32Set storage set, bytes32 value) internal returns (bool) { return _remove(set._inner, value); } /** * @dev Returns true if the value is in the set. O(1). */ function contains(Bytes32Set storage set, bytes32 value) internal view returns (bool) { return _contains(set._inner, value); } /** * @dev Returns the number of values in the set. O(1). */ function length(Bytes32Set storage set) internal view returns (uint256) { return _length(set._inner); } /** * @dev Returns the value stored at position `index` in the set. O(1). * * Note that there are no guarantees on the ordering of values inside the * array, and it may change when more values are added or removed. * * Requirements: * * - `index` must be strictly less than {length}. */ function at(Bytes32Set storage set, uint256 index) internal view returns (bytes32) { return _at(set._inner, index); } /** * @dev Return the entire set in an array * * WARNING: This operation will copy the entire storage to memory, which can be quite expensive. This is designed * to mostly be used by view accessors that are queried without any gas fees. Developers should keep in mind that * this function has an unbounded cost, and using it as part of a state-changing function may render the function * uncallable if the set grows to a point where copying to memory consumes too much gas to fit in a block. */ function values(Bytes32Set storage set) internal view returns (bytes32[] memory) { bytes32[] memory store = _values(set._inner); bytes32[] memory result; /// @solidity memory-safe-assembly assembly { result := store } return result; } // AddressSet struct AddressSet { Set _inner; } /** * @dev Add a value to a set. O(1). * * Returns true if the value was added to the set, that is if it was not * already present. */ function add(AddressSet storage set, address value) internal returns (bool) { return _add(set._inner, bytes32(uint256(uint160(value)))); } /** * @dev Removes a value from a set. O(1). * * Returns true if the value was removed from the set, that is if it was * present. */ function remove(AddressSet storage set, address value) internal returns (bool) { return _remove(set._inner, bytes32(uint256(uint160(value)))); } /** * @dev Returns true if the value is in the set. O(1). */ function contains(AddressSet storage set, address value) internal view returns (bool) { return _contains(set._inner, bytes32(uint256(uint160(value)))); } /** * @dev Returns the number of values in the set. O(1). */ function length(AddressSet storage set) internal view returns (uint256) { return _length(set._inner); } /** * @dev Returns the value stored at position `index` in the set. O(1). * * Note that there are no guarantees on the ordering of values inside the * array, and it may change when more values are added or removed. * * Requirements: * * - `index` must be strictly less than {length}. */ function at(AddressSet storage set, uint256 index) internal view returns (address) { return address(uint160(uint256(_at(set._inner, index)))); } /** * @dev Return the entire set in an array * * WARNING: This operation will copy the entire storage to memory, which can be quite expensive. This is designed * to mostly be used by view accessors that are queried without any gas fees. Developers should keep in mind that * this function has an unbounded cost, and using it as part of a state-changing function may render the function * uncallable if the set grows to a point where copying to memory consumes too much gas to fit in a block. */ function values(AddressSet storage set) internal view returns (address[] memory) { bytes32[] memory store = _values(set._inner); address[] memory result; /// @solidity memory-safe-assembly assembly { result := store } return result; } // UintSet struct UintSet { Set _inner; } /** * @dev Add a value to a set. O(1). * * Returns true if the value was added to the set, that is if it was not * already present. */ function add(UintSet storage set, uint256 value) internal returns (bool) { return _add(set._inner, bytes32(value)); } /** * @dev Removes a value from a set. O(1). * * Returns true if the value was removed from the set, that is if it was * present. */ function remove(UintSet storage set, uint256 value) internal returns (bool) { return _remove(set._inner, bytes32(value)); } /** * @dev Returns true if the value is in the set. O(1). */ function contains(UintSet storage set, uint256 value) internal view returns (bool) { return _contains(set._inner, bytes32(value)); } /** * @dev Returns the number of values in the set. O(1). */ function length(UintSet storage set) internal view returns (uint256) { return _length(set._inner); } /** * @dev Returns the value stored at position `index` in the set. O(1). * * Note that there are no guarantees on the ordering of values inside the * array, and it may change when more values are added or removed. * * Requirements: * * - `index` must be strictly less than {length}. */ function at(UintSet storage set, uint256 index) internal view returns (uint256) { return uint256(_at(set._inner, index)); } /** * @dev Return the entire set in an array * * WARNING: This operation will copy the entire storage to memory, which can be quite expensive. This is designed * to mostly be used by view accessors that are queried without any gas fees. Developers should keep in mind that * this function has an unbounded cost, and using it as part of a state-changing function may render the function * uncallable if the set grows to a point where copying to memory consumes too much gas to fit in a block. */ function values(UintSet storage set) internal view returns (uint256[] memory) { bytes32[] memory store = _values(set._inner); uint256[] memory result; /// @solidity memory-safe-assembly assembly { result := store } return result; } }
{ "optimizer": { "enabled": true, "runs": 200 }, "evmVersion": "paris", "outputSelection": { "*": { "*": [ "evm.bytecode", "evm.deployedBytecode", "devdoc", "userdoc", "metadata", "abi" ] } }, "libraries": {} }
Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
Contract ABI
API[{"inputs":[{"internalType":"address","name":"target","type":"address"}],"name":"AddressEmptyCode","type":"error"},{"inputs":[{"internalType":"address","name":"implementation","type":"address"}],"name":"ERC1967InvalidImplementation","type":"error"},{"inputs":[],"name":"ERC1967NonPayable","type":"error"},{"inputs":[{"internalType":"address","name":"sender","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"address","name":"owner","type":"address"}],"name":"ERC721IncorrectOwner","type":"error"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ERC721InsufficientApproval","type":"error"},{"inputs":[{"internalType":"address","name":"approver","type":"address"}],"name":"ERC721InvalidApprover","type":"error"},{"inputs":[{"internalType":"address","name":"operator","type":"address"}],"name":"ERC721InvalidOperator","type":"error"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"ERC721InvalidOwner","type":"error"},{"inputs":[{"internalType":"address","name":"receiver","type":"address"}],"name":"ERC721InvalidReceiver","type":"error"},{"inputs":[{"internalType":"address","name":"sender","type":"address"}],"name":"ERC721InvalidSender","type":"error"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ERC721NonexistentToken","type":"error"},{"inputs":[],"name":"FailedInnerCall","type":"error"},{"inputs":[],"name":"InvalidInitialization","type":"error"},{"inputs":[],"name":"NotInitializing","type":"error"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"OwnableInvalidOwner","type":"error"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"OwnableUnauthorizedAccount","type":"error"},{"inputs":[],"name":"UUPSUnauthorizedCallContext","type":"error"},{"inputs":[{"internalType":"bytes32","name":"slot","type":"bytes32"}],"name":"UUPSUnsupportedProxiableUUID","type":"error"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"approved","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint64","name":"version","type":"uint64"}],"name":"Initialized","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"},{"indexed":false,"internalType":"string","name":"name","type":"string"}],"name":"NewWellID","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":"uint256","name":"tokenId","type":"uint256"},{"indexed":false,"internalType":"string","name":"oldName","type":"string"},{"indexed":false,"internalType":"string","name":"newName","type":"string"}],"name":"RenameWellID","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"implementation","type":"address"}],"name":"Upgraded","type":"event"},{"inputs":[],"name":"MAX_RENAMES","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"UPGRADE_INTERFACE_VERSION","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"addressToTokenId","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address[]","name":"addresses","type":"address[]"}],"name":"addressesToTokenIdsMultiple","outputs":[{"internalType":"uint256[]","name":"","type":"uint256[]"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"string","name":"name","type":"string"},{"internalType":"bool","name":"force","type":"bool"}],"name":"adminRename","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256[]","name":"tokenIds","type":"uint256[]"},{"internalType":"string[]","name":"names","type":"string[]"},{"internalType":"bool","name":"force","type":"bool"}],"name":"adminRenameMulti","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":[],"name":"authorizedMinter","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"baseTokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"string","name":"_str","type":"string"}],"name":"checkName","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"pure","type":"function"},{"inputs":[{"internalType":"uint256","name":"fromIdx","type":"uint256"},{"internalType":"uint256","name":"toIdx","type":"uint256"}],"name":"getAllTokenIds","outputs":[{"internalType":"uint256[]","name":"","type":"uint256[]"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"getAllTokenIdsCount","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":"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":[{"internalType":"address","name":"user","type":"address"},{"internalType":"string","name":"name","type":"string"}],"name":"mint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address[]","name":"users","type":"address[]"},{"internalType":"string[]","name":"names","type":"string[]"}],"name":"mintMulti","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"string","name":"","type":"string"}],"name":"nameToTokenId","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"string[]","name":"names","type":"string[]"}],"name":"namesToTokenIdsMultiple","outputs":[{"internalType":"uint256[]","name":"","type":"uint256[]"}],"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":"proxiableUUID","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"","type":"uint256"}],"name":"renameCounts","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"renounceUpgrader","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"rngCounter","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":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newMinter","type":"address"}],"name":"setAuthorizedMinter","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"baseURI","type":"string"}],"name":"setBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"renames","type":"uint256"}],"name":"setMaxRenames","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"allowed","type":"bool"}],"name":"setTransferAllowed","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_upgrader","type":"address"}],"name":"setUpgrader","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":"","type":"uint256"}],"name":"tokenIdToName","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256[]","name":"tokenIds","type":"uint256[]"}],"name":"tokenIdsToNamesMultiple","outputs":[{"internalType":"string[]","name":"","type":"string[]"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"transfersAllowed","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"newImplementation","type":"address"},{"internalType":"bytes","name":"data","type":"bytes"}],"name":"upgradeToAndCall","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"upgrader","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"upgraderRenounced","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"string","name":"rawName","type":"string"}],"name":"userRename","outputs":[],"stateMutability":"nonpayable","type":"function"}]
Contract Creation Code
60a06040523060805234801561001457600080fd5b506080516136f161003e60003960008181611e3a01528181611e630152611fee01526136f16000f3fe6080604052600436106102935760003560e01c80638088ba3d1161015a578063b3942cbd116100c1578063da2bfdb11161007a578063da2bfdb1146107f3578063dd00125414610813578063e985e9c51461084b578063ef6bbcd91461086b578063f163d71214610881578063f2fde38b1461089657600080fd5b8063b3942cbd1461073e578063b88d4fde1461075e578063b95040691461077e578063c87b56dd1461079e578063d0def521146107be578063d547cfb7146107de57600080fd5b80639cdc803e116101135780639cdc803e14610666578063a22cb46514610686578063ad3cb1cc146106a6578063ae6dd375146106d7578063af26974514610704578063b0660c3d1461072457600080fd5b80638088ba3d146105b95780638110c50f146105e65780638129fc1c146106075780638b0d0a2f1461061c5780638da5cb5b1461063c57806395d89b411461065157600080fd5b8063318824bd116101fe5780636352211e116101b75780636352211e146104f55780636511bf2e1461051557806370a0823114610542578063715018a61461056257806371664310146105775780637e7e81cd1461058c57600080fd5b8063318824bd1461044957806342842e0e1461046d5780634f1ef2861461048d57806352d1902d146104a057806354af082b146104b557806355f804b3146104d557600080fd5b80631928b7c3116102505780631928b7c3146103895780631b878f71146103a95780631ba538cd146103c957806323b872dd146103e957806325a05408146104095780632d89147a1461042957600080fd5b806301ffc9a71461029857806306fdde03146102cd578063081812fc146102ef578063095ea7b3146103275780630e774650146103495780631400d1e414610369575b600080fd5b3480156102a457600080fd5b506102b86102b3366004612b24565b6108b6565b60405190151581526020015b60405180910390f35b3480156102d957600080fd5b506102e2610908565b6040516102c49190612b91565b3480156102fb57600080fd5b5061030f61030a366004612ba4565b6109ac565b6040516001600160a01b0390911681526020016102c4565b34801561033357600080fd5b50610347610342366004612bd9565b6109c1565b005b34801561035557600080fd5b50610347610364366004612c4e565b6109d0565b34801561037557600080fd5b506102b8610384366004612cfa565b610aa6565b34801561039557600080fd5b506103476103a4366004612d3b565b610bcd565b3480156103b557600080fd5b506103476103c4366004612d3b565b610bf7565b3480156103d557600080fd5b5060075461030f906001600160a01b031681565b3480156103f557600080fd5b50610347610404366004612d56565b610c6f565b34801561041557600080fd5b50610347610424366004612ba4565b610cd1565b34801561043557600080fd5b50610347610444366004612da2565b610cde565b34801561045557600080fd5b5061045f600a5481565b6040519081526020016102c4565b34801561047957600080fd5b50610347610488366004612d56565b610ee9565b61034761049b366004612eaa565b610f04565b3480156104ac57600080fd5b5061045f610f1f565b3480156104c157600080fd5b506103476104d0366004612ef7565b610f3c565b3480156104e157600080fd5b506103476104f0366004612cfa565b611009565b34801561050157600080fd5b5061030f610510366004612ba4565b61101e565b34801561052157600080fd5b5061045f610530366004612d3b565b60046020526000908152604090205481565b34801561054e57600080fd5b5061045f61055d366004612d3b565b611029565b34801561056e57600080fd5b50610347611085565b34801561058357600080fd5b5061045f611099565b34801561059857600080fd5b506105ac6105a7366004612f77565b6110aa565b6040516102c49190612f99565b3480156105c557600080fd5b5061045f6105d4366004612ba4565b600b6020526000908152604090205481565b3480156105f257600080fd5b506000546102b890600160a01b900460ff1681565b34801561061357600080fd5b50610347611166565b34801561062857600080fd5b506105ac610637366004612fdd565b6112e0565b34801561064857600080fd5b5061030f6113a4565b34801561065d57600080fd5b506102e26113d2565b34801561067257600080fd5b50610347610681366004613012565b611411565b34801561069257600080fd5b506103476106a136600461305d565b6116b0565b3480156106b257600080fd5b506102e2604051806040016040528060058152602001640352e302e360dc1b81525081565b3480156106e357600080fd5b506106f76106f2366004612fdd565b6116bb565b6040516102c49190613090565b34801561071057600080fd5b5060005461030f906001600160a01b031681565b34801561073057600080fd5b506009546102b89060ff1681565b34801561074a57600080fd5b506103476107593660046130f4565b6117f1565b34801561076a57600080fd5b5061034761077936600461310f565b61180c565b34801561078a57600080fd5b506105ac610799366004612fdd565b611829565b3480156107aa57600080fd5b506102e26107b9366004612ba4565b6118e4565b3480156107ca57600080fd5b506103476107d9366004613176565b61194c565b3480156107ea57600080fd5b506102e2611b59565b3480156107ff57600080fd5b506102e261080e366004612ba4565b611be7565b34801561081f57600080fd5b5061045f61082e3660046131af565b805160208183018101805160028252928201919093012091525481565b34801561085757600080fd5b506102b86108663660046131f7565b611c00565b34801561087757600080fd5b5061045f60085481565b34801561088d57600080fd5b50610347611c4d565b3480156108a257600080fd5b506103476108b1366004612d3b565b611cbb565b60006001600160e01b031982166380ac58cd60e01b14806108e757506001600160e01b03198216635b5e139f60e01b145b8061090257506301ffc9a760e01b6001600160e01b03198316145b92915050565b60008051602061367c833981519152805460609190819061092890613221565b80601f016020809104026020016040519081016040528092919081815260200182805461095490613221565b80156109a15780601f10610976576101008083540402835291602001916109a1565b820191906000526020600020905b81548152906001019060200180831161098457829003601f168201915b505050505091505090565b60006109b782611cf9565b5061090282611d31565b6109cc828233611d6b565b5050565b828114610a3e5760405162461bcd60e51b815260206004820152603160248201527f557365727320616e64206e616d657320617272617973206d757374206265206f6044820152700cc40e8d0ca40e6c2daca40d8cadccee8d607b1b60648201526084015b60405180910390fd5b60005b83811015610a9f57610a97858583818110610a5e57610a5e61325b565b9050602002016020810190610a739190612d3b565b848484818110610a8557610a8561325b565b90506020028101906107d99190613271565b600101610a41565b5050505050565b60008083838080601f016020809104026020016040519081016040528093929190818152602001838380828437600092019190915250508251929350506006909110905080610af65750600f8151115b15610b05576000915050610902565b60005b8151811015610bc2576000828281518110610b2557610b2561325b565b01602001516001600160f81b0319169050600360fc1b8110801590610b585750603960f81b6001600160f81b0319821611155b158015610b8e5750606160f81b6001600160f81b0319821610801590610b8c5750603d60f91b6001600160f81b0319821611155b155b8015610ba85750605f60f81b6001600160f81b0319821614155b15610bb95760009350505050610902565b50600101610b08565b506001949350505050565b610bd5611d78565b600780546001600160a01b0319166001600160a01b0392909216919091179055565b610bff611d78565b600054600160a01b900460ff1615610c4d5760405162461bcd60e51b8152602060048201526011602482015270155c19dc9859195c94995b9bdd5b98d959607a1b6044820152606401610a35565b600080546001600160a01b0319166001600160a01b0392909216919091179055565b60095460ff16610cc15760405162461bcd60e51b815260206004820152601f60248201527f546f6b656e207472616e736665727320617265206e6f7420616c6c6f776564006044820152606401610a35565b610ccc838383611daa565b505050565b610cd9611d78565b600a55565b6007546001600160a01b0316331480610d0f5750610cfa6113a4565b6001600160a01b0316336001600160a01b0316145b610d655760405162461bcd60e51b815260206004820152602160248201527f4f6e6c7920617574686f72697a6564206d696e7465722063616e2072656e616d6044820152606560f81b6064820152608401610a35565b80610daa5760028383604051610d7c9291906132b7565b908152602001604051809103902054600014610daa5760405162461bcd60e51b8152600401610a35906132c7565b60008481526003602052604081208054610dc390613221565b80601f0160208091040260200160405190810160405280929190818152602001828054610def90613221565b8015610e3c5780601f10610e1157610100808354040283529160200191610e3c565b820191906000526020600020905b815481529060010190602001808311610e1f57829003601f168201915b505050505090506000600282604051610e5591906132f5565b9081526020016040518091039020819055508460028585604051610e7a9291906132b7565b9081526040805160209281900383019020929092556000878152600390915220610ea5848683613359565b50847f4ee483724ee2e1d87b33699407b990a44ef86363f699d0ae950df9a4ba236e24828686604051610eda93929190613441565b60405180910390a25050505050565b610ccc8383836040518060200160405280600081525061180c565b610f0c611e2f565b610f1582611ed4565b6109cc8282611f26565b6000610f29611fe3565b5060008051602061369c83398151915290565b838214610fa85760405162461bcd60e51b815260206004820152603460248201527f746f6b656e49647320616e64206e616d657320617272617973206d75737420626044820152730ca40decc40e8d0ca40e6c2daca40d8cadccee8d60631b6064820152608401610a35565b60005b8481101561100157610ff9868683818110610fc857610fc861325b565b90506020020135858584818110610fe157610fe161325b565b9050602002810190610ff39190613271565b85610cde565b600101610fab565b505050505050565b611011611d78565b6001610ccc828483613359565b600061090282611cf9565b600060008051602061367c8339815191526001600160a01b038316611064576040516322718ad960e21b815260006004820152602401610a35565b6001600160a01b039092166000908152600390920160205250604090205490565b61108d611d78565b611097600061202c565b565b60006110a5600561209d565b905090565b60606110bf826110ba600561209d565b6120a7565b915060006110cd8484613487565b6001600160401b038111156110e4576110e4612dff565b60405190808252806020026020018201604052801561110d578160200160208202803683370190505b50905060005b61111d8585613487565b81101561115e57611139611131868361349a565b6005906120bd565b82828151811061114b5761114b61325b565b6020908102919091010152600101611113565b509392505050565b7ff0c57e16840df040f15088dc2f81fe391c3923bec73e23a9662efc9c229c6a008054600160401b810460ff1615906001600160401b03166000811580156111ab5750825b90506000826001600160401b031660011480156111c75750303b155b9050811580156111d5575080155b156111f35760405163f92ee8a960e01b815260040160405180910390fd5b845467ffffffffffffffff19166001178555831561121d57845460ff60401b1916600160401b1785555b6112616040518060400160405280600781526020016615d95b1b08125160ca1b8152506040518060400160405280600381526020016215d25160ea1b8152506120c9565b61126a336120db565b6112726120e3565b60078054336001600160a01b031991821681179092556000805490911690911790558315610a9f57845460ff60401b19168555604051600181527fc7f505b2f371ae2175ee4913f4499e1f2633a7b5936321eed1cdaeb6115181d29060200160405180910390a15050505050565b60606000826001600160401b038111156112fc576112fc612dff565b604051908082528060200260200182016040528015611325578160200160208202803683370190505b50905060005b8381101561115e57600460008686848181106113495761134961325b565b905060200201602081019061135e9190612d3b565b6001600160a01b03166001600160a01b03168152602001908152602001600020548282815181106113915761139161325b565b602090810291909101015260010161132b565b7f9016d09d72d40fdae2fd8ceac6b6234c7706214fd39c1cd1e609a0528c199300546001600160a01b031690565b7f80bb2b638cc20bc4d0a60d66940f3ab4a00c1d7b313497ca82fb0b4ab0079301805460609160008051602061367c8339815191529161092890613221565b3361141b8461101e565b6001600160a01b0316146114665760405162461bcd60e51b81526020600482015260126024820152712737ba1037bbb732b91037b3103a37b5b2b760711b6044820152606401610a35565b6000838152600b6020526040812080546001929061148590849061349a565b9091555050600a546000848152600b602052604090205411156114dc5760405162461bcd60e51b815260206004820152600f60248201526e4e6f2072656e616d652071756f746160881b6044820152606401610a35565b6114e68282610aa6565b6115215760405162461bcd60e51b815260206004820152600c60248201526b496e76616c6964206e616d6560a01b6044820152606401610a35565b600082826040516020016115369291906134ad565b604051602081830303815290604052905060028160405161155791906132f5565b9081526020016040518091039020546000146115855760405162461bcd60e51b8152600401610a35906132c7565b6000848152600360205260408120805461159e90613221565b80601f01602080910402602001604051908101604052809291908181526020018280546115ca90613221565b80156116175780601f106115ec57610100808354040283529160200191611617565b820191906000526020600020905b8154815290600101906020018083116115fa57829003601f168201915b50505050509050600060028260405161163091906132f5565b9081526020016040518091039020819055508460028360405161165391906132f5565b908152604080516020928190038301902092909255600087815260039091522061167d83826134c7565b50847f4ee483724ee2e1d87b33699407b990a44ef86363f699d0ae950df9a4ba236e248284604051610eda929190613586565b6109cc3383836120eb565b60606000826001600160401b038111156116d7576116d7612dff565b60405190808252806020026020018201604052801561170a57816020015b60608152602001906001900390816116f55790505b50905060005b8381101561115e576003600086868481811061172e5761172e61325b565b905060200201358152602001908152602001600020805461174e90613221565b80601f016020809104026020016040519081016040528092919081815260200182805461177a90613221565b80156117c75780601f1061179c576101008083540402835291602001916117c7565b820191906000526020600020905b8154815290600101906020018083116117aa57829003601f168201915b50505050508282815181106117de576117de61325b565b6020908102919091010152600101611710565b6117f9611d78565b6009805460ff1916911515919091179055565b611817848484610c6f565b61182384848484612193565b50505050565b60606000826001600160401b0381111561184557611845612dff565b60405190808252806020026020018201604052801561186e578160200160208202803683370190505b50905060005b8381101561115e5760028585838181106118905761189061325b565b90506020028101906118a29190613271565b6040516118b09291906132b7565b9081526020016040518091039020548282815181106118d1576118d161325b565b6020908102919091010152600101611874565b60606118ef82611cf9565b5060006118fa6122b5565b9050600081511161191a5760405180602001604052806000815250611945565b8061192484612347565b6040516020016119359291906135ab565b6040516020818303038152906040525b9392505050565b6007546001600160a01b031633148061197d57506119686113a4565b6001600160a01b0316336001600160a01b0316145b6119c95760405162461bcd60e51b815260206004820152601f60248201527f4f6e6c7920617574686f72697a6564206d696e7465722063616e206d696e74006044820152606401610a35565b6001600160a01b03831660009081526004602052604090205415611a2f5760405162461bcd60e51b815260206004820152601a60248201527f5573657220616c72656164792068617320612057656c6c2049440000000000006044820152606401610a35565b60028282604051611a419291906132b7565b908152602001604051809103902054600014611a6f5760405162461bcd60e51b8152600401610a35906132c7565b60008282604051602001611a849291906135da565b6040516020818303038152906040528051906020012060001c9050611aa984826123d9565b8060028484604051611abc9291906132b7565b9081526040805160209281900383019020929092556000838152600390915220611ae7838583613359565b506001600160a01b0384166000908152600460205260409020819055611b0e60058261243e565b5080846001600160a01b03167f7ea1622d2b9c729d7c5ba01d40d09e69ce9ffc6fde0b51b3a6d20e3fb83abd7f8585604051611b4b9291906135fe565b60405180910390a350505050565b60018054611b6690613221565b80601f0160208091040260200160405190810160405280929190818152602001828054611b9290613221565b8015611bdf5780601f10611bb457610100808354040283529160200191611bdf565b820191906000526020600020905b815481529060010190602001808311611bc257829003601f168201915b505050505081565b60036020526000908152604090208054611b6690613221565b6001600160a01b0391821660009081527f80bb2b638cc20bc4d0a60d66940f3ab4a00c1d7b313497ca82fb0b4ab00793056020908152604080832093909416825291909152205460ff1690565b611c55611d78565b600054600160a01b900460ff1615611ca35760405162461bcd60e51b8152602060048201526011602482015270155c19dc9859195c94995b9bdd5b98d959607a1b6044820152606401610a35565b600080546001600160a81b031916600160a01b179055565b611cc3611d78565b6001600160a01b038116611ced57604051631e4fbdf760e01b815260006004820152602401610a35565b611cf68161202c565b50565b600080611d058361244a565b90506001600160a01b03811661090257604051637e27328960e01b815260048101849052602401610a35565b60009081527f80bb2b638cc20bc4d0a60d66940f3ab4a00c1d7b313497ca82fb0b4ab007930460205260409020546001600160a01b031690565b610ccc8383836001612484565b33611d816113a4565b6001600160a01b0316146110975760405163118cdaa760e01b8152336004820152602401610a35565b6001600160a01b038216611dd457604051633250574960e11b815260006004820152602401610a35565b6000611de183833361259a565b9050836001600160a01b0316816001600160a01b031614611823576040516364283d7b60e01b81526001600160a01b0380861660048301526024820184905282166044820152606401610a35565b306001600160a01b037f0000000000000000000000000000000000000000000000000000000000000000161480611eb657507f00000000000000000000000000000000000000000000000000000000000000006001600160a01b0316611eaa60008051602061369c833981519152546001600160a01b031690565b6001600160a01b031614155b156110975760405163703e46dd60e11b815260040160405180910390fd5b6000546001600160a01b0316336001600160a01b031614611cf65760405162461bcd60e51b815260206004820152600c60248201526b155b985d5d1a1bdc9a5e995960a21b6044820152606401610a35565b816001600160a01b03166352d1902d6040518163ffffffff1660e01b8152600401602060405180830381865afa925050508015611f80575060408051601f3d908101601f19168201909252611f7d91810190613612565b60015b611fa857604051634c9c8ce360e01b81526001600160a01b0383166004820152602401610a35565b60008051602061369c8339815191528114611fd957604051632a87526960e21b815260048101829052602401610a35565b610ccc83836126a4565b306001600160a01b037f000000000000000000000000000000000000000000000000000000000000000016146110975760405163703e46dd60e11b815260040160405180910390fd5b7f9016d09d72d40fdae2fd8ceac6b6234c7706214fd39c1cd1e609a0528c19930080546001600160a01b031981166001600160a01b03848116918217845560405192169182907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a3505050565b6000610902825490565b60008183106120b65781611945565b5090919050565b600061194583836126fa565b6120d1612724565b6109cc828261276d565b611cc3612724565b611097612724565b60008051602061367c8339815191526001600160a01b03831661212c57604051630b61174360e31b81526001600160a01b0384166004820152602401610a35565b6001600160a01b038481166000818152600584016020908152604080832094881680845294825291829020805460ff191687151590811790915591519182527f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c319101611b4b565b6001600160a01b0383163b1561182357604051630a85bd0160e11b81526001600160a01b0384169063150b7a02906121d590339088908790879060040161362b565b6020604051808303816000875af1925050508015612210575060408051601f3d908101601f1916820190925261220d9181019061365e565b60015b612279573d80801561223e576040519150601f19603f3d011682016040523d82523d6000602084013e612243565b606091505b50805160000361227157604051633250574960e11b81526001600160a01b0385166004820152602401610a35565b805181602001fd5b6001600160e01b03198116630a85bd0160e11b14610a9f57604051633250574960e11b81526001600160a01b0385166004820152602401610a35565b6060600180546122c490613221565b80601f01602080910402602001604051908101604052809291908181526020018280546122f090613221565b801561233d5780601f106123125761010080835404028352916020019161233d565b820191906000526020600020905b81548152906001019060200180831161232057829003601f168201915b5050505050905090565b606060006123548361279e565b60010190506000816001600160401b0381111561237357612373612dff565b6040519080825280601f01601f19166020018201604052801561239d576020820181803683370190505b5090508181016020015b600019016f181899199a1a9b1b9c1cb0b131b232b360811b600a86061a8153600a85049450846123a757509392505050565b6001600160a01b03821661240357604051633250574960e11b815260006004820152602401610a35565b60006124118383600061259a565b90506001600160a01b03811615610ccc576040516339e3563760e11b815260006004820152602401610a35565b60006119458383612876565b60009081527f80bb2b638cc20bc4d0a60d66940f3ab4a00c1d7b313497ca82fb0b4ab007930260205260409020546001600160a01b031690565b60008051602061367c83398151915281806124a757506001600160a01b03831615155b156125695760006124b785611cf9565b90506001600160a01b038416158015906124e35750836001600160a01b0316816001600160a01b031614155b80156124f657506124f48185611c00565b155b1561251f5760405163a9fbf51f60e01b81526001600160a01b0385166004820152602401610a35565b82156125675784866001600160a01b0316826001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45b505b600093845260040160205250506040902080546001600160a01b0319166001600160a01b0392909216919091179055565b600060008051602061367c833981519152816125b58561244a565b90506001600160a01b038416156125d1576125d18185876128c5565b6001600160a01b03811615612611576125ee600086600080612484565b6001600160a01b0381166000908152600383016020526040902080546000190190555b6001600160a01b03861615612642576001600160a01b03861660009081526003830160205260409020805460010190555b600085815260028301602052604080822080546001600160a01b0319166001600160a01b038a811691821790925591518893918516917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef91a495945050505050565b6126ad82612929565b6040516001600160a01b038316907fbc7cd75a20ee27fd9adebab32041f755214dbc6bffa90cc0225b39da2e5c2d3b90600090a28051156126f257610ccc828261298e565b6109cc612a04565b60008260000182815481106127115761271161325b565b9060005260206000200154905092915050565b7ff0c57e16840df040f15088dc2f81fe391c3923bec73e23a9662efc9c229c6a0054600160401b900460ff1661109757604051631afcd79f60e31b815260040160405180910390fd5b612775612724565b60008051602061367c8339815191528061278f84826134c7565b506001810161182383826134c7565b60008072184f03e93ff9f4daa797ed6e38ed64bf6a1f0160401b83106127dd5772184f03e93ff9f4daa797ed6e38ed64bf6a1f0160401b830492506040015b6d04ee2d6d415b85acef81000000008310612809576d04ee2d6d415b85acef8100000000830492506020015b662386f26fc10000831061282757662386f26fc10000830492506010015b6305f5e100831061283f576305f5e100830492506008015b612710831061285357612710830492506004015b60648310612865576064830492506002015b600a83106109025760010192915050565b60008181526001830160205260408120546128bd57508154600181810184556000848152602080822090930184905584548482528286019093526040902091909155610902565b506000610902565b6128d0838383612a23565b610ccc576001600160a01b0383166128fe57604051637e27328960e01b815260048101829052602401610a35565b60405163177e802f60e01b81526001600160a01b038316600482015260248101829052604401610a35565b806001600160a01b03163b60000361295f57604051634c9c8ce360e01b81526001600160a01b0382166004820152602401610a35565b60008051602061369c83398151915280546001600160a01b0319166001600160a01b0392909216919091179055565b6060600080846001600160a01b0316846040516129ab91906132f5565b600060405180830381855af49150503d80600081146129e6576040519150601f19603f3d011682016040523d82523d6000602084013e6129eb565b606091505b50915091506129fb858383612a89565b95945050505050565b34156110975760405163b398979f60e01b815260040160405180910390fd5b60006001600160a01b03831615801590612a815750826001600160a01b0316846001600160a01b03161480612a5d5750612a5d8484611c00565b80612a815750826001600160a01b0316612a7683611d31565b6001600160a01b0316145b949350505050565b606082612a9e57612a9982612ae5565b611945565b8151158015612ab557506001600160a01b0384163b155b15612ade57604051639996b31560e01b81526001600160a01b0385166004820152602401610a35565b5080611945565b805115612af55780518082602001fd5b604051630a12f52160e11b815260040160405180910390fd5b6001600160e01b031981168114611cf657600080fd5b600060208284031215612b3657600080fd5b813561194581612b0e565b60005b83811015612b5c578181015183820152602001612b44565b50506000910152565b60008151808452612b7d816020860160208601612b41565b601f01601f19169290920160200192915050565b6020815260006119456020830184612b65565b600060208284031215612bb657600080fd5b5035919050565b80356001600160a01b0381168114612bd457600080fd5b919050565b60008060408385031215612bec57600080fd5b612bf583612bbd565b946020939093013593505050565b60008083601f840112612c1557600080fd5b5081356001600160401b03811115612c2c57600080fd5b6020830191508360208260051b8501011115612c4757600080fd5b9250929050565b60008060008060408587031215612c6457600080fd5b84356001600160401b0380821115612c7b57600080fd5b612c8788838901612c03565b90965094506020870135915080821115612ca057600080fd5b50612cad87828801612c03565b95989497509550505050565b60008083601f840112612ccb57600080fd5b5081356001600160401b03811115612ce257600080fd5b602083019150836020828501011115612c4757600080fd5b60008060208385031215612d0d57600080fd5b82356001600160401b03811115612d2357600080fd5b612d2f85828601612cb9565b90969095509350505050565b600060208284031215612d4d57600080fd5b61194582612bbd565b600080600060608486031215612d6b57600080fd5b612d7484612bbd565b9250612d8260208501612bbd565b9150604084013590509250925092565b80358015158114612bd457600080fd5b60008060008060608587031215612db857600080fd5b8435935060208501356001600160401b03811115612dd557600080fd5b612de187828801612cb9565b9094509250612df4905060408601612d92565b905092959194509250565b634e487b7160e01b600052604160045260246000fd5b60006001600160401b0380841115612e2f57612e2f612dff565b604051601f8501601f19908116603f01168101908282118183101715612e5757612e57612dff565b81604052809350858152868686011115612e7057600080fd5b858560208301376000602087830101525050509392505050565b600082601f830112612e9b57600080fd5b61194583833560208501612e15565b60008060408385031215612ebd57600080fd5b612ec683612bbd565b915060208301356001600160401b03811115612ee157600080fd5b612eed85828601612e8a565b9150509250929050565b600080600080600060608688031215612f0f57600080fd5b85356001600160401b0380821115612f2657600080fd5b612f3289838a01612c03565b90975095506020880135915080821115612f4b57600080fd5b50612f5888828901612c03565b9094509250612f6b905060408701612d92565b90509295509295909350565b60008060408385031215612f8a57600080fd5b50508035926020909101359150565b6020808252825182820181905260009190848201906040850190845b81811015612fd157835183529284019291840191600101612fb5565b50909695505050505050565b60008060208385031215612ff057600080fd5b82356001600160401b0381111561300657600080fd5b612d2f85828601612c03565b60008060006040848603121561302757600080fd5b8335925060208401356001600160401b0381111561304457600080fd5b61305086828701612cb9565b9497909650939450505050565b6000806040838503121561307057600080fd5b61307983612bbd565b915061308760208401612d92565b90509250929050565b600060208083016020845280855180835260408601915060408160051b87010192506020870160005b828110156130e757603f198886030184526130d5858351612b65565b945092850192908501906001016130b9565b5092979650505050505050565b60006020828403121561310657600080fd5b61194582612d92565b6000806000806080858703121561312557600080fd5b61312e85612bbd565b935061313c60208601612bbd565b92506040850135915060608501356001600160401b0381111561315e57600080fd5b61316a87828801612e8a565b91505092959194509250565b60008060006040848603121561318b57600080fd5b61319484612bbd565b925060208401356001600160401b0381111561304457600080fd5b6000602082840312156131c157600080fd5b81356001600160401b038111156131d757600080fd5b8201601f810184136131e857600080fd5b612a8184823560208401612e15565b6000806040838503121561320a57600080fd5b61321383612bbd565b915061308760208401612bbd565b600181811c9082168061323557607f821691505b60208210810361325557634e487b7160e01b600052602260045260246000fd5b50919050565b634e487b7160e01b600052603260045260246000fd5b6000808335601e1984360301811261328857600080fd5b8301803591506001600160401b038211156132a257600080fd5b602001915036819003821315612c4757600080fd5b8183823760009101908152919050565b60208082526014908201527313985b59481a5cc8185b1c9958591e481d5cd95960621b604082015260600190565b60008251613307818460208701612b41565b9190910192915050565b601f821115610ccc576000816000526020600020601f850160051c8101602086101561333a5750805b601f850160051c820191505b8181101561100157828155600101613346565b6001600160401b0383111561337057613370612dff565b6133848361337e8354613221565b83613311565b6000601f8411600181146133b857600085156133a05750838201355b600019600387901b1c1916600186901b178355610a9f565b600083815260209020601f19861690835b828110156133e957868501358255602094850194600190920191016133c9565b50868210156134065760001960f88860031b161c19848701351681555b505060018560011b0183555050505050565b81835281816020850137506000828201602090810191909152601f909101601f19169091010190565b6040815260006134546040830186612b65565b8281036020840152613467818587613418565b9695505050505050565b634e487b7160e01b600052601160045260246000fd5b8181038181111561090257610902613471565b8082018082111561090257610902613471565b81838237640b9dd95b1b60da1b9101908152600501919050565b81516001600160401b038111156134e0576134e0612dff565b6134f4816134ee8454613221565b84613311565b602080601f83116001811461352957600084156135115750858301515b600019600386901b1c1916600185901b178555611001565b600085815260208120601f198616915b8281101561355857888601518255948401946001909101908401613539565b50858210156135765787850151600019600388901b60f8161c191681555b5050505050600190811b01905550565b6040815260006135996040830185612b65565b82810360208401526129fb8185612b65565b600083516135bd818460208801612b41565b8351908301906135d1818360208801612b41565b01949350505050565b672bb2b63624a2169960c11b81528183600883013760009101600801908152919050565b602081526000612a81602083018486613418565b60006020828403121561362457600080fd5b5051919050565b6001600160a01b038581168252841660208201526040810183905260806060820181905260009061346790830184612b65565b60006020828403121561367057600080fd5b815161194581612b0e56fe80bb2b638cc20bc4d0a60d66940f3ab4a00c1d7b313497ca82fb0b4ab0079300360894a13ba1a3210667c828492db98dca3e2076cc3735a920a3ca505d382bbca26469706673582212205087f71f43a4b8250a2f7bf212963882f61b9e448e094ca49023178f4ed845d664736f6c63430008180033
Deployed Bytecode
0x6080604052600436106102935760003560e01c80638088ba3d1161015a578063b3942cbd116100c1578063da2bfdb11161007a578063da2bfdb1146107f3578063dd00125414610813578063e985e9c51461084b578063ef6bbcd91461086b578063f163d71214610881578063f2fde38b1461089657600080fd5b8063b3942cbd1461073e578063b88d4fde1461075e578063b95040691461077e578063c87b56dd1461079e578063d0def521146107be578063d547cfb7146107de57600080fd5b80639cdc803e116101135780639cdc803e14610666578063a22cb46514610686578063ad3cb1cc146106a6578063ae6dd375146106d7578063af26974514610704578063b0660c3d1461072457600080fd5b80638088ba3d146105b95780638110c50f146105e65780638129fc1c146106075780638b0d0a2f1461061c5780638da5cb5b1461063c57806395d89b411461065157600080fd5b8063318824bd116101fe5780636352211e116101b75780636352211e146104f55780636511bf2e1461051557806370a0823114610542578063715018a61461056257806371664310146105775780637e7e81cd1461058c57600080fd5b8063318824bd1461044957806342842e0e1461046d5780634f1ef2861461048d57806352d1902d146104a057806354af082b146104b557806355f804b3146104d557600080fd5b80631928b7c3116102505780631928b7c3146103895780631b878f71146103a95780631ba538cd146103c957806323b872dd146103e957806325a05408146104095780632d89147a1461042957600080fd5b806301ffc9a71461029857806306fdde03146102cd578063081812fc146102ef578063095ea7b3146103275780630e774650146103495780631400d1e414610369575b600080fd5b3480156102a457600080fd5b506102b86102b3366004612b24565b6108b6565b60405190151581526020015b60405180910390f35b3480156102d957600080fd5b506102e2610908565b6040516102c49190612b91565b3480156102fb57600080fd5b5061030f61030a366004612ba4565b6109ac565b6040516001600160a01b0390911681526020016102c4565b34801561033357600080fd5b50610347610342366004612bd9565b6109c1565b005b34801561035557600080fd5b50610347610364366004612c4e565b6109d0565b34801561037557600080fd5b506102b8610384366004612cfa565b610aa6565b34801561039557600080fd5b506103476103a4366004612d3b565b610bcd565b3480156103b557600080fd5b506103476103c4366004612d3b565b610bf7565b3480156103d557600080fd5b5060075461030f906001600160a01b031681565b3480156103f557600080fd5b50610347610404366004612d56565b610c6f565b34801561041557600080fd5b50610347610424366004612ba4565b610cd1565b34801561043557600080fd5b50610347610444366004612da2565b610cde565b34801561045557600080fd5b5061045f600a5481565b6040519081526020016102c4565b34801561047957600080fd5b50610347610488366004612d56565b610ee9565b61034761049b366004612eaa565b610f04565b3480156104ac57600080fd5b5061045f610f1f565b3480156104c157600080fd5b506103476104d0366004612ef7565b610f3c565b3480156104e157600080fd5b506103476104f0366004612cfa565b611009565b34801561050157600080fd5b5061030f610510366004612ba4565b61101e565b34801561052157600080fd5b5061045f610530366004612d3b565b60046020526000908152604090205481565b34801561054e57600080fd5b5061045f61055d366004612d3b565b611029565b34801561056e57600080fd5b50610347611085565b34801561058357600080fd5b5061045f611099565b34801561059857600080fd5b506105ac6105a7366004612f77565b6110aa565b6040516102c49190612f99565b3480156105c557600080fd5b5061045f6105d4366004612ba4565b600b6020526000908152604090205481565b3480156105f257600080fd5b506000546102b890600160a01b900460ff1681565b34801561061357600080fd5b50610347611166565b34801561062857600080fd5b506105ac610637366004612fdd565b6112e0565b34801561064857600080fd5b5061030f6113a4565b34801561065d57600080fd5b506102e26113d2565b34801561067257600080fd5b50610347610681366004613012565b611411565b34801561069257600080fd5b506103476106a136600461305d565b6116b0565b3480156106b257600080fd5b506102e2604051806040016040528060058152602001640352e302e360dc1b81525081565b3480156106e357600080fd5b506106f76106f2366004612fdd565b6116bb565b6040516102c49190613090565b34801561071057600080fd5b5060005461030f906001600160a01b031681565b34801561073057600080fd5b506009546102b89060ff1681565b34801561074a57600080fd5b506103476107593660046130f4565b6117f1565b34801561076a57600080fd5b5061034761077936600461310f565b61180c565b34801561078a57600080fd5b506105ac610799366004612fdd565b611829565b3480156107aa57600080fd5b506102e26107b9366004612ba4565b6118e4565b3480156107ca57600080fd5b506103476107d9366004613176565b61194c565b3480156107ea57600080fd5b506102e2611b59565b3480156107ff57600080fd5b506102e261080e366004612ba4565b611be7565b34801561081f57600080fd5b5061045f61082e3660046131af565b805160208183018101805160028252928201919093012091525481565b34801561085757600080fd5b506102b86108663660046131f7565b611c00565b34801561087757600080fd5b5061045f60085481565b34801561088d57600080fd5b50610347611c4d565b3480156108a257600080fd5b506103476108b1366004612d3b565b611cbb565b60006001600160e01b031982166380ac58cd60e01b14806108e757506001600160e01b03198216635b5e139f60e01b145b8061090257506301ffc9a760e01b6001600160e01b03198316145b92915050565b60008051602061367c833981519152805460609190819061092890613221565b80601f016020809104026020016040519081016040528092919081815260200182805461095490613221565b80156109a15780601f10610976576101008083540402835291602001916109a1565b820191906000526020600020905b81548152906001019060200180831161098457829003601f168201915b505050505091505090565b60006109b782611cf9565b5061090282611d31565b6109cc828233611d6b565b5050565b828114610a3e5760405162461bcd60e51b815260206004820152603160248201527f557365727320616e64206e616d657320617272617973206d757374206265206f6044820152700cc40e8d0ca40e6c2daca40d8cadccee8d607b1b60648201526084015b60405180910390fd5b60005b83811015610a9f57610a97858583818110610a5e57610a5e61325b565b9050602002016020810190610a739190612d3b565b848484818110610a8557610a8561325b565b90506020028101906107d99190613271565b600101610a41565b5050505050565b60008083838080601f016020809104026020016040519081016040528093929190818152602001838380828437600092019190915250508251929350506006909110905080610af65750600f8151115b15610b05576000915050610902565b60005b8151811015610bc2576000828281518110610b2557610b2561325b565b01602001516001600160f81b0319169050600360fc1b8110801590610b585750603960f81b6001600160f81b0319821611155b158015610b8e5750606160f81b6001600160f81b0319821610801590610b8c5750603d60f91b6001600160f81b0319821611155b155b8015610ba85750605f60f81b6001600160f81b0319821614155b15610bb95760009350505050610902565b50600101610b08565b506001949350505050565b610bd5611d78565b600780546001600160a01b0319166001600160a01b0392909216919091179055565b610bff611d78565b600054600160a01b900460ff1615610c4d5760405162461bcd60e51b8152602060048201526011602482015270155c19dc9859195c94995b9bdd5b98d959607a1b6044820152606401610a35565b600080546001600160a01b0319166001600160a01b0392909216919091179055565b60095460ff16610cc15760405162461bcd60e51b815260206004820152601f60248201527f546f6b656e207472616e736665727320617265206e6f7420616c6c6f776564006044820152606401610a35565b610ccc838383611daa565b505050565b610cd9611d78565b600a55565b6007546001600160a01b0316331480610d0f5750610cfa6113a4565b6001600160a01b0316336001600160a01b0316145b610d655760405162461bcd60e51b815260206004820152602160248201527f4f6e6c7920617574686f72697a6564206d696e7465722063616e2072656e616d6044820152606560f81b6064820152608401610a35565b80610daa5760028383604051610d7c9291906132b7565b908152602001604051809103902054600014610daa5760405162461bcd60e51b8152600401610a35906132c7565b60008481526003602052604081208054610dc390613221565b80601f0160208091040260200160405190810160405280929190818152602001828054610def90613221565b8015610e3c5780601f10610e1157610100808354040283529160200191610e3c565b820191906000526020600020905b815481529060010190602001808311610e1f57829003601f168201915b505050505090506000600282604051610e5591906132f5565b9081526020016040518091039020819055508460028585604051610e7a9291906132b7565b9081526040805160209281900383019020929092556000878152600390915220610ea5848683613359565b50847f4ee483724ee2e1d87b33699407b990a44ef86363f699d0ae950df9a4ba236e24828686604051610eda93929190613441565b60405180910390a25050505050565b610ccc8383836040518060200160405280600081525061180c565b610f0c611e2f565b610f1582611ed4565b6109cc8282611f26565b6000610f29611fe3565b5060008051602061369c83398151915290565b838214610fa85760405162461bcd60e51b815260206004820152603460248201527f746f6b656e49647320616e64206e616d657320617272617973206d75737420626044820152730ca40decc40e8d0ca40e6c2daca40d8cadccee8d60631b6064820152608401610a35565b60005b8481101561100157610ff9868683818110610fc857610fc861325b565b90506020020135858584818110610fe157610fe161325b565b9050602002810190610ff39190613271565b85610cde565b600101610fab565b505050505050565b611011611d78565b6001610ccc828483613359565b600061090282611cf9565b600060008051602061367c8339815191526001600160a01b038316611064576040516322718ad960e21b815260006004820152602401610a35565b6001600160a01b039092166000908152600390920160205250604090205490565b61108d611d78565b611097600061202c565b565b60006110a5600561209d565b905090565b60606110bf826110ba600561209d565b6120a7565b915060006110cd8484613487565b6001600160401b038111156110e4576110e4612dff565b60405190808252806020026020018201604052801561110d578160200160208202803683370190505b50905060005b61111d8585613487565b81101561115e57611139611131868361349a565b6005906120bd565b82828151811061114b5761114b61325b565b6020908102919091010152600101611113565b509392505050565b7ff0c57e16840df040f15088dc2f81fe391c3923bec73e23a9662efc9c229c6a008054600160401b810460ff1615906001600160401b03166000811580156111ab5750825b90506000826001600160401b031660011480156111c75750303b155b9050811580156111d5575080155b156111f35760405163f92ee8a960e01b815260040160405180910390fd5b845467ffffffffffffffff19166001178555831561121d57845460ff60401b1916600160401b1785555b6112616040518060400160405280600781526020016615d95b1b08125160ca1b8152506040518060400160405280600381526020016215d25160ea1b8152506120c9565b61126a336120db565b6112726120e3565b60078054336001600160a01b031991821681179092556000805490911690911790558315610a9f57845460ff60401b19168555604051600181527fc7f505b2f371ae2175ee4913f4499e1f2633a7b5936321eed1cdaeb6115181d29060200160405180910390a15050505050565b60606000826001600160401b038111156112fc576112fc612dff565b604051908082528060200260200182016040528015611325578160200160208202803683370190505b50905060005b8381101561115e57600460008686848181106113495761134961325b565b905060200201602081019061135e9190612d3b565b6001600160a01b03166001600160a01b03168152602001908152602001600020548282815181106113915761139161325b565b602090810291909101015260010161132b565b7f9016d09d72d40fdae2fd8ceac6b6234c7706214fd39c1cd1e609a0528c199300546001600160a01b031690565b7f80bb2b638cc20bc4d0a60d66940f3ab4a00c1d7b313497ca82fb0b4ab0079301805460609160008051602061367c8339815191529161092890613221565b3361141b8461101e565b6001600160a01b0316146114665760405162461bcd60e51b81526020600482015260126024820152712737ba1037bbb732b91037b3103a37b5b2b760711b6044820152606401610a35565b6000838152600b6020526040812080546001929061148590849061349a565b9091555050600a546000848152600b602052604090205411156114dc5760405162461bcd60e51b815260206004820152600f60248201526e4e6f2072656e616d652071756f746160881b6044820152606401610a35565b6114e68282610aa6565b6115215760405162461bcd60e51b815260206004820152600c60248201526b496e76616c6964206e616d6560a01b6044820152606401610a35565b600082826040516020016115369291906134ad565b604051602081830303815290604052905060028160405161155791906132f5565b9081526020016040518091039020546000146115855760405162461bcd60e51b8152600401610a35906132c7565b6000848152600360205260408120805461159e90613221565b80601f01602080910402602001604051908101604052809291908181526020018280546115ca90613221565b80156116175780601f106115ec57610100808354040283529160200191611617565b820191906000526020600020905b8154815290600101906020018083116115fa57829003601f168201915b50505050509050600060028260405161163091906132f5565b9081526020016040518091039020819055508460028360405161165391906132f5565b908152604080516020928190038301902092909255600087815260039091522061167d83826134c7565b50847f4ee483724ee2e1d87b33699407b990a44ef86363f699d0ae950df9a4ba236e248284604051610eda929190613586565b6109cc3383836120eb565b60606000826001600160401b038111156116d7576116d7612dff565b60405190808252806020026020018201604052801561170a57816020015b60608152602001906001900390816116f55790505b50905060005b8381101561115e576003600086868481811061172e5761172e61325b565b905060200201358152602001908152602001600020805461174e90613221565b80601f016020809104026020016040519081016040528092919081815260200182805461177a90613221565b80156117c75780601f1061179c576101008083540402835291602001916117c7565b820191906000526020600020905b8154815290600101906020018083116117aa57829003601f168201915b50505050508282815181106117de576117de61325b565b6020908102919091010152600101611710565b6117f9611d78565b6009805460ff1916911515919091179055565b611817848484610c6f565b61182384848484612193565b50505050565b60606000826001600160401b0381111561184557611845612dff565b60405190808252806020026020018201604052801561186e578160200160208202803683370190505b50905060005b8381101561115e5760028585838181106118905761189061325b565b90506020028101906118a29190613271565b6040516118b09291906132b7565b9081526020016040518091039020548282815181106118d1576118d161325b565b6020908102919091010152600101611874565b60606118ef82611cf9565b5060006118fa6122b5565b9050600081511161191a5760405180602001604052806000815250611945565b8061192484612347565b6040516020016119359291906135ab565b6040516020818303038152906040525b9392505050565b6007546001600160a01b031633148061197d57506119686113a4565b6001600160a01b0316336001600160a01b0316145b6119c95760405162461bcd60e51b815260206004820152601f60248201527f4f6e6c7920617574686f72697a6564206d696e7465722063616e206d696e74006044820152606401610a35565b6001600160a01b03831660009081526004602052604090205415611a2f5760405162461bcd60e51b815260206004820152601a60248201527f5573657220616c72656164792068617320612057656c6c2049440000000000006044820152606401610a35565b60028282604051611a419291906132b7565b908152602001604051809103902054600014611a6f5760405162461bcd60e51b8152600401610a35906132c7565b60008282604051602001611a849291906135da565b6040516020818303038152906040528051906020012060001c9050611aa984826123d9565b8060028484604051611abc9291906132b7565b9081526040805160209281900383019020929092556000838152600390915220611ae7838583613359565b506001600160a01b0384166000908152600460205260409020819055611b0e60058261243e565b5080846001600160a01b03167f7ea1622d2b9c729d7c5ba01d40d09e69ce9ffc6fde0b51b3a6d20e3fb83abd7f8585604051611b4b9291906135fe565b60405180910390a350505050565b60018054611b6690613221565b80601f0160208091040260200160405190810160405280929190818152602001828054611b9290613221565b8015611bdf5780601f10611bb457610100808354040283529160200191611bdf565b820191906000526020600020905b815481529060010190602001808311611bc257829003601f168201915b505050505081565b60036020526000908152604090208054611b6690613221565b6001600160a01b0391821660009081527f80bb2b638cc20bc4d0a60d66940f3ab4a00c1d7b313497ca82fb0b4ab00793056020908152604080832093909416825291909152205460ff1690565b611c55611d78565b600054600160a01b900460ff1615611ca35760405162461bcd60e51b8152602060048201526011602482015270155c19dc9859195c94995b9bdd5b98d959607a1b6044820152606401610a35565b600080546001600160a81b031916600160a01b179055565b611cc3611d78565b6001600160a01b038116611ced57604051631e4fbdf760e01b815260006004820152602401610a35565b611cf68161202c565b50565b600080611d058361244a565b90506001600160a01b03811661090257604051637e27328960e01b815260048101849052602401610a35565b60009081527f80bb2b638cc20bc4d0a60d66940f3ab4a00c1d7b313497ca82fb0b4ab007930460205260409020546001600160a01b031690565b610ccc8383836001612484565b33611d816113a4565b6001600160a01b0316146110975760405163118cdaa760e01b8152336004820152602401610a35565b6001600160a01b038216611dd457604051633250574960e11b815260006004820152602401610a35565b6000611de183833361259a565b9050836001600160a01b0316816001600160a01b031614611823576040516364283d7b60e01b81526001600160a01b0380861660048301526024820184905282166044820152606401610a35565b306001600160a01b037f00000000000000000000000008a38f202c52a8baa6060a826afa4631356d85ef161480611eb657507f00000000000000000000000008a38f202c52a8baa6060a826afa4631356d85ef6001600160a01b0316611eaa60008051602061369c833981519152546001600160a01b031690565b6001600160a01b031614155b156110975760405163703e46dd60e11b815260040160405180910390fd5b6000546001600160a01b0316336001600160a01b031614611cf65760405162461bcd60e51b815260206004820152600c60248201526b155b985d5d1a1bdc9a5e995960a21b6044820152606401610a35565b816001600160a01b03166352d1902d6040518163ffffffff1660e01b8152600401602060405180830381865afa925050508015611f80575060408051601f3d908101601f19168201909252611f7d91810190613612565b60015b611fa857604051634c9c8ce360e01b81526001600160a01b0383166004820152602401610a35565b60008051602061369c8339815191528114611fd957604051632a87526960e21b815260048101829052602401610a35565b610ccc83836126a4565b306001600160a01b037f00000000000000000000000008a38f202c52a8baa6060a826afa4631356d85ef16146110975760405163703e46dd60e11b815260040160405180910390fd5b7f9016d09d72d40fdae2fd8ceac6b6234c7706214fd39c1cd1e609a0528c19930080546001600160a01b031981166001600160a01b03848116918217845560405192169182907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a3505050565b6000610902825490565b60008183106120b65781611945565b5090919050565b600061194583836126fa565b6120d1612724565b6109cc828261276d565b611cc3612724565b611097612724565b60008051602061367c8339815191526001600160a01b03831661212c57604051630b61174360e31b81526001600160a01b0384166004820152602401610a35565b6001600160a01b038481166000818152600584016020908152604080832094881680845294825291829020805460ff191687151590811790915591519182527f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c319101611b4b565b6001600160a01b0383163b1561182357604051630a85bd0160e11b81526001600160a01b0384169063150b7a02906121d590339088908790879060040161362b565b6020604051808303816000875af1925050508015612210575060408051601f3d908101601f1916820190925261220d9181019061365e565b60015b612279573d80801561223e576040519150601f19603f3d011682016040523d82523d6000602084013e612243565b606091505b50805160000361227157604051633250574960e11b81526001600160a01b0385166004820152602401610a35565b805181602001fd5b6001600160e01b03198116630a85bd0160e11b14610a9f57604051633250574960e11b81526001600160a01b0385166004820152602401610a35565b6060600180546122c490613221565b80601f01602080910402602001604051908101604052809291908181526020018280546122f090613221565b801561233d5780601f106123125761010080835404028352916020019161233d565b820191906000526020600020905b81548152906001019060200180831161232057829003601f168201915b5050505050905090565b606060006123548361279e565b60010190506000816001600160401b0381111561237357612373612dff565b6040519080825280601f01601f19166020018201604052801561239d576020820181803683370190505b5090508181016020015b600019016f181899199a1a9b1b9c1cb0b131b232b360811b600a86061a8153600a85049450846123a757509392505050565b6001600160a01b03821661240357604051633250574960e11b815260006004820152602401610a35565b60006124118383600061259a565b90506001600160a01b03811615610ccc576040516339e3563760e11b815260006004820152602401610a35565b60006119458383612876565b60009081527f80bb2b638cc20bc4d0a60d66940f3ab4a00c1d7b313497ca82fb0b4ab007930260205260409020546001600160a01b031690565b60008051602061367c83398151915281806124a757506001600160a01b03831615155b156125695760006124b785611cf9565b90506001600160a01b038416158015906124e35750836001600160a01b0316816001600160a01b031614155b80156124f657506124f48185611c00565b155b1561251f5760405163a9fbf51f60e01b81526001600160a01b0385166004820152602401610a35565b82156125675784866001600160a01b0316826001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45b505b600093845260040160205250506040902080546001600160a01b0319166001600160a01b0392909216919091179055565b600060008051602061367c833981519152816125b58561244a565b90506001600160a01b038416156125d1576125d18185876128c5565b6001600160a01b03811615612611576125ee600086600080612484565b6001600160a01b0381166000908152600383016020526040902080546000190190555b6001600160a01b03861615612642576001600160a01b03861660009081526003830160205260409020805460010190555b600085815260028301602052604080822080546001600160a01b0319166001600160a01b038a811691821790925591518893918516917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef91a495945050505050565b6126ad82612929565b6040516001600160a01b038316907fbc7cd75a20ee27fd9adebab32041f755214dbc6bffa90cc0225b39da2e5c2d3b90600090a28051156126f257610ccc828261298e565b6109cc612a04565b60008260000182815481106127115761271161325b565b9060005260206000200154905092915050565b7ff0c57e16840df040f15088dc2f81fe391c3923bec73e23a9662efc9c229c6a0054600160401b900460ff1661109757604051631afcd79f60e31b815260040160405180910390fd5b612775612724565b60008051602061367c8339815191528061278f84826134c7565b506001810161182383826134c7565b60008072184f03e93ff9f4daa797ed6e38ed64bf6a1f0160401b83106127dd5772184f03e93ff9f4daa797ed6e38ed64bf6a1f0160401b830492506040015b6d04ee2d6d415b85acef81000000008310612809576d04ee2d6d415b85acef8100000000830492506020015b662386f26fc10000831061282757662386f26fc10000830492506010015b6305f5e100831061283f576305f5e100830492506008015b612710831061285357612710830492506004015b60648310612865576064830492506002015b600a83106109025760010192915050565b60008181526001830160205260408120546128bd57508154600181810184556000848152602080822090930184905584548482528286019093526040902091909155610902565b506000610902565b6128d0838383612a23565b610ccc576001600160a01b0383166128fe57604051637e27328960e01b815260048101829052602401610a35565b60405163177e802f60e01b81526001600160a01b038316600482015260248101829052604401610a35565b806001600160a01b03163b60000361295f57604051634c9c8ce360e01b81526001600160a01b0382166004820152602401610a35565b60008051602061369c83398151915280546001600160a01b0319166001600160a01b0392909216919091179055565b6060600080846001600160a01b0316846040516129ab91906132f5565b600060405180830381855af49150503d80600081146129e6576040519150601f19603f3d011682016040523d82523d6000602084013e6129eb565b606091505b50915091506129fb858383612a89565b95945050505050565b34156110975760405163b398979f60e01b815260040160405180910390fd5b60006001600160a01b03831615801590612a815750826001600160a01b0316846001600160a01b03161480612a5d5750612a5d8484611c00565b80612a815750826001600160a01b0316612a7683611d31565b6001600160a01b0316145b949350505050565b606082612a9e57612a9982612ae5565b611945565b8151158015612ab557506001600160a01b0384163b155b15612ade57604051639996b31560e01b81526001600160a01b0385166004820152602401610a35565b5080611945565b805115612af55780518082602001fd5b604051630a12f52160e11b815260040160405180910390fd5b6001600160e01b031981168114611cf657600080fd5b600060208284031215612b3657600080fd5b813561194581612b0e565b60005b83811015612b5c578181015183820152602001612b44565b50506000910152565b60008151808452612b7d816020860160208601612b41565b601f01601f19169290920160200192915050565b6020815260006119456020830184612b65565b600060208284031215612bb657600080fd5b5035919050565b80356001600160a01b0381168114612bd457600080fd5b919050565b60008060408385031215612bec57600080fd5b612bf583612bbd565b946020939093013593505050565b60008083601f840112612c1557600080fd5b5081356001600160401b03811115612c2c57600080fd5b6020830191508360208260051b8501011115612c4757600080fd5b9250929050565b60008060008060408587031215612c6457600080fd5b84356001600160401b0380821115612c7b57600080fd5b612c8788838901612c03565b90965094506020870135915080821115612ca057600080fd5b50612cad87828801612c03565b95989497509550505050565b60008083601f840112612ccb57600080fd5b5081356001600160401b03811115612ce257600080fd5b602083019150836020828501011115612c4757600080fd5b60008060208385031215612d0d57600080fd5b82356001600160401b03811115612d2357600080fd5b612d2f85828601612cb9565b90969095509350505050565b600060208284031215612d4d57600080fd5b61194582612bbd565b600080600060608486031215612d6b57600080fd5b612d7484612bbd565b9250612d8260208501612bbd565b9150604084013590509250925092565b80358015158114612bd457600080fd5b60008060008060608587031215612db857600080fd5b8435935060208501356001600160401b03811115612dd557600080fd5b612de187828801612cb9565b9094509250612df4905060408601612d92565b905092959194509250565b634e487b7160e01b600052604160045260246000fd5b60006001600160401b0380841115612e2f57612e2f612dff565b604051601f8501601f19908116603f01168101908282118183101715612e5757612e57612dff565b81604052809350858152868686011115612e7057600080fd5b858560208301376000602087830101525050509392505050565b600082601f830112612e9b57600080fd5b61194583833560208501612e15565b60008060408385031215612ebd57600080fd5b612ec683612bbd565b915060208301356001600160401b03811115612ee157600080fd5b612eed85828601612e8a565b9150509250929050565b600080600080600060608688031215612f0f57600080fd5b85356001600160401b0380821115612f2657600080fd5b612f3289838a01612c03565b90975095506020880135915080821115612f4b57600080fd5b50612f5888828901612c03565b9094509250612f6b905060408701612d92565b90509295509295909350565b60008060408385031215612f8a57600080fd5b50508035926020909101359150565b6020808252825182820181905260009190848201906040850190845b81811015612fd157835183529284019291840191600101612fb5565b50909695505050505050565b60008060208385031215612ff057600080fd5b82356001600160401b0381111561300657600080fd5b612d2f85828601612c03565b60008060006040848603121561302757600080fd5b8335925060208401356001600160401b0381111561304457600080fd5b61305086828701612cb9565b9497909650939450505050565b6000806040838503121561307057600080fd5b61307983612bbd565b915061308760208401612d92565b90509250929050565b600060208083016020845280855180835260408601915060408160051b87010192506020870160005b828110156130e757603f198886030184526130d5858351612b65565b945092850192908501906001016130b9565b5092979650505050505050565b60006020828403121561310657600080fd5b61194582612d92565b6000806000806080858703121561312557600080fd5b61312e85612bbd565b935061313c60208601612bbd565b92506040850135915060608501356001600160401b0381111561315e57600080fd5b61316a87828801612e8a565b91505092959194509250565b60008060006040848603121561318b57600080fd5b61319484612bbd565b925060208401356001600160401b0381111561304457600080fd5b6000602082840312156131c157600080fd5b81356001600160401b038111156131d757600080fd5b8201601f810184136131e857600080fd5b612a8184823560208401612e15565b6000806040838503121561320a57600080fd5b61321383612bbd565b915061308760208401612bbd565b600181811c9082168061323557607f821691505b60208210810361325557634e487b7160e01b600052602260045260246000fd5b50919050565b634e487b7160e01b600052603260045260246000fd5b6000808335601e1984360301811261328857600080fd5b8301803591506001600160401b038211156132a257600080fd5b602001915036819003821315612c4757600080fd5b8183823760009101908152919050565b60208082526014908201527313985b59481a5cc8185b1c9958591e481d5cd95960621b604082015260600190565b60008251613307818460208701612b41565b9190910192915050565b601f821115610ccc576000816000526020600020601f850160051c8101602086101561333a5750805b601f850160051c820191505b8181101561100157828155600101613346565b6001600160401b0383111561337057613370612dff565b6133848361337e8354613221565b83613311565b6000601f8411600181146133b857600085156133a05750838201355b600019600387901b1c1916600186901b178355610a9f565b600083815260209020601f19861690835b828110156133e957868501358255602094850194600190920191016133c9565b50868210156134065760001960f88860031b161c19848701351681555b505060018560011b0183555050505050565b81835281816020850137506000828201602090810191909152601f909101601f19169091010190565b6040815260006134546040830186612b65565b8281036020840152613467818587613418565b9695505050505050565b634e487b7160e01b600052601160045260246000fd5b8181038181111561090257610902613471565b8082018082111561090257610902613471565b81838237640b9dd95b1b60da1b9101908152600501919050565b81516001600160401b038111156134e0576134e0612dff565b6134f4816134ee8454613221565b84613311565b602080601f83116001811461352957600084156135115750858301515b600019600386901b1c1916600185901b178555611001565b600085815260208120601f198616915b8281101561355857888601518255948401946001909101908401613539565b50858210156135765787850151600019600388901b60f8161c191681555b5050505050600190811b01905550565b6040815260006135996040830185612b65565b82810360208401526129fb8185612b65565b600083516135bd818460208801612b41565b8351908301906135d1818360208801612b41565b01949350505050565b672bb2b63624a2169960c11b81528183600883013760009101600801908152919050565b602081526000612a81602083018486613418565b60006020828403121561362457600080fd5b5051919050565b6001600160a01b038581168252841660208201526040810183905260806060820181905260009061346790830184612b65565b60006020828403121561367057600080fd5b815161194581612b0e56fe80bb2b638cc20bc4d0a60d66940f3ab4a00c1d7b313497ca82fb0b4ab0079300360894a13ba1a3210667c828492db98dca3e2076cc3735a920a3ca505d382bbca26469706673582212205087f71f43a4b8250a2f7bf212963882f61b9e448e094ca49023178f4ed845d664736f6c63430008180033
Loading...
Loading
Loading...
Loading
Loading...
Loading
Loading...
Loading
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.