Feature Tip: Add private address tag to any address under My Name Tag !
ERC-721
Overview
Max Total Supply
10,172 ELMNT
Holders
1,089
Total Transfers
-
Market
Volume (24H)
N/A
Min Price (24H)
N/A
Max Price (24H)
N/A
Other Info
Token Contract
Loading...
Loading
Loading...
Loading
Loading...
Loading
# | Exchange | Pair | Price | 24H Volume | % Volume |
---|
Contract Source Code Verified (Exact Match)
Contract Name:
ElementNFT
Compiler Version
v0.8.24+commit.e11b9ed9
Optimization Enabled:
Yes with 200 runs
Other Settings:
paris EvmVersion
Contract Source Code (Solidity Standard Json-Input format)
// SPDX-License-Identifier: UNLICENSED pragma solidity ^0.8.24; import "@openzeppelin/contracts/access/Ownable.sol"; import "@openzeppelin/contracts/interfaces/IERC20.sol"; import "@openzeppelin/contracts/interfaces/IERC165.sol"; import "@openzeppelin/contracts/token/ERC20/utils/SafeERC20.sol"; import "@openzeppelin/contracts/utils/Strings.sol"; import "@uniswap/v3-periphery/contracts/interfaces/ISwapRouter.sol"; import "erc721a/contracts/ERC721A.sol"; import "./interfaces/IElement280.sol"; import "./interfaces/IWETH9.sol"; import "./lib/constants.sol"; /// @title Element 280 NFT Contract contract ElementNFT is ERC721A, Ownable, IERC165 { using SafeERC20 for IERC20; using Strings for uint256; // --------------------------- STATE VARIABLES --------------------------- // address public immutable E280; address public treasury; uint256 private constant _BITPOS_NFT_TIER = 0; uint256 private constant _BITMASK_NFT_TIER = (1 << 8) - 1; uint256 private constant _BITPOS_TIMESTAMP = 8; uint256 private constant _BITMASK_TIMESTAMP = (1 << 64) - 1; uint256 private constant _BITPOS_MULTIPLIER = 72; uint256 private constant _BITMASK_MULTIPLIER = (1 << 16) - 1; /// @notice Total multipliers of all existing tokens. /// @dev Used in cycle reward calculation of the Element 280 Holder Vault contract. uint256 public multiplierPool; /// @notice Timestamp in seconds of the presale end date. uint256 public presaleEnd; string public contractURI; mapping(uint8 tier => string) public baseURIs; /// @notice Static multipliers per tier. mapping(uint8 tier => uint16) public tierMultipliers; /// @notice Static Element 280 token allocations per tier. /// @dev Also used for price calculation. mapping(uint8 tier => uint256) public tierAllocations; mapping(uint256 => uint256) private _packedTokenData; // --------------------------- EVENTS & MODIFIERS --------------------------- // event BatchMetadataUpdate(uint256 _fromTokenId, uint256 _toTokenId); event ContractURIUpdated(); modifier onlyPresale() { require(presaleEnd > block.timestamp, "Presale not active"); _; } // --------------------------- CONSTRUCTOR --------------------------- // constructor(address _owner, address _treasury, string memory _contractURI, address _E280, string[] memory _baseURIs) ERC721A("Element 280", "ELMNT") Ownable(_owner) { require(_owner != address(0), "Owner address not provided"); require(_treasury != address(0), "Treasury address not provided"); require(_E280 != address(0), "E280 address not provided"); require(_baseURIs.length == 6, "Incorrect number of base URIs sent"); contractURI = _contractURI; E280 = _E280; treasury = _treasury; tierMultipliers[1] = 10; tierMultipliers[2] = 12; tierMultipliers[3] = 100; tierMultipliers[4] = 120; tierMultipliers[5] = 1000; tierMultipliers[6] = 1200; tierAllocations[1] = 100_000_000 ether; tierAllocations[2] = 100_000_000 ether; tierAllocations[3] = 1_000_000_000 ether; tierAllocations[4] = 1_000_000_000 ether; tierAllocations[5] = 10_000_000_000 ether; tierAllocations[6] = 10_000_000_000 ether; for (uint8 i = 0; i < _baseURIs.length; i++) { baseURIs[i + 1] = _baseURIs[i]; } } // --------------------------- PUBLIC FUNCTIONS --------------------------- // /// @notice Mints NFTs using TitanX tokens during the presale. /// @param tieredNfts List of NFTs to mint, represented by their tier number. function mintWithTitanX(uint8[] calldata tieredNfts) public onlyPresale { (uint256 titanXPool, uint256 ampPool) = _processNftTiers(tieredNfts); IERC20 titanX = IERC20(TITANX); titanX.safeTransferFrom(msg.sender, E280, titanXPool); if (ampPool > 0) titanX.safeTransferFrom(msg.sender, treasury, ampPool); _mint(msg.sender, tieredNfts.length); } /// @notice Mints NFTs using Ethereum during the presale. /// @notice Refunds TitanX if the amount swapped is greater than the price. /// @param tieredNfts List of NFTs to mint, represented by their tier number. function mintWithEth(uint8[] calldata tieredNfts, uint256 deadline) public payable onlyPresale { (uint256 titanXPool, uint256 ampPool) = _processNftTiers(tieredNfts); uint256 totalTitanX; unchecked { totalTitanX = titanXPool + ampPool; } uint256 swappedAmount = _swapETHForTitanX(totalTitanX, deadline); IERC20 titanX = IERC20(TITANX); titanX.safeTransfer(E280, titanXPool); if (ampPool > 0) titanX.safeTransfer(treasury, ampPool); _mint(msg.sender, tieredNfts.length); if (swappedAmount > totalTitanX) { titanX.safeTransfer(msg.sender, swappedAmount - totalTitanX); } } /// @notice Burns the NFT and mints Element 280 tokens to the user. /// @param tokenIds An array of token IDs to redeem. function redeemNFTs(uint256[] calldata tokenIds) external { uint256 totalAllocation; require(tokenIds.length > 0, "Empty array"); address initialOwner = ownerOf(tokenIds[0]); for (uint256 i = 0; i < tokenIds.length; i++) { uint256 tokenId = tokenIds[i]; uint256 data = _packedTokenData[tokenId]; require(block.timestamp > _getTimestamp(data) + COOLDOWN_PERIOD, "Cooldown is active"); uint8 tier = _getNftTier(data); unchecked { totalAllocation += tierAllocations[tier]; multiplierPool -= _getMultiplier(data); require(initialOwner == ownerOf(tokenId), "NFT not owned by same user"); } _burn(tokenId, true); } IElement280(E280).handleRedeem(totalAllocation, initialOwner); } // --------------------------- ADMINISTRATIVE FUNCTIONS --------------------------- // /// @notice Starts the presale with a specific end date. /// @param _presaleEnd The timestamp when the presale will end. /// @dev Can only be called by the E280 contract. function startPresale(uint256 _presaleEnd) external { require(msg.sender == address(E280), "Unauthorized"); presaleEnd = _presaleEnd; } /// @notice Sets the contract-level metadata URI. /// @param _uri The URI of the contract metadata. function setContractURI(string memory _uri) external onlyOwner { contractURI = _uri; emit ContractURIUpdated(); } /// @notice Sets the base URI for a specific tier. /// @param tier The NFT tier to set the URI for. /// @param _uri The base URI for the specified tier. function setBaseURI(uint8 tier, string memory _uri) external onlyOwner { baseURIs[tier] = _uri; emit BatchMetadataUpdate(1, type(uint256).max); } // --------------------------- VIEW FUNCTIONS --------------------------- // /// @notice Calculates the total allocation of Element 280 tokens for a set of NFTs. /// @param tokenIds An array of token IDs to calculate allocations for. /// @return totalAllocation The total allocation of Element 280 tokens in WEI. function calculateAllocation(uint256[] calldata tokenIds) external view returns (uint256) { require(tokenIds.length > 0, "No tokens provided"); uint256 totalAllocation; for (uint256 i = 0; i < tokenIds.length; i++) { for (uint256 j = i + 1; j < tokenIds.length; j++) { require(tokenIds[i] != tokenIds[j], "Duplicate token ID"); } unchecked { require(_exists(tokenIds[i]), "Token ID does not exist"); totalAllocation += tierAllocations[getNftTier(tokenIds[i])]; } } return totalAllocation; } /// @notice Returns a tier number for a specific token ID. /// @param tokenId Token ID of the token. /// @return Tier of the NFT. function getNftTier(uint256 tokenId) public view returns (uint8) { uint256 packedData = _packedTokenData[tokenId]; return _getNftTier(packedData); } /// @notice Returns time of purchase for a specific token ID. /// @param tokenId Token ID of the token. /// @return Time of purchase in seconds. function getTimestamp(uint256 tokenId) public view returns (uint64) { uint256 packedData = _packedTokenData[tokenId]; return _getTimestamp(packedData); } /// @notice Returns a multiplier for a specific token ID. /// @param tokenId Token ID of the token. /// @return Multiplier of the NFT. function getMultiplier(uint256 tokenId) public view returns (uint64) { uint256 packedData = _packedTokenData[tokenId]; return _getMultiplier(packedData); } /// @notice Retrieves the timestamps and multipliers of the specified NFTs. /// @param tokenIds An array of token IDs to query. /// @param nftOwner The owner address of the NFTs. /// @return timestamps An array of timestamps for each token. /// @return multipliers An array of multipliers for each token. /// @dev Used by Holder Vault to calculate cycle rewards. function getBatchedTokensData(uint256[] calldata tokenIds, address nftOwner) external view returns (uint256[] memory timestamps, uint16[] memory multipliers) { timestamps = new uint256[](tokenIds.length); multipliers = new uint16[](tokenIds.length); for (uint256 i = 0; i < tokenIds.length; i++) { uint256 tokenId = tokenIds[i]; require(ownerOf(tokenId) == nftOwner, "Unauthorized"); uint256 packedData = _packedTokenData[tokenId]; timestamps[i] = _getTimestamp(packedData); multipliers[i] = _getMultiplier(packedData); } } /// @notice Returns the total number of NFTs per tier. /// @return total An array where each index corresponds to the total NFTs for a specific tier. /// @dev Should not be called by contracts. function getTotalNftsPerTiers() external view returns (uint256[] memory total) { uint256 totalTokenIds = _nextTokenId(); total = new uint256[](6); for (uint256 tokenId = 1; tokenId < totalTokenIds; tokenId++) { if (_exists(tokenId)) { total[_getNftTier(_packedTokenData[tokenId]) - 1]++; } } } /// @notice Returns all token IDs owned by a specific account. /// @param account The address of the token owner. /// @return tokenIds An array of token IDs owned by the account. /// @dev Should not be called by contracts. function tokenIdsOf(address account) external view returns (uint256[] memory tokenIds) { uint256 totalTokenIds = _nextTokenId(); uint256 userBalance = balanceOf(account); tokenIds = new uint256[](userBalance); if (userBalance == 0) return tokenIds; uint256 counter; for (uint256 tokenId = 1; tokenId < totalTokenIds; tokenId++) { if (_exists(tokenId) && ownerOf(tokenId) == account) { tokenIds[counter] = tokenId; counter++; if (counter == userBalance) return tokenIds; } } } /// @notice Returns the total TitanX amount required for minting the given list of NFTs. /// @param tieredNfts An array of NFT to mint, represented by their respected tiers. /// @return titanXPool The total TitanX required for the minting transaction (in WEI). function getTotalPrice(uint8[] calldata tieredNfts) external view returns (uint256 titanXPool) { for (uint256 i = 0; i < tieredNfts.length; i++) { uint8 tier = tieredNfts[i]; (bool isValid, bool isAmped) = _processTier(tier); require(isValid, "Not a valid tier"); unchecked { titanXPool += tierAllocations[tier]; if (isAmped) titanXPool += tierAllocations[tier] * 10 / 100; } } } /// @notice Returns the total number of NFTs burned. function totalBurned() external view returns (uint256) { return _totalBurned(); } function tokenURI(uint256 tokenId) public view virtual override returns (string memory) { require(_exists(tokenId), "URI query for nonexistent token"); return bytes(baseURIs[getNftTier(tokenId)]).length != 0 ? baseURIs[getNftTier(tokenId)] : ""; } function supportsInterface(bytes4 interfaceId) public view virtual override(IERC165, ERC721A) returns (bool) { return interfaceId == INTERFACE_ID_ERC165 || interfaceId == INTERFACE_ID_ERC721 || interfaceId == INTERFACE_ID_ERC721Metadata || super.supportsInterface(interfaceId); } // --------------------------- INTERNAL FUNCTIONS --------------------------- // function _startTokenId() internal view virtual override returns (uint256) { return 1; } function _processNftTiers(uint8[] calldata tieredNfts) internal returns (uint256 titanXPool, uint256 ampPool) { require(tieredNfts.length > 0, "Need to mint at least 1 NFT"); uint256 currentIndex = _nextTokenId(); for (uint256 i = 0; i < tieredNfts.length; i++) { uint8 tier = tieredNfts[i]; (bool isValid, bool isAmped) = _processTier(tier); require(isValid, "Not a valid tier"); uint16 multiplier = tierMultipliers[tier]; _setNftData(currentIndex + i, tier, uint64(block.timestamp), multiplier); unchecked { multiplierPool += multiplier; titanXPool += tierAllocations[tier]; if (isAmped) ampPool += tierAllocations[tier] * 10 / 100; } } } function _packData(uint8 nftTier, uint64 timestamp, uint16 multiplier) internal pure returns (uint256) { return (uint256(nftTier) << _BITPOS_NFT_TIER) | (uint256(timestamp) << _BITPOS_TIMESTAMP) | (uint256(multiplier) << _BITPOS_MULTIPLIER); } function _getNftTier(uint256 packedData) internal pure returns (uint8) { return uint8(packedData & _BITMASK_NFT_TIER); } function _getTimestamp(uint256 packedData) internal pure returns (uint64) { return uint64((packedData >> _BITPOS_TIMESTAMP) & _BITMASK_TIMESTAMP); } function _getMultiplier(uint256 packedData) internal pure returns (uint16) { return uint16((packedData >> _BITPOS_MULTIPLIER) & _BITMASK_MULTIPLIER); } function _setNftData(uint256 tokenId, uint8 nftTier, uint64 timestamp, uint16 multiplier) internal { uint256 packedData = _packData(nftTier, timestamp, multiplier); _packedTokenData[tokenId] = packedData; } function _processTier(uint8 tier) private pure returns (bool isValid, bool isAmped) { return (tier > 0 && tier < 7, tier % 2 == 0); } function _swapETHForTitanX(uint256 minAmountOut, uint256 deadline) internal returns (uint256) { IWETH9(WETH9).deposit{value: msg.value}(); ISwapRouter.ExactInputSingleParams memory params = ISwapRouter.ExactInputSingleParams({ tokenIn: WETH9, tokenOut: TITANX, fee: POOL_FEE_1PERCENT, recipient: address(this), deadline: deadline, amountIn: msg.value, amountOutMinimum: minAmountOut, sqrtPriceLimitX96: 0 }); IERC20(WETH9).safeIncreaseAllowance(UNISWAP_V3_ROUTER, msg.value); uint256 amountOut = ISwapRouter(UNISWAP_V3_ROUTER).exactInputSingle(params); return amountOut; } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v5.0.0) (access/Ownable.sol) pragma solidity ^0.8.20; import {Context} from "../utils/Context.sol"; /** * @dev Contract module which provides a basic access control mechanism, where * there is an account (an owner) that can be granted exclusive access to * specific functions. * * The initial owner is set to the address provided by the deployer. This can * later be changed with {transferOwnership}. * * This module is used through inheritance. It will make available the modifier * `onlyOwner`, which can be applied to your functions to restrict their use to * the owner. */ abstract contract Ownable is Context { address private _owner; /** * @dev The caller account is not authorized to perform an operation. */ error OwnableUnauthorizedAccount(address account); /** * @dev The owner is not a valid owner account. (eg. `address(0)`) */ error OwnableInvalidOwner(address owner); event OwnershipTransferred(address indexed previousOwner, address indexed newOwner); /** * @dev Initializes the contract setting the address provided by the deployer as the initial owner. */ constructor(address initialOwner) { if (initialOwner == address(0)) { revert OwnableInvalidOwner(address(0)); } _transferOwnership(initialOwner); } /** * @dev Throws if called by any account other than the owner. */ modifier onlyOwner() { _checkOwner(); _; } /** * @dev Returns the address of the current owner. */ function owner() public view virtual returns (address) { return _owner; } /** * @dev Throws if the sender is not the owner. */ function _checkOwner() internal view virtual { if (owner() != _msgSender()) { revert OwnableUnauthorizedAccount(_msgSender()); } } /** * @dev Leaves the contract without owner. It will not be possible to call * `onlyOwner` functions. Can only be called by the current owner. * * NOTE: Renouncing ownership will leave the contract without an owner, * thereby disabling any functionality that is only available to the owner. */ function renounceOwnership() public virtual onlyOwner { _transferOwnership(address(0)); } /** * @dev Transfers ownership of the contract to a new account (`newOwner`). * Can only be called by the current owner. */ function transferOwnership(address newOwner) public virtual onlyOwner { if (newOwner == address(0)) { revert OwnableInvalidOwner(address(0)); } _transferOwnership(newOwner); } /** * @dev Transfers ownership of the contract to a new account (`newOwner`). * Internal function without access restriction. */ function _transferOwnership(address newOwner) internal virtual { address oldOwner = _owner; _owner = newOwner; emit OwnershipTransferred(oldOwner, newOwner); } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v5.0.0) (interfaces/IERC165.sol) pragma solidity ^0.8.20; import {IERC165} from "../utils/introspection/IERC165.sol";
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v5.0.0) (interfaces/IERC20.sol) pragma solidity ^0.8.20; import {IERC20} from "../token/ERC20/IERC20.sol";
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v5.0.0) (token/ERC20/extensions/IERC20Permit.sol) pragma solidity ^0.8.20; /** * @dev Interface of the ERC20 Permit extension allowing approvals to be made via signatures, as defined in * https://eips.ethereum.org/EIPS/eip-2612[EIP-2612]. * * Adds the {permit} method, which can be used to change an account's ERC20 allowance (see {IERC20-allowance}) by * presenting a message signed by the account. By not relying on {IERC20-approve}, the token holder account doesn't * need to send a transaction, and thus is not required to hold Ether at all. * * ==== Security Considerations * * There are two important considerations concerning the use of `permit`. The first is that a valid permit signature * expresses an allowance, and it should not be assumed to convey additional meaning. In particular, it should not be * considered as an intention to spend the allowance in any specific way. The second is that because permits have * built-in replay protection and can be submitted by anyone, they can be frontrun. A protocol that uses permits should * take this into consideration and allow a `permit` call to fail. Combining these two aspects, a pattern that may be * generally recommended is: * * ```solidity * function doThingWithPermit(..., uint256 value, uint256 deadline, uint8 v, bytes32 r, bytes32 s) public { * try token.permit(msg.sender, address(this), value, deadline, v, r, s) {} catch {} * doThing(..., value); * } * * function doThing(..., uint256 value) public { * token.safeTransferFrom(msg.sender, address(this), value); * ... * } * ``` * * Observe that: 1) `msg.sender` is used as the owner, leaving no ambiguity as to the signer intent, and 2) the use of * `try/catch` allows the permit to fail and makes the code tolerant to frontrunning. (See also * {SafeERC20-safeTransferFrom}). * * Additionally, note that smart contract wallets (such as Argent or Safe) are not able to produce permit signatures, so * contracts should have entry points that don't rely on permit. */ interface IERC20Permit { /** * @dev Sets `value` as the allowance of `spender` over ``owner``'s tokens, * given ``owner``'s signed approval. * * IMPORTANT: The same issues {IERC20-approve} has related to transaction * ordering also apply here. * * Emits an {Approval} event. * * Requirements: * * - `spender` cannot be the zero address. * - `deadline` must be a timestamp in the future. * - `v`, `r` and `s` must be a valid `secp256k1` signature from `owner` * over the EIP712-formatted function arguments. * - the signature must use ``owner``'s current nonce (see {nonces}). * * For more information on the signature format, see the * https://eips.ethereum.org/EIPS/eip-2612#specification[relevant EIP * section]. * * CAUTION: See Security Considerations above. */ function permit(address owner, address spender, uint256 value, uint256 deadline, uint8 v, bytes32 r, bytes32 s) external; /** * @dev Returns the current nonce for `owner`. This value must be * included whenever a signature is generated for {permit}. * * Every successful call to {permit} increases ``owner``'s nonce by one. This * prevents a signature from being used multiple times. */ function nonces(address owner) external view returns (uint256); /** * @dev Returns the domain separator used in the encoding of the signature for {permit}, as defined by {EIP712}. */ // solhint-disable-next-line func-name-mixedcase function DOMAIN_SEPARATOR() external view returns (bytes32); }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v5.0.0) (token/ERC20/IERC20.sol) pragma solidity ^0.8.20; /** * @dev Interface of the ERC20 standard as defined in the EIP. */ interface IERC20 { /** * @dev Emitted when `value` tokens are moved from one account (`from`) to * another (`to`). * * Note that `value` may be zero. */ event Transfer(address indexed from, address indexed to, uint256 value); /** * @dev Emitted when the allowance of a `spender` for an `owner` is set by * a call to {approve}. `value` is the new allowance. */ event Approval(address indexed owner, address indexed spender, uint256 value); /** * @dev Returns the value of tokens in existence. */ function totalSupply() external view returns (uint256); /** * @dev Returns the value of tokens owned by `account`. */ function balanceOf(address account) external view returns (uint256); /** * @dev Moves a `value` amount of tokens from the caller's account to `to`. * * Returns a boolean value indicating whether the operation succeeded. * * Emits a {Transfer} event. */ function transfer(address to, uint256 value) external returns (bool); /** * @dev Returns the remaining number of tokens that `spender` will be * allowed to spend on behalf of `owner` through {transferFrom}. This is * zero by default. * * This value changes when {approve} or {transferFrom} are called. */ function allowance(address owner, address spender) external view returns (uint256); /** * @dev Sets a `value` amount of tokens as the allowance of `spender` over the * caller's tokens. * * Returns a boolean value indicating whether the operation succeeded. * * IMPORTANT: Beware that changing an allowance with this method brings the risk * that someone may use both the old and the new allowance by unfortunate * transaction ordering. One possible solution to mitigate this race * condition is to first reduce the spender's allowance to 0 and set the * desired value afterwards: * https://github.com/ethereum/EIPs/issues/20#issuecomment-263524729 * * Emits an {Approval} event. */ function approve(address spender, uint256 value) external returns (bool); /** * @dev Moves a `value` amount of tokens from `from` to `to` using the * allowance mechanism. `value` is then deducted from the caller's * allowance. * * Returns a boolean value indicating whether the operation succeeded. * * Emits a {Transfer} event. */ function transferFrom(address from, address to, uint256 value) external returns (bool); }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v5.0.0) (token/ERC20/utils/SafeERC20.sol) pragma solidity ^0.8.20; import {IERC20} from "../IERC20.sol"; import {IERC20Permit} from "../extensions/IERC20Permit.sol"; import {Address} from "../../../utils/Address.sol"; /** * @title SafeERC20 * @dev Wrappers around ERC20 operations that throw on failure (when the token * contract returns false). Tokens that return no value (and instead revert or * throw on failure) are also supported, non-reverting calls are assumed to be * successful. * To use this library you can add a `using SafeERC20 for IERC20;` statement to your contract, * which allows you to call the safe operations as `token.safeTransfer(...)`, etc. */ library SafeERC20 { using Address for address; /** * @dev An operation with an ERC20 token failed. */ error SafeERC20FailedOperation(address token); /** * @dev Indicates a failed `decreaseAllowance` request. */ error SafeERC20FailedDecreaseAllowance(address spender, uint256 currentAllowance, uint256 requestedDecrease); /** * @dev Transfer `value` amount of `token` from the calling contract to `to`. If `token` returns no value, * non-reverting calls are assumed to be successful. */ function safeTransfer(IERC20 token, address to, uint256 value) internal { _callOptionalReturn(token, abi.encodeCall(token.transfer, (to, value))); } /** * @dev Transfer `value` amount of `token` from `from` to `to`, spending the approval given by `from` to the * calling contract. If `token` returns no value, non-reverting calls are assumed to be successful. */ function safeTransferFrom(IERC20 token, address from, address to, uint256 value) internal { _callOptionalReturn(token, abi.encodeCall(token.transferFrom, (from, to, value))); } /** * @dev Increase the calling contract's allowance toward `spender` by `value`. If `token` returns no value, * non-reverting calls are assumed to be successful. */ function safeIncreaseAllowance(IERC20 token, address spender, uint256 value) internal { uint256 oldAllowance = token.allowance(address(this), spender); forceApprove(token, spender, oldAllowance + value); } /** * @dev Decrease the calling contract's allowance toward `spender` by `requestedDecrease`. If `token` returns no * value, non-reverting calls are assumed to be successful. */ function safeDecreaseAllowance(IERC20 token, address spender, uint256 requestedDecrease) internal { unchecked { uint256 currentAllowance = token.allowance(address(this), spender); if (currentAllowance < requestedDecrease) { revert SafeERC20FailedDecreaseAllowance(spender, currentAllowance, requestedDecrease); } forceApprove(token, spender, currentAllowance - requestedDecrease); } } /** * @dev Set the calling contract's allowance toward `spender` to `value`. If `token` returns no value, * non-reverting calls are assumed to be successful. Meant to be used with tokens that require the approval * to be set to zero before setting it to a non-zero value, such as USDT. */ function forceApprove(IERC20 token, address spender, uint256 value) internal { bytes memory approvalCall = abi.encodeCall(token.approve, (spender, value)); if (!_callOptionalReturnBool(token, approvalCall)) { _callOptionalReturn(token, abi.encodeCall(token.approve, (spender, 0))); _callOptionalReturn(token, approvalCall); } } /** * @dev Imitates a Solidity high-level call (i.e. a regular function call to a contract), relaxing the requirement * on the return value: the return value is optional (but if data is returned, it must not be false). * @param token The token targeted by the call. * @param data The call data (encoded using abi.encode or one of its variants). */ function _callOptionalReturn(IERC20 token, bytes memory data) private { // We need to perform a low level call here, to bypass Solidity's return data size checking mechanism, since // we're implementing it ourselves. We use {Address-functionCall} to perform this call, which verifies that // the target address contains contract code and also asserts for success in the low-level call. bytes memory returndata = address(token).functionCall(data); if (returndata.length != 0 && !abi.decode(returndata, (bool))) { revert SafeERC20FailedOperation(address(token)); } } /** * @dev Imitates a Solidity high-level call (i.e. a regular function call to a contract), relaxing the requirement * on the return value: the return value is optional (but if data is returned, it must not be false). * @param token The token targeted by the call. * @param data The call data (encoded using abi.encode or one of its variants). * * This is a variant of {_callOptionalReturn} that silents catches all reverts and returns a bool instead. */ function _callOptionalReturnBool(IERC20 token, bytes memory data) private returns (bool) { // We need to perform a low level call here, to bypass Solidity's return data size checking mechanism, since // we're implementing it ourselves. We cannot use {Address-functionCall} here since this should return false // and not revert is the subcall reverts. (bool success, bytes memory returndata) = address(token).call(data); return success && (returndata.length == 0 || abi.decode(returndata, (bool))) && address(token).code.length > 0; } }
// 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.1) (utils/Context.sol) pragma solidity ^0.8.20; /** * @dev Provides information about the current execution context, including the * sender of the transaction and its data. While these are generally available * via msg.sender and msg.data, they should not be accessed in such a direct * manner, since when dealing with meta-transactions the account sending and * paying for execution may not be the actual sender (as far as an application * is concerned). * * This contract is only required for intermediate, library-like contracts. */ abstract contract Context { function _msgSender() internal view virtual returns (address) { return msg.sender; } function _msgData() internal view virtual returns (bytes calldata) { return msg.data; } function _contextSuffixLength() internal view virtual returns (uint256) { return 0; } }
// 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/Strings.sol) pragma solidity ^0.8.20; import {Math} from "./math/Math.sol"; import {SignedMath} from "./math/SignedMath.sol"; /** * @dev String operations. */ library Strings { bytes16 private constant HEX_DIGITS = "0123456789abcdef"; uint8 private constant ADDRESS_LENGTH = 20; /** * @dev The `value` string doesn't fit in the specified `length`. */ error StringsInsufficientHexLength(uint256 value, uint256 length); /** * @dev Converts a `uint256` to its ASCII `string` decimal representation. */ function toString(uint256 value) internal pure returns (string memory) { unchecked { uint256 length = Math.log10(value) + 1; string memory buffer = new string(length); uint256 ptr; /// @solidity memory-safe-assembly assembly { ptr := add(buffer, add(32, length)) } while (true) { ptr--; /// @solidity memory-safe-assembly assembly { mstore8(ptr, byte(mod(value, 10), HEX_DIGITS)) } value /= 10; if (value == 0) break; } return buffer; } } /** * @dev Converts a `int256` to its ASCII `string` decimal representation. */ function toStringSigned(int256 value) internal pure returns (string memory) { return string.concat(value < 0 ? "-" : "", toString(SignedMath.abs(value))); } /** * @dev Converts a `uint256` to its ASCII `string` hexadecimal representation. */ function toHexString(uint256 value) internal pure returns (string memory) { unchecked { return toHexString(value, Math.log256(value) + 1); } } /** * @dev Converts a `uint256` to its ASCII `string` hexadecimal representation with fixed length. */ function toHexString(uint256 value, uint256 length) internal pure returns (string memory) { uint256 localValue = value; bytes memory buffer = new bytes(2 * length + 2); buffer[0] = "0"; buffer[1] = "x"; for (uint256 i = 2 * length + 1; i > 1; --i) { buffer[i] = HEX_DIGITS[localValue & 0xf]; localValue >>= 4; } if (localValue != 0) { revert StringsInsufficientHexLength(value, length); } return string(buffer); } /** * @dev Converts an `address` with fixed length of 20 bytes to its not checksummed ASCII `string` hexadecimal * representation. */ function toHexString(address addr) internal pure returns (string memory) { return toHexString(uint256(uint160(addr)), ADDRESS_LENGTH); } /** * @dev Returns true if the two strings are equal. */ function equal(string memory a, string memory b) internal pure returns (bool) { return bytes(a).length == bytes(b).length && keccak256(bytes(a)) == keccak256(bytes(b)); } }
// SPDX-License-Identifier: GPL-2.0-or-later pragma solidity >=0.5.0; /// @title Callback for IUniswapV3PoolActions#swap /// @notice Any contract that calls IUniswapV3PoolActions#swap must implement this interface interface IUniswapV3SwapCallback { /// @notice Called to `msg.sender` after executing a swap via IUniswapV3Pool#swap. /// @dev In the implementation you must pay the pool tokens owed for the swap. /// The caller of this method must be checked to be a UniswapV3Pool deployed by the canonical UniswapV3Factory. /// amount0Delta and amount1Delta can both be 0 if no tokens were swapped. /// @param amount0Delta The amount of token0 that was sent (negative) or must be received (positive) by the pool by /// the end of the swap. If positive, the callback must send that amount of token0 to the pool. /// @param amount1Delta The amount of token1 that was sent (negative) or must be received (positive) by the pool by /// the end of the swap. If positive, the callback must send that amount of token1 to the pool. /// @param data Any data passed through by the caller via the IUniswapV3PoolActions#swap call function uniswapV3SwapCallback(int256 amount0Delta, int256 amount1Delta, bytes calldata data) external; }
// SPDX-License-Identifier: GPL-2.0-or-later pragma solidity >=0.7.5; pragma abicoder v2; import "@uniswap/v3-core/contracts/interfaces/callback/IUniswapV3SwapCallback.sol"; /// @title Router token swapping functionality /// @notice Functions for swapping tokens via Uniswap V3 interface ISwapRouter is IUniswapV3SwapCallback { struct ExactInputSingleParams { address tokenIn; address tokenOut; uint24 fee; address recipient; uint256 deadline; uint256 amountIn; uint256 amountOutMinimum; uint160 sqrtPriceLimitX96; } /// @notice Swaps `amountIn` of one token for as much as possible of another token /// @param params The parameters necessary for the swap, encoded as `ExactInputSingleParams` in calldata /// @return amountOut The amount of the received token function exactInputSingle(ExactInputSingleParams calldata params) external payable returns (uint256 amountOut); struct ExactInputParams { bytes path; address recipient; uint256 deadline; uint256 amountIn; uint256 amountOutMinimum; } /// @notice Swaps `amountIn` of one token for as much as possible of another along the specified path /// @param params The parameters necessary for the multi-hop swap, encoded as `ExactInputParams` in calldata /// @return amountOut The amount of the received token function exactInput(ExactInputParams calldata params) external payable returns (uint256 amountOut); struct ExactOutputSingleParams { address tokenIn; address tokenOut; uint24 fee; address recipient; uint256 deadline; uint256 amountOut; uint256 amountInMaximum; uint160 sqrtPriceLimitX96; } /// @notice Swaps as little as possible of one token for `amountOut` of another token /// @param params The parameters necessary for the swap, encoded as `ExactOutputSingleParams` in calldata /// @return amountIn The amount of the input token function exactOutputSingle(ExactOutputSingleParams calldata params) external payable returns (uint256 amountIn); struct ExactOutputParams { bytes path; address recipient; uint256 deadline; uint256 amountOut; uint256 amountInMaximum; } /// @notice Swaps as little as possible of one token for `amountOut` of another along the specified path (reversed) /// @param params The parameters necessary for the multi-hop swap, encoded as `ExactOutputParams` in calldata /// @return amountIn The amount of the input token function exactOutput(ExactOutputParams calldata params) external payable returns (uint256 amountIn); }
// SPDX-License-Identifier: MIT pragma solidity ^0.8.24; import "./IERC20Burnable.sol"; interface IElement280 is IERC20Burnable { function presaleEnd() external returns (uint256); function handleRedeem(uint256 amount, address receiver) external; }
// SPDX-License-Identifier: MIT pragma solidity ^0.8.24; interface IERC20Burnable { function burn(uint256 value) external; function balanceOf(address account) external view returns (uint256); function transfer(address to, uint256 value) external returns (bool); function transferFrom(address from, address to, uint256 value) external returns (bool); }
// SPDX-License-Identifier: MIT pragma solidity ^0.8.10; interface ITitanOnBurn { function onBurn(address user, uint256 amount) external; }
// SPDX-License-Identifier: GPL-2.0-or-later pragma solidity ^0.8.10; import "@openzeppelin/contracts/interfaces/IERC20.sol"; /// @title Interface for WETH9 interface IWETH9 is IERC20 { /// @notice Deposit ether to get wrapped ether function deposit() external payable; /// @notice Withdraw wrapped ether to get ether function withdraw(uint256) external; }
// SPDX-License-Identifier: MIT pragma solidity ^0.8.24; import "../interfaces/ITitanOnBurn.sol"; import "@openzeppelin/contracts/interfaces/IERC20.sol"; // ===================== Contract Addresses ===================================== uint8 constant NUM_ECOSYSTEM_TOKENS = 14; address constant WETH9 = 0xC02aaA39b223FE8D0A0e5C4F27eAD9083C756Cc2; address constant TITANX = 0xF19308F923582A6f7c465e5CE7a9Dc1BEC6665B1; address constant HYPER_ADDRESS = 0xE2cfD7a01ec63875cd9Da6C7c1B7025166c2fA2F; address constant HELIOS_ADDRESS = 0x2614f29C39dE46468A921Fd0b41fdd99A01f2EDf; address constant DRAGONX_ADDRESS = 0x96a5399D07896f757Bd4c6eF56461F58DB951862; address constant BDX_ADDRESS = 0x9f278Dc799BbC61ecB8e5Fb8035cbfA29803623B; address constant BLAZE_ADDRESS = 0xfcd7cceE4071aA4ecFAC1683b7CC0aFeCAF42A36; address constant INFERNO_ADDRESS = 0x00F116ac0c304C570daAA68FA6c30a86A04B5C5F; address constant HYDRA_ADDRESS = 0xCC7ed2ab6c3396DdBc4316D2d7C1b59ff9d2091F; address constant AWESOMEX_ADDRESS = 0xa99AFcC6Aa4530d01DFFF8E55ec66E4C424c048c; address constant FLUX_ADDRESS = 0xBFDE5ac4f5Adb419A931a5bF64B0f3BB5a623d06; address constant DRAGONX_BURN_ADDRESS = 0x1d59429571d8Fde785F45bf593E94F2Da6072Edb; // ===================== Presale ================================================ uint256 constant PRESALE_LENGTH = 28 days; uint256 constant COOLDOWN_PERIOD = 48 hours; uint256 constant LP_POOL_SIZE = 200_000_000_000 ether; // ===================== Fees =================================================== uint256 constant DEV_PERCENT = 6; uint256 constant TREASURY_PERCENT = 4; uint256 constant BURN_PERCENT = 10; // ===================== Sell Tax =============================================== uint256 constant PRESALE_TRANSFER_TAX_PERCENTAGE = 16; uint256 constant TRANSFER_TAX_PERCENTAGE = 4; uint256 constant NFT_REDEEM_TAX_PERCENTAGE = 3; // ===================== Holder Vault =========================================== uint16 constant MAX_CYCLES_PER_CLAIM = 100; uint32 constant CYCLE_INTERVAL = 7 days; // ===================== UNISWAP Interface ====================================== address constant UNISWAP_V2_FACTORY = 0x5C69bEe701ef814a2B6a3EDD4B1652CB9cc5aA6f; address constant UNISWAP_V2_ROUTER = 0x7a250d5630B4cF539739dF2C5dAcb4c659F2488D; address constant UNISWAP_V3_ROUTER = 0xE592427A0AEce92De3Edee1F18E0157C05861564; uint24 constant POOL_FEE_1PERCENT = 10000; // ===================== Interface IDs ========================================== bytes4 constant INTERFACE_ID_ERC165 = 0x01ffc9a7; bytes4 constant INTERFACE_ID_ERC20 = type(IERC20).interfaceId; bytes4 constant INTERFACE_ID_ERC721 = 0x80ac58cd; bytes4 constant INTERFACE_ID_ERC721Metadata = 0x5b5e139f; bytes4 constant INTERFACE_ID_ITITANONBURN = type(ITitanOnBurn).interfaceId;
// SPDX-License-Identifier: MIT // ERC721A Contracts v4.3.0 // Creator: Chiru Labs pragma solidity ^0.8.4; import "./IERC721A.sol"; /** * @dev Interface of ERC721 token receiver. */ interface ERC721A__IERC721Receiver { function onERC721Received(address operator, address from, uint256 tokenId, bytes calldata data) external returns (bytes4); } /** * @title ERC721A * * @dev Implementation of the [ERC721](https://eips.ethereum.org/EIPS/eip-721) * Non-Fungible Token Standard, including the Metadata extension. * Optimized for lower gas during batch mints. * * Token IDs are minted in sequential order (e.g. 0, 1, 2, 3, ...) * starting from `_startTokenId()`. * * The `_sequentialUpTo()` function can be overriden to enable spot mints * (i.e. non-consecutive mints) for `tokenId`s greater than `_sequentialUpTo()`. * * Assumptions: * * - An owner cannot have more than 2**64 - 1 (max value of uint64) of supply. * - The maximum token ID cannot exceed 2**256 - 1 (max value of uint256). */ contract ERC721A is IERC721A { // Bypass for a `--via-ir` bug (https://github.com/chiru-labs/ERC721A/pull/364). struct TokenApprovalRef { address value; } // ============================================================= // CONSTANTS // ============================================================= // Mask of an entry in packed address data. uint256 private constant _BITMASK_ADDRESS_DATA_ENTRY = (1 << 64) - 1; // The bit position of `numberMinted` in packed address data. uint256 private constant _BITPOS_NUMBER_MINTED = 64; // The bit position of `numberBurned` in packed address data. uint256 private constant _BITPOS_NUMBER_BURNED = 128; // The bit position of `aux` in packed address data. uint256 private constant _BITPOS_AUX = 192; // Mask of all 256 bits in packed address data except the 64 bits for `aux`. uint256 private constant _BITMASK_AUX_COMPLEMENT = (1 << 192) - 1; // The bit position of `startTimestamp` in packed ownership. uint256 private constant _BITPOS_START_TIMESTAMP = 160; // The bit mask of the `burned` bit in packed ownership. uint256 private constant _BITMASK_BURNED = 1 << 224; // The bit position of the `nextInitialized` bit in packed ownership. uint256 private constant _BITPOS_NEXT_INITIALIZED = 225; // The bit mask of the `nextInitialized` bit in packed ownership. uint256 private constant _BITMASK_NEXT_INITIALIZED = 1 << 225; // The bit position of `extraData` in packed ownership. uint256 private constant _BITPOS_EXTRA_DATA = 232; // Mask of all 256 bits in a packed ownership except the 24 bits for `extraData`. uint256 private constant _BITMASK_EXTRA_DATA_COMPLEMENT = (1 << 232) - 1; // The mask of the lower 160 bits for addresses. uint256 private constant _BITMASK_ADDRESS = (1 << 160) - 1; // The maximum `quantity` that can be minted with {_mintERC2309}. // This limit is to prevent overflows on the address data entries. // For a limit of 5000, a total of 3.689e15 calls to {_mintERC2309} // is required to cause an overflow, which is unrealistic. uint256 private constant _MAX_MINT_ERC2309_QUANTITY_LIMIT = 5000; // The `Transfer` event signature is given by: // `keccak256(bytes("Transfer(address,address,uint256)"))`. bytes32 private constant _TRANSFER_EVENT_SIGNATURE = 0xddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef; // ============================================================= // STORAGE // ============================================================= // The next token ID to be minted. uint256 private _currentIndex; // The number of tokens burned. uint256 private _burnCounter; // Token name string private _name; // Token symbol string private _symbol; // Mapping from token ID to ownership details // An empty struct value does not necessarily mean the token is unowned. // See {_packedOwnershipOf} implementation for details. // // Bits Layout: // - [0..159] `addr` // - [160..223] `startTimestamp` // - [224] `burned` // - [225] `nextInitialized` // - [232..255] `extraData` mapping(uint256 => uint256) private _packedOwnerships; // Mapping owner address to address data. // // Bits Layout: // - [0..63] `balance` // - [64..127] `numberMinted` // - [128..191] `numberBurned` // - [192..255] `aux` mapping(address => uint256) private _packedAddressData; // Mapping from token ID to approved address. mapping(uint256 => TokenApprovalRef) private _tokenApprovals; // Mapping from owner to operator approvals mapping(address => mapping(address => bool)) private _operatorApprovals; // The amount of tokens minted above `_sequentialUpTo()`. // We call these spot mints (i.e. non-sequential mints). uint256 private _spotMinted; // ============================================================= // CONSTRUCTOR // ============================================================= constructor(string memory name_, string memory symbol_) { _name = name_; _symbol = symbol_; _currentIndex = _startTokenId(); if (_sequentialUpTo() < _startTokenId()) _revert(SequentialUpToTooSmall.selector); } // ============================================================= // TOKEN COUNTING OPERATIONS // ============================================================= /** * @dev Returns the starting token ID for sequential mints. * * Override this function to change the starting token ID for sequential mints. * * Note: The value returned must never change after any tokens have been minted. */ function _startTokenId() internal view virtual returns (uint256) { return 0; } /** * @dev Returns the maximum token ID (inclusive) for sequential mints. * * Override this function to return a value less than 2**256 - 1, * but greater than `_startTokenId()`, to enable spot (non-sequential) mints. * * Note: The value returned must never change after any tokens have been minted. */ function _sequentialUpTo() internal view virtual returns (uint256) { return type(uint256).max; } /** * @dev Returns the next token ID to be minted. */ function _nextTokenId() internal view virtual returns (uint256) { return _currentIndex; } /** * @dev Returns the total number of tokens in existence. * Burned tokens will reduce the count. * To get the total number of tokens minted, please see {_totalMinted}. */ function totalSupply() public view virtual override returns (uint256 result) { // Counter underflow is impossible as `_burnCounter` cannot be incremented // more than `_currentIndex + _spotMinted - _startTokenId()` times. unchecked { // With spot minting, the intermediate `result` can be temporarily negative, // and the computation must be unchecked. result = _currentIndex - _burnCounter - _startTokenId(); if (_sequentialUpTo() != type(uint256).max) result += _spotMinted; } } /** * @dev Returns the total amount of tokens minted in the contract. */ function _totalMinted() internal view virtual returns (uint256 result) { // Counter underflow is impossible as `_currentIndex` does not decrement, // and it is initialized to `_startTokenId()`. unchecked { result = _currentIndex - _startTokenId(); if (_sequentialUpTo() != type(uint256).max) result += _spotMinted; } } /** * @dev Returns the total number of tokens burned. */ function _totalBurned() internal view virtual returns (uint256) { return _burnCounter; } /** * @dev Returns the total number of tokens that are spot-minted. */ function _totalSpotMinted() internal view virtual returns (uint256) { return _spotMinted; } // ============================================================= // ADDRESS DATA OPERATIONS // ============================================================= /** * @dev Returns the number of tokens in `owner`'s account. */ function balanceOf(address owner) public view virtual override returns (uint256) { if (owner == address(0)) _revert(BalanceQueryForZeroAddress.selector); return _packedAddressData[owner] & _BITMASK_ADDRESS_DATA_ENTRY; } /** * Returns the number of tokens minted by `owner`. */ function _numberMinted(address owner) internal view returns (uint256) { return (_packedAddressData[owner] >> _BITPOS_NUMBER_MINTED) & _BITMASK_ADDRESS_DATA_ENTRY; } /** * Returns the number of tokens burned by or on behalf of `owner`. */ function _numberBurned(address owner) internal view returns (uint256) { return (_packedAddressData[owner] >> _BITPOS_NUMBER_BURNED) & _BITMASK_ADDRESS_DATA_ENTRY; } /** * Returns the auxiliary data for `owner`. (e.g. number of whitelist mint slots used). */ function _getAux(address owner) internal view returns (uint64) { return uint64(_packedAddressData[owner] >> _BITPOS_AUX); } /** * Sets the auxiliary data for `owner`. (e.g. number of whitelist mint slots used). * If there are multiple variables, please pack them into a uint64. */ function _setAux(address owner, uint64 aux) internal virtual { uint256 packed = _packedAddressData[owner]; uint256 auxCasted; // Cast `aux` with assembly to avoid redundant masking. assembly { auxCasted := aux } packed = (packed & _BITMASK_AUX_COMPLEMENT) | (auxCasted << _BITPOS_AUX); _packedAddressData[owner] = packed; } // ============================================================= // IERC165 // ============================================================= /** * @dev Returns true if this contract implements the interface defined by * `interfaceId`. See the corresponding * [EIP section](https://eips.ethereum.org/EIPS/eip-165#how-interfaces-are-identified) * to learn more about how these ids are created. * * This function call must use less than 30000 gas. */ function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) { // The interface IDs are constants representing the first 4 bytes // of the XOR of all function selectors in the interface. // See: [ERC165](https://eips.ethereum.org/EIPS/eip-165) // (e.g. `bytes4(i.functionA.selector ^ i.functionB.selector ^ ...)`) return interfaceId == 0x01ffc9a7 // ERC165 interface ID for ERC165. || interfaceId == 0x80ac58cd // ERC165 interface ID for ERC721. || interfaceId == 0x5b5e139f; // ERC165 interface ID for ERC721Metadata. } // ============================================================= // IERC721Metadata // ============================================================= /** * @dev Returns the token collection name. */ function name() public view virtual override returns (string memory) { return _name; } /** * @dev Returns the token collection symbol. */ function symbol() public view virtual override returns (string memory) { return _symbol; } /** * @dev Returns the Uniform Resource Identifier (URI) for `tokenId` token. */ function tokenURI(uint256 tokenId) public view virtual override returns (string memory) { if (!_exists(tokenId)) _revert(URIQueryForNonexistentToken.selector); string memory baseURI = _baseURI(); return bytes(baseURI).length != 0 ? string(abi.encodePacked(baseURI, _toString(tokenId))) : ""; } /** * @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, it can be overridden in child contracts. */ function _baseURI() internal view virtual returns (string memory) { return ""; } // ============================================================= // OWNERSHIPS OPERATIONS // ============================================================= /** * @dev Returns the owner of the `tokenId` token. * * Requirements: * * - `tokenId` must exist. */ function ownerOf(uint256 tokenId) public view virtual override returns (address) { return address(uint160(_packedOwnershipOf(tokenId))); } /** * @dev Gas spent here starts off proportional to the maximum mint batch size. * It gradually moves to O(1) as tokens get transferred around over time. */ function _ownershipOf(uint256 tokenId) internal view virtual returns (TokenOwnership memory) { return _unpackedOwnership(_packedOwnershipOf(tokenId)); } /** * @dev Returns the unpacked `TokenOwnership` struct at `index`. */ function _ownershipAt(uint256 index) internal view virtual returns (TokenOwnership memory) { return _unpackedOwnership(_packedOwnerships[index]); } /** * @dev Returns whether the ownership slot at `index` is initialized. * An uninitialized slot does not necessarily mean that the slot has no owner. */ function _ownershipIsInitialized(uint256 index) internal view virtual returns (bool) { return _packedOwnerships[index] != 0; } /** * @dev Initializes the ownership slot minted at `index` for efficiency purposes. */ function _initializeOwnershipAt(uint256 index) internal virtual { if (_packedOwnerships[index] == 0) { _packedOwnerships[index] = _packedOwnershipOf(index); } } /** * @dev Returns the packed ownership data of `tokenId`. */ function _packedOwnershipOf(uint256 tokenId) private view returns (uint256 packed) { if (_startTokenId() <= tokenId) { packed = _packedOwnerships[tokenId]; if (tokenId > _sequentialUpTo()) { if (_packedOwnershipExists(packed)) return packed; _revert(OwnerQueryForNonexistentToken.selector); } // If the data at the starting slot does not exist, start the scan. if (packed == 0) { if (tokenId >= _currentIndex) _revert(OwnerQueryForNonexistentToken.selector); // Invariant: // There will always be an initialized ownership slot // (i.e. `ownership.addr != address(0) && ownership.burned == false`) // before an unintialized ownership slot // (i.e. `ownership.addr == address(0) && ownership.burned == false`) // Hence, `tokenId` will not underflow. // // We can directly compare the packed value. // If the address is zero, packed will be zero. for (;;) { unchecked { packed = _packedOwnerships[--tokenId]; } if (packed == 0) continue; if (packed & _BITMASK_BURNED == 0) return packed; // Otherwise, the token is burned, and we must revert. // This handles the case of batch burned tokens, where only the burned bit // of the starting slot is set, and remaining slots are left uninitialized. _revert(OwnerQueryForNonexistentToken.selector); } } // Otherwise, the data exists and we can skip the scan. // This is possible because we have already achieved the target condition. // This saves 2143 gas on transfers of initialized tokens. // If the token is not burned, return `packed`. Otherwise, revert. if (packed & _BITMASK_BURNED == 0) return packed; } _revert(OwnerQueryForNonexistentToken.selector); } /** * @dev Returns the unpacked `TokenOwnership` struct from `packed`. */ function _unpackedOwnership(uint256 packed) private pure returns (TokenOwnership memory ownership) { ownership.addr = address(uint160(packed)); ownership.startTimestamp = uint64(packed >> _BITPOS_START_TIMESTAMP); ownership.burned = packed & _BITMASK_BURNED != 0; ownership.extraData = uint24(packed >> _BITPOS_EXTRA_DATA); } /** * @dev Packs ownership data into a single uint256. */ function _packOwnershipData(address owner, uint256 flags) private view returns (uint256 result) { assembly { // Mask `owner` to the lower 160 bits, in case the upper bits somehow aren't clean. owner := and(owner, _BITMASK_ADDRESS) // `owner | (block.timestamp << _BITPOS_START_TIMESTAMP) | flags`. result := or(owner, or(shl(_BITPOS_START_TIMESTAMP, timestamp()), flags)) } } /** * @dev Returns the `nextInitialized` flag set if `quantity` equals 1. */ function _nextInitializedFlag(uint256 quantity) private pure returns (uint256 result) { // For branchless setting of the `nextInitialized` flag. assembly { // `(quantity == 1) << _BITPOS_NEXT_INITIALIZED`. result := shl(_BITPOS_NEXT_INITIALIZED, eq(quantity, 1)) } } // ============================================================= // APPROVAL OPERATIONS // ============================================================= /** * @dev Gives permission to `to` to transfer `tokenId` token to another account. See {ERC721A-_approve}. * * Requirements: * * - The caller must own the token or be an approved operator. */ function approve(address to, uint256 tokenId) public payable virtual override { _approve(to, tokenId, true); } /** * @dev Returns the account approved for `tokenId` token. * * Requirements: * * - `tokenId` must exist. */ function getApproved(uint256 tokenId) public view virtual override returns (address) { if (!_exists(tokenId)) _revert(ApprovalQueryForNonexistentToken.selector); return _tokenApprovals[tokenId].value; } /** * @dev Approve or remove `operator` as an operator for the caller. * Operators can call {transferFrom} or {safeTransferFrom} * for any token owned by the caller. * * Requirements: * * - The `operator` cannot be the caller. * * Emits an {ApprovalForAll} event. */ function setApprovalForAll(address operator, bool approved) public virtual override { _operatorApprovals[_msgSenderERC721A()][operator] = approved; emit ApprovalForAll(_msgSenderERC721A(), operator, approved); } /** * @dev Returns if the `operator` is allowed to manage all of the assets of `owner`. * * See {setApprovalForAll}. */ function isApprovedForAll(address owner, address operator) public view virtual override returns (bool) { return _operatorApprovals[owner][operator]; } /** * @dev Returns whether `tokenId` exists. * * Tokens can be managed by their owner or approved accounts via {approve} or {setApprovalForAll}. * * Tokens start existing when they are minted. See {_mint}. */ function _exists(uint256 tokenId) internal view virtual returns (bool result) { if (_startTokenId() <= tokenId) { if (tokenId > _sequentialUpTo()) return _packedOwnershipExists(_packedOwnerships[tokenId]); if (tokenId < _currentIndex) { uint256 packed; while ((packed = _packedOwnerships[tokenId]) == 0) --tokenId; result = packed & _BITMASK_BURNED == 0; } } } /** * @dev Returns whether `packed` represents a token that exists. */ function _packedOwnershipExists(uint256 packed) private pure returns (bool result) { assembly { // The following is equivalent to `owner != address(0) && burned == false`. // Symbolically tested. result := gt(and(packed, _BITMASK_ADDRESS), and(packed, _BITMASK_BURNED)) } } /** * @dev Returns whether `msgSender` is equal to `approvedAddress` or `owner`. */ function _isSenderApprovedOrOwner(address approvedAddress, address owner, address msgSender) private pure returns (bool result) { assembly { // Mask `owner` to the lower 160 bits, in case the upper bits somehow aren't clean. owner := and(owner, _BITMASK_ADDRESS) // Mask `msgSender` to the lower 160 bits, in case the upper bits somehow aren't clean. msgSender := and(msgSender, _BITMASK_ADDRESS) // `msgSender == owner || msgSender == approvedAddress`. result := or(eq(msgSender, owner), eq(msgSender, approvedAddress)) } } /** * @dev Returns the storage slot and value for the approved address of `tokenId`. */ function _getApprovedSlotAndAddress(uint256 tokenId) private view returns (uint256 approvedAddressSlot, address approvedAddress) { TokenApprovalRef storage tokenApproval = _tokenApprovals[tokenId]; // The following is equivalent to `approvedAddress = _tokenApprovals[tokenId].value`. assembly { approvedAddressSlot := tokenApproval.slot approvedAddress := sload(approvedAddressSlot) } } // ============================================================= // TRANSFER OPERATIONS // ============================================================= /** * @dev Transfers `tokenId` from `from` to `to`. * * 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) public payable virtual override { uint256 prevOwnershipPacked = _packedOwnershipOf(tokenId); // Mask `from` to the lower 160 bits, in case the upper bits somehow aren't clean. from = address(uint160(uint256(uint160(from)) & _BITMASK_ADDRESS)); if (address(uint160(prevOwnershipPacked)) != from) _revert(TransferFromIncorrectOwner.selector); (uint256 approvedAddressSlot, address approvedAddress) = _getApprovedSlotAndAddress(tokenId); // The nested ifs save around 20+ gas over a compound boolean condition. if (!_isSenderApprovedOrOwner(approvedAddress, from, _msgSenderERC721A())) { if (!isApprovedForAll(from, _msgSenderERC721A())) _revert(TransferCallerNotOwnerNorApproved.selector); } _beforeTokenTransfers(from, to, tokenId, 1); // Clear approvals from the previous owner. assembly { if approvedAddress { // This is equivalent to `delete _tokenApprovals[tokenId]`. sstore(approvedAddressSlot, 0) } } // Underflow of the sender's balance is impossible because we check for // ownership above and the recipient's balance can't realistically overflow. // Counter overflow is incredibly unrealistic as `tokenId` would have to be 2**256. unchecked { // We can directly increment and decrement the balances. --_packedAddressData[from]; // Updates: `balance -= 1`. ++_packedAddressData[to]; // Updates: `balance += 1`. // Updates: // - `address` to the next owner. // - `startTimestamp` to the timestamp of transfering. // - `burned` to `false`. // - `nextInitialized` to `true`. _packedOwnerships[tokenId] = _packOwnershipData(to, _BITMASK_NEXT_INITIALIZED | _nextExtraData(from, to, prevOwnershipPacked)); // If the next slot may not have been initialized (i.e. `nextInitialized == false`) . if (prevOwnershipPacked & _BITMASK_NEXT_INITIALIZED == 0) { uint256 nextTokenId = tokenId + 1; // If the next slot's address is zero and not burned (i.e. packed value is zero). if (_packedOwnerships[nextTokenId] == 0) { // If the next slot is within bounds. if (nextTokenId != _currentIndex) { // Initialize the next slot to maintain correctness for `ownerOf(tokenId + 1)`. _packedOwnerships[nextTokenId] = prevOwnershipPacked; } } } } // Mask `to` to the lower 160 bits, in case the upper bits somehow aren't clean. uint256 toMasked = uint256(uint160(to)) & _BITMASK_ADDRESS; assembly { // Emit the `Transfer` event. log4( 0, // Start of data (0, since no data). 0, // End of data (0, since no data). _TRANSFER_EVENT_SIGNATURE, // Signature. from, // `from`. toMasked, // `to`. tokenId // `tokenId`. ) } if (toMasked == 0) _revert(TransferToZeroAddress.selector); _afterTokenTransfers(from, to, tokenId, 1); } /** * @dev Equivalent to `safeTransferFrom(from, to, tokenId, '')`. */ function safeTransferFrom(address from, address to, uint256 tokenId) public payable virtual override { safeTransferFrom(from, to, tokenId, ""); } /** * @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 memory _data) public payable virtual override { transferFrom(from, to, tokenId); if (to.code.length != 0) { if (!_checkContractOnERC721Received(from, to, tokenId, _data)) { _revert(TransferToNonERC721ReceiverImplementer.selector); } } } /** * @dev Hook that is called before a set of serially-ordered token IDs * are about to be transferred. This includes minting. * And also called before burning one token. * * `startTokenId` - the first token ID to be transferred. * `quantity` - the amount to be transferred. * * Calling conditions: * * - When `from` and `to` are both non-zero, `from`'s `tokenId` will be * transferred to `to`. * - When `from` is zero, `tokenId` will be minted for `to`. * - When `to` is zero, `tokenId` will be burned by `from`. * - `from` and `to` are never both zero. */ function _beforeTokenTransfers(address from, address to, uint256 startTokenId, uint256 quantity) internal virtual {} /** * @dev Hook that is called after a set of serially-ordered token IDs * have been transferred. This includes minting. * And also called after one token has been burned. * * `startTokenId` - the first token ID to be transferred. * `quantity` - the amount to be transferred. * * Calling conditions: * * - When `from` and `to` are both non-zero, `from`'s `tokenId` has been * transferred to `to`. * - When `from` is zero, `tokenId` has been minted for `to`. * - When `to` is zero, `tokenId` has been burned by `from`. * - `from` and `to` are never both zero. */ function _afterTokenTransfers(address from, address to, uint256 startTokenId, uint256 quantity) internal virtual {} /** * @dev Private function to invoke {IERC721Receiver-onERC721Received} on a target contract. * * `from` - Previous owner of the given token ID. * `to` - Target address that will receive the token. * `tokenId` - Token ID to be transferred. * `_data` - Optional data to send along with the call. * * Returns whether the call correctly returned the expected magic value. */ function _checkContractOnERC721Received(address from, address to, uint256 tokenId, bytes memory _data) private returns (bool) { try ERC721A__IERC721Receiver(to).onERC721Received(_msgSenderERC721A(), from, tokenId, _data) returns ( bytes4 retval ) { return retval == ERC721A__IERC721Receiver(to).onERC721Received.selector; } catch (bytes memory reason) { if (reason.length == 0) { _revert(TransferToNonERC721ReceiverImplementer.selector); } assembly { revert(add(32, reason), mload(reason)) } } } // ============================================================= // MINT OPERATIONS // ============================================================= /** * @dev Mints `quantity` tokens and transfers them to `to`. * * Requirements: * * - `to` cannot be the zero address. * - `quantity` must be greater than 0. * * Emits a {Transfer} event for each mint. */ function _mint(address to, uint256 quantity) internal virtual { uint256 startTokenId = _currentIndex; if (quantity == 0) _revert(MintZeroQuantity.selector); _beforeTokenTransfers(address(0), to, startTokenId, quantity); // Overflows are incredibly unrealistic. // `balance` and `numberMinted` have a maximum limit of 2**64. // `tokenId` has a maximum limit of 2**256. unchecked { // Updates: // - `address` to the owner. // - `startTimestamp` to the timestamp of minting. // - `burned` to `false`. // - `nextInitialized` to `quantity == 1`. _packedOwnerships[startTokenId] = _packOwnershipData(to, _nextInitializedFlag(quantity) | _nextExtraData(address(0), to, 0)); // Updates: // - `balance += quantity`. // - `numberMinted += quantity`. // // We can directly add to the `balance` and `numberMinted`. _packedAddressData[to] += quantity * ((1 << _BITPOS_NUMBER_MINTED) | 1); // Mask `to` to the lower 160 bits, in case the upper bits somehow aren't clean. uint256 toMasked = uint256(uint160(to)) & _BITMASK_ADDRESS; if (toMasked == 0) _revert(MintToZeroAddress.selector); uint256 end = startTokenId + quantity; uint256 tokenId = startTokenId; if (end - 1 > _sequentialUpTo()) _revert(SequentialMintExceedsLimit.selector); do { assembly { // Emit the `Transfer` event. log4( 0, // Start of data (0, since no data). 0, // End of data (0, since no data). _TRANSFER_EVENT_SIGNATURE, // Signature. 0, // `address(0)`. toMasked, // `to`. tokenId // `tokenId`. ) } // The `!=` check ensures that large values of `quantity` // that overflows uint256 will make the loop run out of gas. } while (++tokenId != end); _currentIndex = end; } _afterTokenTransfers(address(0), to, startTokenId, quantity); } /** * @dev Mints `quantity` tokens and transfers them to `to`. * * This function is intended for efficient minting only during contract creation. * * It emits only one {ConsecutiveTransfer} as defined in * [ERC2309](https://eips.ethereum.org/EIPS/eip-2309), * instead of a sequence of {Transfer} event(s). * * Calling this function outside of contract creation WILL make your contract * non-compliant with the ERC721 standard. * For full ERC721 compliance, substituting ERC721 {Transfer} event(s) with the ERC2309 * {ConsecutiveTransfer} event is only permissible during contract creation. * * Requirements: * * - `to` cannot be the zero address. * - `quantity` must be greater than 0. * * Emits a {ConsecutiveTransfer} event. */ function _mintERC2309(address to, uint256 quantity) internal virtual { uint256 startTokenId = _currentIndex; if (to == address(0)) _revert(MintToZeroAddress.selector); if (quantity == 0) _revert(MintZeroQuantity.selector); if (quantity > _MAX_MINT_ERC2309_QUANTITY_LIMIT) _revert(MintERC2309QuantityExceedsLimit.selector); _beforeTokenTransfers(address(0), to, startTokenId, quantity); // Overflows are unrealistic due to the above check for `quantity` to be below the limit. unchecked { // Updates: // - `balance += quantity`. // - `numberMinted += quantity`. // // We can directly add to the `balance` and `numberMinted`. _packedAddressData[to] += quantity * ((1 << _BITPOS_NUMBER_MINTED) | 1); // Updates: // - `address` to the owner. // - `startTimestamp` to the timestamp of minting. // - `burned` to `false`. // - `nextInitialized` to `quantity == 1`. _packedOwnerships[startTokenId] = _packOwnershipData(to, _nextInitializedFlag(quantity) | _nextExtraData(address(0), to, 0)); if (startTokenId + quantity - 1 > _sequentialUpTo()) _revert(SequentialMintExceedsLimit.selector); emit ConsecutiveTransfer(startTokenId, startTokenId + quantity - 1, address(0), to); _currentIndex = startTokenId + quantity; } _afterTokenTransfers(address(0), to, startTokenId, quantity); } /** * @dev Safely mints `quantity` tokens and transfers them to `to`. * * Requirements: * * - If `to` refers to a smart contract, it must implement * {IERC721Receiver-onERC721Received}, which is called for each safe transfer. * - `quantity` must be greater than 0. * * See {_mint}. * * Emits a {Transfer} event for each mint. */ function _safeMint(address to, uint256 quantity, bytes memory _data) internal virtual { _mint(to, quantity); unchecked { if (to.code.length != 0) { uint256 end = _currentIndex; uint256 index = end - quantity; do { if (!_checkContractOnERC721Received(address(0), to, index++, _data)) { _revert(TransferToNonERC721ReceiverImplementer.selector); } } while (index < end); // This prevents reentrancy to `_safeMint`. // It does not prevent reentrancy to `_safeMintSpot`. if (_currentIndex != end) revert(); } } } /** * @dev Equivalent to `_safeMint(to, quantity, '')`. */ function _safeMint(address to, uint256 quantity) internal virtual { _safeMint(to, quantity, ""); } /** * @dev Mints a single token at `tokenId`. * * Note: A spot-minted `tokenId` that has been burned can be re-minted again. * * Requirements: * * - `to` cannot be the zero address. * - `tokenId` must be greater than `_sequentialUpTo()`. * - `tokenId` must not exist. * * Emits a {Transfer} event for each mint. */ function _mintSpot(address to, uint256 tokenId) internal virtual { if (tokenId <= _sequentialUpTo()) _revert(SpotMintTokenIdTooSmall.selector); uint256 prevOwnershipPacked = _packedOwnerships[tokenId]; if (_packedOwnershipExists(prevOwnershipPacked)) _revert(TokenAlreadyExists.selector); _beforeTokenTransfers(address(0), to, tokenId, 1); // Overflows are incredibly unrealistic. // The `numberMinted` for `to` is incremented by 1, and has a max limit of 2**64 - 1. // `_spotMinted` is incremented by 1, and has a max limit of 2**256 - 1. unchecked { // Updates: // - `address` to the owner. // - `startTimestamp` to the timestamp of minting. // - `burned` to `false`. // - `nextInitialized` to `true` (as `quantity == 1`). _packedOwnerships[tokenId] = _packOwnershipData(to, _nextInitializedFlag(1) | _nextExtraData(address(0), to, prevOwnershipPacked)); // Updates: // - `balance += 1`. // - `numberMinted += 1`. // // We can directly add to the `balance` and `numberMinted`. _packedAddressData[to] += (1 << _BITPOS_NUMBER_MINTED) | 1; // Mask `to` to the lower 160 bits, in case the upper bits somehow aren't clean. uint256 toMasked = uint256(uint160(to)) & _BITMASK_ADDRESS; if (toMasked == 0) _revert(MintToZeroAddress.selector); assembly { // Emit the `Transfer` event. log4( 0, // Start of data (0, since no data). 0, // End of data (0, since no data). _TRANSFER_EVENT_SIGNATURE, // Signature. 0, // `address(0)`. toMasked, // `to`. tokenId // `tokenId`. ) } ++_spotMinted; } _afterTokenTransfers(address(0), to, tokenId, 1); } /** * @dev Safely mints a single token at `tokenId`. * * Note: A spot-minted `tokenId` that has been burned can be re-minted again. * * Requirements: * * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}. * - `tokenId` must be greater than `_sequentialUpTo()`. * - `tokenId` must not exist. * * See {_mintSpot}. * * Emits a {Transfer} event. */ function _safeMintSpot(address to, uint256 tokenId, bytes memory _data) internal virtual { _mintSpot(to, tokenId); unchecked { if (to.code.length != 0) { uint256 currentSpotMinted = _spotMinted; if (!_checkContractOnERC721Received(address(0), to, tokenId, _data)) { _revert(TransferToNonERC721ReceiverImplementer.selector); } // This prevents reentrancy to `_safeMintSpot`. // It does not prevent reentrancy to `_safeMint`. if (_spotMinted != currentSpotMinted) revert(); } } } /** * @dev Equivalent to `_safeMintSpot(to, tokenId, '')`. */ function _safeMintSpot(address to, uint256 tokenId) internal virtual { _safeMintSpot(to, tokenId, ""); } // ============================================================= // APPROVAL OPERATIONS // ============================================================= /** * @dev Equivalent to `_approve(to, tokenId, false)`. */ function _approve(address to, uint256 tokenId) internal virtual { _approve(to, tokenId, false); } /** * @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: * * - `tokenId` must exist. * * Emits an {Approval} event. */ function _approve(address to, uint256 tokenId, bool approvalCheck) internal virtual { address owner = ownerOf(tokenId); if (approvalCheck && _msgSenderERC721A() != owner) { if (!isApprovedForAll(owner, _msgSenderERC721A())) { _revert(ApprovalCallerNotOwnerNorApproved.selector); } } _tokenApprovals[tokenId].value = to; emit Approval(owner, to, tokenId); } // ============================================================= // BURN OPERATIONS // ============================================================= /** * @dev Equivalent to `_burn(tokenId, false)`. */ function _burn(uint256 tokenId) internal virtual { _burn(tokenId, false); } /** * @dev Destroys `tokenId`. * The approval is cleared when the token is burned. * * Requirements: * * - `tokenId` must exist. * * Emits a {Transfer} event. */ function _burn(uint256 tokenId, bool approvalCheck) internal virtual { uint256 prevOwnershipPacked = _packedOwnershipOf(tokenId); address from = address(uint160(prevOwnershipPacked)); (uint256 approvedAddressSlot, address approvedAddress) = _getApprovedSlotAndAddress(tokenId); if (approvalCheck) { // The nested ifs save around 20+ gas over a compound boolean condition. if (!_isSenderApprovedOrOwner(approvedAddress, from, _msgSenderERC721A())) { if (!isApprovedForAll(from, _msgSenderERC721A())) _revert(TransferCallerNotOwnerNorApproved.selector); } } _beforeTokenTransfers(from, address(0), tokenId, 1); // Clear approvals from the previous owner. assembly { if approvedAddress { // This is equivalent to `delete _tokenApprovals[tokenId]`. sstore(approvedAddressSlot, 0) } } // Underflow of the sender's balance is impossible because we check for // ownership above and the recipient's balance can't realistically overflow. // Counter overflow is incredibly unrealistic as `tokenId` would have to be 2**256. unchecked { // Updates: // - `balance -= 1`. // - `numberBurned += 1`. // // We can directly decrement the balance, and increment the number burned. // This is equivalent to `packed -= 1; packed += 1 << _BITPOS_NUMBER_BURNED;`. _packedAddressData[from] += (1 << _BITPOS_NUMBER_BURNED) - 1; // Updates: // - `address` to the last owner. // - `startTimestamp` to the timestamp of burning. // - `burned` to `true`. // - `nextInitialized` to `true`. _packedOwnerships[tokenId] = _packOwnershipData( from, (_BITMASK_BURNED | _BITMASK_NEXT_INITIALIZED) | _nextExtraData(from, address(0), prevOwnershipPacked) ); // If the next slot may not have been initialized (i.e. `nextInitialized == false`) . if (prevOwnershipPacked & _BITMASK_NEXT_INITIALIZED == 0) { uint256 nextTokenId = tokenId + 1; // If the next slot's address is zero and not burned (i.e. packed value is zero). if (_packedOwnerships[nextTokenId] == 0) { // If the next slot is within bounds. if (nextTokenId != _currentIndex) { // Initialize the next slot to maintain correctness for `ownerOf(tokenId + 1)`. _packedOwnerships[nextTokenId] = prevOwnershipPacked; } } } } emit Transfer(from, address(0), tokenId); _afterTokenTransfers(from, address(0), tokenId, 1); // Overflow not possible, as `_burnCounter` cannot be exceed `_currentIndex + _spotMinted` times. unchecked { _burnCounter++; } } // ============================================================= // EXTRA DATA OPERATIONS // ============================================================= /** * @dev Directly sets the extra data for the ownership data `index`. */ function _setExtraDataAt(uint256 index, uint24 extraData) internal virtual { uint256 packed = _packedOwnerships[index]; if (packed == 0) _revert(OwnershipNotInitializedForExtraData.selector); uint256 extraDataCasted; // Cast `extraData` with assembly to avoid redundant masking. assembly { extraDataCasted := extraData } packed = (packed & _BITMASK_EXTRA_DATA_COMPLEMENT) | (extraDataCasted << _BITPOS_EXTRA_DATA); _packedOwnerships[index] = packed; } /** * @dev Called during each token transfer to set the 24bit `extraData` field. * Intended to be overridden by the cosumer contract. * * `previousExtraData` - the value of `extraData` before transfer. * * Calling conditions: * * - When `from` and `to` are both non-zero, `from`'s `tokenId` will be * transferred to `to`. * - When `from` is zero, `tokenId` will be minted for `to`. * - When `to` is zero, `tokenId` will be burned by `from`. * - `from` and `to` are never both zero. */ function _extraData(address from, address to, uint24 previousExtraData) internal view virtual returns (uint24) {} /** * @dev Returns the next extra data for the packed ownership data. * The returned result is shifted into position. */ function _nextExtraData(address from, address to, uint256 prevOwnershipPacked) private view returns (uint256) { uint24 extraData = uint24(prevOwnershipPacked >> _BITPOS_EXTRA_DATA); return uint256(_extraData(from, to, extraData)) << _BITPOS_EXTRA_DATA; } // ============================================================= // OTHER OPERATIONS // ============================================================= /** * @dev Returns the message sender (defaults to `msg.sender`). * * If you are writing GSN compatible contracts, you need to override this function. */ function _msgSenderERC721A() internal view virtual returns (address) { return msg.sender; } /** * @dev Converts a uint256 to its ASCII string decimal representation. */ function _toString(uint256 value) internal pure virtual returns (string memory str) { assembly { // The maximum value of a uint256 contains 78 digits (1 byte per digit), but // we allocate 0xa0 bytes to keep the free memory pointer 32-byte word aligned. // We will need 1 word for the trailing zeros padding, 1 word for the length, // and 3 words for a maximum of 78 digits. Total: 5 * 0x20 = 0xa0. let m := add(mload(0x40), 0xa0) // Update the free memory pointer to allocate. mstore(0x40, m) // Assign the `str` to the end. str := sub(m, 0x20) // Zeroize the slot after the string. mstore(str, 0) // Cache the end of the memory to calculate the length later. let end := str // We write the string from rightmost digit to leftmost digit. // The following is essentially a do-while loop that also handles the zero case. // prettier-ignore for { let temp := value } 1 {} { str := sub(str, 1) // Write the character to the pointer. // The ASCII index of the '0' character is 48. mstore8(str, add(48, mod(temp, 10))) // Keep dividing `temp` until zero. temp := div(temp, 10) // prettier-ignore if iszero(temp) { break } } let length := sub(end, str) // Move the pointer 32 bytes leftwards to make room for the length. str := sub(str, 0x20) // Store the length. mstore(str, length) } } /** * @dev For more efficient reverts. */ function _revert(bytes4 errorSelector) internal pure { assembly { mstore(0x00, errorSelector) revert(0x00, 0x04) } } }
// SPDX-License-Identifier: MIT // ERC721A Contracts v4.3.0 // Creator: Chiru Labs pragma solidity ^0.8.4; /** * @dev Interface of ERC721A. */ interface IERC721A { /** * The caller must own the token or be an approved operator. */ error ApprovalCallerNotOwnerNorApproved(); /** * The token does not exist. */ error ApprovalQueryForNonexistentToken(); /** * Cannot query the balance for the zero address. */ error BalanceQueryForZeroAddress(); /** * Cannot mint to the zero address. */ error MintToZeroAddress(); /** * The quantity of tokens minted must be more than zero. */ error MintZeroQuantity(); /** * The token does not exist. */ error OwnerQueryForNonexistentToken(); /** * The caller must own the token or be an approved operator. */ error TransferCallerNotOwnerNorApproved(); /** * The token must be owned by `from`. */ error TransferFromIncorrectOwner(); /** * Cannot safely transfer to a contract that does not implement the * ERC721Receiver interface. */ error TransferToNonERC721ReceiverImplementer(); /** * Cannot transfer to the zero address. */ error TransferToZeroAddress(); /** * The token does not exist. */ error URIQueryForNonexistentToken(); /** * The `quantity` minted with ERC2309 exceeds the safety limit. */ error MintERC2309QuantityExceedsLimit(); /** * The `extraData` cannot be set on an unintialized ownership slot. */ error OwnershipNotInitializedForExtraData(); /** * `_sequentialUpTo()` must be greater than `_startTokenId()`. */ error SequentialUpToTooSmall(); /** * The `tokenId` of a sequential mint exceeds `_sequentialUpTo()`. */ error SequentialMintExceedsLimit(); /** * Spot minting requires a `tokenId` greater than `_sequentialUpTo()`. */ error SpotMintTokenIdTooSmall(); /** * Cannot mint over a token that already exists. */ error TokenAlreadyExists(); /** * The feature is not compatible with spot mints. */ error NotCompatibleWithSpotMints(); // ============================================================= // STRUCTS // ============================================================= struct TokenOwnership { // The address of the owner. address addr; // Stores the start time of ownership with minimal overhead for tokenomics. uint64 startTimestamp; // Whether the token has been burned. bool burned; // Arbitrary data similar to `startTimestamp` that can be set via {_extraData}. uint24 extraData; } // ============================================================= // TOKEN COUNTERS // ============================================================= /** * @dev Returns the total number of tokens in existence. * Burned tokens will reduce the count. * To get the total number of tokens minted, please see {_totalMinted}. */ function totalSupply() external view returns (uint256); // ============================================================= // IERC165 // ============================================================= /** * @dev Returns true if this contract implements the interface defined by * `interfaceId`. See the corresponding * [EIP section](https://eips.ethereum.org/EIPS/eip-165#how-interfaces-are-identified) * to learn more about how these ids are created. * * This function call must use less than 30000 gas. */ function supportsInterface(bytes4 interfaceId) external view returns (bool); // ============================================================= // IERC721 // ============================================================= /** * @dev Emitted when `tokenId` token is transferred from `from` to `to`. */ event Transfer(address indexed from, address indexed to, uint256 indexed tokenId); /** * @dev Emitted when `owner` enables `approved` to manage the `tokenId` token. */ event Approval(address indexed owner, address indexed approved, uint256 indexed tokenId); /** * @dev Emitted when `owner` enables or disables * (`approved`) `operator` to manage all of its assets. */ event ApprovalForAll(address indexed owner, address indexed operator, bool approved); /** * @dev Returns the number of tokens in `owner`'s account. */ function balanceOf(address owner) external view returns (uint256 balance); /** * @dev Returns the owner of the `tokenId` token. * * Requirements: * * - `tokenId` must exist. */ function ownerOf(uint256 tokenId) external view returns (address owner); /** * @dev Safely transfers `tokenId` token from `from` to `to`, * checking first that contract recipients are aware of the ERC721 protocol * to prevent tokens from being forever locked. * * Requirements: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `tokenId` token must exist and be owned by `from`. * - If the caller is not `from`, it must be have been allowed to move * this token by either {approve} or {setApprovalForAll}. * - If `to` refers to a smart contract, it must implement * {IERC721Receiver-onERC721Received}, which is called upon a safe transfer. * * Emits a {Transfer} event. */ function safeTransferFrom(address from, address to, uint256 tokenId, bytes calldata data) external payable; /** * @dev Equivalent to `safeTransferFrom(from, to, tokenId, '')`. */ function safeTransferFrom(address from, address to, uint256 tokenId) external payable; /** * @dev Transfers `tokenId` from `from` to `to`. * * WARNING: Usage of this method is discouraged, use {safeTransferFrom} * whenever possible. * * Requirements: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `tokenId` token must be owned by `from`. * - If the caller is not `from`, it must be approved to move this token * by either {approve} or {setApprovalForAll}. * * Emits a {Transfer} event. */ function transferFrom(address from, address to, uint256 tokenId) external payable; /** * @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 payable; /** * @dev Approve or remove `operator` as an operator for the caller. * Operators can call {transferFrom} or {safeTransferFrom} * for any token owned by the caller. * * Requirements: * * - The `operator` cannot be the caller. * * Emits an {ApprovalForAll} event. */ function setApprovalForAll(address operator, bool _approved) external; /** * @dev Returns the account approved for `tokenId` token. * * Requirements: * * - `tokenId` must exist. */ function getApproved(uint256 tokenId) external view returns (address operator); /** * @dev Returns if the `operator` is allowed to manage all of the assets of `owner`. * * See {setApprovalForAll}. */ function isApprovedForAll(address owner, address operator) external view returns (bool); // ============================================================= // IERC721Metadata // ============================================================= /** * @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); // ============================================================= // IERC2309 // ============================================================= /** * @dev Emitted when tokens in `fromTokenId` to `toTokenId` * (inclusive) is transferred from `from` to `to`, as defined in the * [ERC2309](https://eips.ethereum.org/EIPS/eip-2309) standard. * * See {_mintERC2309} for more details. */ event ConsecutiveTransfer(uint256 indexed fromTokenId, uint256 toTokenId, address indexed from, address indexed to); }
{ "optimizer": { "enabled": true, "runs": 200 }, "evmVersion": "paris", "outputSelection": { "*": { "*": [ "evm.bytecode", "evm.deployedBytecode", "devdoc", "userdoc", "metadata", "abi" ] } }, "libraries": {} }
Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
[{"inputs":[{"internalType":"address","name":"_owner","type":"address"},{"internalType":"address","name":"_treasury","type":"address"},{"internalType":"string","name":"_contractURI","type":"string"},{"internalType":"address","name":"_E280","type":"address"},{"internalType":"string[]","name":"_baseURIs","type":"string[]"}],"stateMutability":"nonpayable","type":"constructor"},{"inputs":[{"internalType":"address","name":"target","type":"address"}],"name":"AddressEmptyCode","type":"error"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"AddressInsufficientBalance","type":"error"},{"inputs":[],"name":"ApprovalCallerNotOwnerNorApproved","type":"error"},{"inputs":[],"name":"ApprovalQueryForNonexistentToken","type":"error"},{"inputs":[],"name":"BalanceQueryForZeroAddress","type":"error"},{"inputs":[],"name":"FailedInnerCall","type":"error"},{"inputs":[],"name":"MintERC2309QuantityExceedsLimit","type":"error"},{"inputs":[],"name":"MintToZeroAddress","type":"error"},{"inputs":[],"name":"MintZeroQuantity","type":"error"},{"inputs":[],"name":"NotCompatibleWithSpotMints","type":"error"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"OwnableInvalidOwner","type":"error"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"OwnableUnauthorizedAccount","type":"error"},{"inputs":[],"name":"OwnerQueryForNonexistentToken","type":"error"},{"inputs":[],"name":"OwnershipNotInitializedForExtraData","type":"error"},{"inputs":[{"internalType":"address","name":"token","type":"address"}],"name":"SafeERC20FailedOperation","type":"error"},{"inputs":[],"name":"SequentialMintExceedsLimit","type":"error"},{"inputs":[],"name":"SequentialUpToTooSmall","type":"error"},{"inputs":[],"name":"SpotMintTokenIdTooSmall","type":"error"},{"inputs":[],"name":"TokenAlreadyExists","type":"error"},{"inputs":[],"name":"TransferCallerNotOwnerNorApproved","type":"error"},{"inputs":[],"name":"TransferFromIncorrectOwner","type":"error"},{"inputs":[],"name":"TransferToNonERC721ReceiverImplementer","type":"error"},{"inputs":[],"name":"TransferToZeroAddress","type":"error"},{"inputs":[],"name":"URIQueryForNonexistentToken","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":"uint256","name":"_fromTokenId","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"_toTokenId","type":"uint256"}],"name":"BatchMetadataUpdate","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"uint256","name":"fromTokenId","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"toTokenId","type":"uint256"},{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"}],"name":"ConsecutiveTransfer","type":"event"},{"anonymous":false,"inputs":[],"name":"ContractURIUpdated","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[],"name":"E280","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint8","name":"tier","type":"uint8"}],"name":"baseURIs","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256[]","name":"tokenIds","type":"uint256[]"}],"name":"calculateAllocation","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"contractURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256[]","name":"tokenIds","type":"uint256[]"},{"internalType":"address","name":"nftOwner","type":"address"}],"name":"getBatchedTokensData","outputs":[{"internalType":"uint256[]","name":"timestamps","type":"uint256[]"},{"internalType":"uint16[]","name":"multipliers","type":"uint16[]"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getMultiplier","outputs":[{"internalType":"uint64","name":"","type":"uint64"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getNftTier","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getTimestamp","outputs":[{"internalType":"uint64","name":"","type":"uint64"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"getTotalNftsPerTiers","outputs":[{"internalType":"uint256[]","name":"total","type":"uint256[]"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint8[]","name":"tieredNfts","type":"uint8[]"}],"name":"getTotalPrice","outputs":[{"internalType":"uint256","name":"titanXPool","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint8[]","name":"tieredNfts","type":"uint8[]"},{"internalType":"uint256","name":"deadline","type":"uint256"}],"name":"mintWithEth","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"uint8[]","name":"tieredNfts","type":"uint8[]"}],"name":"mintWithTitanX","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"multiplierPool","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"presaleEnd","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256[]","name":"tokenIds","type":"uint256[]"}],"name":"redeemNFTs","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"renounceOwnership","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":"payable","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":"payable","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint8","name":"tier","type":"uint8"},{"internalType":"string","name":"_uri","type":"string"}],"name":"setBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_uri","type":"string"}],"name":"setContractURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_presaleEnd","type":"uint256"}],"name":"startPresale","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":"uint8","name":"tier","type":"uint8"}],"name":"tierAllocations","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint8","name":"tier","type":"uint8"}],"name":"tierMultipliers","outputs":[{"internalType":"uint16","name":"","type":"uint16"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"tokenIdsOf","outputs":[{"internalType":"uint256[]","name":"tokenIds","type":"uint256[]"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalBurned","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"result","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"treasury","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"}]
Contract Creation Code
60a06040523480156200001157600080fd5b50604051620037ae380380620037ae83398101604081905262000034916200064a565b846040518060400160405280600b81526020016a0456c656d656e74203238360ac1b81525060405180604001604052806005815260200164115313539560da1b81525081600290816200008891906200080e565b5060036200009782826200080e565b50600160005550506001600160a01b038116620000cf57604051631e4fbdf760e01b8152600060048201526024015b60405180910390fd5b620000da8162000505565b506001600160a01b038516620001335760405162461bcd60e51b815260206004820152601a60248201527f4f776e65722061646472657373206e6f742070726f76696465640000000000006044820152606401620000c6565b6001600160a01b0384166200018b5760405162461bcd60e51b815260206004820152601d60248201527f54726561737572792061646472657373206e6f742070726f76696465640000006044820152606401620000c6565b6001600160a01b038216620001e35760405162461bcd60e51b815260206004820152601960248201527f453238302061646472657373206e6f742070726f7669646564000000000000006044820152606401620000c6565b8051600614620002415760405162461bcd60e51b815260206004820152602260248201527f496e636f7272656374206e756d626572206f66206261736520555249732073656044820152611b9d60f21b6064820152608401620000c6565b600d6200024f84826200080e565b506001600160a01b03808316608052600a80549186166001600160a01b03199092169190911781557f169f97de0d9a84d840042b17d3c6b9638b3d6fd9024c9eb0c7a306a17b49f88f805461ffff1990811690921790557fa74ba3945261e09fde15ba3db55005b205e61eeb4ad811ac0faa2b315bffeead80548216600c1790557f45f76dafbbad695564362934e24d72eedc57f9fc1a65f39bca62176cc82968288054821660641790557f367ccd2d0ac16bf7110a5dffe0801fdc9452a95a1adb7e1a12fe97dd3e9a4edd8054821660781790557f6bda57492eba051cb4a12a1e19df47c9755d78165341d4009b1d09b3f3616204805482166103e81790557fb5a1e7cda73b1608e93d4d50ab796c3d35aa6216cb006a1f920df154d13ff61880549091166104b017905560106020526a52b7d2dcc80cd2e40000007f8c6065603763fec3f5742441d3833f3f43b982453612d76adb39a885e3006b5f8190557f853b2fefe141400fef543280f93d98bd49996069f632d0d20236afeeed8e46a2556b033b2e3c9fd0803ce80000007fb3edd0d534d647cffdae9f1294f11ad21f3fcf2814bea44c92bbb8d384a57d9e8190557f1588ac671d87f82adc0e6ae8ab009c0de98f92a20243897597e566bc59b9c126556b204fce5e3e250261100000007f61a7346ab5ebdac457db2a901eaf1b805239b6049a1b2f34bab85e2e274f39cb819055600660009081527f20edfb71820f6f00f6a84ccfefb91587cd9f849f8349b0a3182a4795899d9cd9919091555b81518160ff161015620004f957818160ff1681518110620004a857620004a8620008da565b6020026020010151600e6000836001620004c3919062000906565b60ff168152602081019190915260400160002090620004e390826200080e565b5080620004f08162000928565b91505062000483565b5050505050506200094a565b600980546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b80516001600160a01b03811681146200056f57600080fd5b919050565b634e487b7160e01b600052604160045260246000fd5b604051601f8201601f191681016001600160401b0381118282101715620005b557620005b562000574565b604052919050565b600082601f830112620005cf57600080fd5b81516001600160401b03811115620005eb57620005eb62000574565b602062000601601f8301601f191682016200058a565b82815285828487010111156200061657600080fd5b60005b838110156200063657858101830151828201840152820162000619565b506000928101909101919091529392505050565b600080600080600060a086880312156200066357600080fd5b6200066e8662000557565b945060206200067f81880162000557565b60408801519095506001600160401b03808211156200069d57600080fd5b620006ab8a838b01620005bd565b9550620006bb60608a0162000557565b94506080890151915080821115620006d257600080fd5b818901915089601f830112620006e757600080fd5b815181811115620006fc57620006fc62000574565b8060051b6200070d8582016200058a565b918252838101850191858101908d8411156200072857600080fd5b86860192505b838310156200076957825185811115620007485760008081fd5b620007588f89838a0101620005bd565b83525091860191908601906200072e565b809750505050505050509295509295909350565b600181811c908216806200079257607f821691505b602082108103620007b357634e487b7160e01b600052602260045260246000fd5b50919050565b601f82111562000809576000816000526020600020601f850160051c81016020861015620007e45750805b601f850160051c820191505b818110156200080557828155600101620007f0565b5050505b505050565b81516001600160401b038111156200082a576200082a62000574565b62000842816200083b84546200077d565b84620007b9565b602080601f8311600181146200087a5760008415620008615750858301515b600019600386901b1c1916600185901b17855562000805565b600085815260208120601f198616915b82811015620008ab578886015182559484019460019091019084016200088a565b5085821015620008ca5787850151600019600388901b60f8161c191681555b5050505050600190811b01905550565b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052601160045260246000fd5b60ff8181168382160190811115620009225762000922620008f0565b92915050565b600060ff821660ff8103620009415762000941620008f0565b60010192915050565b608051612e2c620009826000396000818161034b01528181610cbe015281816113d50152818161161a01526118610152612e2c6000f3fe60806040526004361061023b5760003560e01c8063938e3d7b1161012e578063c03e60a6116100ab578063d89135cd1161006f578063d89135cd146106ef578063e33f33fb14610704578063e8a3d48514610724578063e985e9c514610739578063f2fde38b1461078257600080fd5b8063c03e60a61461064e578063c1d064401461066e578063c467366a1461069c578063c87b56dd146106af578063cb0a4433146106cf57600080fd5b8063aa6b8aaf116100f2578063aa6b8aaf146105ae578063adf8252d146105c3578063b633620c146105fb578063b88d4fde1461061b578063bdc9cacd1461062e57600080fd5b8063938e3d7b1461050c57806395d89b411461052c578063a132aad114610541578063a22cb46514610561578063a3b261f21461058157600080fd5b806342842e0e116101bc5780636352211e116101805780636352211e14610483578063651c5434146104a357806370a08231146104b9578063715018a6146104d95780638da5cb5b146104ee57600080fd5b806342842e0e146103ba578063493d5dfe146103cd5780634cdcd8d3146103ff578063574c91ca1461044357806361d027b31461046357600080fd5b8063229f3e2911610203578063229f3e291461031057806323b872dd146103265780632e7ab312146103395780633a6089cf1461036d5780633e4cc7321461039a57600080fd5b806301ffc9a71461024057806306fdde0314610275578063081812fc14610297578063095ea7b3146102cf57806318160ddd146102e4575b600080fd5b34801561024c57600080fd5b5061026061025b3660046125f0565b6107a2565b60405190151581526020015b60405180910390f35b34801561028157600080fd5b5061028a610803565b60405161026c919061265d565b3480156102a357600080fd5b506102b76102b2366004612670565b610895565b6040516001600160a01b03909116815260200161026c565b6102e26102dd3660046126a0565b6108d0565b005b3480156102f057600080fd5b50610302600154600054036000190190565b60405190815260200161026c565b34801561031c57600080fd5b50610302600c5481565b6102e26103343660046126ca565b6108e0565b34801561034557600080fd5b506102b77f000000000000000000000000000000000000000000000000000000000000000081565b34801561037957600080fd5b50610302610388366004612717565b60106020526000908152604090205481565b3480156103a657600080fd5b5061028a6103b5366004612717565b610a4f565b6102e26103c83660046126ca565b610ae9565b3480156103d957600080fd5b506103ed6103e8366004612670565b610b09565b60405160ff909116815260200161026c565b34801561040b57600080fd5b5061043061041a366004612717565b600f6020526000908152604090205461ffff1681565b60405161ffff909116815260200161026c565b34801561044f57600080fd5b5061030261045e36600461277d565b610b24565b34801561046f57600080fd5b50600a546102b7906001600160a01b031681565b34801561048f57600080fd5b506102b761049e366004612670565b610bff565b3480156104af57600080fd5b50610302600b5481565b3480156104c557600080fd5b506103026104d43660046127be565b610c0a565b3480156104e557600080fd5b506102e2610c4f565b3480156104fa57600080fd5b506009546001600160a01b03166102b7565b34801561051857600080fd5b506102e2610527366004612884565b610c63565b34801561053857600080fd5b5061028a610ca4565b34801561054d57600080fd5b506102e261055c366004612670565b610cb3565b34801561056d57600080fd5b506102e261057c3660046128c6565b610d1f565b34801561058d57600080fd5b506105a161059c3660046127be565b610d8b565b60405161026c9190612939565b3480156105ba57600080fd5b506105a1610e86565b3480156105cf57600080fd5b506105e36105de366004612670565b610f28565b6040516001600160401b03909116815260200161026c565b34801561060757600080fd5b506105e3610616366004612670565b610f50565b6102e261062936600461294c565b610f72565b34801561063a57600080fd5b506102e26106493660046129c7565b610fb3565b34801561065a57600080fd5b5061030261066936600461277d565b611017565b34801561067a57600080fd5b5061068e610689366004612a14565b6111b7565b60405161026c929190612a67565b6102e26106aa366004612ac2565b611351565b3480156106bb57600080fd5b5061028a6106ca366004612670565b611455565b3480156106db57600080fd5b506102e26106ea36600461277d565b6115a6565b3480156106fb57600080fd5b50610302611672565b34801561071057600080fd5b506102e261071f36600461277d565b611682565b34801561073057600080fd5b5061028a6118b9565b34801561074557600080fd5b50610260610754366004612b0d565b6001600160a01b03918216600090815260076020908152604080832093909416825291909152205460ff1690565b34801561078e57600080fd5b506102e261079d3660046127be565b6118c6565b60006001600160e01b031982166301ffc9a760e01b14806107d357506001600160e01b031982166380ac58cd60e01b145b806107ee57506001600160e01b03198216635b5e139f60e01b145b806107fd57506107fd82611904565b92915050565b60606002805461081290612b40565b80601f016020809104026020016040519081016040528092919081815260200182805461083e90612b40565b801561088b5780601f106108605761010080835404028352916020019161088b565b820191906000526020600020905b81548152906001019060200180831161086e57829003601f168201915b5050505050905090565b60006108a082611952565b6108b4576108b46333d1c03960e21b6119a0565b506000908152600660205260409020546001600160a01b031690565b6108dc828260016119aa565b5050565b60006108eb82611a4d565b6001600160a01b0394851694909150811684146109115761091162a1148160e81b6119a0565b6000828152600660205260409020805461093d8187335b6001600160a01b039081169116811491141790565b61095f5761094b8633610754565b61095f5761095f632ce44b5f60e11b6119a0565b801561096a57600082555b6001600160a01b038681166000908152600560205260408082208054600019019055918716808252919020805460010190554260a01b17600160e11b17600085815260046020526040812091909155600160e11b841690036109fc576001840160008181526004602052604081205490036109fa5760005481146109fa5760008181526004602052604090208490555b505b6001600160a01b0385168481887fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef600080a480600003610a4657610a46633a954ecd60e21b6119a0565b50505050505050565b600e6020526000908152604090208054610a6890612b40565b80601f0160208091040260200160405190810160405280929190818152602001828054610a9490612b40565b8015610ae15780601f10610ab657610100808354040283529160200191610ae1565b820191906000526020600020905b815481529060010190602001808311610ac457829003601f168201915b505050505081565b610b0483838360405180602001604052806000815250610f72565b505050565b60008181526011602052604081205460ff81165b9392505050565b6000805b82811015610bf8576000848483818110610b4457610b44612b7a565b9050602002016020810190610b599190612717565b9050600080610b6783611aee565b9150915081610bb05760405162461bcd60e51b815260206004820152601060248201526f2737ba1030903b30b634b2103a34b2b960811b60448201526064015b60405180910390fd5b60ff831660009081526010602052604090205494909401938015610bed5760ff8316600090815260106020526040902054606490600a0204850194505b505050600101610b28565b5092915050565b60006107fd82611a4d565b60006001600160a01b038216610c2a57610c2a6323d3ad8160e21b6119a0565b506001600160a01b03166000908152600560205260409020546001600160401b031690565b610c57611b21565b610c616000611b4e565b565b610c6b611b21565b600d610c778282612be0565b506040517fa5d4097edda6d87cb9329af83fb3712ef77eeb13738ffe43cc35a4ce305ad96290600090a150565b60606003805461081290612b40565b336001600160a01b037f00000000000000000000000000000000000000000000000000000000000000001614610d1a5760405162461bcd60e51b815260206004820152600c60248201526b155b985d5d1a1bdc9a5e995960a21b6044820152606401610ba7565b600c55565b3360008181526007602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b60606000610d9860005490565b90506000610da584610c0a565b9050806001600160401b03811115610dbf57610dbf6127d9565b604051908082528060200260200182016040528015610de8578160200160208202803683370190505b50925080600003610dfa575050919050565b600060015b83811015610e7d57610e1081611952565b8015610e355750856001600160a01b0316610e2a82610bff565b6001600160a01b0316145b15610e755780858381518110610e4d57610e4d612b7a565b602090810291909101015281610e6281612cb5565b925050828203610e755750505050919050565b600101610dff565b50505050919050565b60606000610e9360005490565b60408051600680825260e082019092529192506020820160c08036833701905050915060015b81811015610f2357610eca81611952565b15610f1b576000818152601160205260409020548390610eef9060019060ff16612cce565b60ff1681518110610f0257610f02612b7a565b602002602001018051809190610f1790612cb5565b9052505b600101610eb9565b505090565b600081815260116020526040812054610f458160481c61ffff1690565b61ffff169392505050565b600081815260116020526040812054610b1d8160081c6001600160401b031690565b610f7d8484846108e0565b6001600160a01b0383163b15610fad57610f9984848484611ba0565b610fad57610fad6368d2bf6b60e11b6119a0565b50505050565b610fbb611b21565b60ff82166000908152600e60205260409020610fd78282612be0565b50604080516001815260001960208201527f6bd5c950a8d8df17f772f5af37cb3655737899cbf903264b9795592da439661c910160405180910390a15050565b60008161105b5760405162461bcd60e51b8152602060048201526012602482015271139bc81d1bdad95b9cc81c1c9bdd9a59195960721b6044820152606401610ba7565b6000805b838110156111af576000611074826001612ce7565b90505b848110156110fb5785858281811061109157611091612b7a565b905060200201358686848181106110aa576110aa612b7a565b90506020020135036110f35760405162461bcd60e51b8152602060048201526012602482015271111d5c1b1a58d85d19481d1bdad95b88125160721b6044820152606401610ba7565b600101611077565b5061111d85858381811061111157611111612b7a565b90506020020135611952565b6111695760405162461bcd60e51b815260206004820152601760248201527f546f6b656e20494420646f6573206e6f742065786973740000000000000000006044820152606401610ba7565b6010600061118e87878581811061118257611182612b7a565b90506020020135610b09565b60ff168152602081019190915260400160002054919091019060010161105f565b509392505050565b606080836001600160401b038111156111d2576111d26127d9565b6040519080825280602002602001820160405280156111fb578160200160208202803683370190505b509150836001600160401b03811115611216576112166127d9565b60405190808252806020026020018201604052801561123f578160200160208202803683370190505b50905060005b8481101561134857600086868381811061126157611261612b7a565b905060200201359050846001600160a01b031661127d82610bff565b6001600160a01b0316146112c25760405162461bcd60e51b815260206004820152600c60248201526b155b985d5d1a1bdc9a5e995960a21b6044820152606401610ba7565b6000818152601160205260409020546112e48160081c6001600160401b031690565b6001600160401b03168584815181106112ff576112ff612b7a565b6020026020010181815250506113198160481c61ffff1690565b84848151811061132b5761132b612b7a565b61ffff909216602092830291909101909101525050600101611245565b50935093915050565b42600c54116113975760405162461bcd60e51b815260206004820152601260248201527150726573616c65206e6f742061637469766560701b6044820152606401610ba7565b6000806113a48585611c83565b909250905081810160006113b88286611e1b565b905073f19308f923582a6f7c465e5ce7a9dc1bec6665b16113fa817f000000000000000000000000000000000000000000000000000000000000000087611ff2565b831561141a57600a5461141a906001600160a01b03838116911686611ff2565b6114243388612051565b8282111561144b5761144b3361143a8585612cfa565b6001600160a01b0384169190611ff2565b5050505050505050565b606061146082611952565b6114ac5760405162461bcd60e51b815260206004820152601f60248201527f55524920717565727920666f72206e6f6e6578697374656e7420746f6b656e006044820152606401610ba7565b600e60006114b984610b09565b60ff1660ff16815260200190815260200160002080546114d890612b40565b90506000036114f657604051806020016040528060008152506107fd565b600e600061150384610b09565b60ff1660ff168152602001908152602001600020805461152290612b40565b80601f016020809104026020016040519081016040528092919081815260200182805461154e90612b40565b801561159b5780601f106115705761010080835404028352916020019161159b565b820191906000526020600020905b81548152906001019060200180831161157e57829003601f168201915b505050505092915050565b42600c54116115ec5760405162461bcd60e51b815260206004820152601260248201527150726573616c65206e6f742061637469766560701b6044820152606401610ba7565b6000806115f98484611c83565b909250905073f19308f923582a6f7c465e5ce7a9dc1bec6665b161163f81337f000000000000000000000000000000000000000000000000000000000000000086612110565b811561166157600a54611661906001600160a01b038381169133911685612110565b61166b3385612051565b5050505050565b600061167d60015490565b905090565b6000816116bf5760405162461bcd60e51b815260206004820152600b60248201526a456d70747920617272617960a81b6044820152606401610ba7565b60006116e3848460008181106116d7576116d7612b7a565b90506020020135610bff565b905060005b8381101561183a57600085858381811061170457611704612b7a565b9050602002013590506000601160008381526020019081526020016000205490506202a30061173c8260081c6001600160401b031690565b6001600160401b031661174f9190612ce7565b42116117925760405162461bcd60e51b8152602060048201526012602482015271436f6f6c646f776e2069732061637469766560701b6044820152606401610ba7565b60ff8116600081815260106020526040902054600b8054604885901c61ffff169003905595909501946117c483610bff565b6001600160a01b0316856001600160a01b0316146118245760405162461bcd60e51b815260206004820152601a60248201527f4e4654206e6f74206f776e65642062792073616d6520757365720000000000006044820152606401610ba7565b61182f836001612149565b5050506001016116e8565b50604051630d761bc960e01b8152600481018390526001600160a01b0382811660248301527f00000000000000000000000000000000000000000000000000000000000000001690630d761bc990604401600060405180830381600087803b1580156118a557600080fd5b505af115801561144b573d6000803e3d6000fd5b600d8054610a6890612b40565b6118ce611b21565b6001600160a01b0381166118f857604051631e4fbdf760e01b815260006004820152602401610ba7565b61190181611b4e565b50565b60006301ffc9a760e01b6001600160e01b03198316148061193557506380ac58cd60e01b6001600160e01b03198316145b806107fd5750506001600160e01b031916635b5e139f60e01b1490565b60008160011161199b5760005482101561199b5760005b50600082815260046020526040812054908190036119915761198a83612d0d565b9250611969565b600160e01b161590505b919050565b8060005260046000fd5b60006119b583610bff565b90508180156119cd5750336001600160a01b03821614155b156119f0576119dc8133610754565b6119f0576119f06367d9dca160e11b6119a0565b60008381526006602052604080822080546001600160a01b0319166001600160a01b0388811691821790925591518693918516917f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591a450505050565b600081600111611ade575060008181526004602052604090205480600003611acb576000548210611a8857611a88636f96cda160e11b6119a0565b5b50600019016000818152600460205260409020548015611a8957600160e01b8116600003611ab657919050565b611ac6636f96cda160e11b6119a0565b611a89565b600160e01b8116600003611ade57919050565b61199b636f96cda160e11b6119a0565b60008060008360ff16118015611b07575060078360ff16105b611b12600285612d24565b60ff1660001491509150915091565b6009546001600160a01b03163314610c615760405163118cdaa760e01b8152336004820152602401610ba7565b600980546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b604051630a85bd0160e11b81526000906001600160a01b0385169063150b7a0290611bd5903390899088908890600401612d54565b6020604051808303816000875af1925050508015611c10575060408051601f3d908101601f19168201909252611c0d91810190612d87565b60015b611c65573d808015611c3e576040519150601f19603f3d011682016040523d82523d6000602084013e611c43565b606091505b508051600003611c5d57611c5d6368d2bf6b60e11b6119a0565b805181602001fd5b6001600160e01b031916630a85bd0160e11b1490505b949350505050565b60008082611cd35760405162461bcd60e51b815260206004820152601b60248201527f4e65656420746f206d696e74206174206c656173742031204e465400000000006044820152606401610ba7565b60008054905b84811015611e12576000868683818110611cf557611cf5612b7a565b9050602002016020810190611d0a9190612717565b9050600080611d1883611aee565b9150915081611d5c5760405162461bcd60e51b815260206004820152601060248201526f2737ba1030903b30b634b2103a34b2b960811b6044820152606401610ba7565b60ff83166000908152600f602052604090205461ffff16611db9611d808688612ce7565b600090815260116020526040902060ff861668ffffffffffffffff004260081b16176affff000000000000000000604885901b16179055565b600b805461ffff831601905560ff841660009081526010602052604090205497909701968115611e025760ff8416600090815260106020526040902054606490600a0204870196505b505060019092019150611cd99050565b50509250929050565b600073c02aaa39b223fe8d0a0e5c4f27ead9083c756cc26001600160a01b031663d0e30db0346040518263ffffffff1660e01b81526004016000604051808303818588803b158015611e6c57600080fd5b505af1158015611e80573d6000803e3d6000fd5b5050604080516101008101825273c02aaa39b223fe8d0a0e5c4f27ead9083c756cc280825273f19308f923582a6f7c465e5ce7a9dc1bec6665b1602083015261271092820192909252306060820152608081018790523460a0820181905260c08201899052600060e0830152909450611f12935090915073e592427a0aece92de3edee1f18e0157c058615649061228a565b6040805163414bf38960e01b815282516001600160a01b0390811660048301526020840151811660248301529183015162ffffff1660448201526060830151821660648201526080830151608482015260a083015160a482015260c083015160c482015260e083015190911660e482015260009073e592427a0aece92de3edee1f18e0157c058615649063414bf38990610104016020604051808303816000875af1158015611fc5573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611fe99190612da4565b95945050505050565b6040516001600160a01b03838116602483015260448201839052610b0491859182169063a9059cbb906064015b604051602081830303815290604052915060e01b6020820180516001600160e01b038381831617835250505050612314565b600080549082900361206d5761206d63b562e8dd60e01b6119a0565b60008181526004602090815260408083206001600160a01b0387164260a01b6001881460e11b178117909155808452600590925282208054680100000000000000018602019055908190036120cb576120cb622e076360e81b6119a0565b818301825b808360007fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef600080a48181600101915081036120d0575060005550505050565b6040516001600160a01b038481166024830152838116604483015260648201839052610fad9186918216906323b872dd9060840161201f565b600061215483611a4d565b90508060008061217286600090815260066020526040902080549091565b9150915084156121a957612187818433610928565b6121a9576121958333610754565b6121a9576121a9632ce44b5f60e11b6119a0565b80156121b457600082555b6001600160a01b038316600081815260056020526040902080546fffffffffffffffffffffffffffffffff0190554260a01b17600360e01b17600087815260046020526040812091909155600160e11b85169003612242576001860160008181526004602052604081205490036122405760005481146122405760008181526004602052604090208590555b505b60405186906000906001600160a01b038616907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908390a45050600180548101905550505050565b604051636eb1769f60e11b81523060048201526001600160a01b0383811660248301526000919085169063dd62ed3e90604401602060405180830381865afa1580156122da573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906122fe9190612da4565b9050610fad848461230f8585612ce7565b612377565b60006123296001600160a01b03841683612407565b9050805160001415801561234e57508080602001905181019061234c9190612dbd565b155b15610b0457604051635274afe760e01b81526001600160a01b0384166004820152602401610ba7565b604080516001600160a01b038416602482015260448082018490528251808303909101815260649091019091526020810180516001600160e01b031663095ea7b360e01b1790526123c88482612415565b610fad576040516001600160a01b038481166024830152600060448301526123fd91869182169063095ea7b39060640161201f565b610fad8482612314565b6060610b1d838360006124b8565b6000806000846001600160a01b0316846040516124329190612dda565b6000604051808303816000865af19150503d806000811461246f576040519150601f19603f3d011682016040523d82523d6000602084013e612474565b606091505b509150915081801561249e57508051158061249e57508080602001905181019061249e9190612dbd565b8015611fe95750505050506001600160a01b03163b151590565b6060814710156124dd5760405163cd78605960e01b8152306004820152602401610ba7565b600080856001600160a01b031684866040516124f99190612dda565b60006040518083038185875af1925050503d8060008114612536576040519150601f19603f3d011682016040523d82523d6000602084013e61253b565b606091505b509150915061254b868383612555565b9695505050505050565b60608261256a57612565826125b1565b610b1d565b815115801561258157506001600160a01b0384163b155b156125aa57604051639996b31560e01b81526001600160a01b0385166004820152602401610ba7565b5080610b1d565b8051156125c15780518082602001fd5b604051630a12f52160e11b815260040160405180910390fd5b6001600160e01b03198116811461190157600080fd5b60006020828403121561260257600080fd5b8135610b1d816125da565b60005b83811015612628578181015183820152602001612610565b50506000910152565b6000815180845261264981602086016020860161260d565b601f01601f19169290920160200192915050565b602081526000610b1d6020830184612631565b60006020828403121561268257600080fd5b5035919050565b80356001600160a01b038116811461199b57600080fd5b600080604083850312156126b357600080fd5b6126bc83612689565b946020939093013593505050565b6000806000606084860312156126df57600080fd5b6126e884612689565b92506126f660208501612689565b9150604084013590509250925092565b803560ff8116811461199b57600080fd5b60006020828403121561272957600080fd5b610b1d82612706565b60008083601f84011261274457600080fd5b5081356001600160401b0381111561275b57600080fd5b6020830191508360208260051b850101111561277657600080fd5b9250929050565b6000806020838503121561279057600080fd5b82356001600160401b038111156127a657600080fd5b6127b285828601612732565b90969095509350505050565b6000602082840312156127d057600080fd5b610b1d82612689565b634e487b7160e01b600052604160045260246000fd5b60006001600160401b0380841115612809576128096127d9565b604051601f8501601f19908116603f01168101908282118183101715612831576128316127d9565b8160405280935085815286868601111561284a57600080fd5b858560208301376000602087830101525050509392505050565b600082601f83011261287557600080fd5b610b1d838335602085016127ef565b60006020828403121561289657600080fd5b81356001600160401b038111156128ac57600080fd5b611c7b84828501612864565b801515811461190157600080fd5b600080604083850312156128d957600080fd5b6128e283612689565b915060208301356128f2816128b8565b809150509250929050565b60008151808452602080850194506020840160005b8381101561292e57815187529582019590820190600101612912565b509495945050505050565b602081526000610b1d60208301846128fd565b6000806000806080858703121561296257600080fd5b61296b85612689565b935061297960208601612689565b92506040850135915060608501356001600160401b0381111561299b57600080fd5b8501601f810187136129ac57600080fd5b6129bb878235602084016127ef565b91505092959194509250565b600080604083850312156129da57600080fd5b6129e383612706565b915060208301356001600160401b038111156129fe57600080fd5b612a0a85828601612864565b9150509250929050565b600080600060408486031215612a2957600080fd5b83356001600160401b03811115612a3f57600080fd5b612a4b86828701612732565b9094509250612a5e905060208501612689565b90509250925092565b604081526000612a7a60408301856128fd565b82810360208481019190915284518083528582019282019060005b81811015612ab557845161ffff1683529383019391830191600101612a95565b5090979650505050505050565b600080600060408486031215612ad757600080fd5b83356001600160401b03811115612aed57600080fd5b612af986828701612732565b909790965060209590950135949350505050565b60008060408385031215612b2057600080fd5b612b2983612689565b9150612b3760208401612689565b90509250929050565b600181811c90821680612b5457607f821691505b602082108103612b7457634e487b7160e01b600052602260045260246000fd5b50919050565b634e487b7160e01b600052603260045260246000fd5b601f821115610b04576000816000526020600020601f850160051c81016020861015612bb95750805b601f850160051c820191505b81811015612bd857828155600101612bc5565b505050505050565b81516001600160401b03811115612bf957612bf96127d9565b612c0d81612c078454612b40565b84612b90565b602080601f831160018114612c425760008415612c2a5750858301515b600019600386901b1c1916600185901b178555612bd8565b600085815260208120601f198616915b82811015612c7157888601518255948401946001909101908401612c52565b5085821015612c8f5787850151600019600388901b60f8161c191681555b5050505050600190811b01905550565b634e487b7160e01b600052601160045260246000fd5b600060018201612cc757612cc7612c9f565b5060010190565b60ff82811682821603908111156107fd576107fd612c9f565b808201808211156107fd576107fd612c9f565b818103818111156107fd576107fd612c9f565b600081612d1c57612d1c612c9f565b506000190190565b600060ff831680612d4557634e487b7160e01b600052601260045260246000fd5b8060ff84160691505092915050565b6001600160a01b038581168252841660208201526040810183905260806060820181905260009061254b90830184612631565b600060208284031215612d9957600080fd5b8151610b1d816125da565b600060208284031215612db657600080fd5b5051919050565b600060208284031215612dcf57600080fd5b8151610b1d816128b8565b60008251612dec81846020870161260d565b919091019291505056fea2646970667358221220099e50e773fe27f5d64dec1c7efb14bb9061d9c31278c8212b3cbb26e1d7cffa64736f6c63430008180033000000000000000000000000cb9ecf72ea9dbc0a5bbc1061335f7ec12a33416100000000000000000000000015e5b9b9adf208cc7ca3ae1e6a49506eb5f397dd00000000000000000000000000000000000000000000000000000000000000a0000000000000000000000000e9a53c43a0b58706e67341c4055de861e29ee94300000000000000000000000000000000000000000000000000000000000001000000000000000000000000000000000000000000000000000000000000000035697066733a2f2f516d59523538545170566b4c79386d48397a4e64535168393142573155314b6432447461356232723763765a5a520000000000000000000000000000000000000000000000000000000000000000000000000000000000000600000000000000000000000000000000000000000000000000000000000000c00000000000000000000000000000000000000000000000000000000000000120000000000000000000000000000000000000000000000000000000000000018000000000000000000000000000000000000000000000000000000000000001e0000000000000000000000000000000000000000000000000000000000000024000000000000000000000000000000000000000000000000000000000000002a00000000000000000000000000000000000000000000000000000000000000035697066733a2f2f516d6369774670544a454b50634c466f43464b64676d314a324233503269615559534c6a794d396973544276477900000000000000000000000000000000000000000000000000000000000000000000000000000000000035697066733a2f2f516d536f416346527067684b67745a66666f4c416b4444526551665a593346426153736f636f513456533271396300000000000000000000000000000000000000000000000000000000000000000000000000000000000035697066733a2f2f516d5644446a6a454b795061764253384a67645171596a3853677175446a454274573171346943766d3672464a4c00000000000000000000000000000000000000000000000000000000000000000000000000000000000035697066733a2f2f516d627464643648756d56456a4358334561715776786f41485765613836625358463558644d665a63733377717000000000000000000000000000000000000000000000000000000000000000000000000000000000000035697066733a2f2f516d546754697152755750646470414677337561596234476e4a41364a6d7253504b5a6164574a784c447646586700000000000000000000000000000000000000000000000000000000000000000000000000000000000035697066733a2f2f516d5865324750396f336b446f4a38647979456e73526d67587375696946346269504372363774633669654851660000000000000000000000
Deployed Bytecode
0x60806040526004361061023b5760003560e01c8063938e3d7b1161012e578063c03e60a6116100ab578063d89135cd1161006f578063d89135cd146106ef578063e33f33fb14610704578063e8a3d48514610724578063e985e9c514610739578063f2fde38b1461078257600080fd5b8063c03e60a61461064e578063c1d064401461066e578063c467366a1461069c578063c87b56dd146106af578063cb0a4433146106cf57600080fd5b8063aa6b8aaf116100f2578063aa6b8aaf146105ae578063adf8252d146105c3578063b633620c146105fb578063b88d4fde1461061b578063bdc9cacd1461062e57600080fd5b8063938e3d7b1461050c57806395d89b411461052c578063a132aad114610541578063a22cb46514610561578063a3b261f21461058157600080fd5b806342842e0e116101bc5780636352211e116101805780636352211e14610483578063651c5434146104a357806370a08231146104b9578063715018a6146104d95780638da5cb5b146104ee57600080fd5b806342842e0e146103ba578063493d5dfe146103cd5780634cdcd8d3146103ff578063574c91ca1461044357806361d027b31461046357600080fd5b8063229f3e2911610203578063229f3e291461031057806323b872dd146103265780632e7ab312146103395780633a6089cf1461036d5780633e4cc7321461039a57600080fd5b806301ffc9a71461024057806306fdde0314610275578063081812fc14610297578063095ea7b3146102cf57806318160ddd146102e4575b600080fd5b34801561024c57600080fd5b5061026061025b3660046125f0565b6107a2565b60405190151581526020015b60405180910390f35b34801561028157600080fd5b5061028a610803565b60405161026c919061265d565b3480156102a357600080fd5b506102b76102b2366004612670565b610895565b6040516001600160a01b03909116815260200161026c565b6102e26102dd3660046126a0565b6108d0565b005b3480156102f057600080fd5b50610302600154600054036000190190565b60405190815260200161026c565b34801561031c57600080fd5b50610302600c5481565b6102e26103343660046126ca565b6108e0565b34801561034557600080fd5b506102b77f000000000000000000000000e9a53c43a0b58706e67341c4055de861e29ee94381565b34801561037957600080fd5b50610302610388366004612717565b60106020526000908152604090205481565b3480156103a657600080fd5b5061028a6103b5366004612717565b610a4f565b6102e26103c83660046126ca565b610ae9565b3480156103d957600080fd5b506103ed6103e8366004612670565b610b09565b60405160ff909116815260200161026c565b34801561040b57600080fd5b5061043061041a366004612717565b600f6020526000908152604090205461ffff1681565b60405161ffff909116815260200161026c565b34801561044f57600080fd5b5061030261045e36600461277d565b610b24565b34801561046f57600080fd5b50600a546102b7906001600160a01b031681565b34801561048f57600080fd5b506102b761049e366004612670565b610bff565b3480156104af57600080fd5b50610302600b5481565b3480156104c557600080fd5b506103026104d43660046127be565b610c0a565b3480156104e557600080fd5b506102e2610c4f565b3480156104fa57600080fd5b506009546001600160a01b03166102b7565b34801561051857600080fd5b506102e2610527366004612884565b610c63565b34801561053857600080fd5b5061028a610ca4565b34801561054d57600080fd5b506102e261055c366004612670565b610cb3565b34801561056d57600080fd5b506102e261057c3660046128c6565b610d1f565b34801561058d57600080fd5b506105a161059c3660046127be565b610d8b565b60405161026c9190612939565b3480156105ba57600080fd5b506105a1610e86565b3480156105cf57600080fd5b506105e36105de366004612670565b610f28565b6040516001600160401b03909116815260200161026c565b34801561060757600080fd5b506105e3610616366004612670565b610f50565b6102e261062936600461294c565b610f72565b34801561063a57600080fd5b506102e26106493660046129c7565b610fb3565b34801561065a57600080fd5b5061030261066936600461277d565b611017565b34801561067a57600080fd5b5061068e610689366004612a14565b6111b7565b60405161026c929190612a67565b6102e26106aa366004612ac2565b611351565b3480156106bb57600080fd5b5061028a6106ca366004612670565b611455565b3480156106db57600080fd5b506102e26106ea36600461277d565b6115a6565b3480156106fb57600080fd5b50610302611672565b34801561071057600080fd5b506102e261071f36600461277d565b611682565b34801561073057600080fd5b5061028a6118b9565b34801561074557600080fd5b50610260610754366004612b0d565b6001600160a01b03918216600090815260076020908152604080832093909416825291909152205460ff1690565b34801561078e57600080fd5b506102e261079d3660046127be565b6118c6565b60006001600160e01b031982166301ffc9a760e01b14806107d357506001600160e01b031982166380ac58cd60e01b145b806107ee57506001600160e01b03198216635b5e139f60e01b145b806107fd57506107fd82611904565b92915050565b60606002805461081290612b40565b80601f016020809104026020016040519081016040528092919081815260200182805461083e90612b40565b801561088b5780601f106108605761010080835404028352916020019161088b565b820191906000526020600020905b81548152906001019060200180831161086e57829003601f168201915b5050505050905090565b60006108a082611952565b6108b4576108b46333d1c03960e21b6119a0565b506000908152600660205260409020546001600160a01b031690565b6108dc828260016119aa565b5050565b60006108eb82611a4d565b6001600160a01b0394851694909150811684146109115761091162a1148160e81b6119a0565b6000828152600660205260409020805461093d8187335b6001600160a01b039081169116811491141790565b61095f5761094b8633610754565b61095f5761095f632ce44b5f60e11b6119a0565b801561096a57600082555b6001600160a01b038681166000908152600560205260408082208054600019019055918716808252919020805460010190554260a01b17600160e11b17600085815260046020526040812091909155600160e11b841690036109fc576001840160008181526004602052604081205490036109fa5760005481146109fa5760008181526004602052604090208490555b505b6001600160a01b0385168481887fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef600080a480600003610a4657610a46633a954ecd60e21b6119a0565b50505050505050565b600e6020526000908152604090208054610a6890612b40565b80601f0160208091040260200160405190810160405280929190818152602001828054610a9490612b40565b8015610ae15780601f10610ab657610100808354040283529160200191610ae1565b820191906000526020600020905b815481529060010190602001808311610ac457829003601f168201915b505050505081565b610b0483838360405180602001604052806000815250610f72565b505050565b60008181526011602052604081205460ff81165b9392505050565b6000805b82811015610bf8576000848483818110610b4457610b44612b7a565b9050602002016020810190610b599190612717565b9050600080610b6783611aee565b9150915081610bb05760405162461bcd60e51b815260206004820152601060248201526f2737ba1030903b30b634b2103a34b2b960811b60448201526064015b60405180910390fd5b60ff831660009081526010602052604090205494909401938015610bed5760ff8316600090815260106020526040902054606490600a0204850194505b505050600101610b28565b5092915050565b60006107fd82611a4d565b60006001600160a01b038216610c2a57610c2a6323d3ad8160e21b6119a0565b506001600160a01b03166000908152600560205260409020546001600160401b031690565b610c57611b21565b610c616000611b4e565b565b610c6b611b21565b600d610c778282612be0565b506040517fa5d4097edda6d87cb9329af83fb3712ef77eeb13738ffe43cc35a4ce305ad96290600090a150565b60606003805461081290612b40565b336001600160a01b037f000000000000000000000000e9a53c43a0b58706e67341c4055de861e29ee9431614610d1a5760405162461bcd60e51b815260206004820152600c60248201526b155b985d5d1a1bdc9a5e995960a21b6044820152606401610ba7565b600c55565b3360008181526007602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b60606000610d9860005490565b90506000610da584610c0a565b9050806001600160401b03811115610dbf57610dbf6127d9565b604051908082528060200260200182016040528015610de8578160200160208202803683370190505b50925080600003610dfa575050919050565b600060015b83811015610e7d57610e1081611952565b8015610e355750856001600160a01b0316610e2a82610bff565b6001600160a01b0316145b15610e755780858381518110610e4d57610e4d612b7a565b602090810291909101015281610e6281612cb5565b925050828203610e755750505050919050565b600101610dff565b50505050919050565b60606000610e9360005490565b60408051600680825260e082019092529192506020820160c08036833701905050915060015b81811015610f2357610eca81611952565b15610f1b576000818152601160205260409020548390610eef9060019060ff16612cce565b60ff1681518110610f0257610f02612b7a565b602002602001018051809190610f1790612cb5565b9052505b600101610eb9565b505090565b600081815260116020526040812054610f458160481c61ffff1690565b61ffff169392505050565b600081815260116020526040812054610b1d8160081c6001600160401b031690565b610f7d8484846108e0565b6001600160a01b0383163b15610fad57610f9984848484611ba0565b610fad57610fad6368d2bf6b60e11b6119a0565b50505050565b610fbb611b21565b60ff82166000908152600e60205260409020610fd78282612be0565b50604080516001815260001960208201527f6bd5c950a8d8df17f772f5af37cb3655737899cbf903264b9795592da439661c910160405180910390a15050565b60008161105b5760405162461bcd60e51b8152602060048201526012602482015271139bc81d1bdad95b9cc81c1c9bdd9a59195960721b6044820152606401610ba7565b6000805b838110156111af576000611074826001612ce7565b90505b848110156110fb5785858281811061109157611091612b7a565b905060200201358686848181106110aa576110aa612b7a565b90506020020135036110f35760405162461bcd60e51b8152602060048201526012602482015271111d5c1b1a58d85d19481d1bdad95b88125160721b6044820152606401610ba7565b600101611077565b5061111d85858381811061111157611111612b7a565b90506020020135611952565b6111695760405162461bcd60e51b815260206004820152601760248201527f546f6b656e20494420646f6573206e6f742065786973740000000000000000006044820152606401610ba7565b6010600061118e87878581811061118257611182612b7a565b90506020020135610b09565b60ff168152602081019190915260400160002054919091019060010161105f565b509392505050565b606080836001600160401b038111156111d2576111d26127d9565b6040519080825280602002602001820160405280156111fb578160200160208202803683370190505b509150836001600160401b03811115611216576112166127d9565b60405190808252806020026020018201604052801561123f578160200160208202803683370190505b50905060005b8481101561134857600086868381811061126157611261612b7a565b905060200201359050846001600160a01b031661127d82610bff565b6001600160a01b0316146112c25760405162461bcd60e51b815260206004820152600c60248201526b155b985d5d1a1bdc9a5e995960a21b6044820152606401610ba7565b6000818152601160205260409020546112e48160081c6001600160401b031690565b6001600160401b03168584815181106112ff576112ff612b7a565b6020026020010181815250506113198160481c61ffff1690565b84848151811061132b5761132b612b7a565b61ffff909216602092830291909101909101525050600101611245565b50935093915050565b42600c54116113975760405162461bcd60e51b815260206004820152601260248201527150726573616c65206e6f742061637469766560701b6044820152606401610ba7565b6000806113a48585611c83565b909250905081810160006113b88286611e1b565b905073f19308f923582a6f7c465e5ce7a9dc1bec6665b16113fa817f000000000000000000000000e9a53c43a0b58706e67341c4055de861e29ee94387611ff2565b831561141a57600a5461141a906001600160a01b03838116911686611ff2565b6114243388612051565b8282111561144b5761144b3361143a8585612cfa565b6001600160a01b0384169190611ff2565b5050505050505050565b606061146082611952565b6114ac5760405162461bcd60e51b815260206004820152601f60248201527f55524920717565727920666f72206e6f6e6578697374656e7420746f6b656e006044820152606401610ba7565b600e60006114b984610b09565b60ff1660ff16815260200190815260200160002080546114d890612b40565b90506000036114f657604051806020016040528060008152506107fd565b600e600061150384610b09565b60ff1660ff168152602001908152602001600020805461152290612b40565b80601f016020809104026020016040519081016040528092919081815260200182805461154e90612b40565b801561159b5780601f106115705761010080835404028352916020019161159b565b820191906000526020600020905b81548152906001019060200180831161157e57829003601f168201915b505050505092915050565b42600c54116115ec5760405162461bcd60e51b815260206004820152601260248201527150726573616c65206e6f742061637469766560701b6044820152606401610ba7565b6000806115f98484611c83565b909250905073f19308f923582a6f7c465e5ce7a9dc1bec6665b161163f81337f000000000000000000000000e9a53c43a0b58706e67341c4055de861e29ee94386612110565b811561166157600a54611661906001600160a01b038381169133911685612110565b61166b3385612051565b5050505050565b600061167d60015490565b905090565b6000816116bf5760405162461bcd60e51b815260206004820152600b60248201526a456d70747920617272617960a81b6044820152606401610ba7565b60006116e3848460008181106116d7576116d7612b7a565b90506020020135610bff565b905060005b8381101561183a57600085858381811061170457611704612b7a565b9050602002013590506000601160008381526020019081526020016000205490506202a30061173c8260081c6001600160401b031690565b6001600160401b031661174f9190612ce7565b42116117925760405162461bcd60e51b8152602060048201526012602482015271436f6f6c646f776e2069732061637469766560701b6044820152606401610ba7565b60ff8116600081815260106020526040902054600b8054604885901c61ffff169003905595909501946117c483610bff565b6001600160a01b0316856001600160a01b0316146118245760405162461bcd60e51b815260206004820152601a60248201527f4e4654206e6f74206f776e65642062792073616d6520757365720000000000006044820152606401610ba7565b61182f836001612149565b5050506001016116e8565b50604051630d761bc960e01b8152600481018390526001600160a01b0382811660248301527f000000000000000000000000e9a53c43a0b58706e67341c4055de861e29ee9431690630d761bc990604401600060405180830381600087803b1580156118a557600080fd5b505af115801561144b573d6000803e3d6000fd5b600d8054610a6890612b40565b6118ce611b21565b6001600160a01b0381166118f857604051631e4fbdf760e01b815260006004820152602401610ba7565b61190181611b4e565b50565b60006301ffc9a760e01b6001600160e01b03198316148061193557506380ac58cd60e01b6001600160e01b03198316145b806107fd5750506001600160e01b031916635b5e139f60e01b1490565b60008160011161199b5760005482101561199b5760005b50600082815260046020526040812054908190036119915761198a83612d0d565b9250611969565b600160e01b161590505b919050565b8060005260046000fd5b60006119b583610bff565b90508180156119cd5750336001600160a01b03821614155b156119f0576119dc8133610754565b6119f0576119f06367d9dca160e11b6119a0565b60008381526006602052604080822080546001600160a01b0319166001600160a01b0388811691821790925591518693918516917f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591a450505050565b600081600111611ade575060008181526004602052604090205480600003611acb576000548210611a8857611a88636f96cda160e11b6119a0565b5b50600019016000818152600460205260409020548015611a8957600160e01b8116600003611ab657919050565b611ac6636f96cda160e11b6119a0565b611a89565b600160e01b8116600003611ade57919050565b61199b636f96cda160e11b6119a0565b60008060008360ff16118015611b07575060078360ff16105b611b12600285612d24565b60ff1660001491509150915091565b6009546001600160a01b03163314610c615760405163118cdaa760e01b8152336004820152602401610ba7565b600980546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b604051630a85bd0160e11b81526000906001600160a01b0385169063150b7a0290611bd5903390899088908890600401612d54565b6020604051808303816000875af1925050508015611c10575060408051601f3d908101601f19168201909252611c0d91810190612d87565b60015b611c65573d808015611c3e576040519150601f19603f3d011682016040523d82523d6000602084013e611c43565b606091505b508051600003611c5d57611c5d6368d2bf6b60e11b6119a0565b805181602001fd5b6001600160e01b031916630a85bd0160e11b1490505b949350505050565b60008082611cd35760405162461bcd60e51b815260206004820152601b60248201527f4e65656420746f206d696e74206174206c656173742031204e465400000000006044820152606401610ba7565b60008054905b84811015611e12576000868683818110611cf557611cf5612b7a565b9050602002016020810190611d0a9190612717565b9050600080611d1883611aee565b9150915081611d5c5760405162461bcd60e51b815260206004820152601060248201526f2737ba1030903b30b634b2103a34b2b960811b6044820152606401610ba7565b60ff83166000908152600f602052604090205461ffff16611db9611d808688612ce7565b600090815260116020526040902060ff861668ffffffffffffffff004260081b16176affff000000000000000000604885901b16179055565b600b805461ffff831601905560ff841660009081526010602052604090205497909701968115611e025760ff8416600090815260106020526040902054606490600a0204870196505b505060019092019150611cd99050565b50509250929050565b600073c02aaa39b223fe8d0a0e5c4f27ead9083c756cc26001600160a01b031663d0e30db0346040518263ffffffff1660e01b81526004016000604051808303818588803b158015611e6c57600080fd5b505af1158015611e80573d6000803e3d6000fd5b5050604080516101008101825273c02aaa39b223fe8d0a0e5c4f27ead9083c756cc280825273f19308f923582a6f7c465e5ce7a9dc1bec6665b1602083015261271092820192909252306060820152608081018790523460a0820181905260c08201899052600060e0830152909450611f12935090915073e592427a0aece92de3edee1f18e0157c058615649061228a565b6040805163414bf38960e01b815282516001600160a01b0390811660048301526020840151811660248301529183015162ffffff1660448201526060830151821660648201526080830151608482015260a083015160a482015260c083015160c482015260e083015190911660e482015260009073e592427a0aece92de3edee1f18e0157c058615649063414bf38990610104016020604051808303816000875af1158015611fc5573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611fe99190612da4565b95945050505050565b6040516001600160a01b03838116602483015260448201839052610b0491859182169063a9059cbb906064015b604051602081830303815290604052915060e01b6020820180516001600160e01b038381831617835250505050612314565b600080549082900361206d5761206d63b562e8dd60e01b6119a0565b60008181526004602090815260408083206001600160a01b0387164260a01b6001881460e11b178117909155808452600590925282208054680100000000000000018602019055908190036120cb576120cb622e076360e81b6119a0565b818301825b808360007fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef600080a48181600101915081036120d0575060005550505050565b6040516001600160a01b038481166024830152838116604483015260648201839052610fad9186918216906323b872dd9060840161201f565b600061215483611a4d565b90508060008061217286600090815260066020526040902080549091565b9150915084156121a957612187818433610928565b6121a9576121958333610754565b6121a9576121a9632ce44b5f60e11b6119a0565b80156121b457600082555b6001600160a01b038316600081815260056020526040902080546fffffffffffffffffffffffffffffffff0190554260a01b17600360e01b17600087815260046020526040812091909155600160e11b85169003612242576001860160008181526004602052604081205490036122405760005481146122405760008181526004602052604090208590555b505b60405186906000906001600160a01b038616907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908390a45050600180548101905550505050565b604051636eb1769f60e11b81523060048201526001600160a01b0383811660248301526000919085169063dd62ed3e90604401602060405180830381865afa1580156122da573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906122fe9190612da4565b9050610fad848461230f8585612ce7565b612377565b60006123296001600160a01b03841683612407565b9050805160001415801561234e57508080602001905181019061234c9190612dbd565b155b15610b0457604051635274afe760e01b81526001600160a01b0384166004820152602401610ba7565b604080516001600160a01b038416602482015260448082018490528251808303909101815260649091019091526020810180516001600160e01b031663095ea7b360e01b1790526123c88482612415565b610fad576040516001600160a01b038481166024830152600060448301526123fd91869182169063095ea7b39060640161201f565b610fad8482612314565b6060610b1d838360006124b8565b6000806000846001600160a01b0316846040516124329190612dda565b6000604051808303816000865af19150503d806000811461246f576040519150601f19603f3d011682016040523d82523d6000602084013e612474565b606091505b509150915081801561249e57508051158061249e57508080602001905181019061249e9190612dbd565b8015611fe95750505050506001600160a01b03163b151590565b6060814710156124dd5760405163cd78605960e01b8152306004820152602401610ba7565b600080856001600160a01b031684866040516124f99190612dda565b60006040518083038185875af1925050503d8060008114612536576040519150601f19603f3d011682016040523d82523d6000602084013e61253b565b606091505b509150915061254b868383612555565b9695505050505050565b60608261256a57612565826125b1565b610b1d565b815115801561258157506001600160a01b0384163b155b156125aa57604051639996b31560e01b81526001600160a01b0385166004820152602401610ba7565b5080610b1d565b8051156125c15780518082602001fd5b604051630a12f52160e11b815260040160405180910390fd5b6001600160e01b03198116811461190157600080fd5b60006020828403121561260257600080fd5b8135610b1d816125da565b60005b83811015612628578181015183820152602001612610565b50506000910152565b6000815180845261264981602086016020860161260d565b601f01601f19169290920160200192915050565b602081526000610b1d6020830184612631565b60006020828403121561268257600080fd5b5035919050565b80356001600160a01b038116811461199b57600080fd5b600080604083850312156126b357600080fd5b6126bc83612689565b946020939093013593505050565b6000806000606084860312156126df57600080fd5b6126e884612689565b92506126f660208501612689565b9150604084013590509250925092565b803560ff8116811461199b57600080fd5b60006020828403121561272957600080fd5b610b1d82612706565b60008083601f84011261274457600080fd5b5081356001600160401b0381111561275b57600080fd5b6020830191508360208260051b850101111561277657600080fd5b9250929050565b6000806020838503121561279057600080fd5b82356001600160401b038111156127a657600080fd5b6127b285828601612732565b90969095509350505050565b6000602082840312156127d057600080fd5b610b1d82612689565b634e487b7160e01b600052604160045260246000fd5b60006001600160401b0380841115612809576128096127d9565b604051601f8501601f19908116603f01168101908282118183101715612831576128316127d9565b8160405280935085815286868601111561284a57600080fd5b858560208301376000602087830101525050509392505050565b600082601f83011261287557600080fd5b610b1d838335602085016127ef565b60006020828403121561289657600080fd5b81356001600160401b038111156128ac57600080fd5b611c7b84828501612864565b801515811461190157600080fd5b600080604083850312156128d957600080fd5b6128e283612689565b915060208301356128f2816128b8565b809150509250929050565b60008151808452602080850194506020840160005b8381101561292e57815187529582019590820190600101612912565b509495945050505050565b602081526000610b1d60208301846128fd565b6000806000806080858703121561296257600080fd5b61296b85612689565b935061297960208601612689565b92506040850135915060608501356001600160401b0381111561299b57600080fd5b8501601f810187136129ac57600080fd5b6129bb878235602084016127ef565b91505092959194509250565b600080604083850312156129da57600080fd5b6129e383612706565b915060208301356001600160401b038111156129fe57600080fd5b612a0a85828601612864565b9150509250929050565b600080600060408486031215612a2957600080fd5b83356001600160401b03811115612a3f57600080fd5b612a4b86828701612732565b9094509250612a5e905060208501612689565b90509250925092565b604081526000612a7a60408301856128fd565b82810360208481019190915284518083528582019282019060005b81811015612ab557845161ffff1683529383019391830191600101612a95565b5090979650505050505050565b600080600060408486031215612ad757600080fd5b83356001600160401b03811115612aed57600080fd5b612af986828701612732565b909790965060209590950135949350505050565b60008060408385031215612b2057600080fd5b612b2983612689565b9150612b3760208401612689565b90509250929050565b600181811c90821680612b5457607f821691505b602082108103612b7457634e487b7160e01b600052602260045260246000fd5b50919050565b634e487b7160e01b600052603260045260246000fd5b601f821115610b04576000816000526020600020601f850160051c81016020861015612bb95750805b601f850160051c820191505b81811015612bd857828155600101612bc5565b505050505050565b81516001600160401b03811115612bf957612bf96127d9565b612c0d81612c078454612b40565b84612b90565b602080601f831160018114612c425760008415612c2a5750858301515b600019600386901b1c1916600185901b178555612bd8565b600085815260208120601f198616915b82811015612c7157888601518255948401946001909101908401612c52565b5085821015612c8f5787850151600019600388901b60f8161c191681555b5050505050600190811b01905550565b634e487b7160e01b600052601160045260246000fd5b600060018201612cc757612cc7612c9f565b5060010190565b60ff82811682821603908111156107fd576107fd612c9f565b808201808211156107fd576107fd612c9f565b818103818111156107fd576107fd612c9f565b600081612d1c57612d1c612c9f565b506000190190565b600060ff831680612d4557634e487b7160e01b600052601260045260246000fd5b8060ff84160691505092915050565b6001600160a01b038581168252841660208201526040810183905260806060820181905260009061254b90830184612631565b600060208284031215612d9957600080fd5b8151610b1d816125da565b600060208284031215612db657600080fd5b5051919050565b600060208284031215612dcf57600080fd5b8151610b1d816128b8565b60008251612dec81846020870161260d565b919091019291505056fea2646970667358221220099e50e773fe27f5d64dec1c7efb14bb9061d9c31278c8212b3cbb26e1d7cffa64736f6c63430008180033
Constructor Arguments (ABI-Encoded and is the last bytes of the Contract Creation Code above)
000000000000000000000000cb9ecf72ea9dbc0a5bbc1061335f7ec12a33416100000000000000000000000015e5b9b9adf208cc7ca3ae1e6a49506eb5f397dd00000000000000000000000000000000000000000000000000000000000000a0000000000000000000000000e9a53c43a0b58706e67341c4055de861e29ee94300000000000000000000000000000000000000000000000000000000000001000000000000000000000000000000000000000000000000000000000000000035697066733a2f2f516d59523538545170566b4c79386d48397a4e64535168393142573155314b6432447461356232723763765a5a520000000000000000000000000000000000000000000000000000000000000000000000000000000000000600000000000000000000000000000000000000000000000000000000000000c00000000000000000000000000000000000000000000000000000000000000120000000000000000000000000000000000000000000000000000000000000018000000000000000000000000000000000000000000000000000000000000001e0000000000000000000000000000000000000000000000000000000000000024000000000000000000000000000000000000000000000000000000000000002a00000000000000000000000000000000000000000000000000000000000000035697066733a2f2f516d6369774670544a454b50634c466f43464b64676d314a324233503269615559534c6a794d396973544276477900000000000000000000000000000000000000000000000000000000000000000000000000000000000035697066733a2f2f516d536f416346527067684b67745a66666f4c416b4444526551665a593346426153736f636f513456533271396300000000000000000000000000000000000000000000000000000000000000000000000000000000000035697066733a2f2f516d5644446a6a454b795061764253384a67645171596a3853677175446a454274573171346943766d3672464a4c00000000000000000000000000000000000000000000000000000000000000000000000000000000000035697066733a2f2f516d627464643648756d56456a4358334561715776786f41485765613836625358463558644d665a63733377717000000000000000000000000000000000000000000000000000000000000000000000000000000000000035697066733a2f2f516d546754697152755750646470414677337561596234476e4a41364a6d7253504b5a6164574a784c447646586700000000000000000000000000000000000000000000000000000000000000000000000000000000000035697066733a2f2f516d5865324750396f336b446f4a38647979456e73526d67587375696946346269504372363774633669654851660000000000000000000000
-----Decoded View---------------
Arg [0] : _owner (address): 0xcb9eCf72Ea9DbC0a5bBc1061335F7ec12A334161
Arg [1] : _treasury (address): 0x15E5B9B9Adf208cC7CA3aE1e6a49506eB5f397Dd
Arg [2] : _contractURI (string): ipfs://QmYR58TQpVkLy8mH9zNdSQh91BW1U1Kd2Dta5b2r7cvZZR
Arg [3] : _E280 (address): 0xe9A53C43a0B58706e67341C4055de861e29Ee943
Arg [4] : _baseURIs (string[]): ipfs://QmciwFpTJEKPcLFoCFKdgm1J2B3P2iaUYSLjyM9isTBvGy,ipfs://QmSoAcFRpghKgtZffoLAkDDReQfZY3FBaSsocoQ4VS2q9c,ipfs://QmVDDjjEKyPavBS8JgdQqYj8SgquDjEBtW1q4iCvm6rFJL,ipfs://Qmbtdd6HumVEjCX3EaqWvxoAHWea86bSXF5XdMfZcs3wqp,ipfs://QmTgTiqRuWPddpAFw3uaYb4GnJA6JmrSPKZadWJxLDvFXg,ipfs://QmXe2GP9o3kDoJ8dyyEnsRmgXsuiiF4biPCr67tc6ieHQf
-----Encoded View---------------
33 Constructor Arguments found :
Arg [0] : 000000000000000000000000cb9ecf72ea9dbc0a5bbc1061335f7ec12a334161
Arg [1] : 00000000000000000000000015e5b9b9adf208cc7ca3ae1e6a49506eb5f397dd
Arg [2] : 00000000000000000000000000000000000000000000000000000000000000a0
Arg [3] : 000000000000000000000000e9a53c43a0b58706e67341c4055de861e29ee943
Arg [4] : 0000000000000000000000000000000000000000000000000000000000000100
Arg [5] : 0000000000000000000000000000000000000000000000000000000000000035
Arg [6] : 697066733a2f2f516d59523538545170566b4c79386d48397a4e645351683931
Arg [7] : 42573155314b6432447461356232723763765a5a520000000000000000000000
Arg [8] : 0000000000000000000000000000000000000000000000000000000000000006
Arg [9] : 00000000000000000000000000000000000000000000000000000000000000c0
Arg [10] : 0000000000000000000000000000000000000000000000000000000000000120
Arg [11] : 0000000000000000000000000000000000000000000000000000000000000180
Arg [12] : 00000000000000000000000000000000000000000000000000000000000001e0
Arg [13] : 0000000000000000000000000000000000000000000000000000000000000240
Arg [14] : 00000000000000000000000000000000000000000000000000000000000002a0
Arg [15] : 0000000000000000000000000000000000000000000000000000000000000035
Arg [16] : 697066733a2f2f516d6369774670544a454b50634c466f43464b64676d314a32
Arg [17] : 4233503269615559534c6a794d39697354427647790000000000000000000000
Arg [18] : 0000000000000000000000000000000000000000000000000000000000000035
Arg [19] : 697066733a2f2f516d536f416346527067684b67745a66666f4c416b44445265
Arg [20] : 51665a593346426153736f636f51345653327139630000000000000000000000
Arg [21] : 0000000000000000000000000000000000000000000000000000000000000035
Arg [22] : 697066733a2f2f516d5644446a6a454b795061764253384a67645171596a3853
Arg [23] : 677175446a454274573171346943766d3672464a4c0000000000000000000000
Arg [24] : 0000000000000000000000000000000000000000000000000000000000000035
Arg [25] : 697066733a2f2f516d627464643648756d56456a4358334561715776786f4148
Arg [26] : 5765613836625358463558644d665a6373337771700000000000000000000000
Arg [27] : 0000000000000000000000000000000000000000000000000000000000000035
Arg [28] : 697066733a2f2f516d546754697152755750646470414677337561596234476e
Arg [29] : 4a41364a6d7253504b5a6164574a784c44764658670000000000000000000000
Arg [30] : 0000000000000000000000000000000000000000000000000000000000000035
Arg [31] : 697066733a2f2f516d5865324750396f336b446f4a38647979456e73526d6758
Arg [32] : 7375696946346269504372363774633669654851660000000000000000000000
Loading...
Loading
Loading...
Loading
[ Download: CSV Export ]
[ Download: CSV Export ]
A token is a representation of an on-chain or off-chain asset. The token page shows information such as price, total supply, holders, transfers and social links. Learn more about this page in our Knowledge Base.