More Info
Private Name Tags
ContractCreator
TokenTracker
Latest 25 from a total of 452 transactions
Transaction Hash |
Method
|
Block
|
From
|
To
|
|||||
---|---|---|---|---|---|---|---|---|---|
Grant Role | 20646994 | 156 days ago | IN | 0 ETH | 0.00013525 | ||||
Initialize | 20645770 | 156 days ago | IN | 0 ETH | 0.00083536 | ||||
Set Approval For... | 18985971 | 388 days ago | IN | 0 ETH | 0.00055462 | ||||
Set Approval For... | 18339438 | 479 days ago | IN | 0 ETH | 0.00010533 | ||||
Set Approval For... | 18339432 | 479 days ago | IN | 0 ETH | 0.00011986 | ||||
Set Approval For... | 18036254 | 522 days ago | IN | 0 ETH | 0.00075114 | ||||
Set Approval For... | 17886294 | 543 days ago | IN | 0 ETH | 0.00075672 | ||||
Set Approval For... | 17886285 | 543 days ago | IN | 0 ETH | 0.0007769 | ||||
Set Approval For... | 17820177 | 552 days ago | IN | 0 ETH | 0.00040527 | ||||
Set Approval For... | 17726723 | 565 days ago | IN | 0 ETH | 0.00032686 | ||||
Set Approval For... | 17726716 | 565 days ago | IN | 0 ETH | 0.00033187 | ||||
Set Approval For... | 17689880 | 570 days ago | IN | 0 ETH | 0.00036751 | ||||
Set Approval For... | 17614023 | 581 days ago | IN | 0 ETH | 0.00061495 | ||||
Set Approval For... | 17380407 | 614 days ago | IN | 0 ETH | 0.00132902 | ||||
Set Approval For... | 17380402 | 614 days ago | IN | 0 ETH | 0.0011726 | ||||
Set Approval For... | 17380400 | 614 days ago | IN | 0 ETH | 0.00123021 | ||||
Set Approval For... | 17370510 | 615 days ago | IN | 0 ETH | 0.00102645 | ||||
Set Approval For... | 17333537 | 620 days ago | IN | 0 ETH | 0.00062908 | ||||
Set Approval For... | 17306013 | 624 days ago | IN | 0 ETH | 0.00069876 | ||||
Set Approval For... | 17276028 | 628 days ago | IN | 0 ETH | 0.00085625 | ||||
Set Approval For... | 17215846 | 637 days ago | IN | 0 ETH | 0.00190255 | ||||
Set Approval For... | 17190518 | 640 days ago | IN | 0 ETH | 0.00220034 | ||||
Set Approval For... | 17190479 | 640 days ago | IN | 0 ETH | 0.00172576 | ||||
Set Approval For... | 17153343 | 646 days ago | IN | 0 ETH | 0.00084663 | ||||
Set Approval For... | 17153342 | 646 days ago | IN | 0 ETH | 0.00087374 |
View more zero value Internal Transactions in Advanced View mode
Advanced mode:
Loading...
Loading
This contract may be a proxy contract. Click on More Options and select Is this a proxy? to confirm and enable the "Read as Proxy" & "Write as Proxy" tabs.
Contract Source Code Verified (Exact Match)
Contract Name:
Catgirl
Compiler Version
v0.8.20+commit.a1b79de6
Optimization Enabled:
Yes with 200 runs
Other Settings:
shanghai EvmVersion
Contract Source Code (Solidity Standard Json-Input format)
// SPDX-License-Identifier: MIT pragma solidity ^0.8.20; import "@openzeppelin/contracts-upgradeable/token/ERC721/ERC721Upgradeable.sol"; import "@openzeppelin/contracts-upgradeable/utils/PausableUpgradeable.sol"; import "@openzeppelin/contracts-upgradeable/access/AccessControlUpgradeable.sol"; import "@openzeppelin/contracts-upgradeable/token/ERC721/extensions/ERC721BurnableUpgradeable.sol"; import "@openzeppelin/contracts-upgradeable/proxy/utils/Initializable.sol"; import "@openzeppelin/contracts-upgradeable/proxy/utils/UUPSUpgradeable.sol"; import "../../libs/UniformRandomNumber.sol"; contract Catgirl is Initializable, ERC721Upgradeable, PausableUpgradeable, AccessControlUpgradeable, ERC721BurnableUpgradeable, UUPSUpgradeable { // @dev roles bytes32 public constant PAUSER_ROLE = keccak256("PAUSER_ROLE"); bytes32 public constant MINTER_ROLE = keccak256("MINTER_ROLE"); bytes32 public constant SETTER_ROLE = keccak256("SETTER_ROLE"); bytes32 public constant UPGRADER_ROLE = keccak256("UPGRADER_ROLE"); uint256 constant INVERSE_BASIC_POINT = 10000; uint32 constant MAX_NYA_SCORE = 100; uint32 constant MAX_RARITY = 5; // @dev Reborn allow or not uint256 canReborn; /* Counter for Token ID */ uint256 private _tokenIdCounter; string public baseURI; struct CatgirlDetails { uint32 characterId; uint32 season; uint8 rarity; uint32 nyaScore; } /** * @dev setting for drop rates */ struct BoxSetting { uint256 maxPurchase; uint32[] probabilities; mapping(uint8 => uint32[]) tierToCharacters; } mapping(uint64 => BoxSetting) public boxToSettings; mapping(uint256 => CatgirlDetails) private catgirls; //------------------------------------------------------------------------- // EVENTS //------------------------------------------------------------------------- event CatgirlBorn( uint256 tokenId, uint32 indexed characterId, uint32 indexed season, uint8 indexed rarity, uint32 nyaScore, uint256 bornAt ); event CatgirlReborn( uint256 indexed tokenId, uint32 characterId, uint32 indexed season, uint8 indexed rarity, uint32 nyaScore, uint256 bornAt ); event BoxOpened(address to, CatgirlDetails[] _tokenIds); /** * @dev initialize function of contract. */ function initialize(address _defaultAdmin) public initializer { __ERC721_init("Catgirl", "CATGIRL"); __CatgirlNFT_init_unchained(); __Pausable_init(); __AccessControl_init(); __ERC721Burnable_init(); __UUPSUpgradeable_init(); _grantRole(DEFAULT_ADMIN_ROLE, _defaultAdmin); _grantRole(PAUSER_ROLE, _defaultAdmin); _grantRole(MINTER_ROLE, _defaultAdmin); _grantRole(SETTER_ROLE, _defaultAdmin); _grantRole(UPGRADER_ROLE, _defaultAdmin); } /** * @dev Init setting of contract */ function __CatgirlNFT_init_unchained() internal onlyInitializing { baseURI = "http://api.catgirl.io/nft/catgirls/"; canReborn = 1; } /** * @dev pause the contract */ function pause() public onlyRole(PAUSER_ROLE) { _pause(); } /** * @dev unpause the contract */ function unpause() public onlyRole(PAUSER_ROLE) { _unpause(); } /** * @dev return current base URI */ function _baseURI() internal view override returns (string memory) { return baseURI; } /** * * @param newImplementation new address of implementation logic */ function _authorizeUpgrade( address newImplementation ) internal override onlyRole(UPGRADER_ROLE) {} /** * @notice get token URI of token ID * @param tokenId token ID need to query */ function tokenURI( uint256 tokenId ) public view override returns (string memory) { return super.tokenURI(tokenId); } /** * * @param interfaceId interface ID */ function supportsInterface( bytes4 interfaceId ) public view override( ERC721Upgradeable, AccessControlUpgradeable ) returns (bool) { return super.supportsInterface(interfaceId); } /** * * @dev check contract is currently allow reborn or not */ modifier allowReborn() { require(canReborn != 0, "Reborn is not allowed"); _; } /** * * @param _tokenId token ID need to check existed or not */ modifier mustExist(uint256 _tokenId) { require(ownerOf(_tokenId) != address(0), "approved query for nonexistent token"); _; } /** * @notice get all information of NFT * @param tokenId token Id of NFT */ function getCatgirl( uint256 tokenId ) external view returns (CatgirlDetails memory catgirl) { catgirl = catgirls[tokenId]; } /** * @param boxId box id * @return maxPurchase maximum number of box can be claim * @return probabilities probabilities of box */ function getBoxSetting( uint64 boxId ) external view returns (uint256, uint32[] memory) { BoxSetting storage box = boxToSettings[boxId]; return (box.maxPurchase, box.probabilities); } /** * @dev get tier to character by boxId and tier * @param boxId boxId want to query * @param tier tier */ function getTierToCharacter( uint64 boxId, uint8 tier ) external view returns (uint32[] memory) { BoxSetting storage box = boxToSettings[boxId]; return (box.tierToCharacters[tier]); } //------------------------------------------------------------------------- // STATE MODIFYING FUNCTIONS //------------------------------------------------------------------------- /** * @dev update new setting for box setting by id * @param _boxId Id of box setting, base on token type * @param _maxQuantity max number of box can be claim * @param _probabilities list of probability * @param _tierToCharacters list of tierToCharacters */ function setOptionSettings( uint64 _boxId, uint256 _maxQuantity, uint32[] memory _probabilities, uint32[][] memory _tierToCharacters ) public onlyRole(SETTER_ROLE) { require( _probabilities.length == MAX_RARITY, "CATGIRL: Length must be the same" ); require( _probabilities.length == _tierToCharacters.length, "CATGIRL: Length must be the same" ); BoxSetting storage settings = boxToSettings[_boxId]; settings.maxPurchase = _maxQuantity; settings.probabilities = _probabilities; for (uint8 i = 0; i < _tierToCharacters.length; i++) { settings.tierToCharacters[i] = _tierToCharacters[ i ]; } } /** * @dev set new base uri of token * @param _uri new ui */ function setBaseURI( string memory _uri ) public onlyRole(DEFAULT_ADMIN_ROLE) { baseURI = _uri; } /** * * @param _canReborn set rebornable of NFT. 0 for disable, 1 for enable */ function setReborn(uint256 _canReborn) public onlyRole(DEFAULT_ADMIN_ROLE) { canReborn = _canReborn; } /** * @dev burn multiple NFT * @param tokenIds List of token ID need to burn */ function burnMultiple(uint[] memory tokenIds) public { for (uint256 i = 0; i < tokenIds.length; i++) { burn(tokenIds[i]); } } function mintByMananger( bytes[] memory callDatas ) external onlyRole(MINTER_ROLE) whenNotPaused { for(uint8 i = 0; i < callDatas.length; i++) { (address to, uint32 characterId, uint32 season, uint8 rarity, uint32 nyaScore) = abi .decode( callDatas[i], (address, uint32, uint32, uint8, uint32) ); safeMint(to, rarity, nyaScore, season, characterId); } } /** * * @param _to Address get NFT * @param boxIds Box Id * @param _season season of NFT * @param _numberOfPendingBoxes List of number of box attach with random factor * @param _rand List of radom factor from ChainLink * @param totalBox Total Of box need to be opened */ function openPendingBoxes( address _to, uint64[] calldata boxIds, uint32 _season, uint8[] calldata _numberOfPendingBoxes, uint[] calldata _rand, uint256 totalBox ) external onlyRole(MINTER_ROLE) whenNotPaused { CatgirlDetails[] memory tokenIds = new CatgirlDetails[](totalBox); address to = _to; uint8 count = 0; require( _numberOfPendingBoxes.length == _rand.length, "Length random not macth!" ); for (uint8 i = 0; i < _numberOfPendingBoxes.length; i++) { BoxSetting storage setting = boxToSettings[boxIds[i]]; for (uint8 j = 0; j < _numberOfPendingBoxes[i]; j++) { CatgirlDetails storage catgirl = internalMint( to, _season, setting, uint256(keccak256(abi.encode(_rand[i], j))) ); tokenIds[count] = catgirl; count++; } } emit BoxOpened(_to, tokenIds); } /** * * @param to Address get NFT * @param season season of NFT * @param setting Boxsetting * @param _rand Random factor to decide rarity, character of NFT */ function internalMint( address to, uint32 season, BoxSetting storage setting, uint256 _rand ) internal returns (CatgirlDetails storage) { uint256 value = UniformRandomNumber.uniform(_rand, INVERSE_BASIC_POINT); uint8 rarity; for (uint8 i = 0; i < MAX_RARITY; i++) { uint32 chance = setting.probabilities[i]; if (value < chance) { rarity = i; break; } value = value - chance; } uint32 nyaScore = uint32( (UniformRandomNumber.uniform(uint256(keccak256(abi.encode(_rand, 1))), MAX_NYA_SCORE)) + 1 ); uint32[] storage characters = setting.tierToCharacters[rarity]; uint32 characterId = characters[ UniformRandomNumber.uniform(uint256(keccak256(abi.encode(_rand, 2))), characters.length) ]; return safeMint(to, rarity, nyaScore, season, characterId); } /** * @dev safe mint NFT to an address * @param to Address would received NFT * @param rarity Rarity of NFT * @param nyaScore NYA score of NFT * @param season season of NFT * @param characterId character ID of NFT */ function safeMint( address to, uint8 rarity, uint32 nyaScore, uint32 season, uint32 characterId ) internal returns (CatgirlDetails storage) { uint256 current = _tokenIdCounter; _safeMint(to, current); _tokenIdCounter++; catgirls[current] = CatgirlDetails(characterId, season, rarity, nyaScore); emit CatgirlBorn( current, characterId, season, rarity, nyaScore, block.timestamp ); return catgirls[current]; } /** * @dev Mint NFT to an address * @param to Address would received NFT * @param rarity Rarity of NFT * @param nyaScore NYA score of NFT * @param season season of NFT * @param characterId character ID of NFT */ function externalMint( address to, uint8 rarity, uint32 nyaScore, uint32 season, uint32 characterId ) external onlyRole(MINTER_ROLE) whenNotPaused returns (CatgirlDetails memory) { return safeMint(to, rarity, nyaScore, season, characterId); } /** * @notice reborn a catgirl * @param _tokenId tokenId of NFT * @param _nyaScore new NYA score of NFT * @param _rarity new rarity of NFT * @param _season new season of NFT * @param _characterId new charater ID of NFT */ function rebornCatgirl( uint256 _tokenId, uint32 _nyaScore, uint8 _rarity, uint32 _season, uint32 _characterId ) external whenNotPaused onlyRole(MINTER_ROLE) mustExist(_tokenId) allowReborn { catgirls[_tokenId].season = _season; catgirls[_tokenId].nyaScore = _nyaScore; catgirls[_tokenId].rarity = _rarity; catgirls[_tokenId].characterId = _characterId; emit CatgirlReborn( _tokenId, _characterId, _season, _rarity, _nyaScore, block.timestamp ); } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v5.0.0) (access/AccessControl.sol) pragma solidity ^0.8.20; import {IAccessControl} from "@openzeppelin/contracts/access/IAccessControl.sol"; import {ContextUpgradeable} from "../utils/ContextUpgradeable.sol"; import {ERC165Upgradeable} from "../utils/introspection/ERC165Upgradeable.sol"; import {Initializable} from "../proxy/utils/Initializable.sol"; /** * @dev Contract module that allows children to implement role-based access * control mechanisms. This is a lightweight version that doesn't allow enumerating role * members except through off-chain means by accessing the contract event logs. Some * applications may benefit from on-chain enumerability, for those cases see * {AccessControlEnumerable}. * * Roles are referred to by their `bytes32` identifier. These should be exposed * in the external API and be unique. The best way to achieve this is by * using `public constant` hash digests: * * ```solidity * bytes32 public constant MY_ROLE = keccak256("MY_ROLE"); * ``` * * Roles can be used to represent a set of permissions. To restrict access to a * function call, use {hasRole}: * * ```solidity * function foo() public { * require(hasRole(MY_ROLE, msg.sender)); * ... * } * ``` * * Roles can be granted and revoked dynamically via the {grantRole} and * {revokeRole} functions. Each role has an associated admin role, and only * accounts that have a role's admin role can call {grantRole} and {revokeRole}. * * By default, the admin role for all roles is `DEFAULT_ADMIN_ROLE`, which means * that only accounts with this role will be able to grant or revoke other * roles. More complex role relationships can be created by using * {_setRoleAdmin}. * * WARNING: The `DEFAULT_ADMIN_ROLE` is also its own admin: it has permission to * grant and revoke this role. Extra precautions should be taken to secure * accounts that have been granted it. We recommend using {AccessControlDefaultAdminRules} * to enforce additional security measures for this role. */ abstract contract AccessControlUpgradeable is Initializable, ContextUpgradeable, IAccessControl, ERC165Upgradeable { struct RoleData { mapping(address account => bool) hasRole; bytes32 adminRole; } bytes32 public constant DEFAULT_ADMIN_ROLE = 0x00; /// @custom:storage-location erc7201:openzeppelin.storage.AccessControl struct AccessControlStorage { mapping(bytes32 role => RoleData) _roles; } // keccak256(abi.encode(uint256(keccak256("openzeppelin.storage.AccessControl")) - 1)) & ~bytes32(uint256(0xff)) bytes32 private constant AccessControlStorageLocation = 0x02dd7bc7dec4dceedda775e58dd541e08a116c6c53815c0bd028192f7b626800; function _getAccessControlStorage() private pure returns (AccessControlStorage storage $) { assembly { $.slot := AccessControlStorageLocation } } /** * @dev Modifier that checks that an account has a specific role. Reverts * with an {AccessControlUnauthorizedAccount} error including the required role. */ modifier onlyRole(bytes32 role) { _checkRole(role); _; } function __AccessControl_init() internal onlyInitializing { } function __AccessControl_init_unchained() internal onlyInitializing { } /** * @dev See {IERC165-supportsInterface}. */ function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) { return interfaceId == type(IAccessControl).interfaceId || super.supportsInterface(interfaceId); } /** * @dev Returns `true` if `account` has been granted `role`. */ function hasRole(bytes32 role, address account) public view virtual returns (bool) { AccessControlStorage storage $ = _getAccessControlStorage(); return $._roles[role].hasRole[account]; } /** * @dev Reverts with an {AccessControlUnauthorizedAccount} error if `_msgSender()` * is missing `role`. Overriding this function changes the behavior of the {onlyRole} modifier. */ function _checkRole(bytes32 role) internal view virtual { _checkRole(role, _msgSender()); } /** * @dev Reverts with an {AccessControlUnauthorizedAccount} error if `account` * is missing `role`. */ function _checkRole(bytes32 role, address account) internal view virtual { if (!hasRole(role, account)) { revert AccessControlUnauthorizedAccount(account, role); } } /** * @dev Returns the admin role that controls `role`. See {grantRole} and * {revokeRole}. * * To change a role's admin, use {_setRoleAdmin}. */ function getRoleAdmin(bytes32 role) public view virtual returns (bytes32) { AccessControlStorage storage $ = _getAccessControlStorage(); return $._roles[role].adminRole; } /** * @dev Grants `role` to `account`. * * If `account` had not been already granted `role`, emits a {RoleGranted} * event. * * Requirements: * * - the caller must have ``role``'s admin role. * * May emit a {RoleGranted} event. */ function grantRole(bytes32 role, address account) public virtual onlyRole(getRoleAdmin(role)) { _grantRole(role, account); } /** * @dev Revokes `role` from `account`. * * If `account` had been granted `role`, emits a {RoleRevoked} event. * * Requirements: * * - the caller must have ``role``'s admin role. * * May emit a {RoleRevoked} event. */ function revokeRole(bytes32 role, address account) public virtual onlyRole(getRoleAdmin(role)) { _revokeRole(role, account); } /** * @dev Revokes `role` from the calling account. * * Roles are often managed via {grantRole} and {revokeRole}: this function's * purpose is to provide a mechanism for accounts to lose their privileges * if they are compromised (such as when a trusted device is misplaced). * * If the calling account had been revoked `role`, emits a {RoleRevoked} * event. * * Requirements: * * - the caller must be `callerConfirmation`. * * May emit a {RoleRevoked} event. */ function renounceRole(bytes32 role, address callerConfirmation) public virtual { if (callerConfirmation != _msgSender()) { revert AccessControlBadConfirmation(); } _revokeRole(role, callerConfirmation); } /** * @dev Sets `adminRole` as ``role``'s admin role. * * Emits a {RoleAdminChanged} event. */ function _setRoleAdmin(bytes32 role, bytes32 adminRole) internal virtual { AccessControlStorage storage $ = _getAccessControlStorage(); bytes32 previousAdminRole = getRoleAdmin(role); $._roles[role].adminRole = adminRole; emit RoleAdminChanged(role, previousAdminRole, adminRole); } /** * @dev Attempts to grant `role` to `account` and returns a boolean indicating if `role` was granted. * * Internal function without access restriction. * * May emit a {RoleGranted} event. */ function _grantRole(bytes32 role, address account) internal virtual returns (bool) { AccessControlStorage storage $ = _getAccessControlStorage(); if (!hasRole(role, account)) { $._roles[role].hasRole[account] = true; emit RoleGranted(role, account, _msgSender()); return true; } else { return false; } } /** * @dev Attempts to revoke `role` to `account` and returns a boolean indicating if `role` was revoked. * * Internal function without access restriction. * * May emit a {RoleRevoked} event. */ function _revokeRole(bytes32 role, address account) internal virtual returns (bool) { AccessControlStorage storage $ = _getAccessControlStorage(); if (hasRole(role, account)) { $._roles[role].hasRole[account] = false; emit RoleRevoked(role, account, _msgSender()); return true; } else { return false; } } }
// 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.0) (token/ERC721/extensions/ERC721Burnable.sol) pragma solidity ^0.8.20; import {ERC721Upgradeable} from "../ERC721Upgradeable.sol"; import {ContextUpgradeable} from "../../../utils/ContextUpgradeable.sol"; import {Initializable} from "../../../proxy/utils/Initializable.sol"; /** * @title ERC721 Burnable Token * @dev ERC721 Token that can be burned (destroyed). */ abstract contract ERC721BurnableUpgradeable is Initializable, ContextUpgradeable, ERC721Upgradeable { function __ERC721Burnable_init() internal onlyInitializing { } function __ERC721Burnable_init_unchained() internal onlyInitializing { } /** * @dev Burns `tokenId`. See {ERC721-_burn}. * * Requirements: * * - The caller must own `tokenId` or be an approved operator. */ function burn(uint256 tokenId) public virtual { // 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. _update(address(0), tokenId, _msgSender()); } }
// 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) (utils/Pausable.sol) pragma solidity ^0.8.20; import {ContextUpgradeable} from "../utils/ContextUpgradeable.sol"; import {Initializable} from "../proxy/utils/Initializable.sol"; /** * @dev Contract module which allows children to implement an emergency stop * mechanism that can be triggered by an authorized account. * * This module is used through inheritance. It will make available the * modifiers `whenNotPaused` and `whenPaused`, which can be applied to * the functions of your contract. Note that they will not be pausable by * simply including this module, only once the modifiers are put in place. */ abstract contract PausableUpgradeable is Initializable, ContextUpgradeable { /// @custom:storage-location erc7201:openzeppelin.storage.Pausable struct PausableStorage { bool _paused; } // keccak256(abi.encode(uint256(keccak256("openzeppelin.storage.Pausable")) - 1)) & ~bytes32(uint256(0xff)) bytes32 private constant PausableStorageLocation = 0xcd5ed15c6e187e77e9aee88184c21f4f2182ab5827cb3b7e07fbedcd63f03300; function _getPausableStorage() private pure returns (PausableStorage storage $) { assembly { $.slot := PausableStorageLocation } } /** * @dev Emitted when the pause is triggered by `account`. */ event Paused(address account); /** * @dev Emitted when the pause is lifted by `account`. */ event Unpaused(address account); /** * @dev The operation failed because the contract is paused. */ error EnforcedPause(); /** * @dev The operation failed because the contract is not paused. */ error ExpectedPause(); /** * @dev Initializes the contract in unpaused state. */ function __Pausable_init() internal onlyInitializing { __Pausable_init_unchained(); } function __Pausable_init_unchained() internal onlyInitializing { PausableStorage storage $ = _getPausableStorage(); $._paused = false; } /** * @dev Modifier to make a function callable only when the contract is not paused. * * Requirements: * * - The contract must not be paused. */ modifier whenNotPaused() { _requireNotPaused(); _; } /** * @dev Modifier to make a function callable only when the contract is paused. * * Requirements: * * - The contract must be paused. */ modifier whenPaused() { _requirePaused(); _; } /** * @dev Returns true if the contract is paused, and false otherwise. */ function paused() public view virtual returns (bool) { PausableStorage storage $ = _getPausableStorage(); return $._paused; } /** * @dev Throws if the contract is paused. */ function _requireNotPaused() internal view virtual { if (paused()) { revert EnforcedPause(); } } /** * @dev Throws if the contract is not paused. */ function _requirePaused() internal view virtual { if (!paused()) { revert ExpectedPause(); } } /** * @dev Triggers stopped state. * * Requirements: * * - The contract must not be paused. */ function _pause() internal virtual whenNotPaused { PausableStorage storage $ = _getPausableStorage(); $._paused = true; emit Paused(_msgSender()); } /** * @dev Returns to normal state. * * Requirements: * * - The contract must be paused. */ function _unpause() internal virtual whenPaused { PausableStorage storage $ = _getPausableStorage(); $._paused = false; emit Unpaused(_msgSender()); } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v5.0.0) (access/IAccessControl.sol) pragma solidity ^0.8.20; /** * @dev External interface of AccessControl declared to support ERC165 detection. */ interface IAccessControl { /** * @dev The `account` is missing a role. */ error AccessControlUnauthorizedAccount(address account, bytes32 neededRole); /** * @dev The caller of a function is not the expected one. * * NOTE: Don't confuse with {AccessControlUnauthorizedAccount}. */ error AccessControlBadConfirmation(); /** * @dev Emitted when `newAdminRole` is set as ``role``'s admin role, replacing `previousAdminRole` * * `DEFAULT_ADMIN_ROLE` is the starting admin for all roles, despite * {RoleAdminChanged} not being emitted signaling this. */ event RoleAdminChanged(bytes32 indexed role, bytes32 indexed previousAdminRole, bytes32 indexed newAdminRole); /** * @dev Emitted when `account` is granted `role`. * * `sender` is the account that originated the contract call, an admin role * bearer except when using {AccessControl-_setupRole}. */ event RoleGranted(bytes32 indexed role, address indexed account, address indexed sender); /** * @dev Emitted when `account` is revoked `role`. * * `sender` is the account that originated the contract call: * - if using `revokeRole`, it is the admin role bearer * - if using `renounceRole`, it is the role bearer (i.e. `account`) */ event RoleRevoked(bytes32 indexed role, address indexed account, address indexed sender); /** * @dev Returns `true` if `account` has been granted `role`. */ function hasRole(bytes32 role, address account) external view returns (bool); /** * @dev Returns the admin role that controls `role`. See {grantRole} and * {revokeRole}. * * To change a role's admin, use {AccessControl-_setRoleAdmin}. */ function getRoleAdmin(bytes32 role) external view returns (bytes32); /** * @dev Grants `role` to `account`. * * If `account` had not been already granted `role`, emits a {RoleGranted} * event. * * Requirements: * * - the caller must have ``role``'s admin role. */ function grantRole(bytes32 role, address account) external; /** * @dev Revokes `role` from `account`. * * If `account` had been granted `role`, emits a {RoleRevoked} event. * * Requirements: * * - the caller must have ``role``'s admin role. */ function revokeRole(bytes32 role, address account) external; /** * @dev Revokes `role` from the calling account. * * Roles are often managed via {grantRole} and {revokeRole}: this function's * purpose is to provide a mechanism for accounts to lose their privileges * if they are compromised (such as when a trusted device is misplaced). * * If the calling account had been granted `role`, emits a {RoleRevoked} * event. * * Requirements: * * - the caller must be `callerConfirmation`. */ function renounceRole(bytes32 role, address callerConfirmation) external; }
// 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)); } }
pragma solidity ^0.8.20; library UniformRandomNumber { /// @notice Select a random number without modulo bias using a random seed and upper bound /// @param _entropy The seed for randomness /// @param _upperBound The upper bound of the desired number /// @return A random number less than the _upperBound function uniform(uint256 _entropy, uint256 _upperBound) internal pure returns (uint256) { require(_upperBound > 0, "UniformRand/min-bound"); unchecked { uint256 min = (~_upperBound + 1) % _upperBound; uint256 random = _entropy; while (true) { if (random >= min) { break; } random = uint256(keccak256(abi.encodePacked(random))); } return random % _upperBound; } } }
{ "optimizer": { "enabled": true, "runs": 200, "details": { "peephole": true, "inliner": true, "jumpdestRemover": true, "orderLiterals": true, "deduplicate": true, "cse": true, "constantOptimizer": true, "yul": true, "yulDetails": { "stackAllocation": true } } }, "evmVersion": "shanghai", "outputSelection": { "*": { "*": [ "evm.bytecode", "evm.deployedBytecode", "devdoc", "userdoc", "metadata", "abi" ] } }, "libraries": {} }
Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
[{"inputs":[],"name":"AccessControlBadConfirmation","type":"error"},{"inputs":[{"internalType":"address","name":"account","type":"address"},{"internalType":"bytes32","name":"neededRole","type":"bytes32"}],"name":"AccessControlUnauthorizedAccount","type":"error"},{"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":"EnforcedPause","type":"error"},{"inputs":[],"name":"ExpectedPause","type":"error"},{"inputs":[],"name":"FailedInnerCall","type":"error"},{"inputs":[],"name":"InvalidInitialization","type":"error"},{"inputs":[],"name":"NotInitializing","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":"address","name":"to","type":"address"},{"components":[{"internalType":"uint32","name":"characterId","type":"uint32"},{"internalType":"uint32","name":"season","type":"uint32"},{"internalType":"uint8","name":"rarity","type":"uint8"},{"internalType":"uint32","name":"nyaScore","type":"uint32"}],"indexed":false,"internalType":"struct Catgirl.CatgirlDetails[]","name":"_tokenIds","type":"tuple[]"}],"name":"BoxOpened","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"tokenId","type":"uint256"},{"indexed":true,"internalType":"uint32","name":"characterId","type":"uint32"},{"indexed":true,"internalType":"uint32","name":"season","type":"uint32"},{"indexed":true,"internalType":"uint8","name":"rarity","type":"uint8"},{"indexed":false,"internalType":"uint32","name":"nyaScore","type":"uint32"},{"indexed":false,"internalType":"uint256","name":"bornAt","type":"uint256"}],"name":"CatgirlBorn","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"},{"indexed":false,"internalType":"uint32","name":"characterId","type":"uint32"},{"indexed":true,"internalType":"uint32","name":"season","type":"uint32"},{"indexed":true,"internalType":"uint8","name":"rarity","type":"uint8"},{"indexed":false,"internalType":"uint32","name":"nyaScore","type":"uint32"},{"indexed":false,"internalType":"uint256","name":"bornAt","type":"uint256"}],"name":"CatgirlReborn","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint64","name":"version","type":"uint64"}],"name":"Initialized","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"account","type":"address"}],"name":"Paused","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"bytes32","name":"role","type":"bytes32"},{"indexed":true,"internalType":"bytes32","name":"previousAdminRole","type":"bytes32"},{"indexed":true,"internalType":"bytes32","name":"newAdminRole","type":"bytes32"}],"name":"RoleAdminChanged","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"bytes32","name":"role","type":"bytes32"},{"indexed":true,"internalType":"address","name":"account","type":"address"},{"indexed":true,"internalType":"address","name":"sender","type":"address"}],"name":"RoleGranted","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"bytes32","name":"role","type":"bytes32"},{"indexed":true,"internalType":"address","name":"account","type":"address"},{"indexed":true,"internalType":"address","name":"sender","type":"address"}],"name":"RoleRevoked","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":false,"internalType":"address","name":"account","type":"address"}],"name":"Unpaused","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"implementation","type":"address"}],"name":"Upgraded","type":"event"},{"inputs":[],"name":"DEFAULT_ADMIN_ROLE","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"MINTER_ROLE","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"PAUSER_ROLE","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"SETTER_ROLE","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"UPGRADER_ROLE","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"UPGRADE_INTERFACE_VERSION","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"baseURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint64","name":"","type":"uint64"}],"name":"boxToSettings","outputs":[{"internalType":"uint256","name":"maxPurchase","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"burn","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256[]","name":"tokenIds","type":"uint256[]"}],"name":"burnMultiple","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint8","name":"rarity","type":"uint8"},{"internalType":"uint32","name":"nyaScore","type":"uint32"},{"internalType":"uint32","name":"season","type":"uint32"},{"internalType":"uint32","name":"characterId","type":"uint32"}],"name":"externalMint","outputs":[{"components":[{"internalType":"uint32","name":"characterId","type":"uint32"},{"internalType":"uint32","name":"season","type":"uint32"},{"internalType":"uint8","name":"rarity","type":"uint8"},{"internalType":"uint32","name":"nyaScore","type":"uint32"}],"internalType":"struct Catgirl.CatgirlDetails","name":"","type":"tuple"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint64","name":"boxId","type":"uint64"}],"name":"getBoxSetting","outputs":[{"internalType":"uint256","name":"","type":"uint256"},{"internalType":"uint32[]","name":"","type":"uint32[]"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getCatgirl","outputs":[{"components":[{"internalType":"uint32","name":"characterId","type":"uint32"},{"internalType":"uint32","name":"season","type":"uint32"},{"internalType":"uint8","name":"rarity","type":"uint8"},{"internalType":"uint32","name":"nyaScore","type":"uint32"}],"internalType":"struct Catgirl.CatgirlDetails","name":"catgirl","type":"tuple"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bytes32","name":"role","type":"bytes32"}],"name":"getRoleAdmin","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint64","name":"boxId","type":"uint64"},{"internalType":"uint8","name":"tier","type":"uint8"}],"name":"getTierToCharacter","outputs":[{"internalType":"uint32[]","name":"","type":"uint32[]"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bytes32","name":"role","type":"bytes32"},{"internalType":"address","name":"account","type":"address"}],"name":"grantRole","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes32","name":"role","type":"bytes32"},{"internalType":"address","name":"account","type":"address"}],"name":"hasRole","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_defaultAdmin","type":"address"}],"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":"bytes[]","name":"callDatas","type":"bytes[]"}],"name":"mintByMananger","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_to","type":"address"},{"internalType":"uint64[]","name":"boxIds","type":"uint64[]"},{"internalType":"uint32","name":"_season","type":"uint32"},{"internalType":"uint8[]","name":"_numberOfPendingBoxes","type":"uint8[]"},{"internalType":"uint256[]","name":"_rand","type":"uint256[]"},{"internalType":"uint256","name":"totalBox","type":"uint256"}],"name":"openPendingBoxes","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"pause","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"paused","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"proxiableUUID","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_tokenId","type":"uint256"},{"internalType":"uint32","name":"_nyaScore","type":"uint32"},{"internalType":"uint8","name":"_rarity","type":"uint8"},{"internalType":"uint32","name":"_season","type":"uint32"},{"internalType":"uint32","name":"_characterId","type":"uint32"}],"name":"rebornCatgirl","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes32","name":"role","type":"bytes32"},{"internalType":"address","name":"callerConfirmation","type":"address"}],"name":"renounceRole","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes32","name":"role","type":"bytes32"},{"internalType":"address","name":"account","type":"address"}],"name":"revokeRole","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_uri","type":"string"}],"name":"setBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint64","name":"_boxId","type":"uint64"},{"internalType":"uint256","name":"_maxQuantity","type":"uint256"},{"internalType":"uint32[]","name":"_probabilities","type":"uint32[]"},{"internalType":"uint32[][]","name":"_tierToCharacters","type":"uint32[][]"}],"name":"setOptionSettings","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_canReborn","type":"uint256"}],"name":"setReborn","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"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":[],"name":"unpause","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newImplementation","type":"address"},{"internalType":"bytes","name":"data","type":"bytes"}],"name":"upgradeToAndCall","outputs":[],"stateMutability":"payable","type":"function"}]
Contract Creation Code
60a060405230608052348015610013575f80fd5b5060805161392061003a5f395f8181611c8a01528181611cb30152611e1401526139205ff3fe60806040526004361061025e575f3560e01c80636c0360eb1161013f578063b88d4fde116100b3578063d539139311610078578063d5391393146107c0578063d547741f146107e0578063de5a5fa7146107ff578063e63ab1e91461081e578063e985e9c51461083e578063f72c0d8b1461085d575f80fd5b8063b88d4fde1461070c578063c4d66de81461072b578063c6f27b6a1461074a578063c87b56dd14610775578063d52c1b2d14610794575f80fd5b8063a0cca8d711610104578063a0cca8d714610639578063a2011b3f14610658578063a217fddf1461068b578063a22cb4651461069e578063a4fbbf9b146106bd578063ad3cb1cc146106dc575f80fd5b80636c0360eb146105bf57806370a08231146105d35780638456cb59146105f257806391d148541461060657806395d89b4114610625575f80fd5b806342842e0e116101d65780635c975abb1161019b5780635c975abb1461046f5780636352211e1461049257806364827624146104b15780636855dc84146104d05780636944fe1f146105735780636ab49a5b146105a0575f80fd5b806342842e0e146103eb57806342966c681461040a5780634f1ef2861461042957806352d1902d1461043c57806355f804b314610450575f80fd5b806323b872dd1161022757806323b872dd1461032e578063248a9ca31461034d5780632f2ff15d1461037a57806336568abe146103995780633ab1403c146103b85780633f4ba83a146103d7575f80fd5b806240e7cd1461026257806301ffc9a71461028357806306fdde03146102b7578063081812fc146102d8578063095ea7b31461030f575b5f80fd5b34801561026d575f80fd5b5061028161027c366004612bf7565b610890565b005b34801561028e575f80fd5b506102a261029d366004612ccb565b610b4d565b60405190151581526020015b60405180910390f35b3480156102c2575f80fd5b506102cb610b5d565b6040516102ae9190612d33565b3480156102e3575f80fd5b506102f76102f2366004612d45565b610bfe565b6040516001600160a01b0390911681526020016102ae565b34801561031a575f80fd5b50610281610329366004612d5c565b610c12565b348015610339575f80fd5b50610281610348366004612d86565b610c21565b348015610358575f80fd5b5061036c610367366004612d45565b610caa565b6040519081526020016102ae565b348015610385575f80fd5b50610281610394366004612dc4565b610cca565b3480156103a4575f80fd5b506102816103b3366004612dc4565b610ce6565b3480156103c3575f80fd5b506102816103d2366004612ee4565b610d1e565b3480156103e2575f80fd5b50610281610e8b565b3480156103f6575f80fd5b50610281610405366004612d86565b610ead565b348015610415575f80fd5b50610281610424366004612d45565b610ec7565b61028161043736600461303d565b610ed2565b348015610447575f80fd5b5061036c610eed565b34801561045b575f80fd5b5061028161046a366004613089565b610f08565b34801561047a575f80fd5b505f805160206138cb8339815191525460ff166102a2565b34801561049d575f80fd5b506102f76104ac366004612d45565b610f1e565b3480156104bc575f80fd5b506102816104cb366004612d45565b610f28565b3480156104db575f80fd5b506105666104ea366004612d45565b604080516080810182525f808252602082018190529181018290526060810191909152505f908152600460209081526040918290208251608081018452905463ffffffff8082168352640100000000820481169383019390935260ff600160401b82041693820193909352600160481b90920416606082015290565b6040516102ae91906130cd565b34801561057e575f80fd5b5061059261058d366004613107565b610f37565b6040516102ae92919061315f565b3480156105ab575f80fd5b506102816105ba366004613177565b610fde565b3480156105ca575f80fd5b506102cb61101d565b3480156105de575f80fd5b5061036c6105ed366004613202565b6110a9565b3480156105fd575f80fd5b50610281611101565b348015610611575f80fd5b506102a2610620366004612dc4565b611120565b348015610630575f80fd5b506102cb611156565b348015610644575f80fd5b5061028161065336600461321d565b611194565b348015610663575f80fd5b5061036c7f61c92169ef077349011ff0b1383c894d86c5f0b41d986366b58a6cf31e93beda81565b348015610696575f80fd5b5061036c5f81565b3480156106a9575f80fd5b506102816106b83660046132c7565b611226565b3480156106c8575f80fd5b506105666106d7366004613305565b611231565b3480156106e7575f80fd5b506102cb604051806040016040528060058152602001640352e302e360dc1b81525081565b348015610717575f80fd5b50610281610726366004613372565b6112ce565b348015610736575f80fd5b50610281610745366004613202565b6112e5565b348015610755575f80fd5b5061036c610764366004613107565b60036020525f908152604090205481565b348015610780575f80fd5b506102cb61078f366004612d45565b6114e9565b34801561079f575f80fd5b506107b36107ae3660046133d9565b6114f4565b6040516102ae9190613403565b3480156107cb575f80fd5b5061036c5f8051602061388b83398151915281565b3480156107eb575f80fd5b506102816107fa366004612dc4565b611599565b34801561080a575f80fd5b50610281610819366004613415565b6115b5565b348015610829575f80fd5b5061036c5f8051602061384883398151915281565b348015610849575f80fd5b506102a261085836600461344b565b611753565b348015610868575f80fd5b5061036c7f189ab7a9244df0848122154315af71fe140f3db0fe014031783b0946b8c9d2e381565b5f8051602061388b8339815191526108a78161179f565b6108af6117a9565b5f826001600160401b038111156108c8576108c8612e0d565b60405190808252806020026020018201604052801561091857816020015b604080516080810182525f8082526020808301829052928201819052606082015282525f199092019101816108e65790505b5090508a5f8786146109715760405162461bcd60e51b815260206004820152601860248201527f4c656e6774682072616e646f6d206e6f74206d6163746821000000000000000060448201526064015b60405180910390fd5b5f5b60ff8116891115610b04575f60035f8f8f8560ff1681811061099757610997613477565b90506020020160208101906109ac9190613107565b6001600160401b03166001600160401b031681526020019081526020015f2090505f5b8b8b8460ff168181106109e4576109e4613477565b90506020020160208101906109f9919061348b565b60ff168160ff161015610aef575f610a64868f858e8e8960ff16818110610a2257610a22613477565b9050602002013586604051602001610a4792919091825260ff16602082015260400190565b604051602081830303815290604052805190602001205f1c6117db565b60408051608081018252825463ffffffff808216835264010000000082048116602084015260ff600160401b8304811694840194909452600160481b90910416606082015289519293509189918816908110610ac257610ac2613477565b60200260200101819052508480610ad8906134ba565b955050508080610ae7906134ba565b9150506109cf565b50508080610afc906134ba565b915050610973565b507faece38b14bec9c8de6456ceec1ad7fedee079e30da3ab08489df66f83f7482268d84604051610b369291906134d8565b60405180910390a150505050505050505050505050565b5f610b5782611961565b92915050565b5f805160206138088339815191528054606091908190610b7c90613563565b80601f0160208091040260200160405190810160405280929190818152602001828054610ba890613563565b8015610bf35780601f10610bca57610100808354040283529160200191610bf3565b820191905f5260205f20905b815481529060010190602001808311610bd657829003601f168201915b505050505091505090565b5f610c0882611985565b50610b57826119bc565b610c1d8282336119f5565b5050565b6001600160a01b038216610c4a57604051633250574960e11b81525f6004820152602401610968565b5f610c56838333611a02565b9050836001600160a01b0316816001600160a01b031614610ca4576040516364283d7b60e01b81526001600160a01b0380861660048301526024820184905282166044820152606401610968565b50505050565b5f9081525f805160206138ab833981519152602052604090206001015490565b610cd382610caa565b610cdc8161179f565b610ca48383611b06565b6001600160a01b0381163314610d0f5760405163334bd91960e11b815260040160405180910390fd5b610d198282611ba7565b505050565b7f61c92169ef077349011ff0b1383c894d86c5f0b41d986366b58a6cf31e93beda610d488161179f565b8251600514610d995760405162461bcd60e51b815260206004820181905260248201527f4341544749524c3a204c656e677468206d757374206265207468652073616d656044820152606401610968565b8151835114610dea5760405162461bcd60e51b815260206004820181905260248201527f4341544749524c3a204c656e677468206d757374206265207468652073616d656044820152606401610968565b6001600160401b0385165f90815260036020908152604090912085815584519091610e1c916001840191870190612acb565b505f5b83518160ff161015610e8257838160ff1681518110610e4057610e40613477565b60209081029190910181015160ff83165f908152600285018352604090208151610e6f93919290910190612acb565b5080610e7a816134ba565b915050610e1f565b50505050505050565b5f80516020613848833981519152610ea28161179f565b610eaa611c20565b50565b610d1983838360405180602001604052805f8152506112ce565b610c1d5f8233611a02565b610eda611c7f565b610ee382611d23565b610c1d8282611d4d565b5f610ef6611e09565b505f8051602061382883398151915290565b5f610f128161179f565b6002610d1983826135e0565b5f610b5782611985565b5f610f328161179f565b505f55565b6001600160401b0381165f908152600360209081526040808320805460018201805484518187028101870190955280855260609593949293919291839190830182828015610fcd57602002820191905f5260205f20905f905b82829054906101000a900463ffffffff1663ffffffff1681526020019060040190602082600301049283019260010382029150808411610f905790505b505050505090509250925050915091565b5f5b8151811015610c1d5761100b828281518110610ffe57610ffe613477565b6020026020010151610ec7565b806110158161369b565b915050610fe0565b6002805461102a90613563565b80601f016020809104026020016040519081016040528092919081815260200182805461105690613563565b80156110a15780601f10611078576101008083540402835291602001916110a1565b820191905f5260205f20905b81548152906001019060200180831161108457829003601f168201915b505050505081565b5f5f805160206138088339815191526001600160a01b0383166110e1576040516322718ad960e21b81525f6004820152602401610968565b6001600160a01b039092165f908152600390920160205250604090205490565b5f805160206138488339815191526111188161179f565b610eaa611e52565b5f9182525f805160206138ab833981519152602090815260408084206001600160a01b0393909316845291905290205460ff1690565b7f80bb2b638cc20bc4d0a60d66940f3ab4a00c1d7b313497ca82fb0b4ab007930180546060915f8051602061380883398151915291610b7c90613563565b5f8051602061388b8339815191526111ab8161179f565b6111b36117a9565b5f5b82518160ff161015610d19575f805f805f878660ff16815181106111db576111db613477565b60200260200101518060200190518101906111f691906136b3565b9450945094509450945061120d8583838688611e9a565b505050505050808061121e906134ba565b9150506111b5565b610c1d338383611fd2565b604080516080810182525f8082526020820181905291810182905260608101919091525f8051602061388b83398151915261126b8161179f565b6112736117a9565b6112808787878787611e9a565b60408051608081018252915463ffffffff8082168452640100000000820481166020850152600160401b820460ff1692840192909252600160481b9004166060820152979650505050505050565b6112d9848484610c21565b610ca484848484612081565b7ff0c57e16840df040f15088dc2f81fe391c3923bec73e23a9662efc9c229c6a008054600160401b810460ff1615906001600160401b03165f811580156113295750825b90505f826001600160401b031660011480156113445750303b155b905081158015611352575080155b156113705760405163f92ee8a960e01b815260040160405180910390fd5b845467ffffffffffffffff19166001178555831561139a57845460ff60401b1916600160401b1785555b6113e26040518060400160405280600781526020016610d85d19da5c9b60ca1b8152506040518060400160405280600781526020016610d05511d2549360ca1b8152506121a7565b6113ea6121b9565b6113f26121ee565b6113fa6121fe565b6114026121fe565b61140a6121fe565b6114145f87611b06565b5061142c5f8051602061384883398151915287611b06565b506114445f8051602061388b83398151915287611b06565b5061146f7f61c92169ef077349011ff0b1383c894d86c5f0b41d986366b58a6cf31e93beda87611b06565b5061149a7f189ab7a9244df0848122154315af71fe140f3db0fe014031783b0946b8c9d2e387611b06565b5083156114e157845460ff60401b19168555604051600181527fc7f505b2f371ae2175ee4913f4499e1f2633a7b5936321eed1cdaeb6115181d29060200160405180910390a15b505050505050565b6060610b5782612206565b6001600160401b0382165f90815260036020908152604080832060ff851684526002810183529281902080548251818502810185019093528083526060949383018282801561158b57602002820191905f5260205f20905f905b82829054906101000a900463ffffffff1663ffffffff168152602001906004019060208260030104928301926001038202915080841161154e5790505b505050505091505092915050565b6115a282610caa565b6115ab8161179f565b610ca48383611ba7565b6115bd6117a9565b5f8051602061388b8339815191526115d48161179f565b855f6115df82610f1e565b6001600160a01b0316036116415760405162461bcd60e51b8152602060048201526024808201527f617070726f76656420717565727920666f72206e6f6e6578697374656e74207460448201526337b5b2b760e11b6064820152608401610968565b5f545f036116895760405162461bcd60e51b81526020600482015260156024820152741499589bdc9b881a5cc81b9bdd08185b1b1bddd959605a1b6044820152606401610968565b5f8781526004602090815260409182902080546cffffffff00ffffffff00000000191664010000000063ffffffff89811691820263ffffffff60481b191692909217600160481b8c84169081029190911768ff00000000ffffffff1916600160401b60ff8d1690810263ffffffff191691909117938a1693841790945585519283529382019390935242938101939093529189907fc2f66c03efc3f63f02a391e62db5004233a21c4941648a62460eeab9c16adb009060600160405180910390a450505050505050565b6001600160a01b039182165f9081527f80bb2b638cc20bc4d0a60d66940f3ab4a00c1d7b313497ca82fb0b4ab00793056020908152604080832093909416825291909152205460ff1690565b610eaa813361226a565b5f805160206138cb8339815191525460ff16156117d95760405163d93c066560e01b815260040160405180910390fd5b565b5f806117e9836127106122a3565b90505f805b600560ff8216101561186f575f866001018260ff168154811061181357611813613477565b5f918252602090912060088204015460079091166004026101000a900463ffffffff16905080841015611849578192505061186f565b61185963ffffffff821685613716565b9350508080611867906134ba565b9150506117ee565b505f6118b385600160405160200161189492919091825260ff16602082015260400190565b60408051601f19818403018152919052805160209091012060646122a3565b6118be906001613729565b60ff83165f90815260028881016020908152604080842081519283018b9052908201929092529293509182906119109060600160408051601f19818403018152919052805160209091012084546122a3565b8154811061192057611920613477565b905f5260205f2090600891828204019190066004029054906101000a900463ffffffff1690506119538a85858c85611e9a565b9a9950505050505050505050565b5f6001600160e01b03198216637965db0b60e01b1480610b575750610b578261234b565b5f806119908361239a565b90506001600160a01b038116610b5757604051637e27328960e01b815260048101849052602401610968565b5f9081527f80bb2b638cc20bc4d0a60d66940f3ab4a00c1d7b313497ca82fb0b4ab007930460205260409020546001600160a01b031690565b610d1983838360016123d3565b5f5f8051602061380883398151915281611a1b8561239a565b90506001600160a01b03841615611a3757611a378185876124e6565b6001600160a01b03811615611a7357611a525f865f806123d3565b6001600160a01b0381165f908152600383016020526040902080545f190190555b6001600160a01b03861615611aa3576001600160a01b0386165f9081526003830160205260409020805460010190555b5f85815260028301602052604080822080546001600160a01b0319166001600160a01b038a811691821790925591518893918516917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef91a49150505b9392505050565b5f5f805160206138ab833981519152611b1f8484611120565b611b9e575f848152602082815260408083206001600160a01b03871684529091529020805460ff19166001179055611b543390565b6001600160a01b0316836001600160a01b0316857f2f8788117e7eff1d82e926ec794901d17c78024a50270940304540a733656f0d60405160405180910390a46001915050610b57565b5f915050610b57565b5f5f805160206138ab833981519152611bc08484611120565b15611b9e575f848152602082815260408083206001600160a01b0387168085529252808320805460ff1916905551339287917ff6391f5c32d9c69d2a47ea670b442974b53935d1edc7fd64eb21e047a839171b9190a46001915050610b57565b611c2861254a565b5f805160206138cb833981519152805460ff191681557f5db9ee0a495bf2e6ff9c91a7834c1ba4fdd244a5e8aa4e537bd38aeae4b073aa335b6040516001600160a01b03909116815260200160405180910390a150565b306001600160a01b037f0000000000000000000000000000000000000000000000000000000000000000161480611d0557507f00000000000000000000000000000000000000000000000000000000000000006001600160a01b0316611cf95f80516020613828833981519152546001600160a01b031690565b6001600160a01b031614155b156117d95760405163703e46dd60e11b815260040160405180910390fd5b7f189ab7a9244df0848122154315af71fe140f3db0fe014031783b0946b8c9d2e3610c1d8161179f565b816001600160a01b03166352d1902d6040518163ffffffff1660e01b8152600401602060405180830381865afa925050508015611da7575060408051601f3d908101601f19168201909252611da49181019061373c565b60015b611dcf57604051634c9c8ce360e01b81526001600160a01b0383166004820152602401610968565b5f805160206138288339815191528114611dff57604051632a87526960e21b815260048101829052602401610968565b610d198383612579565b306001600160a01b037f000000000000000000000000000000000000000000000000000000000000000016146117d95760405163703e46dd60e11b815260040160405180910390fd5b611e5a6117a9565b5f805160206138cb833981519152805460ff191660011781557f62e78cea01bee320cd4e420270b5ea74000d11b0c9f74754ebdbfc544b05a25833611c61565b6001545f90611ea987826125ce565b60018054905f611eb88361369b565b90915550506040805160808101825263ffffffff808616808352878216602080850182815260ff808e168789018181528e881660608a019081525f8c81526004909652948a9020985189549451915195518916600160481b0263ffffffff60481b1996909416600160401b02959095166cffffffffff0000000000000000199189166401000000000267ffffffffffffffff1990951695909816949094179290921792909216949094171790935592519092907f461b336cda56c864fc5408b684573f4a239af8f18b8c386149189732cfada3bb90611fb39086908b90429092835263ffffffff919091166020830152604082015260600190565b60405180910390a45f9081526004602052604090209695505050505050565b5f805160206138088339815191526001600160a01b03831661201257604051630b61174360e31b81526001600160a01b0384166004820152602401610968565b6001600160a01b038481165f818152600584016020908152604080832094881680845294825291829020805460ff191687151590811790915591519182527f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a350505050565b6001600160a01b0383163b15610ca457604051630a85bd0160e11b81526001600160a01b0384169063150b7a02906120c3903390889087908790600401613753565b6020604051808303815f875af19250505080156120fd575060408051601f3d908101601f191682019092526120fa9181019061378f565b60015b612164573d80801561212a576040519150601f19603f3d011682016040523d82523d5f602084013e61212f565b606091505b5080515f0361215c57604051633250574960e11b81526001600160a01b0385166004820152602401610968565b805181602001fd5b6001600160e01b03198116630a85bd0160e11b146121a057604051633250574960e11b81526001600160a01b0385166004820152602401610968565b5050505050565b6121af6125e7565b610c1d8282612630565b6121c16125e7565b604051806060016040528060238152602001613868602391396002906121e790826135e0565b5060015f55565b6121f66125e7565b6117d9612660565b6117d96125e7565b606061221182611985565b505f61221b612680565b90505f8151116122395760405180602001604052805f815250611aff565b8061224384612710565b6040516020016122549291906137aa565b6040516020818303038152906040529392505050565b6122748282611120565b610c1d5760405163e2517d3f60e01b81526001600160a01b038216600482015260248101839052604401610968565b5f8082116122eb5760405162461bcd60e51b8152602060048201526015602482015274155b9a599bdc9b54985b990bdb5a5b8b589bdd5b99605a1b6044820152606401610968565b5f828319600101816122ff576122ff6137d8565b069050835b8181101561233257604080516020808201939093528151808203840181529082019091528051910120612304565b838181612341576123416137d8565b0695945050505050565b5f6001600160e01b031982166380ac58cd60e01b148061237b57506001600160e01b03198216635b5e139f60e01b145b80610b5757506301ffc9a760e01b6001600160e01b0319831614610b57565b5f9081527f80bb2b638cc20bc4d0a60d66940f3ab4a00c1d7b313497ca82fb0b4ab007930260205260409020546001600160a01b031690565b5f8051602061380883398151915281806123f557506001600160a01b03831615155b156124b6575f61240485611985565b90506001600160a01b038416158015906124305750836001600160a01b0316816001600160a01b031614155b801561244357506124418185611753565b155b1561246c5760405163a9fbf51f60e01b81526001600160a01b0385166004820152602401610968565b82156124b45784866001600160a01b0316826001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45b505b5f93845260040160205250506040902080546001600160a01b0319166001600160a01b0392909216919091179055565b6124f183838361279f565b610d19576001600160a01b03831661251f57604051637e27328960e01b815260048101829052602401610968565b60405163177e802f60e01b81526001600160a01b038316600482015260248101829052604401610968565b5f805160206138cb8339815191525460ff166117d957604051638dfc202b60e01b815260040160405180910390fd5b61258282612804565b6040516001600160a01b038316907fbc7cd75a20ee27fd9adebab32041f755214dbc6bffa90cc0225b39da2e5c2d3b905f90a28051156125c657610d198282612867565b610c1d6128d9565b610c1d828260405180602001604052805f8152506128f8565b7ff0c57e16840df040f15088dc2f81fe391c3923bec73e23a9662efc9c229c6a0054600160401b900460ff166117d957604051631afcd79f60e31b815260040160405180910390fd5b6126386125e7565b5f805160206138088339815191528061265184826135e0565b5060018101610ca483826135e0565b6126686125e7565b5f805160206138cb833981519152805460ff19169055565b60606002805461268f90613563565b80601f01602080910402602001604051908101604052809291908181526020018280546126bb90613563565b80156127065780601f106126dd57610100808354040283529160200191612706565b820191905f5260205f20905b8154815290600101906020018083116126e957829003601f168201915b5050505050905090565b60605f61271c8361290e565b60010190505f816001600160401b0381111561273a5761273a612e0d565b6040519080825280601f01601f191660200182016040528015612764576020820181803683370190505b5090508181016020015b5f19016f181899199a1a9b1b9c1cb0b131b232b360811b600a86061a8153600a850494508461276e57509392505050565b5f6001600160a01b038316158015906127fc5750826001600160a01b0316846001600160a01b031614806127d857506127d88484611753565b806127fc5750826001600160a01b03166127f1836119bc565b6001600160a01b0316145b949350505050565b806001600160a01b03163b5f0361283957604051634c9c8ce360e01b81526001600160a01b0382166004820152602401610968565b5f8051602061382883398151915280546001600160a01b0319166001600160a01b0392909216919091179055565b60605f80846001600160a01b03168460405161288391906137ec565b5f60405180830381855af49150503d805f81146128bb576040519150601f19603f3d011682016040523d82523d5f602084013e6128c0565b606091505b50915091506128d08583836129e5565b95945050505050565b34156117d95760405163b398979f60e01b815260040160405180910390fd5b6129028383612a41565b610d195f848484612081565b5f8072184f03e93ff9f4daa797ed6e38ed64bf6a1f0160401b831061294c5772184f03e93ff9f4daa797ed6e38ed64bf6a1f0160401b830492506040015b6d04ee2d6d415b85acef81000000008310612978576d04ee2d6d415b85acef8100000000830492506020015b662386f26fc10000831061299657662386f26fc10000830492506010015b6305f5e10083106129ae576305f5e100830492506008015b61271083106129c257612710830492506004015b606483106129d4576064830492506002015b600a8310610b575760010192915050565b6060826129fa576129f582612aa2565b611aff565b8151158015612a1157506001600160a01b0384163b155b15612a3a57604051639996b31560e01b81526001600160a01b0385166004820152602401610968565b5080611aff565b6001600160a01b038216612a6a57604051633250574960e11b81525f6004820152602401610968565b5f612a7683835f611a02565b90506001600160a01b03811615610d19576040516339e3563760e11b81525f6004820152602401610968565b805115612ab25780518082602001fd5b604051630a12f52160e11b815260040160405180910390fd5b828054828255905f5260205f2090600701600890048101928215612b67579160200282015f5b83821115612b3557835183826101000a81548163ffffffff021916908363ffffffff1602179055509260200192600401602081600301049283019260010302612af1565b8015612b655782816101000a81549063ffffffff0219169055600401602081600301049283019260010302612b35565b505b50612b73929150612b77565b5090565b5b80821115612b73575f8155600101612b78565b6001600160a01b0381168114610eaa575f80fd5b5f8083601f840112612baf575f80fd5b5081356001600160401b03811115612bc5575f80fd5b6020830191508360208260051b8501011115612bdf575f80fd5b9250929050565b63ffffffff81168114610eaa575f80fd5b5f805f805f805f805f60c08a8c031215612c0f575f80fd5b8935612c1a81612b8b565b985060208a01356001600160401b0380821115612c35575f80fd5b612c418d838e01612b9f565b909a50985060408c01359150612c5682612be6565b90965060608b01359080821115612c6b575f80fd5b612c778d838e01612b9f565b909750955060808c0135915080821115612c8f575f80fd5b50612c9c8c828d01612b9f565b9a9d999c50979a9699959894979660a00135949350505050565b6001600160e01b031981168114610eaa575f80fd5b5f60208284031215612cdb575f80fd5b8135611aff81612cb6565b5f5b83811015612d00578181015183820152602001612ce8565b50505f910152565b5f8151808452612d1f816020860160208601612ce6565b601f01601f19169290920160200192915050565b602081525f611aff6020830184612d08565b5f60208284031215612d55575f80fd5b5035919050565b5f8060408385031215612d6d575f80fd5b8235612d7881612b8b565b946020939093013593505050565b5f805f60608486031215612d98575f80fd5b8335612da381612b8b565b92506020840135612db381612b8b565b929592945050506040919091013590565b5f8060408385031215612dd5575f80fd5b823591506020830135612de781612b8b565b809150509250929050565b80356001600160401b0381168114612e08575f80fd5b919050565b634e487b7160e01b5f52604160045260245ffd5b604051601f8201601f191681016001600160401b0381118282101715612e4957612e49612e0d565b604052919050565b5f6001600160401b03821115612e6957612e69612e0d565b5060051b60200190565b5f82601f830112612e82575f80fd5b81356020612e97612e9283612e51565b612e21565b82815260059290921b84018101918181019086841115612eb5575f80fd5b8286015b84811015612ed9578035612ecc81612be6565b8352918301918301612eb9565b509695505050505050565b5f805f8060808587031215612ef7575f80fd5b612f0085612df2565b9350602080860135935060408601356001600160401b0380821115612f23575f80fd5b612f2f89838a01612e73565b94506060880135915080821115612f44575f80fd5b818801915088601f830112612f57575f80fd5b8135612f65612e9282612e51565b81815260059190911b8301840190848101908b831115612f83575f80fd5b8585015b83811015612fba57803585811115612f9e575f8081fd5b612fac8e89838a0101612e73565b845250918601918601612f87565b50989b979a50959850505050505050565b5f6001600160401b03831115612fe357612fe3612e0d565b612ff6601f8401601f1916602001612e21565b9050828152838383011115613009575f80fd5b828260208301375f602084830101529392505050565b5f82601f83011261302e575f80fd5b611aff83833560208501612fcb565b5f806040838503121561304e575f80fd5b823561305981612b8b565b915060208301356001600160401b03811115613073575f80fd5b61307f8582860161301f565b9150509250929050565b5f60208284031215613099575f80fd5b81356001600160401b038111156130ae575f80fd5b8201601f810184136130be575f80fd5b6127fc84823560208401612fcb565b60808101610b578284805163ffffffff908116835260208083015182169084015260408083015160ff169084015260609182015116910152565b5f60208284031215613117575f80fd5b611aff82612df2565b5f8151808452602080850194508084015f5b8381101561315457815163ffffffff1687529582019590820190600101613132565b509495945050505050565b828152604060208201525f6127fc6040830184613120565b5f6020808385031215613188575f80fd5b82356001600160401b0381111561319d575f80fd5b8301601f810185136131ad575f80fd5b80356131bb612e9282612e51565b81815260059190911b820183019083810190878311156131d9575f80fd5b928401925b828410156131f7578335825292840192908401906131de565b979650505050505050565b5f60208284031215613212575f80fd5b8135611aff81612b8b565b5f602080838503121561322e575f80fd5b82356001600160401b0380821115613244575f80fd5b818501915085601f830112613257575f80fd5b8135613265612e9282612e51565b81815260059190911b83018401908481019088831115613283575f80fd5b8585015b838110156132ba5780358581111561329e575f8081fd5b6132ac8b89838a010161301f565b845250918601918601613287565b5098975050505050505050565b5f80604083850312156132d8575f80fd5b82356132e381612b8b565b915060208301358015158114612de7575f80fd5b60ff81168114610eaa575f80fd5b5f805f805f60a08688031215613319575f80fd5b853561332481612b8b565b94506020860135613334816132f7565b9350604086013561334481612be6565b9250606086013561335481612be6565b9150608086013561336481612be6565b809150509295509295909350565b5f805f8060808587031215613385575f80fd5b843561339081612b8b565b935060208501356133a081612b8b565b92506040850135915060608501356001600160401b038111156133c1575f80fd5b6133cd8782880161301f565b91505092959194509250565b5f80604083850312156133ea575f80fd5b6133f383612df2565b91506020830135612de7816132f7565b602081525f611aff6020830184613120565b5f805f805f60a08688031215613429575f80fd5b85359450602086013561343b81612be6565b93506040860135613344816132f7565b5f806040838503121561345c575f80fd5b823561346781612b8b565b91506020830135612de781612b8b565b634e487b7160e01b5f52603260045260245ffd5b5f6020828403121561349b575f80fd5b8135611aff816132f7565b634e487b7160e01b5f52601160045260245ffd5b5f60ff821660ff81036134cf576134cf6134a6565b60010192915050565b6001600160a01b03831681526040602080830182905283519183018290525f9184820191906060850190845b8181101561355657613543838651805163ffffffff908116835260208083015182169084015260408083015160ff169084015260609182015116910152565b9383019360809290920191600101613504565b5090979650505050505050565b600181811c9082168061357757607f821691505b60208210810361359557634e487b7160e01b5f52602260045260245ffd5b50919050565b601f821115610d19575f81815260208120601f850160051c810160208610156135c15750805b601f850160051c820191505b818110156114e1578281556001016135cd565b81516001600160401b038111156135f9576135f9612e0d565b61360d816136078454613563565b8461359b565b602080601f831160018114613640575f84156136295750858301515b5f19600386901b1c1916600185901b1785556114e1565b5f85815260208120601f198616915b8281101561366e5788860151825594840194600190910190840161364f565b508582101561368b57878501515f19600388901b60f8161c191681555b5050505050600190811b01905550565b5f600182016136ac576136ac6134a6565b5060010190565b5f805f805f60a086880312156136c7575f80fd5b85516136d281612b8b565b60208701519095506136e381612be6565b60408701519094506136f481612be6565b6060870151909350613705816132f7565b608087015190925061336481612be6565b81810381811115610b5757610b576134a6565b80820180821115610b5757610b576134a6565b5f6020828403121561374c575f80fd5b5051919050565b6001600160a01b03858116825284166020820152604081018390526080606082018190525f9061378590830184612d08565b9695505050505050565b5f6020828403121561379f575f80fd5b8151611aff81612cb6565b5f83516137bb818460208801612ce6565b8351908301906137cf818360208801612ce6565b01949350505050565b634e487b7160e01b5f52601260045260245ffd5b5f82516137fd818460208701612ce6565b919091019291505056fe80bb2b638cc20bc4d0a60d66940f3ab4a00c1d7b313497ca82fb0b4ab0079300360894a13ba1a3210667c828492db98dca3e2076cc3735a920a3ca505d382bbc65d7a28e3265b37a6474929f336521b332c1681b933f6cb9f3376673440d862a687474703a2f2f6170692e6361746769726c2e696f2f6e66742f6361746769726c732f9f2df0fed2c77648de5860a4cc508cd0818c85b8b8a1ab4ceeef8d981c8956a602dd7bc7dec4dceedda775e58dd541e08a116c6c53815c0bd028192f7b626800cd5ed15c6e187e77e9aee88184c21f4f2182ab5827cb3b7e07fbedcd63f03300a264697066735822122045488238dc67bb171e04efe4c63ab54b041ff8a433f0ee27b4ba693db77e075964736f6c63430008140033
Deployed Bytecode
0x60806040526004361061025e575f3560e01c80636c0360eb1161013f578063b88d4fde116100b3578063d539139311610078578063d5391393146107c0578063d547741f146107e0578063de5a5fa7146107ff578063e63ab1e91461081e578063e985e9c51461083e578063f72c0d8b1461085d575f80fd5b8063b88d4fde1461070c578063c4d66de81461072b578063c6f27b6a1461074a578063c87b56dd14610775578063d52c1b2d14610794575f80fd5b8063a0cca8d711610104578063a0cca8d714610639578063a2011b3f14610658578063a217fddf1461068b578063a22cb4651461069e578063a4fbbf9b146106bd578063ad3cb1cc146106dc575f80fd5b80636c0360eb146105bf57806370a08231146105d35780638456cb59146105f257806391d148541461060657806395d89b4114610625575f80fd5b806342842e0e116101d65780635c975abb1161019b5780635c975abb1461046f5780636352211e1461049257806364827624146104b15780636855dc84146104d05780636944fe1f146105735780636ab49a5b146105a0575f80fd5b806342842e0e146103eb57806342966c681461040a5780634f1ef2861461042957806352d1902d1461043c57806355f804b314610450575f80fd5b806323b872dd1161022757806323b872dd1461032e578063248a9ca31461034d5780632f2ff15d1461037a57806336568abe146103995780633ab1403c146103b85780633f4ba83a146103d7575f80fd5b806240e7cd1461026257806301ffc9a71461028357806306fdde03146102b7578063081812fc146102d8578063095ea7b31461030f575b5f80fd5b34801561026d575f80fd5b5061028161027c366004612bf7565b610890565b005b34801561028e575f80fd5b506102a261029d366004612ccb565b610b4d565b60405190151581526020015b60405180910390f35b3480156102c2575f80fd5b506102cb610b5d565b6040516102ae9190612d33565b3480156102e3575f80fd5b506102f76102f2366004612d45565b610bfe565b6040516001600160a01b0390911681526020016102ae565b34801561031a575f80fd5b50610281610329366004612d5c565b610c12565b348015610339575f80fd5b50610281610348366004612d86565b610c21565b348015610358575f80fd5b5061036c610367366004612d45565b610caa565b6040519081526020016102ae565b348015610385575f80fd5b50610281610394366004612dc4565b610cca565b3480156103a4575f80fd5b506102816103b3366004612dc4565b610ce6565b3480156103c3575f80fd5b506102816103d2366004612ee4565b610d1e565b3480156103e2575f80fd5b50610281610e8b565b3480156103f6575f80fd5b50610281610405366004612d86565b610ead565b348015610415575f80fd5b50610281610424366004612d45565b610ec7565b61028161043736600461303d565b610ed2565b348015610447575f80fd5b5061036c610eed565b34801561045b575f80fd5b5061028161046a366004613089565b610f08565b34801561047a575f80fd5b505f805160206138cb8339815191525460ff166102a2565b34801561049d575f80fd5b506102f76104ac366004612d45565b610f1e565b3480156104bc575f80fd5b506102816104cb366004612d45565b610f28565b3480156104db575f80fd5b506105666104ea366004612d45565b604080516080810182525f808252602082018190529181018290526060810191909152505f908152600460209081526040918290208251608081018452905463ffffffff8082168352640100000000820481169383019390935260ff600160401b82041693820193909352600160481b90920416606082015290565b6040516102ae91906130cd565b34801561057e575f80fd5b5061059261058d366004613107565b610f37565b6040516102ae92919061315f565b3480156105ab575f80fd5b506102816105ba366004613177565b610fde565b3480156105ca575f80fd5b506102cb61101d565b3480156105de575f80fd5b5061036c6105ed366004613202565b6110a9565b3480156105fd575f80fd5b50610281611101565b348015610611575f80fd5b506102a2610620366004612dc4565b611120565b348015610630575f80fd5b506102cb611156565b348015610644575f80fd5b5061028161065336600461321d565b611194565b348015610663575f80fd5b5061036c7f61c92169ef077349011ff0b1383c894d86c5f0b41d986366b58a6cf31e93beda81565b348015610696575f80fd5b5061036c5f81565b3480156106a9575f80fd5b506102816106b83660046132c7565b611226565b3480156106c8575f80fd5b506105666106d7366004613305565b611231565b3480156106e7575f80fd5b506102cb604051806040016040528060058152602001640352e302e360dc1b81525081565b348015610717575f80fd5b50610281610726366004613372565b6112ce565b348015610736575f80fd5b50610281610745366004613202565b6112e5565b348015610755575f80fd5b5061036c610764366004613107565b60036020525f908152604090205481565b348015610780575f80fd5b506102cb61078f366004612d45565b6114e9565b34801561079f575f80fd5b506107b36107ae3660046133d9565b6114f4565b6040516102ae9190613403565b3480156107cb575f80fd5b5061036c5f8051602061388b83398151915281565b3480156107eb575f80fd5b506102816107fa366004612dc4565b611599565b34801561080a575f80fd5b50610281610819366004613415565b6115b5565b348015610829575f80fd5b5061036c5f8051602061384883398151915281565b348015610849575f80fd5b506102a261085836600461344b565b611753565b348015610868575f80fd5b5061036c7f189ab7a9244df0848122154315af71fe140f3db0fe014031783b0946b8c9d2e381565b5f8051602061388b8339815191526108a78161179f565b6108af6117a9565b5f826001600160401b038111156108c8576108c8612e0d565b60405190808252806020026020018201604052801561091857816020015b604080516080810182525f8082526020808301829052928201819052606082015282525f199092019101816108e65790505b5090508a5f8786146109715760405162461bcd60e51b815260206004820152601860248201527f4c656e6774682072616e646f6d206e6f74206d6163746821000000000000000060448201526064015b60405180910390fd5b5f5b60ff8116891115610b04575f60035f8f8f8560ff1681811061099757610997613477565b90506020020160208101906109ac9190613107565b6001600160401b03166001600160401b031681526020019081526020015f2090505f5b8b8b8460ff168181106109e4576109e4613477565b90506020020160208101906109f9919061348b565b60ff168160ff161015610aef575f610a64868f858e8e8960ff16818110610a2257610a22613477565b9050602002013586604051602001610a4792919091825260ff16602082015260400190565b604051602081830303815290604052805190602001205f1c6117db565b60408051608081018252825463ffffffff808216835264010000000082048116602084015260ff600160401b8304811694840194909452600160481b90910416606082015289519293509189918816908110610ac257610ac2613477565b60200260200101819052508480610ad8906134ba565b955050508080610ae7906134ba565b9150506109cf565b50508080610afc906134ba565b915050610973565b507faece38b14bec9c8de6456ceec1ad7fedee079e30da3ab08489df66f83f7482268d84604051610b369291906134d8565b60405180910390a150505050505050505050505050565b5f610b5782611961565b92915050565b5f805160206138088339815191528054606091908190610b7c90613563565b80601f0160208091040260200160405190810160405280929190818152602001828054610ba890613563565b8015610bf35780601f10610bca57610100808354040283529160200191610bf3565b820191905f5260205f20905b815481529060010190602001808311610bd657829003601f168201915b505050505091505090565b5f610c0882611985565b50610b57826119bc565b610c1d8282336119f5565b5050565b6001600160a01b038216610c4a57604051633250574960e11b81525f6004820152602401610968565b5f610c56838333611a02565b9050836001600160a01b0316816001600160a01b031614610ca4576040516364283d7b60e01b81526001600160a01b0380861660048301526024820184905282166044820152606401610968565b50505050565b5f9081525f805160206138ab833981519152602052604090206001015490565b610cd382610caa565b610cdc8161179f565b610ca48383611b06565b6001600160a01b0381163314610d0f5760405163334bd91960e11b815260040160405180910390fd5b610d198282611ba7565b505050565b7f61c92169ef077349011ff0b1383c894d86c5f0b41d986366b58a6cf31e93beda610d488161179f565b8251600514610d995760405162461bcd60e51b815260206004820181905260248201527f4341544749524c3a204c656e677468206d757374206265207468652073616d656044820152606401610968565b8151835114610dea5760405162461bcd60e51b815260206004820181905260248201527f4341544749524c3a204c656e677468206d757374206265207468652073616d656044820152606401610968565b6001600160401b0385165f90815260036020908152604090912085815584519091610e1c916001840191870190612acb565b505f5b83518160ff161015610e8257838160ff1681518110610e4057610e40613477565b60209081029190910181015160ff83165f908152600285018352604090208151610e6f93919290910190612acb565b5080610e7a816134ba565b915050610e1f565b50505050505050565b5f80516020613848833981519152610ea28161179f565b610eaa611c20565b50565b610d1983838360405180602001604052805f8152506112ce565b610c1d5f8233611a02565b610eda611c7f565b610ee382611d23565b610c1d8282611d4d565b5f610ef6611e09565b505f8051602061382883398151915290565b5f610f128161179f565b6002610d1983826135e0565b5f610b5782611985565b5f610f328161179f565b505f55565b6001600160401b0381165f908152600360209081526040808320805460018201805484518187028101870190955280855260609593949293919291839190830182828015610fcd57602002820191905f5260205f20905f905b82829054906101000a900463ffffffff1663ffffffff1681526020019060040190602082600301049283019260010382029150808411610f905790505b505050505090509250925050915091565b5f5b8151811015610c1d5761100b828281518110610ffe57610ffe613477565b6020026020010151610ec7565b806110158161369b565b915050610fe0565b6002805461102a90613563565b80601f016020809104026020016040519081016040528092919081815260200182805461105690613563565b80156110a15780601f10611078576101008083540402835291602001916110a1565b820191905f5260205f20905b81548152906001019060200180831161108457829003601f168201915b505050505081565b5f5f805160206138088339815191526001600160a01b0383166110e1576040516322718ad960e21b81525f6004820152602401610968565b6001600160a01b039092165f908152600390920160205250604090205490565b5f805160206138488339815191526111188161179f565b610eaa611e52565b5f9182525f805160206138ab833981519152602090815260408084206001600160a01b0393909316845291905290205460ff1690565b7f80bb2b638cc20bc4d0a60d66940f3ab4a00c1d7b313497ca82fb0b4ab007930180546060915f8051602061380883398151915291610b7c90613563565b5f8051602061388b8339815191526111ab8161179f565b6111b36117a9565b5f5b82518160ff161015610d19575f805f805f878660ff16815181106111db576111db613477565b60200260200101518060200190518101906111f691906136b3565b9450945094509450945061120d8583838688611e9a565b505050505050808061121e906134ba565b9150506111b5565b610c1d338383611fd2565b604080516080810182525f8082526020820181905291810182905260608101919091525f8051602061388b83398151915261126b8161179f565b6112736117a9565b6112808787878787611e9a565b60408051608081018252915463ffffffff8082168452640100000000820481166020850152600160401b820460ff1692840192909252600160481b9004166060820152979650505050505050565b6112d9848484610c21565b610ca484848484612081565b7ff0c57e16840df040f15088dc2f81fe391c3923bec73e23a9662efc9c229c6a008054600160401b810460ff1615906001600160401b03165f811580156113295750825b90505f826001600160401b031660011480156113445750303b155b905081158015611352575080155b156113705760405163f92ee8a960e01b815260040160405180910390fd5b845467ffffffffffffffff19166001178555831561139a57845460ff60401b1916600160401b1785555b6113e26040518060400160405280600781526020016610d85d19da5c9b60ca1b8152506040518060400160405280600781526020016610d05511d2549360ca1b8152506121a7565b6113ea6121b9565b6113f26121ee565b6113fa6121fe565b6114026121fe565b61140a6121fe565b6114145f87611b06565b5061142c5f8051602061384883398151915287611b06565b506114445f8051602061388b83398151915287611b06565b5061146f7f61c92169ef077349011ff0b1383c894d86c5f0b41d986366b58a6cf31e93beda87611b06565b5061149a7f189ab7a9244df0848122154315af71fe140f3db0fe014031783b0946b8c9d2e387611b06565b5083156114e157845460ff60401b19168555604051600181527fc7f505b2f371ae2175ee4913f4499e1f2633a7b5936321eed1cdaeb6115181d29060200160405180910390a15b505050505050565b6060610b5782612206565b6001600160401b0382165f90815260036020908152604080832060ff851684526002810183529281902080548251818502810185019093528083526060949383018282801561158b57602002820191905f5260205f20905f905b82829054906101000a900463ffffffff1663ffffffff168152602001906004019060208260030104928301926001038202915080841161154e5790505b505050505091505092915050565b6115a282610caa565b6115ab8161179f565b610ca48383611ba7565b6115bd6117a9565b5f8051602061388b8339815191526115d48161179f565b855f6115df82610f1e565b6001600160a01b0316036116415760405162461bcd60e51b8152602060048201526024808201527f617070726f76656420717565727920666f72206e6f6e6578697374656e74207460448201526337b5b2b760e11b6064820152608401610968565b5f545f036116895760405162461bcd60e51b81526020600482015260156024820152741499589bdc9b881a5cc81b9bdd08185b1b1bddd959605a1b6044820152606401610968565b5f8781526004602090815260409182902080546cffffffff00ffffffff00000000191664010000000063ffffffff89811691820263ffffffff60481b191692909217600160481b8c84169081029190911768ff00000000ffffffff1916600160401b60ff8d1690810263ffffffff191691909117938a1693841790945585519283529382019390935242938101939093529189907fc2f66c03efc3f63f02a391e62db5004233a21c4941648a62460eeab9c16adb009060600160405180910390a450505050505050565b6001600160a01b039182165f9081527f80bb2b638cc20bc4d0a60d66940f3ab4a00c1d7b313497ca82fb0b4ab00793056020908152604080832093909416825291909152205460ff1690565b610eaa813361226a565b5f805160206138cb8339815191525460ff16156117d95760405163d93c066560e01b815260040160405180910390fd5b565b5f806117e9836127106122a3565b90505f805b600560ff8216101561186f575f866001018260ff168154811061181357611813613477565b5f918252602090912060088204015460079091166004026101000a900463ffffffff16905080841015611849578192505061186f565b61185963ffffffff821685613716565b9350508080611867906134ba565b9150506117ee565b505f6118b385600160405160200161189492919091825260ff16602082015260400190565b60408051601f19818403018152919052805160209091012060646122a3565b6118be906001613729565b60ff83165f90815260028881016020908152604080842081519283018b9052908201929092529293509182906119109060600160408051601f19818403018152919052805160209091012084546122a3565b8154811061192057611920613477565b905f5260205f2090600891828204019190066004029054906101000a900463ffffffff1690506119538a85858c85611e9a565b9a9950505050505050505050565b5f6001600160e01b03198216637965db0b60e01b1480610b575750610b578261234b565b5f806119908361239a565b90506001600160a01b038116610b5757604051637e27328960e01b815260048101849052602401610968565b5f9081527f80bb2b638cc20bc4d0a60d66940f3ab4a00c1d7b313497ca82fb0b4ab007930460205260409020546001600160a01b031690565b610d1983838360016123d3565b5f5f8051602061380883398151915281611a1b8561239a565b90506001600160a01b03841615611a3757611a378185876124e6565b6001600160a01b03811615611a7357611a525f865f806123d3565b6001600160a01b0381165f908152600383016020526040902080545f190190555b6001600160a01b03861615611aa3576001600160a01b0386165f9081526003830160205260409020805460010190555b5f85815260028301602052604080822080546001600160a01b0319166001600160a01b038a811691821790925591518893918516917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef91a49150505b9392505050565b5f5f805160206138ab833981519152611b1f8484611120565b611b9e575f848152602082815260408083206001600160a01b03871684529091529020805460ff19166001179055611b543390565b6001600160a01b0316836001600160a01b0316857f2f8788117e7eff1d82e926ec794901d17c78024a50270940304540a733656f0d60405160405180910390a46001915050610b57565b5f915050610b57565b5f5f805160206138ab833981519152611bc08484611120565b15611b9e575f848152602082815260408083206001600160a01b0387168085529252808320805460ff1916905551339287917ff6391f5c32d9c69d2a47ea670b442974b53935d1edc7fd64eb21e047a839171b9190a46001915050610b57565b611c2861254a565b5f805160206138cb833981519152805460ff191681557f5db9ee0a495bf2e6ff9c91a7834c1ba4fdd244a5e8aa4e537bd38aeae4b073aa335b6040516001600160a01b03909116815260200160405180910390a150565b306001600160a01b037f000000000000000000000000e796f4b5253a4b3edb4bb3f054c03f147122bacd161480611d0557507f000000000000000000000000e796f4b5253a4b3edb4bb3f054c03f147122bacd6001600160a01b0316611cf95f80516020613828833981519152546001600160a01b031690565b6001600160a01b031614155b156117d95760405163703e46dd60e11b815260040160405180910390fd5b7f189ab7a9244df0848122154315af71fe140f3db0fe014031783b0946b8c9d2e3610c1d8161179f565b816001600160a01b03166352d1902d6040518163ffffffff1660e01b8152600401602060405180830381865afa925050508015611da7575060408051601f3d908101601f19168201909252611da49181019061373c565b60015b611dcf57604051634c9c8ce360e01b81526001600160a01b0383166004820152602401610968565b5f805160206138288339815191528114611dff57604051632a87526960e21b815260048101829052602401610968565b610d198383612579565b306001600160a01b037f000000000000000000000000e796f4b5253a4b3edb4bb3f054c03f147122bacd16146117d95760405163703e46dd60e11b815260040160405180910390fd5b611e5a6117a9565b5f805160206138cb833981519152805460ff191660011781557f62e78cea01bee320cd4e420270b5ea74000d11b0c9f74754ebdbfc544b05a25833611c61565b6001545f90611ea987826125ce565b60018054905f611eb88361369b565b90915550506040805160808101825263ffffffff808616808352878216602080850182815260ff808e168789018181528e881660608a019081525f8c81526004909652948a9020985189549451915195518916600160481b0263ffffffff60481b1996909416600160401b02959095166cffffffffff0000000000000000199189166401000000000267ffffffffffffffff1990951695909816949094179290921792909216949094171790935592519092907f461b336cda56c864fc5408b684573f4a239af8f18b8c386149189732cfada3bb90611fb39086908b90429092835263ffffffff919091166020830152604082015260600190565b60405180910390a45f9081526004602052604090209695505050505050565b5f805160206138088339815191526001600160a01b03831661201257604051630b61174360e31b81526001600160a01b0384166004820152602401610968565b6001600160a01b038481165f818152600584016020908152604080832094881680845294825291829020805460ff191687151590811790915591519182527f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a350505050565b6001600160a01b0383163b15610ca457604051630a85bd0160e11b81526001600160a01b0384169063150b7a02906120c3903390889087908790600401613753565b6020604051808303815f875af19250505080156120fd575060408051601f3d908101601f191682019092526120fa9181019061378f565b60015b612164573d80801561212a576040519150601f19603f3d011682016040523d82523d5f602084013e61212f565b606091505b5080515f0361215c57604051633250574960e11b81526001600160a01b0385166004820152602401610968565b805181602001fd5b6001600160e01b03198116630a85bd0160e11b146121a057604051633250574960e11b81526001600160a01b0385166004820152602401610968565b5050505050565b6121af6125e7565b610c1d8282612630565b6121c16125e7565b604051806060016040528060238152602001613868602391396002906121e790826135e0565b5060015f55565b6121f66125e7565b6117d9612660565b6117d96125e7565b606061221182611985565b505f61221b612680565b90505f8151116122395760405180602001604052805f815250611aff565b8061224384612710565b6040516020016122549291906137aa565b6040516020818303038152906040529392505050565b6122748282611120565b610c1d5760405163e2517d3f60e01b81526001600160a01b038216600482015260248101839052604401610968565b5f8082116122eb5760405162461bcd60e51b8152602060048201526015602482015274155b9a599bdc9b54985b990bdb5a5b8b589bdd5b99605a1b6044820152606401610968565b5f828319600101816122ff576122ff6137d8565b069050835b8181101561233257604080516020808201939093528151808203840181529082019091528051910120612304565b838181612341576123416137d8565b0695945050505050565b5f6001600160e01b031982166380ac58cd60e01b148061237b57506001600160e01b03198216635b5e139f60e01b145b80610b5757506301ffc9a760e01b6001600160e01b0319831614610b57565b5f9081527f80bb2b638cc20bc4d0a60d66940f3ab4a00c1d7b313497ca82fb0b4ab007930260205260409020546001600160a01b031690565b5f8051602061380883398151915281806123f557506001600160a01b03831615155b156124b6575f61240485611985565b90506001600160a01b038416158015906124305750836001600160a01b0316816001600160a01b031614155b801561244357506124418185611753565b155b1561246c5760405163a9fbf51f60e01b81526001600160a01b0385166004820152602401610968565b82156124b45784866001600160a01b0316826001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45b505b5f93845260040160205250506040902080546001600160a01b0319166001600160a01b0392909216919091179055565b6124f183838361279f565b610d19576001600160a01b03831661251f57604051637e27328960e01b815260048101829052602401610968565b60405163177e802f60e01b81526001600160a01b038316600482015260248101829052604401610968565b5f805160206138cb8339815191525460ff166117d957604051638dfc202b60e01b815260040160405180910390fd5b61258282612804565b6040516001600160a01b038316907fbc7cd75a20ee27fd9adebab32041f755214dbc6bffa90cc0225b39da2e5c2d3b905f90a28051156125c657610d198282612867565b610c1d6128d9565b610c1d828260405180602001604052805f8152506128f8565b7ff0c57e16840df040f15088dc2f81fe391c3923bec73e23a9662efc9c229c6a0054600160401b900460ff166117d957604051631afcd79f60e31b815260040160405180910390fd5b6126386125e7565b5f805160206138088339815191528061265184826135e0565b5060018101610ca483826135e0565b6126686125e7565b5f805160206138cb833981519152805460ff19169055565b60606002805461268f90613563565b80601f01602080910402602001604051908101604052809291908181526020018280546126bb90613563565b80156127065780601f106126dd57610100808354040283529160200191612706565b820191905f5260205f20905b8154815290600101906020018083116126e957829003601f168201915b5050505050905090565b60605f61271c8361290e565b60010190505f816001600160401b0381111561273a5761273a612e0d565b6040519080825280601f01601f191660200182016040528015612764576020820181803683370190505b5090508181016020015b5f19016f181899199a1a9b1b9c1cb0b131b232b360811b600a86061a8153600a850494508461276e57509392505050565b5f6001600160a01b038316158015906127fc5750826001600160a01b0316846001600160a01b031614806127d857506127d88484611753565b806127fc5750826001600160a01b03166127f1836119bc565b6001600160a01b0316145b949350505050565b806001600160a01b03163b5f0361283957604051634c9c8ce360e01b81526001600160a01b0382166004820152602401610968565b5f8051602061382883398151915280546001600160a01b0319166001600160a01b0392909216919091179055565b60605f80846001600160a01b03168460405161288391906137ec565b5f60405180830381855af49150503d805f81146128bb576040519150601f19603f3d011682016040523d82523d5f602084013e6128c0565b606091505b50915091506128d08583836129e5565b95945050505050565b34156117d95760405163b398979f60e01b815260040160405180910390fd5b6129028383612a41565b610d195f848484612081565b5f8072184f03e93ff9f4daa797ed6e38ed64bf6a1f0160401b831061294c5772184f03e93ff9f4daa797ed6e38ed64bf6a1f0160401b830492506040015b6d04ee2d6d415b85acef81000000008310612978576d04ee2d6d415b85acef8100000000830492506020015b662386f26fc10000831061299657662386f26fc10000830492506010015b6305f5e10083106129ae576305f5e100830492506008015b61271083106129c257612710830492506004015b606483106129d4576064830492506002015b600a8310610b575760010192915050565b6060826129fa576129f582612aa2565b611aff565b8151158015612a1157506001600160a01b0384163b155b15612a3a57604051639996b31560e01b81526001600160a01b0385166004820152602401610968565b5080611aff565b6001600160a01b038216612a6a57604051633250574960e11b81525f6004820152602401610968565b5f612a7683835f611a02565b90506001600160a01b03811615610d19576040516339e3563760e11b81525f6004820152602401610968565b805115612ab25780518082602001fd5b604051630a12f52160e11b815260040160405180910390fd5b828054828255905f5260205f2090600701600890048101928215612b67579160200282015f5b83821115612b3557835183826101000a81548163ffffffff021916908363ffffffff1602179055509260200192600401602081600301049283019260010302612af1565b8015612b655782816101000a81549063ffffffff0219169055600401602081600301049283019260010302612b35565b505b50612b73929150612b77565b5090565b5b80821115612b73575f8155600101612b78565b6001600160a01b0381168114610eaa575f80fd5b5f8083601f840112612baf575f80fd5b5081356001600160401b03811115612bc5575f80fd5b6020830191508360208260051b8501011115612bdf575f80fd5b9250929050565b63ffffffff81168114610eaa575f80fd5b5f805f805f805f805f60c08a8c031215612c0f575f80fd5b8935612c1a81612b8b565b985060208a01356001600160401b0380821115612c35575f80fd5b612c418d838e01612b9f565b909a50985060408c01359150612c5682612be6565b90965060608b01359080821115612c6b575f80fd5b612c778d838e01612b9f565b909750955060808c0135915080821115612c8f575f80fd5b50612c9c8c828d01612b9f565b9a9d999c50979a9699959894979660a00135949350505050565b6001600160e01b031981168114610eaa575f80fd5b5f60208284031215612cdb575f80fd5b8135611aff81612cb6565b5f5b83811015612d00578181015183820152602001612ce8565b50505f910152565b5f8151808452612d1f816020860160208601612ce6565b601f01601f19169290920160200192915050565b602081525f611aff6020830184612d08565b5f60208284031215612d55575f80fd5b5035919050565b5f8060408385031215612d6d575f80fd5b8235612d7881612b8b565b946020939093013593505050565b5f805f60608486031215612d98575f80fd5b8335612da381612b8b565b92506020840135612db381612b8b565b929592945050506040919091013590565b5f8060408385031215612dd5575f80fd5b823591506020830135612de781612b8b565b809150509250929050565b80356001600160401b0381168114612e08575f80fd5b919050565b634e487b7160e01b5f52604160045260245ffd5b604051601f8201601f191681016001600160401b0381118282101715612e4957612e49612e0d565b604052919050565b5f6001600160401b03821115612e6957612e69612e0d565b5060051b60200190565b5f82601f830112612e82575f80fd5b81356020612e97612e9283612e51565b612e21565b82815260059290921b84018101918181019086841115612eb5575f80fd5b8286015b84811015612ed9578035612ecc81612be6565b8352918301918301612eb9565b509695505050505050565b5f805f8060808587031215612ef7575f80fd5b612f0085612df2565b9350602080860135935060408601356001600160401b0380821115612f23575f80fd5b612f2f89838a01612e73565b94506060880135915080821115612f44575f80fd5b818801915088601f830112612f57575f80fd5b8135612f65612e9282612e51565b81815260059190911b8301840190848101908b831115612f83575f80fd5b8585015b83811015612fba57803585811115612f9e575f8081fd5b612fac8e89838a0101612e73565b845250918601918601612f87565b50989b979a50959850505050505050565b5f6001600160401b03831115612fe357612fe3612e0d565b612ff6601f8401601f1916602001612e21565b9050828152838383011115613009575f80fd5b828260208301375f602084830101529392505050565b5f82601f83011261302e575f80fd5b611aff83833560208501612fcb565b5f806040838503121561304e575f80fd5b823561305981612b8b565b915060208301356001600160401b03811115613073575f80fd5b61307f8582860161301f565b9150509250929050565b5f60208284031215613099575f80fd5b81356001600160401b038111156130ae575f80fd5b8201601f810184136130be575f80fd5b6127fc84823560208401612fcb565b60808101610b578284805163ffffffff908116835260208083015182169084015260408083015160ff169084015260609182015116910152565b5f60208284031215613117575f80fd5b611aff82612df2565b5f8151808452602080850194508084015f5b8381101561315457815163ffffffff1687529582019590820190600101613132565b509495945050505050565b828152604060208201525f6127fc6040830184613120565b5f6020808385031215613188575f80fd5b82356001600160401b0381111561319d575f80fd5b8301601f810185136131ad575f80fd5b80356131bb612e9282612e51565b81815260059190911b820183019083810190878311156131d9575f80fd5b928401925b828410156131f7578335825292840192908401906131de565b979650505050505050565b5f60208284031215613212575f80fd5b8135611aff81612b8b565b5f602080838503121561322e575f80fd5b82356001600160401b0380821115613244575f80fd5b818501915085601f830112613257575f80fd5b8135613265612e9282612e51565b81815260059190911b83018401908481019088831115613283575f80fd5b8585015b838110156132ba5780358581111561329e575f8081fd5b6132ac8b89838a010161301f565b845250918601918601613287565b5098975050505050505050565b5f80604083850312156132d8575f80fd5b82356132e381612b8b565b915060208301358015158114612de7575f80fd5b60ff81168114610eaa575f80fd5b5f805f805f60a08688031215613319575f80fd5b853561332481612b8b565b94506020860135613334816132f7565b9350604086013561334481612be6565b9250606086013561335481612be6565b9150608086013561336481612be6565b809150509295509295909350565b5f805f8060808587031215613385575f80fd5b843561339081612b8b565b935060208501356133a081612b8b565b92506040850135915060608501356001600160401b038111156133c1575f80fd5b6133cd8782880161301f565b91505092959194509250565b5f80604083850312156133ea575f80fd5b6133f383612df2565b91506020830135612de7816132f7565b602081525f611aff6020830184613120565b5f805f805f60a08688031215613429575f80fd5b85359450602086013561343b81612be6565b93506040860135613344816132f7565b5f806040838503121561345c575f80fd5b823561346781612b8b565b91506020830135612de781612b8b565b634e487b7160e01b5f52603260045260245ffd5b5f6020828403121561349b575f80fd5b8135611aff816132f7565b634e487b7160e01b5f52601160045260245ffd5b5f60ff821660ff81036134cf576134cf6134a6565b60010192915050565b6001600160a01b03831681526040602080830182905283519183018290525f9184820191906060850190845b8181101561355657613543838651805163ffffffff908116835260208083015182169084015260408083015160ff169084015260609182015116910152565b9383019360809290920191600101613504565b5090979650505050505050565b600181811c9082168061357757607f821691505b60208210810361359557634e487b7160e01b5f52602260045260245ffd5b50919050565b601f821115610d19575f81815260208120601f850160051c810160208610156135c15750805b601f850160051c820191505b818110156114e1578281556001016135cd565b81516001600160401b038111156135f9576135f9612e0d565b61360d816136078454613563565b8461359b565b602080601f831160018114613640575f84156136295750858301515b5f19600386901b1c1916600185901b1785556114e1565b5f85815260208120601f198616915b8281101561366e5788860151825594840194600190910190840161364f565b508582101561368b57878501515f19600388901b60f8161c191681555b5050505050600190811b01905550565b5f600182016136ac576136ac6134a6565b5060010190565b5f805f805f60a086880312156136c7575f80fd5b85516136d281612b8b565b60208701519095506136e381612be6565b60408701519094506136f481612be6565b6060870151909350613705816132f7565b608087015190925061336481612be6565b81810381811115610b5757610b576134a6565b80820180821115610b5757610b576134a6565b5f6020828403121561374c575f80fd5b5051919050565b6001600160a01b03858116825284166020820152604081018390526080606082018190525f9061378590830184612d08565b9695505050505050565b5f6020828403121561379f575f80fd5b8151611aff81612cb6565b5f83516137bb818460208801612ce6565b8351908301906137cf818360208801612ce6565b01949350505050565b634e487b7160e01b5f52601260045260245ffd5b5f82516137fd818460208701612ce6565b919091019291505056fe80bb2b638cc20bc4d0a60d66940f3ab4a00c1d7b313497ca82fb0b4ab0079300360894a13ba1a3210667c828492db98dca3e2076cc3735a920a3ca505d382bbc65d7a28e3265b37a6474929f336521b332c1681b933f6cb9f3376673440d862a687474703a2f2f6170692e6361746769726c2e696f2f6e66742f6361746769726c732f9f2df0fed2c77648de5860a4cc508cd0818c85b8b8a1ab4ceeef8d981c8956a602dd7bc7dec4dceedda775e58dd541e08a116c6c53815c0bd028192f7b626800cd5ed15c6e187e77e9aee88184c21f4f2182ab5827cb3b7e07fbedcd63f03300a264697066735822122045488238dc67bb171e04efe4c63ab54b041ff8a433f0ee27b4ba693db77e075964736f6c63430008140033
Loading...
Loading
Loading...
Loading
Multichain Portfolio | 30 Chains
Chain | Token | Portfolio % | Price | Amount | Value |
---|---|---|---|---|---|
ETH | Ether (ETH) | 100.00% | $2,764.85 | 0.5715 | $1,580.22 |
Loading...
Loading
[ Download: CSV Export ]
A contract address hosts a smart contract, which is a set of code stored on the blockchain that runs when predetermined conditions are met. Learn more about addresses in our Knowledge Base.