Source Code
Overview
ETH Balance
0 ETH
Eth Value
$0.00Latest 25 from a total of 253 transactions
Transaction Hash |
Method
|
Block
|
From
|
To
|
|||||
---|---|---|---|---|---|---|---|---|---|
Refund | 19947105 | 413 days ago | IN | 0 ETH | 0.00038936 | ||||
Refund | 19947103 | 413 days ago | IN | 0 ETH | 0.00045382 | ||||
Refund | 19947102 | 413 days ago | IN | 0 ETH | 0.00045587 | ||||
Refund | 19947101 | 413 days ago | IN | 0 ETH | 0.00046356 | ||||
Refund | 19947100 | 413 days ago | IN | 0 ETH | 0.00051029 | ||||
Refund | 19947099 | 413 days ago | IN | 0 ETH | 0.0004229 | ||||
Refund | 19947098 | 413 days ago | IN | 0 ETH | 0.0003762 | ||||
Refund | 19947096 | 413 days ago | IN | 0 ETH | 0.00043608 | ||||
Refund | 19947095 | 413 days ago | IN | 0 ETH | 0.00040306 | ||||
Refund | 19947094 | 413 days ago | IN | 0 ETH | 0.00042126 | ||||
Refund | 19947093 | 413 days ago | IN | 0 ETH | 0.00042667 | ||||
Refund | 19947092 | 413 days ago | IN | 0 ETH | 0.00053805 | ||||
Refund | 19947091 | 413 days ago | IN | 0 ETH | 0.00054002 | ||||
Refund | 19947090 | 413 days ago | IN | 0 ETH | 0.00044945 | ||||
Refund | 19947089 | 413 days ago | IN | 0 ETH | 0.00045805 | ||||
Refund | 19947088 | 413 days ago | IN | 0 ETH | 0.00047715 | ||||
Refund | 19947087 | 413 days ago | IN | 0 ETH | 0.00053736 | ||||
Refund | 19947086 | 413 days ago | IN | 0 ETH | 0.0005644 | ||||
Refund | 19947085 | 413 days ago | IN | 0 ETH | 0.00057213 | ||||
Refund | 19947084 | 413 days ago | IN | 0 ETH | 0.00057132 | ||||
Refund | 19947083 | 413 days ago | IN | 0 ETH | 0.00047962 | ||||
Refund | 19947082 | 413 days ago | IN | 0 ETH | 0.00047097 | ||||
Refund | 19947081 | 413 days ago | IN | 0 ETH | 0.00042151 | ||||
Refund | 19947080 | 413 days ago | IN | 0 ETH | 0.00045064 | ||||
Refund | 19947079 | 413 days ago | IN | 0 ETH | 0.00044858 |
View more zero value Internal Transactions in Advanced View mode
Advanced mode:
Loading...
Loading
Contract Name:
Sale
Compiler Version
v0.8.20+commit.a1b79de6
Optimization Enabled:
Yes with 200 runs
Other Settings:
paris EvmVersion
Contract Source Code (Solidity Standard Json-Input format)
// SPDX-License-Identifier: MIT pragma solidity ^0.8.20; import {IERC20} from "@openzeppelin/contracts/token/ERC20/IERC20.sol"; import {IERC20Metadata} from "@openzeppelin/contracts/token/ERC20/extensions/IERC20Metadata.sol"; import {SafeERC20} from "@openzeppelin/contracts/token/ERC20/utils/SafeERC20.sol"; import {AccessControl} from "@openzeppelin/contracts/access/AccessControl.sol"; import {ERC165} from "@openzeppelin/contracts/utils/introspection/ERC165.sol"; import {ReentrancyGuard} from "@openzeppelin/contracts/utils/ReentrancyGuard.sol"; import {MerkleProof} from "@openzeppelin/contracts/utils/cryptography/MerkleProof.sol"; import {ISale} from "./ISale.sol"; import {RisingTide} from "../RisingTide/RisingTide.sol"; import {Math} from "../libraries/Math.sol"; /// Users interact with this contract to deposit $USDC in exchange for $CTND. /// The contract should hold all $CTND tokens meant to be distributed in the public sale contract Sale is ISale, RisingTide, ERC165, AccessControl, ReentrancyGuard { using SafeERC20 for IERC20; using Math for uint256; struct Account { uint256 uncappedAllocation; bool refunded; } // // Constants // bytes32 public constant CAP_VALIDATOR_ROLE = keccak256("CAP_VALIDATOR_ROLE"); // multiplier used for rate conversions uint256 constant MUL = 1 ether; // // Events // /// Emitted for every public purchase event Purchase( address indexed from, uint256 paymentTokenAmount, uint256 tokenAmount ); /// Emitted for every claim event Claim(address indexed to, uint256 tokenAmount); /// Emitted for every refund given event Refund(address indexed to, uint256 paymentTokenAmount); /// Emitted every time someone withdraws their funds event Withdraw(address indexed to, uint256 paymentTokenAmount); // // State // /// See {ISale.token} address public override(ISale) token; /// See {ISale.paymentToken} address public immutable override(ISale) paymentToken; /// Fixed price of token, expressed in paymentToken amount uint256 public immutable rate; /// Fixed minimum price of token, expressed in paymentToken amount uint256 public immutable minPrice; /// Fixed maximum price of token, expressed in paymentToken amount uint256 public immutable maxPrice; /// Minimum amount per contribution, expressed in paymentToken amount uint256 public minContribution; /// Maximum amount per contribution, expressed in paymentToken amount uint256 public maxContribution; /// Timestamp at which sale starts uint256 public start; /// Timestamp at which sale ends uint256 public end; /// Timestamp at which registration period starts uint256 public startRegistration; /// Timestamp at which registration period ends uint256 public endRegistration; /// Total tokens available for sale uint256 public immutable totalTokensForSale; /// Minimum amount to be raised uint256 public minTarget; /// Maximum amount to be raised uint256 public maxTarget; /// Token allocations committed by each buyer mapping(address => Account) accounts; /// incrementing index => investor address mapping(uint256 => address) investorByIndex; /// total unique investors uint256 _investorCount; /// How many tokens have been allocated, before cap calculation uint256 public totalUncappedAllocations; /// Did the admins already withdraw all aUSD from sales bool public withdrawn; // Merkle root for contributions validation bytes32 public merkleRoot; error MaxContributorsReached(); error InvalidLeaf(); /// @param _paymentToken Token accepted as payment /// @param _rate token:paymentToken exchange rate, multiplied by 10e18 /// @param _start Start timestamp /// @param _end End timestamp /// @param _totalTokensForSale Total amount of tokens for sale /// @param _minTarget Minimum target for the sale /// @param _maxTarget Maximum target for the sale /// @param _startRegistration Registration period start timestamp /// @param _endRegistration Registration period end timestamp constructor( address _paymentToken, uint256 _rate, uint256 _start, uint256 _end, uint256 _totalTokensForSale, uint256 _minTarget, uint256 _maxTarget, uint256 _startRegistration, uint256 _endRegistration ) { require(_paymentToken != address(0), "can't be zero"); require(_rate > 0, "can't be zero"); require(_start > 0, "can't be zero"); require(_end > _start, "end must be after start"); require(_totalTokensForSale > 0, "total cannot be 0"); require(_minTarget > 0, "_minTarget cannot be 0"); require( _maxTarget > _minTarget, "_maxTarget cannot be lower than _minTarget" ); require( _endRegistration > _startRegistration, "_endRegistration cannot be lower than _startRegistration" ); paymentToken = _paymentToken; rate = _rate; start = _start; end = _end; totalTokensForSale = _totalTokensForSale; minTarget = _minTarget; maxTarget = _maxTarget; startRegistration = _startRegistration; endRegistration = _endRegistration; minPrice = 0.2 * 1e6; maxPrice = 0.4 * 1e6; _grantRole(DEFAULT_ADMIN_ROLE, msg.sender); _grantRole(CAP_VALIDATOR_ROLE, msg.sender); } modifier beforeSale() { require(block.timestamp <= start, "sale active"); _; } /// Ensures we're running during the set sale period modifier inSale() { require( block.timestamp >= start && block.timestamp <= end, "sale not active" ); _; } modifier afterSale() { require(block.timestamp > end, "sale not over"); _; } /// Ensures the individual cap is already calculated modifier capCalculated() { require(risingTide_isValidCap(), "cap not yet set"); _; } // // ISale // /// @inheritdoc ISale function withdraw() external onlyRole(DEFAULT_ADMIN_ROLE) capCalculated nonReentrant { require(block.timestamp > end, "sale not ended yet"); require(!withdrawn, "already withdrawn"); withdrawn = true; uint256 allocatedAmount = allocated(); uint256 paymentTokenAmount = tokenToPaymentToken(allocatedAmount); emit Withdraw(msg.sender, paymentTokenAmount); IERC20(paymentToken).transfer(msg.sender, paymentTokenAmount); } /// @inheritdoc ISale function paymentTokenToToken( uint256 _paymentAmount ) public view override(ISale) returns (uint256) { return (_paymentAmount * MUL) / rate; } /// @inheritdoc ISale function tokenToPaymentToken( uint256 _tokenAmount ) public view override(ISale) returns (uint256) { return (_tokenAmount * rate) / MUL; } /// @inheritdoc ISale function buy( uint256 _amount, bytes32[] calldata _merkleProof ) external override(ISale) inSale nonReentrant { if (_investorCount >= maxTarget / minContribution) revert MaxContributorsReached(); bytes32 leaf = keccak256(abi.encodePacked(msg.sender)); bool isValidLeaf = MerkleProof.verify(_merkleProof, merkleRoot, leaf); if (!isValidLeaf) revert InvalidLeaf(); require( _amount >= paymentTokenToToken(minContribution), "can't be below minimum" ); uint256 paymentAmount = tokenToPaymentToken(_amount); require(paymentAmount > 0, "can't be zero"); uint256 currentAllocation = accounts[msg.sender].uncappedAllocation; if (currentAllocation == 0) { investorByIndex[_investorCount] = msg.sender; _investorCount++; } accounts[msg.sender].uncappedAllocation += _amount; totalUncappedAllocations += _amount; emit Purchase(msg.sender, paymentAmount, _amount); IERC20(paymentToken).safeTransferFrom( msg.sender, address(this), paymentAmount ); } /// @inheritdoc ISale function refund( address to ) public override(ISale) capCalculated nonReentrant { Account storage account = accounts[to]; require(!account.refunded, "already refunded"); uint256 amount = refundAmount(to); require(amount > 0, "No tokens to refund"); accounts[to].refunded = true; IERC20(paymentToken).transfer(to, amount); emit Refund(to, amount); } /// @inheritdoc ISale function refundAmount( address to ) public view override(ISale) returns (uint256) { if (!risingTide_isValidCap()) { return 0; } Account memory account = accounts[to]; if (account.refunded) { return 0; } uint256 uncapped = account.uncappedAllocation; uint256 capped = allocation(to); return tokenToPaymentToken(uncapped - capped); } function uncappedAllocation( address _to ) public view override(ISale) returns (uint256) { return accounts[_to].uncappedAllocation; } /// @inheritdoc ISale function allocation( address _to ) public view override(ISale) returns (uint256) { if (tokenToPaymentToken(totalUncappedAllocations) < minTarget) { return 0; } if (tokenToPaymentToken(totalUncappedAllocations) > maxTarget) { return _applyCap(uncappedAllocation(_to)); } return (tokenToPaymentToken(uncappedAllocation(_to)) / currentTokenPrice()) * MUL; } function currentTokenPrice() public view returns (uint256) { if (tokenToPaymentToken(totalUncappedAllocations) < minTarget) { return minPrice; } if (tokenToPaymentToken(totalUncappedAllocations) > maxTarget) { return maxPrice; } return minPrice + ((maxPrice - minPrice) * (tokenToPaymentToken(totalUncappedAllocations) - minTarget)) / (maxTarget - minTarget); } // // RisingTide // /// @inheritdoc RisingTide function investorCount() public view override(RisingTide) returns (uint256) { return _investorCount; } /// @inheritdoc RisingTide function investorAmountAt( uint256 i ) public view override(RisingTide) returns (uint256) { address addr = investorByIndex[i]; Account storage account = accounts[addr]; return account.uncappedAllocation; } /// @inheritdoc RisingTide function risingTide_totalAllocatedUncapped() public view override(RisingTide) returns (uint256) { return totalUncappedAllocations; } /// @inheritdoc RisingTide function risingTide_totalCap() public view override(RisingTide) returns (uint256) { return totalTokensForSale; } // // Admin API // function setToken( address _token ) external onlyRole(DEFAULT_ADMIN_ROLE) beforeSale nonReentrant { require(_token != address(0), "can't be zero"); token = _token; } function setMerkleRoot( bytes32 _merkleRoot ) external onlyRole(DEFAULT_ADMIN_ROLE) nonReentrant { merkleRoot = _merkleRoot; } function setStartRegistration( uint256 _startRegistration ) external onlyRole(DEFAULT_ADMIN_ROLE) nonReentrant { startRegistration = _startRegistration; } function setEndRegistration( uint256 _endRegistration ) external onlyRole(DEFAULT_ADMIN_ROLE) nonReentrant { endRegistration = _endRegistration; } function setStart( uint256 _start ) external onlyRole(DEFAULT_ADMIN_ROLE) nonReentrant { start = _start; } function setEnd( uint256 _end ) external onlyRole(DEFAULT_ADMIN_ROLE) nonReentrant { end = _end; } function setMinTarget( uint256 _minTarget ) external onlyRole(DEFAULT_ADMIN_ROLE) beforeSale nonReentrant { minTarget = _minTarget; } function setMaxTarget( uint256 _maxTarget ) external onlyRole(DEFAULT_ADMIN_ROLE) beforeSale nonReentrant { maxTarget = _maxTarget; } /// Sets the individual cap /// @dev Can only be called once /// /// @param _cap new individual cap function setIndividualCap( uint256 _cap ) external onlyRole(CAP_VALIDATOR_ROLE) afterSale nonReentrant { _risingTide_setCap(_cap); } /// Sets the minimum contribution /// @param _minContribution new minimum contribution function setMinContribution( uint256 _minContribution ) external onlyRole(DEFAULT_ADMIN_ROLE) nonReentrant { require(_minContribution > 0, "can't be zero"); minContribution = _minContribution; } // // ERC165 // /// @inheritdoc ERC165 function supportsInterface( bytes4 interfaceId ) public view virtual override(ERC165, AccessControl) returns (bool) { return interfaceId == type(ISale).interfaceId || super.supportsInterface(interfaceId); } // // Other public APIs // /// @return the amount of tokens already allocated function allocated() public view returns (uint256) { return Math.min(totalUncappedAllocations, totalTokensForSale); } // // Internal API // /** * Applies the individual cap to the given amount * * @param _amount amount to apply cap to * @return capped amount */ function _applyCap(uint256 _amount) internal view returns (uint256) { if (!risingTide_isValidCap()) { return 0; } if (_amount >= individualCap) { return individualCap; } return _amount; } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v5.0.0) (token/ERC20/IERC20.sol) pragma solidity ^0.8.20; /** * @dev Interface of the ERC20 standard as defined in the EIP. */ interface IERC20 { /** * @dev Emitted when `value` tokens are moved from one account (`from`) to * another (`to`). * * Note that `value` may be zero. */ event Transfer(address indexed from, address indexed to, uint256 value); /** * @dev Emitted when the allowance of a `spender` for an `owner` is set by * a call to {approve}. `value` is the new allowance. */ event Approval(address indexed owner, address indexed spender, uint256 value); /** * @dev Returns the value of tokens in existence. */ function totalSupply() external view returns (uint256); /** * @dev Returns the value of tokens owned by `account`. */ function balanceOf(address account) external view returns (uint256); /** * @dev Moves a `value` amount of tokens from the caller's account to `to`. * * Returns a boolean value indicating whether the operation succeeded. * * Emits a {Transfer} event. */ function transfer(address to, uint256 value) external returns (bool); /** * @dev Returns the remaining number of tokens that `spender` will be * allowed to spend on behalf of `owner` through {transferFrom}. This is * zero by default. * * This value changes when {approve} or {transferFrom} are called. */ function allowance(address owner, address spender) external view returns (uint256); /** * @dev Sets a `value` amount of tokens as the allowance of `spender` over the * caller's tokens. * * Returns a boolean value indicating whether the operation succeeded. * * IMPORTANT: Beware that changing an allowance with this method brings the risk * that someone may use both the old and the new allowance by unfortunate * transaction ordering. One possible solution to mitigate this race * condition is to first reduce the spender's allowance to 0 and set the * desired value afterwards: * https://github.com/ethereum/EIPs/issues/20#issuecomment-263524729 * * Emits an {Approval} event. */ function approve(address spender, uint256 value) external returns (bool); /** * @dev Moves a `value` amount of tokens from `from` to `to` using the * allowance mechanism. `value` is then deducted from the caller's * allowance. * * Returns a boolean value indicating whether the operation succeeded. * * Emits a {Transfer} event. */ function transferFrom(address from, address to, uint256 value) external returns (bool); }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v5.0.0) (token/ERC20/extensions/IERC20Metadata.sol) pragma solidity ^0.8.20; import {IERC20} from "../IERC20.sol"; /** * @dev Interface for the optional metadata functions from the ERC20 standard. */ interface IERC20Metadata is IERC20 { /** * @dev Returns the name of the token. */ function name() external view returns (string memory); /** * @dev Returns the symbol of the token. */ function symbol() external view returns (string memory); /** * @dev Returns the decimals places of the token. */ function decimals() external view returns (uint8); }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v5.0.0) (token/ERC20/utils/SafeERC20.sol) pragma solidity ^0.8.20; import {IERC20} from "../IERC20.sol"; import {IERC20Permit} from "../extensions/IERC20Permit.sol"; import {Address} from "../../../utils/Address.sol"; /** * @title SafeERC20 * @dev Wrappers around ERC20 operations that throw on failure (when the token * contract returns false). Tokens that return no value (and instead revert or * throw on failure) are also supported, non-reverting calls are assumed to be * successful. * To use this library you can add a `using SafeERC20 for IERC20;` statement to your contract, * which allows you to call the safe operations as `token.safeTransfer(...)`, etc. */ library SafeERC20 { using Address for address; /** * @dev An operation with an ERC20 token failed. */ error SafeERC20FailedOperation(address token); /** * @dev Indicates a failed `decreaseAllowance` request. */ error SafeERC20FailedDecreaseAllowance(address spender, uint256 currentAllowance, uint256 requestedDecrease); /** * @dev Transfer `value` amount of `token` from the calling contract to `to`. If `token` returns no value, * non-reverting calls are assumed to be successful. */ function safeTransfer(IERC20 token, address to, uint256 value) internal { _callOptionalReturn(token, abi.encodeCall(token.transfer, (to, value))); } /** * @dev Transfer `value` amount of `token` from `from` to `to`, spending the approval given by `from` to the * calling contract. If `token` returns no value, non-reverting calls are assumed to be successful. */ function safeTransferFrom(IERC20 token, address from, address to, uint256 value) internal { _callOptionalReturn(token, abi.encodeCall(token.transferFrom, (from, to, value))); } /** * @dev Increase the calling contract's allowance toward `spender` by `value`. If `token` returns no value, * non-reverting calls are assumed to be successful. */ function safeIncreaseAllowance(IERC20 token, address spender, uint256 value) internal { uint256 oldAllowance = token.allowance(address(this), spender); forceApprove(token, spender, oldAllowance + value); } /** * @dev Decrease the calling contract's allowance toward `spender` by `requestedDecrease`. If `token` returns no * value, non-reverting calls are assumed to be successful. */ function safeDecreaseAllowance(IERC20 token, address spender, uint256 requestedDecrease) internal { unchecked { uint256 currentAllowance = token.allowance(address(this), spender); if (currentAllowance < requestedDecrease) { revert SafeERC20FailedDecreaseAllowance(spender, currentAllowance, requestedDecrease); } forceApprove(token, spender, currentAllowance - requestedDecrease); } } /** * @dev Set the calling contract's allowance toward `spender` to `value`. If `token` returns no value, * non-reverting calls are assumed to be successful. Meant to be used with tokens that require the approval * to be set to zero before setting it to a non-zero value, such as USDT. */ function forceApprove(IERC20 token, address spender, uint256 value) internal { bytes memory approvalCall = abi.encodeCall(token.approve, (spender, value)); if (!_callOptionalReturnBool(token, approvalCall)) { _callOptionalReturn(token, abi.encodeCall(token.approve, (spender, 0))); _callOptionalReturn(token, approvalCall); } } /** * @dev Imitates a Solidity high-level call (i.e. a regular function call to a contract), relaxing the requirement * on the return value: the return value is optional (but if data is returned, it must not be false). * @param token The token targeted by the call. * @param data The call data (encoded using abi.encode or one of its variants). */ function _callOptionalReturn(IERC20 token, bytes memory data) private { // We need to perform a low level call here, to bypass Solidity's return data size checking mechanism, since // we're implementing it ourselves. We use {Address-functionCall} to perform this call, which verifies that // the target address contains contract code and also asserts for success in the low-level call. bytes memory returndata = address(token).functionCall(data); if (returndata.length != 0 && !abi.decode(returndata, (bool))) { revert SafeERC20FailedOperation(address(token)); } } /** * @dev Imitates a Solidity high-level call (i.e. a regular function call to a contract), relaxing the requirement * on the return value: the return value is optional (but if data is returned, it must not be false). * @param token The token targeted by the call. * @param data The call data (encoded using abi.encode or one of its variants). * * This is a variant of {_callOptionalReturn} that silents catches all reverts and returns a bool instead. */ function _callOptionalReturnBool(IERC20 token, bytes memory data) private returns (bool) { // We need to perform a low level call here, to bypass Solidity's return data size checking mechanism, since // we're implementing it ourselves. We cannot use {Address-functionCall} here since this should return false // and not revert is the subcall reverts. (bool success, bytes memory returndata) = address(token).call(data); return success && (returndata.length == 0 || abi.decode(returndata, (bool))) && address(token).code.length > 0; } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v5.0.0) (access/AccessControl.sol) pragma solidity ^0.8.20; import {IAccessControl} from "./IAccessControl.sol"; import {Context} from "../utils/Context.sol"; import {ERC165} from "../utils/introspection/ERC165.sol"; /** * @dev Contract module that allows children to implement role-based access * control mechanisms. This is a lightweight version that doesn't allow enumerating role * members except through off-chain means by accessing the contract event logs. Some * applications may benefit from on-chain enumerability, for those cases see * {AccessControlEnumerable}. * * Roles are referred to by their `bytes32` identifier. These should be exposed * in the external API and be unique. The best way to achieve this is by * using `public constant` hash digests: * * ```solidity * bytes32 public constant MY_ROLE = keccak256("MY_ROLE"); * ``` * * Roles can be used to represent a set of permissions. To restrict access to a * function call, use {hasRole}: * * ```solidity * function foo() public { * require(hasRole(MY_ROLE, msg.sender)); * ... * } * ``` * * Roles can be granted and revoked dynamically via the {grantRole} and * {revokeRole} functions. Each role has an associated admin role, and only * accounts that have a role's admin role can call {grantRole} and {revokeRole}. * * By default, the admin role for all roles is `DEFAULT_ADMIN_ROLE`, which means * that only accounts with this role will be able to grant or revoke other * roles. More complex role relationships can be created by using * {_setRoleAdmin}. * * WARNING: The `DEFAULT_ADMIN_ROLE` is also its own admin: it has permission to * grant and revoke this role. Extra precautions should be taken to secure * accounts that have been granted it. We recommend using {AccessControlDefaultAdminRules} * to enforce additional security measures for this role. */ abstract contract AccessControl is Context, IAccessControl, ERC165 { struct RoleData { mapping(address account => bool) hasRole; bytes32 adminRole; } mapping(bytes32 role => RoleData) private _roles; bytes32 public constant DEFAULT_ADMIN_ROLE = 0x00; /** * @dev Modifier that checks that an account has a specific role. Reverts * with an {AccessControlUnauthorizedAccount} error including the required role. */ modifier onlyRole(bytes32 role) { _checkRole(role); _; } /** * @dev See {IERC165-supportsInterface}. */ function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) { return interfaceId == type(IAccessControl).interfaceId || super.supportsInterface(interfaceId); } /** * @dev Returns `true` if `account` has been granted `role`. */ function hasRole(bytes32 role, address account) public view virtual returns (bool) { return _roles[role].hasRole[account]; } /** * @dev Reverts with an {AccessControlUnauthorizedAccount} error if `_msgSender()` * is missing `role`. Overriding this function changes the behavior of the {onlyRole} modifier. */ function _checkRole(bytes32 role) internal view virtual { _checkRole(role, _msgSender()); } /** * @dev Reverts with an {AccessControlUnauthorizedAccount} error if `account` * is missing `role`. */ function _checkRole(bytes32 role, address account) internal view virtual { if (!hasRole(role, account)) { revert AccessControlUnauthorizedAccount(account, role); } } /** * @dev Returns the admin role that controls `role`. See {grantRole} and * {revokeRole}. * * To change a role's admin, use {_setRoleAdmin}. */ function getRoleAdmin(bytes32 role) public view virtual returns (bytes32) { return _roles[role].adminRole; } /** * @dev Grants `role` to `account`. * * If `account` had not been already granted `role`, emits a {RoleGranted} * event. * * Requirements: * * - the caller must have ``role``'s admin role. * * May emit a {RoleGranted} event. */ function grantRole(bytes32 role, address account) public virtual onlyRole(getRoleAdmin(role)) { _grantRole(role, account); } /** * @dev Revokes `role` from `account`. * * If `account` had been granted `role`, emits a {RoleRevoked} event. * * Requirements: * * - the caller must have ``role``'s admin role. * * May emit a {RoleRevoked} event. */ function revokeRole(bytes32 role, address account) public virtual onlyRole(getRoleAdmin(role)) { _revokeRole(role, account); } /** * @dev Revokes `role` from the calling account. * * Roles are often managed via {grantRole} and {revokeRole}: this function's * purpose is to provide a mechanism for accounts to lose their privileges * if they are compromised (such as when a trusted device is misplaced). * * If the calling account had been revoked `role`, emits a {RoleRevoked} * event. * * Requirements: * * - the caller must be `callerConfirmation`. * * May emit a {RoleRevoked} event. */ function renounceRole(bytes32 role, address callerConfirmation) public virtual { if (callerConfirmation != _msgSender()) { revert AccessControlBadConfirmation(); } _revokeRole(role, callerConfirmation); } /** * @dev Sets `adminRole` as ``role``'s admin role. * * Emits a {RoleAdminChanged} event. */ function _setRoleAdmin(bytes32 role, bytes32 adminRole) internal virtual { bytes32 previousAdminRole = getRoleAdmin(role); _roles[role].adminRole = adminRole; emit RoleAdminChanged(role, previousAdminRole, adminRole); } /** * @dev Attempts to grant `role` to `account` and returns a boolean indicating if `role` was granted. * * Internal function without access restriction. * * May emit a {RoleGranted} event. */ function _grantRole(bytes32 role, address account) internal virtual returns (bool) { if (!hasRole(role, account)) { _roles[role].hasRole[account] = true; emit RoleGranted(role, account, _msgSender()); return true; } else { return false; } } /** * @dev Attempts to revoke `role` to `account` and returns a boolean indicating if `role` was revoked. * * Internal function without access restriction. * * May emit a {RoleRevoked} event. */ function _revokeRole(bytes32 role, address account) internal virtual returns (bool) { if (hasRole(role, account)) { _roles[role].hasRole[account] = false; emit RoleRevoked(role, account, _msgSender()); return true; } else { return false; } } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v5.0.0) (utils/introspection/ERC165.sol) pragma solidity ^0.8.20; import {IERC165} from "./IERC165.sol"; /** * @dev Implementation of the {IERC165} interface. * * Contracts that want to implement ERC165 should inherit from this contract and override {supportsInterface} to check * for the additional interface id that will be supported. For example: * * ```solidity * function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) { * return interfaceId == type(MyInterface).interfaceId || super.supportsInterface(interfaceId); * } * ``` */ abstract contract ERC165 is IERC165 { /** * @dev See {IERC165-supportsInterface}. */ function supportsInterface(bytes4 interfaceId) public view virtual returns (bool) { return interfaceId == type(IERC165).interfaceId; } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v5.0.0) (utils/ReentrancyGuard.sol) pragma solidity ^0.8.20; /** * @dev Contract module that helps prevent reentrant calls to a function. * * Inheriting from `ReentrancyGuard` will make the {nonReentrant} modifier * available, which can be applied to functions to make sure there are no nested * (reentrant) calls to them. * * Note that because there is a single `nonReentrant` guard, functions marked as * `nonReentrant` may not call one another. This can be worked around by making * those functions `private`, and then adding `external` `nonReentrant` entry * points to them. * * TIP: If you would like to learn more about reentrancy and alternative ways * to protect against it, check out our blog post * https://blog.openzeppelin.com/reentrancy-after-istanbul/[Reentrancy After Istanbul]. */ abstract contract ReentrancyGuard { // Booleans are more expensive than uint256 or any type that takes up a full // word because each write operation emits an extra SLOAD to first read the // slot's contents, replace the bits taken up by the boolean, and then write // back. This is the compiler's defense against contract upgrades and // pointer aliasing, and it cannot be disabled. // The values being non-zero value makes deployment a bit more expensive, // but in exchange the refund on every call to nonReentrant will be lower in // amount. Since refunds are capped to a percentage of the total // transaction's gas, it is best to keep them low in cases like this one, to // increase the likelihood of the full refund coming into effect. uint256 private constant NOT_ENTERED = 1; uint256 private constant ENTERED = 2; uint256 private _status; /** * @dev Unauthorized reentrant call. */ error ReentrancyGuardReentrantCall(); constructor() { _status = NOT_ENTERED; } /** * @dev Prevents a contract from calling itself, directly or indirectly. * Calling a `nonReentrant` function from another `nonReentrant` * function is not supported. It is possible to prevent this from happening * by making the `nonReentrant` function external, and making it call a * `private` function that does the actual work. */ modifier nonReentrant() { _nonReentrantBefore(); _; _nonReentrantAfter(); } function _nonReentrantBefore() private { // On the first call to nonReentrant, _status will be NOT_ENTERED if (_status == ENTERED) { revert ReentrancyGuardReentrantCall(); } // Any calls to nonReentrant after this point will fail _status = ENTERED; } function _nonReentrantAfter() private { // By storing the original value once again, a refund is triggered (see // https://eips.ethereum.org/EIPS/eip-2200) _status = NOT_ENTERED; } /** * @dev Returns true if the reentrancy guard is currently set to "entered", which indicates there is a * `nonReentrant` function in the call stack. */ function _reentrancyGuardEntered() internal view returns (bool) { return _status == ENTERED; } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v5.0.0) (utils/cryptography/MerkleProof.sol) pragma solidity ^0.8.20; /** * @dev These functions deal with verification of Merkle Tree proofs. * * The tree and the proofs can be generated using our * https://github.com/OpenZeppelin/merkle-tree[JavaScript library]. * You will find a quickstart guide in the readme. * * 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. * OpenZeppelin's JavaScript library generates Merkle trees that are safe * against this attack out of the box. */ library MerkleProof { /** *@dev The multiproof provided is not valid. */ error MerkleProofInvalidMultiproof(); /** * @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} */ 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. */ 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} */ 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 simultaneously proven to be a part of a Merkle tree defined by * `root`, according to `proof` and `proofFlags` as described in {processMultiProof}. * * CAUTION: Not all Merkle trees admit multiproofs. See {processMultiProof} for details. */ 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} * * CAUTION: Not all Merkle trees admit multiproofs. See {processMultiProof} for details. */ 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 sibling nodes in `proof`. The reconstruction * proceeds by incrementally reconstructing all inner nodes by combining a leaf/inner node with either another * leaf/inner node or a proof sibling node, depending on whether each `proofFlags` item is true or false * respectively. * * CAUTION: Not all Merkle trees admit multiproofs. To use multiproofs, it is sufficient to ensure that: 1) the tree * is complete (but not necessarily perfect), 2) the leaves to be proven are in the opposite order they are in the * tree (i.e., as seen from right to left starting at the deepest layer and continuing at the next layer). */ function processMultiProof( bytes32[] memory proof, bool[] memory proofFlags, bytes32[] memory leaves ) internal pure returns (bytes32 merkleRoot) { // This function rebuilds 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 proofLen = proof.length; uint256 totalHashes = proofFlags.length; // Check proof validity. if (leavesLen + proofLen != totalHashes + 1) { revert MerkleProofInvalidMultiproof(); } // 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 from 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) { if (proofPos != proofLen) { revert MerkleProofInvalidMultiproof(); } unchecked { return hashes[totalHashes - 1]; } } else if (leavesLen > 0) { return leaves[0]; } else { return proof[0]; } } /** * @dev Calldata version of {processMultiProof}. * * CAUTION: Not all Merkle trees admit multiproofs. See {processMultiProof} for details. */ function processMultiProofCalldata( bytes32[] calldata proof, bool[] calldata proofFlags, bytes32[] memory leaves ) internal pure returns (bytes32 merkleRoot) { // This function rebuilds 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 proofLen = proof.length; uint256 totalHashes = proofFlags.length; // Check proof validity. if (leavesLen + proofLen != totalHashes + 1) { revert MerkleProofInvalidMultiproof(); } // 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 from 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) { if (proofPos != proofLen) { revert MerkleProofInvalidMultiproof(); } unchecked { return hashes[totalHashes - 1]; } } else if (leavesLen > 0) { return leaves[0]; } else { return proof[0]; } } /** * @dev Sorts the pair (a, b) and hashes the result. */ function _hashPair(bytes32 a, bytes32 b) private pure returns (bytes32) { return a < b ? _efficientHash(a, b) : _efficientHash(b, a); } /** * @dev Implementation of keccak256(abi.encode(a, b)) that doesn't allocate or expand memory. */ 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) } } }
// SPDX-License-Identifier: MIT pragma solidity ^0.8.20; interface ISale { /// The $CTND token function token() external view returns (address); /// The $USDC token function paymentToken() external view returns (address); /// How many $CTND will be received for the given payment amount function paymentTokenToToken( uint256 _paymentAmount ) external view returns (uint256); /// How many $USDC will be received for the given $CTND amount function tokenToPaymentToken( uint256 _tokenAmount ) external view returns (uint256); /// Commits an amount of $USDC to buy $CTND /// /// @dev USDC allowance must be previously set by spender /// @dev Actual $CTND allocation is only available once individual cap is set /// /// @param _paymentAmount amount in payment token to commit function buy( uint256 _paymentAmount, bytes32[] calldata _merkleProof ) external; /** * Refunds currently refundable amount for the given address * * @param to Address to refund to */ function refund(address to) external; /** * Returns the amount of tokens that are meant for refund due to the * rising tide mechanism * * @param to The address to query * @return The currently claimable amount */ function refundAmount(address to) external view returns (uint256); /** * Sets the individual cap for investors, which will then be used when * claiming or refunding. Only callable by the cap validator role. * * @param cap The cap per investor to be set, specified in $CTND */ function setIndividualCap(uint256 cap) external; /** * Returns the amount of tokens that have been allocated in this sale for * a given address (applying the individual cap) * * @param _who The address to query */ function allocation(address _who) external view returns (uint256); /** * Returns the amount of tokens that have been allocated in this sale for * a given address (ignoring the individual cap) * * @param _who The address to query */ function uncappedAllocation(address _who) external view returns (uint256); /** * Allows a privileged account to withdraw payment tokens once the sale is over * * @notice Does not allow withdrawing funds meant for refunds */ function withdraw() external; }
// SPDX-License-Identifier: MIT pragma solidity ^0.8.20; import {Math} from "../libraries/Math.sol"; /** * Abstract implementation of a Rising Tide Calculator * * @dev In addition to implementing this interface, the contract must also * ensure no investments are possible once the Rising Tide calculation kicks in */ abstract contract RisingTide { // // Libraries // using Math for uint256; // // Structs // enum RisingTideState { NotSet, // cap not yet given, or invalid Validating, // cap has been given, but still being validated Finished, // cap is set. claims and refunds are open Invalid // the current cap was deemed invalid } struct RisingTideCache { uint256 index; // what index are we at uint256 sumForCap; // cumulative investments with given cap uint256 sumForNextCap; // cumulative investments with next cap uint256 largest; // largest investment so far } // // Constants // /// Min gas required to run one more cap validation iteration uint256 public constant CAP_VALIDATION_GAS_LIMIT = 100000; // // State // /// Current state RisingTideState public risingTideState; /// Calculation cache RisingTideCache public risingTideCache; /// The currently set cap /// Maximum amount of tokens that each buyer can actually get uint256 public individualCap; // // Virtual Interface // /// @return How many individual investors exist function investorCount() public view virtual returns (uint256); /// @return Amount of the nth investor function investorAmountAt(uint256 n) public view virtual returns (uint256); /// How many allocations have been made, regardless of the future individual cap /// /// @return Total amount invested function risingTide_totalAllocatedUncapped() public view virtual returns (uint256); /// How many tokens are to be distributed in total /// /// @return amount corresponding to the total supply available for distribution function risingTide_totalCap() public view virtual returns (uint256); /// @return true if validation of current cap is still ongoing function risingTide_validating() external view returns (bool) { return risingTideState == RisingTideState.Validating; } /// @return true if current cap is already validated function risingTide_isValidCap() public view returns (bool) { return risingTideState == RisingTideState.Finished; } /// Internal helper to set a new cap and trigger the beginning of the validation logic /// /// @param _cap The cap to validate function _risingTide_setCap(uint256 _cap) internal { require( risingTideState == RisingTideState.NotSet || risingTideState == RisingTideState.Invalid, "already set or in progress" ); individualCap = _cap; risingTideState = RisingTideState.Validating; risingTideCache = RisingTideCache(0, 0, 0, 0); risingTide_validate(); } /// Continues a pending validation of the individual cap function risingTide_validate() public { require(risingTideState == RisingTideState.Validating); RisingTideCache memory validation = risingTideCache; uint256 count = investorCount(); uint256 localCap = individualCap; for ( ; validation.index < count && gasleft() > CAP_VALIDATION_GAS_LIMIT; ++validation.index ) { uint256 amount = investorAmountAt(validation.index); validation.sumForCap += amount.min(localCap); validation.sumForNextCap += amount.min(localCap + 1); validation.largest = Math.max(validation.largest, amount); } risingTideCache = validation; if (validation.index == count) { bool _valid = _risingTide_validCap(localCap, validation); if (_valid) { risingTideState = RisingTideState.Finished; } else { risingTideState = RisingTideState.Invalid; } } } /** * Applies the individual cap to the given amount * * @param _amount amount to apply cap to * @return capped amount */ function risingTide_applyCap( uint256 _amount ) public view returns (uint256) { if (!risingTide_isValidCap()) { return 0; } if (_amount >= individualCap) { return individualCap; } return _amount; } // // Internal API // /// @dev Determine if the given rising tide cap is valid. /// /// If the maximum investment is not reached, the rising tide cap does not /// have an upper bound. In this scenario, the cap is conventioned to be the /// largest individual investment. /// /// If the maximum investment is reached, the rising tide cap is defined as /// the highest possible cap such that the sum of all contributions with the /// cap applied does not exceed the maximum investment. This means that the /// sum of all contirbutions with any cap above the rising tide cap applied /// would exceed the maximum investment limit. /// /// @param _cap Rising tide cap to be validated, in wei. /// @param _validation The calculated CapValidation struct /// /// @return true if `cap` is a valid rising tide cap for the given parameters. function _risingTide_validCap( uint256 _cap, RisingTideCache memory _validation ) internal view returns (bool) { uint256 total = risingTide_totalAllocatedUncapped(); uint256 max = risingTide_totalCap(); require(_validation.largest <= total); require(_validation.sumForCap <= total); require(_validation.sumForNextCap <= total); if (total <= max) { return _cap == _validation.largest; } else { return (_validation.sumForNextCap > max && _validation.sumForCap <= max); } } }
// SPDX-License-Identifier: MIT pragma solidity ^0.8.20; library Math { /** * @dev Return the smallest of the two arguments. */ function min(uint256 a, uint256 b) internal pure returns (uint256) { return a < b ? a : b; } /** * @dev Return the largest of the two arguments. */ function max(uint256 a, uint256 b) internal pure returns (uint256) { return b < a ? a : b; } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v5.0.0) (token/ERC20/extensions/IERC20Permit.sol) pragma solidity ^0.8.20; /** * @dev Interface of the ERC20 Permit extension allowing approvals to be made via signatures, as defined in * https://eips.ethereum.org/EIPS/eip-2612[EIP-2612]. * * Adds the {permit} method, which can be used to change an account's ERC20 allowance (see {IERC20-allowance}) by * presenting a message signed by the account. By not relying on {IERC20-approve}, the token holder account doesn't * need to send a transaction, and thus is not required to hold Ether at all. * * ==== Security Considerations * * There are two important considerations concerning the use of `permit`. The first is that a valid permit signature * expresses an allowance, and it should not be assumed to convey additional meaning. In particular, it should not be * considered as an intention to spend the allowance in any specific way. The second is that because permits have * built-in replay protection and can be submitted by anyone, they can be frontrun. A protocol that uses permits should * take this into consideration and allow a `permit` call to fail. Combining these two aspects, a pattern that may be * generally recommended is: * * ```solidity * function doThingWithPermit(..., uint256 value, uint256 deadline, uint8 v, bytes32 r, bytes32 s) public { * try token.permit(msg.sender, address(this), value, deadline, v, r, s) {} catch {} * doThing(..., value); * } * * function doThing(..., uint256 value) public { * token.safeTransferFrom(msg.sender, address(this), value); * ... * } * ``` * * Observe that: 1) `msg.sender` is used as the owner, leaving no ambiguity as to the signer intent, and 2) the use of * `try/catch` allows the permit to fail and makes the code tolerant to frontrunning. (See also * {SafeERC20-safeTransferFrom}). * * Additionally, note that smart contract wallets (such as Argent or Safe) are not able to produce permit signatures, so * contracts should have entry points that don't rely on permit. */ interface IERC20Permit { /** * @dev Sets `value` as the allowance of `spender` over ``owner``'s tokens, * given ``owner``'s signed approval. * * IMPORTANT: The same issues {IERC20-approve} has related to transaction * ordering also apply here. * * Emits an {Approval} event. * * Requirements: * * - `spender` cannot be the zero address. * - `deadline` must be a timestamp in the future. * - `v`, `r` and `s` must be a valid `secp256k1` signature from `owner` * over the EIP712-formatted function arguments. * - the signature must use ``owner``'s current nonce (see {nonces}). * * For more information on the signature format, see the * https://eips.ethereum.org/EIPS/eip-2612#specification[relevant EIP * section]. * * CAUTION: See Security Considerations above. */ function permit( address owner, address spender, uint256 value, uint256 deadline, uint8 v, bytes32 r, bytes32 s ) external; /** * @dev Returns the current nonce for `owner`. This value must be * included whenever a signature is generated for {permit}. * * Every successful call to {permit} increases ``owner``'s nonce by one. This * prevents a signature from being used multiple times. */ function nonces(address owner) external view returns (uint256); /** * @dev Returns the domain separator used in the encoding of the signature for {permit}, as defined by {EIP712}. */ // solhint-disable-next-line func-name-mixedcase function DOMAIN_SEPARATOR() external view returns (bytes32); }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v5.0.0) (utils/Address.sol) pragma solidity ^0.8.20; /** * @dev Collection of functions related to the address type */ library Address { /** * @dev The ETH balance of the account is not enough to perform the operation. */ error AddressInsufficientBalance(address account); /** * @dev There's no code at `target` (it is not a contract). */ error AddressEmptyCode(address target); /** * @dev A call to an address target failed. The target may have reverted. */ error FailedInnerCall(); /** * @dev Replacement for Solidity's `transfer`: sends `amount` wei to * `recipient`, forwarding all available gas and reverting on errors. * * https://eips.ethereum.org/EIPS/eip-1884[EIP1884] increases the gas cost * of certain opcodes, possibly making contracts go over the 2300 gas limit * imposed by `transfer`, making them unable to receive funds via * `transfer`. {sendValue} removes this limitation. * * https://consensys.net/diligence/blog/2019/09/stop-using-soliditys-transfer-now/[Learn more]. * * IMPORTANT: because control is transferred to `recipient`, care must be * taken to not create reentrancy vulnerabilities. Consider using * {ReentrancyGuard} or the * https://solidity.readthedocs.io/en/v0.8.20/security-considerations.html#use-the-checks-effects-interactions-pattern[checks-effects-interactions pattern]. */ function sendValue(address payable recipient, uint256 amount) internal { if (address(this).balance < amount) { revert AddressInsufficientBalance(address(this)); } (bool success, ) = recipient.call{value: amount}(""); if (!success) { revert FailedInnerCall(); } } /** * @dev Performs a Solidity function call using a low level `call`. A * plain `call` is an unsafe replacement for a function call: use this * function instead. * * If `target` reverts with a revert reason or custom error, it is bubbled * up by this function (like regular Solidity function calls). However, if * the call reverted with no returned reason, this function reverts with a * {FailedInnerCall} error. * * Returns the raw returned data. To convert to the expected return value, * use https://solidity.readthedocs.io/en/latest/units-and-global-variables.html?highlight=abi.decode#abi-encoding-and-decoding-functions[`abi.decode`]. * * Requirements: * * - `target` must be a contract. * - calling `target` with `data` must not revert. */ function functionCall(address target, bytes memory data) internal returns (bytes memory) { return functionCallWithValue(target, data, 0); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], * but also transferring `value` wei to `target`. * * Requirements: * * - the calling contract must have an ETH balance of at least `value`. * - the called Solidity function must be `payable`. */ function functionCallWithValue(address target, bytes memory data, uint256 value) internal returns (bytes memory) { if (address(this).balance < value) { revert AddressInsufficientBalance(address(this)); } (bool success, bytes memory returndata) = target.call{value: value}(data); return verifyCallResultFromTarget(target, success, returndata); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], * but performing a static call. */ function functionStaticCall(address target, bytes memory data) internal view returns (bytes memory) { (bool success, bytes memory returndata) = target.staticcall(data); return verifyCallResultFromTarget(target, success, returndata); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], * but performing a delegate call. */ function functionDelegateCall(address target, bytes memory data) internal returns (bytes memory) { (bool success, bytes memory returndata) = target.delegatecall(data); return verifyCallResultFromTarget(target, success, returndata); } /** * @dev Tool to verify that a low level call to smart-contract was successful, and reverts if the target * was not a contract or bubbling up the revert reason (falling back to {FailedInnerCall}) in case of an * unsuccessful call. */ function verifyCallResultFromTarget( address target, bool success, bytes memory returndata ) internal view returns (bytes memory) { if (!success) { _revert(returndata); } else { // only check if target is a contract if the call was successful and the return data is empty // otherwise we already know that it was a contract if (returndata.length == 0 && target.code.length == 0) { revert AddressEmptyCode(target); } return returndata; } } /** * @dev Tool to verify that a low level call was successful, and reverts if it wasn't, either by bubbling the * revert reason or with a default {FailedInnerCall} error. */ function verifyCallResult(bool success, bytes memory returndata) internal pure returns (bytes memory) { if (!success) { _revert(returndata); } else { return returndata; } } /** * @dev Reverts with returndata if present. Otherwise reverts with {FailedInnerCall}. */ function _revert(bytes memory returndata) private pure { // Look for revert reason and bubble it up if present if (returndata.length > 0) { // The easiest way to bubble the revert reason is using memory via assembly /// @solidity memory-safe-assembly assembly { let returndata_size := mload(returndata) revert(add(32, returndata), returndata_size) } } else { revert FailedInnerCall(); } } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v5.0.0) (access/IAccessControl.sol) pragma solidity ^0.8.20; /** * @dev External interface of AccessControl declared to support ERC165 detection. */ interface IAccessControl { /** * @dev The `account` is missing a role. */ error AccessControlUnauthorizedAccount(address account, bytes32 neededRole); /** * @dev The caller of a function is not the expected one. * * NOTE: Don't confuse with {AccessControlUnauthorizedAccount}. */ error AccessControlBadConfirmation(); /** * @dev Emitted when `newAdminRole` is set as ``role``'s admin role, replacing `previousAdminRole` * * `DEFAULT_ADMIN_ROLE` is the starting admin for all roles, despite * {RoleAdminChanged} not being emitted signaling this. */ event RoleAdminChanged(bytes32 indexed role, bytes32 indexed previousAdminRole, bytes32 indexed newAdminRole); /** * @dev Emitted when `account` is granted `role`. * * `sender` is the account that originated the contract call, an admin role * bearer except when using {AccessControl-_setupRole}. */ event RoleGranted(bytes32 indexed role, address indexed account, address indexed sender); /** * @dev Emitted when `account` is revoked `role`. * * `sender` is the account that originated the contract call: * - if using `revokeRole`, it is the admin role bearer * - if using `renounceRole`, it is the role bearer (i.e. `account`) */ event RoleRevoked(bytes32 indexed role, address indexed account, address indexed sender); /** * @dev Returns `true` if `account` has been granted `role`. */ function hasRole(bytes32 role, address account) external view returns (bool); /** * @dev Returns the admin role that controls `role`. See {grantRole} and * {revokeRole}. * * To change a role's admin, use {AccessControl-_setRoleAdmin}. */ function getRoleAdmin(bytes32 role) external view returns (bytes32); /** * @dev Grants `role` to `account`. * * If `account` had not been already granted `role`, emits a {RoleGranted} * event. * * Requirements: * * - the caller must have ``role``'s admin role. */ function grantRole(bytes32 role, address account) external; /** * @dev Revokes `role` from `account`. * * If `account` had been granted `role`, emits a {RoleRevoked} event. * * Requirements: * * - the caller must have ``role``'s admin role. */ function revokeRole(bytes32 role, address account) external; /** * @dev Revokes `role` from the calling account. * * Roles are often managed via {grantRole} and {revokeRole}: this function's * purpose is to provide a mechanism for accounts to lose their privileges * if they are compromised (such as when a trusted device is misplaced). * * If the calling account had been granted `role`, emits a {RoleRevoked} * event. * * Requirements: * * - the caller must be `callerConfirmation`. */ function renounceRole(bytes32 role, address callerConfirmation) external; }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v5.0.1) (utils/Context.sol) pragma solidity ^0.8.20; /** * @dev Provides information about the current execution context, including the * sender of the transaction and its data. While these are generally available * via msg.sender and msg.data, they should not be accessed in such a direct * manner, since when dealing with meta-transactions the account sending and * paying for execution may not be the actual sender (as far as an application * is concerned). * * This contract is only required for intermediate, library-like contracts. */ abstract contract Context { function _msgSender() internal view virtual returns (address) { return msg.sender; } function _msgData() internal view virtual returns (bytes calldata) { return msg.data; } function _contextSuffixLength() internal view virtual returns (uint256) { return 0; } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v5.0.0) (utils/introspection/IERC165.sol) pragma solidity ^0.8.20; /** * @dev Interface of the ERC165 standard, as defined in the * https://eips.ethereum.org/EIPS/eip-165[EIP]. * * Implementers can declare support of contract interfaces, which can then be * queried by others ({ERC165Checker}). * * For an implementation, see {ERC165}. */ interface IERC165 { /** * @dev Returns true if this contract implements the interface defined by * `interfaceId`. See the corresponding * https://eips.ethereum.org/EIPS/eip-165#how-interfaces-are-identified[EIP section] * to learn more about how these ids are created. * * This function call must use less than 30 000 gas. */ function supportsInterface(bytes4 interfaceId) external view returns (bool); }
{ "remappings": [ "@ensdomains/=node_modules/@ensdomains/", "@openzeppelin/=node_modules/@openzeppelin/", "ds-test/=lib/forge-std/lib/ds-test/src/", "forge-std/=lib/forge-std/src/" ], "optimizer": { "enabled": true, "runs": 200 }, "metadata": { "useLiteralContent": false, "bytecodeHash": "ipfs", "appendCBOR": true }, "outputSelection": { "*": { "*": [ "evm.bytecode", "evm.deployedBytecode", "devdoc", "userdoc", "metadata", "abi" ] } }, "evmVersion": "paris", "viaIR": false, "libraries": {} }
Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
Contract ABI
API[{"inputs":[{"internalType":"address","name":"_paymentToken","type":"address"},{"internalType":"uint256","name":"_rate","type":"uint256"},{"internalType":"uint256","name":"_start","type":"uint256"},{"internalType":"uint256","name":"_end","type":"uint256"},{"internalType":"uint256","name":"_totalTokensForSale","type":"uint256"},{"internalType":"uint256","name":"_minTarget","type":"uint256"},{"internalType":"uint256","name":"_maxTarget","type":"uint256"},{"internalType":"uint256","name":"_startRegistration","type":"uint256"},{"internalType":"uint256","name":"_endRegistration","type":"uint256"}],"stateMutability":"nonpayable","type":"constructor"},{"inputs":[],"name":"AccessControlBadConfirmation","type":"error"},{"inputs":[{"internalType":"address","name":"account","type":"address"},{"internalType":"bytes32","name":"neededRole","type":"bytes32"}],"name":"AccessControlUnauthorizedAccount","type":"error"},{"inputs":[{"internalType":"address","name":"target","type":"address"}],"name":"AddressEmptyCode","type":"error"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"AddressInsufficientBalance","type":"error"},{"inputs":[],"name":"FailedInnerCall","type":"error"},{"inputs":[],"name":"InvalidLeaf","type":"error"},{"inputs":[],"name":"MaxContributorsReached","type":"error"},{"inputs":[],"name":"ReentrancyGuardReentrantCall","type":"error"},{"inputs":[{"internalType":"address","name":"token","type":"address"}],"name":"SafeERC20FailedOperation","type":"error"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":false,"internalType":"uint256","name":"tokenAmount","type":"uint256"}],"name":"Claim","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":false,"internalType":"uint256","name":"paymentTokenAmount","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"tokenAmount","type":"uint256"}],"name":"Purchase","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":false,"internalType":"uint256","name":"paymentTokenAmount","type":"uint256"}],"name":"Refund","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"bytes32","name":"role","type":"bytes32"},{"indexed":true,"internalType":"bytes32","name":"previousAdminRole","type":"bytes32"},{"indexed":true,"internalType":"bytes32","name":"newAdminRole","type":"bytes32"}],"name":"RoleAdminChanged","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"bytes32","name":"role","type":"bytes32"},{"indexed":true,"internalType":"address","name":"account","type":"address"},{"indexed":true,"internalType":"address","name":"sender","type":"address"}],"name":"RoleGranted","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"bytes32","name":"role","type":"bytes32"},{"indexed":true,"internalType":"address","name":"account","type":"address"},{"indexed":true,"internalType":"address","name":"sender","type":"address"}],"name":"RoleRevoked","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":false,"internalType":"uint256","name":"paymentTokenAmount","type":"uint256"}],"name":"Withdraw","type":"event"},{"inputs":[],"name":"CAP_VALIDATION_GAS_LIMIT","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"CAP_VALIDATOR_ROLE","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"DEFAULT_ADMIN_ROLE","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"allocated","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_to","type":"address"}],"name":"allocation","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_amount","type":"uint256"},{"internalType":"bytes32[]","name":"_merkleProof","type":"bytes32[]"}],"name":"buy","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"currentTokenPrice","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"end","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"endRegistration","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bytes32","name":"role","type":"bytes32"}],"name":"getRoleAdmin","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bytes32","name":"role","type":"bytes32"},{"internalType":"address","name":"account","type":"address"}],"name":"grantRole","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes32","name":"role","type":"bytes32"},{"internalType":"address","name":"account","type":"address"}],"name":"hasRole","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"individualCap","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"i","type":"uint256"}],"name":"investorAmountAt","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"investorCount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxContribution","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxPrice","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxTarget","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"merkleRoot","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"minContribution","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"minPrice","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"minTarget","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"paymentToken","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_paymentAmount","type":"uint256"}],"name":"paymentTokenToToken","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"rate","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"}],"name":"refund","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"}],"name":"refundAmount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bytes32","name":"role","type":"bytes32"},{"internalType":"address","name":"callerConfirmation","type":"address"}],"name":"renounceRole","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes32","name":"role","type":"bytes32"},{"internalType":"address","name":"account","type":"address"}],"name":"revokeRole","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"risingTideCache","outputs":[{"internalType":"uint256","name":"index","type":"uint256"},{"internalType":"uint256","name":"sumForCap","type":"uint256"},{"internalType":"uint256","name":"sumForNextCap","type":"uint256"},{"internalType":"uint256","name":"largest","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"risingTideState","outputs":[{"internalType":"enum RisingTide.RisingTideState","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_amount","type":"uint256"}],"name":"risingTide_applyCap","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"risingTide_isValidCap","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"risingTide_totalAllocatedUncapped","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"risingTide_totalCap","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"risingTide_validate","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"risingTide_validating","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_end","type":"uint256"}],"name":"setEnd","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_endRegistration","type":"uint256"}],"name":"setEndRegistration","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_cap","type":"uint256"}],"name":"setIndividualCap","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_maxTarget","type":"uint256"}],"name":"setMaxTarget","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes32","name":"_merkleRoot","type":"bytes32"}],"name":"setMerkleRoot","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_minContribution","type":"uint256"}],"name":"setMinContribution","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_minTarget","type":"uint256"}],"name":"setMinTarget","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_start","type":"uint256"}],"name":"setStart","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_startRegistration","type":"uint256"}],"name":"setStartRegistration","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_token","type":"address"}],"name":"setToken","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"start","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"startRegistration","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":"token","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_tokenAmount","type":"uint256"}],"name":"tokenToPaymentToken","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalTokensForSale","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalUncappedAllocations","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_to","type":"address"}],"name":"uncappedAllocation","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"withdraw","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"withdrawn","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"}]
Contract Creation Code
6101206040523480156200001257600080fd5b506040516200245c3803806200245c83398101604081905262000035916200040f565b60016007556001600160a01b038916620000865760405162461bcd60e51b815260206004820152600d60248201526c63616e2774206265207a65726f60981b60448201526064015b60405180910390fd5b60008811620000c85760405162461bcd60e51b815260206004820152600d60248201526c63616e2774206265207a65726f60981b60448201526064016200007d565b600087116200010a5760405162461bcd60e51b815260206004820152600d60248201526c63616e2774206265207a65726f60981b60448201526064016200007d565b8686116200015b5760405162461bcd60e51b815260206004820152601760248201527f656e64206d75737420626520616674657220737461727400000000000000000060448201526064016200007d565b60008511620001a15760405162461bcd60e51b81526020600482015260116024820152700746f74616c2063616e6e6f74206265203607c1b60448201526064016200007d565b60008411620001f35760405162461bcd60e51b815260206004820152601660248201527f5f6d696e5461726765742063616e6e6f7420626520300000000000000000000060448201526064016200007d565b838311620002575760405162461bcd60e51b815260206004820152602a60248201527f5f6d61785461726765742063616e6e6f74206265206c6f776572207468616e2060448201526917db5a5b95185c99d95d60b21b60648201526084016200007d565b818111620002ce5760405162461bcd60e51b815260206004820152603860248201527f5f656e64526567697374726174696f6e2063616e6e6f74206265206c6f77657260448201527f207468616e205f7374617274526567697374726174696f6e000000000000000060648201526084016200007d565b6001600160a01b03891660805260a0889052600b879055600c869055610100859052600f8490556010839055600d829055600e81905562030d4060c05262061a8060e0526200031f6000336200035c565b506200034c7f33ccb9ed30bc572500993b7ca8e527619cf334431f74b8ecd1c841304ef9c603336200035c565b5050505050505050505062000491565b60008281526006602090815260408083206001600160a01b038516845290915281205460ff16620004055760008381526006602090815260408083206001600160a01b03861684529091529020805460ff19166001179055620003bc3390565b6001600160a01b0316826001600160a01b0316847f2f8788117e7eff1d82e926ec794901d17c78024a50270940304540a733656f0d60405160405180910390a450600162000409565b5060005b92915050565b60008060008060008060008060006101208a8c0312156200042f57600080fd5b89516001600160a01b03811681146200044757600080fd5b8099505060208a0151975060408a0151965060608a0151955060808a0151945060a08a0151935060c08a0151925060e08a015191506101008a015190509295985092959850929598565b60805160a05160c05160e05161010051611f2b6200053160003960008181610559015281816105d60152818161118701526118d601526000818161074201528181610f500152610fc001526000818161076901528181610f1701528181610f9f0152610ffe01526000818161046701528181610bf201526114750152600081816104aa01528181610b0501528181610ea601526116040152611f2b6000f3fe608060405234801561001057600080fd5b50600436106103835760003560e01c80637cb64759116101de578063c80ec5221161010f578063e45be8eb116100ad578063f00a46f31161007c578063f00a46f3146107d2578063f6a03ebf146107e5578063fa89401a146107f8578063fc0c546a1461080b57600080fd5b8063e45be8eb14610764578063e8448f021461078b578063ed7196bc146107c1578063efbe1c1c146107c957600080fd5b8063d0a24e47116100e9578063d0a24e47146106f9578063d547741f14610722578063d7e64c0014610735578063e38d6b5c1461073d57600080fd5b8063c80ec522146106cf578063cbf2cc2b146106dc578063cd2b3026146106e657600080fd5b8063af804e021161017c578063b81b863011610156578063b81b8630146106a2578063be9a6555146106b5578063c0cd9ce2146106be578063c4878883146106c657600080fd5b8063af804e0214610660578063b03aee4e14610673578063b304b2e11461069a57600080fd5b806391d14854116101b857806391d1485414610629578063a217fddf1461063c578063aaffadf314610644578063acde5d281461064d57600080fd5b80637cb64759146105fa5780637f498ffc1461060d5780638d3d65761461062057600080fd5b80633013ce29116102b85780635a19b4db11610256578063711a9f3511610230578063711a9f35146105b157806371b3659e146105b9578063769de91a146105c15780637b8db586146105d457600080fd5b80635a19b4db1461054157806360219c7b1461055457806369d917c91461057b57600080fd5b8063411b296511610292578063411b2965146104ff578063473b0d46146105125780634a8a62ab14610525578063533319331461052e57600080fd5b80633013ce29146104a557806336568abe146104e45780633ccfd60b146104f757600080fd5b80631c120bc111610325578063260840c9116102ff578063260840c9146104595780632c4e722e146104625780632eb4a7ab146104895780632f2ff15d1461049257600080fd5b80631c120bc11461041b578063248a9ca314610423578063248e19931461044657600080fd5b80630af58a53116103615780630af58a53146103d057806310b86695146103e3578063144fa6d7146103ec5780631a15c6d71461040157600080fd5b806301ffc9a7146103885780630276650b146103b0578063099dde07146103c7575b600080fd5b61039b610396366004611c51565b61081e565b60405190151581526020015b60405180910390f35b6103b960055481565b6040519081526020016103a7565b6103b960105481565b6103b96103de366004611c7b565b610849565b6103b9600d5481565b6103ff6103fa366004611cb0565b610874565b005b60005461040e9060ff1681565b6040516103a79190611ce1565b6014546103b9565b6103b9610431366004611c7b565b60009081526006602052604090206001015490565b6103ff610454366004611c7b565b610900565b6103b9600f5481565b6103b97f000000000000000000000000000000000000000000000000000000000000000081565b6103b960165481565b6103ff6104a0366004611d09565b610944565b6104cc7f000000000000000000000000000000000000000000000000000000000000000081565b6040516001600160a01b0390911681526020016103a7565b6103ff6104f2366004611d09565b61096f565b6103ff6109a7565b6103ff61050d366004611c7b565b610b8a565b6103ff610520366004611c7b565b610bac565b6103b9600e5481565b6103b961053c366004611c7b565b610bee565b6103ff61054f366004611d35565b610c2d565b6103b97f000000000000000000000000000000000000000000000000000000000000000081565b6103b9610589366004611c7b565b6000908152601260209081526040808320546001600160a01b03168352601190915290205490565b61039b610edc565b6103b9610efe565b6103ff6105cf366004611c7b565b611027565b7f00000000000000000000000000000000000000000000000000000000000000006103b9565b6103ff610608366004611c7b565b61106b565b6103ff61061b366004611c7b565b61108d565b6103b9600a5481565b61039b610637366004611d09565b6110af565b6103b9600081565b6103b960095481565b6103b961065b366004611cb0565b6110da565b6103ff61066e366004611c7b565b61115b565b6103b97f33ccb9ed30bc572500993b7ca8e527619cf334431f74b8ecd1c841304ef9c60381565b6103b961117d565b6103b96106b0366004611cb0565b6111ab565b6103b9600b5481565b6103ff611246565b6103b960145481565b60155461039b9060ff1681565b6103b9620186a081565b6103ff6106f4366004611c7b565b6113b1565b6103b9610707366004611cb0565b6001600160a01b031660009081526011602052604090205490565b6103ff610730366004611d09565b611437565b6013546103b9565b6103b97f000000000000000000000000000000000000000000000000000000000000000081565b6103b97f000000000000000000000000000000000000000000000000000000000000000081565b6001546002546003546004546107a19392919084565b6040805194855260208501939093529183015260608201526080016103a7565b61039b61145c565b6103b9600c5481565b6103b96107e0366004611c7b565b611465565b6103ff6107f3366004611c7b565b61149a565b6103ff610806366004611cb0565b6114bc565b6008546104cc906001600160a01b031681565b60006001600160e01b03198216630fa3542360e41b14806108435750610843826116c3565b92915050565b6000610853610edc565b61085f57506000919050565b600554821061087057505060055490565b5090565b600061087f816116f8565b600b544211156108aa5760405162461bcd60e51b81526004016108a190611db4565b60405180910390fd5b6108b2611702565b6001600160a01b0382166108d85760405162461bcd60e51b81526004016108a190611dd9565b600880546001600160a01b0319166001600160a01b03841617905560016007555050565b5050565b600061090b816116f8565b600b5442111561092d5760405162461bcd60e51b81526004016108a190611db4565b610935611702565b600f8290556108fc6001600755565b60008281526006602052604090206001015461095f816116f8565b610969838361172c565b50505050565b6001600160a01b03811633146109985760405163334bd91960e11b815260040160405180910390fd5b6109a282826117c0565b505050565b60006109b2816116f8565b6109ba610edc565b6109f85760405162461bcd60e51b815260206004820152600f60248201526e18d85c081b9bdd081e595d081cd95d608a1b60448201526064016108a1565b610a00611702565b600c544211610a465760405162461bcd60e51b81526020600482015260126024820152711cd85b19481b9bdd08195b991959081e595d60721b60448201526064016108a1565b60155460ff1615610a8d5760405162461bcd60e51b815260206004820152601160248201527030b63932b0b23c903bb4ba34323930bbb760791b60448201526064016108a1565b6015805460ff191660011790556000610aa461117d565b90506000610ab182611465565b60405181815290915033907f884edad9ce6fa2440d8a54cc123490eb96d2768479d49ff9c7366125a94243649060200160405180910390a260405163a9059cbb60e01b8152336004820152602481018290527f00000000000000000000000000000000000000000000000000000000000000006001600160a01b03169063a9059cbb906044016020604051808303816000875af1158015610b56573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610b7a9190611e00565b505050610b876001600755565b50565b6000610b95816116f8565b610b9d611702565b600d8290556108fc6001600755565b6000610bb7816116f8565b610bbf611702565b60008211610bdf5760405162461bcd60e51b81526004016108a190611dd9565b60098290556108fc6001600755565b60007f0000000000000000000000000000000000000000000000000000000000000000610c23670de0b6b3a764000084611e38565b6108439190611e4f565b600b544210158015610c415750600c544211155b610c7f5760405162461bcd60e51b815260206004820152600f60248201526e73616c65206e6f742061637469766560881b60448201526064016108a1565b610c87611702565b600954601054610c979190611e4f565b60135410610cb85760405163f1095bb560e01b815260040160405180910390fd5b6040516bffffffffffffffffffffffff193360601b1660208201526000906034016040516020818303038152906040528051906020012090506000610d3484848080602002602001604051908101604052809392919081815260200183836020028082843760009201919091525050601654915085905061182d565b905080610d54576040516306a201bd60e31b815260040160405180910390fd5b610d5f600954610bee565b851015610da75760405162461bcd60e51b815260206004820152601660248201527563616e27742062652062656c6f77206d696e696d756d60501b60448201526064016108a1565b6000610db286611465565b905060008111610dd45760405162461bcd60e51b81526004016108a190611dd9565b3360009081526011602052604081205490819003610e215760138054600090815260126020526040812080546001600160a01b0319163317905581549190610e1b83611e71565b91905055505b3360009081526011602052604081208054899290610e40908490611e8a565b925050819055508660146000828254610e599190611e8a565b9091555050604080518381526020810189905233917f12cb4648cf3058b17ceeb33e579f8b0bc269fe0843f3900b8e24b6c54871703c910160405180910390a2610ece6001600160a01b037f000000000000000000000000000000000000000000000000000000000000000016333085611845565b505050506109a26001600755565b600060025b60005460ff166003811115610ef857610ef8611ccb565b14905090565b6000600f54610f0e601454611465565b1015610f3957507f000000000000000000000000000000000000000000000000000000000000000090565b601054610f47601454611465565b1115610f7257507f000000000000000000000000000000000000000000000000000000000000000090565b600f54601054610f829190611e9d565b600f54610f90601454611465565b610f9a9190611e9d565b610fe47f00000000000000000000000000000000000000000000000000000000000000007f0000000000000000000000000000000000000000000000000000000000000000611e9d565b610fee9190611e38565b610ff89190611e4f565b611022907f0000000000000000000000000000000000000000000000000000000000000000611e8a565b905090565b6000611032816116f8565b600b544211156110545760405162461bcd60e51b81526004016108a190611db4565b61105c611702565b60108290556108fc6001600755565b6000611076816116f8565b61107e611702565b60168290556108fc6001600755565b6000611098816116f8565b6110a0611702565b600c8290556108fc6001600755565b60009182526006602090815260408084206001600160a01b0393909316845291905290205460ff1690565b60006110e4610edc565b6110f057506000919050565b6001600160a01b0382166000908152601160209081526040918290208251808401909352805483526001015460ff16158015918301919091526111365750600092915050565b80516000611143856111ab565b90506111526107e08284611e9d565b95945050505050565b6000611166816116f8565b61116e611702565b600e8290556108fc6001600755565b60006110226014547f000000000000000000000000000000000000000000000000000000000000000061189f565b6000600f546111bb601454611465565b10156111c957506000919050565b6010546111d7601454611465565b11156111ff576108436103de836001600160a01b031660009081526011602052604090205490565b670de0b6b3a7640000611210610efe565b6112326107e0856001600160a01b031660009081526011602052604090205490565b61123c9190611e4f565b6108439190611e38565b600160005460ff16600381111561125f5761125f611ccb565b1461126957600080fd5b6040805160808101825260015481526002546020820152600354918101919091526004546060820152600061129d60135490565b6005549091505b8251821180156112b65750620186a05a115b156113525782516000908152601260209081526040808320546001600160a01b0316835260119091529020546112ec818361189f565b846020018181516112fd9190611e8a565b90525061131561130e836001611e8a565b829061189f565b846040018181516113269190611e8a565b905250606084015161133890826118b5565b6060850152508251839061134b90611e71565b90526112a4565b825160018190556020840151600255604084015160035560608401516004558290036109a257600061138482856118c4565b9050801561139e576000805460ff19166002179055610969565b50506000805460ff191660031790555050565b7f33ccb9ed30bc572500993b7ca8e527619cf334431f74b8ecd1c841304ef9c6036113db816116f8565b600c54421161141c5760405162461bcd60e51b815260206004820152600d60248201526c39b0b632903737ba1037bb32b960991b60448201526064016108a1565b611424611702565b61142d82611960565b6108fc6001600755565b600082815260066020526040902060010154611452816116f8565b61096983836117c0565b60006001610ee1565b6000670de0b6b3a7640000610c237f000000000000000000000000000000000000000000000000000000000000000084611e38565b60006114a5816116f8565b6114ad611702565b600b8290556108fc6001600755565b6114c4610edc565b6115025760405162461bcd60e51b815260206004820152600f60248201526e18d85c081b9bdd081e595d081cd95d608a1b60448201526064016108a1565b61150a611702565b6001600160a01b0381166000908152601160205260409020600181015460ff161561156a5760405162461bcd60e51b815260206004820152601060248201526f185b1c9958591e481c99599d5b99195960821b60448201526064016108a1565b6000611575836110da565b9050600081116115bd5760405162461bcd60e51b8152602060048201526013602482015272139bc81d1bdad95b9cc81d1bc81c99599d5b99606a1b60448201526064016108a1565b6001600160a01b03838116600081815260116020526040908190206001908101805460ff191690911790555163a9059cbb60e01b81526004810191909152602481018390527f00000000000000000000000000000000000000000000000000000000000000009091169063a9059cbb906044016020604051808303816000875af115801561164f573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906116739190611e00565b50826001600160a01b03167fbb28353e4598c3b9199101a66e0989549b659a59a54d2c27fbb183f1932c8e6d826040516116af91815260200190565b60405180910390a25050610b876001600755565b60006001600160e01b03198216637965db0b60e01b148061084357506301ffc9a760e01b6001600160e01b0319831614610843565b610b878133611a32565b60026007540361172557604051633ee5aeb560e01b815260040160405180910390fd5b6002600755565b600061173883836110af565b6117b85760008381526006602090815260408083206001600160a01b03861684529091529020805460ff191660011790556117703390565b6001600160a01b0316826001600160a01b0316847f2f8788117e7eff1d82e926ec794901d17c78024a50270940304540a733656f0d60405160405180910390a4506001610843565b506000610843565b60006117cc83836110af565b156117b85760008381526006602090815260408083206001600160a01b0386168085529252808320805460ff1916905551339286917ff6391f5c32d9c69d2a47ea670b442974b53935d1edc7fd64eb21e047a839171b9190a4506001610843565b60008261183a8584611a6b565b1490505b9392505050565b604080516001600160a01b0385811660248301528416604482015260648082018490528251808303909101815260849091019091526020810180516001600160e01b03166323b872dd60e01b179052610969908590611ab8565b60008183106118ae578161183e565b5090919050565b60008282106118ae578161183e565b6000806118d060145490565b905060007f00000000000000000000000000000000000000000000000000000000000000009050818460600151111561190857600080fd5b818460200151111561191957600080fd5b818460400151111561192a57600080fd5b8082116119405750505060608101518214610843565b808460400151118015611957575080846020015111155b92505050610843565b6000805460ff16600381111561197857611978611ccb565b148061199a5750600360005460ff16600381111561199857611998611ccb565b145b6119e65760405162461bcd60e51b815260206004820152601a60248201527f616c726561647920736574206f7220696e2070726f677265737300000000000060448201526064016108a1565b60058190556000805460ff191660019081178255604080516080810182528381526020810184905290810183905260600182905281905560028190556003819055600455610b87611246565b611a3c82826110af565b6108fc5760405163e2517d3f60e01b81526001600160a01b0382166004820152602481018390526044016108a1565b600081815b8451811015611ab057611a9c82868381518110611a8f57611a8f611eb0565b6020026020010151611b1b565b915080611aa881611e71565b915050611a70565b509392505050565b6000611acd6001600160a01b03841683611b4a565b90508051600014158015611af2575080806020019051810190611af09190611e00565b155b156109a257604051635274afe760e01b81526001600160a01b03841660048201526024016108a1565b6000818310611b3757600082815260208490526040902061183e565b600083815260208390526040902061183e565b606061183e8383600084600080856001600160a01b03168486604051611b709190611ec6565b60006040518083038185875af1925050503d8060008114611bad576040519150601f19603f3d011682016040523d82523d6000602084013e611bb2565b606091505b5091509150611bc2868383611bcc565b9695505050505050565b606082611be157611bdc82611c28565b61183e565b8151158015611bf857506001600160a01b0384163b155b15611c2157604051639996b31560e01b81526001600160a01b03851660048201526024016108a1565b508061183e565b805115611c385780518082602001fd5b604051630a12f52160e11b815260040160405180910390fd5b600060208284031215611c6357600080fd5b81356001600160e01b03198116811461183e57600080fd5b600060208284031215611c8d57600080fd5b5035919050565b80356001600160a01b0381168114611cab57600080fd5b919050565b600060208284031215611cc257600080fd5b61183e82611c94565b634e487b7160e01b600052602160045260246000fd5b6020810160048310611d0357634e487b7160e01b600052602160045260246000fd5b91905290565b60008060408385031215611d1c57600080fd5b82359150611d2c60208401611c94565b90509250929050565b600080600060408486031215611d4a57600080fd5b83359250602084013567ffffffffffffffff80821115611d6957600080fd5b818601915086601f830112611d7d57600080fd5b813581811115611d8c57600080fd5b8760208260051b8501011115611da157600080fd5b6020830194508093505050509250925092565b6020808252600b908201526a73616c652061637469766560a81b604082015260600190565b6020808252600d908201526c63616e2774206265207a65726f60981b604082015260600190565b600060208284031215611e1257600080fd5b8151801515811461183e57600080fd5b634e487b7160e01b600052601160045260246000fd5b808202811582820484141761084357610843611e22565b600082611e6c57634e487b7160e01b600052601260045260246000fd5b500490565b600060018201611e8357611e83611e22565b5060010190565b8082018082111561084357610843611e22565b8181038181111561084357610843611e22565b634e487b7160e01b600052603260045260246000fd5b6000825160005b81811015611ee75760208186018101518583015201611ecd565b50600092019182525091905056fea2646970667358221220a60db98c451056fccb1d042c6da56900ebe5f34d78f0feef9fee256c54f1455664736f6c63430008140033000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb480000000000000000000000000000000000000000000000000000000000030d4000000000000000000000000000000000000000000000000000000000664ddbe8000000000000000000000000000000000000000000000000000000006651d2c00000000000000000000000000000000000000000000211654585005212800000000000000000000000000000000000000000000000000000000000746a528800000000000000000000000000000000000000000000000000000000e8d4a5100000000000000000000000000000000000000000000000000000000000663e0c4000000000000000000000000000000000000000000000000000000000664c8cc0
Deployed Bytecode
0x608060405234801561001057600080fd5b50600436106103835760003560e01c80637cb64759116101de578063c80ec5221161010f578063e45be8eb116100ad578063f00a46f31161007c578063f00a46f3146107d2578063f6a03ebf146107e5578063fa89401a146107f8578063fc0c546a1461080b57600080fd5b8063e45be8eb14610764578063e8448f021461078b578063ed7196bc146107c1578063efbe1c1c146107c957600080fd5b8063d0a24e47116100e9578063d0a24e47146106f9578063d547741f14610722578063d7e64c0014610735578063e38d6b5c1461073d57600080fd5b8063c80ec522146106cf578063cbf2cc2b146106dc578063cd2b3026146106e657600080fd5b8063af804e021161017c578063b81b863011610156578063b81b8630146106a2578063be9a6555146106b5578063c0cd9ce2146106be578063c4878883146106c657600080fd5b8063af804e0214610660578063b03aee4e14610673578063b304b2e11461069a57600080fd5b806391d14854116101b857806391d1485414610629578063a217fddf1461063c578063aaffadf314610644578063acde5d281461064d57600080fd5b80637cb64759146105fa5780637f498ffc1461060d5780638d3d65761461062057600080fd5b80633013ce29116102b85780635a19b4db11610256578063711a9f3511610230578063711a9f35146105b157806371b3659e146105b9578063769de91a146105c15780637b8db586146105d457600080fd5b80635a19b4db1461054157806360219c7b1461055457806369d917c91461057b57600080fd5b8063411b296511610292578063411b2965146104ff578063473b0d46146105125780634a8a62ab14610525578063533319331461052e57600080fd5b80633013ce29146104a557806336568abe146104e45780633ccfd60b146104f757600080fd5b80631c120bc111610325578063260840c9116102ff578063260840c9146104595780632c4e722e146104625780632eb4a7ab146104895780632f2ff15d1461049257600080fd5b80631c120bc11461041b578063248a9ca314610423578063248e19931461044657600080fd5b80630af58a53116103615780630af58a53146103d057806310b86695146103e3578063144fa6d7146103ec5780631a15c6d71461040157600080fd5b806301ffc9a7146103885780630276650b146103b0578063099dde07146103c7575b600080fd5b61039b610396366004611c51565b61081e565b60405190151581526020015b60405180910390f35b6103b960055481565b6040519081526020016103a7565b6103b960105481565b6103b96103de366004611c7b565b610849565b6103b9600d5481565b6103ff6103fa366004611cb0565b610874565b005b60005461040e9060ff1681565b6040516103a79190611ce1565b6014546103b9565b6103b9610431366004611c7b565b60009081526006602052604090206001015490565b6103ff610454366004611c7b565b610900565b6103b9600f5481565b6103b97f0000000000000000000000000000000000000000000000000000000000030d4081565b6103b960165481565b6103ff6104a0366004611d09565b610944565b6104cc7f000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb4881565b6040516001600160a01b0390911681526020016103a7565b6103ff6104f2366004611d09565b61096f565b6103ff6109a7565b6103ff61050d366004611c7b565b610b8a565b6103ff610520366004611c7b565b610bac565b6103b9600e5481565b6103b961053c366004611c7b565b610bee565b6103ff61054f366004611d35565b610c2d565b6103b97f000000000000000000000000000000000000000000021165458500521280000081565b6103b9610589366004611c7b565b6000908152601260209081526040808320546001600160a01b03168352601190915290205490565b61039b610edc565b6103b9610efe565b6103ff6105cf366004611c7b565b611027565b7f00000000000000000000000000000000000000000002116545850052128000006103b9565b6103ff610608366004611c7b565b61106b565b6103ff61061b366004611c7b565b61108d565b6103b9600a5481565b61039b610637366004611d09565b6110af565b6103b9600081565b6103b960095481565b6103b961065b366004611cb0565b6110da565b6103ff61066e366004611c7b565b61115b565b6103b97f33ccb9ed30bc572500993b7ca8e527619cf334431f74b8ecd1c841304ef9c60381565b6103b961117d565b6103b96106b0366004611cb0565b6111ab565b6103b9600b5481565b6103ff611246565b6103b960145481565b60155461039b9060ff1681565b6103b9620186a081565b6103ff6106f4366004611c7b565b6113b1565b6103b9610707366004611cb0565b6001600160a01b031660009081526011602052604090205490565b6103ff610730366004611d09565b611437565b6013546103b9565b6103b97f0000000000000000000000000000000000000000000000000000000000061a8081565b6103b97f0000000000000000000000000000000000000000000000000000000000030d4081565b6001546002546003546004546107a19392919084565b6040805194855260208501939093529183015260608201526080016103a7565b61039b61145c565b6103b9600c5481565b6103b96107e0366004611c7b565b611465565b6103ff6107f3366004611c7b565b61149a565b6103ff610806366004611cb0565b6114bc565b6008546104cc906001600160a01b031681565b60006001600160e01b03198216630fa3542360e41b14806108435750610843826116c3565b92915050565b6000610853610edc565b61085f57506000919050565b600554821061087057505060055490565b5090565b600061087f816116f8565b600b544211156108aa5760405162461bcd60e51b81526004016108a190611db4565b60405180910390fd5b6108b2611702565b6001600160a01b0382166108d85760405162461bcd60e51b81526004016108a190611dd9565b600880546001600160a01b0319166001600160a01b03841617905560016007555050565b5050565b600061090b816116f8565b600b5442111561092d5760405162461bcd60e51b81526004016108a190611db4565b610935611702565b600f8290556108fc6001600755565b60008281526006602052604090206001015461095f816116f8565b610969838361172c565b50505050565b6001600160a01b03811633146109985760405163334bd91960e11b815260040160405180910390fd5b6109a282826117c0565b505050565b60006109b2816116f8565b6109ba610edc565b6109f85760405162461bcd60e51b815260206004820152600f60248201526e18d85c081b9bdd081e595d081cd95d608a1b60448201526064016108a1565b610a00611702565b600c544211610a465760405162461bcd60e51b81526020600482015260126024820152711cd85b19481b9bdd08195b991959081e595d60721b60448201526064016108a1565b60155460ff1615610a8d5760405162461bcd60e51b815260206004820152601160248201527030b63932b0b23c903bb4ba34323930bbb760791b60448201526064016108a1565b6015805460ff191660011790556000610aa461117d565b90506000610ab182611465565b60405181815290915033907f884edad9ce6fa2440d8a54cc123490eb96d2768479d49ff9c7366125a94243649060200160405180910390a260405163a9059cbb60e01b8152336004820152602481018290527f000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb486001600160a01b03169063a9059cbb906044016020604051808303816000875af1158015610b56573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610b7a9190611e00565b505050610b876001600755565b50565b6000610b95816116f8565b610b9d611702565b600d8290556108fc6001600755565b6000610bb7816116f8565b610bbf611702565b60008211610bdf5760405162461bcd60e51b81526004016108a190611dd9565b60098290556108fc6001600755565b60007f0000000000000000000000000000000000000000000000000000000000030d40610c23670de0b6b3a764000084611e38565b6108439190611e4f565b600b544210158015610c415750600c544211155b610c7f5760405162461bcd60e51b815260206004820152600f60248201526e73616c65206e6f742061637469766560881b60448201526064016108a1565b610c87611702565b600954601054610c979190611e4f565b60135410610cb85760405163f1095bb560e01b815260040160405180910390fd5b6040516bffffffffffffffffffffffff193360601b1660208201526000906034016040516020818303038152906040528051906020012090506000610d3484848080602002602001604051908101604052809392919081815260200183836020028082843760009201919091525050601654915085905061182d565b905080610d54576040516306a201bd60e31b815260040160405180910390fd5b610d5f600954610bee565b851015610da75760405162461bcd60e51b815260206004820152601660248201527563616e27742062652062656c6f77206d696e696d756d60501b60448201526064016108a1565b6000610db286611465565b905060008111610dd45760405162461bcd60e51b81526004016108a190611dd9565b3360009081526011602052604081205490819003610e215760138054600090815260126020526040812080546001600160a01b0319163317905581549190610e1b83611e71565b91905055505b3360009081526011602052604081208054899290610e40908490611e8a565b925050819055508660146000828254610e599190611e8a565b9091555050604080518381526020810189905233917f12cb4648cf3058b17ceeb33e579f8b0bc269fe0843f3900b8e24b6c54871703c910160405180910390a2610ece6001600160a01b037f000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb4816333085611845565b505050506109a26001600755565b600060025b60005460ff166003811115610ef857610ef8611ccb565b14905090565b6000600f54610f0e601454611465565b1015610f3957507f0000000000000000000000000000000000000000000000000000000000030d4090565b601054610f47601454611465565b1115610f7257507f0000000000000000000000000000000000000000000000000000000000061a8090565b600f54601054610f829190611e9d565b600f54610f90601454611465565b610f9a9190611e9d565b610fe47f0000000000000000000000000000000000000000000000000000000000030d407f0000000000000000000000000000000000000000000000000000000000061a80611e9d565b610fee9190611e38565b610ff89190611e4f565b611022907f0000000000000000000000000000000000000000000000000000000000030d40611e8a565b905090565b6000611032816116f8565b600b544211156110545760405162461bcd60e51b81526004016108a190611db4565b61105c611702565b60108290556108fc6001600755565b6000611076816116f8565b61107e611702565b60168290556108fc6001600755565b6000611098816116f8565b6110a0611702565b600c8290556108fc6001600755565b60009182526006602090815260408084206001600160a01b0393909316845291905290205460ff1690565b60006110e4610edc565b6110f057506000919050565b6001600160a01b0382166000908152601160209081526040918290208251808401909352805483526001015460ff16158015918301919091526111365750600092915050565b80516000611143856111ab565b90506111526107e08284611e9d565b95945050505050565b6000611166816116f8565b61116e611702565b600e8290556108fc6001600755565b60006110226014547f000000000000000000000000000000000000000000021165458500521280000061189f565b6000600f546111bb601454611465565b10156111c957506000919050565b6010546111d7601454611465565b11156111ff576108436103de836001600160a01b031660009081526011602052604090205490565b670de0b6b3a7640000611210610efe565b6112326107e0856001600160a01b031660009081526011602052604090205490565b61123c9190611e4f565b6108439190611e38565b600160005460ff16600381111561125f5761125f611ccb565b1461126957600080fd5b6040805160808101825260015481526002546020820152600354918101919091526004546060820152600061129d60135490565b6005549091505b8251821180156112b65750620186a05a115b156113525782516000908152601260209081526040808320546001600160a01b0316835260119091529020546112ec818361189f565b846020018181516112fd9190611e8a565b90525061131561130e836001611e8a565b829061189f565b846040018181516113269190611e8a565b905250606084015161133890826118b5565b6060850152508251839061134b90611e71565b90526112a4565b825160018190556020840151600255604084015160035560608401516004558290036109a257600061138482856118c4565b9050801561139e576000805460ff19166002179055610969565b50506000805460ff191660031790555050565b7f33ccb9ed30bc572500993b7ca8e527619cf334431f74b8ecd1c841304ef9c6036113db816116f8565b600c54421161141c5760405162461bcd60e51b815260206004820152600d60248201526c39b0b632903737ba1037bb32b960991b60448201526064016108a1565b611424611702565b61142d82611960565b6108fc6001600755565b600082815260066020526040902060010154611452816116f8565b61096983836117c0565b60006001610ee1565b6000670de0b6b3a7640000610c237f0000000000000000000000000000000000000000000000000000000000030d4084611e38565b60006114a5816116f8565b6114ad611702565b600b8290556108fc6001600755565b6114c4610edc565b6115025760405162461bcd60e51b815260206004820152600f60248201526e18d85c081b9bdd081e595d081cd95d608a1b60448201526064016108a1565b61150a611702565b6001600160a01b0381166000908152601160205260409020600181015460ff161561156a5760405162461bcd60e51b815260206004820152601060248201526f185b1c9958591e481c99599d5b99195960821b60448201526064016108a1565b6000611575836110da565b9050600081116115bd5760405162461bcd60e51b8152602060048201526013602482015272139bc81d1bdad95b9cc81d1bc81c99599d5b99606a1b60448201526064016108a1565b6001600160a01b03838116600081815260116020526040908190206001908101805460ff191690911790555163a9059cbb60e01b81526004810191909152602481018390527f000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb489091169063a9059cbb906044016020604051808303816000875af115801561164f573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906116739190611e00565b50826001600160a01b03167fbb28353e4598c3b9199101a66e0989549b659a59a54d2c27fbb183f1932c8e6d826040516116af91815260200190565b60405180910390a25050610b876001600755565b60006001600160e01b03198216637965db0b60e01b148061084357506301ffc9a760e01b6001600160e01b0319831614610843565b610b878133611a32565b60026007540361172557604051633ee5aeb560e01b815260040160405180910390fd5b6002600755565b600061173883836110af565b6117b85760008381526006602090815260408083206001600160a01b03861684529091529020805460ff191660011790556117703390565b6001600160a01b0316826001600160a01b0316847f2f8788117e7eff1d82e926ec794901d17c78024a50270940304540a733656f0d60405160405180910390a4506001610843565b506000610843565b60006117cc83836110af565b156117b85760008381526006602090815260408083206001600160a01b0386168085529252808320805460ff1916905551339286917ff6391f5c32d9c69d2a47ea670b442974b53935d1edc7fd64eb21e047a839171b9190a4506001610843565b60008261183a8584611a6b565b1490505b9392505050565b604080516001600160a01b0385811660248301528416604482015260648082018490528251808303909101815260849091019091526020810180516001600160e01b03166323b872dd60e01b179052610969908590611ab8565b60008183106118ae578161183e565b5090919050565b60008282106118ae578161183e565b6000806118d060145490565b905060007f00000000000000000000000000000000000000000002116545850052128000009050818460600151111561190857600080fd5b818460200151111561191957600080fd5b818460400151111561192a57600080fd5b8082116119405750505060608101518214610843565b808460400151118015611957575080846020015111155b92505050610843565b6000805460ff16600381111561197857611978611ccb565b148061199a5750600360005460ff16600381111561199857611998611ccb565b145b6119e65760405162461bcd60e51b815260206004820152601a60248201527f616c726561647920736574206f7220696e2070726f677265737300000000000060448201526064016108a1565b60058190556000805460ff191660019081178255604080516080810182528381526020810184905290810183905260600182905281905560028190556003819055600455610b87611246565b611a3c82826110af565b6108fc5760405163e2517d3f60e01b81526001600160a01b0382166004820152602481018390526044016108a1565b600081815b8451811015611ab057611a9c82868381518110611a8f57611a8f611eb0565b6020026020010151611b1b565b915080611aa881611e71565b915050611a70565b509392505050565b6000611acd6001600160a01b03841683611b4a565b90508051600014158015611af2575080806020019051810190611af09190611e00565b155b156109a257604051635274afe760e01b81526001600160a01b03841660048201526024016108a1565b6000818310611b3757600082815260208490526040902061183e565b600083815260208390526040902061183e565b606061183e8383600084600080856001600160a01b03168486604051611b709190611ec6565b60006040518083038185875af1925050503d8060008114611bad576040519150601f19603f3d011682016040523d82523d6000602084013e611bb2565b606091505b5091509150611bc2868383611bcc565b9695505050505050565b606082611be157611bdc82611c28565b61183e565b8151158015611bf857506001600160a01b0384163b155b15611c2157604051639996b31560e01b81526001600160a01b03851660048201526024016108a1565b508061183e565b805115611c385780518082602001fd5b604051630a12f52160e11b815260040160405180910390fd5b600060208284031215611c6357600080fd5b81356001600160e01b03198116811461183e57600080fd5b600060208284031215611c8d57600080fd5b5035919050565b80356001600160a01b0381168114611cab57600080fd5b919050565b600060208284031215611cc257600080fd5b61183e82611c94565b634e487b7160e01b600052602160045260246000fd5b6020810160048310611d0357634e487b7160e01b600052602160045260246000fd5b91905290565b60008060408385031215611d1c57600080fd5b82359150611d2c60208401611c94565b90509250929050565b600080600060408486031215611d4a57600080fd5b83359250602084013567ffffffffffffffff80821115611d6957600080fd5b818601915086601f830112611d7d57600080fd5b813581811115611d8c57600080fd5b8760208260051b8501011115611da157600080fd5b6020830194508093505050509250925092565b6020808252600b908201526a73616c652061637469766560a81b604082015260600190565b6020808252600d908201526c63616e2774206265207a65726f60981b604082015260600190565b600060208284031215611e1257600080fd5b8151801515811461183e57600080fd5b634e487b7160e01b600052601160045260246000fd5b808202811582820484141761084357610843611e22565b600082611e6c57634e487b7160e01b600052601260045260246000fd5b500490565b600060018201611e8357611e83611e22565b5060010190565b8082018082111561084357610843611e22565b8181038181111561084357610843611e22565b634e487b7160e01b600052603260045260246000fd5b6000825160005b81811015611ee75760208186018101518583015201611ecd565b50600092019182525091905056fea2646970667358221220a60db98c451056fccb1d042c6da56900ebe5f34d78f0feef9fee256c54f1455664736f6c63430008140033
Constructor Arguments (ABI-Encoded and is the last bytes of the Contract Creation Code above)
000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb480000000000000000000000000000000000000000000000000000000000030d4000000000000000000000000000000000000000000000000000000000664ddbe8000000000000000000000000000000000000000000000000000000006651d2c00000000000000000000000000000000000000000000211654585005212800000000000000000000000000000000000000000000000000000000000746a528800000000000000000000000000000000000000000000000000000000e8d4a5100000000000000000000000000000000000000000000000000000000000663e0c4000000000000000000000000000000000000000000000000000000000664c8cc0
-----Decoded View---------------
Arg [0] : _paymentToken (address): 0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48
Arg [1] : _rate (uint256): 200000
Arg [2] : _start (uint256): 1716378600
Arg [3] : _end (uint256): 1716638400
Arg [4] : _totalTokensForSale (uint256): 2500000000000000000000000
Arg [5] : _minTarget (uint256): 500000000000
Arg [6] : _maxTarget (uint256): 1000000000000
Arg [7] : _startRegistration (uint256): 1715342400
Arg [8] : _endRegistration (uint256): 1716292800
-----Encoded View---------------
9 Constructor Arguments found :
Arg [0] : 000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48
Arg [1] : 0000000000000000000000000000000000000000000000000000000000030d40
Arg [2] : 00000000000000000000000000000000000000000000000000000000664ddbe8
Arg [3] : 000000000000000000000000000000000000000000000000000000006651d2c0
Arg [4] : 0000000000000000000000000000000000000000000211654585005212800000
Arg [5] : 000000000000000000000000000000000000000000000000000000746a528800
Arg [6] : 000000000000000000000000000000000000000000000000000000e8d4a51000
Arg [7] : 00000000000000000000000000000000000000000000000000000000663e0c40
Arg [8] : 00000000000000000000000000000000000000000000000000000000664c8cc0
Loading...
Loading
Loading...
Loading
Multichain Portfolio | 35 Chains
Chain | Token | Portfolio % | Price | Amount | Value |
---|
Loading...
Loading
Loading...
Loading
Loading...
Loading
[ Download: CSV Export ]
A contract address hosts a smart contract, which is a set of code stored on the blockchain that runs when predetermined conditions are met. Learn more about addresses in our Knowledge Base.