Overview
ETH Balance
0 ETH
Eth Value
$0.00More Info
Private Name Tags
ContractCreator
TokenTracker
Latest 13 from a total of 13 transactions
Transaction Hash |
Method
|
Block
|
From
|
To
|
|||||
---|---|---|---|---|---|---|---|---|---|
Withdraw | 16715408 | 639 days ago | IN | 0 ETH | 0.00120592 | ||||
Mint | 16712932 | 639 days ago | IN | 0.007 ETH | 0.00215861 | ||||
Set Approval For... | 16712679 | 639 days ago | IN | 0 ETH | 0.00089778 | ||||
Safe Transfer Fr... | 16712623 | 639 days ago | IN | 0 ETH | 0.00159805 | ||||
Mint | 16712579 | 639 days ago | IN | 0.007 ETH | 0.0018279 | ||||
Mint | 16362799 | 688 days ago | IN | 0.0005 ETH | 0.00188421 | ||||
Mint | 16362596 | 688 days ago | IN | 0.0005 ETH | 0.00133917 | ||||
Withdraw | 16283744 | 699 days ago | IN | 0 ETH | 0.00057818 | ||||
Mint | 16280320 | 700 days ago | IN | 0.005 ETH | 0.00189289 | ||||
Update Sale | 16262825 | 702 days ago | IN | 0 ETH | 0.00111074 | ||||
Initialize | 16262819 | 702 days ago | IN | 0 ETH | 0.00406023 | ||||
Update Reveal | 16190872 | 712 days ago | IN | 0 ETH | 0.00127297 | ||||
0x60806040 | 16021923 | 736 days ago | IN | 0 ETH | 0.05553817 |
Loading...
Loading
Contract Name:
NFTArtGenCreatorImpl
Compiler Version
v0.8.7+commit.e28d00a7
Optimization Enabled:
Yes with 200 runs
Other Settings:
default evmVersion
Contract Source Code (Solidity Standard Json-Input format)
// Sources flattened with hardhat v2.10.2 https://hardhat.org // File @openzeppelin/contracts-upgradeable/utils/[email protected] // OpenZeppelin Contracts (last updated v4.8.0) (utils/Address.sol) pragma solidity ^0.8.1; /** * @dev Collection of functions related to the address type */ library AddressUpgradeable { /** * @dev Returns true if `account` is a contract. * * [IMPORTANT] * ==== * It is unsafe to assume that an address for which this function returns * false is an externally-owned account (EOA) and not a contract. * * Among others, `isContract` will return false for the following * types of addresses: * * - an externally-owned account * - a contract in construction * - an address where a contract will be created * - an address where a contract lived, but was destroyed * ==== * * [IMPORTANT] * ==== * You shouldn't rely on `isContract` to protect against flash loan attacks! * * Preventing calls from contracts is highly discouraged. It breaks composability, breaks support for smart wallets * like Gnosis Safe, and does not provide security since it can be circumvented by calling from a contract * constructor. * ==== */ function isContract(address account) internal view returns (bool) { // This method relies on extcodesize/address.code.length, which returns 0 // for contracts in construction, since the code is only stored at the end // of the constructor execution. return account.code.length > 0; } /** * @dev Replacement for Solidity's `transfer`: sends `amount` wei to * `recipient`, forwarding all available gas and reverting on errors. * * https://eips.ethereum.org/EIPS/eip-1884[EIP1884] increases the gas cost * of certain opcodes, possibly making contracts go over the 2300 gas limit * imposed by `transfer`, making them unable to receive funds via * `transfer`. {sendValue} removes this limitation. * * https://diligence.consensys.net/posts/2019/09/stop-using-soliditys-transfer-now/[Learn more]. * * IMPORTANT: because control is transferred to `recipient`, care must be * taken to not create reentrancy vulnerabilities. Consider using * {ReentrancyGuard} or the * https://solidity.readthedocs.io/en/v0.5.11/security-considerations.html#use-the-checks-effects-interactions-pattern[checks-effects-interactions pattern]. */ function sendValue(address payable recipient, uint256 amount) internal { require(address(this).balance >= amount, "Address: insufficient balance"); (bool success, ) = recipient.call{value: amount}(""); require(success, "Address: unable to send value, recipient may have reverted"); } /** * @dev Performs a Solidity function call using a low level `call`. A * plain `call` is an unsafe replacement for a function call: use this * function instead. * * If `target` reverts with a revert reason, it is bubbled up by this * function (like regular Solidity function calls). * * Returns the raw returned data. To convert to the expected return value, * use https://solidity.readthedocs.io/en/latest/units-and-global-variables.html?highlight=abi.decode#abi-encoding-and-decoding-functions[`abi.decode`]. * * Requirements: * * - `target` must be a contract. * - calling `target` with `data` must not revert. * * _Available since v3.1._ */ function functionCall(address target, bytes memory data) internal returns (bytes memory) { return functionCallWithValue(target, data, 0, "Address: low-level call failed"); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], but with * `errorMessage` as a fallback revert reason when `target` reverts. * * _Available since v3.1._ */ function functionCall( address target, bytes memory data, string memory errorMessage ) internal returns (bytes memory) { return functionCallWithValue(target, data, 0, errorMessage); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], * but also transferring `value` wei to `target`. * * Requirements: * * - the calling contract must have an ETH balance of at least `value`. * - the called Solidity function must be `payable`. * * _Available since v3.1._ */ function functionCallWithValue( address target, bytes memory data, uint256 value ) internal returns (bytes memory) { return functionCallWithValue(target, data, value, "Address: low-level call with value failed"); } /** * @dev Same as {xref-Address-functionCallWithValue-address-bytes-uint256-}[`functionCallWithValue`], but * with `errorMessage` as a fallback revert reason when `target` reverts. * * _Available since v3.1._ */ function functionCallWithValue( address target, bytes memory data, uint256 value, string memory errorMessage ) internal returns (bytes memory) { require(address(this).balance >= value, "Address: insufficient balance for call"); (bool success, bytes memory returndata) = target.call{value: value}(data); return verifyCallResultFromTarget(target, success, returndata, errorMessage); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], * but performing a static call. * * _Available since v3.3._ */ function functionStaticCall(address target, bytes memory data) internal view returns (bytes memory) { return functionStaticCall(target, data, "Address: low-level static call failed"); } /** * @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`], * but performing a static call. * * _Available since v3.3._ */ function functionStaticCall( address target, bytes memory data, string memory errorMessage ) internal view returns (bytes memory) { (bool success, bytes memory returndata) = target.staticcall(data); return verifyCallResultFromTarget(target, success, returndata, errorMessage); } /** * @dev Tool to verify that a low level call to smart-contract was successful, and revert (either by bubbling * the revert reason or using the provided one) in case of unsuccessful call or if target was not a contract. * * _Available since v4.8._ */ function verifyCallResultFromTarget( address target, bool success, bytes memory returndata, string memory errorMessage ) internal view returns (bytes memory) { if (success) { if (returndata.length == 0) { // only check isContract if the call was successful and the return data is empty // otherwise we already know that it was a contract require(isContract(target), "Address: call to non-contract"); } return returndata; } else { _revert(returndata, errorMessage); } } /** * @dev Tool to verify that a low level call was successful, and revert if it wasn't, either by bubbling the * revert reason or using the provided one. * * _Available since v4.3._ */ function verifyCallResult( bool success, bytes memory returndata, string memory errorMessage ) internal pure returns (bytes memory) { if (success) { return returndata; } else { _revert(returndata, errorMessage); } } function _revert(bytes memory returndata, string memory errorMessage) 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(errorMessage); } } } // File @openzeppelin/contracts-upgradeable/proxy/utils/[email protected] // OpenZeppelin Contracts (last updated v4.8.0) (proxy/utils/Initializable.sol) pragma solidity ^0.8.2; /** * @dev This is a base contract to aid in writing upgradeable contracts, or any kind of contract that will be deployed * behind a proxy. Since proxied contracts do not make use of a constructor, it's common to move constructor logic to an * external initializer function, usually called `initialize`. It then becomes necessary to protect this initializer * function so it can only be called once. The {initializer} modifier provided by this contract will have this effect. * * The initialization functions use a version number. Once a version number is used, it is consumed and cannot be * reused. This mechanism prevents re-execution of each "step" but allows the creation of new initialization steps in * case an upgrade adds a module that needs to be initialized. * * For example: * * [.hljs-theme-light.nopadding] * ``` * contract MyToken is ERC20Upgradeable { * function initialize() initializer public { * __ERC20_init("MyToken", "MTK"); * } * } * contract MyTokenV2 is MyToken, ERC20PermitUpgradeable { * function initializeV2() reinitializer(2) public { * __ERC20Permit_init("MyToken"); * } * } * ``` * * TIP: To avoid leaving the proxy in an uninitialized state, the initializer function should be called as early as * possible by providing the encoded function call as the `_data` argument to {ERC1967Proxy-constructor}. * * CAUTION: When used with inheritance, manual care must be taken to not invoke a parent initializer twice, or to ensure * that all initializers are idempotent. This is not verified automatically as constructors are by Solidity. * * [CAUTION] * ==== * Avoid leaving a contract uninitialized. * * An uninitialized contract can be taken over by an attacker. This applies to both a proxy and its implementation * contract, which may impact the proxy. To prevent the implementation contract from being used, you should invoke * the {_disableInitializers} function in the constructor to automatically lock it when it is deployed: * * [.hljs-theme-light.nopadding] * ``` * /// @custom:oz-upgrades-unsafe-allow constructor * constructor() { * _disableInitializers(); * } * ``` * ==== */ abstract contract Initializable { /** * @dev Indicates that the contract has been initialized. * @custom:oz-retyped-from bool */ uint8 private _initialized; /** * @dev Indicates that the contract is in the process of being initialized. */ bool private _initializing; /** * @dev Triggered when the contract has been initialized or reinitialized. */ event Initialized(uint8 version); /** * @dev A modifier that defines a protected initializer function that can be invoked at most once. In its scope, * `onlyInitializing` functions can be used to initialize parent contracts. * * Similar to `reinitializer(1)`, except that functions marked with `initializer` can be nested in the context of a * constructor. * * Emits an {Initialized} event. */ modifier initializer() { bool isTopLevelCall = !_initializing; require( (isTopLevelCall && _initialized < 1) || (!AddressUpgradeable.isContract(address(this)) && _initialized == 1), "Initializable: contract is already initialized" ); _initialized = 1; if (isTopLevelCall) { _initializing = true; } _; if (isTopLevelCall) { _initializing = false; emit Initialized(1); } } /** * @dev A modifier that defines a protected reinitializer function that can be invoked at most once, and only if the * contract hasn't been initialized to a greater version before. In its scope, `onlyInitializing` functions can be * used to initialize parent contracts. * * A reinitializer may be used after the original initialization step. This is essential to configure modules that * are added through upgrades and that require initialization. * * When `version` is 1, this modifier is similar to `initializer`, except that functions marked with `reinitializer` * cannot be nested. If one is invoked in the context of another, execution will revert. * * Note that versions can jump in increments greater than 1; this implies that if multiple reinitializers coexist in * a contract, executing them in the right order is up to the developer or operator. * * WARNING: setting the version to 255 will prevent any future reinitialization. * * Emits an {Initialized} event. */ modifier reinitializer(uint8 version) { require(!_initializing && _initialized < version, "Initializable: contract is already initialized"); _initialized = version; _initializing = true; _; _initializing = false; emit Initialized(version); } /** * @dev Modifier to protect an initialization function so that it can only be invoked by functions with the * {initializer} and {reinitializer} modifiers, directly or indirectly. */ modifier onlyInitializing() { require(_initializing, "Initializable: contract is not initializing"); _; } /** * @dev Locks the contract, preventing any future reinitialization. This cannot be part of an initializer call. * Calling this in the constructor of a contract will prevent that contract from being initialized or reinitialized * to any version. It is recommended to use this to lock implementation contracts that are designed to be called * through proxies. * * Emits an {Initialized} event the first time it is successfully executed. */ function _disableInitializers() internal virtual { require(!_initializing, "Initializable: contract is initializing"); if (_initialized < type(uint8).max) { _initialized = type(uint8).max; emit Initialized(type(uint8).max); } } /** * @dev Internal function that returns the initialized version. Returns `_initialized` */ function _getInitializedVersion() internal view returns (uint8) { return _initialized; } /** * @dev Internal function that returns the initialized version. Returns `_initializing` */ function _isInitializing() internal view returns (bool) { return _initializing; } } // File @openzeppelin/contracts-upgradeable/utils/[email protected] // OpenZeppelin Contracts v4.4.1 (utils/Context.sol) pragma solidity ^0.8.0; /** * @dev Provides information about the current execution context, including the * sender of the transaction and its data. While these are generally available * via msg.sender and msg.data, they should not be accessed in such a direct * manner, since when dealing with meta-transactions the account sending and * paying for execution may not be the actual sender (as far as an application * is concerned). * * This contract is only required for intermediate, library-like contracts. */ abstract contract ContextUpgradeable is Initializable { function __Context_init() internal onlyInitializing { } function __Context_init_unchained() internal onlyInitializing { } function _msgSender() internal view virtual returns (address) { return msg.sender; } function _msgData() internal view virtual returns (bytes calldata) { return msg.data; } /** * @dev This empty reserved space is put in place to allow future versions to add new * variables without shifting down storage in the inheritance chain. * See https://docs.openzeppelin.com/contracts/4.x/upgradeable#storage_gaps */ uint256[50] private __gap; } // File @openzeppelin/contracts-upgradeable/access/[email protected] // OpenZeppelin Contracts (last updated v4.7.0) (access/Ownable.sol) pragma solidity ^0.8.0; /** * @dev Contract module which provides a basic access control mechanism, where * there is an account (an owner) that can be granted exclusive access to * specific functions. * * By default, the owner account will be the one that deploys the contract. This * can later be changed with {transferOwnership}. * * This module is used through inheritance. It will make available the modifier * `onlyOwner`, which can be applied to your functions to restrict their use to * the owner. */ abstract contract OwnableUpgradeable is Initializable, ContextUpgradeable { address private _owner; event OwnershipTransferred(address indexed previousOwner, address indexed newOwner); /** * @dev Initializes the contract setting the deployer as the initial owner. */ function __Ownable_init() internal onlyInitializing { __Ownable_init_unchained(); } function __Ownable_init_unchained() internal onlyInitializing { _transferOwnership(_msgSender()); } /** * @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 { require(owner() == _msgSender(), "Ownable: caller is not the owner"); } /** * @dev Leaves the contract without owner. It will not be possible to call * `onlyOwner` functions anymore. Can only be called by the current owner. * * NOTE: Renouncing ownership will leave the contract without an owner, * thereby removing any functionality that is only available to the owner. */ function renounceOwnership() public virtual onlyOwner { _transferOwnership(address(0)); } /** * @dev Transfers ownership of the contract to a new account (`newOwner`). * Can only be called by the current owner. */ function transferOwnership(address newOwner) public virtual onlyOwner { require(newOwner != address(0), "Ownable: new owner is the zero address"); _transferOwnership(newOwner); } /** * @dev Transfers ownership of the contract to a new account (`newOwner`). * Internal function without access restriction. */ function _transferOwnership(address newOwner) internal virtual { address oldOwner = _owner; _owner = newOwner; emit OwnershipTransferred(oldOwner, newOwner); } /** * @dev This empty reserved space is put in place to allow future versions to add new * variables without shifting down storage in the inheritance chain. * See https://docs.openzeppelin.com/contracts/4.x/upgradeable#storage_gaps */ uint256[49] private __gap; } // File @openzeppelin/contracts-upgradeable/utils/math/[email protected] // OpenZeppelin Contracts (last updated v4.8.0) (utils/math/Math.sol) pragma solidity ^0.8.0; /** * @dev Standard math utilities missing in the Solidity language. */ library MathUpgradeable { enum Rounding { Down, // Toward negative infinity Up, // Toward infinity Zero // Toward zero } /** * @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 up instead * of rounding down. */ function ceilDiv(uint256 a, uint256 b) internal pure returns (uint256) { // (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; // Least significant 256 bits of the product uint256 prod1; // Most significant 256 bits of the product assembly { let mm := mulmod(x, y, not(0)) prod0 := mul(x, y) prod1 := sub(sub(mm, prod0), lt(mm, prod0)) } // Handle non-overflow cases, 256 by 256 division. if (prod1 == 0) { return prod0 / denominator; } // Make sure the result is less than 2^256. Also prevents denominator == 0. require(denominator > prod1); /////////////////////////////////////////////// // 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. // Does not overflow because the denominator cannot be zero at this stage in the function. uint256 twos = denominator & (~denominator + 1); 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 (rounding == Rounding.Up && 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 down. * * 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 + (rounding == Rounding.Up && result * result < a ? 1 : 0); } } /** * @dev Return the log in base 2, rounded down, of a positive value. * 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 + (rounding == Rounding.Up && 1 << result < value ? 1 : 0); } } /** * @dev Return the log in base 10, rounded down, of a positive value. * 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 + (rounding == Rounding.Up && 10**result < value ? 1 : 0); } } /** * @dev Return the log in base 256, rounded down, of a positive value. * 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 10, 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 + (rounding == Rounding.Up && 1 << (result * 8) < value ? 1 : 0); } } } // File @openzeppelin/contracts-upgradeable/utils/structs/[email protected] // OpenZeppelin Contracts (last updated v4.8.0) (utils/structs/EnumerableSet.sol) // This file was procedurally generated from scripts/generate/templates/EnumerableSet.js. pragma solidity ^0.8.0; /** * @dev Library for managing * https://en.wikipedia.org/wiki/Set_(abstract_data_type)[sets] of primitive * types. * * Sets have the following properties: * * - Elements are added, removed, and checked for existence in constant time * (O(1)). * - Elements are enumerated in O(n). No guarantees are made on the ordering. * * ``` * contract Example { * // Add the library methods * using EnumerableSet for EnumerableSet.AddressSet; * * // Declare a set state variable * EnumerableSet.AddressSet private mySet; * } * ``` * * As of v3.3.0, sets of type `bytes32` (`Bytes32Set`), `address` (`AddressSet`) * and `uint256` (`UintSet`) are supported. * * [WARNING] * ==== * Trying to delete such a structure from storage will likely result in data corruption, rendering the structure * unusable. * See https://github.com/ethereum/solidity/pull/11843[ethereum/solidity#11843] for more info. * * In order to clean an EnumerableSet, you can either remove all elements one by one or create a fresh instance using an * array of EnumerableSet. * ==== */ library EnumerableSetUpgradeable { // To implement this library for multiple types with as little code // repetition as possible, we write it in terms of a generic Set type with // bytes32 values. // The Set implementation uses private functions, and user-facing // implementations (such as AddressSet) are just wrappers around the // underlying Set. // This means that we can only create new EnumerableSets for types that fit // in bytes32. struct Set { // Storage of set values bytes32[] _values; // Position of the value in the `values` array, plus 1 because index 0 // means a value is not in the set. mapping(bytes32 => uint256) _indexes; } /** * @dev Add a value to a set. O(1). * * Returns true if the value was added to the set, that is if it was not * already present. */ function _add(Set storage set, bytes32 value) private returns (bool) { if (!_contains(set, value)) { set._values.push(value); // The value is stored at length-1, but we add 1 to all indexes // and use 0 as a sentinel value set._indexes[value] = set._values.length; return true; } else { return false; } } /** * @dev Removes a value from a set. O(1). * * Returns true if the value was removed from the set, that is if it was * present. */ function _remove(Set storage set, bytes32 value) private returns (bool) { // We read and store the value's index to prevent multiple reads from the same storage slot uint256 valueIndex = set._indexes[value]; if (valueIndex != 0) { // Equivalent to contains(set, value) // To delete an element from the _values array in O(1), we swap the element to delete with the last one in // the array, and then remove the last element (sometimes called as 'swap and pop'). // This modifies the order of the array, as noted in {at}. uint256 toDeleteIndex = valueIndex - 1; uint256 lastIndex = set._values.length - 1; if (lastIndex != toDeleteIndex) { bytes32 lastValue = set._values[lastIndex]; // Move the last value to the index where the value to delete is set._values[toDeleteIndex] = lastValue; // Update the index for the moved value set._indexes[lastValue] = valueIndex; // Replace lastValue's index to valueIndex } // Delete the slot where the moved value was stored set._values.pop(); // Delete the index for the deleted slot delete set._indexes[value]; return true; } else { return false; } } /** * @dev Returns true if the value is in the set. O(1). */ function _contains(Set storage set, bytes32 value) private view returns (bool) { return set._indexes[value] != 0; } /** * @dev Returns the number of values on the set. O(1). */ function _length(Set storage set) private view returns (uint256) { return set._values.length; } /** * @dev Returns the value stored at position `index` in the set. O(1). * * Note that there are no guarantees on the ordering of values inside the * array, and it may change when more values are added or removed. * * Requirements: * * - `index` must be strictly less than {length}. */ function _at(Set storage set, uint256 index) private view returns (bytes32) { return set._values[index]; } /** * @dev Return the entire set in an array * * WARNING: This operation will copy the entire storage to memory, which can be quite expensive. This is designed * to mostly be used by view accessors that are queried without any gas fees. Developers should keep in mind that * this function has an unbounded cost, and using it as part of a state-changing function may render the function * uncallable if the set grows to a point where copying to memory consumes too much gas to fit in a block. */ function _values(Set storage set) private view returns (bytes32[] memory) { return set._values; } // Bytes32Set struct Bytes32Set { Set _inner; } /** * @dev Add a value to a set. O(1). * * Returns true if the value was added to the set, that is if it was not * already present. */ function add(Bytes32Set storage set, bytes32 value) internal returns (bool) { return _add(set._inner, value); } /** * @dev Removes a value from a set. O(1). * * Returns true if the value was removed from the set, that is if it was * present. */ function remove(Bytes32Set storage set, bytes32 value) internal returns (bool) { return _remove(set._inner, value); } /** * @dev Returns true if the value is in the set. O(1). */ function contains(Bytes32Set storage set, bytes32 value) internal view returns (bool) { return _contains(set._inner, value); } /** * @dev Returns the number of values in the set. O(1). */ function length(Bytes32Set storage set) internal view returns (uint256) { return _length(set._inner); } /** * @dev Returns the value stored at position `index` in the set. O(1). * * Note that there are no guarantees on the ordering of values inside the * array, and it may change when more values are added or removed. * * Requirements: * * - `index` must be strictly less than {length}. */ function at(Bytes32Set storage set, uint256 index) internal view returns (bytes32) { return _at(set._inner, index); } /** * @dev Return the entire set in an array * * WARNING: This operation will copy the entire storage to memory, which can be quite expensive. This is designed * to mostly be used by view accessors that are queried without any gas fees. Developers should keep in mind that * this function has an unbounded cost, and using it as part of a state-changing function may render the function * uncallable if the set grows to a point where copying to memory consumes too much gas to fit in a block. */ function values(Bytes32Set storage set) internal view returns (bytes32[] memory) { bytes32[] memory store = _values(set._inner); bytes32[] memory result; /// @solidity memory-safe-assembly assembly { result := store } return result; } // AddressSet struct AddressSet { Set _inner; } /** * @dev Add a value to a set. O(1). * * Returns true if the value was added to the set, that is if it was not * already present. */ function add(AddressSet storage set, address value) internal returns (bool) { return _add(set._inner, bytes32(uint256(uint160(value)))); } /** * @dev Removes a value from a set. O(1). * * Returns true if the value was removed from the set, that is if it was * present. */ function remove(AddressSet storage set, address value) internal returns (bool) { return _remove(set._inner, bytes32(uint256(uint160(value)))); } /** * @dev Returns true if the value is in the set. O(1). */ function contains(AddressSet storage set, address value) internal view returns (bool) { return _contains(set._inner, bytes32(uint256(uint160(value)))); } /** * @dev Returns the number of values in the set. O(1). */ function length(AddressSet storage set) internal view returns (uint256) { return _length(set._inner); } /** * @dev Returns the value stored at position `index` in the set. O(1). * * Note that there are no guarantees on the ordering of values inside the * array, and it may change when more values are added or removed. * * Requirements: * * - `index` must be strictly less than {length}. */ function at(AddressSet storage set, uint256 index) internal view returns (address) { return address(uint160(uint256(_at(set._inner, index)))); } /** * @dev Return the entire set in an array * * WARNING: This operation will copy the entire storage to memory, which can be quite expensive. This is designed * to mostly be used by view accessors that are queried without any gas fees. Developers should keep in mind that * this function has an unbounded cost, and using it as part of a state-changing function may render the function * uncallable if the set grows to a point where copying to memory consumes too much gas to fit in a block. */ function values(AddressSet storage set) internal view returns (address[] memory) { bytes32[] memory store = _values(set._inner); address[] memory result; /// @solidity memory-safe-assembly assembly { result := store } return result; } // UintSet struct UintSet { Set _inner; } /** * @dev Add a value to a set. O(1). * * Returns true if the value was added to the set, that is if it was not * already present. */ function add(UintSet storage set, uint256 value) internal returns (bool) { return _add(set._inner, bytes32(value)); } /** * @dev Removes a value from a set. O(1). * * Returns true if the value was removed from the set, that is if it was * present. */ function remove(UintSet storage set, uint256 value) internal returns (bool) { return _remove(set._inner, bytes32(value)); } /** * @dev Returns true if the value is in the set. O(1). */ function contains(UintSet storage set, uint256 value) internal view returns (bool) { return _contains(set._inner, bytes32(value)); } /** * @dev Returns the number of values in the set. O(1). */ function length(UintSet storage set) internal view returns (uint256) { return _length(set._inner); } /** * @dev Returns the value stored at position `index` in the set. O(1). * * Note that there are no guarantees on the ordering of values inside the * array, and it may change when more values are added or removed. * * Requirements: * * - `index` must be strictly less than {length}. */ function at(UintSet storage set, uint256 index) internal view returns (uint256) { return uint256(_at(set._inner, index)); } /** * @dev Return the entire set in an array * * WARNING: This operation will copy the entire storage to memory, which can be quite expensive. This is designed * to mostly be used by view accessors that are queried without any gas fees. Developers should keep in mind that * this function has an unbounded cost, and using it as part of a state-changing function may render the function * uncallable if the set grows to a point where copying to memory consumes too much gas to fit in a block. */ function values(UintSet storage set) internal view returns (uint256[] memory) { bytes32[] memory store = _values(set._inner); uint256[] memory result; /// @solidity memory-safe-assembly assembly { result := store } return result; } } // File @openzeppelin/contracts-upgradeable/utils/[email protected] // OpenZeppelin Contracts (last updated v4.8.0) (utils/Strings.sol) pragma solidity ^0.8.0; /** * @dev String operations. */ library StringsUpgradeable { bytes16 private constant _SYMBOLS = "0123456789abcdef"; uint8 private constant _ADDRESS_LENGTH = 20; /** * @dev Converts a `uint256` to its ASCII `string` decimal representation. */ function toString(uint256 value) internal pure returns (string memory) { unchecked { uint256 length = MathUpgradeable.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), _SYMBOLS)) } value /= 10; if (value == 0) break; } return buffer; } } /** * @dev Converts a `uint256` to its ASCII `string` hexadecimal representation. */ function toHexString(uint256 value) internal pure returns (string memory) { unchecked { return toHexString(value, MathUpgradeable.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) { 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] = _SYMBOLS[value & 0xf]; value >>= 4; } require(value == 0, "Strings: hex length insufficient"); 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); } } // File @openzeppelin/contracts/utils/cryptography/[email protected] // OpenZeppelin Contracts (last updated v4.7.0) (utils/cryptography/MerkleProof.sol) pragma solidity ^0.8.0; /** * @dev These functions deal with verification of Merkle Tree proofs. * * The proofs can be generated using the JavaScript library * https://github.com/miguelmota/merkletreejs[merkletreejs]. * Note: the hashing algorithm should be keccak256 and pair sorting should be enabled. * * See `test/utils/cryptography/MerkleProof.test.js` for some examples. * * WARNING: You should avoid using leaf values that are 64 bytes long prior to * hashing, or use a hash function other than keccak256 for hashing leaves. * This is because the concatenation of a sorted pair of internal nodes in * the merkle tree could be reinterpreted as a leaf value. */ library MerkleProof { /** * @dev Returns true if a `leaf` can be proved to be a part of a Merkle tree * defined by `root`. For this, a `proof` must be provided, containing * sibling hashes on the branch from the leaf to the root of the tree. Each * pair of leaves and each pair of pre-images are assumed to be sorted. */ function verify( bytes32[] memory proof, bytes32 root, bytes32 leaf ) internal pure returns (bool) { return processProof(proof, leaf) == root; } /** * @dev Calldata version of {verify} * * _Available since v4.7._ */ function verifyCalldata( bytes32[] calldata proof, bytes32 root, bytes32 leaf ) internal pure returns (bool) { return processProofCalldata(proof, leaf) == root; } /** * @dev Returns the rebuilt hash obtained by traversing a Merkle tree up * from `leaf` using `proof`. A `proof` is valid if and only if the rebuilt * hash matches the root of the tree. When processing the proof, the pairs * of leafs & pre-images are assumed to be sorted. * * _Available since v4.4._ */ function processProof(bytes32[] memory proof, bytes32 leaf) internal pure returns (bytes32) { bytes32 computedHash = leaf; for (uint256 i = 0; i < proof.length; i++) { computedHash = _hashPair(computedHash, proof[i]); } return computedHash; } /** * @dev Calldata version of {processProof} * * _Available since v4.7._ */ function processProofCalldata(bytes32[] calldata proof, bytes32 leaf) internal pure returns (bytes32) { bytes32 computedHash = leaf; for (uint256 i = 0; i < proof.length; i++) { computedHash = _hashPair(computedHash, proof[i]); } return computedHash; } /** * @dev Returns true if the `leaves` can be proved to be a part of a Merkle tree defined by * `root`, according to `proof` and `proofFlags` as described in {processMultiProof}. * * _Available since v4.7._ */ function multiProofVerify( bytes32[] memory proof, bool[] memory proofFlags, bytes32 root, bytes32[] memory leaves ) internal pure returns (bool) { return processMultiProof(proof, proofFlags, leaves) == root; } /** * @dev Calldata version of {multiProofVerify} * * _Available since v4.7._ */ function multiProofVerifyCalldata( bytes32[] calldata proof, bool[] calldata proofFlags, bytes32 root, bytes32[] memory leaves ) internal pure returns (bool) { return processMultiProofCalldata(proof, proofFlags, leaves) == root; } /** * @dev Returns the root of a tree reconstructed from `leaves` and the sibling nodes in `proof`, * consuming from one or the other at each step according to the instructions given by * `proofFlags`. * * _Available since v4.7._ */ function processMultiProof( bytes32[] memory proof, bool[] memory proofFlags, bytes32[] memory leaves ) internal pure returns (bytes32 merkleRoot) { // This function rebuild the root hash by traversing the tree up from the leaves. The root is rebuilt by // consuming and producing values on a queue. The queue starts with the `leaves` array, then goes onto the // `hashes` array. At the end of the process, the last hash in the `hashes` array should contain the root of // the merkle tree. uint256 leavesLen = leaves.length; uint256 totalHashes = proofFlags.length; // Check proof validity. require(leavesLen + proof.length - 1 == totalHashes, "MerkleProof: invalid multiproof"); // The xxxPos values are "pointers" to the next value to consume in each array. All accesses are done using // `xxx[xxxPos++]`, which return the current value and increment the pointer, thus mimicking a queue's "pop". bytes32[] memory hashes = new bytes32[](totalHashes); uint256 leafPos = 0; uint256 hashPos = 0; uint256 proofPos = 0; // At each step, we compute the next hash using two values: // - a value from the "main queue". If not all leaves have been consumed, we get the next leaf, otherwise we // get the next hash. // - depending on the flag, either another value for the "main queue" (merging branches) or an element from the // `proof` array. for (uint256 i = 0; i < totalHashes; i++) { bytes32 a = leafPos < leavesLen ? leaves[leafPos++] : hashes[hashPos++]; bytes32 b = proofFlags[i] ? leafPos < leavesLen ? leaves[leafPos++] : hashes[hashPos++] : proof[proofPos++]; hashes[i] = _hashPair(a, b); } if (totalHashes > 0) { return hashes[totalHashes - 1]; } else if (leavesLen > 0) { return leaves[0]; } else { return proof[0]; } } /** * @dev Calldata version of {processMultiProof} * * _Available since v4.7._ */ function processMultiProofCalldata( bytes32[] calldata proof, bool[] calldata proofFlags, bytes32[] memory leaves ) internal pure returns (bytes32 merkleRoot) { // This function rebuild the root hash by traversing the tree up from the leaves. The root is rebuilt by // consuming and producing values on a queue. The queue starts with the `leaves` array, then goes onto the // `hashes` array. At the end of the process, the last hash in the `hashes` array should contain the root of // the merkle tree. uint256 leavesLen = leaves.length; uint256 totalHashes = proofFlags.length; // Check proof validity. require(leavesLen + proof.length - 1 == totalHashes, "MerkleProof: invalid multiproof"); // The xxxPos values are "pointers" to the next value to consume in each array. All accesses are done using // `xxx[xxxPos++]`, which return the current value and increment the pointer, thus mimicking a queue's "pop". bytes32[] memory hashes = new bytes32[](totalHashes); uint256 leafPos = 0; uint256 hashPos = 0; uint256 proofPos = 0; // At each step, we compute the next hash using two values: // - a value from the "main queue". If not all leaves have been consumed, we get the next leaf, otherwise we // get the next hash. // - depending on the flag, either another value for the "main queue" (merging branches) or an element from the // `proof` array. for (uint256 i = 0; i < totalHashes; i++) { bytes32 a = leafPos < leavesLen ? leaves[leafPos++] : hashes[hashPos++]; bytes32 b = proofFlags[i] ? leafPos < leavesLen ? leaves[leafPos++] : hashes[hashPos++] : proof[proofPos++]; hashes[i] = _hashPair(a, b); } if (totalHashes > 0) { return hashes[totalHashes - 1]; } else if (leavesLen > 0) { return leaves[0]; } else { return proof[0]; } } function _hashPair(bytes32 a, bytes32 b) private pure returns (bytes32) { return a < b ? _efficientHash(a, b) : _efficientHash(b, a); } function _efficientHash(bytes32 a, bytes32 b) private pure returns (bytes32 value) { /// @solidity memory-safe-assembly assembly { mstore(0x00, a) mstore(0x20, b) value := keccak256(0x00, 0x40) } } } // File @openzeppelin/contracts/utils/introspection/[email protected] // OpenZeppelin Contracts v4.4.1 (utils/introspection/IERC165.sol) pragma solidity ^0.8.0; /** * @dev Interface of the ERC165 standard, as defined in the * https://eips.ethereum.org/EIPS/eip-165[EIP]. * * Implementers can declare support of contract interfaces, which can then be * queried by others ({ERC165Checker}). * * For an implementation, see {ERC165}. */ interface IERC165 { /** * @dev Returns true if this contract implements the interface defined by * `interfaceId`. See the corresponding * https://eips.ethereum.org/EIPS/eip-165#how-interfaces-are-identified[EIP section] * to learn more about how these ids are created. * * This function call must use less than 30 000 gas. */ function supportsInterface(bytes4 interfaceId) external view returns (bool); } // File @openzeppelin/contracts/interfaces/[email protected] // OpenZeppelin Contracts (last updated v4.6.0) (interfaces/IERC2981.sol) pragma solidity ^0.8.0; /** * @dev Interface for the NFT Royalty Standard. * * A standardized way to retrieve royalty payment information for non-fungible tokens (NFTs) to enable universal * support for royalty payments across all NFT marketplaces and ecosystem participants. * * _Available since v4.5._ */ interface IERC2981 is IERC165 { /** * @dev Returns how much royalty is owed and to whom, based on a sale price that may be denominated in any unit of * exchange. The royalty amount is denominated and should be paid in that same unit of exchange. */ function royaltyInfo(uint256 tokenId, uint256 salePrice) external view returns (address receiver, uint256 royaltyAmount); } // File @openzeppelin/contracts/token/ERC721/[email protected] // OpenZeppelin Contracts (last updated v4.7.0) (token/ERC721/IERC721.sol) pragma solidity ^0.8.0; /** * @dev Required interface of an ERC721 compliant contract. */ interface IERC721 is IERC165 { /** * @dev Emitted when `tokenId` token is transferred from `from` to `to`. */ event Transfer(address indexed from, address indexed to, uint256 indexed tokenId); /** * @dev Emitted when `owner` enables `approved` to manage the `tokenId` token. */ event Approval(address indexed owner, address indexed approved, uint256 indexed tokenId); /** * @dev Emitted when `owner` enables or disables (`approved`) `operator` to manage all of its assets. */ event ApprovalForAll(address indexed owner, address indexed operator, bool approved); /** * @dev Returns the number of tokens in ``owner``'s account. */ function balanceOf(address owner) external view returns (uint256 balance); /** * @dev Returns the owner of the `tokenId` token. * * Requirements: * * - `tokenId` must exist. */ function ownerOf(uint256 tokenId) external view returns (address owner); /** * @dev Safely transfers `tokenId` token from `from` to `to`. * * Requirements: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `tokenId` token must exist and be owned by `from`. * - If the caller is not `from`, it must be approved to move this token by either {approve} or {setApprovalForAll}. * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer. * * Emits a {Transfer} event. */ function safeTransferFrom( address from, address to, uint256 tokenId, bytes calldata data ) external; /** * @dev Safely transfers `tokenId` token from `from` to `to`, checking first that contract recipients * are aware of the ERC721 protocol to prevent tokens from being forever locked. * * Requirements: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `tokenId` token must exist and be owned by `from`. * - If the caller is not `from`, it must have been allowed to move this token by either {approve} or {setApprovalForAll}. * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer. * * Emits a {Transfer} event. */ function safeTransferFrom( address from, address to, uint256 tokenId ) external; /** * @dev Transfers `tokenId` token from `from` to `to`. * * WARNING: Usage of this method is discouraged, use {safeTransferFrom} whenever possible. * * Requirements: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `tokenId` token must be owned by `from`. * - If the caller is not `from`, it must be approved to move this token by either {approve} or {setApprovalForAll}. * * Emits a {Transfer} event. */ function transferFrom( address from, address to, uint256 tokenId ) external; /** * @dev Gives permission to `to` to transfer `tokenId` token to another account. * The approval is cleared when the token is transferred. * * Only a single account can be approved at a time, so approving the zero address clears previous approvals. * * Requirements: * * - The caller must own the token or be an approved operator. * - `tokenId` must exist. * * Emits an {Approval} event. */ function approve(address to, uint256 tokenId) external; /** * @dev 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); } // File @openzeppelin/contracts-upgradeable/utils/introspection/[email protected] // OpenZeppelin Contracts v4.4.1 (utils/introspection/IERC165.sol) pragma solidity ^0.8.0; /** * @dev Interface of the ERC165 standard, as defined in the * https://eips.ethereum.org/EIPS/eip-165[EIP]. * * Implementers can declare support of contract interfaces, which can then be * queried by others ({ERC165Checker}). * * For an implementation, see {ERC165}. */ interface IERC165Upgradeable { /** * @dev Returns true if this contract implements the interface defined by * `interfaceId`. See the corresponding * https://eips.ethereum.org/EIPS/eip-165#how-interfaces-are-identified[EIP section] * to learn more about how these ids are created. * * This function call must use less than 30 000 gas. */ function supportsInterface(bytes4 interfaceId) external view returns (bool); } // File @openzeppelin/contracts-upgradeable/token/ERC721/[email protected] // OpenZeppelin Contracts (last updated v4.8.0) (token/ERC721/IERC721.sol) pragma solidity ^0.8.0; /** * @dev Required interface of an ERC721 compliant contract. */ interface IERC721Upgradeable is IERC165Upgradeable { /** * @dev Emitted when `tokenId` token is transferred from `from` to `to`. */ event Transfer(address indexed from, address indexed to, uint256 indexed tokenId); /** * @dev Emitted when `owner` enables `approved` to manage the `tokenId` token. */ event Approval(address indexed owner, address indexed approved, uint256 indexed tokenId); /** * @dev Emitted when `owner` enables or disables (`approved`) `operator` to manage all of its assets. */ event ApprovalForAll(address indexed owner, address indexed operator, bool approved); /** * @dev Returns the number of tokens in ``owner``'s account. */ function balanceOf(address owner) external view returns (uint256 balance); /** * @dev Returns the owner of the `tokenId` token. * * Requirements: * * - `tokenId` must exist. */ function ownerOf(uint256 tokenId) external view returns (address owner); /** * @dev Safely transfers `tokenId` token from `from` to `to`. * * Requirements: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `tokenId` token must exist and be owned by `from`. * - If the caller is not `from`, it must be approved to move this token by either {approve} or {setApprovalForAll}. * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer. * * Emits a {Transfer} event. */ function safeTransferFrom( address from, address to, uint256 tokenId, bytes calldata data ) external; /** * @dev Safely transfers `tokenId` token from `from` to `to`, checking first that contract recipients * are aware of the ERC721 protocol to prevent tokens from being forever locked. * * Requirements: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `tokenId` token must exist and be owned by `from`. * - If the caller is not `from`, it must have been allowed to move this token by either {approve} or {setApprovalForAll}. * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer. * * Emits a {Transfer} event. */ function safeTransferFrom( address from, address to, uint256 tokenId ) external; /** * @dev Transfers `tokenId` token from `from` to `to`. * * WARNING: Note that the caller is responsible to confirm that the recipient is capable of receiving ERC721 * or else they may be permanently lost. Usage of {safeTransferFrom} prevents loss, though the caller must * understand this adds an external call which potentially creates a reentrancy vulnerability. * * Requirements: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `tokenId` token must be owned by `from`. * - If the caller is not `from`, it must be approved to move this token by either {approve} or {setApprovalForAll}. * * Emits a {Transfer} event. */ function transferFrom( address from, address to, uint256 tokenId ) external; /** * @dev Gives permission to `to` to transfer `tokenId` token to another account. * The approval is cleared when the token is transferred. * * Only a single account can be approved at a time, so approving the zero address clears previous approvals. * * Requirements: * * - The caller must own the token or be an approved operator. * - `tokenId` must exist. * * Emits an {Approval} event. */ function approve(address to, uint256 tokenId) external; /** * @dev Approve or remove `operator` as an operator for the caller. * Operators can call {transferFrom} or {safeTransferFrom} for any token owned by the caller. * * Requirements: * * - The `operator` cannot be the 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); } // File @openzeppelin/contracts-upgradeable/token/ERC721/extensions/[email protected] // OpenZeppelin Contracts v4.4.1 (token/ERC721/extensions/IERC721Metadata.sol) pragma solidity ^0.8.0; /** * @title ERC-721 Non-Fungible Token Standard, optional metadata extension * @dev See https://eips.ethereum.org/EIPS/eip-721 */ interface IERC721MetadataUpgradeable is IERC721Upgradeable { /** * @dev Returns the token collection name. */ function name() external view returns (string memory); /** * @dev Returns the token collection symbol. */ function symbol() external view returns (string memory); /** * @dev Returns the Uniform Resource Identifier (URI) for `tokenId` token. */ function tokenURI(uint256 tokenId) external view returns (string memory); } // File contracts/utils/IERC721AUpgradeable.sol // ERC721A Contracts v3.3.0 // Creator: Chiru Labs pragma solidity ^0.8.4; /** * @dev Interface of an ERC721A compliant contract. */ interface IERC721AUpgradeable is IERC721Upgradeable, IERC721MetadataUpgradeable { /** * The caller must own the token or be an approved operator. */ error ApprovalCallerNotOwnerNorApproved(); /** * The token does not exist. */ error ApprovalQueryForNonexistentToken(); /** * The caller cannot approve to their own address. */ error ApproveToCaller(); /** * The caller cannot approve to the current owner. */ error ApprovalToCurrentOwner(); /** * 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(); // Compiler will pack this into a single 256bit word. struct TokenOwnership { // The address of the owner. address addr; // Keeps track of the start time of ownership with minimal overhead for tokenomics. uint64 startTimestamp; // Whether the token has been burned. bool burned; } // Compiler will pack this into a single 256bit word. struct AddressData { // Realistically, 2**64-1 is more than enough. uint64 balance; // Keeps track of mint count with minimal overhead for tokenomics. uint64 numberMinted; // Keeps track of burn count with minimal overhead for tokenomics. uint64 numberBurned; // For miscellaneous variable(s) pertaining to the address // (e.g. number of whitelist mint slots used). // If there are multiple variables, please pack them into a uint64. uint64 aux; } /** * @dev Returns the total amount of tokens stored by the contract. * * Burned tokens are calculated here, use `_totalMinted()` if you want to count just minted tokens. */ function totalSupply() external view returns (uint256); } // File @openzeppelin/contracts-upgradeable/token/ERC721/[email protected] // OpenZeppelin Contracts (last updated v4.6.0) (token/ERC721/IERC721Receiver.sol) pragma solidity ^0.8.0; /** * @title ERC721 token receiver interface * @dev Interface for any contract that wants to support safeTransfers * from ERC721 asset contracts. */ interface IERC721ReceiverUpgradeable { /** * @dev Whenever an {IERC721} `tokenId` token is transferred to this contract via {IERC721-safeTransferFrom} * by `operator` from `from`, this function is called. * * It must return its Solidity selector to confirm the token transfer. * If any other value is returned or the interface is not implemented by the recipient, the transfer will be reverted. * * The selector can be obtained in Solidity with `IERC721Receiver.onERC721Received.selector`. */ function onERC721Received( address operator, address from, uint256 tokenId, bytes calldata data ) external returns (bytes4); } // File @openzeppelin/contracts-upgradeable/utils/introspection/[email protected] // OpenZeppelin Contracts v4.4.1 (utils/introspection/ERC165.sol) pragma solidity ^0.8.0; /** * @dev Implementation of the {IERC165} interface. * * Contracts that want to implement ERC165 should inherit from this contract and override {supportsInterface} to check * for the additional interface id that will be supported. For example: * * ```solidity * function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) { * return interfaceId == type(MyInterface).interfaceId || super.supportsInterface(interfaceId); * } * ``` * * Alternatively, {ERC165Storage} provides an easier to use but more expensive implementation. */ abstract contract ERC165Upgradeable is Initializable, IERC165Upgradeable { function __ERC165_init() internal onlyInitializing { } function __ERC165_init_unchained() internal onlyInitializing { } /** * @dev See {IERC165-supportsInterface}. */ function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) { return interfaceId == type(IERC165Upgradeable).interfaceId; } /** * @dev This empty reserved space is put in place to allow future versions to add new * variables without shifting down storage in the inheritance chain. * See https://docs.openzeppelin.com/contracts/4.x/upgradeable#storage_gaps */ uint256[50] private __gap; } // File contracts/utils/ERC721AUpgradeable.sol // ERC721A Contracts v3.3.0 // Creator: Chiru Labs pragma solidity ^0.8.4; /** * @dev Implementation of https://eips.ethereum.org/EIPS/eip-721[ERC721] Non-Fungible Token Standard, including * the Metadata extension. Built to optimize for lower gas during batch mints. * * Assumes serials are sequentially minted starting at _startTokenId() (defaults to 0, e.g. 0, 1, 2, 3..). * * Assumes that an owner cannot have more than 2**64 - 1 (max value of uint64) of supply. * * Assumes that the maximum token id cannot exceed 2**256 - 1 (max value of uint256). */ contract ERC721AUpgradeable is Initializable, ContextUpgradeable, ERC165Upgradeable, IERC721AUpgradeable { using AddressUpgradeable for address; using StringsUpgradeable for uint256; // The tokenId of the next token to be minted. uint256 internal _currentIndex; // The number of tokens burned. uint256 internal _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 _ownershipOf implementation for details. mapping(uint256 => TokenOwnership) internal _ownerships; // Mapping owner address to address data mapping(address => AddressData) private _addressData; // Mapping from token ID to approved address mapping(uint256 => address) private _tokenApprovals; // Mapping from owner to operator approvals mapping(address => mapping(address => bool)) private _operatorApprovals; function __ERC721A_init(string memory name_, string memory symbol_) internal onlyInitializing { __ERC721A_init_unchained(name_, symbol_); } function __ERC721A_init_unchained(string memory name_, string memory symbol_) internal onlyInitializing { _name = name_; _symbol = symbol_; _currentIndex = _startTokenId(); } /** * To change the starting tokenId, please override this function. */ function _startTokenId() internal view virtual returns (uint256) { return 0; } /** * @dev Burned tokens are calculated here, use _totalMinted() if you want to count just minted tokens. */ function totalSupply() public view virtual override returns (uint256) { // Counter underflow is impossible as _burnCounter cannot be incremented // more than _currentIndex - _startTokenId() times unchecked { return _currentIndex - _burnCounter - _startTokenId(); } } /** * Returns the total amount of tokens minted in the contract. */ function _totalMinted() internal view returns (uint256) { // Counter underflow is impossible as _currentIndex does not decrement, // and it is initialized to _startTokenId() unchecked { return _currentIndex - _startTokenId(); } } /** * @dev See {IERC165-supportsInterface}. */ function supportsInterface(bytes4 interfaceId) public view virtual override(ERC165Upgradeable, IERC165Upgradeable) returns (bool) { return interfaceId == type(IERC721Upgradeable).interfaceId || interfaceId == type(IERC721MetadataUpgradeable).interfaceId || super.supportsInterface(interfaceId); } /** * @dev See {IERC721-balanceOf}. */ function balanceOf(address owner) public view override returns (uint256) { if (owner == address(0)) revert BalanceQueryForZeroAddress(); return uint256(_addressData[owner].balance); } /** * Returns the number of tokens minted by `owner`. */ function _numberMinted(address owner) internal view returns (uint256) { return uint256(_addressData[owner].numberMinted); } /** * Returns the number of tokens burned by or on behalf of `owner`. */ function _numberBurned(address owner) internal view returns (uint256) { return uint256(_addressData[owner].numberBurned); } /** * Returns the auxillary data for `owner`. (e.g. number of whitelist mint slots used). */ function _getAux(address owner) internal view returns (uint64) { return _addressData[owner].aux; } /** * Sets the auxillary 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 { _addressData[owner].aux = aux; } /** * Gas spent here starts off proportional to the maximum mint batch size. * It gradually moves to O(1) as tokens get transferred around in the collection over time. */ function _ownershipOf(uint256 tokenId) internal view returns (TokenOwnership memory) { uint256 curr = tokenId; unchecked { if (_startTokenId() <= curr) if (curr < _currentIndex) { TokenOwnership memory ownership = _ownerships[curr]; if (!ownership.burned) { if (ownership.addr != address(0)) { return ownership; } // Invariant: // There will always be an ownership that has an address and is not burned // before an ownership that does not have an address and is not burned. // Hence, curr will not underflow. while (true) { curr--; ownership = _ownerships[curr]; if (ownership.addr != address(0)) { return ownership; } } } } } revert OwnerQueryForNonexistentToken(); } /** * @dev See {IERC721-ownerOf}. */ function ownerOf(uint256 tokenId) public view override returns (address) { return _ownershipOf(tokenId).addr; } /** * @dev See {IERC721Metadata-name}. */ function name() public view virtual override returns (string memory) { return _name; } /** * @dev See {IERC721Metadata-symbol}. */ function symbol() public view virtual override returns (string memory) { return _symbol; } /** * @dev See {IERC721Metadata-tokenURI}. */ function tokenURI(uint256 tokenId) public view virtual override returns (string memory) { if (!_exists(tokenId)) revert URIQueryForNonexistentToken(); string memory baseURI = _baseURI(); return bytes(baseURI).length != 0 ? string(abi.encodePacked(baseURI, tokenId.toString())) : ''; } /** * @dev Base URI for computing {tokenURI}. If set, the resulting URI for each * token will be the concatenation of the `baseURI` and the `tokenId`. Empty * by default, can be overriden in child contracts. */ function _baseURI() internal view virtual returns (string memory) { return ''; } /** * @dev See {IERC721-approve}. */ function approve(address to, uint256 tokenId) public override { address owner = ERC721AUpgradeable.ownerOf(tokenId); if (to == owner) revert ApprovalToCurrentOwner(); if (_msgSender() != owner) if(!isApprovedForAll(owner, _msgSender())) { revert ApprovalCallerNotOwnerNorApproved(); } _approve(to, tokenId, owner); } /** * @dev See {IERC721-getApproved}. */ function getApproved(uint256 tokenId) public view override returns (address) { if (!_exists(tokenId)) revert ApprovalQueryForNonexistentToken(); return _tokenApprovals[tokenId]; } /** * @dev See {IERC721-setApprovalForAll}. */ function setApprovalForAll(address operator, bool approved) public virtual override { if (operator == _msgSender()) revert ApproveToCaller(); _operatorApprovals[_msgSender()][operator] = approved; emit ApprovalForAll(_msgSender(), operator, approved); } /** * @dev See {IERC721-isApprovedForAll}. */ function isApprovedForAll(address owner, address operator) public view virtual override returns (bool) { return _operatorApprovals[owner][operator]; } /** * @dev See {IERC721-transferFrom}. */ function transferFrom( address from, address to, uint256 tokenId ) public virtual override { _transfer(from, to, tokenId); } /** * @dev See {IERC721-safeTransferFrom}. */ function safeTransferFrom( address from, address to, uint256 tokenId ) public virtual override { safeTransferFrom(from, to, tokenId, ''); } /** * @dev See {IERC721-safeTransferFrom}. */ function safeTransferFrom( address from, address to, uint256 tokenId, bytes memory _data ) public virtual override { _transfer(from, to, tokenId); if (to.isContract()) if(!_checkContractOnERC721Received(from, to, tokenId, _data)) { revert TransferToNonERC721ReceiverImplementer(); } } /** * @dev Returns whether `tokenId` exists. * * Tokens can be managed by their owner or approved accounts via {approve} or {setApprovalForAll}. * * Tokens start existing when they are minted (`_mint`), */ function _exists(uint256 tokenId) internal view returns (bool) { return _startTokenId() <= tokenId && tokenId < _currentIndex && !_ownerships[tokenId].burned; } /** * @dev Equivalent to `_safeMint(to, quantity, '')`. */ function _safeMint(address to, uint256 quantity) internal { _safeMint(to, 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. * * Emits a {Transfer} event. */ function _safeMint( address to, uint256 quantity, bytes memory _data ) internal { uint256 startTokenId = _currentIndex; if (to == address(0)) revert MintToZeroAddress(); if (quantity == 0) revert MintZeroQuantity(); _beforeTokenTransfers(address(0), to, startTokenId, quantity); // Overflows are incredibly unrealistic. // balance or numberMinted overflow if current value of either + quantity > 1.8e19 (2**64) - 1 // updatedIndex overflows if _currentIndex + quantity > 1.2e77 (2**256) - 1 unchecked { _addressData[to].balance += uint64(quantity); _addressData[to].numberMinted += uint64(quantity); _ownerships[startTokenId].addr = to; _ownerships[startTokenId].startTimestamp = uint64(block.timestamp); uint256 updatedIndex = startTokenId; uint256 end = updatedIndex + quantity; if (to.isContract()) { do { emit Transfer(address(0), to, updatedIndex); if (!_checkContractOnERC721Received(address(0), to, updatedIndex++, _data)) { revert TransferToNonERC721ReceiverImplementer(); } } while (updatedIndex < end); // Reentrancy protection if (_currentIndex != startTokenId) revert(); } else { do { emit Transfer(address(0), to, updatedIndex++); } while (updatedIndex < end); } _currentIndex = updatedIndex; } _afterTokenTransfers(address(0), to, startTokenId, quantity); } /** * @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. */ function _mint(address to, uint256 quantity) internal { uint256 startTokenId = _currentIndex; if (to == address(0)) revert MintToZeroAddress(); if (quantity == 0) revert MintZeroQuantity(); _beforeTokenTransfers(address(0), to, startTokenId, quantity); // Overflows are incredibly unrealistic. // balance or numberMinted overflow if current value of either + quantity > 1.8e19 (2**64) - 1 // updatedIndex overflows if _currentIndex + quantity > 1.2e77 (2**256) - 1 unchecked { _addressData[to].balance += uint64(quantity); _addressData[to].numberMinted += uint64(quantity); _ownerships[startTokenId].addr = to; _ownerships[startTokenId].startTimestamp = uint64(block.timestamp); uint256 updatedIndex = startTokenId; uint256 end = updatedIndex + quantity; do { emit Transfer(address(0), to, updatedIndex++); } while (updatedIndex < end); _currentIndex = updatedIndex; } _afterTokenTransfers(address(0), to, startTokenId, quantity); } /** * @dev Transfers `tokenId` from `from` to `to`. * * Requirements: * * - `to` cannot be the zero address. * - `tokenId` token must be owned by `from`. * * Emits a {Transfer} event. */ function _transfer( address from, address to, uint256 tokenId ) private { TokenOwnership memory prevOwnership = _ownershipOf(tokenId); if (prevOwnership.addr != from) revert TransferFromIncorrectOwner(); bool isApprovedOrOwner = (_msgSender() == from || isApprovedForAll(from, _msgSender()) || getApproved(tokenId) == _msgSender()); if (!isApprovedOrOwner) revert TransferCallerNotOwnerNorApproved(); if (to == address(0)) revert TransferToZeroAddress(); _beforeTokenTransfers(from, to, tokenId, 1); // Clear approvals from the previous owner _approve(address(0), tokenId, from); // 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 { _addressData[from].balance -= 1; _addressData[to].balance += 1; TokenOwnership storage currSlot = _ownerships[tokenId]; currSlot.addr = to; currSlot.startTimestamp = uint64(block.timestamp); // If the ownership slot of tokenId+1 is not explicitly set, that means the transfer initiator owns it. // Set the slot of tokenId+1 explicitly in storage to maintain correctness for ownerOf(tokenId+1) calls. uint256 nextTokenId = tokenId + 1; TokenOwnership storage nextSlot = _ownerships[nextTokenId]; if (nextSlot.addr == address(0)) { // This will suffice for checking _exists(nextTokenId), // as a burned slot cannot contain the zero address. if (nextTokenId != _currentIndex) { nextSlot.addr = from; nextSlot.startTimestamp = prevOwnership.startTimestamp; } } } emit Transfer(from, to, tokenId); _afterTokenTransfers(from, to, tokenId, 1); } /** * @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 { TokenOwnership memory prevOwnership = _ownershipOf(tokenId); address from = prevOwnership.addr; if (approvalCheck) { bool isApprovedOrOwner = (_msgSender() == from || isApprovedForAll(from, _msgSender()) || getApproved(tokenId) == _msgSender()); if (!isApprovedOrOwner) revert TransferCallerNotOwnerNorApproved(); } _beforeTokenTransfers(from, address(0), tokenId, 1); // Clear approvals from the previous owner _approve(address(0), tokenId, from); // 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 { AddressData storage addressData = _addressData[from]; addressData.balance -= 1; addressData.numberBurned += 1; // Keep track of who burned the token, and the timestamp of burning. TokenOwnership storage currSlot = _ownerships[tokenId]; currSlot.addr = from; currSlot.startTimestamp = uint64(block.timestamp); currSlot.burned = true; // If the ownership slot of tokenId+1 is not explicitly set, that means the burn initiator owns it. // Set the slot of tokenId+1 explicitly in storage to maintain correctness for ownerOf(tokenId+1) calls. uint256 nextTokenId = tokenId + 1; TokenOwnership storage nextSlot = _ownerships[nextTokenId]; if (nextSlot.addr == address(0)) { // This will suffice for checking _exists(nextTokenId), // as a burned slot cannot contain the zero address. if (nextTokenId != _currentIndex) { nextSlot.addr = from; nextSlot.startTimestamp = prevOwnership.startTimestamp; } } } emit Transfer(from, address(0), tokenId); _afterTokenTransfers(from, address(0), tokenId, 1); // Overflow not possible, as _burnCounter cannot be exceed _currentIndex times. unchecked { _burnCounter++; } } /** * @dev Approve `to` to operate on `tokenId` * * Emits a {Approval} event. */ function _approve( address to, uint256 tokenId, address owner ) private { _tokenApprovals[tokenId] = to; emit Approval(owner, to, tokenId); } /** * @dev Internal function to invoke {IERC721Receiver-onERC721Received} on a target contract. * * @param from address representing the previous owner of the given token ID * @param to target address that will receive the tokens * @param tokenId uint256 ID of the token to be transferred * @param _data bytes optional data to send along with the call * @return bool whether the call correctly returned the expected magic value */ function _checkContractOnERC721Received( address from, address to, uint256 tokenId, bytes memory _data ) private returns (bool) { try IERC721ReceiverUpgradeable(to).onERC721Received(_msgSender(), from, tokenId, _data) returns (bytes4 retval) { return retval == IERC721ReceiverUpgradeable(to).onERC721Received.selector; } catch (bytes memory reason) { if (reason.length == 0) { revert TransferToNonERC721ReceiverImplementer(); } else { assembly { revert(add(32, reason), mload(reason)) } } } } /** * @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 This empty reserved space is put in place to allow future versions to add new * variables without shifting down storage in the inheritance chain. * See https://docs.openzeppelin.com/contracts/4.x/upgradeable#storage_gaps */ uint256[42] private __gap; } // File contracts/utils/IERC721ABurnableUpgradeable.sol // ERC721A Contracts v3.3.0 // Creator: Chiru Labs pragma solidity ^0.8.4; /** * @dev Interface of an ERC721ABurnable compliant contract. */ interface IERC721ABurnableUpgradeable is IERC721AUpgradeable { /** * @dev Burns `tokenId`. See {ERC721A-_burn}. * * Requirements: * * - The caller must own `tokenId` or be an approved operator. */ function burn(uint256 tokenId) external; } // File contracts/utils/ERC721ABurnableUpgradeable.sol // ERC721A Contracts v3.3.0 // Creator: Chiru Labs pragma solidity ^0.8.4; /** * @title ERC721A Burnable Token * @dev ERC721A Token that can be irreversibly burned (destroyed). */ abstract contract ERC721ABurnableUpgradeable is Initializable, ERC721AUpgradeable, IERC721ABurnableUpgradeable { function __ERC721ABurnable_init() internal onlyInitializing { } function __ERC721ABurnable_init_unchained() internal onlyInitializing { } /** * @dev Burns `tokenId`. See {ERC721A-_burn}. * * Requirements: * * - The caller must own `tokenId` or be an approved operator. */ function burn(uint256 tokenId) public virtual override { _burn(tokenId, true); } /** * @dev This empty reserved space is put in place to allow future versions to add new * variables without shifting down storage in the inheritance chain. * See https://docs.openzeppelin.com/contracts/4.x/upgradeable#storage_gaps */ uint256[50] private __gap; } // File contracts/utils/IERC721AQueryableUpgradeable.sol // ERC721A Contracts v3.3.0 // Creator: Chiru Labs pragma solidity ^0.8.4; /** * @dev Interface of an ERC721AQueryable compliant contract. */ interface IERC721AQueryableUpgradeable is IERC721AUpgradeable { /** * Invalid query range (`start` >= `stop`). */ error InvalidQueryRange(); /** * @dev Returns the `TokenOwnership` struct at `tokenId` without reverting. * * If the `tokenId` is out of bounds: * - `addr` = `address(0)` * - `startTimestamp` = `0` * - `burned` = `false` * * If the `tokenId` is burned: * - `addr` = `<Address of owner before token was burned>` * - `startTimestamp` = `<Timestamp when token was burned>` * - `burned = `true` * * Otherwise: * - `addr` = `<Address of owner>` * - `startTimestamp` = `<Timestamp of start of ownership>` * - `burned = `false` */ function explicitOwnershipOf(uint256 tokenId) external view returns (TokenOwnership memory); /** * @dev Returns an array of `TokenOwnership` structs at `tokenIds` in order. * See {ERC721AQueryable-explicitOwnershipOf} */ function explicitOwnershipsOf(uint256[] memory tokenIds) external view returns (TokenOwnership[] memory); /** * @dev Returns an array of token IDs owned by `owner`, * in the range [`start`, `stop`) * (i.e. `start <= tokenId < stop`). * * This function allows for tokens to be queried if the collection * grows too big for a single call of {ERC721AQueryable-tokensOfOwner}. * * Requirements: * * - `start` < `stop` */ function tokensOfOwnerIn( address owner, uint256 start, uint256 stop ) external view returns (uint256[] memory); /** * @dev Returns an array of token IDs owned by `owner`. * * This function scans the ownership mapping and is O(totalSupply) in complexity. * It is meant to be called off-chain. * * See {ERC721AQueryable-tokensOfOwnerIn} for splitting the scan into * multiple smaller scans if the collection is large enough to cause * an out-of-gas error (10K pfp collections should be fine). */ function tokensOfOwner(address owner) external view returns (uint256[] memory); } // File contracts/utils/ERC721AQueryableUpgradeable.sol // ERC721A Contracts v3.3.0 // Creator: Chiru Labs pragma solidity ^0.8.4; /** * @title ERC721A Queryable * @dev ERC721A subclass with convenience query functions. */ abstract contract ERC721AQueryableUpgradeable is Initializable, ERC721AUpgradeable, IERC721AQueryableUpgradeable { function __ERC721AQueryable_init() internal onlyInitializing { } function __ERC721AQueryable_init_unchained() internal onlyInitializing { } /** * @dev Returns the `TokenOwnership` struct at `tokenId` without reverting. * * If the `tokenId` is out of bounds: * - `addr` = `address(0)` * - `startTimestamp` = `0` * - `burned` = `false` * * If the `tokenId` is burned: * - `addr` = `<Address of owner before token was burned>` * - `startTimestamp` = `<Timestamp when token was burned>` * - `burned = `true` * * Otherwise: * - `addr` = `<Address of owner>` * - `startTimestamp` = `<Timestamp of start of ownership>` * - `burned = `false` */ function explicitOwnershipOf(uint256 tokenId) public view override returns (TokenOwnership memory) { TokenOwnership memory ownership; if (tokenId < _startTokenId() || tokenId >= _currentIndex) { return ownership; } ownership = _ownerships[tokenId]; if (ownership.burned) { return ownership; } return _ownershipOf(tokenId); } /** * @dev Returns an array of `TokenOwnership` structs at `tokenIds` in order. * See {ERC721AQueryable-explicitOwnershipOf} */ function explicitOwnershipsOf(uint256[] memory tokenIds) external view override returns (TokenOwnership[] memory) { unchecked { uint256 tokenIdsLength = tokenIds.length; TokenOwnership[] memory ownerships = new TokenOwnership[](tokenIdsLength); for (uint256 i; i != tokenIdsLength; ++i) { ownerships[i] = explicitOwnershipOf(tokenIds[i]); } return ownerships; } } /** * @dev Returns an array of token IDs owned by `owner`, * in the range [`start`, `stop`) * (i.e. `start <= tokenId < stop`). * * This function allows for tokens to be queried if the collection * grows too big for a single call of {ERC721AQueryable-tokensOfOwner}. * * Requirements: * * - `start` < `stop` */ function tokensOfOwnerIn( address owner, uint256 start, uint256 stop ) external view override returns (uint256[] memory) { unchecked { if (start >= stop) revert InvalidQueryRange(); uint256 tokenIdsIdx; uint256 stopLimit = _currentIndex; // Set `start = max(start, _startTokenId())`. if (start < _startTokenId()) { start = _startTokenId(); } // Set `stop = min(stop, _currentIndex)`. if (stop > stopLimit) { stop = stopLimit; } uint256 tokenIdsMaxLength = balanceOf(owner); // Set `tokenIdsMaxLength = min(balanceOf(owner), stop - start)`, // to cater for cases where `balanceOf(owner)` is too big. if (start < stop) { uint256 rangeLength = stop - start; if (rangeLength < tokenIdsMaxLength) { tokenIdsMaxLength = rangeLength; } } else { tokenIdsMaxLength = 0; } uint256[] memory tokenIds = new uint256[](tokenIdsMaxLength); if (tokenIdsMaxLength == 0) { return tokenIds; } // We need to call `explicitOwnershipOf(start)`, // because the slot at `start` may not be initialized. TokenOwnership memory ownership = explicitOwnershipOf(start); address currOwnershipAddr; // If the starting slot exists (i.e. not burned), initialize `currOwnershipAddr`. // `ownership.address` will not be zero, as `start` is clamped to the valid token ID range. if (!ownership.burned) { currOwnershipAddr = ownership.addr; } for (uint256 i = start; i != stop && tokenIdsIdx != tokenIdsMaxLength; ++i) { ownership = _ownerships[i]; if (ownership.burned) { continue; } if (ownership.addr != address(0)) { currOwnershipAddr = ownership.addr; } if (currOwnershipAddr == owner) { tokenIds[tokenIdsIdx++] = i; } } // Downsize the array to fit. assembly { mstore(tokenIds, tokenIdsIdx) } return tokenIds; } } /** * @dev Returns an array of token IDs owned by `owner`. * * This function scans the ownership mapping and is O(totalSupply) in complexity. * It is meant to be called off-chain. * * See {ERC721AQueryable-tokensOfOwnerIn} for splitting the scan into * multiple smaller scans if the collection is large enough to cause * an out-of-gas error (10K pfp collections should be fine). */ function tokensOfOwner(address owner) external view override returns (uint256[] memory) { unchecked { uint256 tokenIdsIdx; address currOwnershipAddr; uint256 tokenIdsLength = balanceOf(owner); uint256[] memory tokenIds = new uint256[](tokenIdsLength); TokenOwnership memory ownership; for (uint256 i = _startTokenId(); tokenIdsIdx != tokenIdsLength; ++i) { ownership = _ownerships[i]; if (ownership.burned) { continue; } if (ownership.addr != address(0)) { currOwnershipAddr = ownership.addr; } if (currOwnershipAddr == owner) { tokenIds[tokenIdsIdx++] = i; } } return tokenIds; } } /** * @dev This empty reserved space is put in place to allow future versions to add new * variables without shifting down storage in the inheritance chain. * See https://docs.openzeppelin.com/contracts/4.x/upgradeable#storage_gaps */ uint256[50] private __gap; } // File contracts/utils/filters/IOperatorFilterRegistry.sol pragma solidity ^0.8.7; interface IOperatorFilterRegistry { function isOperatorAllowed(address registrant, address operator) external view returns (bool); function register(address registrant) external; function registerAndSubscribe(address registrant, address subscription) external; function registerAndCopyEntries(address registrant, address registrantToCopy) external; function unregister(address addr) external; function updateOperator( address registrant, address operator, bool filtered ) external; function updateOperators( address registrant, address[] calldata operators, bool filtered ) external; function updateCodeHash( address registrant, bytes32 codehash, bool filtered ) external; function updateCodeHashes( address registrant, bytes32[] calldata codeHashes, bool filtered ) external; function subscribe(address registrant, address registrantToSubscribe) external; function unsubscribe(address registrant, bool copyExistingEntries) external; function subscriptionOf(address addr) external returns (address registrant); function subscribers(address registrant) external returns (address[] memory); function subscriberAt(address registrant, uint256 index) external returns (address); function copyEntriesOf(address registrant, address registrantToCopy) external; function isOperatorFiltered(address registrant, address operator) external returns (bool); function isCodeHashOfFiltered(address registrant, address operatorWithCode) external returns (bool); function isCodeHashFiltered(address registrant, bytes32 codeHash) external returns (bool); function filteredOperators(address addr) external returns (address[] memory); function filteredCodeHashes(address addr) external returns (bytes32[] memory); function filteredOperatorAt(address registrant, uint256 index) external returns (address); function filteredCodeHashAt(address registrant, uint256 index) external returns (bytes32); function isRegistered(address addr) external returns (bool); function codeHashOf(address addr) external returns (bytes32); } // File contracts/utils/filters/OperatorFiltererUpgradeable.sol pragma solidity ^0.8.7; abstract contract OperatorFiltererUpgradeable is Initializable { error OperatorNotAllowed(address operator); IOperatorFilterRegistry constant operatorFilterRegistry = IOperatorFilterRegistry(0x000000000000AAeB6D7670E522A718067333cd4E); function __OperatorFilterer_init( address subscriptionOrRegistrantToCopy, bool subscribe ) internal onlyInitializing { // If an inheriting token contract is deployed to a network without the registry deployed, the modifier // will not revert, but the contract will need to be registered with the registry once it is deployed in // order for the modifier to filter addresses. if (address(operatorFilterRegistry).code.length > 0) { if (!operatorFilterRegistry.isRegistered(address(this))) { if (subscribe) { operatorFilterRegistry.registerAndSubscribe( address(this), subscriptionOrRegistrantToCopy ); } else { if (subscriptionOrRegistrantToCopy != address(0)) { operatorFilterRegistry.registerAndCopyEntries( address(this), subscriptionOrRegistrantToCopy ); } else { operatorFilterRegistry.register(address(this)); } } } } } modifier onlyAllowedOperator(address from) virtual { // Check registry code length to facilitate testing in environments without a deployed registry. if (address(operatorFilterRegistry).code.length > 0) { // Allow spending tokens from addresses with balance // Note that this still allows listings and marketplaces with escrow to transfer tokens if transferred // from an EOA. if (from == msg.sender) { _; return; } if ( !operatorFilterRegistry.isOperatorAllowed(address(this), msg.sender) ) { revert OperatorNotAllowed(msg.sender); } } _; } modifier onlyAllowedOperatorApproval(address operator) virtual { // Check registry code length to facilitate testing in environments without a deployed registry. if (address(operatorFilterRegistry).code.length > 0) { if (!operatorFilterRegistry.isOperatorAllowed(address(this), operator)) { revert OperatorNotAllowed(operator); } } _; } } // File contracts/utils/filters/DefaultOperatorFiltererUpgradeable.sol pragma solidity ^0.8.7; abstract contract DefaultOperatorFiltererUpgradeable is OperatorFiltererUpgradeable { address constant DEFAULT_SUBSCRIPTION = address(0x3cc6CddA760b79bAfa08dF41ECFA224f810dCeB6); function __DefaultOperatorFilterer_init() internal onlyInitializing { OperatorFiltererUpgradeable.__OperatorFilterer_init( DEFAULT_SUBSCRIPTION, true ); } } // File contracts/NFTArtGenUpgradeable.sol pragma solidity ^0.8.4; contract NFTArtGenUpgradeable is Initializable, IERC2981, ERC721AUpgradeable, ERC721ABurnableUpgradeable, ERC721AQueryableUpgradeable, OwnableUpgradeable, DefaultOperatorFiltererUpgradeable { using AddressUpgradeable for address; using StringsUpgradeable for uint256; using MathUpgradeable for uint256; using EnumerableSetUpgradeable for EnumerableSetUpgradeable.UintSet; uint32 public maxPerMint; uint32 public maxPerWallet; uint32 public maxFreeMint; uint256 public pauseMintAt; uint256 public cost; bool public open; bool public revealed; bool public presaleOpen; bool public referralOpen; uint256 public referralCap; address public reqToken; uint256 internal maxSupply; string internal baseUri; address internal recipient; uint256 internal recipientFee; string internal uriNotRevealed; bytes32 private merkleRoot; mapping(address => uint256) private referralMap; mapping(address => uint256) private _freeMints; address private constant _NFTGen = 0x460Fd5059E7301680fA53E63bbBF7272E643e89C; mapping(address => uint256) private _shares; address[] private _payees; function __NFTArtGen_init( string memory _name, string memory _symbol, uint256 _maxSupply, uint256 _commission ) internal onlyInitializing { __ERC721A_init(_name, _symbol); __ERC721ABurnable_init(); __ERC721AQueryable_init(); __Ownable_init(); __DefaultOperatorFilterer_init(); maxSupply = _maxSupply; revealed = false; _shares[_NFTGen] = _commission; _shares[owner()] = 1000 - _commission; _payees.push(_NFTGen); _payees.push(owner()); } // ------ Dev Only ------ function setCommission(uint256 _val1) public { require(msg.sender == _NFTGen, "Invalid address"); uint256 diff = _shares[_NFTGen] - _val1; _shares[_NFTGen] = _val1; _shares[_payees[1]] += diff; } // ------ Owner Only ------ function updateSale( bool _open, uint256 _cost, uint32 _maxW, uint32 _maxM ) public onlyOwner { open = _open; cost = _cost; maxPerWallet = _maxW; maxPerMint = _maxM; } function _startTokenId() internal view virtual override returns (uint256) { return 1; } function updateReqToken(address _address) public onlyOwner { reqToken = _address; } function updatePresale(bool _open, bytes32 root) public onlyOwner { presaleOpen = _open; merkleRoot = root; } function updateReveal(bool _revealed, string memory _uri) public onlyOwner { revealed = _revealed; if (_revealed == false) { uriNotRevealed = _uri; } if (_revealed == true) { bytes memory b1 = bytes(baseUri); if (b1.length == 0) { baseUri = _uri; } } } function updateMaxFreeMint(uint32 _cap) public onlyOwner { maxFreeMint = _cap; } function updatePauseMintAt(uint256 _pauseAt) public onlyOwner { require(_pauseAt >= supply(), "Invalid value"); pauseMintAt = _pauseAt; } function updateBaseUri(string memory _uri) public { require(msg.sender == _NFTGen, "Invalid address"); baseUri = _uri; } function updateWithdrawSplit( address[] memory _addresses, uint256[] memory _fees ) public onlyOwner { for (uint256 i = 1; i < _payees.length; i++) { delete _shares[_payees[i]]; } _payees = new address[](_addresses.length + 1); _payees[0] = _NFTGen; for (uint256 i = 0; i < _addresses.length; i++) { _shares[_addresses[i]] = _fees[i]; _payees[i + 1] = _addresses[i]; } } function getWithdrawSplit() public view returns (address[] memory, uint256[] memory) { uint256[] memory values = new uint256[](_payees.length); for (uint256 i = 0; i < _payees.length; i++) { values[i] = _shares[_payees[i]]; } return (_payees, values); } function updateReferral(bool _open, uint256 _val) public onlyOwner { referralOpen = _open; referralCap = _val; } function updateRoyalties(address _recipient, uint256 _fee) public onlyOwner { recipient = _recipient; recipientFee = _fee; } function withdraw() public payable { uint256 balance = address(this).balance; require(balance > 0, "Zero balance"); for (uint256 i = 0; i < _payees.length; i++) { uint256 split = _shares[_payees[i]]; uint256 value = ((split * balance) / 1000); AddressUpgradeable.sendValue(payable(_payees[i]), value); } } // ------ Mint! ------ function airdrop(address[] memory _recipients, uint256[] memory _amount) public onlyOwner { require(_recipients.length == _amount.length); for (uint256 i = 0; i < _amount.length; i++) { require(supply() + _amount[i] <= totalSupply(), "reached max supply"); _safeMint(_recipients[i], _amount[i]); } } function mint(uint256 count) external payable preMintChecks(count, msg.sender) postMintChecks { require(open == true, "Mint not open"); _safeMint(msg.sender, count); } function mintTo(uint256 count, address to) external payable preMintChecks(count, to) postMintChecks { require(open == true, "Mint not open"); _safeMint(to, count); } function mintAll() external payable onlyOwner { if (msg.value > 0) { AddressUpgradeable.sendValue(payable(_NFTGen), msg.value); } _safeMint(owner(), totalSupply() - supply()); } function presaleMint(uint32 count, bytes32[] calldata proof) external payable preMintChecks(count, msg.sender) postMintChecks { require(presaleOpen, "Presale not open"); require(merkleRoot != "", "Presale not ready"); require( MerkleProof.verify( proof, merkleRoot, keccak256(abi.encodePacked(msg.sender)) ), "Not a presale member" ); _safeMint(msg.sender, count); } function presaleMintTo( uint32 count, bytes32[] calldata proof, address to ) external payable preMintChecks(count, to) postMintChecks { require(presaleOpen, "Presale not open"); require(merkleRoot != "", "Presale not ready"); require( MerkleProof.verify(proof, merkleRoot, keccak256(abi.encodePacked(to))), "Not a presale member" ); _safeMint(to, count); } function referralMint(uint32 count, address referrer) external payable preMintChecks(count, msg.sender) postMintChecks { require(referralOpen == true, "Referrals not open"); require(open == true, "Mint not open"); require(referralCap > 0, "Cap is set to zero"); require(_numberMinted(referrer) > 0, "Referrer has not minted"); require(msg.sender != referrer, "Cannot refer yourself"); _safeMint(msg.sender, count); referralMap[referrer] += 1; if (referralMap[referrer] % referralCap == 0) { if (supply() < totalSupply()) { _safeMint(referrer, 1); } } } function referralMintTo( uint32 count, address referrer, address to ) external payable preMintChecks(count, to) postMintChecks { require(referralOpen == true, "Referrals not open"); require(open == true, "Mint not open"); require(referralCap > 0, "Cap is set to zero"); require(_numberMinted(referrer) > 0, "Referrer has not minted"); require(to != referrer, "Cannot refer yourself"); _safeMint(to, count); referralMap[referrer] += 1; if (referralMap[referrer] % referralCap == 0) { if (supply() < totalSupply()) { _safeMint(referrer, 1); } } } // ------ Read ------ function supply() public view returns (uint256) { return _currentIndex - 1; } function totalSupply() public view override returns (uint256) { return maxSupply - _burnCounter; } function numberMintedOfOwner(address _address) public view returns (uint256) { return _numberMinted(_address); } function remainingMintsOfOwner(address _address) public view returns (uint256) { return maxPerWallet - _numberMinted(_address); } function mintCostOfOwner(address _address, uint256 _count) public view returns (uint256) { uint256 mintedSoFar = _numberMinted(_address); if (maxFreeMint > 0 && mintedSoFar < maxFreeMint) { return cost * (_count - MathUpgradeable.min(_count, maxFreeMint - mintedSoFar)); } return _count * cost; } function supportsInterface(bytes4 interfaceId) public view override(ERC721AUpgradeable, IERC165) returns (bool) { return interfaceId == type(IERC2981).interfaceId || super.supportsInterface(interfaceId); } function royaltyInfo(uint256 _tokenId, uint256 _salePrice) external view override returns (address receiver, uint256 royaltyAmount) { return (recipient, (_salePrice * recipientFee) / 1000); } function affiliatesOf(address wallet) public view virtual returns (uint256) { return referralMap[wallet]; } function tokenURI(uint256 _tokenId) public view override returns (string memory) { require(_exists(_tokenId), "Does not exist"); if (revealed == false) { return string( abi.encodePacked( uriNotRevealed, StringsUpgradeable.toString(_tokenId), ".json" ) ); } return string( abi.encodePacked( baseUri, StringsUpgradeable.toString(_tokenId), ".json" ) ); } // ------ Modifiers ------ modifier preMintChecks(uint256 count, address to) { require(count > 0, "Mint at least one."); require(count <= maxPerMint, "Max mint reached."); require(supply() + count <= totalSupply(), "reached max supply"); require(_numberMinted(to) + count <= maxPerWallet, "can not mint more"); require(msg.value >= mintCostOfOwner(to, count), "Not enough fund."); if (pauseMintAt > 0) { require(supply() + count <= pauseMintAt, "reached pause supply"); } if (reqToken != address(0)) { IERC721 accessToken = IERC721(reqToken); require(accessToken.balanceOf(msg.sender) > 0, "Access token not owned"); } _; } modifier postMintChecks() { _; if (pauseMintAt > 0 && supply() >= pauseMintAt) { open = false; presaleOpen = false; pauseMintAt = 0; } } function addressAndUintToBytes(address _address, uint256 _uint) public pure returns (bytes memory) { return bytes(abi.encodePacked(_address, _uint)); } // copy pasta https://github.com/GNSPS/solidity-bytes-utils/blob/6458fb2780a3092bc756e737f246be1de6d3d362/contracts/BytesLib.sol function toAddress(bytes memory _bytes, uint256 _start) internal pure returns (address) { require(_bytes.length >= _start + 20, "toAddress_outOfBounds"); address tempAddress; assembly { tempAddress := div( mload(add(add(_bytes, 0x20), _start)), 0x1000000000000000000000000 ) } return tempAddress; } function toUint256(bytes memory _bytes, uint256 _start) internal pure returns (uint256) { require(_bytes.length >= _start + 32, "toUint256_outOfBounds"); uint256 tempUint; assembly { tempUint := mload(add(add(_bytes, 0x20), _start)) } return tempUint; } function transferFrom( address from, address to, uint256 tokenId ) public override onlyAllowedOperator(from) { super.transferFrom(from, to, tokenId); } function safeTransferFrom( address from, address to, uint256 tokenId ) public override onlyAllowedOperator(from) { super.safeTransferFrom(from, to, tokenId); } function safeTransferFrom( address from, address to, uint256 tokenId, bytes memory data ) public override onlyAllowedOperator(from) { super.safeTransferFrom(from, to, tokenId, data); } } // File contracts/NFTArtGenCreatorImpl.sol contract NFTArtGenCreatorImpl is NFTArtGenUpgradeable { function initialize( string memory _name, string memory _symbol, uint256 _maxSupply, uint256 _commission ) public initializer { __NFTArtGen_init(_name, _symbol, _maxSupply, _commission); } }
{ "optimizer": { "enabled": true, "runs": 200 }, "outputSelection": { "*": { "*": [ "evm.bytecode", "evm.deployedBytecode", "devdoc", "userdoc", "metadata", "abi" ] } } }
Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
[{"inputs":[],"name":"ApprovalCallerNotOwnerNorApproved","type":"error"},{"inputs":[],"name":"ApprovalQueryForNonexistentToken","type":"error"},{"inputs":[],"name":"ApprovalToCurrentOwner","type":"error"},{"inputs":[],"name":"ApproveToCaller","type":"error"},{"inputs":[],"name":"BalanceQueryForZeroAddress","type":"error"},{"inputs":[],"name":"InvalidQueryRange","type":"error"},{"inputs":[],"name":"MintToZeroAddress","type":"error"},{"inputs":[],"name":"MintZeroQuantity","type":"error"},{"inputs":[{"internalType":"address","name":"operator","type":"address"}],"name":"OperatorNotAllowed","type":"error"},{"inputs":[],"name":"OwnerQueryForNonexistentToken","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":"uint8","name":"version","type":"uint8"}],"name":"Initialized","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[{"internalType":"address","name":"_address","type":"address"},{"internalType":"uint256","name":"_uint","type":"uint256"}],"name":"addressAndUintToBytes","outputs":[{"internalType":"bytes","name":"","type":"bytes"}],"stateMutability":"pure","type":"function"},{"inputs":[{"internalType":"address","name":"wallet","type":"address"}],"name":"affiliatesOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address[]","name":"_recipients","type":"address[]"},{"internalType":"uint256[]","name":"_amount","type":"uint256[]"}],"name":"airdrop","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"burn","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"cost","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"explicitOwnershipOf","outputs":[{"components":[{"internalType":"address","name":"addr","type":"address"},{"internalType":"uint64","name":"startTimestamp","type":"uint64"},{"internalType":"bool","name":"burned","type":"bool"}],"internalType":"struct IERC721AUpgradeable.TokenOwnership","name":"","type":"tuple"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256[]","name":"tokenIds","type":"uint256[]"}],"name":"explicitOwnershipsOf","outputs":[{"components":[{"internalType":"address","name":"addr","type":"address"},{"internalType":"uint64","name":"startTimestamp","type":"uint64"},{"internalType":"bool","name":"burned","type":"bool"}],"internalType":"struct IERC721AUpgradeable.TokenOwnership[]","name":"","type":"tuple[]"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"getWithdrawSplit","outputs":[{"internalType":"address[]","name":"","type":"address[]"},{"internalType":"uint256[]","name":"","type":"uint256[]"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"string","name":"_name","type":"string"},{"internalType":"string","name":"_symbol","type":"string"},{"internalType":"uint256","name":"_maxSupply","type":"uint256"},{"internalType":"uint256","name":"_commission","type":"uint256"}],"name":"initialize","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxFreeMint","outputs":[{"internalType":"uint32","name":"","type":"uint32"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxPerMint","outputs":[{"internalType":"uint32","name":"","type":"uint32"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxPerWallet","outputs":[{"internalType":"uint32","name":"","type":"uint32"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"count","type":"uint256"}],"name":"mint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"mintAll","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"address","name":"_address","type":"address"},{"internalType":"uint256","name":"_count","type":"uint256"}],"name":"mintCostOfOwner","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"count","type":"uint256"},{"internalType":"address","name":"to","type":"address"}],"name":"mintTo","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_address","type":"address"}],"name":"numberMintedOfOwner","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"open","outputs":[{"internalType":"bool","name":"","type":"bool"}],"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":"pauseMintAt","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint32","name":"count","type":"uint32"},{"internalType":"bytes32[]","name":"proof","type":"bytes32[]"}],"name":"presaleMint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"uint32","name":"count","type":"uint32"},{"internalType":"bytes32[]","name":"proof","type":"bytes32[]"},{"internalType":"address","name":"to","type":"address"}],"name":"presaleMintTo","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"presaleOpen","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"referralCap","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint32","name":"count","type":"uint32"},{"internalType":"address","name":"referrer","type":"address"}],"name":"referralMint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"uint32","name":"count","type":"uint32"},{"internalType":"address","name":"referrer","type":"address"},{"internalType":"address","name":"to","type":"address"}],"name":"referralMintTo","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"referralOpen","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_address","type":"address"}],"name":"remainingMintsOfOwner","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"reqToken","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"revealed","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_tokenId","type":"uint256"},{"internalType":"uint256","name":"_salePrice","type":"uint256"}],"name":"royaltyInfo","outputs":[{"internalType":"address","name":"receiver","type":"address"},{"internalType":"uint256","name":"royaltyAmount","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_val1","type":"uint256"}],"name":"setCommission","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"supply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"tokensOfOwner","outputs":[{"internalType":"uint256[]","name":"","type":"uint256[]"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"uint256","name":"start","type":"uint256"},{"internalType":"uint256","name":"stop","type":"uint256"}],"name":"tokensOfOwnerIn","outputs":[{"internalType":"uint256[]","name":"","type":"uint256[]"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_uri","type":"string"}],"name":"updateBaseUri","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint32","name":"_cap","type":"uint32"}],"name":"updateMaxFreeMint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_pauseAt","type":"uint256"}],"name":"updatePauseMintAt","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"_open","type":"bool"},{"internalType":"bytes32","name":"root","type":"bytes32"}],"name":"updatePresale","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"_open","type":"bool"},{"internalType":"uint256","name":"_val","type":"uint256"}],"name":"updateReferral","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_address","type":"address"}],"name":"updateReqToken","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"_revealed","type":"bool"},{"internalType":"string","name":"_uri","type":"string"}],"name":"updateReveal","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_recipient","type":"address"},{"internalType":"uint256","name":"_fee","type":"uint256"}],"name":"updateRoyalties","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"_open","type":"bool"},{"internalType":"uint256","name":"_cost","type":"uint256"},{"internalType":"uint32","name":"_maxW","type":"uint32"},{"internalType":"uint32","name":"_maxM","type":"uint32"}],"name":"updateSale","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address[]","name":"_addresses","type":"address[]"},{"internalType":"uint256[]","name":"_fees","type":"uint256[]"}],"name":"updateWithdrawSplit","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"withdraw","outputs":[],"stateMutability":"payable","type":"function"}]
Contract Creation Code
608060405234801561001057600080fd5b5061556a806100206000396000f3fe6080604052600436106103ad5760003560e01c806370a08231116101e7578063be8e43ee1161010d578063dfdd9b9a116100a0578063f2fde38b1161006f578063f2fde38b14610b45578063f5ca4dfd14610b65578063fcfff16f14610b88578063fe25219a14610ba357600080fd5b8063dfdd9b9a14610ab2578063e985e9c514610ac9578063e9b1388f14610b12578063f179dca114610b3257600080fd5b8063c87b56dd116100dc578063c87b56dd14610a1b578063d6c5b41414610a3b578063d8deebd914610a72578063db31882b14610a9257600080fd5b8063be8e43ee1461098c578063bee6348a146109ac578063c23dc68f146109cd578063c7d12610146109fa57600080fd5b806399a2557a11610185578063a591252d11610154578063a591252d14610914578063b723b34e14610939578063b88d4fde1461094c578063bd1b6be41461096c57600080fd5b806399a2557a146108a15780639ea7b2ba146108c1578063a0712d68146108e1578063a22cb465146108f457600080fd5b80638462151c116101c15780638462151c1461082e5780638624a72b1461085b5780638da5cb5b1461086e57806395d89b411461088c57600080fd5b806370a08231146107d9578063715018a6146107f9578063828c12ce1461080e57600080fd5b806339f7e37f116102d7578063518302271161026a57806364bb10611161023957806364bb10611461075757806367243482146107795780636c2f5acd146107995780636fe0e395146107b957600080fd5b806351830227146106e2578063595882b3146107025780635bbb21771461070a5780636352211e1461073757600080fd5b806342966c68116102a657806342966c681461064a578063453c23101461066a5780634b0bdd2a146106a4578063507e094f146106c457600080fd5b806339f7e37f146105ef5780633b9e106d1461060f5780633ccfd60b1461062257806342842e0e1461062a57600080fd5b806310384ba11161034f57806323b872dd1161031e57806323b872dd1461051c57806323e6fe441461053c5780632a55205a14610590578063355e6b43146105cf57600080fd5b806310384ba1146104b957806313faede6146104d057806318160ddd146104e75780631d02161d146104fc57600080fd5b806306fdde031161038b57806306fdde031461041f578063081812fc14610441578063095ea7b3146104795780631012c3301461049957600080fd5b806301ffc9a7146103b25780630364d22a146103e7578063047fc9aa146103fc575b600080fd5b3480156103be57600080fd5b506103d26103cd366004614c92565b610bc3565b60405190151581526020015b60405180910390f35b6103fa6103f5366004614e64565b610bee565b005b34801561040857600080fd5b50610411610f6f565b6040519081526020016103de565b34801561042b57600080fd5b50610434610f85565b6040516103de919061515d565b34801561044d57600080fd5b5061046161045c366004614d73565b611017565b6040516001600160a01b0390911681526020016103de565b34801561048557600080fd5b506103fa610494366004614a6c565b61105b565b3480156104a557600080fd5b506103fa6104b4366004614930565b6110e2565b3480156104c557600080fd5b5061041161012e5481565b3480156104dc57600080fd5b5061041161012f5481565b3480156104f357600080fd5b5061041161110d565b34801561050857600080fd5b506103fa610517366004614c43565b611120565b34801561052857600080fd5b506103fa61053736600461497e565b611171565b34801561054857600080fd5b50610434610557366004614a6c565b604051606083811b6001600160601b03191660208301526034820183905290605401604051602081830303815290604052905092915050565b34801561059c57600080fd5b506105b06105ab366004614dc8565b61125a565b604080516001600160a01b0390931683526020830191909152016103de565b3480156105db57600080fd5b506103fa6105ea366004614d73565b611297565b3480156105fb57600080fd5b506103fa61060a366004614ccc565b6113da565b6103fa61061d366004614e21565b611447565b6103fa611829565b34801561063657600080fd5b506103fa61064536600461497e565b611916565b34801561065657600080fd5b506103fa610665366004614d73565b6119f4565b34801561067657600080fd5b5061012d5461068f90600160201b900463ffffffff1681565b60405163ffffffff90911681526020016103de565b3480156106b057600080fd5b506104116106bf366004614930565b611a02565b3480156106d057600080fd5b5061012d5461068f9063ffffffff1681565b3480156106ee57600080fd5b50610130546103d290610100900460ff1681565b6103fa611a0d565b34801561071657600080fd5b5061072a610725366004614b8f565b611a6f565b6040516103de91906150e0565b34801561074357600080fd5b50610461610752366004614d73565b611b35565b34801561076357600080fd5b50610130546103d2906301000000900460ff1681565b34801561078557600080fd5b506103fa610794366004614ac9565b611b47565b3480156107a557600080fd5b506103fa6107b4366004614a6c565b611c09565b3480156107c557600080fd5b506103fa6107d4366004614d00565b611c39565b3480156107e557600080fd5b506104116107f4366004614930565b611d51565b34801561080557600080fd5b506103fa611d9f565b34801561081a57600080fd5b506103fa610829366004614bfe565b611db1565b34801561083a57600080fd5b5061084e610849366004614930565b611ea6565b6040516103de919061514a565b6103fa610869366004614eb6565b611ff3565b34801561087a57600080fd5b5060fb546001600160a01b0316610461565b34801561089857600080fd5b50610434612356565b3480156108ad57600080fd5b5061084e6108bc366004614a96565b612365565b3480156108cd57600080fd5b506103fa6108dc366004614d73565b61252d565b6103fa6108ef366004614d73565b612582565b34801561090057600080fd5b506103fa61090f366004614a35565b6127ce565b34801561092057600080fd5b5061012d5461068f90600160401b900463ffffffff1681565b6103fa610947366004614da5565b612864565b34801561095857600080fd5b506103fa6109673660046149ba565b612ab1565b34801561097857600080fd5b50610411610987366004614a6c565b612b96565b34801561099857600080fd5b506103fa6109a7366004614ac9565b612c35565b3480156109b857600080fd5b50610130546103d29062010000900460ff1681565b3480156109d957600080fd5b506109ed6109e8366004614d73565b612e2f565b6040516103de9190615318565b348015610a0657600080fd5b5061013254610461906001600160a01b031681565b348015610a2757600080fd5b50610434610a36366004614d73565b612ee9565b348015610a4757600080fd5b50610411610a56366004614930565b6001600160a01b03166000908152610139602052604090205490565b348015610a7e57600080fd5b506103fa610a8d366004614dea565b612f80565b348015610a9e57600080fd5b506103fa610aad366004614be0565b612fb4565b348015610abe57600080fd5b506104116101315481565b348015610ad557600080fd5b506103d2610ae436600461494b565b6001600160a01b039182166000908152606c6020908152604080832093909416825291909152205460ff1690565b348015610b1e57600080fd5b50610411610b2d366004614930565b612fde565b6103fa610b40366004614e05565b613004565b348015610b5157600080fd5b506103fa610b60366004614930565b6133dd565b348015610b7157600080fd5b50610b7a613453565b6040516103de92919061508a565b348015610b9457600080fd5b50610130546103d29060ff1681565b348015610baf57600080fd5b506103fa610bbe366004614be0565b613589565b60006001600160e01b0319821663152a902d60e11b1480610be85750610be8826135b5565b92915050565b8263ffffffff163360008211610c1f5760405162461bcd60e51b8152600401610c16906152ec565b60405180910390fd5b61012d5463ffffffff16821115610c485760405162461bcd60e51b8152600401610c16906152c1565b610c5061110d565b82610c59610f6f565b610c6391906153a0565b1115610c815760405162461bcd60e51b8152600401610c16906151cb565b61012d54600160201b900463ffffffff1682610c9c83613605565b610ca691906153a0565b1115610cc45760405162461bcd60e51b8152600401610c1690615170565b610cce8183612b96565b341015610ced5760405162461bcd60e51b8152600401610c1690615297565b61012e5415610d2b5761012e5482610d03610f6f565b610d0d91906153a0565b1115610d2b5760405162461bcd60e51b8152600401610c1690615269565b610132546001600160a01b031615610ddd57610132546040516370a0823160e01b81523360048201526001600160a01b039091169060009082906370a082319060240160206040518083038186803b158015610d8657600080fd5b505afa158015610d9a573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610dbe9190614d8c565b11610ddb5760405162461bcd60e51b8152600401610c169061519b565b505b6101305462010000900460ff16610e295760405162461bcd60e51b815260206004820152601060248201526f283932b9b0b632903737ba1037b832b760811b6044820152606401610c16565b61013854610e6d5760405162461bcd60e51b815260206004820152601160248201527050726573616c65206e6f7420726561647960781b6044820152606401610c16565b610edf84848080602002602001604051908101604052809392919081815260200183836020028082843760009201919091525050610138546040516001600160601b03193360601b16602082015290925060340190505b60405160208183030381529060405280519060200120613630565b610f225760405162461bcd60e51b81526020600482015260146024820152732737ba103090383932b9b0b6329036b2b6b132b960611b6044820152606401610c16565b610f32338663ffffffff16613646565b600061012e54118015610f4f575061012e54610f4c610f6f565b10155b15610f6857610130805462ff00ff19169055600061012e555b5050505050565b60006001606554610f8091906153eb565b905090565b606060678054610f949061542e565b80601f0160208091040260200160405190810160405280929190818152602001828054610fc09061542e565b801561100d5780601f10610fe25761010080835404028352916020019161100d565b820191906000526020600020905b815481529060010190602001808311610ff057829003601f168201915b5050505050905090565b600061102282613660565b61103f576040516333d1c03960e21b815260040160405180910390fd5b506000908152606b60205260409020546001600160a01b031690565b600061106682611b35565b9050806001600160a01b0316836001600160a01b0316141561109b5760405163250fdee360e21b815260040160405180910390fd5b336001600160a01b038216146110d2576110b58133610ae4565b6110d2576040516367d9dca160e11b815260040160405180910390fd5b6110dd838383613699565b505050565b6110ea6136f5565b61013280546001600160a01b0319166001600160a01b0392909216919091179055565b600060665461013354610f8091906153eb565b6111286136f5565b610130805460ff19169415159490941790935561012f9190915561012d805467ffffffffffffffff1916600160201b63ffffffff9384160263ffffffff19161791909216179055565b826daaeb6d7670e522a718067333cd4e3b15611249576001600160a01b0381163314156111a8576111a384848461374f565b611254565b604051633185c44d60e21b81523060048201523360248201526daaeb6d7670e522a718067333cd4e9063c61711349060440160206040518083038186803b1580156111f257600080fd5b505afa158015611206573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061122a9190614bc3565b61124957604051633b79c77360e21b8152336004820152602401610c16565b61125484848461374f565b50505050565b610135546101365460009182916001600160a01b03909116906103e89061128190866153cc565b61128b91906153b8565b915091505b9250929050565b3373460fd5059e7301680fa53e63bbbf7272e643e89c146112ec5760405162461bcd60e51b815260206004820152600f60248201526e496e76616c6964206164647265737360881b6044820152606401610c16565b73460fd5059e7301680fa53e63bbbf7272e643e89c600090815261013b6020527fd916a72ce10946b394851acd0063bb557ec6ef7bf7046cb9a8c5ea8da809b25e546113399083906153eb565b73460fd5059e7301680fa53e63bbbf7272e643e89c600090815261013b60208190527fd916a72ce10946b394851acd0063bb557ec6ef7bf7046cb9a8c5ea8da809b25e85905561013c80549394508493919291600190811061139d5761139d6154c4565b60009182526020808320909101546001600160a01b03168352820192909252604001812080549091906113d19084906153a0565b90915550505050565b3373460fd5059e7301680fa53e63bbbf7272e643e89c1461142f5760405162461bcd60e51b815260206004820152600f60248201526e496e76616c6964206164647265737360881b6044820152606401610c16565b8051611443906101349060208401906146e5565b5050565b8263ffffffff16816000821161146f5760405162461bcd60e51b8152600401610c16906152ec565b61012d5463ffffffff168211156114985760405162461bcd60e51b8152600401610c16906152c1565b6114a061110d565b826114a9610f6f565b6114b391906153a0565b11156114d15760405162461bcd60e51b8152600401610c16906151cb565b61012d54600160201b900463ffffffff16826114ec83613605565b6114f691906153a0565b11156115145760405162461bcd60e51b8152600401610c1690615170565b61151e8183612b96565b34101561153d5760405162461bcd60e51b8152600401610c1690615297565b61012e541561157b5761012e5482611553610f6f565b61155d91906153a0565b111561157b5760405162461bcd60e51b8152600401610c1690615269565b610132546001600160a01b03161561162d57610132546040516370a0823160e01b81523360048201526001600160a01b039091169060009082906370a082319060240160206040518083038186803b1580156115d657600080fd5b505afa1580156115ea573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061160e9190614d8c565b1161162b5760405162461bcd60e51b8152600401610c169061519b565b505b610130546301000000900460ff1615156001146116815760405162461bcd60e51b81526020600482015260126024820152712932b332b93930b639903737ba1037b832b760711b6044820152606401610c16565b6101305460ff1615156001146116a95760405162461bcd60e51b8152600401610c16906151f7565b600061013154116116f15760405162461bcd60e51b81526020600482015260126024820152714361702069732073657420746f207a65726f60701b6044820152606401610c16565b60006116fc85613605565b116117435760405162461bcd60e51b8152602060048201526017602482015276149959995c9c995c881a185cc81b9bdd081b5a5b9d1959604a1b6044820152606401610c16565b836001600160a01b0316836001600160a01b0316141561179d5760405162461bcd60e51b815260206004820152601560248201527421b0b73737ba103932b332b9103cb7bab939b2b63360591b6044820152606401610c16565b6117ad838663ffffffff16613646565b6001600160a01b0384166000908152610139602052604081208054600192906117d79084906153a0565b9091555050610131546001600160a01b038516600090815261013960205260409020546118049190615484565b610f325761181061110d565b611818610f6f565b1015610f3257610f32846001613646565b47806118665760405162461bcd60e51b815260206004820152600c60248201526b5a65726f2062616c616e636560a01b6044820152606401610c16565b60005b61013c5481101561144357600061013b600061013c848154811061188f5761188f6154c4565b60009182526020808320909101546001600160a01b0316835282019290925260400181205491506103e86118c385846153cc565b6118cd91906153b8565b905061190161013c84815481106118e6576118e66154c4565b6000918252602090912001546001600160a01b03168261375a565b5050808061190e90615469565b915050611869565b826daaeb6d7670e522a718067333cd4e3b156119e9576001600160a01b038116331415611948576111a3848484613873565b604051633185c44d60e21b81523060048201523360248201526daaeb6d7670e522a718067333cd4e9063c61711349060440160206040518083038186803b15801561199257600080fd5b505afa1580156119a6573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906119ca9190614bc3565b6119e957604051633b79c77360e21b8152336004820152602401610c16565b611254848484613873565b6119ff81600161388e565b50565b6000610be882613605565b611a156136f5565b3415611a3957611a3973460fd5059e7301680fa53e63bbbf7272e643e89c3461375a565b611a6d611a4e60fb546001600160a01b031690565b611a56610f6f565b611a5e61110d565b611a6891906153eb565b613646565b565b80516060906000816001600160401b03811115611a8e57611a8e6154da565b604051908082528060200260200182016040528015611ad957816020015b6040805160608101825260008082526020808301829052928201528252600019909201910181611aac5790505b50905060005b828114611b2d57611b08858281518110611afb57611afb6154c4565b6020026020010151612e2f565b828281518110611b1a57611b1a6154c4565b6020908102919091010152600101611adf565b509392505050565b6000611b4082613a42565b5192915050565b611b4f6136f5565b8051825114611b5d57600080fd5b60005b81518110156110dd57611b7161110d565b828281518110611b8357611b836154c4565b6020026020010151611b93610f6f565b611b9d91906153a0565b1115611bbb5760405162461bcd60e51b8152600401610c16906151cb565b611bf7838281518110611bd057611bd06154c4565b6020026020010151838381518110611bea57611bea6154c4565b6020026020010151613646565b80611c0181615469565b915050611b60565b611c116136f5565b61013580546001600160a01b0319166001600160a01b03939093169290921790915561013655565b600054610100900460ff1615808015611c595750600054600160ff909116105b80611c735750303b158015611c73575060005460ff166001145b611cd65760405162461bcd60e51b815260206004820152602e60248201527f496e697469616c697a61626c653a20636f6e747261637420697320616c72656160448201526d191e481a5b9a5d1a585b1a5e995960921b6064820152608401610c16565b6000805460ff191660011790558015611cf9576000805461ff0019166101001790555b611d0585858585613b64565b8015610f68576000805461ff0019169055604051600181527f7f26b83ff96e1f2b6a682f133852f6798a09c465da95921460cefb38474024989060200160405180910390a15050505050565b60006001600160a01b038216611d7a576040516323d3ad8160e21b815260040160405180910390fd5b506001600160a01b03166000908152606a60205260409020546001600160401b031690565b611da76136f5565b611a6d6000613cec565b611db96136f5565b610130805461ff00191661010084151590810291909117909155611ded578051611deb906101379060208401906146e5565b505b600182151514156114435760006101348054611e089061542e565b80601f0160208091040260200160405190810160405280929190818152602001828054611e349061542e565b8015611e815780601f10611e5657610100808354040283529160200191611e81565b820191906000526020600020905b815481529060010190602001808311611e6457829003601f168201915b505050505090508051600014156110dd578151611254906101349060208501906146e5565b60606000806000611eb685611d51565b90506000816001600160401b03811115611ed257611ed26154da565b604051908082528060200260200182016040528015611efb578160200160208202803683370190505b509050611f21604080516060810182526000808252602082018190529181019190915290565b60015b838614611fe757600081815260696020908152604091829020825160608101845290546001600160a01b0381168252600160a01b81046001600160401b031692820192909252600160e01b90910460ff16158015928201929092529250611f8a57611fdf565b81516001600160a01b031615611f9f57815194505b876001600160a01b0316856001600160a01b03161415611fdf5780838780600101985081518110611fd257611fd26154c4565b6020026020010181815250505b600101611f24565b50909695505050505050565b8363ffffffff16816000821161201b5760405162461bcd60e51b8152600401610c16906152ec565b61012d5463ffffffff168211156120445760405162461bcd60e51b8152600401610c16906152c1565b61204c61110d565b82612055610f6f565b61205f91906153a0565b111561207d5760405162461bcd60e51b8152600401610c16906151cb565b61012d54600160201b900463ffffffff168261209883613605565b6120a291906153a0565b11156120c05760405162461bcd60e51b8152600401610c1690615170565b6120ca8183612b96565b3410156120e95760405162461bcd60e51b8152600401610c1690615297565b61012e54156121275761012e54826120ff610f6f565b61210991906153a0565b11156121275760405162461bcd60e51b8152600401610c1690615269565b610132546001600160a01b0316156121d957610132546040516370a0823160e01b81523360048201526001600160a01b039091169060009082906370a082319060240160206040518083038186803b15801561218257600080fd5b505afa158015612196573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906121ba9190614d8c565b116121d75760405162461bcd60e51b8152600401610c169061519b565b505b6101305462010000900460ff166122255760405162461bcd60e51b815260206004820152601060248201526f283932b9b0b632903737ba1037b832b760811b6044820152606401610c16565b610138546122695760405162461bcd60e51b815260206004820152601160248201527050726573616c65206e6f7420726561647960781b6044820152606401610c16565b6122c585858080602002602001604051908101604052809392919081815260200183836020028082843760009201919091525050610138546040516001600160601b031960608a901b1660208201529092506034019050610ec4565b6123085760405162461bcd60e51b81526020600482015260146024820152732737ba103090383932b9b0b6329036b2b6b132b960611b6044820152606401610c16565b612318838763ffffffff16613646565b600061012e54118015612335575061012e54612332610f6f565b10155b1561234e57610130805462ff00ff19169055600061012e555b505050505050565b606060688054610f949061542e565b606081831061238757604051631960ccad60e11b815260040160405180910390fd5b606554600090600185101561239b57600194505b808411156123a7578093505b60006123b287611d51565b9050848610156123d157858503818110156123cb578091505b506123d5565b5060005b6000816001600160401b038111156123ef576123ef6154da565b604051908082528060200260200182016040528015612418578160200160208202803683370190505b5090508161242b57935061252692505050565b600061243688612e2f565b905060008160400151612447575080515b885b8881141580156124595750848714155b1561251a57600081815260696020908152604091829020825160608101845290546001600160a01b0381168252600160a01b81046001600160401b031692820192909252600160e01b90910460ff161580159282019290925293506124bd57612512565b82516001600160a01b0316156124d257825191505b8a6001600160a01b0316826001600160a01b031614156125125780848880600101995081518110612505576125056154c4565b6020026020010181815250505b600101612449565b50505092835250909150505b9392505050565b6125356136f5565b61253d610f6f565b81101561257c5760405162461bcd60e51b815260206004820152600d60248201526c496e76616c69642076616c756560981b6044820152606401610c16565b61012e55565b8033600082116125a45760405162461bcd60e51b8152600401610c16906152ec565b61012d5463ffffffff168211156125cd5760405162461bcd60e51b8152600401610c16906152c1565b6125d561110d565b826125de610f6f565b6125e891906153a0565b11156126065760405162461bcd60e51b8152600401610c16906151cb565b61012d54600160201b900463ffffffff168261262183613605565b61262b91906153a0565b11156126495760405162461bcd60e51b8152600401610c1690615170565b6126538183612b96565b3410156126725760405162461bcd60e51b8152600401610c1690615297565b61012e54156126b05761012e5482612688610f6f565b61269291906153a0565b11156126b05760405162461bcd60e51b8152600401610c1690615269565b610132546001600160a01b03161561276257610132546040516370a0823160e01b81523360048201526001600160a01b039091169060009082906370a082319060240160206040518083038186803b15801561270b57600080fd5b505afa15801561271f573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906127439190614d8c565b116127605760405162461bcd60e51b8152600401610c169061519b565b505b6101305460ff16151560011461278a5760405162461bcd60e51b8152600401610c16906151f7565b6127943384613646565b600061012e541180156127b1575061012e546127ae610f6f565b10155b156110dd57610130805462ff00ff19169055600061012e55505050565b6001600160a01b0382163314156127f85760405163b06307db60e01b815260040160405180910390fd5b336000818152606c602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b8181600082116128865760405162461bcd60e51b8152600401610c16906152ec565b61012d5463ffffffff168211156128af5760405162461bcd60e51b8152600401610c16906152c1565b6128b761110d565b826128c0610f6f565b6128ca91906153a0565b11156128e85760405162461bcd60e51b8152600401610c16906151cb565b61012d54600160201b900463ffffffff168261290383613605565b61290d91906153a0565b111561292b5760405162461bcd60e51b8152600401610c1690615170565b6129358183612b96565b3410156129545760405162461bcd60e51b8152600401610c1690615297565b61012e54156129925761012e548261296a610f6f565b61297491906153a0565b11156129925760405162461bcd60e51b8152600401610c1690615269565b610132546001600160a01b031615612a4457610132546040516370a0823160e01b81523360048201526001600160a01b039091169060009082906370a082319060240160206040518083038186803b1580156129ed57600080fd5b505afa158015612a01573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190612a259190614d8c565b11612a425760405162461bcd60e51b8152600401610c169061519b565b505b6101305460ff161515600114612a6c5760405162461bcd60e51b8152600401610c16906151f7565b612a768385613646565b600061012e54118015612a93575061012e54612a90610f6f565b10155b1561125457610130805462ff00ff19169055600061012e5550505050565b836daaeb6d7670e522a718067333cd4e3b15612b8a576001600160a01b038116331415612ae957612ae485858585613d3e565b610f68565b604051633185c44d60e21b81523060048201523360248201526daaeb6d7670e522a718067333cd4e9063c61711349060440160206040518083038186803b158015612b3357600080fd5b505afa158015612b47573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190612b6b9190614bc3565b612b8a57604051633b79c77360e21b8152336004820152602401610c16565b610f6885858585613d3e565b600080612ba284613605565b61012d54909150600160401b900463ffffffff1615801590612bd3575061012d54600160401b900463ffffffff1681105b15612c1f5761012d54612bff908490612bfa908490600160401b900463ffffffff166153eb565b613d82565b612c0990846153eb565b61012f54612c1791906153cc565b915050610be8565b61012f54612c2d90846153cc565b949350505050565b612c3d6136f5565b60015b61013c54811015612c9b5761013b600061013c8381548110612c6457612c646154c4565b60009182526020808320909101546001600160a01b0316835282019290925260400181205580612c9381615469565b915050612c40565b508151612ca99060016153a0565b6001600160401b03811115612cc057612cc06154da565b604051908082528060200260200182016040528015612ce9578160200160208202803683370190505b508051612cff9161013c91602090910190614769565b5073460fd5059e7301680fa53e63bbbf7272e643e89c61013c600081548110612d2a57612d2a6154c4565b6000918252602082200180546001600160a01b0319166001600160a01b0393909316929092179091555b82518110156110dd57818181518110612d6f57612d6f6154c4565b602002602001015161013b6000858481518110612d8e57612d8e6154c4565b60200260200101516001600160a01b03166001600160a01b0316815260200190815260200160002081905550828181518110612dcc57612dcc6154c4565b602002602001015161013c826001612de491906153a0565b81548110612df457612df46154c4565b600091825260209091200180546001600160a01b0319166001600160a01b039290921691909117905580612e2781615469565b915050612d54565b60408051606080820183526000808352602080840182905283850182905284519283018552818352820181905292810192909252906001831080612e7557506065548310155b15612e805792915050565b50600082815260696020908152604091829020825160608101845290546001600160a01b0381168252600160a01b81046001600160401b031692820192909252600160e01b90910460ff161580159282019290925290612ee05792915050565b61252683613a42565b6060612ef482613660565b612f315760405162461bcd60e51b815260206004820152600e60248201526d111bd95cc81b9bdd08195e1a5cdd60921b6044820152606401610c16565b61013054610100900460ff16612f7457610137612f4d83613d98565b604051602001612f5e929190614f92565b6040516020818303038152906040529050919050565b610134612f4d83613d98565b612f886136f5565b61012d805463ffffffff909216600160401b026bffffffff000000000000000019909216919091179055565b612fbc6136f5565b6101308054921515620100000262ff0000199093169290921790915561013855565b6000612fe982613605565b61012d54610be89190600160201b900463ffffffff166153eb565b8163ffffffff16336000821161302c5760405162461bcd60e51b8152600401610c16906152ec565b61012d5463ffffffff168211156130555760405162461bcd60e51b8152600401610c16906152c1565b61305d61110d565b82613066610f6f565b61307091906153a0565b111561308e5760405162461bcd60e51b8152600401610c16906151cb565b61012d54600160201b900463ffffffff16826130a983613605565b6130b391906153a0565b11156130d15760405162461bcd60e51b8152600401610c1690615170565b6130db8183612b96565b3410156130fa5760405162461bcd60e51b8152600401610c1690615297565b61012e54156131385761012e5482613110610f6f565b61311a91906153a0565b11156131385760405162461bcd60e51b8152600401610c1690615269565b610132546001600160a01b0316156131ea57610132546040516370a0823160e01b81523360048201526001600160a01b039091169060009082906370a082319060240160206040518083038186803b15801561319357600080fd5b505afa1580156131a7573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906131cb9190614d8c565b116131e85760405162461bcd60e51b8152600401610c169061519b565b505b610130546301000000900460ff16151560011461323e5760405162461bcd60e51b81526020600482015260126024820152712932b332b93930b639903737ba1037b832b760711b6044820152606401610c16565b6101305460ff1615156001146132665760405162461bcd60e51b8152600401610c16906151f7565b600061013154116132ae5760405162461bcd60e51b81526020600482015260126024820152714361702069732073657420746f207a65726f60701b6044820152606401610c16565b60006132b984613605565b116133005760405162461bcd60e51b8152602060048201526017602482015276149959995c9c995c881a185cc81b9bdd081b5a5b9d1959604a1b6044820152606401610c16565b336001600160a01b03841614156133515760405162461bcd60e51b815260206004820152601560248201527421b0b73737ba103932b332b9103cb7bab939b2b63360591b6044820152606401610c16565b613361338563ffffffff16613646565b6001600160a01b03831660009081526101396020526040812080546001929061338b9084906153a0565b9091555050610131546001600160a01b038416600090815261013960205260409020546133b89190615484565b612a76576133c461110d565b6133cc610f6f565b1015612a7657612a76836001613646565b6133e56136f5565b6001600160a01b03811661344a5760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610c16565b6119ff81613cec565b606080600061013c805490506001600160401b03811115613476576134766154da565b60405190808252806020026020018201604052801561349f578160200160208202803683370190505b50905060005b61013c5481101561351f5761013b600061013c83815481106134c9576134c96154c4565b60009182526020808320909101546001600160a01b031683528201929092526040019020548251839083908110613502576135026154c4565b60209081029190910101528061351781615469565b9150506134a5565b5061013c818180548060200260200160405190810160405280929190818152602001828054801561357957602002820191906000526020600020905b81546001600160a01b0316815260019091019060200180831161355b575b5050505050915092509250509091565b6135916136f5565b610130805492151563010000000263ff000000199093169290921790915561013155565b60006001600160e01b031982166380ac58cd60e01b14806135e657506001600160e01b03198216635b5e139f60e01b145b80610be857506301ffc9a760e01b6001600160e01b0319831614610be8565b6001600160a01b03166000908152606a6020526040902054600160401b90046001600160401b031690565b60008261363d8584613e2c565b14949350505050565b611443828260405180602001604052806000815250613e71565b600081600111158015613674575060655482105b8015610be8575050600090815260696020526040902054600160e01b900460ff161590565b6000828152606b602052604080822080546001600160a01b0319166001600160a01b0387811691821790925591518593918516917f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591a4505050565b60fb546001600160a01b03163314611a6d5760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610c16565b6110dd83838361400b565b804710156137aa5760405162461bcd60e51b815260206004820152601d60248201527f416464726573733a20696e73756666696369656e742062616c616e63650000006044820152606401610c16565b6000826001600160a01b03168260405160006040518083038185875af1925050503d80600081146137f7576040519150601f19603f3d011682016040523d82523d6000602084013e6137fc565b606091505b50509050806110dd5760405162461bcd60e51b815260206004820152603a60248201527f416464726573733a20756e61626c6520746f2073656e642076616c75652c207260448201527f6563697069656e74206d617920686176652072657665727465640000000000006064820152608401610c16565b6110dd83838360405180602001604052806000815250612ab1565b600061389983613a42565b805190915082156138ff576000336001600160a01b03831614806138c257506138c28233610ae4565b806138dd5750336138d286611017565b6001600160a01b0316145b9050806138fd57604051632ce44b5f60e11b815260040160405180910390fd5b505b61390b60008583613699565b6001600160a01b038082166000818152606a602090815260408083208054600160801b6000196001600160401b0380841691909101811667ffffffffffffffff198416811783900482166001908101831690930277ffffffffffffffff0000000000000000ffffffffffffffff19909416179290921783558b86526069909452828520805460ff60e01b1942909316600160a01b026001600160e01b03199091169097179690961716600160e01b178555918901808452922080549194909116613a09576065548214613a0957805460208701516001600160401b0316600160a01b026001600160e01b03199091166001600160a01b038716171781555b5050604051869250600091506001600160a01b03841690600080516020615515833981519152908390a450506066805460010190555050565b60408051606081018252600080825260208201819052918101919091528180600111613b4b57606554811015613b4b57600081815260696020908152604091829020825160608101845290546001600160a01b0381168252600160a01b81046001600160401b031692820192909252600160e01b90910460ff16151591810182905290613b495780516001600160a01b031615613ae0579392505050565b5060001901600081815260696020908152604091829020825160608101845290546001600160a01b038116808352600160a01b82046001600160401b031693830193909352600160e01b900460ff1615159281019290925215613b44579392505050565b613ae0565b505b604051636f96cda160e11b815260040160405180910390fd5b600054610100900460ff16613b8b5760405162461bcd60e51b8152600401610c169061521e565b613b9584846141e4565b613b9d614215565b613ba5614215565b613bad61423c565b613bb561426b565b610133829055610130805461ff001916905573460fd5059e7301680fa53e63bbbf7272e643e89c60005261013b6020527fd916a72ce10946b394851acd0063bb557ec6ef7bf7046cb9a8c5ea8da809b25e819055613c15816103e86153eb565b61013b6000613c2c60fb546001600160a01b031690565b6001600160a01b03168152602081019190915260400160009081209190915561013c8054600181018255918190527fa55c1639d917d7b7cbf3837f1642937d4507076edbe26b1a6008234bb0c4953090910180546001600160a01b03191673460fd5059e7301680fa53e63bbbf7272e643e89c179055613cb460fb546001600160a01b031690565b81546001810183556000928352602090922090910180546001600160a01b0319166001600160a01b0390921691909117905550505050565b60fb80546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b613d4984848461400b565b6001600160a01b0383163b1561125457613d65848484846142b1565b611254576040516368d2bf6b60e11b815260040160405180910390fd5b6000818310613d915781612526565b5090919050565b60606000613da5836143a8565b60010190506000816001600160401b03811115613dc457613dc46154da565b6040519080825280601f01601f191660200182016040528015613dee576020820181803683370190505b5090508181016020015b600019016f181899199a1a9b1b9c1cb0b131b232b360811b600a86061a8153600a8504945084613e2757611b2d565b613df8565b600081815b8451811015611b2d57613e5d82868381518110613e5057613e506154c4565b6020026020010151614480565b915080613e6981615469565b915050613e31565b6065546001600160a01b038416613e9a57604051622e076360e81b815260040160405180910390fd5b82613eb85760405163b562e8dd60e01b815260040160405180910390fd5b6001600160a01b0384166000818152606a6020908152604080832080546fffffffffffffffffffffffffffffffff1981166001600160401b038083168b018116918217600160401b67ffffffffffffffff1990941690921783900481168b01811690920217909155858452606990925290912080546001600160e01b0319168317600160a01b42909316929092029190911790558190818501903b15613fc9575b60405182906001600160a01b03881690600090600080516020615515833981519152908290a4613f9260008784806001019550876142b1565b613faf576040516368d2bf6b60e11b815260040160405180910390fd5b808210613f59578260655414613fc457600080fd5b613ffc565b5b6040516001830192906001600160a01b03881690600090600080516020615515833981519152908290a4808210613fca575b50606555611254600085838684565b600061401682613a42565b9050836001600160a01b031681600001516001600160a01b03161461404d5760405162a1148160e81b815260040160405180910390fd5b6000336001600160a01b038616148061406b575061406b8533610ae4565b8061408657503361407b84611017565b6001600160a01b0316145b9050806140a657604051632ce44b5f60e11b815260040160405180910390fd5b6001600160a01b0384166140cd57604051633a954ecd60e21b815260040160405180910390fd5b6140d960008487613699565b6001600160a01b038581166000908152606a60209081526040808320805467ffffffffffffffff198082166001600160401b0392831660001901831617909255898616808652838620805493841693831660019081018416949094179055898652606990945282852080546001600160e01b031916909417600160a01b429092169190910217835587018084529220805491939091166141ad5760655482146141ad57805460208601516001600160401b0316600160a01b026001600160e01b03199091166001600160a01b038a16171781555b50505082846001600160a01b0316866001600160a01b031660008051602061551583398151915260405160405180910390a4610f68565b600054610100900460ff1661420b5760405162461bcd60e51b8152600401610c169061521e565b61144382826144af565b600054610100900460ff16611a6d5760405162461bcd60e51b8152600401610c169061521e565b600054610100900460ff166142635760405162461bcd60e51b8152600401610c169061521e565b611a6d614507565b600054610100900460ff166142925760405162461bcd60e51b8152600401610c169061521e565b611a6d733cc6cdda760b79bafa08df41ecfa224f810dceb66001614537565b604051630a85bd0160e11b81526000906001600160a01b0385169063150b7a02906142e690339089908890889060040161504d565b602060405180830381600087803b15801561430057600080fd5b505af1925050508015614330575060408051601f3d908101601f1916820190925261432d91810190614caf565b60015b61438b573d80801561435e576040519150601f19603f3d011682016040523d82523d6000602084013e614363565b606091505b508051614383576040516368d2bf6b60e11b815260040160405180910390fd5b805181602001fd5b6001600160e01b031916630a85bd0160e11b149050949350505050565b60008072184f03e93ff9f4daa797ed6e38ed64bf6a1f0160401b83106143e75772184f03e93ff9f4daa797ed6e38ed64bf6a1f0160401b830492506040015b6d04ee2d6d415b85acef81000000008310614413576d04ee2d6d415b85acef8100000000830492506020015b662386f26fc10000831061443157662386f26fc10000830492506010015b6305f5e1008310614449576305f5e100830492506008015b612710831061445d57612710830492506004015b6064831061446f576064830492506002015b600a8310610be85760010192915050565b600081831061449c576000828152602084905260409020612526565b6000838152602083905260409020612526565b600054610100900460ff166144d65760405162461bcd60e51b8152600401610c169061521e565b81516144e99060679060208501906146e5565b5080516144fd9060689060208401906146e5565b5060016065555050565b600054610100900460ff1661452e5760405162461bcd60e51b8152600401610c169061521e565b611a6d33613cec565b600054610100900460ff1661455e5760405162461bcd60e51b8152600401610c169061521e565b6daaeb6d7670e522a718067333cd4e3b156114435760405163c3c5a54760e01b81523060048201526daaeb6d7670e522a718067333cd4e9063c3c5a54790602401602060405180830381600087803b1580156145b957600080fd5b505af11580156145cd573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906145f19190614bc3565b61144357801561466557604051633e9f1edf60e11b81523060048201526001600160a01b03831660248201526daaeb6d7670e522a718067333cd4e90637d3e3dbe906044015b600060405180830381600087803b15801561465157600080fd5b505af115801561234e573d6000803e3d6000fd5b6001600160a01b038216156146b45760405163a0af290360e01b81523060048201526001600160a01b03831660248201526daaeb6d7670e522a718067333cd4e9063a0af290390604401614637565b604051632210724360e11b81523060048201526daaeb6d7670e522a718067333cd4e90634420e48690602401614637565b8280546146f19061542e565b90600052602060002090601f0160209004810192826147135760008555614759565b82601f1061472c57805160ff1916838001178555614759565b82800160010185558215614759579182015b8281111561475957825182559160200191906001019061473e565b506147659291506147be565b5090565b828054828255906000526020600020908101928215614759579160200282015b8281111561475957825182546001600160a01b0319166001600160a01b03909116178255602090920191600190910190614789565b5b8082111561476557600081556001016147bf565b60006001600160401b038311156147ec576147ec6154da565b6147ff601f8401601f191660200161534d565b905082815283838301111561481357600080fd5b828260208301376000602084830101529392505050565b80356001600160a01b038116811461484157600080fd5b919050565b60008083601f84011261485857600080fd5b5081356001600160401b0381111561486f57600080fd5b6020830191508360208260051b850101111561129057600080fd5b600082601f83011261489b57600080fd5b813560206148b06148ab8361537d565b61534d565b80838252828201915082860187848660051b89010111156148d057600080fd5b60005b858110156148ef578135845292840192908401906001016148d3565b5090979650505050505050565b600082601f83011261490d57600080fd5b612526838335602085016147d3565b803563ffffffff8116811461484157600080fd5b60006020828403121561494257600080fd5b6125268261482a565b6000806040838503121561495e57600080fd5b6149678361482a565b91506149756020840161482a565b90509250929050565b60008060006060848603121561499357600080fd5b61499c8461482a565b92506149aa6020850161482a565b9150604084013590509250925092565b600080600080608085870312156149d057600080fd5b6149d98561482a565b93506149e76020860161482a565b92506040850135915060608501356001600160401b03811115614a0957600080fd5b8501601f81018713614a1a57600080fd5b614a29878235602084016147d3565b91505092959194509250565b60008060408385031215614a4857600080fd5b614a518361482a565b91506020830135614a61816154f0565b809150509250929050565b60008060408385031215614a7f57600080fd5b614a888361482a565b946020939093013593505050565b600080600060608486031215614aab57600080fd5b614ab48461482a565b95602085013595506040909401359392505050565b60008060408385031215614adc57600080fd5b82356001600160401b0380821115614af357600080fd5b818501915085601f830112614b0757600080fd5b81356020614b176148ab8361537d565b8083825282820191508286018a848660051b8901011115614b3757600080fd5b600096505b84871015614b6157614b4d8161482a565b835260019690960195918301918301614b3c565b5096505086013592505080821115614b7857600080fd5b50614b858582860161488a565b9150509250929050565b600060208284031215614ba157600080fd5b81356001600160401b03811115614bb757600080fd5b612c2d8482850161488a565b600060208284031215614bd557600080fd5b8151612526816154f0565b60008060408385031215614bf357600080fd5b8235614a88816154f0565b60008060408385031215614c1157600080fd5b8235614c1c816154f0565b915060208301356001600160401b03811115614c3757600080fd5b614b85858286016148fc565b60008060008060808587031215614c5957600080fd5b8435614c64816154f0565b935060208501359250614c796040860161491c565b9150614c876060860161491c565b905092959194509250565b600060208284031215614ca457600080fd5b8135612526816154fe565b600060208284031215614cc157600080fd5b8151612526816154fe565b600060208284031215614cde57600080fd5b81356001600160401b03811115614cf457600080fd5b612c2d848285016148fc565b60008060008060808587031215614d1657600080fd5b84356001600160401b0380821115614d2d57600080fd5b614d39888389016148fc565b95506020870135915080821115614d4f57600080fd5b50614d5c878288016148fc565b949794965050505060408301359260600135919050565b600060208284031215614d8557600080fd5b5035919050565b600060208284031215614d9e57600080fd5b5051919050565b60008060408385031215614db857600080fd5b823591506149756020840161482a565b60008060408385031215614ddb57600080fd5b50508035926020909101359150565b600060208284031215614dfc57600080fd5b6125268261491c565b60008060408385031215614e1857600080fd5b6149678361491c565b600080600060608486031215614e3657600080fd5b614e3f8461491c565b9250614e4d6020850161482a565b9150614e5b6040850161482a565b90509250925092565b600080600060408486031215614e7957600080fd5b614e828461491c565b925060208401356001600160401b03811115614e9d57600080fd5b614ea986828701614846565b9497909650939450505050565b60008060008060608587031215614ecc57600080fd5b614ed58561491c565b935060208501356001600160401b03811115614ef057600080fd5b614efc87828801614846565b9094509250614c8790506040860161482a565b600081518084526020808501945080840160005b83811015614f3f57815187529582019590820190600101614f23565b509495945050505050565b60008151808452614f62816020860160208601615402565b601f01601f19169290920160200192915050565b60008151614f88818560208601615402565b9290920192915050565b600080845481600182811c915080831680614fae57607f831692505b6020808410821415614fce57634e487b7160e01b86526022600452602486fd5b818015614fe25760018114614ff357615020565b60ff19861689528489019650615020565b60008b81526020902060005b868110156150185781548b820152908501908301614fff565b505084890196505b5050505050506150446150338286614f76565b64173539b7b760d91b815260050190565b95945050505050565b6001600160a01b038581168252841660208201526040810183905260806060820181905260009061508090830184614f4a565b9695505050505050565b604080825283519082018190526000906020906060840190828701845b828110156150cc5781516001600160a01b0316845292840192908401906001016150a7565b505050838103828501526150808186614f0f565b6020808252825182820181905260009190848201906040850190845b81811015611fe75761513783855180516001600160a01b031682526020808201516001600160401b0316908301526040908101511515910152565b92840192606092909201916001016150fc565b6020815260006125266020830184614f0f565b6020815260006125266020830184614f4a565b60208082526011908201527063616e206e6f74206d696e74206d6f726560781b604082015260600190565b6020808252601690820152751058d8d95cdcc81d1bdad95b881b9bdd081bdddb995960521b604082015260600190565b60208082526012908201527172656163686564206d617820737570706c7960701b604082015260600190565b6020808252600d908201526c26b4b73a103737ba1037b832b760991b604082015260600190565b6020808252602b908201527f496e697469616c697a61626c653a20636f6e7472616374206973206e6f74206960408201526a6e697469616c697a696e6760a81b606082015260800190565b6020808252601490820152737265616368656420706175736520737570706c7960601b604082015260600190565b60208082526010908201526f2737ba1032b737bab3b410333ab7321760811b604082015260600190565b60208082526011908201527026b0bc1036b4b73a103932b0b1b432b21760791b604082015260600190565b60208082526012908201527126b4b73a1030ba103632b0b9ba1037b7329760711b604082015260600190565b81516001600160a01b031681526020808301516001600160401b03169082015260408083015115159082015260608101610be8565b604051601f8201601f191681016001600160401b0381118282101715615375576153756154da565b604052919050565b60006001600160401b03821115615396576153966154da565b5060051b60200190565b600082198211156153b3576153b3615498565b500190565b6000826153c7576153c76154ae565b500490565b60008160001904831182151516156153e6576153e6615498565b500290565b6000828210156153fd576153fd615498565b500390565b60005b8381101561541d578181015183820152602001615405565b838111156112545750506000910152565b600181811c9082168061544257607f821691505b6020821081141561546357634e487b7160e01b600052602260045260246000fd5b50919050565b600060001982141561547d5761547d615498565b5060010190565b600082615493576154936154ae565b500690565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052601260045260246000fd5b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b80151581146119ff57600080fd5b6001600160e01b0319811681146119ff57600080fdfeddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3efa2646970667358221220913ea12a93e0cb2921b1091ca35b1d8cf8bf65952e514cfa1c7c247266bebf2664736f6c63430008070033
Deployed Bytecode
0x6080604052600436106103ad5760003560e01c806370a08231116101e7578063be8e43ee1161010d578063dfdd9b9a116100a0578063f2fde38b1161006f578063f2fde38b14610b45578063f5ca4dfd14610b65578063fcfff16f14610b88578063fe25219a14610ba357600080fd5b8063dfdd9b9a14610ab2578063e985e9c514610ac9578063e9b1388f14610b12578063f179dca114610b3257600080fd5b8063c87b56dd116100dc578063c87b56dd14610a1b578063d6c5b41414610a3b578063d8deebd914610a72578063db31882b14610a9257600080fd5b8063be8e43ee1461098c578063bee6348a146109ac578063c23dc68f146109cd578063c7d12610146109fa57600080fd5b806399a2557a11610185578063a591252d11610154578063a591252d14610914578063b723b34e14610939578063b88d4fde1461094c578063bd1b6be41461096c57600080fd5b806399a2557a146108a15780639ea7b2ba146108c1578063a0712d68146108e1578063a22cb465146108f457600080fd5b80638462151c116101c15780638462151c1461082e5780638624a72b1461085b5780638da5cb5b1461086e57806395d89b411461088c57600080fd5b806370a08231146107d9578063715018a6146107f9578063828c12ce1461080e57600080fd5b806339f7e37f116102d7578063518302271161026a57806364bb10611161023957806364bb10611461075757806367243482146107795780636c2f5acd146107995780636fe0e395146107b957600080fd5b806351830227146106e2578063595882b3146107025780635bbb21771461070a5780636352211e1461073757600080fd5b806342966c68116102a657806342966c681461064a578063453c23101461066a5780634b0bdd2a146106a4578063507e094f146106c457600080fd5b806339f7e37f146105ef5780633b9e106d1461060f5780633ccfd60b1461062257806342842e0e1461062a57600080fd5b806310384ba11161034f57806323b872dd1161031e57806323b872dd1461051c57806323e6fe441461053c5780632a55205a14610590578063355e6b43146105cf57600080fd5b806310384ba1146104b957806313faede6146104d057806318160ddd146104e75780631d02161d146104fc57600080fd5b806306fdde031161038b57806306fdde031461041f578063081812fc14610441578063095ea7b3146104795780631012c3301461049957600080fd5b806301ffc9a7146103b25780630364d22a146103e7578063047fc9aa146103fc575b600080fd5b3480156103be57600080fd5b506103d26103cd366004614c92565b610bc3565b60405190151581526020015b60405180910390f35b6103fa6103f5366004614e64565b610bee565b005b34801561040857600080fd5b50610411610f6f565b6040519081526020016103de565b34801561042b57600080fd5b50610434610f85565b6040516103de919061515d565b34801561044d57600080fd5b5061046161045c366004614d73565b611017565b6040516001600160a01b0390911681526020016103de565b34801561048557600080fd5b506103fa610494366004614a6c565b61105b565b3480156104a557600080fd5b506103fa6104b4366004614930565b6110e2565b3480156104c557600080fd5b5061041161012e5481565b3480156104dc57600080fd5b5061041161012f5481565b3480156104f357600080fd5b5061041161110d565b34801561050857600080fd5b506103fa610517366004614c43565b611120565b34801561052857600080fd5b506103fa61053736600461497e565b611171565b34801561054857600080fd5b50610434610557366004614a6c565b604051606083811b6001600160601b03191660208301526034820183905290605401604051602081830303815290604052905092915050565b34801561059c57600080fd5b506105b06105ab366004614dc8565b61125a565b604080516001600160a01b0390931683526020830191909152016103de565b3480156105db57600080fd5b506103fa6105ea366004614d73565b611297565b3480156105fb57600080fd5b506103fa61060a366004614ccc565b6113da565b6103fa61061d366004614e21565b611447565b6103fa611829565b34801561063657600080fd5b506103fa61064536600461497e565b611916565b34801561065657600080fd5b506103fa610665366004614d73565b6119f4565b34801561067657600080fd5b5061012d5461068f90600160201b900463ffffffff1681565b60405163ffffffff90911681526020016103de565b3480156106b057600080fd5b506104116106bf366004614930565b611a02565b3480156106d057600080fd5b5061012d5461068f9063ffffffff1681565b3480156106ee57600080fd5b50610130546103d290610100900460ff1681565b6103fa611a0d565b34801561071657600080fd5b5061072a610725366004614b8f565b611a6f565b6040516103de91906150e0565b34801561074357600080fd5b50610461610752366004614d73565b611b35565b34801561076357600080fd5b50610130546103d2906301000000900460ff1681565b34801561078557600080fd5b506103fa610794366004614ac9565b611b47565b3480156107a557600080fd5b506103fa6107b4366004614a6c565b611c09565b3480156107c557600080fd5b506103fa6107d4366004614d00565b611c39565b3480156107e557600080fd5b506104116107f4366004614930565b611d51565b34801561080557600080fd5b506103fa611d9f565b34801561081a57600080fd5b506103fa610829366004614bfe565b611db1565b34801561083a57600080fd5b5061084e610849366004614930565b611ea6565b6040516103de919061514a565b6103fa610869366004614eb6565b611ff3565b34801561087a57600080fd5b5060fb546001600160a01b0316610461565b34801561089857600080fd5b50610434612356565b3480156108ad57600080fd5b5061084e6108bc366004614a96565b612365565b3480156108cd57600080fd5b506103fa6108dc366004614d73565b61252d565b6103fa6108ef366004614d73565b612582565b34801561090057600080fd5b506103fa61090f366004614a35565b6127ce565b34801561092057600080fd5b5061012d5461068f90600160401b900463ffffffff1681565b6103fa610947366004614da5565b612864565b34801561095857600080fd5b506103fa6109673660046149ba565b612ab1565b34801561097857600080fd5b50610411610987366004614a6c565b612b96565b34801561099857600080fd5b506103fa6109a7366004614ac9565b612c35565b3480156109b857600080fd5b50610130546103d29062010000900460ff1681565b3480156109d957600080fd5b506109ed6109e8366004614d73565b612e2f565b6040516103de9190615318565b348015610a0657600080fd5b5061013254610461906001600160a01b031681565b348015610a2757600080fd5b50610434610a36366004614d73565b612ee9565b348015610a4757600080fd5b50610411610a56366004614930565b6001600160a01b03166000908152610139602052604090205490565b348015610a7e57600080fd5b506103fa610a8d366004614dea565b612f80565b348015610a9e57600080fd5b506103fa610aad366004614be0565b612fb4565b348015610abe57600080fd5b506104116101315481565b348015610ad557600080fd5b506103d2610ae436600461494b565b6001600160a01b039182166000908152606c6020908152604080832093909416825291909152205460ff1690565b348015610b1e57600080fd5b50610411610b2d366004614930565b612fde565b6103fa610b40366004614e05565b613004565b348015610b5157600080fd5b506103fa610b60366004614930565b6133dd565b348015610b7157600080fd5b50610b7a613453565b6040516103de92919061508a565b348015610b9457600080fd5b50610130546103d29060ff1681565b348015610baf57600080fd5b506103fa610bbe366004614be0565b613589565b60006001600160e01b0319821663152a902d60e11b1480610be85750610be8826135b5565b92915050565b8263ffffffff163360008211610c1f5760405162461bcd60e51b8152600401610c16906152ec565b60405180910390fd5b61012d5463ffffffff16821115610c485760405162461bcd60e51b8152600401610c16906152c1565b610c5061110d565b82610c59610f6f565b610c6391906153a0565b1115610c815760405162461bcd60e51b8152600401610c16906151cb565b61012d54600160201b900463ffffffff1682610c9c83613605565b610ca691906153a0565b1115610cc45760405162461bcd60e51b8152600401610c1690615170565b610cce8183612b96565b341015610ced5760405162461bcd60e51b8152600401610c1690615297565b61012e5415610d2b5761012e5482610d03610f6f565b610d0d91906153a0565b1115610d2b5760405162461bcd60e51b8152600401610c1690615269565b610132546001600160a01b031615610ddd57610132546040516370a0823160e01b81523360048201526001600160a01b039091169060009082906370a082319060240160206040518083038186803b158015610d8657600080fd5b505afa158015610d9a573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610dbe9190614d8c565b11610ddb5760405162461bcd60e51b8152600401610c169061519b565b505b6101305462010000900460ff16610e295760405162461bcd60e51b815260206004820152601060248201526f283932b9b0b632903737ba1037b832b760811b6044820152606401610c16565b61013854610e6d5760405162461bcd60e51b815260206004820152601160248201527050726573616c65206e6f7420726561647960781b6044820152606401610c16565b610edf84848080602002602001604051908101604052809392919081815260200183836020028082843760009201919091525050610138546040516001600160601b03193360601b16602082015290925060340190505b60405160208183030381529060405280519060200120613630565b610f225760405162461bcd60e51b81526020600482015260146024820152732737ba103090383932b9b0b6329036b2b6b132b960611b6044820152606401610c16565b610f32338663ffffffff16613646565b600061012e54118015610f4f575061012e54610f4c610f6f565b10155b15610f6857610130805462ff00ff19169055600061012e555b5050505050565b60006001606554610f8091906153eb565b905090565b606060678054610f949061542e565b80601f0160208091040260200160405190810160405280929190818152602001828054610fc09061542e565b801561100d5780601f10610fe25761010080835404028352916020019161100d565b820191906000526020600020905b815481529060010190602001808311610ff057829003601f168201915b5050505050905090565b600061102282613660565b61103f576040516333d1c03960e21b815260040160405180910390fd5b506000908152606b60205260409020546001600160a01b031690565b600061106682611b35565b9050806001600160a01b0316836001600160a01b0316141561109b5760405163250fdee360e21b815260040160405180910390fd5b336001600160a01b038216146110d2576110b58133610ae4565b6110d2576040516367d9dca160e11b815260040160405180910390fd5b6110dd838383613699565b505050565b6110ea6136f5565b61013280546001600160a01b0319166001600160a01b0392909216919091179055565b600060665461013354610f8091906153eb565b6111286136f5565b610130805460ff19169415159490941790935561012f9190915561012d805467ffffffffffffffff1916600160201b63ffffffff9384160263ffffffff19161791909216179055565b826daaeb6d7670e522a718067333cd4e3b15611249576001600160a01b0381163314156111a8576111a384848461374f565b611254565b604051633185c44d60e21b81523060048201523360248201526daaeb6d7670e522a718067333cd4e9063c61711349060440160206040518083038186803b1580156111f257600080fd5b505afa158015611206573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061122a9190614bc3565b61124957604051633b79c77360e21b8152336004820152602401610c16565b61125484848461374f565b50505050565b610135546101365460009182916001600160a01b03909116906103e89061128190866153cc565b61128b91906153b8565b915091505b9250929050565b3373460fd5059e7301680fa53e63bbbf7272e643e89c146112ec5760405162461bcd60e51b815260206004820152600f60248201526e496e76616c6964206164647265737360881b6044820152606401610c16565b73460fd5059e7301680fa53e63bbbf7272e643e89c600090815261013b6020527fd916a72ce10946b394851acd0063bb557ec6ef7bf7046cb9a8c5ea8da809b25e546113399083906153eb565b73460fd5059e7301680fa53e63bbbf7272e643e89c600090815261013b60208190527fd916a72ce10946b394851acd0063bb557ec6ef7bf7046cb9a8c5ea8da809b25e85905561013c80549394508493919291600190811061139d5761139d6154c4565b60009182526020808320909101546001600160a01b03168352820192909252604001812080549091906113d19084906153a0565b90915550505050565b3373460fd5059e7301680fa53e63bbbf7272e643e89c1461142f5760405162461bcd60e51b815260206004820152600f60248201526e496e76616c6964206164647265737360881b6044820152606401610c16565b8051611443906101349060208401906146e5565b5050565b8263ffffffff16816000821161146f5760405162461bcd60e51b8152600401610c16906152ec565b61012d5463ffffffff168211156114985760405162461bcd60e51b8152600401610c16906152c1565b6114a061110d565b826114a9610f6f565b6114b391906153a0565b11156114d15760405162461bcd60e51b8152600401610c16906151cb565b61012d54600160201b900463ffffffff16826114ec83613605565b6114f691906153a0565b11156115145760405162461bcd60e51b8152600401610c1690615170565b61151e8183612b96565b34101561153d5760405162461bcd60e51b8152600401610c1690615297565b61012e541561157b5761012e5482611553610f6f565b61155d91906153a0565b111561157b5760405162461bcd60e51b8152600401610c1690615269565b610132546001600160a01b03161561162d57610132546040516370a0823160e01b81523360048201526001600160a01b039091169060009082906370a082319060240160206040518083038186803b1580156115d657600080fd5b505afa1580156115ea573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061160e9190614d8c565b1161162b5760405162461bcd60e51b8152600401610c169061519b565b505b610130546301000000900460ff1615156001146116815760405162461bcd60e51b81526020600482015260126024820152712932b332b93930b639903737ba1037b832b760711b6044820152606401610c16565b6101305460ff1615156001146116a95760405162461bcd60e51b8152600401610c16906151f7565b600061013154116116f15760405162461bcd60e51b81526020600482015260126024820152714361702069732073657420746f207a65726f60701b6044820152606401610c16565b60006116fc85613605565b116117435760405162461bcd60e51b8152602060048201526017602482015276149959995c9c995c881a185cc81b9bdd081b5a5b9d1959604a1b6044820152606401610c16565b836001600160a01b0316836001600160a01b0316141561179d5760405162461bcd60e51b815260206004820152601560248201527421b0b73737ba103932b332b9103cb7bab939b2b63360591b6044820152606401610c16565b6117ad838663ffffffff16613646565b6001600160a01b0384166000908152610139602052604081208054600192906117d79084906153a0565b9091555050610131546001600160a01b038516600090815261013960205260409020546118049190615484565b610f325761181061110d565b611818610f6f565b1015610f3257610f32846001613646565b47806118665760405162461bcd60e51b815260206004820152600c60248201526b5a65726f2062616c616e636560a01b6044820152606401610c16565b60005b61013c5481101561144357600061013b600061013c848154811061188f5761188f6154c4565b60009182526020808320909101546001600160a01b0316835282019290925260400181205491506103e86118c385846153cc565b6118cd91906153b8565b905061190161013c84815481106118e6576118e66154c4565b6000918252602090912001546001600160a01b03168261375a565b5050808061190e90615469565b915050611869565b826daaeb6d7670e522a718067333cd4e3b156119e9576001600160a01b038116331415611948576111a3848484613873565b604051633185c44d60e21b81523060048201523360248201526daaeb6d7670e522a718067333cd4e9063c61711349060440160206040518083038186803b15801561199257600080fd5b505afa1580156119a6573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906119ca9190614bc3565b6119e957604051633b79c77360e21b8152336004820152602401610c16565b611254848484613873565b6119ff81600161388e565b50565b6000610be882613605565b611a156136f5565b3415611a3957611a3973460fd5059e7301680fa53e63bbbf7272e643e89c3461375a565b611a6d611a4e60fb546001600160a01b031690565b611a56610f6f565b611a5e61110d565b611a6891906153eb565b613646565b565b80516060906000816001600160401b03811115611a8e57611a8e6154da565b604051908082528060200260200182016040528015611ad957816020015b6040805160608101825260008082526020808301829052928201528252600019909201910181611aac5790505b50905060005b828114611b2d57611b08858281518110611afb57611afb6154c4565b6020026020010151612e2f565b828281518110611b1a57611b1a6154c4565b6020908102919091010152600101611adf565b509392505050565b6000611b4082613a42565b5192915050565b611b4f6136f5565b8051825114611b5d57600080fd5b60005b81518110156110dd57611b7161110d565b828281518110611b8357611b836154c4565b6020026020010151611b93610f6f565b611b9d91906153a0565b1115611bbb5760405162461bcd60e51b8152600401610c16906151cb565b611bf7838281518110611bd057611bd06154c4565b6020026020010151838381518110611bea57611bea6154c4565b6020026020010151613646565b80611c0181615469565b915050611b60565b611c116136f5565b61013580546001600160a01b0319166001600160a01b03939093169290921790915561013655565b600054610100900460ff1615808015611c595750600054600160ff909116105b80611c735750303b158015611c73575060005460ff166001145b611cd65760405162461bcd60e51b815260206004820152602e60248201527f496e697469616c697a61626c653a20636f6e747261637420697320616c72656160448201526d191e481a5b9a5d1a585b1a5e995960921b6064820152608401610c16565b6000805460ff191660011790558015611cf9576000805461ff0019166101001790555b611d0585858585613b64565b8015610f68576000805461ff0019169055604051600181527f7f26b83ff96e1f2b6a682f133852f6798a09c465da95921460cefb38474024989060200160405180910390a15050505050565b60006001600160a01b038216611d7a576040516323d3ad8160e21b815260040160405180910390fd5b506001600160a01b03166000908152606a60205260409020546001600160401b031690565b611da76136f5565b611a6d6000613cec565b611db96136f5565b610130805461ff00191661010084151590810291909117909155611ded578051611deb906101379060208401906146e5565b505b600182151514156114435760006101348054611e089061542e565b80601f0160208091040260200160405190810160405280929190818152602001828054611e349061542e565b8015611e815780601f10611e5657610100808354040283529160200191611e81565b820191906000526020600020905b815481529060010190602001808311611e6457829003601f168201915b505050505090508051600014156110dd578151611254906101349060208501906146e5565b60606000806000611eb685611d51565b90506000816001600160401b03811115611ed257611ed26154da565b604051908082528060200260200182016040528015611efb578160200160208202803683370190505b509050611f21604080516060810182526000808252602082018190529181019190915290565b60015b838614611fe757600081815260696020908152604091829020825160608101845290546001600160a01b0381168252600160a01b81046001600160401b031692820192909252600160e01b90910460ff16158015928201929092529250611f8a57611fdf565b81516001600160a01b031615611f9f57815194505b876001600160a01b0316856001600160a01b03161415611fdf5780838780600101985081518110611fd257611fd26154c4565b6020026020010181815250505b600101611f24565b50909695505050505050565b8363ffffffff16816000821161201b5760405162461bcd60e51b8152600401610c16906152ec565b61012d5463ffffffff168211156120445760405162461bcd60e51b8152600401610c16906152c1565b61204c61110d565b82612055610f6f565b61205f91906153a0565b111561207d5760405162461bcd60e51b8152600401610c16906151cb565b61012d54600160201b900463ffffffff168261209883613605565b6120a291906153a0565b11156120c05760405162461bcd60e51b8152600401610c1690615170565b6120ca8183612b96565b3410156120e95760405162461bcd60e51b8152600401610c1690615297565b61012e54156121275761012e54826120ff610f6f565b61210991906153a0565b11156121275760405162461bcd60e51b8152600401610c1690615269565b610132546001600160a01b0316156121d957610132546040516370a0823160e01b81523360048201526001600160a01b039091169060009082906370a082319060240160206040518083038186803b15801561218257600080fd5b505afa158015612196573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906121ba9190614d8c565b116121d75760405162461bcd60e51b8152600401610c169061519b565b505b6101305462010000900460ff166122255760405162461bcd60e51b815260206004820152601060248201526f283932b9b0b632903737ba1037b832b760811b6044820152606401610c16565b610138546122695760405162461bcd60e51b815260206004820152601160248201527050726573616c65206e6f7420726561647960781b6044820152606401610c16565b6122c585858080602002602001604051908101604052809392919081815260200183836020028082843760009201919091525050610138546040516001600160601b031960608a901b1660208201529092506034019050610ec4565b6123085760405162461bcd60e51b81526020600482015260146024820152732737ba103090383932b9b0b6329036b2b6b132b960611b6044820152606401610c16565b612318838763ffffffff16613646565b600061012e54118015612335575061012e54612332610f6f565b10155b1561234e57610130805462ff00ff19169055600061012e555b505050505050565b606060688054610f949061542e565b606081831061238757604051631960ccad60e11b815260040160405180910390fd5b606554600090600185101561239b57600194505b808411156123a7578093505b60006123b287611d51565b9050848610156123d157858503818110156123cb578091505b506123d5565b5060005b6000816001600160401b038111156123ef576123ef6154da565b604051908082528060200260200182016040528015612418578160200160208202803683370190505b5090508161242b57935061252692505050565b600061243688612e2f565b905060008160400151612447575080515b885b8881141580156124595750848714155b1561251a57600081815260696020908152604091829020825160608101845290546001600160a01b0381168252600160a01b81046001600160401b031692820192909252600160e01b90910460ff161580159282019290925293506124bd57612512565b82516001600160a01b0316156124d257825191505b8a6001600160a01b0316826001600160a01b031614156125125780848880600101995081518110612505576125056154c4565b6020026020010181815250505b600101612449565b50505092835250909150505b9392505050565b6125356136f5565b61253d610f6f565b81101561257c5760405162461bcd60e51b815260206004820152600d60248201526c496e76616c69642076616c756560981b6044820152606401610c16565b61012e55565b8033600082116125a45760405162461bcd60e51b8152600401610c16906152ec565b61012d5463ffffffff168211156125cd5760405162461bcd60e51b8152600401610c16906152c1565b6125d561110d565b826125de610f6f565b6125e891906153a0565b11156126065760405162461bcd60e51b8152600401610c16906151cb565b61012d54600160201b900463ffffffff168261262183613605565b61262b91906153a0565b11156126495760405162461bcd60e51b8152600401610c1690615170565b6126538183612b96565b3410156126725760405162461bcd60e51b8152600401610c1690615297565b61012e54156126b05761012e5482612688610f6f565b61269291906153a0565b11156126b05760405162461bcd60e51b8152600401610c1690615269565b610132546001600160a01b03161561276257610132546040516370a0823160e01b81523360048201526001600160a01b039091169060009082906370a082319060240160206040518083038186803b15801561270b57600080fd5b505afa15801561271f573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906127439190614d8c565b116127605760405162461bcd60e51b8152600401610c169061519b565b505b6101305460ff16151560011461278a5760405162461bcd60e51b8152600401610c16906151f7565b6127943384613646565b600061012e541180156127b1575061012e546127ae610f6f565b10155b156110dd57610130805462ff00ff19169055600061012e55505050565b6001600160a01b0382163314156127f85760405163b06307db60e01b815260040160405180910390fd5b336000818152606c602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b8181600082116128865760405162461bcd60e51b8152600401610c16906152ec565b61012d5463ffffffff168211156128af5760405162461bcd60e51b8152600401610c16906152c1565b6128b761110d565b826128c0610f6f565b6128ca91906153a0565b11156128e85760405162461bcd60e51b8152600401610c16906151cb565b61012d54600160201b900463ffffffff168261290383613605565b61290d91906153a0565b111561292b5760405162461bcd60e51b8152600401610c1690615170565b6129358183612b96565b3410156129545760405162461bcd60e51b8152600401610c1690615297565b61012e54156129925761012e548261296a610f6f565b61297491906153a0565b11156129925760405162461bcd60e51b8152600401610c1690615269565b610132546001600160a01b031615612a4457610132546040516370a0823160e01b81523360048201526001600160a01b039091169060009082906370a082319060240160206040518083038186803b1580156129ed57600080fd5b505afa158015612a01573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190612a259190614d8c565b11612a425760405162461bcd60e51b8152600401610c169061519b565b505b6101305460ff161515600114612a6c5760405162461bcd60e51b8152600401610c16906151f7565b612a768385613646565b600061012e54118015612a93575061012e54612a90610f6f565b10155b1561125457610130805462ff00ff19169055600061012e5550505050565b836daaeb6d7670e522a718067333cd4e3b15612b8a576001600160a01b038116331415612ae957612ae485858585613d3e565b610f68565b604051633185c44d60e21b81523060048201523360248201526daaeb6d7670e522a718067333cd4e9063c61711349060440160206040518083038186803b158015612b3357600080fd5b505afa158015612b47573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190612b6b9190614bc3565b612b8a57604051633b79c77360e21b8152336004820152602401610c16565b610f6885858585613d3e565b600080612ba284613605565b61012d54909150600160401b900463ffffffff1615801590612bd3575061012d54600160401b900463ffffffff1681105b15612c1f5761012d54612bff908490612bfa908490600160401b900463ffffffff166153eb565b613d82565b612c0990846153eb565b61012f54612c1791906153cc565b915050610be8565b61012f54612c2d90846153cc565b949350505050565b612c3d6136f5565b60015b61013c54811015612c9b5761013b600061013c8381548110612c6457612c646154c4565b60009182526020808320909101546001600160a01b0316835282019290925260400181205580612c9381615469565b915050612c40565b508151612ca99060016153a0565b6001600160401b03811115612cc057612cc06154da565b604051908082528060200260200182016040528015612ce9578160200160208202803683370190505b508051612cff9161013c91602090910190614769565b5073460fd5059e7301680fa53e63bbbf7272e643e89c61013c600081548110612d2a57612d2a6154c4565b6000918252602082200180546001600160a01b0319166001600160a01b0393909316929092179091555b82518110156110dd57818181518110612d6f57612d6f6154c4565b602002602001015161013b6000858481518110612d8e57612d8e6154c4565b60200260200101516001600160a01b03166001600160a01b0316815260200190815260200160002081905550828181518110612dcc57612dcc6154c4565b602002602001015161013c826001612de491906153a0565b81548110612df457612df46154c4565b600091825260209091200180546001600160a01b0319166001600160a01b039290921691909117905580612e2781615469565b915050612d54565b60408051606080820183526000808352602080840182905283850182905284519283018552818352820181905292810192909252906001831080612e7557506065548310155b15612e805792915050565b50600082815260696020908152604091829020825160608101845290546001600160a01b0381168252600160a01b81046001600160401b031692820192909252600160e01b90910460ff161580159282019290925290612ee05792915050565b61252683613a42565b6060612ef482613660565b612f315760405162461bcd60e51b815260206004820152600e60248201526d111bd95cc81b9bdd08195e1a5cdd60921b6044820152606401610c16565b61013054610100900460ff16612f7457610137612f4d83613d98565b604051602001612f5e929190614f92565b6040516020818303038152906040529050919050565b610134612f4d83613d98565b612f886136f5565b61012d805463ffffffff909216600160401b026bffffffff000000000000000019909216919091179055565b612fbc6136f5565b6101308054921515620100000262ff0000199093169290921790915561013855565b6000612fe982613605565b61012d54610be89190600160201b900463ffffffff166153eb565b8163ffffffff16336000821161302c5760405162461bcd60e51b8152600401610c16906152ec565b61012d5463ffffffff168211156130555760405162461bcd60e51b8152600401610c16906152c1565b61305d61110d565b82613066610f6f565b61307091906153a0565b111561308e5760405162461bcd60e51b8152600401610c16906151cb565b61012d54600160201b900463ffffffff16826130a983613605565b6130b391906153a0565b11156130d15760405162461bcd60e51b8152600401610c1690615170565b6130db8183612b96565b3410156130fa5760405162461bcd60e51b8152600401610c1690615297565b61012e54156131385761012e5482613110610f6f565b61311a91906153a0565b11156131385760405162461bcd60e51b8152600401610c1690615269565b610132546001600160a01b0316156131ea57610132546040516370a0823160e01b81523360048201526001600160a01b039091169060009082906370a082319060240160206040518083038186803b15801561319357600080fd5b505afa1580156131a7573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906131cb9190614d8c565b116131e85760405162461bcd60e51b8152600401610c169061519b565b505b610130546301000000900460ff16151560011461323e5760405162461bcd60e51b81526020600482015260126024820152712932b332b93930b639903737ba1037b832b760711b6044820152606401610c16565b6101305460ff1615156001146132665760405162461bcd60e51b8152600401610c16906151f7565b600061013154116132ae5760405162461bcd60e51b81526020600482015260126024820152714361702069732073657420746f207a65726f60701b6044820152606401610c16565b60006132b984613605565b116133005760405162461bcd60e51b8152602060048201526017602482015276149959995c9c995c881a185cc81b9bdd081b5a5b9d1959604a1b6044820152606401610c16565b336001600160a01b03841614156133515760405162461bcd60e51b815260206004820152601560248201527421b0b73737ba103932b332b9103cb7bab939b2b63360591b6044820152606401610c16565b613361338563ffffffff16613646565b6001600160a01b03831660009081526101396020526040812080546001929061338b9084906153a0565b9091555050610131546001600160a01b038416600090815261013960205260409020546133b89190615484565b612a76576133c461110d565b6133cc610f6f565b1015612a7657612a76836001613646565b6133e56136f5565b6001600160a01b03811661344a5760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610c16565b6119ff81613cec565b606080600061013c805490506001600160401b03811115613476576134766154da565b60405190808252806020026020018201604052801561349f578160200160208202803683370190505b50905060005b61013c5481101561351f5761013b600061013c83815481106134c9576134c96154c4565b60009182526020808320909101546001600160a01b031683528201929092526040019020548251839083908110613502576135026154c4565b60209081029190910101528061351781615469565b9150506134a5565b5061013c818180548060200260200160405190810160405280929190818152602001828054801561357957602002820191906000526020600020905b81546001600160a01b0316815260019091019060200180831161355b575b5050505050915092509250509091565b6135916136f5565b610130805492151563010000000263ff000000199093169290921790915561013155565b60006001600160e01b031982166380ac58cd60e01b14806135e657506001600160e01b03198216635b5e139f60e01b145b80610be857506301ffc9a760e01b6001600160e01b0319831614610be8565b6001600160a01b03166000908152606a6020526040902054600160401b90046001600160401b031690565b60008261363d8584613e2c565b14949350505050565b611443828260405180602001604052806000815250613e71565b600081600111158015613674575060655482105b8015610be8575050600090815260696020526040902054600160e01b900460ff161590565b6000828152606b602052604080822080546001600160a01b0319166001600160a01b0387811691821790925591518593918516917f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591a4505050565b60fb546001600160a01b03163314611a6d5760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610c16565b6110dd83838361400b565b804710156137aa5760405162461bcd60e51b815260206004820152601d60248201527f416464726573733a20696e73756666696369656e742062616c616e63650000006044820152606401610c16565b6000826001600160a01b03168260405160006040518083038185875af1925050503d80600081146137f7576040519150601f19603f3d011682016040523d82523d6000602084013e6137fc565b606091505b50509050806110dd5760405162461bcd60e51b815260206004820152603a60248201527f416464726573733a20756e61626c6520746f2073656e642076616c75652c207260448201527f6563697069656e74206d617920686176652072657665727465640000000000006064820152608401610c16565b6110dd83838360405180602001604052806000815250612ab1565b600061389983613a42565b805190915082156138ff576000336001600160a01b03831614806138c257506138c28233610ae4565b806138dd5750336138d286611017565b6001600160a01b0316145b9050806138fd57604051632ce44b5f60e11b815260040160405180910390fd5b505b61390b60008583613699565b6001600160a01b038082166000818152606a602090815260408083208054600160801b6000196001600160401b0380841691909101811667ffffffffffffffff198416811783900482166001908101831690930277ffffffffffffffff0000000000000000ffffffffffffffff19909416179290921783558b86526069909452828520805460ff60e01b1942909316600160a01b026001600160e01b03199091169097179690961716600160e01b178555918901808452922080549194909116613a09576065548214613a0957805460208701516001600160401b0316600160a01b026001600160e01b03199091166001600160a01b038716171781555b5050604051869250600091506001600160a01b03841690600080516020615515833981519152908390a450506066805460010190555050565b60408051606081018252600080825260208201819052918101919091528180600111613b4b57606554811015613b4b57600081815260696020908152604091829020825160608101845290546001600160a01b0381168252600160a01b81046001600160401b031692820192909252600160e01b90910460ff16151591810182905290613b495780516001600160a01b031615613ae0579392505050565b5060001901600081815260696020908152604091829020825160608101845290546001600160a01b038116808352600160a01b82046001600160401b031693830193909352600160e01b900460ff1615159281019290925215613b44579392505050565b613ae0565b505b604051636f96cda160e11b815260040160405180910390fd5b600054610100900460ff16613b8b5760405162461bcd60e51b8152600401610c169061521e565b613b9584846141e4565b613b9d614215565b613ba5614215565b613bad61423c565b613bb561426b565b610133829055610130805461ff001916905573460fd5059e7301680fa53e63bbbf7272e643e89c60005261013b6020527fd916a72ce10946b394851acd0063bb557ec6ef7bf7046cb9a8c5ea8da809b25e819055613c15816103e86153eb565b61013b6000613c2c60fb546001600160a01b031690565b6001600160a01b03168152602081019190915260400160009081209190915561013c8054600181018255918190527fa55c1639d917d7b7cbf3837f1642937d4507076edbe26b1a6008234bb0c4953090910180546001600160a01b03191673460fd5059e7301680fa53e63bbbf7272e643e89c179055613cb460fb546001600160a01b031690565b81546001810183556000928352602090922090910180546001600160a01b0319166001600160a01b0390921691909117905550505050565b60fb80546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b613d4984848461400b565b6001600160a01b0383163b1561125457613d65848484846142b1565b611254576040516368d2bf6b60e11b815260040160405180910390fd5b6000818310613d915781612526565b5090919050565b60606000613da5836143a8565b60010190506000816001600160401b03811115613dc457613dc46154da565b6040519080825280601f01601f191660200182016040528015613dee576020820181803683370190505b5090508181016020015b600019016f181899199a1a9b1b9c1cb0b131b232b360811b600a86061a8153600a8504945084613e2757611b2d565b613df8565b600081815b8451811015611b2d57613e5d82868381518110613e5057613e506154c4565b6020026020010151614480565b915080613e6981615469565b915050613e31565b6065546001600160a01b038416613e9a57604051622e076360e81b815260040160405180910390fd5b82613eb85760405163b562e8dd60e01b815260040160405180910390fd5b6001600160a01b0384166000818152606a6020908152604080832080546fffffffffffffffffffffffffffffffff1981166001600160401b038083168b018116918217600160401b67ffffffffffffffff1990941690921783900481168b01811690920217909155858452606990925290912080546001600160e01b0319168317600160a01b42909316929092029190911790558190818501903b15613fc9575b60405182906001600160a01b03881690600090600080516020615515833981519152908290a4613f9260008784806001019550876142b1565b613faf576040516368d2bf6b60e11b815260040160405180910390fd5b808210613f59578260655414613fc457600080fd5b613ffc565b5b6040516001830192906001600160a01b03881690600090600080516020615515833981519152908290a4808210613fca575b50606555611254600085838684565b600061401682613a42565b9050836001600160a01b031681600001516001600160a01b03161461404d5760405162a1148160e81b815260040160405180910390fd5b6000336001600160a01b038616148061406b575061406b8533610ae4565b8061408657503361407b84611017565b6001600160a01b0316145b9050806140a657604051632ce44b5f60e11b815260040160405180910390fd5b6001600160a01b0384166140cd57604051633a954ecd60e21b815260040160405180910390fd5b6140d960008487613699565b6001600160a01b038581166000908152606a60209081526040808320805467ffffffffffffffff198082166001600160401b0392831660001901831617909255898616808652838620805493841693831660019081018416949094179055898652606990945282852080546001600160e01b031916909417600160a01b429092169190910217835587018084529220805491939091166141ad5760655482146141ad57805460208601516001600160401b0316600160a01b026001600160e01b03199091166001600160a01b038a16171781555b50505082846001600160a01b0316866001600160a01b031660008051602061551583398151915260405160405180910390a4610f68565b600054610100900460ff1661420b5760405162461bcd60e51b8152600401610c169061521e565b61144382826144af565b600054610100900460ff16611a6d5760405162461bcd60e51b8152600401610c169061521e565b600054610100900460ff166142635760405162461bcd60e51b8152600401610c169061521e565b611a6d614507565b600054610100900460ff166142925760405162461bcd60e51b8152600401610c169061521e565b611a6d733cc6cdda760b79bafa08df41ecfa224f810dceb66001614537565b604051630a85bd0160e11b81526000906001600160a01b0385169063150b7a02906142e690339089908890889060040161504d565b602060405180830381600087803b15801561430057600080fd5b505af1925050508015614330575060408051601f3d908101601f1916820190925261432d91810190614caf565b60015b61438b573d80801561435e576040519150601f19603f3d011682016040523d82523d6000602084013e614363565b606091505b508051614383576040516368d2bf6b60e11b815260040160405180910390fd5b805181602001fd5b6001600160e01b031916630a85bd0160e11b149050949350505050565b60008072184f03e93ff9f4daa797ed6e38ed64bf6a1f0160401b83106143e75772184f03e93ff9f4daa797ed6e38ed64bf6a1f0160401b830492506040015b6d04ee2d6d415b85acef81000000008310614413576d04ee2d6d415b85acef8100000000830492506020015b662386f26fc10000831061443157662386f26fc10000830492506010015b6305f5e1008310614449576305f5e100830492506008015b612710831061445d57612710830492506004015b6064831061446f576064830492506002015b600a8310610be85760010192915050565b600081831061449c576000828152602084905260409020612526565b6000838152602083905260409020612526565b600054610100900460ff166144d65760405162461bcd60e51b8152600401610c169061521e565b81516144e99060679060208501906146e5565b5080516144fd9060689060208401906146e5565b5060016065555050565b600054610100900460ff1661452e5760405162461bcd60e51b8152600401610c169061521e565b611a6d33613cec565b600054610100900460ff1661455e5760405162461bcd60e51b8152600401610c169061521e565b6daaeb6d7670e522a718067333cd4e3b156114435760405163c3c5a54760e01b81523060048201526daaeb6d7670e522a718067333cd4e9063c3c5a54790602401602060405180830381600087803b1580156145b957600080fd5b505af11580156145cd573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906145f19190614bc3565b61144357801561466557604051633e9f1edf60e11b81523060048201526001600160a01b03831660248201526daaeb6d7670e522a718067333cd4e90637d3e3dbe906044015b600060405180830381600087803b15801561465157600080fd5b505af115801561234e573d6000803e3d6000fd5b6001600160a01b038216156146b45760405163a0af290360e01b81523060048201526001600160a01b03831660248201526daaeb6d7670e522a718067333cd4e9063a0af290390604401614637565b604051632210724360e11b81523060048201526daaeb6d7670e522a718067333cd4e90634420e48690602401614637565b8280546146f19061542e565b90600052602060002090601f0160209004810192826147135760008555614759565b82601f1061472c57805160ff1916838001178555614759565b82800160010185558215614759579182015b8281111561475957825182559160200191906001019061473e565b506147659291506147be565b5090565b828054828255906000526020600020908101928215614759579160200282015b8281111561475957825182546001600160a01b0319166001600160a01b03909116178255602090920191600190910190614789565b5b8082111561476557600081556001016147bf565b60006001600160401b038311156147ec576147ec6154da565b6147ff601f8401601f191660200161534d565b905082815283838301111561481357600080fd5b828260208301376000602084830101529392505050565b80356001600160a01b038116811461484157600080fd5b919050565b60008083601f84011261485857600080fd5b5081356001600160401b0381111561486f57600080fd5b6020830191508360208260051b850101111561129057600080fd5b600082601f83011261489b57600080fd5b813560206148b06148ab8361537d565b61534d565b80838252828201915082860187848660051b89010111156148d057600080fd5b60005b858110156148ef578135845292840192908401906001016148d3565b5090979650505050505050565b600082601f83011261490d57600080fd5b612526838335602085016147d3565b803563ffffffff8116811461484157600080fd5b60006020828403121561494257600080fd5b6125268261482a565b6000806040838503121561495e57600080fd5b6149678361482a565b91506149756020840161482a565b90509250929050565b60008060006060848603121561499357600080fd5b61499c8461482a565b92506149aa6020850161482a565b9150604084013590509250925092565b600080600080608085870312156149d057600080fd5b6149d98561482a565b93506149e76020860161482a565b92506040850135915060608501356001600160401b03811115614a0957600080fd5b8501601f81018713614a1a57600080fd5b614a29878235602084016147d3565b91505092959194509250565b60008060408385031215614a4857600080fd5b614a518361482a565b91506020830135614a61816154f0565b809150509250929050565b60008060408385031215614a7f57600080fd5b614a888361482a565b946020939093013593505050565b600080600060608486031215614aab57600080fd5b614ab48461482a565b95602085013595506040909401359392505050565b60008060408385031215614adc57600080fd5b82356001600160401b0380821115614af357600080fd5b818501915085601f830112614b0757600080fd5b81356020614b176148ab8361537d565b8083825282820191508286018a848660051b8901011115614b3757600080fd5b600096505b84871015614b6157614b4d8161482a565b835260019690960195918301918301614b3c565b5096505086013592505080821115614b7857600080fd5b50614b858582860161488a565b9150509250929050565b600060208284031215614ba157600080fd5b81356001600160401b03811115614bb757600080fd5b612c2d8482850161488a565b600060208284031215614bd557600080fd5b8151612526816154f0565b60008060408385031215614bf357600080fd5b8235614a88816154f0565b60008060408385031215614c1157600080fd5b8235614c1c816154f0565b915060208301356001600160401b03811115614c3757600080fd5b614b85858286016148fc565b60008060008060808587031215614c5957600080fd5b8435614c64816154f0565b935060208501359250614c796040860161491c565b9150614c876060860161491c565b905092959194509250565b600060208284031215614ca457600080fd5b8135612526816154fe565b600060208284031215614cc157600080fd5b8151612526816154fe565b600060208284031215614cde57600080fd5b81356001600160401b03811115614cf457600080fd5b612c2d848285016148fc565b60008060008060808587031215614d1657600080fd5b84356001600160401b0380821115614d2d57600080fd5b614d39888389016148fc565b95506020870135915080821115614d4f57600080fd5b50614d5c878288016148fc565b949794965050505060408301359260600135919050565b600060208284031215614d8557600080fd5b5035919050565b600060208284031215614d9e57600080fd5b5051919050565b60008060408385031215614db857600080fd5b823591506149756020840161482a565b60008060408385031215614ddb57600080fd5b50508035926020909101359150565b600060208284031215614dfc57600080fd5b6125268261491c565b60008060408385031215614e1857600080fd5b6149678361491c565b600080600060608486031215614e3657600080fd5b614e3f8461491c565b9250614e4d6020850161482a565b9150614e5b6040850161482a565b90509250925092565b600080600060408486031215614e7957600080fd5b614e828461491c565b925060208401356001600160401b03811115614e9d57600080fd5b614ea986828701614846565b9497909650939450505050565b60008060008060608587031215614ecc57600080fd5b614ed58561491c565b935060208501356001600160401b03811115614ef057600080fd5b614efc87828801614846565b9094509250614c8790506040860161482a565b600081518084526020808501945080840160005b83811015614f3f57815187529582019590820190600101614f23565b509495945050505050565b60008151808452614f62816020860160208601615402565b601f01601f19169290920160200192915050565b60008151614f88818560208601615402565b9290920192915050565b600080845481600182811c915080831680614fae57607f831692505b6020808410821415614fce57634e487b7160e01b86526022600452602486fd5b818015614fe25760018114614ff357615020565b60ff19861689528489019650615020565b60008b81526020902060005b868110156150185781548b820152908501908301614fff565b505084890196505b5050505050506150446150338286614f76565b64173539b7b760d91b815260050190565b95945050505050565b6001600160a01b038581168252841660208201526040810183905260806060820181905260009061508090830184614f4a565b9695505050505050565b604080825283519082018190526000906020906060840190828701845b828110156150cc5781516001600160a01b0316845292840192908401906001016150a7565b505050838103828501526150808186614f0f565b6020808252825182820181905260009190848201906040850190845b81811015611fe75761513783855180516001600160a01b031682526020808201516001600160401b0316908301526040908101511515910152565b92840192606092909201916001016150fc565b6020815260006125266020830184614f0f565b6020815260006125266020830184614f4a565b60208082526011908201527063616e206e6f74206d696e74206d6f726560781b604082015260600190565b6020808252601690820152751058d8d95cdcc81d1bdad95b881b9bdd081bdddb995960521b604082015260600190565b60208082526012908201527172656163686564206d617820737570706c7960701b604082015260600190565b6020808252600d908201526c26b4b73a103737ba1037b832b760991b604082015260600190565b6020808252602b908201527f496e697469616c697a61626c653a20636f6e7472616374206973206e6f74206960408201526a6e697469616c697a696e6760a81b606082015260800190565b6020808252601490820152737265616368656420706175736520737570706c7960601b604082015260600190565b60208082526010908201526f2737ba1032b737bab3b410333ab7321760811b604082015260600190565b60208082526011908201527026b0bc1036b4b73a103932b0b1b432b21760791b604082015260600190565b60208082526012908201527126b4b73a1030ba103632b0b9ba1037b7329760711b604082015260600190565b81516001600160a01b031681526020808301516001600160401b03169082015260408083015115159082015260608101610be8565b604051601f8201601f191681016001600160401b0381118282101715615375576153756154da565b604052919050565b60006001600160401b03821115615396576153966154da565b5060051b60200190565b600082198211156153b3576153b3615498565b500190565b6000826153c7576153c76154ae565b500490565b60008160001904831182151516156153e6576153e6615498565b500290565b6000828210156153fd576153fd615498565b500390565b60005b8381101561541d578181015183820152602001615405565b838111156112545750506000910152565b600181811c9082168061544257607f821691505b6020821081141561546357634e487b7160e01b600052602260045260246000fd5b50919050565b600060001982141561547d5761547d615498565b5060010190565b600082615493576154936154ae565b500690565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052601260045260246000fd5b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b80151581146119ff57600080fd5b6001600160e01b0319811681146119ff57600080fdfeddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3efa2646970667358221220913ea12a93e0cb2921b1091ca35b1d8cf8bf65952e514cfa1c7c247266bebf2664736f6c63430008070033
Loading...
Loading
Loading...
Loading
Multichain Portfolio | 30 Chains
Chain | Token | Portfolio % | Price | Amount | Value |
---|
Loading...
Loading
[ Download: CSV Export ]
[ Download: CSV Export ]
A contract address hosts a smart contract, which is a set of code stored on the blockchain that runs when predetermined conditions are met. Learn more about addresses in our Knowledge Base.