Feature Tip: Add private address tag to any address under My Name Tag !
Overview
ETH Balance
0 ETH
Eth Value
$0.00More Info
Private Name Tags
ContractCreator
View more zero value Internal Transactions in Advanced View mode
Advanced mode:
Loading...
Loading
Contract Name:
BancorNetwork
Compiler Version
v0.8.13+commit.abaa5c0e
Contract Source Code (Solidity Standard Json-Input format)
// SPDX-License-Identifier: SEE LICENSE IN LICENSE pragma solidity 0.8.13; import { Address } from "@openzeppelin/contracts/utils/Address.sol"; import { IERC20 } from "@openzeppelin/contracts/token/ERC20/IERC20.sol"; import { SafeERC20 } from "@openzeppelin/contracts/token/ERC20/utils/SafeERC20.sol"; import { ReentrancyGuardUpgradeable } from "@openzeppelin/contracts-upgradeable/security/ReentrancyGuardUpgradeable.sol"; import { EnumerableSetUpgradeable } from "@openzeppelin/contracts-upgradeable/utils/structs/EnumerableSetUpgradeable.sol"; import { PausableUpgradeable } from "@openzeppelin/contracts-upgradeable/security/PausableUpgradeable.sol"; import { ITokenGovernance } from "@bancor/token-governance/contracts/ITokenGovernance.sol"; import { IVersioned } from "../utility/interfaces/IVersioned.sol"; import { PPM_RESOLUTION } from "../utility/Constants.sol"; import { Upgradeable } from "../utility/Upgradeable.sol"; import { Time } from "../utility/Time.sol"; import { MathEx } from "../utility/MathEx.sol"; // prettier-ignore import { Utils, AlreadyExists, DoesNotExist, InvalidToken, InvalidPool, InvalidPoolCollection, NotEmpty } from "../utility/Utils.sol"; import { ROLE_ASSET_MANAGER } from "../vaults/interfaces/IVault.sol"; import { IMasterVault } from "../vaults/interfaces/IMasterVault.sol"; import { IExternalProtectionVault } from "../vaults/interfaces/IExternalProtectionVault.sol"; import { Token } from "../token/Token.sol"; import { TokenLibrary } from "../token/TokenLibrary.sol"; import { IPoolCollection, TradeAmountAndFee } from "../pools/interfaces/IPoolCollection.sol"; import { IPoolMigrator } from "../pools/interfaces/IPoolMigrator.sol"; // prettier-ignore import { IBNTPool, ROLE_BNT_MANAGER, ROLE_VAULT_MANAGER, ROLE_FUNDING_MANAGER } from "../pools/interfaces/IBNTPool.sol"; import { IPoolToken } from "../pools/interfaces/IPoolToken.sol"; import { INetworkSettings, NotWhitelisted } from "./interfaces/INetworkSettings.sol"; import { IPendingWithdrawals, CompletedWithdrawal } from "./interfaces/IPendingWithdrawals.sol"; import { IBancorNetwork, IFlashLoanRecipient } from "./interfaces/IBancorNetwork.sol"; /** * @dev Bancor Network contract */ contract BancorNetwork is IBancorNetwork, Upgradeable, ReentrancyGuardUpgradeable, PausableUpgradeable, Time, Utils { using Address for address payable; using EnumerableSetUpgradeable for EnumerableSetUpgradeable.AddressSet; using TokenLibrary for Token; using SafeERC20 for IPoolToken; error DeadlineExpired(); error DepositingDisabled(); error NativeTokenAmountMismatch(); error InsufficientFlashLoanReturn(); struct TradeParams { uint256 amount; uint256 limit; bool bySourceAmount; bool ignoreFees; } struct TradeResult { uint256 sourceAmount; uint256 targetAmount; uint256 tradingFeeAmount; uint256 networkFeeAmount; } struct TradeTokens { Token sourceToken; Token targetToken; } struct TraderInfo { address trader; address beneficiary; } // the migration manager role is required for migrating liquidity bytes32 private constant ROLE_MIGRATION_MANAGER = keccak256("ROLE_MIGRATION_MANAGER"); // the emergency manager role is required to pause/unpause the network bytes32 private constant ROLE_EMERGENCY_STOPPER = keccak256("ROLE_EMERGENCY_STOPPER"); // the network fee manager role is required to pull the accumulated pending network fees bytes32 private constant ROLE_NETWORK_FEE_MANAGER = keccak256("ROLE_NETWORK_FEE_MANAGER"); // the address of the BNT token IERC20 private immutable _bnt; // the address of the BNT token governance ITokenGovernance private immutable _bntGovernance; // the address of the vBNT token IERC20 private immutable _vbnt; // the address of the vBNT token governance ITokenGovernance private immutable _vbntGovernance; // the network settings contract INetworkSettings private immutable _networkSettings; // the master vault contract IMasterVault private immutable _masterVault; // the address of the external protection vault IExternalProtectionVault private immutable _externalProtectionVault; // the BNT pool token IPoolToken internal immutable _bntPoolToken; // the Bancor arbitrage contract address internal immutable _bancorArbitrage; // the BNT pool contract IBNTPool internal _bntPool; // the pending withdrawals contract IPendingWithdrawals internal _pendingWithdrawals; // the pool migrator contract IPoolMigrator internal _poolMigrator; // the set of all valid pool collections EnumerableSetUpgradeable.AddressSet private _poolCollections; // DEPRECATED (mapping(uint16 => IPoolCollection) _latestPoolCollections) uint256 private _deprecated0; // the set of all pools EnumerableSetUpgradeable.AddressSet private _liquidityPools; // a mapping between pools and their respective pool collections mapping(Token => IPoolCollection) private _collectionByPool; // the pending network fee amount to be burned by the vortex uint256 internal _pendingNetworkFeeAmount; bool private _depositingEnabled = true; // upgrade forward-compatibility storage gap uint256[MAX_GAP - 11] private __gap; /** * @dev triggered when a new pool collection is added */ event PoolCollectionAdded(uint16 indexed poolType, IPoolCollection indexed poolCollection); /** * @dev triggered when an existing pool collection is removed */ event PoolCollectionRemoved(uint16 indexed poolType, IPoolCollection indexed poolCollection); /** * @dev triggered when a pool is created */ event PoolCreated(Token indexed pool, IPoolCollection indexed poolCollection); /** * @dev triggered when a new pool is added to a pool collection */ event PoolAdded(Token indexed pool, IPoolCollection indexed poolCollection); /** * @dev triggered when a new pool is removed from a pool collection */ event PoolRemoved(Token indexed pool, IPoolCollection indexed poolCollection); /** * @dev triggered when funds are migrated */ event FundsMigrated( bytes32 indexed contextId, Token indexed token, address indexed provider, uint256 amount, uint256 availableAmount, uint256 originalAmount ); /** * @dev triggered on a successful trade */ event TokensTraded( bytes32 indexed contextId, Token indexed sourceToken, Token indexed targetToken, uint256 sourceAmount, uint256 targetAmount, uint256 bntAmount, uint256 targetFeeAmount, uint256 bntFeeAmount, address trader ); /** * @dev triggered when a flash-loan is completed */ event FlashLoanCompleted(Token indexed token, address indexed borrower, uint256 amount, uint256 feeAmount); /** * @dev triggered when network fees are withdrawn */ event NetworkFeesWithdrawn(address indexed caller, address indexed recipient, uint256 amount); /** * @dev a "virtual" constructor that is only used to set immutable state variables */ constructor( ITokenGovernance initBNTGovernance, ITokenGovernance initVBNTGovernance, INetworkSettings initNetworkSettings, IMasterVault initMasterVault, IExternalProtectionVault initExternalProtectionVault, IPoolToken initBNTPoolToken, address bancorArbitrage ) validAddress(address(initBNTGovernance)) validAddress(address(initVBNTGovernance)) validAddress(address(initNetworkSettings)) validAddress(address(initMasterVault)) validAddress(address(initExternalProtectionVault)) validAddress(address(initBNTPoolToken)) validAddress(address(bancorArbitrage)) { _bntGovernance = initBNTGovernance; _bnt = initBNTGovernance.token(); _vbntGovernance = initVBNTGovernance; _vbnt = initVBNTGovernance.token(); _networkSettings = initNetworkSettings; _masterVault = initMasterVault; _externalProtectionVault = initExternalProtectionVault; _bntPoolToken = initBNTPoolToken; _bancorArbitrage = bancorArbitrage; } /** * @dev fully initializes the contract and its parents */ function initialize( IBNTPool initBNTPool, IPendingWithdrawals initPendingWithdrawals, IPoolMigrator initPoolMigrator ) external validAddress(address(initBNTPool)) validAddress(address(initPendingWithdrawals)) validAddress(address(initPoolMigrator)) initializer { __BancorNetwork_init(initBNTPool, initPendingWithdrawals, initPoolMigrator); } // solhint-disable func-name-mixedcase /** * @dev initializes the contract and its parents */ function __BancorNetwork_init( IBNTPool initBNTPool, IPendingWithdrawals initPendingWithdrawals, IPoolMigrator initPoolMigrator ) internal onlyInitializing { __Upgradeable_init(); __ReentrancyGuard_init(); __Pausable_init(); __BancorNetwork_init_unchained(initBNTPool, initPendingWithdrawals, initPoolMigrator); } /** * @dev performs contract-specific initialization */ function __BancorNetwork_init_unchained( IBNTPool initBNTPool, IPendingWithdrawals initPendingWithdrawals, IPoolMigrator initPoolMigrator ) internal onlyInitializing { _bntPool = initBNTPool; _pendingWithdrawals = initPendingWithdrawals; _poolMigrator = initPoolMigrator; // set up administrative roles _setRoleAdmin(ROLE_MIGRATION_MANAGER, ROLE_ADMIN); _setRoleAdmin(ROLE_EMERGENCY_STOPPER, ROLE_ADMIN); _setRoleAdmin(ROLE_NETWORK_FEE_MANAGER, ROLE_ADMIN); _depositingEnabled = true; } // solhint-enable func-name-mixedcase modifier depositsEnabled() { _depositsEnabled(); _; } function _depositsEnabled() internal view { if (!_depositingEnabled) { revert DepositingDisabled(); } } receive() external payable {} /** * @inheritdoc Upgradeable */ function version() public pure override(IVersioned, Upgradeable) returns (uint16) { return 8; } /** * @dev returns the migration manager role */ function roleMigrationManager() external pure returns (bytes32) { return ROLE_MIGRATION_MANAGER; } /** * @dev returns the emergency stopper role */ function roleEmergencyStopper() external pure returns (bytes32) { return ROLE_EMERGENCY_STOPPER; } /** * @dev returns the network fee manager role */ function roleNetworkFeeManager() external pure returns (bytes32) { return ROLE_NETWORK_FEE_MANAGER; } /** * @dev returns the pending network fee amount to be burned by the vortex */ function pendingNetworkFeeAmount() external view returns (uint256) { return _pendingNetworkFeeAmount; } /** * @dev registers new pool collection with the network * * requirements: * * - the caller must be the admin of the contract */ function registerPoolCollection( IPoolCollection newPoolCollection ) external validAddress(address(newPoolCollection)) onlyAdmin nonReentrant { // verify that there is no pool collection of the same type and version uint16 newPoolType = newPoolCollection.poolType(); uint16 newPoolVersion = newPoolCollection.version(); IPoolCollection poolCollection = _findPoolCollection(newPoolType, newPoolVersion); if (poolCollection != IPoolCollection(address(0)) || !_poolCollections.add(address(newPoolCollection))) { revert AlreadyExists(); } _setAccessRoles(newPoolCollection, true); emit PoolCollectionAdded({ poolType: newPoolCollection.poolType(), poolCollection: newPoolCollection }); } /** * @dev unregisters an existing pool collection from the network * * requirements: * * - the caller must be the admin of the contract */ function unregisterPoolCollection( IPoolCollection poolCollection ) external validAddress(address(poolCollection)) onlyAdmin nonReentrant { // verify that no pools are associated with the specified pool collection if (poolCollection.poolCount() != 0) { revert NotEmpty(); } if (!_poolCollections.remove(address(poolCollection))) { revert DoesNotExist(); } _setAccessRoles(poolCollection, false); emit PoolCollectionRemoved({ poolType: poolCollection.poolType(), poolCollection: poolCollection }); } /** * @inheritdoc IBancorNetwork */ function poolCollections() external view returns (IPoolCollection[] memory) { uint256 length = _poolCollections.length(); IPoolCollection[] memory list = new IPoolCollection[](length); for (uint256 i = 0; i < length; i++) { list[i] = IPoolCollection(_poolCollections.at(i)); } return list; } /** * @inheritdoc IBancorNetwork */ function liquidityPools() external view returns (Token[] memory) { uint256 length = _liquidityPools.length(); Token[] memory list = new Token[](length); for (uint256 i = 0; i < length; i++) { list[i] = Token(_liquidityPools.at(i)); } return list; } /** * @inheritdoc IBancorNetwork */ function collectionByPool(Token pool) external view returns (IPoolCollection) { return _collectionByPool[pool]; } /** * @inheritdoc IBancorNetwork */ function createPools( Token[] calldata tokens, IPoolCollection poolCollection ) external validAddress(address(poolCollection)) onlyAdmin nonReentrant { if (!_poolCollections.contains(address(poolCollection))) { revert DoesNotExist(); } uint256 length = tokens.length; for (uint256 i = 0; i < length; i++) { _createPool(tokens[i], poolCollection); } } /** * @dev creates a new pool */ function _createPool(Token token, IPoolCollection poolCollection) private { _validAddress(address(token)); if (token.isEqual(_bnt)) { revert InvalidToken(); } if (!_liquidityPools.add(address(token))) { revert AlreadyExists(); } // this is where the magic happens... poolCollection.createPool(token); // add the pool collection to the reverse pool collection lookup _collectionByPool[token] = poolCollection; emit PoolCreated({ pool: token, poolCollection: poolCollection }); emit PoolAdded({ pool: token, poolCollection: poolCollection }); } /** * @inheritdoc IBancorNetwork */ function migratePools(Token[] calldata pools, IPoolCollection newPoolCollection) external nonReentrant { if (!_poolCollections.contains(address(newPoolCollection))) { revert DoesNotExist(); } uint256 length = pools.length; for (uint256 i = 0; i < length; i++) { Token pool = pools[i]; // request the pool migrator to migrate the pool to the new pool collection _poolMigrator.migratePool(pool, newPoolCollection); IPoolCollection prevPoolCollection = _collectionByPool[pool]; // update the mapping between pools and their respective pool collections _collectionByPool[pool] = newPoolCollection; emit PoolRemoved(pool, prevPoolCollection); emit PoolAdded(pool, newPoolCollection); } } /** * @inheritdoc IBancorNetwork */ function depositFor( address provider, Token pool, uint256 tokenAmount ) external payable depositsEnabled validAddress(provider) validAddress(address(pool)) greaterThanZero(tokenAmount) whenNotPaused nonReentrant returns (uint256) { return _depositFor(provider, pool, tokenAmount, msg.sender); } /** * @inheritdoc IBancorNetwork */ function deposit( Token pool, uint256 tokenAmount ) external payable depositsEnabled validAddress(address(pool)) greaterThanZero(tokenAmount) whenNotPaused nonReentrant returns (uint256) { return _depositFor(msg.sender, pool, tokenAmount, msg.sender); } /** * @inheritdoc IBancorNetwork */ function initWithdrawal( IPoolToken poolToken, uint256 poolTokenAmount ) external validAddress(address(poolToken)) greaterThanZero(poolTokenAmount) whenNotPaused nonReentrant returns (uint256) { return _initWithdrawal(msg.sender, poolToken, poolTokenAmount); } /** * @inheritdoc IBancorNetwork */ function cancelWithdrawal(uint256 id) external whenNotPaused nonReentrant returns (uint256) { return _pendingWithdrawals.cancelWithdrawal(msg.sender, id); } /** * @inheritdoc IBancorNetwork */ function withdraw(uint256 id) external whenNotPaused nonReentrant returns (uint256) { address provider = msg.sender; bytes32 contextId = _withdrawContextId(id, provider); // complete the withdrawal and claim the locked pool tokens CompletedWithdrawal memory completedRequest = _pendingWithdrawals.completeWithdrawal(contextId, provider, id); if (completedRequest.poolToken == _bntPoolToken) { return _withdrawBNT(contextId, provider, completedRequest); } return _withdrawBaseToken(contextId, provider, completedRequest); } /** * @inheritdoc IBancorNetwork */ function tradeBySourceAmount( Token sourceToken, Token targetToken, uint256 sourceAmount, uint256 minReturnAmount, uint256 deadline, address beneficiary ) external payable whenNotPaused nonReentrant returns (uint256) { return _tradeBySourceAmount( sourceToken, targetToken, sourceAmount, minReturnAmount, deadline, beneficiary, msg.sender ); } /** * @inheritdoc IBancorNetwork */ function tradeByTargetAmount( Token sourceToken, Token targetToken, uint256 targetAmount, uint256 maxSourceAmount, uint256 deadline, address beneficiary ) external payable whenNotPaused nonReentrant returns (uint256) { return _tradeByTargetAmount( sourceToken, targetToken, targetAmount, maxSourceAmount, deadline, beneficiary, msg.sender ); } /** * @inheritdoc IBancorNetwork */ function tradeBySourceAmountArb( Token sourceToken, Token targetToken, uint256 sourceAmount, uint256 minReturnAmount, uint256 deadline, address beneficiary ) external payable whenNotPaused only(_bancorArbitrage) returns (uint256) { return _tradeBySourceAmount( sourceToken, targetToken, sourceAmount, minReturnAmount, deadline, beneficiary, msg.sender ); } /** * @inheritdoc IBancorNetwork */ function tradeByTargetAmountArb( Token sourceToken, Token targetToken, uint256 targetAmount, uint256 maxSourceAmount, uint256 deadline, address beneficiary ) external payable whenNotPaused only(_bancorArbitrage) returns (uint256) { return _tradeByTargetAmount( sourceToken, targetToken, targetAmount, maxSourceAmount, deadline, beneficiary, msg.sender ); } /** * @inheritdoc IBancorNetwork */ function flashLoan( Token token, uint256 amount, IFlashLoanRecipient recipient, bytes calldata data ) external validAddress(address(token)) greaterThanZero(amount) validAddress(address(recipient)) whenNotPaused nonReentrant { if (!token.isEqual(_bnt) && !_networkSettings.isTokenWhitelisted(token)) { revert NotWhitelisted(); } uint256 feeAmount; if (msg.sender == _bancorArbitrage) { // exempt arb contract from fees feeAmount = 0; } else { feeAmount = MathEx.mulDivF(amount, _networkSettings.flashLoanFeePPM(token), PPM_RESOLUTION); } // save the current balance uint256 prevBalance = token.balanceOf(address(this)); // transfer the amount from the master vault to the recipient _masterVault.withdrawFunds(token, payable(address(recipient)), amount); // invoke the recipient's callback recipient.onFlashLoan(msg.sender, token.toIERC20(), amount, feeAmount, data); // ensure that the tokens + fee have been deposited back to the network uint256 returnedAmount = token.balanceOf(address(this)) - prevBalance; if (returnedAmount < amount + feeAmount) { revert InsufficientFlashLoanReturn(); } // transfer the amount and the fee back to the vault if (token.isNative()) { payable(address(_masterVault)).sendValue(returnedAmount); } else { token.safeTransfer(payable(address(_masterVault)), returnedAmount); } // notify the pool of accrued fees if (token.isEqual(_bnt)) { IBNTPool cachedBNTPool = _bntPool; cachedBNTPool.onFeesCollected(token, feeAmount, false); } else { // get the pool and verify that it exists IPoolCollection poolCollection = _poolCollection(token); poolCollection.onFeesCollected(token, feeAmount); } emit FlashLoanCompleted({ token: token, borrower: msg.sender, amount: amount, feeAmount: feeAmount }); } /** * @inheritdoc IBancorNetwork */ function migrateLiquidity( Token token, address provider, uint256 amount, uint256 availableAmount, uint256 originalAmount ) external payable whenNotPaused onlyRoleMember(ROLE_MIGRATION_MANAGER) nonReentrant { bytes32 contextId = keccak256( abi.encodePacked(msg.sender, _time(), token, provider, amount, availableAmount, originalAmount) ); if (token.isEqual(_bnt)) { _depositBNTFor(contextId, provider, amount, msg.sender, true, originalAmount); } else { _depositBaseTokenFor(contextId, provider, token, amount, msg.sender, availableAmount); } emit FundsMigrated(contextId, token, provider, amount, availableAmount, originalAmount); } /** * @inheritdoc IBancorNetwork */ function withdrawNetworkFees( address recipient ) external whenNotPaused onlyRoleMember(ROLE_NETWORK_FEE_MANAGER) validAddress(recipient) nonReentrant returns (uint256) { uint256 currentPendingNetworkFeeAmount = _pendingNetworkFeeAmount; if (currentPendingNetworkFeeAmount == 0) { return 0; } _pendingNetworkFeeAmount = 0; _masterVault.withdrawFunds(Token(address(_bnt)), payable(recipient), currentPendingNetworkFeeAmount); emit NetworkFeesWithdrawn(msg.sender, recipient, currentPendingNetworkFeeAmount); return currentPendingNetworkFeeAmount; } /** * @dev pauses the network * * requirements: * * - the caller must have the ROLE_EMERGENCY_STOPPER privilege */ function pause() external onlyRoleMember(ROLE_EMERGENCY_STOPPER) { _pause(); } /** * @dev resumes the network * * requirements: * * - the caller must have the ROLE_EMERGENCY_STOPPER privilege */ function resume() external onlyRoleMember(ROLE_EMERGENCY_STOPPER) { _unpause(); } /** * @dev returns whether deposits are enabled */ function depositingEnabled() external view returns (bool) { return _depositingEnabled; } /** * @dev enables/disables depositing into a given pool * * requirements: * * - the caller must be the owner of the contract */ function enableDepositing(bool status) external onlyAdmin { if (_depositingEnabled == status) { return; } _depositingEnabled = status; } /** * @dev generates context ID for a deposit request */ function _depositContextId( address provider, Token pool, uint256 tokenAmount, address caller ) private view returns (bytes32) { return keccak256(abi.encodePacked(caller, _time(), provider, pool, tokenAmount)); } /** * @dev generates context ID for a withdraw request */ function _withdrawContextId(uint256 id, address caller) private view returns (bytes32) { return keccak256(abi.encodePacked(caller, _time(), id)); } /** * @dev deposits liquidity for the specified provider from caller * * requirements: * * - the caller must have approved the network to transfer the liquidity tokens on its behalf */ function _depositFor(address provider, Token pool, uint256 tokenAmount, address caller) private returns (uint256) { bytes32 contextId = _depositContextId(provider, pool, tokenAmount, caller); if (pool.isEqual(_bnt)) { return _depositBNTFor(contextId, provider, tokenAmount, caller, false, 0); } return _depositBaseTokenFor(contextId, provider, pool, tokenAmount, caller, tokenAmount); } /** * @dev deposits BNT liquidity for the specified provider from caller * * requirements: * * - the caller must have approved the network to transfer BNT on its behalf */ function _depositBNTFor( bytes32 contextId, address provider, uint256 bntAmount, address caller, bool isMigrating, uint256 originalAmount ) private returns (uint256) { if (msg.value > 0) { revert NativeTokenAmountMismatch(); } IBNTPool cachedBNTPool = _bntPool; // transfer the tokens from the caller to the BNT pool _bnt.transferFrom(caller, address(cachedBNTPool), bntAmount); // process BNT pool deposit return cachedBNTPool.depositFor(contextId, provider, bntAmount, isMigrating, originalAmount); } /** * @dev deposits base token liquidity for the specified provider from sender * * requirements: * * - the caller must have approved the network to transfer base tokens to on its behalf */ function _depositBaseTokenFor( bytes32 contextId, address provider, Token pool, uint256 tokenAmount, address caller, uint256 availableAmount ) private returns (uint256) { // transfer the tokens from the sender to the vault _depositToMasterVault(pool, caller, availableAmount); // get the pool collection that managed this pool IPoolCollection poolCollection = _poolCollection(pool); // process deposit to the base token pool (includes the native token pool) return poolCollection.depositFor(contextId, provider, pool, tokenAmount); } /** * @dev handles BNT withdrawal */ function _withdrawBNT( bytes32 contextId, address provider, CompletedWithdrawal memory completedRequest ) private returns (uint256) { IBNTPool cachedBNTPool = _bntPool; // transfer the pool tokens to from the pending withdrawals contract to the BNT pool completedRequest.poolToken.transferFrom( address(_pendingWithdrawals), address(cachedBNTPool), completedRequest.poolTokenAmount ); // transfer vBNT from the caller to the BNT pool _vbnt.transferFrom(provider, address(cachedBNTPool), completedRequest.poolTokenAmount); // call withdraw on the BNT pool return cachedBNTPool.withdraw( contextId, provider, completedRequest.poolTokenAmount, completedRequest.reserveTokenAmount ); } /** * @dev handles base token withdrawal */ function _withdrawBaseToken( bytes32 contextId, address provider, CompletedWithdrawal memory completedRequest ) private returns (uint256) { Token pool = completedRequest.poolToken.reserveToken(); // get the pool collection that manages this pool IPoolCollection poolCollection = _poolCollection(pool); // transfer the pool tokens to from the pending withdrawals contract to the pool collection completedRequest.poolToken.transferFrom( address(_pendingWithdrawals), address(poolCollection), completedRequest.poolTokenAmount ); // call withdraw on the base token pool - returns the amounts/breakdown return poolCollection.withdraw( contextId, provider, pool, completedRequest.poolTokenAmount, completedRequest.reserveTokenAmount ); } /** * @dev verifies that the provided trade params are valid */ function _verifyTradeParams( Token sourceToken, Token targetToken, uint256 amount, uint256 limit, uint256 deadline ) internal view { _validAddress(address(sourceToken)); _validAddress(address(targetToken)); if (sourceToken == targetToken) { revert InvalidToken(); } _greaterThanZero(amount); _greaterThanZero(limit); if (deadline < _time()) { revert DeadlineExpired(); } } /** * @dev internal trade by source amount logic */ function _tradeBySourceAmount( Token sourceToken, Token targetToken, uint256 sourceAmount, uint256 minReturnAmount, uint256 deadline, address beneficiary, address sender ) private returns (uint256) { _verifyTradeParams(sourceToken, targetToken, sourceAmount, minReturnAmount, deadline); bool _ignoreFees = false; if (sender == _bancorArbitrage) { _ignoreFees = true; } return _trade( TradeTokens({ sourceToken: sourceToken, targetToken: targetToken }), TradeParams({ bySourceAmount: true, amount: sourceAmount, limit: minReturnAmount, ignoreFees: _ignoreFees }), TraderInfo({ trader: sender, beneficiary: beneficiary }), deadline ); } /** * @dev internal trade by target amount logic */ function _tradeByTargetAmount( Token sourceToken, Token targetToken, uint256 targetAmount, uint256 maxSourceAmount, uint256 deadline, address beneficiary, address sender ) private returns (uint256) { _verifyTradeParams(sourceToken, targetToken, targetAmount, maxSourceAmount, deadline); bool _ignoreFees = false; if (sender == _bancorArbitrage) { _ignoreFees = true; } return _trade( TradeTokens({ sourceToken: sourceToken, targetToken: targetToken }), TradeParams({ bySourceAmount: false, amount: targetAmount, limit: maxSourceAmount, ignoreFees: _ignoreFees }), TraderInfo({ trader: sender, beneficiary: beneficiary }), deadline ); } /** * @dev performs a trade by providing either the source or target amount: * * - when trading by the source amount, the amount represents the source amount and the limit is the minimum return * amount * - when trading by the target amount, the amount represents the target amount and the limit is the maximum source * amount * * requirements: * * - the caller must have approved the network to transfer the source tokens on its behalf (except for in the * native token case) */ function _trade( TradeTokens memory tokens, TradeParams memory params, TraderInfo memory traderInfo, uint256 deadline ) private returns (uint256) { // ensure the beneficiary is set if (traderInfo.beneficiary == address(0)) { traderInfo.beneficiary = traderInfo.trader; } bytes32 contextId = keccak256( abi.encodePacked( traderInfo.trader, _time(), tokens.sourceToken, tokens.targetToken, params.amount, params.limit, params.bySourceAmount, deadline, traderInfo.beneficiary ) ); // perform either a single or double hop trade, based on the source and the target pool TradeResult memory firstHopTradeResult; TradeResult memory lastHopTradeResult; uint256 networkFeeAmount; if (tokens.sourceToken.isEqual(_bnt)) { lastHopTradeResult = _tradeBNT(contextId, tokens.targetToken, true, params); firstHopTradeResult = lastHopTradeResult; networkFeeAmount = lastHopTradeResult.networkFeeAmount; emit TokensTraded({ contextId: contextId, sourceToken: tokens.sourceToken, targetToken: tokens.targetToken, sourceAmount: lastHopTradeResult.sourceAmount, targetAmount: lastHopTradeResult.targetAmount, bntAmount: lastHopTradeResult.sourceAmount, targetFeeAmount: lastHopTradeResult.tradingFeeAmount, bntFeeAmount: 0, trader: traderInfo.trader }); } else if (tokens.targetToken.isEqual(_bnt)) { lastHopTradeResult = _tradeBNT(contextId, tokens.sourceToken, false, params); firstHopTradeResult = lastHopTradeResult; networkFeeAmount = lastHopTradeResult.networkFeeAmount; emit TokensTraded({ contextId: contextId, sourceToken: tokens.sourceToken, targetToken: tokens.targetToken, sourceAmount: lastHopTradeResult.sourceAmount, targetAmount: lastHopTradeResult.targetAmount, bntAmount: lastHopTradeResult.targetAmount, targetFeeAmount: lastHopTradeResult.tradingFeeAmount, bntFeeAmount: lastHopTradeResult.tradingFeeAmount, trader: traderInfo.trader }); } else { (firstHopTradeResult, lastHopTradeResult) = _tradeBaseTokens(contextId, tokens, params); networkFeeAmount = firstHopTradeResult.networkFeeAmount + lastHopTradeResult.networkFeeAmount; emit TokensTraded({ contextId: contextId, sourceToken: tokens.sourceToken, targetToken: tokens.targetToken, sourceAmount: firstHopTradeResult.sourceAmount, targetAmount: lastHopTradeResult.targetAmount, bntAmount: firstHopTradeResult.targetAmount, targetFeeAmount: lastHopTradeResult.tradingFeeAmount, bntFeeAmount: firstHopTradeResult.tradingFeeAmount, trader: traderInfo.trader }); } // transfer the tokens from the trader to the vault _depositToMasterVault(tokens.sourceToken, traderInfo.trader, firstHopTradeResult.sourceAmount); // transfer the target tokens/native token to the beneficiary _masterVault.withdrawFunds( tokens.targetToken, payable(traderInfo.beneficiary), lastHopTradeResult.targetAmount ); // update the pending network fee amount to be burned by the vortex _pendingNetworkFeeAmount += networkFeeAmount; return params.bySourceAmount ? lastHopTradeResult.targetAmount : firstHopTradeResult.sourceAmount; } /** * @dev performs a single hop between BNT and a base token trade by providing either the source or the target amount * * - when trading by the source amount, the amount represents the source amount and the limit is the minimum return * amount * - when trading by the target amount, the amount represents the target amount and the limit is the maximum source * amount */ function _tradeBNT( bytes32 contextId, Token pool, bool fromBNT, TradeParams memory params ) private returns (TradeResult memory) { TradeTokens memory tokens = fromBNT ? TradeTokens({ sourceToken: Token(address(_bnt)), targetToken: pool }) : TradeTokens({ sourceToken: pool, targetToken: Token(address(_bnt)) }); TradeAmountAndFee memory tradeAmountsAndFee = params.bySourceAmount ? _poolCollection(pool).tradeBySourceAmount( contextId, tokens.sourceToken, tokens.targetToken, params.amount, params.limit, params.ignoreFees ) : _poolCollection(pool).tradeByTargetAmount( contextId, tokens.sourceToken, tokens.targetToken, params.amount, params.limit, params.ignoreFees ); // if the target token is BNT, notify the BNT pool on collected fees (which shouldn't include the network fee // amount, so we have to deduct it explicitly from the full trading fee amount) if (!fromBNT) { _bntPool.onFeesCollected( pool, tradeAmountsAndFee.tradingFeeAmount - tradeAmountsAndFee.networkFeeAmount, true ); } return TradeResult({ sourceAmount: params.bySourceAmount ? params.amount : tradeAmountsAndFee.amount, targetAmount: params.bySourceAmount ? tradeAmountsAndFee.amount : params.amount, tradingFeeAmount: tradeAmountsAndFee.tradingFeeAmount, networkFeeAmount: tradeAmountsAndFee.networkFeeAmount }); } /** * @dev performs a double hop trade between two base tokens by providing either the source or the target amount * * - when trading by the source amount, the amount represents the source amount and the limit is the minimum return * amount * - when trading by the target amount, the amount represents the target amount and the limit is the maximum source * amount */ function _tradeBaseTokens( bytes32 contextId, TradeTokens memory tokens, TradeParams memory params ) private returns (TradeResult memory, TradeResult memory) { if (params.bySourceAmount) { uint256 sourceAmount = params.amount; uint256 minReturnAmount = params.limit; // trade source tokens to BNT (while accepting any return amount) TradeResult memory targetHop1 = _tradeBNT( contextId, tokens.sourceToken, false, TradeParams({ bySourceAmount: true, amount: sourceAmount, limit: 1, ignoreFees: params.ignoreFees }) ); // trade the received BNT target amount to target tokens (while respecting the minimum return amount) TradeResult memory targetHop2 = _tradeBNT( contextId, tokens.targetToken, true, TradeParams({ bySourceAmount: true, amount: targetHop1.targetAmount, limit: minReturnAmount, ignoreFees: params.ignoreFees }) ); return (targetHop1, targetHop2); } uint256 targetAmount = params.amount; uint256 maxSourceAmount = params.limit; // trade any amount of BNT to get the requested target amount (we will use the actual traded amount to restrict // the trade from the source) TradeResult memory sourceHop2 = _tradeBNT( contextId, tokens.targetToken, true, TradeParams({ bySourceAmount: false, amount: targetAmount, limit: type(uint256).max, ignoreFees: params.ignoreFees }) ); // trade source tokens to the required amount of BNT (while respecting the maximum source amount) TradeResult memory sourceHop1 = _tradeBNT( contextId, tokens.sourceToken, false, TradeParams({ bySourceAmount: false, amount: sourceHop2.sourceAmount, limit: maxSourceAmount, ignoreFees: params.ignoreFees }) ); return (sourceHop1, sourceHop2); } /** * @dev deposits tokens to the master vault and verifies that msg.value corresponds to its type */ function _depositToMasterVault(Token token, address caller, uint256 amount) private { if (token.isNative()) { if (msg.value < amount) { revert NativeTokenAmountMismatch(); } // using a regular transfer here would revert due to exceeding the 2300 gas limit which is why we're using // call instead (via sendValue), which the 2300 gas limit does not apply for payable(address(_masterVault)).sendValue(amount); // refund the caller for the remaining native token amount if (msg.value > amount) { payable(address(caller)).sendValue(msg.value - amount); } } else { if (msg.value > 0) { revert NativeTokenAmountMismatch(); } token.safeTransferFrom(caller, address(_masterVault), amount); } } /** * @dev verifies that the specified pool is managed by a valid pool collection and returns it */ function _poolCollection(Token token) private view returns (IPoolCollection) { // verify that the pool is managed by a valid pool collection IPoolCollection poolCollection = _collectionByPool[token]; if (address(poolCollection) == address(0)) { revert InvalidToken(); } return poolCollection; } /** * @dev initiates liquidity withdrawal */ function _initWithdrawal( address provider, IPoolToken poolToken, uint256 poolTokenAmount ) private returns (uint256) { if (poolToken != _bntPoolToken) { Token reserveToken = poolToken.reserveToken(); if (_poolCollection(reserveToken).poolToken(reserveToken) != poolToken) { revert InvalidPool(); } } // transfer the pool tokens from the provider (we aren't using safeTransferFrom, since the PoolToken is a fully // compliant ERC20 token contract) poolToken.transferFrom(provider, address(_pendingWithdrawals), poolTokenAmount); return _pendingWithdrawals.initWithdrawal(provider, poolToken, poolTokenAmount); } /** * @dev grants/revokes required roles to/from a pool collection */ function _setAccessRoles(IPoolCollection poolCollection, bool set) private { address poolCollectionAddress = address(poolCollection); if (set) { _bntPool.grantRole(ROLE_BNT_MANAGER, poolCollectionAddress); _bntPool.grantRole(ROLE_VAULT_MANAGER, poolCollectionAddress); _bntPool.grantRole(ROLE_FUNDING_MANAGER, poolCollectionAddress); _masterVault.grantRole(ROLE_ASSET_MANAGER, poolCollectionAddress); _externalProtectionVault.grantRole(ROLE_ASSET_MANAGER, poolCollectionAddress); } else { _bntPool.revokeRole(ROLE_BNT_MANAGER, poolCollectionAddress); _bntPool.revokeRole(ROLE_VAULT_MANAGER, poolCollectionAddress); _bntPool.revokeRole(ROLE_FUNDING_MANAGER, poolCollectionAddress); _masterVault.revokeRole(ROLE_ASSET_MANAGER, poolCollectionAddress); _externalProtectionVault.revokeRole(ROLE_ASSET_MANAGER, poolCollectionAddress); } } /* * @dev finds a pool collection with the given type and version */ function _findPoolCollection(uint16 poolType, uint16 poolVersion) private view returns (IPoolCollection) { // note that there's no risk of using an unbounded loop here since the list of all the active pool collections // is always going to remain sufficiently small uint256 length = _poolCollections.length(); for (uint256 i = 0; i < length; i++) { IPoolCollection poolCollection = IPoolCollection(_poolCollections.at(i)); if ((poolCollection.poolType() == poolType && poolCollection.version() == poolVersion)) { return poolCollection; } } return IPoolCollection(address(0)); } }
// SPDX-License-Identifier: MIT pragma solidity >=0.6.12; /// @title Claimable contract interface interface IClaimable { function owner() external view returns (address); function transferOwnership(address newOwner) external; function acceptOwnership() external; }
// SPDX-License-Identifier: MIT pragma solidity >=0.6.12; import "@openzeppelin/contracts/token/ERC20/IERC20.sol"; import "./IClaimable.sol"; /// @title Mintable Token interface interface IMintableToken is IERC20, IClaimable { function issue(address to, uint256 amount) external; function destroy(address from, uint256 amount) external; }
// SPDX-License-Identifier: MIT pragma solidity >=0.6.12; import "./IMintableToken.sol"; /// @title The interface for mintable/burnable token governance. interface ITokenGovernance { // The address of the mintable ERC20 token. function token() external view returns (IMintableToken); /// @dev Mints new tokens. /// /// @param to Account to receive the new amount. /// @param amount Amount to increase the supply by. /// function mint(address to, uint256 amount) external; /// @dev Burns tokens from the caller. /// /// @param amount Amount to decrease the supply by. /// function burn(uint256 amount) external; }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v4.5.0) (access/AccessControlEnumerable.sol) pragma solidity ^0.8.0; import "./IAccessControlEnumerableUpgradeable.sol"; import "./AccessControlUpgradeable.sol"; import "../utils/structs/EnumerableSetUpgradeable.sol"; import "../proxy/utils/Initializable.sol"; /** * @dev Extension of {AccessControl} that allows enumerating the members of each role. */ abstract contract AccessControlEnumerableUpgradeable is Initializable, IAccessControlEnumerableUpgradeable, AccessControlUpgradeable { function __AccessControlEnumerable_init() internal onlyInitializing { } function __AccessControlEnumerable_init_unchained() internal onlyInitializing { } using EnumerableSetUpgradeable for EnumerableSetUpgradeable.AddressSet; mapping(bytes32 => EnumerableSetUpgradeable.AddressSet) private _roleMembers; /** * @dev See {IERC165-supportsInterface}. */ function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) { return interfaceId == type(IAccessControlEnumerableUpgradeable).interfaceId || super.supportsInterface(interfaceId); } /** * @dev Returns one of the accounts that have `role`. `index` must be a * value between 0 and {getRoleMemberCount}, non-inclusive. * * Role bearers are not sorted in any particular way, and their ordering may * change at any point. * * WARNING: When using {getRoleMember} and {getRoleMemberCount}, make sure * you perform all queries on the same block. See the following * https://forum.openzeppelin.com/t/iterating-over-elements-on-enumerableset-in-openzeppelin-contracts/2296[forum post] * for more information. */ function getRoleMember(bytes32 role, uint256 index) public view virtual override returns (address) { return _roleMembers[role].at(index); } /** * @dev Returns the number of accounts that have `role`. Can be used * together with {getRoleMember} to enumerate all bearers of a role. */ function getRoleMemberCount(bytes32 role) public view virtual override returns (uint256) { return _roleMembers[role].length(); } /** * @dev Overload {_grantRole} to track enumerable memberships */ function _grantRole(bytes32 role, address account) internal virtual override { super._grantRole(role, account); _roleMembers[role].add(account); } /** * @dev Overload {_revokeRole} to track enumerable memberships */ function _revokeRole(bytes32 role, address account) internal virtual override { super._revokeRole(role, account); _roleMembers[role].remove(account); } /** * @dev This empty reserved space is put in place to allow future versions to add new * variables without shifting down storage in the inheritance chain. * See https://docs.openzeppelin.com/contracts/4.x/upgradeable#storage_gaps */ uint256[49] private __gap; }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v4.5.0) (access/AccessControl.sol) pragma solidity ^0.8.0; import "./IAccessControlUpgradeable.sol"; import "../utils/ContextUpgradeable.sol"; import "../utils/StringsUpgradeable.sol"; import "../utils/introspection/ERC165Upgradeable.sol"; import "../proxy/utils/Initializable.sol"; /** * @dev Contract module that allows children to implement role-based access * control mechanisms. This is a lightweight version that doesn't allow enumerating role * members except through off-chain means by accessing the contract event logs. Some * applications may benefit from on-chain enumerability, for those cases see * {AccessControlEnumerable}. * * Roles are referred to by their `bytes32` identifier. These should be exposed * in the external API and be unique. The best way to achieve this is by * using `public constant` hash digests: * * ``` * 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}: * * ``` * 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. */ abstract contract AccessControlUpgradeable is Initializable, ContextUpgradeable, IAccessControlUpgradeable, ERC165Upgradeable { function __AccessControl_init() internal onlyInitializing { } function __AccessControl_init_unchained() internal onlyInitializing { } struct RoleData { mapping(address => bool) members; bytes32 adminRole; } mapping(bytes32 => RoleData) private _roles; bytes32 public constant DEFAULT_ADMIN_ROLE = 0x00; /** * @dev Modifier that checks that an account has a specific role. Reverts * with a standardized message including the required role. * * The format of the revert reason is given by the following regular expression: * * /^AccessControl: account (0x[0-9a-f]{40}) is missing role (0x[0-9a-f]{64})$/ * * _Available since v4.1._ */ modifier onlyRole(bytes32 role) { _checkRole(role, _msgSender()); _; } /** * @dev See {IERC165-supportsInterface}. */ function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) { return interfaceId == type(IAccessControlUpgradeable).interfaceId || super.supportsInterface(interfaceId); } /** * @dev Returns `true` if `account` has been granted `role`. */ function hasRole(bytes32 role, address account) public view virtual override returns (bool) { return _roles[role].members[account]; } /** * @dev Revert with a standard message if `account` is missing `role`. * * The format of the revert reason is given by the following regular expression: * * /^AccessControl: account (0x[0-9a-f]{40}) is missing role (0x[0-9a-f]{64})$/ */ function _checkRole(bytes32 role, address account) internal view virtual { if (!hasRole(role, account)) { revert( string( abi.encodePacked( "AccessControl: account ", StringsUpgradeable.toHexString(uint160(account), 20), " is missing role ", StringsUpgradeable.toHexString(uint256(role), 32) ) ) ); } } /** * @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 override 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. */ function grantRole(bytes32 role, address account) public virtual override 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. */ function revokeRole(bytes32 role, address account) public virtual override 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 `account`. */ function renounceRole(bytes32 role, address account) public virtual override { require(account == _msgSender(), "AccessControl: can only renounce roles for self"); _revokeRole(role, account); } /** * @dev Grants `role` to `account`. * * If `account` had not been already granted `role`, emits a {RoleGranted} * event. Note that unlike {grantRole}, this function doesn't perform any * checks on the calling account. * * [WARNING] * ==== * This function should only be called from the constructor when setting * up the initial roles for the system. * * Using this function in any other way is effectively circumventing the admin * system imposed by {AccessControl}. * ==== * * NOTE: This function is deprecated in favor of {_grantRole}. */ function _setupRole(bytes32 role, address account) internal virtual { _grantRole(role, account); } /** * @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 Grants `role` to `account`. * * Internal function without access restriction. */ function _grantRole(bytes32 role, address account) internal virtual { if (!hasRole(role, account)) { _roles[role].members[account] = true; emit RoleGranted(role, account, _msgSender()); } } /** * @dev Revokes `role` from `account`. * * Internal function without access restriction. */ function _revokeRole(bytes32 role, address account) internal virtual { if (hasRole(role, account)) { _roles[role].members[account] = false; emit RoleRevoked(role, account, _msgSender()); } } /** * @dev This empty reserved space is put in place to allow future versions to add new * variables without shifting down storage in the inheritance chain. * See https://docs.openzeppelin.com/contracts/4.x/upgradeable#storage_gaps */ uint256[49] private __gap; }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts v4.4.1 (access/IAccessControlEnumerable.sol) pragma solidity ^0.8.0; import "./IAccessControlUpgradeable.sol"; /** * @dev External interface of AccessControlEnumerable declared to support ERC165 detection. */ interface IAccessControlEnumerableUpgradeable is IAccessControlUpgradeable { /** * @dev Returns one of the accounts that have `role`. `index` must be a * value between 0 and {getRoleMemberCount}, non-inclusive. * * Role bearers are not sorted in any particular way, and their ordering may * change at any point. * * WARNING: When using {getRoleMember} and {getRoleMemberCount}, make sure * you perform all queries on the same block. See the following * https://forum.openzeppelin.com/t/iterating-over-elements-on-enumerableset-in-openzeppelin-contracts/2296[forum post] * for more information. */ function getRoleMember(bytes32 role, uint256 index) external view returns (address); /** * @dev Returns the number of accounts that have `role`. Can be used * together with {getRoleMember} to enumerate all bearers of a role. */ function getRoleMemberCount(bytes32 role) external view returns (uint256); }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts v4.4.1 (access/IAccessControl.sol) pragma solidity ^0.8.0; /** * @dev External interface of AccessControl declared to support ERC165 detection. */ interface IAccessControlUpgradeable { /** * @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. * * _Available since v3.1._ */ 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 `account`. */ function renounceRole(bytes32 role, address account) external; }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v4.5.0) (proxy/utils/Initializable.sol) pragma solidity ^0.8.0; import "../../utils/AddressUpgradeable.sol"; /** * @dev This is a base contract to aid in writing upgradeable contracts, or any kind of contract that will be deployed * behind a proxy. Since proxied contracts do not make use of a constructor, it's common to move constructor logic to an * external initializer function, usually called `initialize`. It then becomes necessary to protect this initializer * function so it can only be called once. The {initializer} modifier provided by this contract will have this effect. * * TIP: To avoid leaving the proxy in an uninitialized state, the initializer function should be called as early as * possible by providing the encoded function call as the `_data` argument to {ERC1967Proxy-constructor}. * * CAUTION: When used with inheritance, manual care must be taken to not invoke a parent initializer twice, or to ensure * that all initializers are idempotent. This is not verified automatically as constructors are by Solidity. * * [CAUTION] * ==== * Avoid leaving a contract uninitialized. * * An uninitialized contract can be taken over by an attacker. This applies to both a proxy and its implementation * contract, which may impact the proxy. To initialize the implementation contract, you can either invoke the * initializer manually, or you can include a constructor to automatically mark it as initialized when it is deployed: * * [.hljs-theme-light.nopadding] * ``` * /// @custom:oz-upgrades-unsafe-allow constructor * constructor() initializer {} * ``` * ==== */ abstract contract Initializable { /** * @dev Indicates that the contract has been initialized. */ bool private _initialized; /** * @dev Indicates that the contract is in the process of being initialized. */ bool private _initializing; /** * @dev Modifier to protect an initializer function from being invoked twice. */ modifier initializer() { // If the contract is initializing we ignore whether _initialized is set in order to support multiple // inheritance patterns, but we only do this in the context of a constructor, because in other contexts the // contract may have been reentered. require(_initializing ? _isConstructor() : !_initialized, "Initializable: contract is already initialized"); bool isTopLevelCall = !_initializing; if (isTopLevelCall) { _initializing = true; _initialized = true; } _; if (isTopLevelCall) { _initializing = false; } } /** * @dev Modifier to protect an initialization function so that it can only be invoked by functions with the * {initializer} modifier, directly or indirectly. */ modifier onlyInitializing() { require(_initializing, "Initializable: contract is not initializing"); _; } function _isConstructor() private view returns (bool) { return !AddressUpgradeable.isContract(address(this)); } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts v4.4.1 (security/Pausable.sol) pragma solidity ^0.8.0; import "../utils/ContextUpgradeable.sol"; import "../proxy/utils/Initializable.sol"; /** * @dev Contract module which allows children to implement an emergency stop * mechanism that can be triggered by an authorized account. * * This module is used through inheritance. It will make available the * modifiers `whenNotPaused` and `whenPaused`, which can be applied to * the functions of your contract. Note that they will not be pausable by * simply including this module, only once the modifiers are put in place. */ abstract contract PausableUpgradeable is Initializable, ContextUpgradeable { /** * @dev Emitted when the pause is triggered by `account`. */ event Paused(address account); /** * @dev Emitted when the pause is lifted by `account`. */ event Unpaused(address account); bool private _paused; /** * @dev Initializes the contract in unpaused state. */ function __Pausable_init() internal onlyInitializing { __Pausable_init_unchained(); } function __Pausable_init_unchained() internal onlyInitializing { _paused = false; } /** * @dev Returns true if the contract is paused, and false otherwise. */ function paused() public view virtual returns (bool) { return _paused; } /** * @dev Modifier to make a function callable only when the contract is not paused. * * Requirements: * * - The contract must not be paused. */ modifier whenNotPaused() { require(!paused(), "Pausable: paused"); _; } /** * @dev Modifier to make a function callable only when the contract is paused. * * Requirements: * * - The contract must be paused. */ modifier whenPaused() { require(paused(), "Pausable: not paused"); _; } /** * @dev Triggers stopped state. * * Requirements: * * - The contract must not be paused. */ function _pause() internal virtual whenNotPaused { _paused = true; emit Paused(_msgSender()); } /** * @dev Returns to normal state. * * Requirements: * * - The contract must be paused. */ function _unpause() internal virtual whenPaused { _paused = false; emit Unpaused(_msgSender()); } /** * @dev This empty reserved space is put in place to allow future versions to add new * variables without shifting down storage in the inheritance chain. * See https://docs.openzeppelin.com/contracts/4.x/upgradeable#storage_gaps */ uint256[49] private __gap; }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts v4.4.1 (security/ReentrancyGuard.sol) pragma solidity ^0.8.0; import "../proxy/utils/Initializable.sol"; /** * @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 ReentrancyGuardUpgradeable is Initializable { // 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; function __ReentrancyGuard_init() internal onlyInitializing { __ReentrancyGuard_init_unchained(); } function __ReentrancyGuard_init_unchained() internal onlyInitializing { _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() { // On the first call to nonReentrant, _notEntered will be true require(_status != _ENTERED, "ReentrancyGuard: reentrant call"); // Any calls to nonReentrant after this point will fail _status = _ENTERED; _; // By storing the original value once again, a refund is triggered (see // https://eips.ethereum.org/EIPS/eip-2200) _status = _NOT_ENTERED; } /** * @dev This empty reserved space is put in place to allow future versions to add new * variables without shifting down storage in the inheritance chain. * See https://docs.openzeppelin.com/contracts/4.x/upgradeable#storage_gaps */ uint256[49] private __gap; }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v4.5.0) (utils/Address.sol) pragma solidity ^0.8.1; /** * @dev Collection of functions related to the address type */ library AddressUpgradeable { /** * @dev Returns true if `account` is a contract. * * [IMPORTANT] * ==== * It is unsafe to assume that an address for which this function returns * false is an externally-owned account (EOA) and not a contract. * * Among others, `isContract` will return false for the following * types of addresses: * * - an externally-owned account * - a contract in construction * - an address where a contract will be created * - an address where a contract lived, but was destroyed * ==== * * [IMPORTANT] * ==== * You shouldn't rely on `isContract` to protect against flash loan attacks! * * Preventing calls from contracts is highly discouraged. It breaks composability, breaks support for smart wallets * like Gnosis Safe, and does not provide security since it can be circumvented by calling from a contract * constructor. * ==== */ function isContract(address account) internal view returns (bool) { // This method relies on extcodesize/address.code.length, which returns 0 // for contracts in construction, since the code is only stored at the end // of the constructor execution. return account.code.length > 0; } /** * @dev Replacement for Solidity's `transfer`: sends `amount` wei to * `recipient`, forwarding all available gas and reverting on errors. * * https://eips.ethereum.org/EIPS/eip-1884[EIP1884] increases the gas cost * of certain opcodes, possibly making contracts go over the 2300 gas limit * imposed by `transfer`, making them unable to receive funds via * `transfer`. {sendValue} removes this limitation. * * https://diligence.consensys.net/posts/2019/09/stop-using-soliditys-transfer-now/[Learn more]. * * IMPORTANT: because control is transferred to `recipient`, care must be * taken to not create reentrancy vulnerabilities. Consider using * {ReentrancyGuard} or the * https://solidity.readthedocs.io/en/v0.5.11/security-considerations.html#use-the-checks-effects-interactions-pattern[checks-effects-interactions pattern]. */ function sendValue(address payable recipient, uint256 amount) internal { require(address(this).balance >= amount, "Address: insufficient balance"); (bool success, ) = recipient.call{value: amount}(""); require(success, "Address: unable to send value, recipient may have reverted"); } /** * @dev Performs a Solidity function call using a low level `call`. A * plain `call` is an unsafe replacement for a function call: use this * function instead. * * If `target` reverts with a revert reason, it is bubbled up by this * function (like regular Solidity function calls). * * Returns the raw returned data. To convert to the expected return value, * use https://solidity.readthedocs.io/en/latest/units-and-global-variables.html?highlight=abi.decode#abi-encoding-and-decoding-functions[`abi.decode`]. * * Requirements: * * - `target` must be a contract. * - calling `target` with `data` must not revert. * * _Available since v3.1._ */ function functionCall(address target, bytes memory data) internal returns (bytes memory) { return functionCall(target, data, "Address: low-level call failed"); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], but with * `errorMessage` as a fallback revert reason when `target` reverts. * * _Available since v3.1._ */ function functionCall( address target, bytes memory data, string memory errorMessage ) internal returns (bytes memory) { return functionCallWithValue(target, data, 0, errorMessage); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], * but also transferring `value` wei to `target`. * * Requirements: * * - the calling contract must have an ETH balance of at least `value`. * - the called Solidity function must be `payable`. * * _Available since v3.1._ */ function functionCallWithValue( address target, bytes memory data, uint256 value ) internal returns (bytes memory) { return functionCallWithValue(target, data, value, "Address: low-level call with value failed"); } /** * @dev Same as {xref-Address-functionCallWithValue-address-bytes-uint256-}[`functionCallWithValue`], but * with `errorMessage` as a fallback revert reason when `target` reverts. * * _Available since v3.1._ */ function functionCallWithValue( address target, bytes memory data, uint256 value, string memory errorMessage ) internal returns (bytes memory) { require(address(this).balance >= value, "Address: insufficient balance for call"); require(isContract(target), "Address: call to non-contract"); (bool success, bytes memory returndata) = target.call{value: value}(data); return verifyCallResult(success, returndata, errorMessage); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], * but performing a static call. * * _Available since v3.3._ */ function functionStaticCall(address target, bytes memory data) internal view returns (bytes memory) { return functionStaticCall(target, data, "Address: low-level static call failed"); } /** * @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`], * but performing a static call. * * _Available since v3.3._ */ function functionStaticCall( address target, bytes memory data, string memory errorMessage ) internal view returns (bytes memory) { require(isContract(target), "Address: static call to non-contract"); (bool success, bytes memory returndata) = target.staticcall(data); return verifyCallResult(success, returndata, errorMessage); } /** * @dev Tool to verifies that a low level call was successful, and revert if it wasn't, either by bubbling the * revert reason using the provided one. * * _Available since v4.3._ */ function verifyCallResult( bool success, bytes memory returndata, string memory errorMessage ) internal pure returns (bytes memory) { if (success) { return returndata; } else { // 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 assembly { let returndata_size := mload(returndata) revert(add(32, returndata), returndata_size) } } else { revert(errorMessage); } } } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts v4.4.1 (utils/Context.sol) pragma solidity ^0.8.0; import "../proxy/utils/Initializable.sol"; /** * @dev Provides information about the current execution context, including the * sender of the transaction and its data. While these are generally available * via msg.sender and msg.data, they should not be accessed in such a direct * manner, since when dealing with meta-transactions the account sending and * paying for execution may not be the actual sender (as far as an application * is concerned). * * This contract is only required for intermediate, library-like contracts. */ abstract contract ContextUpgradeable is Initializable { function __Context_init() internal onlyInitializing { } function __Context_init_unchained() internal onlyInitializing { } function _msgSender() internal view virtual returns (address) { return msg.sender; } function _msgData() internal view virtual returns (bytes calldata) { return msg.data; } /** * @dev This empty reserved space is put in place to allow future versions to add new * variables without shifting down storage in the inheritance chain. * See https://docs.openzeppelin.com/contracts/4.x/upgradeable#storage_gaps */ uint256[50] private __gap; }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts v4.4.1 (utils/Strings.sol) pragma solidity ^0.8.0; /** * @dev String operations. */ library StringsUpgradeable { bytes16 private constant _HEX_SYMBOLS = "0123456789abcdef"; /** * @dev Converts a `uint256` to its ASCII `string` decimal representation. */ function toString(uint256 value) internal pure returns (string memory) { // Inspired by OraclizeAPI's implementation - MIT licence // https://github.com/oraclize/ethereum-api/blob/b42146b063c7d6ee1358846c198246239e9360e8/oraclizeAPI_0.4.25.sol if (value == 0) { return "0"; } uint256 temp = value; uint256 digits; while (temp != 0) { digits++; temp /= 10; } bytes memory buffer = new bytes(digits); while (value != 0) { digits -= 1; buffer[digits] = bytes1(uint8(48 + uint256(value % 10))); value /= 10; } return string(buffer); } /** * @dev Converts a `uint256` to its ASCII `string` hexadecimal representation. */ function toHexString(uint256 value) internal pure returns (string memory) { if (value == 0) { return "0x00"; } uint256 temp = value; uint256 length = 0; while (temp != 0) { length++; temp >>= 8; } return toHexString(value, length); } /** * @dev Converts a `uint256` to its ASCII `string` hexadecimal representation with fixed length. */ function toHexString(uint256 value, uint256 length) internal pure returns (string memory) { bytes memory buffer = new bytes(2 * length + 2); buffer[0] = "0"; buffer[1] = "x"; for (uint256 i = 2 * length + 1; i > 1; --i) { buffer[i] = _HEX_SYMBOLS[value & 0xf]; value >>= 4; } require(value == 0, "Strings: hex length insufficient"); return string(buffer); } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts v4.4.1 (utils/introspection/ERC165.sol) pragma solidity ^0.8.0; import "./IERC165Upgradeable.sol"; import "../../proxy/utils/Initializable.sol"; /** * @dev Implementation of the {IERC165} interface. * * Contracts that want to implement ERC165 should inherit from this contract and override {supportsInterface} to check * for the additional interface id that will be supported. For example: * * ```solidity * function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) { * return interfaceId == type(MyInterface).interfaceId || super.supportsInterface(interfaceId); * } * ``` * * Alternatively, {ERC165Storage} provides an easier to use but more expensive implementation. */ abstract contract ERC165Upgradeable is Initializable, IERC165Upgradeable { function __ERC165_init() internal onlyInitializing { } function __ERC165_init_unchained() internal onlyInitializing { } /** * @dev See {IERC165-supportsInterface}. */ function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) { return interfaceId == type(IERC165Upgradeable).interfaceId; } /** * @dev This empty reserved space is put in place to allow future versions to add new * variables without shifting down storage in the inheritance chain. * See https://docs.openzeppelin.com/contracts/4.x/upgradeable#storage_gaps */ uint256[50] private __gap; }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts v4.4.1 (utils/introspection/IERC165.sol) pragma solidity ^0.8.0; /** * @dev Interface of the ERC165 standard, as defined in the * https://eips.ethereum.org/EIPS/eip-165[EIP]. * * Implementers can declare support of contract interfaces, which can then be * queried by others ({ERC165Checker}). * * For an implementation, see {ERC165}. */ interface IERC165Upgradeable { /** * @dev Returns true if this contract implements the interface defined by * `interfaceId`. See the corresponding * https://eips.ethereum.org/EIPS/eip-165#how-interfaces-are-identified[EIP section] * to learn more about how these ids are created. * * This function call must use less than 30 000 gas. */ function supportsInterface(bytes4 interfaceId) external view returns (bool); }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts v4.4.1 (utils/structs/EnumerableSet.sol) pragma solidity ^0.8.0; /** * @dev Library for managing * https://en.wikipedia.org/wiki/Set_(abstract_data_type)[sets] of primitive * types. * * Sets have the following properties: * * - Elements are added, removed, and checked for existence in constant time * (O(1)). * - Elements are enumerated in O(n). No guarantees are made on the ordering. * * ``` * contract Example { * // Add the library methods * using EnumerableSet for EnumerableSet.AddressSet; * * // Declare a set state variable * EnumerableSet.AddressSet private mySet; * } * ``` * * As of v3.3.0, sets of type `bytes32` (`Bytes32Set`), `address` (`AddressSet`) * and `uint256` (`UintSet`) are supported. */ library EnumerableSetUpgradeable { // To implement this library for multiple types with as little code // repetition as possible, we write it in terms of a generic Set type with // bytes32 values. // The Set implementation uses private functions, and user-facing // implementations (such as AddressSet) are just wrappers around the // underlying Set. // This means that we can only create new EnumerableSets for types that fit // in bytes32. struct Set { // Storage of set values bytes32[] _values; // Position of the value in the `values` array, plus 1 because index 0 // means a value is not in the set. mapping(bytes32 => uint256) _indexes; } /** * @dev Add a value to a set. O(1). * * Returns true if the value was added to the set, that is if it was not * already present. */ function _add(Set storage set, bytes32 value) private returns (bool) { if (!_contains(set, value)) { set._values.push(value); // The value is stored at length-1, but we add 1 to all indexes // and use 0 as a sentinel value set._indexes[value] = set._values.length; return true; } else { return false; } } /** * @dev Removes a value from a set. O(1). * * Returns true if the value was removed from the set, that is if it was * present. */ function _remove(Set storage set, bytes32 value) private returns (bool) { // We read and store the value's index to prevent multiple reads from the same storage slot uint256 valueIndex = set._indexes[value]; if (valueIndex != 0) { // Equivalent to contains(set, value) // To delete an element from the _values array in O(1), we swap the element to delete with the last one in // the array, and then remove the last element (sometimes called as 'swap and pop'). // This modifies the order of the array, as noted in {at}. uint256 toDeleteIndex = valueIndex - 1; uint256 lastIndex = set._values.length - 1; if (lastIndex != toDeleteIndex) { bytes32 lastvalue = set._values[lastIndex]; // Move the last value to the index where the value to delete is set._values[toDeleteIndex] = lastvalue; // Update the index for the moved value set._indexes[lastvalue] = valueIndex; // Replace lastvalue's index to valueIndex } // Delete the slot where the moved value was stored set._values.pop(); // Delete the index for the deleted slot delete set._indexes[value]; return true; } else { return false; } } /** * @dev Returns true if the value is in the set. O(1). */ function _contains(Set storage set, bytes32 value) private view returns (bool) { return set._indexes[value] != 0; } /** * @dev Returns the number of values on the set. O(1). */ function _length(Set storage set) private view returns (uint256) { return set._values.length; } /** * @dev Returns the value stored at position `index` in the set. O(1). * * Note that there are no guarantees on the ordering of values inside the * array, and it may change when more values are added or removed. * * Requirements: * * - `index` must be strictly less than {length}. */ function _at(Set storage set, uint256 index) private view returns (bytes32) { return set._values[index]; } /** * @dev Return the entire set in an array * * WARNING: This operation will copy the entire storage to memory, which can be quite expensive. This is designed * to mostly be used by view accessors that are queried without any gas fees. Developers should keep in mind that * this function has an unbounded cost, and using it as part of a state-changing function may render the function * uncallable if the set grows to a point where copying to memory consumes too much gas to fit in a block. */ function _values(Set storage set) private view returns (bytes32[] memory) { return set._values; } // Bytes32Set struct Bytes32Set { Set _inner; } /** * @dev Add a value to a set. O(1). * * Returns true if the value was added to the set, that is if it was not * already present. */ function add(Bytes32Set storage set, bytes32 value) internal returns (bool) { return _add(set._inner, value); } /** * @dev Removes a value from a set. O(1). * * Returns true if the value was removed from the set, that is if it was * present. */ function remove(Bytes32Set storage set, bytes32 value) internal returns (bool) { return _remove(set._inner, value); } /** * @dev Returns true if the value is in the set. O(1). */ function contains(Bytes32Set storage set, bytes32 value) internal view returns (bool) { return _contains(set._inner, value); } /** * @dev Returns the number of values in the set. O(1). */ function length(Bytes32Set storage set) internal view returns (uint256) { return _length(set._inner); } /** * @dev Returns the value stored at position `index` in the set. O(1). * * Note that there are no guarantees on the ordering of values inside the * array, and it may change when more values are added or removed. * * Requirements: * * - `index` must be strictly less than {length}. */ function at(Bytes32Set storage set, uint256 index) internal view returns (bytes32) { return _at(set._inner, index); } /** * @dev Return the entire set in an array * * WARNING: This operation will copy the entire storage to memory, which can be quite expensive. This is designed * to mostly be used by view accessors that are queried without any gas fees. Developers should keep in mind that * this function has an unbounded cost, and using it as part of a state-changing function may render the function * uncallable if the set grows to a point where copying to memory consumes too much gas to fit in a block. */ function values(Bytes32Set storage set) internal view returns (bytes32[] memory) { return _values(set._inner); } // AddressSet struct AddressSet { Set _inner; } /** * @dev Add a value to a set. O(1). * * Returns true if the value was added to the set, that is if it was not * already present. */ function add(AddressSet storage set, address value) internal returns (bool) { return _add(set._inner, bytes32(uint256(uint160(value)))); } /** * @dev Removes a value from a set. O(1). * * Returns true if the value was removed from the set, that is if it was * present. */ function remove(AddressSet storage set, address value) internal returns (bool) { return _remove(set._inner, bytes32(uint256(uint160(value)))); } /** * @dev Returns true if the value is in the set. O(1). */ function contains(AddressSet storage set, address value) internal view returns (bool) { return _contains(set._inner, bytes32(uint256(uint160(value)))); } /** * @dev Returns the number of values in the set. O(1). */ function length(AddressSet storage set) internal view returns (uint256) { return _length(set._inner); } /** * @dev Returns the value stored at position `index` in the set. O(1). * * Note that there are no guarantees on the ordering of values inside the * array, and it may change when more values are added or removed. * * Requirements: * * - `index` must be strictly less than {length}. */ function at(AddressSet storage set, uint256 index) internal view returns (address) { return address(uint160(uint256(_at(set._inner, index)))); } /** * @dev Return the entire set in an array * * WARNING: This operation will copy the entire storage to memory, which can be quite expensive. This is designed * to mostly be used by view accessors that are queried without any gas fees. Developers should keep in mind that * this function has an unbounded cost, and using it as part of a state-changing function may render the function * uncallable if the set grows to a point where copying to memory consumes too much gas to fit in a block. */ function values(AddressSet storage set) internal view returns (address[] memory) { bytes32[] memory store = _values(set._inner); address[] memory result; assembly { result := store } return result; } // UintSet struct UintSet { Set _inner; } /** * @dev Add a value to a set. O(1). * * Returns true if the value was added to the set, that is if it was not * already present. */ function add(UintSet storage set, uint256 value) internal returns (bool) { return _add(set._inner, bytes32(value)); } /** * @dev Removes a value from a set. O(1). * * Returns true if the value was removed from the set, that is if it was * present. */ function remove(UintSet storage set, uint256 value) internal returns (bool) { return _remove(set._inner, bytes32(value)); } /** * @dev Returns true if the value is in the set. O(1). */ function contains(UintSet storage set, uint256 value) internal view returns (bool) { return _contains(set._inner, bytes32(value)); } /** * @dev Returns the number of values on the set. O(1). */ function length(UintSet storage set) internal view returns (uint256) { return _length(set._inner); } /** * @dev Returns the value stored at position `index` in the set. O(1). * * Note that there are no guarantees on the ordering of values inside the * array, and it may change when more values are added or removed. * * Requirements: * * - `index` must be strictly less than {length}. */ function at(UintSet storage set, uint256 index) internal view returns (uint256) { return uint256(_at(set._inner, index)); } /** * @dev Return the entire set in an array * * WARNING: This operation will copy the entire storage to memory, which can be quite expensive. This is designed * to mostly be used by view accessors that are queried without any gas fees. Developers should keep in mind that * this function has an unbounded cost, and using it as part of a state-changing function may render the function * uncallable if the set grows to a point where copying to memory consumes too much gas to fit in a block. */ function values(UintSet storage set) internal view returns (uint256[] memory) { bytes32[] memory store = _values(set._inner); uint256[] memory result; assembly { result := store } return result; } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v4.5.0) (token/ERC20/ERC20.sol) pragma solidity ^0.8.0; import "./IERC20.sol"; import "./extensions/IERC20Metadata.sol"; import "../../utils/Context.sol"; /** * @dev Implementation of the {IERC20} interface. * * This implementation is agnostic to the way tokens are created. This means * that a supply mechanism has to be added in a derived contract using {_mint}. * For a generic mechanism see {ERC20PresetMinterPauser}. * * TIP: For a detailed writeup see our guide * https://forum.zeppelin.solutions/t/how-to-implement-erc20-supply-mechanisms/226[How * to implement supply mechanisms]. * * We have followed general OpenZeppelin Contracts guidelines: functions revert * instead returning `false` on failure. This behavior is nonetheless * conventional and does not conflict with the expectations of ERC20 * applications. * * Additionally, an {Approval} event is emitted on calls to {transferFrom}. * This allows applications to reconstruct the allowance for all accounts just * by listening to said events. Other implementations of the EIP may not emit * these events, as it isn't required by the specification. * * Finally, the non-standard {decreaseAllowance} and {increaseAllowance} * functions have been added to mitigate the well-known issues around setting * allowances. See {IERC20-approve}. */ contract ERC20 is Context, IERC20, IERC20Metadata { mapping(address => uint256) private _balances; mapping(address => mapping(address => uint256)) private _allowances; uint256 private _totalSupply; string private _name; string private _symbol; /** * @dev Sets the values for {name} and {symbol}. * * The default value of {decimals} is 18. To select a different value for * {decimals} you should overload it. * * All two of these values are immutable: they can only be set once during * construction. */ constructor(string memory name_, string memory symbol_) { _name = name_; _symbol = symbol_; } /** * @dev Returns the name of the token. */ function name() public view virtual override returns (string memory) { return _name; } /** * @dev Returns the symbol of the token, usually a shorter version of the * name. */ function symbol() public view virtual override returns (string memory) { return _symbol; } /** * @dev Returns the number of decimals used to get its user representation. * For example, if `decimals` equals `2`, a balance of `505` tokens should * be displayed to a user as `5.05` (`505 / 10 ** 2`). * * Tokens usually opt for a value of 18, imitating the relationship between * Ether and Wei. This is the value {ERC20} uses, unless this function is * overridden; * * NOTE: This information is only used for _display_ purposes: it in * no way affects any of the arithmetic of the contract, including * {IERC20-balanceOf} and {IERC20-transfer}. */ function decimals() public view virtual override returns (uint8) { return 18; } /** * @dev See {IERC20-totalSupply}. */ function totalSupply() public view virtual override returns (uint256) { return _totalSupply; } /** * @dev See {IERC20-balanceOf}. */ function balanceOf(address account) public view virtual override returns (uint256) { return _balances[account]; } /** * @dev See {IERC20-transfer}. * * Requirements: * * - `to` cannot be the zero address. * - the caller must have a balance of at least `amount`. */ function transfer(address to, uint256 amount) public virtual override returns (bool) { address owner = _msgSender(); _transfer(owner, to, amount); return true; } /** * @dev See {IERC20-allowance}. */ function allowance(address owner, address spender) public view virtual override returns (uint256) { return _allowances[owner][spender]; } /** * @dev See {IERC20-approve}. * * NOTE: If `amount` is the maximum `uint256`, the allowance is not updated on * `transferFrom`. This is semantically equivalent to an infinite approval. * * Requirements: * * - `spender` cannot be the zero address. */ function approve(address spender, uint256 amount) public virtual override returns (bool) { address owner = _msgSender(); _approve(owner, spender, amount); return true; } /** * @dev See {IERC20-transferFrom}. * * Emits an {Approval} event indicating the updated allowance. This is not * required by the EIP. See the note at the beginning of {ERC20}. * * NOTE: Does not update the allowance if the current allowance * is the maximum `uint256`. * * Requirements: * * - `from` and `to` cannot be the zero address. * - `from` must have a balance of at least `amount`. * - the caller must have allowance for ``from``'s tokens of at least * `amount`. */ function transferFrom( address from, address to, uint256 amount ) public virtual override returns (bool) { address spender = _msgSender(); _spendAllowance(from, spender, amount); _transfer(from, to, amount); return true; } /** * @dev Atomically increases the allowance granted to `spender` by the caller. * * This is an alternative to {approve} that can be used as a mitigation for * problems described in {IERC20-approve}. * * Emits an {Approval} event indicating the updated allowance. * * Requirements: * * - `spender` cannot be the zero address. */ function increaseAllowance(address spender, uint256 addedValue) public virtual returns (bool) { address owner = _msgSender(); _approve(owner, spender, _allowances[owner][spender] + addedValue); return true; } /** * @dev Atomically decreases the allowance granted to `spender` by the caller. * * This is an alternative to {approve} that can be used as a mitigation for * problems described in {IERC20-approve}. * * Emits an {Approval} event indicating the updated allowance. * * Requirements: * * - `spender` cannot be the zero address. * - `spender` must have allowance for the caller of at least * `subtractedValue`. */ function decreaseAllowance(address spender, uint256 subtractedValue) public virtual returns (bool) { address owner = _msgSender(); uint256 currentAllowance = _allowances[owner][spender]; require(currentAllowance >= subtractedValue, "ERC20: decreased allowance below zero"); unchecked { _approve(owner, spender, currentAllowance - subtractedValue); } return true; } /** * @dev Moves `amount` of tokens from `sender` to `recipient`. * * This internal function is equivalent to {transfer}, and can be used to * e.g. implement automatic token fees, slashing mechanisms, etc. * * Emits a {Transfer} event. * * Requirements: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `from` must have a balance of at least `amount`. */ function _transfer( address from, address to, uint256 amount ) internal virtual { require(from != address(0), "ERC20: transfer from the zero address"); require(to != address(0), "ERC20: transfer to the zero address"); _beforeTokenTransfer(from, to, amount); uint256 fromBalance = _balances[from]; require(fromBalance >= amount, "ERC20: transfer amount exceeds balance"); unchecked { _balances[from] = fromBalance - amount; } _balances[to] += amount; emit Transfer(from, to, amount); _afterTokenTransfer(from, to, amount); } /** @dev Creates `amount` tokens and assigns them to `account`, increasing * the total supply. * * Emits a {Transfer} event with `from` set to the zero address. * * Requirements: * * - `account` cannot be the zero address. */ function _mint(address account, uint256 amount) internal virtual { require(account != address(0), "ERC20: mint to the zero address"); _beforeTokenTransfer(address(0), account, amount); _totalSupply += amount; _balances[account] += amount; emit Transfer(address(0), account, amount); _afterTokenTransfer(address(0), account, amount); } /** * @dev Destroys `amount` tokens from `account`, reducing the * total supply. * * Emits a {Transfer} event with `to` set to the zero address. * * Requirements: * * - `account` cannot be the zero address. * - `account` must have at least `amount` tokens. */ function _burn(address account, uint256 amount) internal virtual { require(account != address(0), "ERC20: burn from the zero address"); _beforeTokenTransfer(account, address(0), amount); uint256 accountBalance = _balances[account]; require(accountBalance >= amount, "ERC20: burn amount exceeds balance"); unchecked { _balances[account] = accountBalance - amount; } _totalSupply -= amount; emit Transfer(account, address(0), amount); _afterTokenTransfer(account, address(0), amount); } /** * @dev Sets `amount` as the allowance of `spender` over the `owner` s tokens. * * This internal function is equivalent to `approve`, and can be used to * e.g. set automatic allowances for certain subsystems, etc. * * Emits an {Approval} event. * * Requirements: * * - `owner` cannot be the zero address. * - `spender` cannot be the zero address. */ function _approve( address owner, address spender, uint256 amount ) internal virtual { require(owner != address(0), "ERC20: approve from the zero address"); require(spender != address(0), "ERC20: approve to the zero address"); _allowances[owner][spender] = amount; emit Approval(owner, spender, amount); } /** * @dev Spend `amount` form the allowance of `owner` toward `spender`. * * Does not update the allowance amount in case of infinite allowance. * Revert if not enough allowance is available. * * Might emit an {Approval} event. */ function _spendAllowance( address owner, address spender, uint256 amount ) internal virtual { uint256 currentAllowance = allowance(owner, spender); if (currentAllowance != type(uint256).max) { require(currentAllowance >= amount, "ERC20: insufficient allowance"); unchecked { _approve(owner, spender, currentAllowance - amount); } } } /** * @dev Hook that is called before any transfer of tokens. This includes * minting and burning. * * Calling conditions: * * - when `from` and `to` are both non-zero, `amount` of ``from``'s tokens * will be transferred to `to`. * - when `from` is zero, `amount` tokens will be minted for `to`. * - when `to` is zero, `amount` of ``from``'s tokens will be burned. * - `from` and `to` are never both zero. * * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks]. */ function _beforeTokenTransfer( address from, address to, uint256 amount ) internal virtual {} /** * @dev Hook that is called after any transfer of tokens. This includes * minting and burning. * * Calling conditions: * * - when `from` and `to` are both non-zero, `amount` of ``from``'s tokens * has been transferred to `to`. * - when `from` is zero, `amount` tokens have been minted for `to`. * - when `to` is zero, `amount` of ``from``'s tokens have been burned. * - `from` and `to` are never both zero. * * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks]. */ function _afterTokenTransfer( address from, address to, uint256 amount ) internal virtual {} }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v4.5.0) (token/ERC20/IERC20.sol) pragma solidity ^0.8.0; /** * @dev Interface of the ERC20 standard as defined in the EIP. */ interface IERC20 { /** * @dev Returns the amount of tokens in existence. */ function totalSupply() external view returns (uint256); /** * @dev Returns the amount of tokens owned by `account`. */ function balanceOf(address account) external view returns (uint256); /** * @dev Moves `amount` 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 amount) 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 `amount` 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 amount) external returns (bool); /** * @dev Moves `amount` tokens from `from` to `to` using the * allowance mechanism. `amount` 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 amount ) external returns (bool); /** * @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); }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts v4.4.1 (token/ERC20/extensions/IERC20Metadata.sol) pragma solidity ^0.8.0; import "../IERC20.sol"; /** * @dev Interface for the optional metadata functions from the ERC20 standard. * * _Available since v4.1._ */ 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 v4.4.1 (token/ERC20/extensions/draft-IERC20Permit.sol) pragma solidity ^0.8.0; /** * @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. */ 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]. */ 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 v4.4.1 (token/ERC20/utils/SafeERC20.sol) pragma solidity ^0.8.0; import "../IERC20.sol"; import "../../../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; function safeTransfer( IERC20 token, address to, uint256 value ) internal { _callOptionalReturn(token, abi.encodeWithSelector(token.transfer.selector, to, value)); } function safeTransferFrom( IERC20 token, address from, address to, uint256 value ) internal { _callOptionalReturn(token, abi.encodeWithSelector(token.transferFrom.selector, from, to, value)); } /** * @dev Deprecated. This function has issues similar to the ones found in * {IERC20-approve}, and its usage is discouraged. * * Whenever possible, use {safeIncreaseAllowance} and * {safeDecreaseAllowance} instead. */ function safeApprove( IERC20 token, address spender, uint256 value ) internal { // safeApprove should only be called when setting an initial allowance, // or when resetting it to zero. To increase and decrease it, use // 'safeIncreaseAllowance' and 'safeDecreaseAllowance' require( (value == 0) || (token.allowance(address(this), spender) == 0), "SafeERC20: approve from non-zero to non-zero allowance" ); _callOptionalReturn(token, abi.encodeWithSelector(token.approve.selector, spender, value)); } function safeIncreaseAllowance( IERC20 token, address spender, uint256 value ) internal { uint256 newAllowance = token.allowance(address(this), spender) + value; _callOptionalReturn(token, abi.encodeWithSelector(token.approve.selector, spender, newAllowance)); } function safeDecreaseAllowance( IERC20 token, address spender, uint256 value ) internal { unchecked { uint256 oldAllowance = token.allowance(address(this), spender); require(oldAllowance >= value, "SafeERC20: decreased allowance below zero"); uint256 newAllowance = oldAllowance - value; _callOptionalReturn(token, abi.encodeWithSelector(token.approve.selector, spender, newAllowance)); } } /** * @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, "SafeERC20: low-level call failed"); if (returndata.length > 0) { // Return data is optional require(abi.decode(returndata, (bool)), "SafeERC20: ERC20 operation did not succeed"); } } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v4.5.0) (utils/Address.sol) pragma solidity ^0.8.1; /** * @dev Collection of functions related to the address type */ library Address { /** * @dev Returns true if `account` is a contract. * * [IMPORTANT] * ==== * It is unsafe to assume that an address for which this function returns * false is an externally-owned account (EOA) and not a contract. * * Among others, `isContract` will return false for the following * types of addresses: * * - an externally-owned account * - a contract in construction * - an address where a contract will be created * - an address where a contract lived, but was destroyed * ==== * * [IMPORTANT] * ==== * You shouldn't rely on `isContract` to protect against flash loan attacks! * * Preventing calls from contracts is highly discouraged. It breaks composability, breaks support for smart wallets * like Gnosis Safe, and does not provide security since it can be circumvented by calling from a contract * constructor. * ==== */ function isContract(address account) internal view returns (bool) { // This method relies on extcodesize/address.code.length, which returns 0 // for contracts in construction, since the code is only stored at the end // of the constructor execution. return account.code.length > 0; } /** * @dev Replacement for Solidity's `transfer`: sends `amount` wei to * `recipient`, forwarding all available gas and reverting on errors. * * https://eips.ethereum.org/EIPS/eip-1884[EIP1884] increases the gas cost * of certain opcodes, possibly making contracts go over the 2300 gas limit * imposed by `transfer`, making them unable to receive funds via * `transfer`. {sendValue} removes this limitation. * * https://diligence.consensys.net/posts/2019/09/stop-using-soliditys-transfer-now/[Learn more]. * * IMPORTANT: because control is transferred to `recipient`, care must be * taken to not create reentrancy vulnerabilities. Consider using * {ReentrancyGuard} or the * https://solidity.readthedocs.io/en/v0.5.11/security-considerations.html#use-the-checks-effects-interactions-pattern[checks-effects-interactions pattern]. */ function sendValue(address payable recipient, uint256 amount) internal { require(address(this).balance >= amount, "Address: insufficient balance"); (bool success, ) = recipient.call{value: amount}(""); require(success, "Address: unable to send value, recipient may have reverted"); } /** * @dev Performs a Solidity function call using a low level `call`. A * plain `call` is an unsafe replacement for a function call: use this * function instead. * * If `target` reverts with a revert reason, it is bubbled up by this * function (like regular Solidity function calls). * * Returns the raw returned data. To convert to the expected return value, * use https://solidity.readthedocs.io/en/latest/units-and-global-variables.html?highlight=abi.decode#abi-encoding-and-decoding-functions[`abi.decode`]. * * Requirements: * * - `target` must be a contract. * - calling `target` with `data` must not revert. * * _Available since v3.1._ */ function functionCall(address target, bytes memory data) internal returns (bytes memory) { return functionCall(target, data, "Address: low-level call failed"); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], but with * `errorMessage` as a fallback revert reason when `target` reverts. * * _Available since v3.1._ */ function functionCall( address target, bytes memory data, string memory errorMessage ) internal returns (bytes memory) { return functionCallWithValue(target, data, 0, errorMessage); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], * but also transferring `value` wei to `target`. * * Requirements: * * - the calling contract must have an ETH balance of at least `value`. * - the called Solidity function must be `payable`. * * _Available since v3.1._ */ function functionCallWithValue( address target, bytes memory data, uint256 value ) internal returns (bytes memory) { return functionCallWithValue(target, data, value, "Address: low-level call with value failed"); } /** * @dev Same as {xref-Address-functionCallWithValue-address-bytes-uint256-}[`functionCallWithValue`], but * with `errorMessage` as a fallback revert reason when `target` reverts. * * _Available since v3.1._ */ function functionCallWithValue( address target, bytes memory data, uint256 value, string memory errorMessage ) internal returns (bytes memory) { require(address(this).balance >= value, "Address: insufficient balance for call"); require(isContract(target), "Address: call to non-contract"); (bool success, bytes memory returndata) = target.call{value: value}(data); return verifyCallResult(success, returndata, errorMessage); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], * but performing a static call. * * _Available since v3.3._ */ function functionStaticCall(address target, bytes memory data) internal view returns (bytes memory) { return functionStaticCall(target, data, "Address: low-level static call failed"); } /** * @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`], * but performing a static call. * * _Available since v3.3._ */ function functionStaticCall( address target, bytes memory data, string memory errorMessage ) internal view returns (bytes memory) { require(isContract(target), "Address: static call to non-contract"); (bool success, bytes memory returndata) = target.staticcall(data); return verifyCallResult(success, returndata, errorMessage); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], * but performing a delegate call. * * _Available since v3.4._ */ function functionDelegateCall(address target, bytes memory data) internal returns (bytes memory) { return functionDelegateCall(target, data, "Address: low-level delegate call failed"); } /** * @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`], * but performing a delegate call. * * _Available since v3.4._ */ function functionDelegateCall( address target, bytes memory data, string memory errorMessage ) internal returns (bytes memory) { require(isContract(target), "Address: delegate call to non-contract"); (bool success, bytes memory returndata) = target.delegatecall(data); return verifyCallResult(success, returndata, errorMessage); } /** * @dev Tool to verifies that a low level call was successful, and revert if it wasn't, either by bubbling the * revert reason using the provided one. * * _Available since v4.3._ */ function verifyCallResult( bool success, bytes memory returndata, string memory errorMessage ) internal pure returns (bytes memory) { if (success) { return returndata; } else { // 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 assembly { let returndata_size := mload(returndata) revert(add(32, returndata), returndata_size) } } else { revert(errorMessage); } } } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts v4.4.1 (utils/Context.sol) pragma solidity ^0.8.0; /** * @dev Provides information about the current execution context, including the * sender of the transaction and its data. While these are generally available * via msg.sender and msg.data, they should not be accessed in such a direct * manner, since when dealing with meta-transactions the account sending and * paying for execution may not be the actual sender (as far as an application * is concerned). * * This contract is only required for intermediate, library-like contracts. */ abstract contract Context { function _msgSender() internal view virtual returns (address) { return msg.sender; } function _msgData() internal view virtual returns (bytes calldata) { return msg.data; } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v4.5.0) (utils/math/Math.sol) pragma solidity ^0.8.0; /** * @dev Standard math utilities missing in the Solidity language. */ library Math { /** * @dev Returns the largest of two numbers. */ function max(uint256 a, uint256 b) internal pure returns (uint256) { return a >= b ? a : b; } /** * @dev Returns the smallest of two numbers. */ function min(uint256 a, uint256 b) internal pure returns (uint256) { return a < b ? a : b; } /** * @dev Returns the average of two numbers. The result is rounded towards * zero. */ function average(uint256 a, uint256 b) internal pure returns (uint256) { // (a + b) / 2 can overflow. return (a & b) + (a ^ b) / 2; } /** * @dev Returns the ceiling of the division of two numbers. * * This differs from standard division with `/` in that it rounds up instead * of rounding down. */ function ceilDiv(uint256 a, uint256 b) internal pure returns (uint256) { // (a + b - 1) / b can overflow on addition, so we distribute. return a / b + (a % b == 0 ? 0 : 1); } }
// SPDX-License-Identifier: SEE LICENSE IN LICENSE pragma solidity 0.8.13; import { IERC20 } from "@openzeppelin/contracts/token/ERC20/IERC20.sol"; import { IUpgradeable } from "../../utility/interfaces/IUpgradeable.sol"; import { Token } from "../../token/Token.sol"; import { IPoolCollection } from "../../pools/interfaces/IPoolCollection.sol"; import { IPoolToken } from "../../pools/interfaces/IPoolToken.sol"; /** * @dev Flash-loan recipient interface */ interface IFlashLoanRecipient { /** * @dev a flash-loan recipient callback after each the caller must return the borrowed amount and an additional fee */ function onFlashLoan( address caller, IERC20 erc20Token, uint256 amount, uint256 feeAmount, bytes memory data ) external; } /** * @dev Bancor Network interface */ interface IBancorNetwork is IUpgradeable { /** * @dev returns the set of all valid pool collections */ function poolCollections() external view returns (IPoolCollection[] memory); /** * @dev returns the set of all liquidity pools */ function liquidityPools() external view returns (Token[] memory); /** * @dev returns the respective pool collection for the provided pool */ function collectionByPool(Token pool) external view returns (IPoolCollection); /** * @dev creates new pools * * requirements: * * - none of the pools already exists */ function createPools(Token[] calldata tokens, IPoolCollection poolCollection) external; /** * @dev migrates a list of pools between pool collections * * notes: * * - invalid or incompatible pools will be skipped gracefully */ function migratePools(Token[] calldata pools, IPoolCollection newPoolCollection) external; /** * @dev deposits liquidity for the specified provider and returns the respective pool token amount * * requirements: * * - the caller must have approved the network to transfer the tokens on its behalf (except for in the * native token case) */ function depositFor( address provider, Token pool, uint256 tokenAmount ) external payable returns (uint256); /** * @dev deposits liquidity for the current provider and returns the respective pool token amount * * requirements: * * - the caller must have approved the network to transfer the tokens on its behalf (except for in the * native token case) */ function deposit(Token pool, uint256 tokenAmount) external payable returns (uint256); /** * @dev initiates liquidity withdrawal * * requirements: * * - the caller must have approved the contract to transfer the pool token amount on its behalf */ function initWithdrawal(IPoolToken poolToken, uint256 poolTokenAmount) external returns (uint256); /** * @dev cancels a withdrawal request, and returns the number of pool token amount associated with the withdrawal * request * * requirements: * * - the caller must have already initiated a withdrawal and received the specified id */ function cancelWithdrawal(uint256 id) external returns (uint256); /** * @dev withdraws liquidity and returns the withdrawn amount * * requirements: * * - the provider must have already initiated a withdrawal and received the specified id * - the specified withdrawal request is eligible for completion * - the provider must have approved the network to transfer vBNT amount on its behalf, when withdrawing BNT * liquidity */ function withdraw(uint256 id) external returns (uint256); /** * @dev performs a trade by providing the input source amount, sends the proceeds to the optional beneficiary (or * to the address of the caller, in case it's not supplied), and returns the trade target amount * * requirements: * * - the caller must have approved the network to transfer the source tokens on its behalf (except for in the * native token case) */ function tradeBySourceAmount( Token sourceToken, Token targetToken, uint256 sourceAmount, uint256 minReturnAmount, uint256 deadline, address beneficiary ) external payable returns (uint256); /** * @dev performs a trade by providing the output target amount, sends the proceeds to the optional beneficiary (or * to the address of the caller, in case it's not supplied), and returns the trade source amount * * requirements: * * - the caller must have approved the network to transfer the source tokens on its behalf (except for in the * native token case) */ function tradeByTargetAmount( Token sourceToken, Token targetToken, uint256 targetAmount, uint256 maxSourceAmount, uint256 deadline, address beneficiary ) external payable returns (uint256); /** * @dev performs a trade by providing the input source amount, sends the proceeds to the optional beneficiary (or * to the address of the caller, in case it's not supplied), and returns the trade target amount * * requirements: * * - the caller must have approved the network to transfer the source tokens on its behalf (except for in the * native token case) * - the caller must be the _bancorArbitrage contract */ function tradeBySourceAmountArb( Token sourceToken, Token targetToken, uint256 sourceAmount, uint256 minReturnAmount, uint256 deadline, address beneficiary ) external payable returns (uint256); /** * @dev performs a trade by providing the output target amount, sends the proceeds to the optional beneficiary (or * to the address of the caller, in case it's not supplied), and returns the trade source amount * * requirements: * * - the caller must have approved the network to transfer the source tokens on its behalf (except for in the * native token case) * - the caller must be the _bancorArbitrage contract */ function tradeByTargetAmountArb( Token sourceToken, Token targetToken, uint256 targetAmount, uint256 maxSourceAmount, uint256 deadline, address beneficiary ) external payable returns (uint256); /** * @dev provides a flash-loan * * requirements: * * - the recipient's callback must return *at least* the borrowed amount and fee back to the specified return address */ function flashLoan( Token token, uint256 amount, IFlashLoanRecipient recipient, bytes calldata data ) external; /** * @dev deposits liquidity during a migration */ function migrateLiquidity( Token token, address provider, uint256 amount, uint256 availableAmount, uint256 originalAmount ) external payable; /** * @dev withdraws pending network fees, and returns the amount of fees withdrawn * * requirements: * * - the caller must have the ROLE_NETWORK_FEE_MANAGER privilege */ function withdrawNetworkFees(address recipient) external returns (uint256); }
// SPDX-License-Identifier: SEE LICENSE IN LICENSE pragma solidity 0.8.13; import { IUpgradeable } from "../../utility/interfaces/IUpgradeable.sol"; import { Token } from "../../token/Token.sol"; error NotWhitelisted(); struct VortexRewards { // the percentage of converted BNT to be sent to the initiator of the burning event (in units of PPM) uint32 burnRewardPPM; // the maximum burn reward to be sent to the initiator of the burning event uint256 burnRewardMaxAmount; } /** * @dev Network Settings interface */ interface INetworkSettings is IUpgradeable { /** * @dev returns the protected tokens whitelist */ function protectedTokenWhitelist() external view returns (Token[] memory); /** * @dev checks whether a given token is whitelisted */ function isTokenWhitelisted(Token pool) external view returns (bool); /** * @dev returns the BNT funding limit for a given pool */ function poolFundingLimit(Token pool) external view returns (uint256); /** * @dev returns the minimum BNT trading liquidity required before the system enables trading in the relevant pool */ function minLiquidityForTrading() external view returns (uint256); /** * @dev returns the withdrawal fee (in units of PPM) */ function withdrawalFeePPM() external view returns (uint32); /** * @dev returns the default flash-loan fee (in units of PPM) */ function defaultFlashLoanFeePPM() external view returns (uint32); /** * @dev returns the flash-loan fee (in units of PPM) of a pool */ function flashLoanFeePPM(Token pool) external view returns (uint32); /** * @dev returns the vortex settings */ function vortexRewards() external view returns (VortexRewards memory); }
// SPDX-License-Identifier: SEE LICENSE IN LICENSE pragma solidity 0.8.13; import { IPoolToken } from "../../pools/interfaces/IPoolToken.sol"; import { Token } from "../../token/Token.sol"; import { IUpgradeable } from "../../utility/interfaces/IUpgradeable.sol"; /** * @dev the data struct representing a pending withdrawal request */ struct WithdrawalRequest { address provider; // the liquidity provider IPoolToken poolToken; // the locked pool token Token reserveToken; // the reserve token to withdraw uint32 createdAt; // the time when the request was created (Unix timestamp) uint256 poolTokenAmount; // the locked pool token amount uint256 reserveTokenAmount; // the expected reserve token amount to withdraw } /** * @dev the data struct representing a completed withdrawal request */ struct CompletedWithdrawal { IPoolToken poolToken; // the withdraw pool token uint256 poolTokenAmount; // the original pool token amount in the withdrawal request uint256 reserveTokenAmount; // the original reserve token amount at the time of the withdrawal init request } /** * @dev Pending Withdrawals interface */ interface IPendingWithdrawals is IUpgradeable { /** * @dev returns the lock duration */ function lockDuration() external view returns (uint32); /** * @dev returns the pending withdrawal requests count for a specific provider */ function withdrawalRequestCount(address provider) external view returns (uint256); /** * @dev returns the pending withdrawal requests IDs for a specific provider */ function withdrawalRequestIds(address provider) external view returns (uint256[] memory); /** * @dev returns the pending withdrawal request with the specified ID */ function withdrawalRequest(uint256 id) external view returns (WithdrawalRequest memory); /** * @dev initiates liquidity withdrawal * * requirements: * * - the caller must be the network contract */ function initWithdrawal( address provider, IPoolToken poolToken, uint256 poolTokenAmount ) external returns (uint256); /** * @dev cancels a withdrawal request, and returns the number of pool tokens which were sent back to the provider * * requirements: * * - the caller must be the network contract * - the provider must have already initiated a withdrawal and received the specified id */ function cancelWithdrawal(address provider, uint256 id) external returns (uint256); /** * @dev completes a withdrawal request, and returns the pool token and its transferred amount * * requirements: * * - the caller must be the network contract * - the provider must have already initiated a withdrawal and received the specified id * - the lock duration has ended */ function completeWithdrawal( bytes32 contextId, address provider, uint256 id ) external returns (CompletedWithdrawal memory); /** * @dev returns whether the given request is ready for withdrawal */ function isReadyForWithdrawal(uint256 id) external view returns (bool); }
// SPDX-License-Identifier: SEE LICENSE IN LICENSE pragma solidity 0.8.13; import { IPoolToken } from "./IPoolToken.sol"; import { Token } from "../../token/Token.sol"; import { IVault } from "../../vaults/interfaces/IVault.sol"; // the BNT pool token manager role is required to access the BNT pool tokens bytes32 constant ROLE_BNT_POOL_TOKEN_MANAGER = keccak256("ROLE_BNT_POOL_TOKEN_MANAGER"); // the BNT manager role is required to request the BNT pool to mint BNT bytes32 constant ROLE_BNT_MANAGER = keccak256("ROLE_BNT_MANAGER"); // the vault manager role is required to request the BNT pool to burn BNT from the master vault bytes32 constant ROLE_VAULT_MANAGER = keccak256("ROLE_VAULT_MANAGER"); // the funding manager role is required to request or renounce funding from the BNT pool bytes32 constant ROLE_FUNDING_MANAGER = keccak256("ROLE_FUNDING_MANAGER"); /** * @dev BNT Pool interface */ interface IBNTPool is IVault { /** * @dev returns the BNT pool token contract */ function poolToken() external view returns (IPoolToken); /** * @dev returns the total staked BNT balance in the network */ function stakedBalance() external view returns (uint256); /** * @dev returns the current funding of given pool */ function currentPoolFunding(Token pool) external view returns (uint256); /** * @dev returns the available BNT funding for a given pool */ function availableFunding(Token pool) external view returns (uint256); /** * @dev converts the specified pool token amount to the underlying BNT amount */ function poolTokenToUnderlying(uint256 poolTokenAmount) external view returns (uint256); /** * @dev converts the specified underlying BNT amount to pool token amount */ function underlyingToPoolToken(uint256 bntAmount) external view returns (uint256); /** * @dev returns the number of pool token to burn in order to increase everyone's underlying value by the specified * amount */ function poolTokenAmountToBurn(uint256 bntAmountToDistribute) external view returns (uint256); /** * @dev mints BNT to the recipient * * requirements: * * - the caller must have the ROLE_BNT_MANAGER role */ function mint(address recipient, uint256 bntAmount) external; /** * @dev burns BNT from the vault * * requirements: * * - the caller must have the ROLE_VAULT_MANAGER role */ function burnFromVault(uint256 bntAmount) external; /** * @dev deposits BNT liquidity on behalf of a specific provider and returns the respective pool token amount * * requirements: * * - the caller must be the network contract * - BNT tokens must have been already deposited into the contract */ function depositFor( bytes32 contextId, address provider, uint256 bntAmount, bool isMigrating, uint256 originalVBNTAmount ) external returns (uint256); /** * @dev withdraws BNT liquidity on behalf of a specific provider and returns the withdrawn BNT amount * * requirements: * * - the caller must be the network contract * - bnBNT token must have been already deposited into the contract * - vBNT token must have been already deposited into the contract */ function withdraw( bytes32 contextId, address provider, uint256 poolTokenAmount, uint256 bntAmount ) external returns (uint256); /** * @dev returns the withdrawn BNT amount */ function withdrawalAmount(uint256 poolTokenAmount) external view returns (uint256); /** * @dev requests BNT funding * * requirements: * * - the caller must have the ROLE_FUNDING_MANAGER role * - the token must have been whitelisted * - the request amount should be below the funding limit for a given pool * - the average rate of the pool must not deviate too much from its spot rate */ function requestFunding( bytes32 contextId, Token pool, uint256 bntAmount ) external; /** * @dev renounces BNT funding * * requirements: * * - the caller must have the ROLE_FUNDING_MANAGER role * - the token must have been whitelisted * - the average rate of the pool must not deviate too much from its spot rate */ function renounceFunding( bytes32 contextId, Token pool, uint256 bntAmount ) external; /** * @dev notifies the pool of accrued fees * * requirements: * * - the caller must be the network contract */ function onFeesCollected( Token pool, uint256 feeAmount, bool isTradeFee ) external; }
// SPDX-License-Identifier: SEE LICENSE IN LICENSE pragma solidity 0.8.13; import { IVersioned } from "../../utility/interfaces/IVersioned.sol"; import { Fraction112 } from "../../utility/FractionLibrary.sol"; import { Token } from "../../token/Token.sol"; import { IPoolToken } from "./IPoolToken.sol"; struct PoolLiquidity { uint128 bntTradingLiquidity; // the BNT trading liquidity uint128 baseTokenTradingLiquidity; // the base token trading liquidity uint256 stakedBalance; // the staked balance } struct AverageRates { uint32 blockNumber; Fraction112 rate; Fraction112 invRate; } struct Pool { IPoolToken poolToken; // the pool token of the pool uint32 tradingFeePPM; // the trading fee (in units of PPM) bool tradingEnabled; // whether trading is enabled bool depositingEnabled; // whether depositing is enabled AverageRates averageRates; // the recent average rates PoolLiquidity liquidity; // the overall liquidity in the pool } struct WithdrawalAmounts { uint256 totalAmount; uint256 baseTokenAmount; uint256 bntAmount; } // trading enabling/disabling reasons uint8 constant TRADING_STATUS_UPDATE_DEFAULT = 0; uint8 constant TRADING_STATUS_UPDATE_ADMIN = 1; uint8 constant TRADING_STATUS_UPDATE_MIN_LIQUIDITY = 2; uint8 constant TRADING_STATUS_UPDATE_INVALID_STATE = 3; struct TradeAmountAndFee { uint256 amount; // the source/target amount (depending on the context) resulting from the trade uint256 tradingFeeAmount; // the trading fee amount uint256 networkFeeAmount; // the network fee amount (always in units of BNT) } /** * @dev Pool Collection interface */ interface IPoolCollection is IVersioned { /** * @dev returns the type of the pool */ function poolType() external view returns (uint16); /** * @dev returns the default trading fee (in units of PPM) */ function defaultTradingFeePPM() external view returns (uint32); /** * @dev returns the network fee (in units of PPM) */ function networkFeePPM() external view returns (uint32); /** * @dev returns all the pools which are managed by this pool collection */ function pools() external view returns (Token[] memory); /** * @dev returns the number of all the pools which are managed by this pool collection */ function poolCount() external view returns (uint256); /** * @dev returns whether a pool is valid */ function isPoolValid(Token pool) external view returns (bool); /** * @dev returns the overall liquidity in the pool */ function poolLiquidity(Token pool) external view returns (PoolLiquidity memory); /** * @dev returns the pool token of the pool */ function poolToken(Token pool) external view returns (IPoolToken); /** * @dev returns the trading fee (in units of PPM) */ function tradingFeePPM(Token pool) external view returns (uint32); /** * @dev returns whether trading is enabled */ function tradingEnabled(Token pool) external view returns (bool); /** * @dev returns whether depositing is enabled */ function depositingEnabled(Token pool) external view returns (bool); /** * @dev returns whether the pool is stable */ function isPoolStable(Token pool) external view returns (bool); /** * @dev converts the specified pool token amount to the underlying base token amount */ function poolTokenToUnderlying(Token pool, uint256 poolTokenAmount) external view returns (uint256); /** * @dev converts the specified underlying base token amount to pool token amount */ function underlyingToPoolToken(Token pool, uint256 baseTokenAmount) external view returns (uint256); /** * @dev returns the number of pool token to burn in order to increase everyone's underlying value by the specified * amount */ function poolTokenAmountToBurn( Token pool, uint256 baseTokenAmountToDistribute, uint256 protocolPoolTokenAmount ) external view returns (uint256); /** * @dev creates a new pool * * requirements: * * - the caller must be the network contract * - the pool should have been whitelisted * - the pool isn't already defined in the collection */ function createPool(Token token) external; /** * @dev deposits base token liquidity on behalf of a specific provider and returns the respective pool token amount * * requirements: * * - the caller must be the network contract * - assumes that the base token has been already deposited in the vault */ function depositFor( bytes32 contextId, address provider, Token pool, uint256 baseTokenAmount ) external returns (uint256); /** * @dev handles some of the withdrawal-related actions and returns the withdrawn base token amount * * requirements: * * - the caller must be the network contract * - the caller must have approved the collection to transfer/burn the pool token amount on its behalf */ function withdraw( bytes32 contextId, address provider, Token pool, uint256 poolTokenAmount, uint256 baseTokenAmount ) external returns (uint256); /** * @dev returns the amounts that would be returned if the position is currently withdrawn, * along with the breakdown of the base token and the BNT compensation */ function withdrawalAmounts(Token pool, uint256 poolTokenAmount) external view returns (WithdrawalAmounts memory); /** * @dev performs a trade by providing the source amount and returns the target amount and the associated fee * * requirements: * * - the caller must be the network contract */ function tradeBySourceAmount( bytes32 contextId, Token sourceToken, Token targetToken, uint256 sourceAmount, uint256 minReturnAmount, bool ignoreFees ) external returns (TradeAmountAndFee memory); /** * @dev performs a trade by providing the target amount and returns the required source amount and the associated fee * * requirements: * * - the caller must be the network contract */ function tradeByTargetAmount( bytes32 contextId, Token sourceToken, Token targetToken, uint256 targetAmount, uint256 maxSourceAmount, bool ignoreFees ) external returns (TradeAmountAndFee memory); /** * @dev returns the output amount and fee when trading by providing the source amount */ function tradeOutputAndFeeBySourceAmount( Token sourceToken, Token targetToken, uint256 sourceAmount ) external view returns (TradeAmountAndFee memory); /** * @dev returns the input amount and fee when trading by providing the target amount */ function tradeInputAndFeeByTargetAmount( Token sourceToken, Token targetToken, uint256 targetAmount ) external view returns (TradeAmountAndFee memory); /** * @dev notifies the pool of accrued fees * * requirements: * * - the caller must be the network contract */ function onFeesCollected(Token pool, uint256 feeAmount) external; /** * @dev migrates a pool to this pool collection * * requirements: * * - the caller must be the pool migrator contract */ function migratePoolIn(Token pool, Pool calldata data) external; /** * @dev migrates a pool from this pool collection * * requirements: * * - the caller must be the pool migrator contract */ function migratePoolOut(Token pool, IPoolCollection targetPoolCollection) external; }
// SPDX-License-Identifier: SEE LICENSE IN LICENSE pragma solidity 0.8.13; import { Token } from "../../token/Token.sol"; import { IVersioned } from "../../utility/interfaces/IVersioned.sol"; import { IPoolCollection } from "./IPoolCollection.sol"; /** * @dev Pool Migrator interface */ interface IPoolMigrator is IVersioned { /** * @dev migrates a pool and returns the new pool collection it exists in * * notes: * * - invalid or incompatible pools will be skipped gracefully * * requirements: * * - the caller must be the network contract */ function migratePool(Token pool, IPoolCollection newPoolCollection) external; }
// SPDX-License-Identifier: SEE LICENSE IN LICENSE pragma solidity 0.8.13; import { IERC20 } from "@openzeppelin/contracts/token/ERC20/IERC20.sol"; import { IERC20Permit } from "@openzeppelin/contracts/token/ERC20/extensions/draft-IERC20Permit.sol"; import { IERC20Burnable } from "../../token/interfaces/IERC20Burnable.sol"; import { Token } from "../../token/Token.sol"; import { IVersioned } from "../../utility/interfaces/IVersioned.sol"; import { IOwned } from "../../utility/interfaces/IOwned.sol"; /** * @dev Pool Token interface */ interface IPoolToken is IVersioned, IOwned, IERC20, IERC20Permit, IERC20Burnable { /** * @dev returns the address of the reserve token */ function reserveToken() external view returns (Token); /** * @dev increases the token supply and sends the new tokens to the given account * * requirements: * * - the caller must be the owner of the contract */ function mint(address recipient, uint256 amount) external; }
// SPDX-License-Identifier: SEE LICENSE IN LICENSE pragma solidity 0.8.13; import { IERC20 } from "@openzeppelin/contracts/token/ERC20/IERC20.sol"; import { SafeERC20 } from "@openzeppelin/contracts/token/ERC20/utils/SafeERC20.sol"; /** * @dev extends the SafeERC20 library with additional operations */ library SafeERC20Ex { using SafeERC20 for IERC20; /** * @dev ensures that the spender has sufficient allowance */ function ensureApprove(IERC20 token, address spender, uint256 amount) internal { if (amount == 0) { return; } uint256 allowance = token.allowance(address(this), spender); if (allowance >= amount) { return; } if (allowance > 0) { token.safeApprove(spender, 0); } token.safeApprove(spender, amount); } }
// SPDX-License-Identifier: SEE LICENSE IN LICENSE pragma solidity 0.8.13; /** * @dev the main purpose of the Token interfaces is to ensure artificially that we won't use ERC20's standard functions, * but only their safe versions, which are provided by SafeERC20 and SafeERC20Ex via the TokenLibrary contract */ interface Token { }
// SPDX-License-Identifier: SEE LICENSE IN LICENSE pragma solidity 0.8.13; import { IERC20 } from "@openzeppelin/contracts/token/ERC20/IERC20.sol"; import { ERC20 } from "@openzeppelin/contracts/token/ERC20/ERC20.sol"; import { SafeERC20 } from "@openzeppelin/contracts/token/ERC20/utils/SafeERC20.sol"; import { IERC20Permit } from "@openzeppelin/contracts/token/ERC20/extensions/draft-IERC20Permit.sol"; import { SafeERC20Ex } from "./SafeERC20Ex.sol"; import { Token } from "./Token.sol"; /** * @dev This library implements ERC20 and SafeERC20 utilities for both the native token and for ERC20 tokens */ library TokenLibrary { using SafeERC20 for IERC20; using SafeERC20Ex for IERC20; error PermitUnsupported(); // the address that represents the native token reserve address private constant NATIVE_TOKEN_ADDRESS = 0xEeeeeEeeeEeEeeEeEeEeeEEEeeeeEeeeeeeeEEeE; // the symbol that represents the native token string private constant NATIVE_TOKEN_SYMBOL = "ETH"; // the decimals for the native token uint8 private constant NATIVE_TOKEN_DECIMALS = 18; // the token representing the native token Token public constant NATIVE_TOKEN = Token(NATIVE_TOKEN_ADDRESS); /** * @dev returns whether the provided token represents an ERC20 or the native token reserve */ function isNative(Token token) internal pure returns (bool) { return address(token) == NATIVE_TOKEN_ADDRESS; } /** * @dev returns the symbol of the native token/ERC20 token */ function symbol(Token token) internal view returns (string memory) { if (isNative(token)) { return NATIVE_TOKEN_SYMBOL; } return toERC20(token).symbol(); } /** * @dev returns the decimals of the native token/ERC20 token */ function decimals(Token token) internal view returns (uint8) { if (isNative(token)) { return NATIVE_TOKEN_DECIMALS; } return toERC20(token).decimals(); } /** * @dev returns the balance of the native token/ERC20 token */ function balanceOf(Token token, address account) internal view returns (uint256) { if (isNative(token)) { return account.balance; } return toIERC20(token).balanceOf(account); } /** * @dev transfers a specific amount of the native token/ERC20 token */ function safeTransfer(Token token, address to, uint256 amount) internal { if (amount == 0) { return; } if (isNative(token)) { payable(to).transfer(amount); } else { toIERC20(token).safeTransfer(to, amount); } } /** * @dev transfers a specific amount of the native token/ERC20 token from a specific holder using the allowance mechanism * * note that the function does not perform any action if the native token is provided */ function safeTransferFrom(Token token, address from, address to, uint256 amount) internal { if (amount == 0 || isNative(token)) { return; } toIERC20(token).safeTransferFrom(from, to, amount); } /** * @dev approves a specific amount of the native token/ERC20 token from a specific holder * * note that the function does not perform any action if the native token is provided */ function safeApprove(Token token, address spender, uint256 amount) internal { if (isNative(token)) { return; } toIERC20(token).safeApprove(spender, amount); } /** * @dev increases allowance of the native token/ERC20 token from a specific holder * * note that the function does not perform any action if the native token is provided */ function safeIncreaseAllowance(Token token, address spender, uint256 amount) internal { if (isNative(token)) { return; } toIERC20(token).safeIncreaseAllowance(spender, amount); } /** * @dev ensures that the spender has sufficient allowance * * note that the function does not perform any action if the native token is provided */ function ensureApprove(Token token, address spender, uint256 amount) internal { if (isNative(token)) { return; } toIERC20(token).ensureApprove(spender, amount); } /** * @dev compares between a token and another raw ERC20 token */ function isEqual(Token token, IERC20 erc20Token) internal pure returns (bool) { return toIERC20(token) == erc20Token; } /** * @dev utility function that converts a token to an IERC20 */ function toIERC20(Token token) internal pure returns (IERC20) { return IERC20(address(token)); } /** * @dev utility function that converts a token to an ERC20 */ function toERC20(Token token) internal pure returns (ERC20) { return ERC20(address(token)); } }
// SPDX-License-Identifier: SEE LICENSE IN LICENSE pragma solidity 0.8.13; /** * @dev burnable ERC20 interface */ interface IERC20Burnable { /** * @dev Destroys tokens from the caller. */ function burn(uint256 amount) external; /** * @dev Destroys tokens from a recipient, deducting from the caller's allowance * * requirements: * * - the caller must have allowance for recipient's tokens of at least the specified amount */ function burnFrom(address recipient, uint256 amount) external; }
// SPDX-License-Identifier: SEE LICENSE IN LICENSE pragma solidity 0.8.13; uint32 constant PPM_RESOLUTION = 1_000_000;
// SPDX-License-Identifier: SEE LICENSE IN LICENSE pragma solidity 0.8.13; struct Fraction { uint256 n; uint256 d; } struct Fraction112 { uint112 n; uint112 d; } error InvalidFraction();
// SPDX-License-Identifier: SEE LICENSE IN LICENSE pragma solidity 0.8.13; import { Fraction, Fraction112, InvalidFraction } from "./Fraction.sol"; import { MathEx } from "./MathEx.sol"; // solhint-disable-next-line func-visibility function zeroFraction() pure returns (Fraction memory) { return Fraction({ n: 0, d: 1 }); } // solhint-disable-next-line func-visibility function zeroFraction112() pure returns (Fraction112 memory) { return Fraction112({ n: 0, d: 1 }); } /** * @dev this library provides a set of fraction operations */ library FractionLibrary { /** * @dev returns whether a standard fraction is valid */ function isValid(Fraction memory fraction) internal pure returns (bool) { return fraction.d != 0; } /** * @dev returns whether a 112-bit fraction is valid */ function isValid(Fraction112 memory fraction) internal pure returns (bool) { return fraction.d != 0; } /** * @dev returns whether a standard fraction is positive */ function isPositive(Fraction memory fraction) internal pure returns (bool) { return isValid(fraction) && fraction.n != 0; } /** * @dev returns whether a 112-bit fraction is positive */ function isPositive(Fraction112 memory fraction) internal pure returns (bool) { return isValid(fraction) && fraction.n != 0; } /** * @dev returns the inverse of a given fraction */ function inverse(Fraction memory fraction) internal pure returns (Fraction memory) { Fraction memory invFraction = Fraction({ n: fraction.d, d: fraction.n }); if (!isValid(invFraction)) { revert InvalidFraction(); } return invFraction; } /** * @dev returns the inverse of a given fraction */ function inverse(Fraction112 memory fraction) internal pure returns (Fraction112 memory) { Fraction112 memory invFraction = Fraction112({ n: fraction.d, d: fraction.n }); if (!isValid(invFraction)) { revert InvalidFraction(); } return invFraction; } /** * @dev reduces a standard fraction to a 112-bit fraction */ function toFraction112(Fraction memory fraction) internal pure returns (Fraction112 memory) { Fraction memory truncatedFraction = MathEx.truncatedFraction(fraction, type(uint112).max); return Fraction112({ n: uint112(truncatedFraction.n), d: uint112(truncatedFraction.d) }); } /** * @dev expands a 112-bit fraction to a standard fraction */ function fromFraction112(Fraction112 memory fraction) internal pure returns (Fraction memory) { return Fraction({ n: fraction.n, d: fraction.d }); } }
// SPDX-License-Identifier: SEE LICENSE IN LICENSE pragma solidity 0.8.13; import { Math } from "@openzeppelin/contracts/utils/math/Math.sol"; import { Fraction, InvalidFraction } from "./Fraction.sol"; import { PPM_RESOLUTION } from "./Constants.sol"; uint256 constant ONE = 0x80000000000000000000000000000000; uint256 constant LN2 = 0x58b90bfbe8e7bcd5e4f1d9cc01f97b57; struct Uint512 { uint256 hi; // 256 most significant bits uint256 lo; // 256 least significant bits } struct Sint256 { uint256 value; bool isNeg; } /** * @dev this library provides a set of complex math operations */ library MathEx { error Overflow(); /** * @dev returns `2 ^ f` by calculating `e ^ (f * ln(2))`, where `e` is Euler's number: * - Rewrite the input as a sum of binary exponents and a single residual r, as small as possible * - The exponentiation of each binary exponent is given (pre-calculated) * - The exponentiation of r is calculated via Taylor series for e^x, where x = r * - The exponentiation of the input is calculated by multiplying the intermediate results above * - For example: e^5.521692859 = e^(4 + 1 + 0.5 + 0.021692859) = e^4 * e^1 * e^0.5 * e^0.021692859 */ function exp2(Fraction memory f) internal pure returns (Fraction memory) { uint256 x = MathEx.mulDivF(LN2, f.n, f.d); uint256 y; uint256 z; uint256 n; if (x >= (ONE << 4)) { revert Overflow(); } unchecked { z = y = x % (ONE >> 3); // get the input modulo 2^(-3) z = (z * y) / ONE; n += z * 0x10e1b3be415a0000; // add y^02 * (20! / 02!) z = (z * y) / ONE; n += z * 0x05a0913f6b1e0000; // add y^03 * (20! / 03!) z = (z * y) / ONE; n += z * 0x0168244fdac78000; // add y^04 * (20! / 04!) z = (z * y) / ONE; n += z * 0x004807432bc18000; // add y^05 * (20! / 05!) z = (z * y) / ONE; n += z * 0x000c0135dca04000; // add y^06 * (20! / 06!) z = (z * y) / ONE; n += z * 0x0001b707b1cdc000; // add y^07 * (20! / 07!) z = (z * y) / ONE; n += z * 0x000036e0f639b800; // add y^08 * (20! / 08!) z = (z * y) / ONE; n += z * 0x00000618fee9f800; // add y^09 * (20! / 09!) z = (z * y) / ONE; n += z * 0x0000009c197dcc00; // add y^10 * (20! / 10!) z = (z * y) / ONE; n += z * 0x0000000e30dce400; // add y^11 * (20! / 11!) z = (z * y) / ONE; n += z * 0x000000012ebd1300; // add y^12 * (20! / 12!) z = (z * y) / ONE; n += z * 0x0000000017499f00; // add y^13 * (20! / 13!) z = (z * y) / ONE; n += z * 0x0000000001a9d480; // add y^14 * (20! / 14!) z = (z * y) / ONE; n += z * 0x00000000001c6380; // add y^15 * (20! / 15!) z = (z * y) / ONE; n += z * 0x000000000001c638; // add y^16 * (20! / 16!) z = (z * y) / ONE; n += z * 0x0000000000001ab8; // add y^17 * (20! / 17!) z = (z * y) / ONE; n += z * 0x000000000000017c; // add y^18 * (20! / 18!) z = (z * y) / ONE; n += z * 0x0000000000000014; // add y^19 * (20! / 19!) z = (z * y) / ONE; n += z * 0x0000000000000001; // add y^20 * (20! / 20!) n = n / 0x21c3677c82b40000 + y + ONE; // divide by 20! and then add y^1 / 1! + y^0 / 0! if ((x & (ONE >> 3)) != 0) n = (n * 0x1c3d6a24ed82218787d624d3e5eba95f9) / 0x18ebef9eac820ae8682b9793ac6d1e776; // multiply by e^(2^-3) if ((x & (ONE >> 2)) != 0) n = (n * 0x18ebef9eac820ae8682b9793ac6d1e778) / 0x1368b2fc6f9609fe7aceb46aa619baed4; // multiply by e^(2^-2) if ((x & (ONE >> 1)) != 0) n = (n * 0x1368b2fc6f9609fe7aceb46aa619baed5) / 0x0bc5ab1b16779be3575bd8f0520a9f21f; // multiply by e^(2^-1) if ((x & (ONE << 0)) != 0) n = (n * 0x0bc5ab1b16779be3575bd8f0520a9f21e) / 0x0454aaa8efe072e7f6ddbab84b40a55c9; // multiply by e^(2^+0) if ((x & (ONE << 1)) != 0) n = (n * 0x0454aaa8efe072e7f6ddbab84b40a55c5) / 0x00960aadc109e7a3bf4578099615711ea; // multiply by e^(2^+1) if ((x & (ONE << 2)) != 0) n = (n * 0x00960aadc109e7a3bf4578099615711d7) / 0x0002bf84208204f5977f9a8cf01fdce3d; // multiply by e^(2^+2) if ((x & (ONE << 3)) != 0) n = (n * 0x0002bf84208204f5977f9a8cf01fdc307) / 0x0000003c6ab775dd0b95b4cbee7e65d11; // multiply by e^(2^+3) } return Fraction({ n: n, d: ONE }); } /** * @dev returns a fraction with truncated components * note that since the input value is truncated, the use of the method incurs precision loss */ function truncatedFraction(Fraction memory fraction, uint256 max) internal pure returns (Fraction memory) { uint256 scale = Math.ceilDiv(Math.max(fraction.n, fraction.d), max); Fraction memory truncated = Fraction({ n: fraction.n / scale, d: fraction.d / scale }); if (truncated.d == 0) { revert InvalidFraction(); } return truncated; } /** * @dev returns the weighted average of two fractions */ function weightedAverage( Fraction memory fraction1, Fraction memory fraction2, uint256 weight1, uint256 weight2 ) internal pure returns (Fraction memory) { return Fraction({ n: fraction1.n * fraction2.d * weight1 + fraction1.d * fraction2.n * weight2, d: fraction1.d * fraction2.d * (weight1 + weight2) }); } /** * @dev returns whether or not the deviation of an offset sample from a base sample is within a permitted range * for example, if the maximum permitted deviation is 5%, then evaluate `95% * base <= offset <= 105% * base` */ function isInRange( Fraction memory baseSample, Fraction memory offsetSample, uint32 maxDeviationPPM ) internal pure returns (bool) { Uint512 memory min = mul512(baseSample.n, offsetSample.d * (PPM_RESOLUTION - maxDeviationPPM)); Uint512 memory mid = mul512(baseSample.d, offsetSample.n * PPM_RESOLUTION); Uint512 memory max = mul512(baseSample.n, offsetSample.d * (PPM_RESOLUTION + maxDeviationPPM)); return lte512(min, mid) && lte512(mid, max); } /** * @dev returns an `Sint256` positive representation of an unsigned integer */ function toPos256(uint256 n) internal pure returns (Sint256 memory) { return Sint256({ value: n, isNeg: false }); } /** * @dev returns an `Sint256` negative representation of an unsigned integer */ function toNeg256(uint256 n) internal pure returns (Sint256 memory) { return Sint256({ value: n, isNeg: true }); } /** * @dev returns the largest integer smaller than or equal to `x * y / z` */ function mulDivF(uint256 x, uint256 y, uint256 z) internal pure returns (uint256) { Uint512 memory xy = mul512(x, y); // if `x * y < 2 ^ 256` if (xy.hi == 0) { return xy.lo / z; } // assert `x * y / z < 2 ^ 256` if (xy.hi >= z) { revert Overflow(); } uint256 m = _mulMod(x, y, z); // `m = x * y % z` Uint512 memory n = _sub512(xy, m); // `n = x * y - m` hence `n / z = floor(x * y / z)` // if `n < 2 ^ 256` if (n.hi == 0) { return n.lo / z; } uint256 p = _unsafeSub(0, z) & z; // `p` is the largest power of 2 which `z` is divisible by uint256 q = _div512(n, p); // `n` is divisible by `p` because `n` is divisible by `z` and `z` is divisible by `p` uint256 r = _inv256(z / p); // `z / p = 1 mod 2` hence `inverse(z / p) = 1 mod 2 ^ 256` return _unsafeMul(q, r); // `q * r = (n / p) * inverse(z / p) = n / z` } /** * @dev returns the smallest integer larger than or equal to `x * y / z` */ function mulDivC(uint256 x, uint256 y, uint256 z) internal pure returns (uint256) { uint256 w = mulDivF(x, y, z); if (_mulMod(x, y, z) > 0) { if (w >= type(uint256).max) { revert Overflow(); } return w + 1; } return w; } /** * @dev returns the maximum of `n1 - n2` and 0 */ function subMax0(uint256 n1, uint256 n2) internal pure returns (uint256) { return n1 > n2 ? n1 - n2 : 0; } /** * @dev returns the value of `x > y` */ function gt512(Uint512 memory x, Uint512 memory y) internal pure returns (bool) { return x.hi > y.hi || (x.hi == y.hi && x.lo > y.lo); } /** * @dev returns the value of `x < y` */ function lt512(Uint512 memory x, Uint512 memory y) internal pure returns (bool) { return x.hi < y.hi || (x.hi == y.hi && x.lo < y.lo); } /** * @dev returns the value of `x >= y` */ function gte512(Uint512 memory x, Uint512 memory y) internal pure returns (bool) { return !lt512(x, y); } /** * @dev returns the value of `x <= y` */ function lte512(Uint512 memory x, Uint512 memory y) internal pure returns (bool) { return !gt512(x, y); } /** * @dev returns the value of `x * y` */ function mul512(uint256 x, uint256 y) internal pure returns (Uint512 memory) { uint256 p = _mulModMax(x, y); uint256 q = _unsafeMul(x, y); if (p >= q) { return Uint512({ hi: p - q, lo: q }); } return Uint512({ hi: _unsafeSub(p, q) - 1, lo: q }); } /** * @dev returns the value of `x - y`, given that `x >= y` */ function _sub512(Uint512 memory x, uint256 y) private pure returns (Uint512 memory) { if (x.lo >= y) { return Uint512({ hi: x.hi, lo: x.lo - y }); } return Uint512({ hi: x.hi - 1, lo: _unsafeSub(x.lo, y) }); } /** * @dev returns the value of `x / pow2n`, given that `x` is divisible by `pow2n` */ function _div512(Uint512 memory x, uint256 pow2n) private pure returns (uint256) { uint256 pow2nInv = _unsafeAdd(_unsafeSub(0, pow2n) / pow2n, 1); // `1 << (256 - n)` return _unsafeMul(x.hi, pow2nInv) | (x.lo / pow2n); // `(x.hi << (256 - n)) | (x.lo >> n)` } /** * @dev returns the inverse of `d` modulo `2 ^ 256`, given that `d` is congruent to `1` modulo `2` */ function _inv256(uint256 d) private pure returns (uint256) { // approximate the root of `f(x) = 1 / x - d` using the newton–raphson convergence method uint256 x = 1; for (uint256 i = 0; i < 8; i++) { x = _unsafeMul(x, _unsafeSub(2, _unsafeMul(x, d))); // `x = x * (2 - x * d) mod 2 ^ 256` } return x; } /** * @dev returns `(x + y) % 2 ^ 256` */ function _unsafeAdd(uint256 x, uint256 y) private pure returns (uint256) { unchecked { return x + y; } } /** * @dev returns `(x - y) % 2 ^ 256` */ function _unsafeSub(uint256 x, uint256 y) private pure returns (uint256) { unchecked { return x - y; } } /** * @dev returns `(x * y) % 2 ^ 256` */ function _unsafeMul(uint256 x, uint256 y) private pure returns (uint256) { unchecked { return x * y; } } /** * @dev returns `x * y % (2 ^ 256 - 1)` */ function _mulModMax(uint256 x, uint256 y) private pure returns (uint256) { return mulmod(x, y, type(uint256).max); } /** * @dev returns `x * y % z` */ function _mulMod(uint256 x, uint256 y, uint256 z) private pure returns (uint256) { return mulmod(x, y, z); } }
// SPDX-License-Identifier: SEE LICENSE IN LICENSE pragma solidity 0.8.13; /** * @dev this contract abstracts the block timestamp in order to allow for more flexible control in tests */ abstract contract Time { /** * @dev returns the current time */ function _time() internal view virtual returns (uint32) { return uint32(block.timestamp); } }
// SPDX-License-Identifier: SEE LICENSE IN LICENSE pragma solidity 0.8.13; import { AccessControlEnumerableUpgradeable } from "@openzeppelin/contracts-upgradeable/access/AccessControlEnumerableUpgradeable.sol"; import { IUpgradeable } from "./interfaces/IUpgradeable.sol"; import { AccessDenied } from "./Utils.sol"; /** * @dev this contract provides common utilities for upgradeable contracts * * note that we're using the Transparent Upgradeable Proxy pattern and *not* the Universal Upgradeable Proxy Standard * (UUPS) pattern, therefore initializing the implementation contracts is not necessary or required */ abstract contract Upgradeable is IUpgradeable, AccessControlEnumerableUpgradeable { error AlreadyInitialized(); // the admin role is used to allow a non-proxy admin to perform additional initialization/setup during contract // upgrades bytes32 internal constant ROLE_ADMIN = keccak256("ROLE_ADMIN"); uint32 internal constant MAX_GAP = 50; uint16 internal _initializations; // upgrade forward-compatibility storage gap uint256[MAX_GAP - 1] private __gap; // solhint-disable func-name-mixedcase /** * @dev initializes the contract and its parents */ function __Upgradeable_init() internal onlyInitializing { __AccessControl_init(); __Upgradeable_init_unchained(); } /** * @dev performs contract-specific initialization */ function __Upgradeable_init_unchained() internal onlyInitializing { _initializations = 1; // set up administrative roles _setRoleAdmin(ROLE_ADMIN, ROLE_ADMIN); // allow the deployer to initially be the admin of the contract _setupRole(ROLE_ADMIN, msg.sender); } // solhint-enable func-name-mixedcase modifier onlyAdmin() { _hasRole(ROLE_ADMIN, msg.sender); _; } modifier onlyRoleMember(bytes32 role) { _hasRole(role, msg.sender); _; } function version() public view virtual override returns (uint16); /** * @dev returns the admin role */ function roleAdmin() external pure returns (bytes32) { return ROLE_ADMIN; } /** * @dev performs post-upgrade initialization * * requirements: * * - this must can be called only once per-upgrade */ function postUpgrade(bytes calldata data) external { uint16 initializations = _initializations + 1; if (initializations != version()) { revert AlreadyInitialized(); } _initializations = initializations; _postUpgrade(data); } /** * @dev an optional post-upgrade callback that can be implemented by child contracts */ function _postUpgrade(bytes calldata /* data */) internal virtual {} function _hasRole(bytes32 role, address account) internal view { if (!hasRole(role, account)) { revert AccessDenied(); } } }
// SPDX-License-Identifier: SEE LICENSE IN LICENSE pragma solidity 0.8.13; import { PPM_RESOLUTION } from "./Constants.sol"; error AccessDenied(); error AlreadyExists(); error DoesNotExist(); error InvalidAddress(); error InvalidExternalAddress(); error InvalidFee(); error InvalidPool(); error InvalidPoolCollection(); error InvalidStakedBalance(); error InvalidToken(); error InvalidParam(); error NotEmpty(); error NotPayable(); error ZeroValue(); /** * @dev common utilities */ abstract contract Utils { // allows execution by the caller only modifier only(address caller) { _only(caller); _; } function _only(address caller) internal view { if (msg.sender != caller) { revert AccessDenied(); } } // verifies that a value is greater than zero modifier greaterThanZero(uint256 value) { _greaterThanZero(value); _; } // error message binary size optimization function _greaterThanZero(uint256 value) internal pure { if (value == 0) { revert ZeroValue(); } } // validates an address - currently only checks that it isn't null modifier validAddress(address addr) { _validAddress(addr); _; } // error message binary size optimization function _validAddress(address addr) internal pure { if (addr == address(0)) { revert InvalidAddress(); } } // validates an external address - currently only checks that it isn't null or this modifier validExternalAddress(address addr) { _validExternalAddress(addr); _; } // error message binary size optimization function _validExternalAddress(address addr) internal view { if (addr == address(0) || addr == address(this)) { revert InvalidExternalAddress(); } } // ensures that the fee is valid modifier validFee(uint32 fee) { _validFee(fee); _; } // error message binary size optimization function _validFee(uint32 fee) internal pure { if (fee > PPM_RESOLUTION) { revert InvalidFee(); } } }
// SPDX-License-Identifier: SEE LICENSE IN LICENSE pragma solidity 0.8.13; /** * @dev Owned interface */ interface IOwned { /** * @dev returns the address of the current owner */ function owner() external view returns (address); /** * @dev allows transferring the contract ownership * * requirements: * * - the caller must be the owner of the contract * - the new owner still needs to accept the transfer */ function transferOwnership(address ownerCandidate) external; /** * @dev used by a new owner to accept an ownership transfer */ function acceptOwnership() external; }
// SPDX-License-Identifier: SEE LICENSE IN LICENSE pragma solidity 0.8.13; import { IVersioned } from "./IVersioned.sol"; import { IAccessControlEnumerableUpgradeable } from "@openzeppelin/contracts-upgradeable/access/IAccessControlEnumerableUpgradeable.sol"; /** * @dev this is the common interface for upgradeable contracts */ interface IUpgradeable is IAccessControlEnumerableUpgradeable, IVersioned { }
// SPDX-License-Identifier: SEE LICENSE IN LICENSE pragma solidity 0.8.13; /** * @dev an interface for a versioned contract */ interface IVersioned { function version() external view returns (uint16); }
// SPDX-License-Identifier: SEE LICENSE IN LICENSE pragma solidity 0.8.13; import { IVault } from "./IVault.sol"; interface IExternalProtectionVault is IVault {}
// SPDX-License-Identifier: SEE LICENSE IN LICENSE pragma solidity 0.8.13; import { IVault } from "./IVault.sol"; interface IMasterVault is IVault {}
// SPDX-License-Identifier: SEE LICENSE IN LICENSE pragma solidity 0.8.13; import { IUpgradeable } from "../../utility/interfaces/IUpgradeable.sol"; import { Token } from "../../token/Token.sol"; // the asset manager role is required to access all the funds bytes32 constant ROLE_ASSET_MANAGER = keccak256("ROLE_ASSET_MANAGER"); interface IVault is IUpgradeable { /** * @dev triggered when tokens have been withdrawn from the vault */ event FundsWithdrawn(Token indexed token, address indexed caller, address indexed target, uint256 amount); /** * @dev triggered when tokens have been burned from the vault */ event FundsBurned(Token indexed token, address indexed caller, uint256 amount); /** * @dev tells whether the vault accepts native token deposits */ function isPayable() external view returns (bool); /** * @dev withdraws funds held by the contract and sends them to an account */ function withdrawFunds( Token token, address payable target, uint256 amount ) external; /** * @dev burns funds held by the contract */ function burn(Token token, uint256 amount) external; }
{ "evmVersion": "london", "libraries": {}, "metadata": { "bytecodeHash": "none", "useLiteralContent": true }, "optimizer": { "enabled": true, "runs": 200 }, "remappings": [], "outputSelection": { "*": { "*": [ "evm.bytecode", "evm.deployedBytecode", "devdoc", "userdoc", "metadata", "abi" ] } } }
Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
[{"inputs":[{"internalType":"contract ITokenGovernance","name":"initBNTGovernance","type":"address"},{"internalType":"contract ITokenGovernance","name":"initVBNTGovernance","type":"address"},{"internalType":"contract INetworkSettings","name":"initNetworkSettings","type":"address"},{"internalType":"contract IMasterVault","name":"initMasterVault","type":"address"},{"internalType":"contract IExternalProtectionVault","name":"initExternalProtectionVault","type":"address"},{"internalType":"contract IPoolToken","name":"initBNTPoolToken","type":"address"},{"internalType":"address","name":"bancorArbitrage","type":"address"}],"stateMutability":"nonpayable","type":"constructor"},{"inputs":[],"name":"AccessDenied","type":"error"},{"inputs":[],"name":"AlreadyExists","type":"error"},{"inputs":[],"name":"AlreadyInitialized","type":"error"},{"inputs":[],"name":"DeadlineExpired","type":"error"},{"inputs":[],"name":"DepositingDisabled","type":"error"},{"inputs":[],"name":"DoesNotExist","type":"error"},{"inputs":[],"name":"InsufficientFlashLoanReturn","type":"error"},{"inputs":[],"name":"InvalidAddress","type":"error"},{"inputs":[],"name":"InvalidPool","type":"error"},{"inputs":[],"name":"InvalidToken","type":"error"},{"inputs":[],"name":"NativeTokenAmountMismatch","type":"error"},{"inputs":[],"name":"NotEmpty","type":"error"},{"inputs":[],"name":"NotWhitelisted","type":"error"},{"inputs":[],"name":"Overflow","type":"error"},{"inputs":[],"name":"ZeroValue","type":"error"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"contract Token","name":"token","type":"address"},{"indexed":true,"internalType":"address","name":"borrower","type":"address"},{"indexed":false,"internalType":"uint256","name":"amount","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"feeAmount","type":"uint256"}],"name":"FlashLoanCompleted","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"bytes32","name":"contextId","type":"bytes32"},{"indexed":true,"internalType":"contract Token","name":"token","type":"address"},{"indexed":true,"internalType":"address","name":"provider","type":"address"},{"indexed":false,"internalType":"uint256","name":"amount","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"availableAmount","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"originalAmount","type":"uint256"}],"name":"FundsMigrated","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"caller","type":"address"},{"indexed":true,"internalType":"address","name":"recipient","type":"address"},{"indexed":false,"internalType":"uint256","name":"amount","type":"uint256"}],"name":"NetworkFeesWithdrawn","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"account","type":"address"}],"name":"Paused","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"contract Token","name":"pool","type":"address"},{"indexed":true,"internalType":"contract IPoolCollection","name":"poolCollection","type":"address"}],"name":"PoolAdded","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"uint16","name":"poolType","type":"uint16"},{"indexed":true,"internalType":"contract IPoolCollection","name":"poolCollection","type":"address"}],"name":"PoolCollectionAdded","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"uint16","name":"poolType","type":"uint16"},{"indexed":true,"internalType":"contract IPoolCollection","name":"poolCollection","type":"address"}],"name":"PoolCollectionRemoved","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"contract Token","name":"pool","type":"address"},{"indexed":true,"internalType":"contract IPoolCollection","name":"poolCollection","type":"address"}],"name":"PoolCreated","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"contract Token","name":"pool","type":"address"},{"indexed":true,"internalType":"contract IPoolCollection","name":"poolCollection","type":"address"}],"name":"PoolRemoved","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":"bytes32","name":"contextId","type":"bytes32"},{"indexed":true,"internalType":"contract Token","name":"sourceToken","type":"address"},{"indexed":true,"internalType":"contract Token","name":"targetToken","type":"address"},{"indexed":false,"internalType":"uint256","name":"sourceAmount","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"targetAmount","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"bntAmount","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"targetFeeAmount","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"bntFeeAmount","type":"uint256"},{"indexed":false,"internalType":"address","name":"trader","type":"address"}],"name":"TokensTraded","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"account","type":"address"}],"name":"Unpaused","type":"event"},{"inputs":[],"name":"DEFAULT_ADMIN_ROLE","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"id","type":"uint256"}],"name":"cancelWithdrawal","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"contract Token","name":"pool","type":"address"}],"name":"collectionByPool","outputs":[{"internalType":"contract IPoolCollection","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"contract Token[]","name":"tokens","type":"address[]"},{"internalType":"contract IPoolCollection","name":"poolCollection","type":"address"}],"name":"createPools","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"contract Token","name":"pool","type":"address"},{"internalType":"uint256","name":"tokenAmount","type":"uint256"}],"name":"deposit","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"address","name":"provider","type":"address"},{"internalType":"contract Token","name":"pool","type":"address"},{"internalType":"uint256","name":"tokenAmount","type":"uint256"}],"name":"depositFor","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"depositingEnabled","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bool","name":"status","type":"bool"}],"name":"enableDepositing","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"contract Token","name":"token","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"},{"internalType":"contract IFlashLoanRecipient","name":"recipient","type":"address"},{"internalType":"bytes","name":"data","type":"bytes"}],"name":"flashLoan","outputs":[],"stateMutability":"nonpayable","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":"uint256","name":"index","type":"uint256"}],"name":"getRoleMember","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bytes32","name":"role","type":"bytes32"}],"name":"getRoleMemberCount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bytes32","name":"role","type":"bytes32"},{"internalType":"address","name":"account","type":"address"}],"name":"grantRole","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes32","name":"role","type":"bytes32"},{"internalType":"address","name":"account","type":"address"}],"name":"hasRole","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"contract IPoolToken","name":"poolToken","type":"address"},{"internalType":"uint256","name":"poolTokenAmount","type":"uint256"}],"name":"initWithdrawal","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"contract IBNTPool","name":"initBNTPool","type":"address"},{"internalType":"contract IPendingWithdrawals","name":"initPendingWithdrawals","type":"address"},{"internalType":"contract IPoolMigrator","name":"initPoolMigrator","type":"address"}],"name":"initialize","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"liquidityPools","outputs":[{"internalType":"contract Token[]","name":"","type":"address[]"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"contract Token","name":"token","type":"address"},{"internalType":"address","name":"provider","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"},{"internalType":"uint256","name":"availableAmount","type":"uint256"},{"internalType":"uint256","name":"originalAmount","type":"uint256"}],"name":"migrateLiquidity","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"contract Token[]","name":"pools","type":"address[]"},{"internalType":"contract IPoolCollection","name":"newPoolCollection","type":"address"}],"name":"migratePools","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"pause","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"paused","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"pendingNetworkFeeAmount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"poolCollections","outputs":[{"internalType":"contract IPoolCollection[]","name":"","type":"address[]"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bytes","name":"data","type":"bytes"}],"name":"postUpgrade","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"contract IPoolCollection","name":"newPoolCollection","type":"address"}],"name":"registerPoolCollection","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes32","name":"role","type":"bytes32"},{"internalType":"address","name":"account","type":"address"}],"name":"renounceRole","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"resume","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":"roleAdmin","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"pure","type":"function"},{"inputs":[],"name":"roleEmergencyStopper","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"pure","type":"function"},{"inputs":[],"name":"roleMigrationManager","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"pure","type":"function"},{"inputs":[],"name":"roleNetworkFeeManager","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"pure","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"contract Token","name":"sourceToken","type":"address"},{"internalType":"contract Token","name":"targetToken","type":"address"},{"internalType":"uint256","name":"sourceAmount","type":"uint256"},{"internalType":"uint256","name":"minReturnAmount","type":"uint256"},{"internalType":"uint256","name":"deadline","type":"uint256"},{"internalType":"address","name":"beneficiary","type":"address"}],"name":"tradeBySourceAmount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"contract Token","name":"sourceToken","type":"address"},{"internalType":"contract Token","name":"targetToken","type":"address"},{"internalType":"uint256","name":"sourceAmount","type":"uint256"},{"internalType":"uint256","name":"minReturnAmount","type":"uint256"},{"internalType":"uint256","name":"deadline","type":"uint256"},{"internalType":"address","name":"beneficiary","type":"address"}],"name":"tradeBySourceAmountArb","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"contract Token","name":"sourceToken","type":"address"},{"internalType":"contract Token","name":"targetToken","type":"address"},{"internalType":"uint256","name":"targetAmount","type":"uint256"},{"internalType":"uint256","name":"maxSourceAmount","type":"uint256"},{"internalType":"uint256","name":"deadline","type":"uint256"},{"internalType":"address","name":"beneficiary","type":"address"}],"name":"tradeByTargetAmount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"contract Token","name":"sourceToken","type":"address"},{"internalType":"contract Token","name":"targetToken","type":"address"},{"internalType":"uint256","name":"targetAmount","type":"uint256"},{"internalType":"uint256","name":"maxSourceAmount","type":"uint256"},{"internalType":"uint256","name":"deadline","type":"uint256"},{"internalType":"address","name":"beneficiary","type":"address"}],"name":"tradeByTargetAmountArb","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"contract IPoolCollection","name":"poolCollection","type":"address"}],"name":"unregisterPoolCollection","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"version","outputs":[{"internalType":"uint16","name":"","type":"uint16"}],"stateMutability":"pure","type":"function"},{"inputs":[{"internalType":"uint256","name":"id","type":"uint256"}],"name":"withdraw","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"recipient","type":"address"}],"name":"withdrawNetworkFees","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"nonpayable","type":"function"},{"stateMutability":"payable","type":"receive"}]
Contract Creation Code
6101a0604052610169805460ff191660011790553480156200002057600080fd5b5060405162005b4138038062005b41833981016040819052620000439162000200565b866200004f81620001bf565b866200005b81620001bf565b866200006781620001bf565b866200007381620001bf565b866200007f81620001bf565b866200008b81620001bf565b866200009781620001bf565b6001600160a01b038e1660a081905260408051637e062a3560e11b8152905163fc0c546a916004808201926020929091908290030181865afa158015620000e2573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190620001089190620002ab565b6001600160a01b039081166080528d1660e081905260408051637e062a3560e11b8152905163fc0c546a916004808201926020929091908290030181865afa15801562000159573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906200017f9190620002ab565b6001600160a01b0390811660c0529b8c166101005250505050958716610120525050918416610140528316610160529091166101805250620002d2915050565b6001600160a01b038116620001e75760405163e6c4247b60e01b815260040160405180910390fd5b50565b6001600160a01b0381168114620001e757600080fd5b600080600080600080600060e0888a0312156200021c57600080fd5b87516200022981620001ea565b60208901519097506200023c81620001ea565b60408901519096506200024f81620001ea565b60608901519095506200026281620001ea565b60808901519094506200027581620001ea565b60a08901519093506200028881620001ea565b60c08901519092506200029b81620001ea565b8091505092959891949750929550565b600060208284031215620002be57600080fd5b8151620002cb81620001ea565b9392505050565b60805160a05160c05160e0516101005161012051610140516101605161018051615755620003ec6000396000818161170201528181611e8501528181612029015281816130820152613794015260008181610ad80152612ac00152600081816123e60152612693015260008181610dd4015281816118010152818161195c01528181611996015281816123570152818161260401528181613c3701528181613cb101526140bf01526000818161166b0152611755015260005050600061276b01526000505060008181610e0101528181610fa201528181611616015281816119c501528181612d7501528181612f11015281816131d401528181613e6401528181613f39015281816145b601526145f301526157556000f3fe60806040526004361061024a5760003560e01c80637bf6a42511610139578063b3db428b116100b6578063d0d145811161007a578063d0d14581146106c3578063d3a4acd3146106d6578063d547741f146106e9578063d6efd7c314610709578063d895feee1461071e578063e6aac07e1461073157600080fd5b8063b3db428b1461061d578063c0c53b8b14610630578063c109ba1314610650578063c844748714610670578063ca15c873146106a357600080fd5b806393867fb5116100fd57806393867fb51461056d5780639bca0e701461058e578063a217fddf146105c8578063a8bf9046146105dd578063adf51de1146105fd57600080fd5b80637bf6a425146104ca5780638456cb59146104e05780638cd2403d146104f55780639010d07c1461051557806391d148541461054d57600080fd5b80633cd11924116101c757806345d6602c1161018b57806345d6602c1461045657806347e7ef241461046957806354fd4d501461047c5780635c975abb1461049857806371f43f9a146104b157600080fd5b80633cd11924146103c25780633d1c24e7146103e25780633efcfda4146103f557806341f435b314610415578063426599641461043657600080fd5b80632e1a7d4d1161020e5780632e1a7d4d146103205780632f2ff15d14610340578063357a03331461036057806336568abe1461038057806339fadf98146103a057600080fd5b806301ffc9a714610256578063046f7da21461028b578063230df83a146102a2578063248a9ca3146102c257806326e6b6971461030057600080fd5b3661025157005b600080fd5b34801561026257600080fd5b50610276610271366004614deb565b610764565b60405190151581526020015b60405180910390f35b34801561029757600080fd5b506102a061078f565b005b3480156102ae57600080fd5b506102a06102bd366004614e2a565b6107b3565b3480156102ce57600080fd5b506102f26102dd366004614e47565b60009081526065602052604090206001015490565b604051908152602001610282565b34801561030c57600080fd5b506102a061031b366004614e6e565b610961565b34801561032c57600080fd5b506102f261033b366004614e47565b61099e565b34801561034c57600080fd5b506102a061035b366004614e8b565b610b43565b34801561036c57600080fd5b506102f261037b366004614ebb565b610b6e565b34801561038c57600080fd5b506102a061039b366004614e8b565b610be8565b3480156103ac57600080fd5b506103b5610c66565b6040516102829190614ee7565b3480156103ce57600080fd5b506102f26103dd366004614e2a565b610d18565b6102a06103f0366004614f34565b610eae565b34801561040157600080fd5b506102f2610410366004614e47565b611050565b34801561042157600080fd5b506000805160206156e98339815191526102f2565b34801561044257600080fd5b506102a0610451366004614f85565b611124565b6102f261046436600461500b565b6111f1565b6102f2610477366004614ebb565b611263565b34801561048857600080fd5b5060405160088152602001610282565b3480156104a457600080fd5b5061012d5460ff16610276565b3480156104bd57600080fd5b506101695460ff16610276565b3480156104d657600080fd5b50610168546102f2565b3480156104ec57600080fd5b506102a06112d8565b34801561050157600080fd5b506102a06105103660046150bb565b6112f9565b34801561052157600080fd5b506105356105303660046150fd565b61134a565b6040516001600160a01b039091168152602001610282565b34801561055957600080fd5b50610276610568366004614e8b565b611369565b34801561057957600080fd5b506000805160206157298339815191526102f2565b34801561059a57600080fd5b506105356105a9366004614e2a565b6001600160a01b03908116600090815261016760205260409020541690565b3480156105d457600080fd5b506102f2600081565b3480156105e957600080fd5b506102a06105f8366004614e2a565b611394565b34801561060957600080fd5b506102a061061836600461511f565b6115ab565b6102f261062b366004615192565b611b2f565b34801561063c57600080fd5b506102a061064b3660046151d3565b611bae565b34801561065c57600080fd5b506102a061066b366004614f85565b611c96565b34801561067c57600080fd5b507f657d38169ed9612cb2d9de7040b7b6a1adebf7a8433a66ccb49c08554ac9b8a56102f2565b3480156106af57600080fd5b506102f26106be366004614e47565b611e40565b6102f26106d136600461500b565b611e57565b6102f26106e436600461500b565b611ec8565b3480156106f557600080fd5b506102a0610704366004614e8b565b611f2a565b34801561071557600080fd5b506103b5611f50565b6102f261072c36600461500b565b611ffb565b34801561073d57600080fd5b507fdf8c9529ea4b244b569bac557a549516f317e7b5cf82dc5e0d8b6d874930a3f56102f2565b60006001600160e01b03198216635a05180f60e01b1480610789575061078982612060565b92915050565b6000805160206156e98339815191526107a88133612095565b6107b06120bc565b50565b806107bd81612151565b6107d560008051602061572983398151915233612095565b600260fb54036108005760405162461bcd60e51b81526004016107f790615213565b60405180910390fd5b600260fb81905550816001600160a01b031663f525cb686040518163ffffffff1660e01b8152600401602060405180830381865afa158015610846573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061086a919061524a565b15610888576040516332e7879360e01b815260040160405180910390fd5b61089461016283612178565b6108b15760405163b0ce759160e01b815260040160405180910390fd5b6108bc82600061218d565b816001600160a01b0316826001600160a01b031663b1dd61b66040518163ffffffff1660e01b8152600401602060405180830381865afa158015610904573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906109289190615263565b61ffff167fa0c1e3924f995e5ba38f53b4effb6d4b3eeb84176a2951c589115140f638ac0960405160405180910390a35050600160fb55565b61097960008051602061572983398151915233612095565b6101695460ff161515811515146107b057610169805482151560ff1990911617905550565b60006109ad61012d5460ff1690565b156109ca5760405162461bcd60e51b81526004016107f790615287565b600260fb54036109ec5760405162461bcd60e51b81526004016107f790615213565b600260fb55336000610a4f84836000814260405160609290921b6001600160601b031916602083015260e01b6001600160e01b03191660348201526038810184905260580160405160208183030381529060405280519060200120905092915050565b6101605460405163158591ab60e11b8152600481018390526001600160a01b0385811660248301526044820188905292935060009290911690632b0b2356906064016060604051808303816000875af1158015610ab0573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610ad491906152fe565b90507f00000000000000000000000000000000000000000000000000000000000000006001600160a01b031681600001516001600160a01b031603610b2857610b1e8284836126c4565b9350505050610b39565b610b3382848361287e565b93505050505b600160fb55919050565b600082815260656020526040902060010154610b5f8133612a15565b610b698383612a79565b505050565b600082610b7a81612151565b82610b8481612a9b565b61012d5460ff1615610ba85760405162461bcd60e51b81526004016107f790615287565b600260fb5403610bca5760405162461bcd60e51b81526004016107f790615213565b600260fb55610bda338686612abc565b600160fb5595945050505050565b6001600160a01b0381163314610c585760405162461bcd60e51b815260206004820152602f60248201527f416363657373436f6e74726f6c3a2063616e206f6e6c792072656e6f756e636560448201526e103937b632b9903337b91039b2b63360891b60648201526084016107f7565b610c628282612cfd565b5050565b60606000610c75610162612d1f565b905060008167ffffffffffffffff811115610c9257610c926152b1565b604051908082528060200260200182016040528015610cbb578160200160208202803683370190505b50905060005b82811015610d1157610cd561016282612d29565b828281518110610ce757610ce7615342565b6001600160a01b039092166020928302919091019091015280610d098161536e565b915050610cc1565b5092915050565b6000610d2761012d5460ff1690565b15610d445760405162461bcd60e51b81526004016107f790615287565b7f657d38169ed9612cb2d9de7040b7b6a1adebf7a8433a66ccb49c08554ac9b8a5610d6f8133612095565b82610d7981612151565b600260fb5403610d9b5760405162461bcd60e51b81526004016107f790615213565b600260fb55610168546000819003610db7576000935050610ea2565b600061016855604051631c20fadd60e01b81526001600160a01b037f00000000000000000000000000000000000000000000000000000000000000001690631c20fadd90610e2d907f00000000000000000000000000000000000000000000000000000000000000009089908690600401615387565b600060405180830381600087803b158015610e4757600080fd5b505af1158015610e5b573d6000803e3d6000fd5b50506040518381526001600160a01b03881692503391507f328c9cc28e75030423307e732b07659ae452a620281f3e54e838000a7f4675389060200160405180910390a392505b5050600160fb55919050565b61012d5460ff1615610ed25760405162461bcd60e51b81526004016107f790615287565b7fdf8c9529ea4b244b569bac557a549516f317e7b5cf82dc5e0d8b6d874930a3f5610efd8133612095565b600260fb5403610f1f5760405162461bcd60e51b81526004016107f790615213565b600260fb55604080516001600160601b031933606090811b82166020808501919091526001600160e01b03194260e01b1660348501528a821b8316603885015289821b909216604c84015282018790526080820186905260a08083018690528351808403909101815260c090920190925280519101206001600160a01b038088167f00000000000000000000000000000000000000000000000000000000000000009190911603610fdf57610fd981878733600188612d35565b50610fef565b610fed818789883389612e7c565b505b60408051868152602081018690529081018490526001600160a01b03808816919089169083907f102bce4e43a6a8cf0306fde6154221c1f5460f64ba63b92b156bce998ef0db569060600160405180910390a45050600160fb555050505050565b600061105f61012d5460ff1690565b1561107c5760405162461bcd60e51b81526004016107f790615287565b600260fb540361109e5760405162461bcd60e51b81526004016107f790615213565b600260fb5561016054604051635f23b6c560e11b8152336004820152602481018490526001600160a01b039091169063be476d8a906044016020604051808303816000875af11580156110f5573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611119919061524a565b600160fb5592915050565b8061112e81612151565b61114660008051602061572983398151915233612095565b600260fb54036111685760405162461bcd60e51b81526004016107f790615213565b600260fb5561117961016283612edc565b6111965760405163b0ce759160e01b815260040160405180910390fd5b8260005b818110156111e4576111d28686838181106111b7576111b7615342565b90506020020160208101906111cc9190614e2a565b85612efe565b806111dc8161536e565b91505061119a565b5050600160fb5550505050565b600061120061012d5460ff1690565b1561121d5760405162461bcd60e51b81526004016107f790615287565b600260fb540361123f5760405162461bcd60e51b81526004016107f790615213565b600260fb556112538787878787873361306f565b600160fb55979650505050505050565b600061126d613147565b8261127781612151565b8261128181612a9b565b61012d5460ff16156112a55760405162461bcd60e51b81526004016107f790615287565b600260fb54036112c75760405162461bcd60e51b81526004016107f790615213565b600260fb55610bda3386868261316d565b6000805160206156e98339815191526112f18133612095565b6107b061322b565b60c95460009061130e9061ffff1660016153ab565b905061ffff81166008146113345760405162dc149f60e41b815260040160405180910390fd5b60c9805461ffff191661ffff8316179055505050565b60008281526097602052604081206113629083612d29565b9392505050565b60009182526065602090815260408084206001600160a01b0393909316845291905290205460ff1690565b8061139e81612151565b6113b660008051602061572983398151915233612095565b600260fb54036113d85760405162461bcd60e51b81526004016107f790615213565b600260fb819055506000826001600160a01b031663b1dd61b66040518163ffffffff1660e01b8152600401602060405180830381865afa158015611420573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906114449190615263565b90506000836001600160a01b03166354fd4d506040518163ffffffff1660e01b8152600401602060405180830381865afa158015611486573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906114aa9190615263565b905060006114b88383613285565b90506001600160a01b0381161515806114da57506114d8610162866133bd565b155b156114f85760405163119b4fd360e11b815260040160405180910390fd5b61150385600161218d565b846001600160a01b0316856001600160a01b031663b1dd61b66040518163ffffffff1660e01b8152600401602060405180830381865afa15801561154b573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061156f9190615263565b61ffff167f5ae87719d73cb0fabb219f0e4b6e0a614ed7506f8a08bdb20bebf313573151b760405160405180910390a35050600160fb55505050565b846115b581612151565b846115bf81612a9b565b846115c981612151565b61012d5460ff16156115ed5760405162461bcd60e51b81526004016107f790615287565b600260fb540361160f5760405162461bcd60e51b81526004016107f790615213565b600260fb557f00000000000000000000000000000000000000000000000000000000000000006001600160a01b03908116908916141580156116d8575060405163b5af090f60e01b81526001600160a01b0389811660048301527f0000000000000000000000000000000000000000000000000000000000000000169063b5af090f90602401602060405180830381865afa1580156116b2573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906116d691906153d1565b155b156116f657604051630b094f2760e31b815260040160405180910390fd5b60006001600160a01b037f0000000000000000000000000000000000000000000000000000000000000000163303611730575060006117d2565b604051637c36afad60e01b81526001600160a01b038a811660048301526117cf918a917f00000000000000000000000000000000000000000000000000000000000000001690637c36afad90602401602060405180830381865afa15801561179c573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906117c091906153ee565b63ffffffff16620f42406133d2565b90505b60006117e76001600160a01b038b163061349e565b604051631c20fadd60e01b81529091506001600160a01b037f00000000000000000000000000000000000000000000000000000000000000001690631c20fadd9061183a908d908c908e90600401615387565b600060405180830381600087803b15801561185457600080fd5b505af1158015611868573d6000803e3d6000fd5b50505050876001600160a01b03166323e30c8b3361188c8d6001600160a01b031690565b8c868c8c6040518763ffffffff1660e01b81526004016118b196959493929190615414565b600060405180830381600087803b1580156118cb57600080fd5b505af11580156118df573d6000803e3d6000fd5b50505050600081611902308d6001600160a01b031661349e90919063ffffffff16565b61190c9190615470565b9050611918838b615487565b8110156119385760405163b7ed78bf60e01b815260040160405180910390fd5b61194a8b6001600160a01b031661352c565b15611987576119826001600160a01b037f0000000000000000000000000000000000000000000000000000000000000000168261354e565b6119bb565b6119bb6001600160a01b038c167f000000000000000000000000000000000000000000000000000000000000000083613667565b6001600160a01b037f00000000000000000000000000000000000000000000000000000000000000008116908c1603611a645761015f54604051637c8f622d60e01b81526001600160a01b038d811660048301526024820186905260006044830152909116908190637c8f622d90606401600060405180830381600087803b158015611a4657600080fd5b505af1158015611a5a573d6000803e3d6000fd5b5050505050611ad7565b6000611a6f8c6136d2565b604051631510748b60e01b81526001600160a01b038e811660048301526024820187905291925090821690631510748b90604401600060405180830381600087803b158015611abd57600080fd5b505af1158015611ad1573d6000803e3d6000fd5b50505050505b604080518b81526020810185905233916001600160a01b038e16917f0da3485ef1bb570df7bb888887eae5aa01d81b83cd8ccc80c0ea0922a677ecef910160405180910390a35050600160fb55505050505050505050565b6000611b39613147565b83611b4381612151565b83611b4d81612151565b83611b5781612a9b565b61012d5460ff1615611b7b5760405162461bcd60e51b81526004016107f790615287565b600260fb5403611b9d5760405162461bcd60e51b81526004016107f790615213565b600260fb556112538787873361316d565b82611bb881612151565b82611bc281612151565b82611bcc81612151565b600054610100900460ff16611be75760005460ff1615611beb565b303b155b611c4e5760405162461bcd60e51b815260206004820152602e60248201527f496e697469616c697a61626c653a20636f6e747261637420697320616c72656160448201526d191e481a5b9a5d1a585b1a5e995960921b60648201526084016107f7565b600054610100900460ff16158015611c70576000805461ffff19166101011790555b611c7b87878761370e565b8015611c8d576000805461ff00191690555b50505050505050565b600260fb5403611cb85760405162461bcd60e51b81526004016107f790615213565b600260fb55611cc961016282612edc565b611ce65760405163b0ce759160e01b815260040160405180910390fd5b8160005b81811015611e34576000858583818110611d0657611d06615342565b9050602002016020810190611d1b9190614e2a565b6101615460405163772b7e9760e01b81526001600160a01b038084166004830152878116602483015292935091169063772b7e9790604401600060405180830381600087803b158015611d6d57600080fd5b505af1158015611d81573d6000803e3d6000fd5b5050506001600160a01b038083166000818152610167602052604080822080548a86166001600160a01b031982161790915590519316935083927f987eb3c2f78454541205f72f34839b434c306c9eaf4922efd7c0c3060fdb2e4c9190a3846001600160a01b0316826001600160a01b03167f95f865c2808f8b2a85eea2611db7843150ee7835ef1403f9755918a97d76933c60405160405180910390a350508080611e2c9061536e565b915050611cea565b5050600160fb55505050565b600081815260976020526040812061078990612d1f565b6000611e6661012d5460ff1690565b15611e835760405162461bcd60e51b81526004016107f790615287565b7f0000000000000000000000000000000000000000000000000000000000000000611ead81613758565b611ebc8888888888883361306f565b98975050505050505050565b6000611ed761012d5460ff1690565b15611ef45760405162461bcd60e51b81526004016107f790615287565b600260fb5403611f165760405162461bcd60e51b81526004016107f790615213565b600260fb5561125387878787878733613781565b600082815260656020526040902060010154611f468133612a15565b610b698383612cfd565b60606000611f5f610165612d1f565b905060008167ffffffffffffffff811115611f7c57611f7c6152b1565b604051908082528060200260200182016040528015611fa5578160200160208202803683370190505b50905060005b82811015610d1157611fbf61016582612d29565b828281518110611fd157611fd1615342565b6001600160a01b039092166020928302919091019091015280611ff38161536e565b915050611fab565b600061200a61012d5460ff1690565b156120275760405162461bcd60e51b81526004016107f790615287565b7f000000000000000000000000000000000000000000000000000000000000000061205181613758565b611ebc88888888888833613781565b60006001600160e01b03198216637965db0b60e01b148061078957506301ffc9a760e01b6001600160e01b0319831614610789565b61209f8282611369565b610c6257604051634ca8886760e01b815260040160405180910390fd5b61012d5460ff166121065760405162461bcd60e51b815260206004820152601460248201527314185d5cd8589b194e881b9bdd081c185d5cd95960621b60448201526064016107f7565b61012d805460ff191690557f5db9ee0a495bf2e6ff9c91a7834c1ba4fdd244a5e8aa4e537bd38aeae4b073aa335b6040516001600160a01b03909116815260200160405180910390a1565b6001600160a01b0381166107b05760405163e6c4247b60e01b815260040160405180910390fd5b6000611362836001600160a01b03841661384c565b8181156124415761015f54604051632f2ff15d60e01b81527f4cbb5676e6e25e1a3b8a36de10472bcac96f97bd8dd87af6f330881b84739eb860048201526001600160a01b03838116602483015290911690632f2ff15d90604401600060405180830381600087803b15801561220257600080fd5b505af1158015612216573d6000803e3d6000fd5b505061015f54604051632f2ff15d60e01b81527f0d0d17bf5382c809d9a3899d6a94e57386dfb2036f0401b94ef3cf6c1a9ab73f60048201526001600160a01b0385811660248301529091169250632f2ff15d9150604401600060405180830381600087803b15801561228857600080fd5b505af115801561229c573d6000803e3d6000fd5b505061015f54604051632f2ff15d60e01b81527fca51b9188e78415f30da725e0d94567b4d65bc6777d4e5d573191e9f55b88a3260048201526001600160a01b0385811660248301529091169250632f2ff15d9150604401600060405180830381600087803b15801561230e57600080fd5b505af1158015612322573d6000803e3d6000fd5b5050604051632f2ff15d60e01b815260008051602061570983398151915260048201526001600160a01b0384811660248301527f0000000000000000000000000000000000000000000000000000000000000000169250632f2ff15d9150604401600060405180830381600087803b15801561239d57600080fd5b505af11580156123b1573d6000803e3d6000fd5b5050604051632f2ff15d60e01b815260008051602061570983398151915260048201526001600160a01b0384811660248301527f0000000000000000000000000000000000000000000000000000000000000000169250632f2ff15d91506044015b600060405180830381600087803b15801561242d57600080fd5b505af1158015611c8d573d6000803e3d6000fd5b61015f5460405163d547741f60e01b81527f4cbb5676e6e25e1a3b8a36de10472bcac96f97bd8dd87af6f330881b84739eb860048201526001600160a01b0383811660248301529091169063d547741f90604401600060405180830381600087803b1580156124af57600080fd5b505af11580156124c3573d6000803e3d6000fd5b505061015f5460405163d547741f60e01b81527f0d0d17bf5382c809d9a3899d6a94e57386dfb2036f0401b94ef3cf6c1a9ab73f60048201526001600160a01b038581166024830152909116925063d547741f9150604401600060405180830381600087803b15801561253557600080fd5b505af1158015612549573d6000803e3d6000fd5b505061015f5460405163d547741f60e01b81527fca51b9188e78415f30da725e0d94567b4d65bc6777d4e5d573191e9f55b88a3260048201526001600160a01b038581166024830152909116925063d547741f9150604401600060405180830381600087803b1580156125bb57600080fd5b505af11580156125cf573d6000803e3d6000fd5b505060405163d547741f60e01b815260008051602061570983398151915260048201526001600160a01b0384811660248301527f000000000000000000000000000000000000000000000000000000000000000016925063d547741f9150604401600060405180830381600087803b15801561264a57600080fd5b505af115801561265e573d6000803e3d6000fd5b505060405163d547741f60e01b815260008051602061570983398151915260048201526001600160a01b0384811660248301527f000000000000000000000000000000000000000000000000000000000000000016925063d547741f9150604401612413565b61015f5481516101605460208401516040516323b872dd60e01b81526000946001600160a01b03908116948116936323b872dd9361270b9391909216918691600401615387565b6020604051808303816000875af115801561272a573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061274e91906153d1565b5060208301516040516323b872dd60e01b81526001600160a01b037f000000000000000000000000000000000000000000000000000000000000000016916323b872dd916127a3918891869190600401615387565b6020604051808303816000875af11580156127c2573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906127e691906153d1565b50602083015160408085015190516372026c6760e11b8152600481018890526001600160a01b038781166024830152604482019390935260648101919091529082169063e404d8ce906084016020604051808303816000875af1158015612851573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190612875919061524a565b95945050505050565b60008082600001516001600160a01b031663f4325d676040518163ffffffff1660e01b8152600401602060405180830381865afa1580156128c3573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906128e7919061549f565b905060006128f4826136d2565b84516101605460208701516040516323b872dd60e01b81529394506001600160a01b03928316936323b872dd936129319316918691600401615387565b6020604051808303816000875af1158015612950573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061297491906153d1565b50602084015160408086015190516356aca36f60e01b8152600481018990526001600160a01b038881166024830152858116604483015260648201939093526084810191909152908216906356aca36f9060a4016020604051808303816000875af11580156129e7573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190612a0b919061524a565b9695505050505050565b612a1f8282611369565b610c6257612a37816001600160a01b0316601461393f565b612a4283602061393f565b604051602001612a539291906154e8565b60408051601f198184030181529082905262461bcd60e51b82526107f79160040161555d565b612a838282613adb565b6000828152609760205260409020610b6990826133bd565b806000036107b057604051637c946ed760e01b815260040160405180910390fd5b60007f00000000000000000000000000000000000000000000000000000000000000006001600160a01b0316836001600160a01b031614612c04576000836001600160a01b031663f4325d676040518163ffffffff1660e01b8152600401602060405180830381865afa158015612b37573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190612b5b919061549f565b9050836001600160a01b0316612b70826136d2565b604051635768adcf60e01b81526001600160a01b0384811660048301529190911690635768adcf90602401602060405180830381865afa158015612bb8573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190612bdc919061549f565b6001600160a01b031614612c025760405162820f3560e61b815260040160405180910390fd5b505b610160546040516323b872dd60e01b81526001600160a01b03808616926323b872dd92612c3992899216908790600401615387565b6020604051808303816000875af1158015612c58573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190612c7c91906153d1565b50610160546040516313e7e7d160e11b81526001600160a01b03909116906327cfcfa290612cb290879087908790600401615387565b6020604051808303816000875af1158015612cd1573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190612cf5919061524a565b949350505050565b612d078282613b61565b6000828152609760205260409020610b699082612178565b6000610789825490565b60006113628383613bc8565b60003415612d56576040516342f7487960e11b815260040160405180910390fd5b61015f546040516323b872dd60e01b81526001600160a01b03918216917f000000000000000000000000000000000000000000000000000000000000000016906323b872dd90612dae90889085908b90600401615387565b6020604051808303816000875af1158015612dcd573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190612df191906153d1565b5060405163e06bf20d60e01b8152600481018990526001600160a01b0388811660248301526044820188905285151560648301526084820185905282169063e06bf20d9060a4015b6020604051808303816000875af1158015612e58573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611ebc919061524a565b6000612e89858484613bf2565b6000612e94866136d2565b604051639f5c734b60e01b8152600481018a90526001600160a01b03898116602483015288811660448301526064820188905291925090821690639f5c734b90608401612e39565b6001600160a01b03811660009081526001830160205260408120541515611362565b612f0782612151565b6001600160a01b037f0000000000000000000000000000000000000000000000000000000000000000811690831603612f535760405163c1ab6dc160e01b815260040160405180910390fd5b612f5f610165836133bd565b612f7c5760405163119b4fd360e11b815260040160405180910390fd5b604051634824fce960e11b81526001600160a01b038381166004830152821690639049f9d290602401600060405180830381600087803b158015612fbf57600080fd5b505af1158015612fd3573d6000803e3d6000fd5b505050506001600160a01b038281166000818152610167602052604080822080546001600160a01b0319169486169485179055517f4f2ce4e40f623ca765fc0167a25cb7842ceaafb8d82d3dec26ca0d0e0d2d48969190a3806001600160a01b0316826001600160a01b03167f95f865c2808f8b2a85eea2611db7843150ee7835ef1403f9755918a97d76933c60405160405180910390a35050565b600061307e8888888888613cd6565b60007f00000000000000000000000000000000000000000000000000000000000000006001600160a01b0316836001600160a01b0316036130bd575060015b61313a60405180604001604052808b6001600160a01b031681526020018a6001600160a01b031681525060405180608001604052808a81526020018981526020016000151581526020018415158152506040518060400160405280876001600160a01b03168152602001886001600160a01b031681525088613d5a565b9998505050505050505050565b6101695460ff1661316b576040516303a5be3f60e31b815260040160405180910390fd5b565b604080516001600160601b0319606084811b82166020808501919091526001600160e01b03194260e01b16603485015288821b8316603885015287821b909216604c84015280830186905283518084039091018152608090920190925280519101206000907f00000000000000000000000000000000000000000000000000000000000000006001600160a01b039081169086160361321d5761321581878686600080612d35565b915050612cf5565b612a0b818787878789612e7c565b61012d5460ff161561324f5760405162461bcd60e51b81526004016107f790615287565b61012d805460ff191660011790557f62e78cea01bee320cd4e420270b5ea74000d11b0c9f74754ebdbfc544b05a2586121343390565b600080613293610162612d1f565b905060005b818110156133b25760006132ae61016283612d29565b90508561ffff16816001600160a01b031663b1dd61b66040518163ffffffff1660e01b8152600401602060405180830381865afa1580156132f3573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906133179190615263565b61ffff1614801561339057508461ffff16816001600160a01b03166354fd4d506040518163ffffffff1660e01b8152600401602060405180830381865afa158015613366573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061338a9190615263565b61ffff16145b1561339f579250610789915050565b50806133aa8161536e565b915050613298565b506000949350505050565b6000611362836001600160a01b03841661415e565b6000806133df85856141ad565b8051909150600003613403578281602001516133fb91906155a6565b915050611362565b8051831161342457604051631a93c68960e11b815260040160405180910390fd5b6000613431868686614234565b9050600061343f838361424f565b80519091506000036134655784816020015161345b91906155a6565b9350505050611362565b600085810386169061347783836142d4565b9050600061348d613488848a6155a6565b61430b565b919091029998505050505050505050565b60006134a98361352c565b156134bf57506001600160a01b03811631610789565b826040516370a0823160e01b81526001600160a01b03848116600483015291909116906370a0823190602401602060405180830381865afa158015613508573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611362919061524a565b6001600160a01b031673eeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeee1490565b8047101561359e5760405162461bcd60e51b815260206004820152601d60248201527f416464726573733a20696e73756666696369656e742062616c616e636500000060448201526064016107f7565b6000826001600160a01b03168260405160006040518083038185875af1925050503d80600081146135eb576040519150601f19603f3d011682016040523d82523d6000602084013e6135f0565b606091505b5050905080610b695760405162461bcd60e51b815260206004820152603a60248201527f416464726573733a20756e61626c6520746f2073656e642076616c75652c207260448201527f6563697069656e74206d6179206861766520726576657274656400000000000060648201526084016107f7565b8060000361367457505050565b61367d8361352c565b156136be576040516001600160a01b0383169082156108fc029083906000818181858888f193505050501580156136b8573d6000803e3d6000fd5b50505050565b610b696001600160a01b0384168383614336565b6001600160a01b0380821660009081526101676020526040812054909116806107895760405163c1ab6dc160e01b815260040160405180910390fd5b600054610100900460ff166137355760405162461bcd60e51b81526004016107f7906155c8565b61373d614399565b6137456143d0565b61374d6143ff565b610b6983838361442e565b336001600160a01b038216146107b057604051634ca8886760e01b815260040160405180910390fd5b60006137908888888888613cd6565b60007f00000000000000000000000000000000000000000000000000000000000000006001600160a01b0316836001600160a01b0316036137cf575060015b61313a60405180604001604052808b6001600160a01b031681526020018a6001600160a01b031681525060405180608001604052808a81526020018981526020016001151581526020018415158152506040518060400160405280876001600160a01b03168152602001886001600160a01b031681525088613d5a565b60008181526001830160205260408120548015613935576000613870600183615470565b855490915060009061388490600190615470565b90508181146138e95760008660000182815481106138a4576138a4615342565b90600052602060002001549050808760000184815481106138c7576138c7615342565b6000918252602080832090910192909255918252600188019052604090208390555b85548690806138fa576138fa615613565b600190038181906000526020600020016000905590558560010160008681526020019081526020016000206000905560019350505050610789565b6000915050610789565b6060600061394e836002615629565b613959906002615487565b67ffffffffffffffff811115613971576139716152b1565b6040519080825280601f01601f19166020018201604052801561399b576020820181803683370190505b509050600360fc1b816000815181106139b6576139b6615342565b60200101906001600160f81b031916908160001a905350600f60fb1b816001815181106139e5576139e5615342565b60200101906001600160f81b031916908160001a9053506000613a09846002615629565b613a14906001615487565b90505b6001811115613a8c576f181899199a1a9b1b9c1cb0b131b232b360811b85600f1660108110613a4857613a48615342565b1a60f81b828281518110613a5e57613a5e615342565b60200101906001600160f81b031916908160001a90535060049490941c93613a8581615648565b9050613a17565b5083156113625760405162461bcd60e51b815260206004820181905260248201527f537472696e67733a20686578206c656e67746820696e73756666696369656e7460448201526064016107f7565b613ae58282611369565b610c625760008281526065602090815260408083206001600160a01b03851684529091529020805460ff19166001179055613b1d3390565b6001600160a01b0316816001600160a01b0316837f2f8788117e7eff1d82e926ec794901d17c78024a50270940304540a733656f0d60405160405180910390a45050565b613b6b8282611369565b15610c625760008281526065602090815260408083206001600160a01b0385168085529252808320805460ff1916905551339285917ff6391f5c32d9c69d2a47ea670b442974b53935d1edc7fd64eb21e047a839171b9190a45050565b6000826000018281548110613bdf57613bdf615342565b9060005260206000200154905092915050565b613c04836001600160a01b031661352c565b15613c825780341015613c2a576040516342f7487960e11b815260040160405180910390fd5b613c5d6001600160a01b037f0000000000000000000000000000000000000000000000000000000000000000168261354e565b80341115610b6957610b69613c728234615470565b6001600160a01b0384169061354e565b3415613ca1576040516342f7487960e11b815260040160405180910390fd5b610b696001600160a01b038416837f00000000000000000000000000000000000000000000000000000000000000008461453e565b613cdf85612151565b613ce884612151565b836001600160a01b0316856001600160a01b031603613d1a5760405163c1ab6dc160e01b815260040160405180910390fd5b613d2383612a9b565b613d2c82612a9b565b4263ffffffff16811015613d5357604051631ab7da6b60e01b815260040160405180910390fd5b5050505050565b60208201516000906001600160a01b0316613d805782516001600160a01b031660208401525b825185516020808801518751888301516040808b0151858b015182516001600160601b031960609a8b1b8116828a01526001600160e01b03194260e01b166034830152988a1b8916603882015295891b8816604c87015288860194909452608080860193909352151560f81b60a085015260a1840189905291861b90941660c1830152805160b581840301815260d5830180835281519185019190912061015584018352600080835260f5850181905261011585018190526101359094018490528251958601835283865293850183905290840182905293830152919087516000907f00000000000000000000000000000000000000000000000000000000000000006001600160a01b03908116911603613f2a57613ea6848a6020015160018b614568565b91508192508160600151905088602001516001600160a01b031689600001516001600160a01b0316857f5c02c2bb2d1d082317eb23916ca27b3e7c294398b60061a2ad54f1c3c018c318856000015186602001518760000151886040015160008f60000151604051613f1d9695949392919061565f565b60405180910390a4614089565b60208901516001600160a01b037f00000000000000000000000000000000000000000000000000000000000000008116911603613fec57613f72848a6000015160008b614568565b91508192508160600151905088602001516001600160a01b031689600001516001600160a01b0316857f5c02c2bb2d1d082317eb23916ca27b3e7c294398b60061a2ad54f1c3c018c318856000015186602001518760200151886040015189604001518f60000151604051613f1d9695949392919061565f565b613ff7848a8a61488a565b6060808201519083015192955090935061401091615487565b905088602001516001600160a01b031689600001516001600160a01b0316857f5c02c2bb2d1d082317eb23916ca27b3e7c294398b60061a2ad54f1c3c018c31886600001518660200151886020015188604001518a604001518f600001516040516140809695949392919061565f565b60405180910390a45b88518751845161409a929190613bf2565b6020808a01518882015191840151604051631c20fadd60e01b81526001600160a01b037f00000000000000000000000000000000000000000000000000000000000000001693631c20fadd936140f4939092600401615387565b600060405180830381600087803b15801561410e57600080fd5b505af1158015614122573d6000803e3d6000fd5b505050508061016860008282546141399190615487565b9091555050604088015161414e57825161313a565b5060200151979650505050505050565b60008181526001830160205260408120546141a557508154600181810184556000848152602080822090930184905584548482528286019093526040902091909155610789565b506000610789565b604080518082019091526000808252602082015260006141cd8484614a2d565b905083830280821061420257604051806040016040528082846141f09190615470565b81526020018281525092505050610789565b604051806040016040528060016142198585900390565b6142239190615470565b815260200191909152949350505050565b6000818061424457614244615590565b838509949350505050565b60408051808201909152600080825260208201528183602001511061429c576040518060400160405280846000015181526020018385602001516142939190615470565b90529050610789565b6040518060400160405280600185600001516142b89190615470565b81526020016142cb856020015185900390565b90529392505050565b6000806142ec6142e6848084036155a6565b60010190565b90508284602001516142fe91906155a6565b8451820217949350505050565b60006001815b6008811015610d1157838202600203820291508061432e8161536e565b915050614311565b6040516001600160a01b038316602482015260448101829052610b6990849063a9059cbb60e01b906064015b60408051601f198184030181529190526020810180516001600160e01b03166001600160e01b031990931692909217909152614a3c565b600054610100900460ff166143c05760405162461bcd60e51b81526004016107f7906155c8565b6143c8614b0e565b61316b614b35565b600054610100900460ff166143f75760405162461bcd60e51b81526004016107f7906155c8565b61316b614b9a565b600054610100900460ff166144265760405162461bcd60e51b81526004016107f7906155c8565b61316b614bc8565b600054610100900460ff166144555760405162461bcd60e51b81526004016107f7906155c8565b61015f80546001600160a01b038086166001600160a01b03199283161790925561016080548584169083161790556101618054928416929091169190911790556144cd7fdf8c9529ea4b244b569bac557a549516f317e7b5cf82dc5e0d8b6d874930a3f5600080516020615729833981519152614bfc565b6144f36000805160206156e9833981519152600080516020615729833981519152614bfc565b61452b7f657d38169ed9612cb2d9de7040b7b6a1adebf7a8433a66ccb49c08554ac9b8a5600080516020615729833981519152614bfc565b5050610169805460ff1916600117905550565b80158061454f575061454f8461352c565b6136b8576136b86001600160a01b038516848484614c47565b6145936040518060800160405280600081526020016000815260200160008152602001600081525090565b6000836145e6576040518060400160405280866001600160a01b031681526020017f00000000000000000000000000000000000000000000000000000000000000006001600160a01b031681525061462e565b60405180604001604052807f00000000000000000000000000000000000000000000000000000000000000006001600160a01b03168152602001866001600160a01b03168152505b9050600083604001516146ec57614644866136d2565b825160208085015187519188015160608901516040516337cb0ead60e21b8152600481018e90526001600160a01b03958616602482015292851660448401526064830193909352608482015290151560a482015291169063df2c3ab49060c4016060604051808303816000875af11580156146c3573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906146e79190615690565b614798565b6146f5866136d2565b8251602080850151875191880151606089015160405163d1aebfc760e01b8152600481018e90526001600160a01b03958616602482015292851660448401526064830193909352608482015290151560a482015291169063d1aebfc79060c4016060604051808303816000875af1158015614774573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906147989190615690565b9050846148315761015f54604082015160208301516001600160a01b0390921691637c8f622d9189916147cb9190615470565b6040516001600160e01b031960e085901b1681526001600160a01b039092166004830152602482015260016044820152606401600060405180830381600087803b15801561481857600080fd5b505af115801561482c573d6000803e3d6000fd5b505050505b6040518060800160405280856040015161484c57825161484f565b85515b81526020018560400151614864578551614867565b82515b815260200182602001518152602001826040015181525092505050949350505050565b6148b56040518060800160405280600081526020016000815260200160008152602001600081525090565b6148e06040518060800160405280600081526020016000815260200160008152602001600081525090565b82604001511561498a57600083600001519050600084602001519050600061493988886000015160006040518060800160405280888152602001600181526020016001151581526020018b606001511515815250614568565b9050600061497b89896020015160016040518060800160405280876020015181526020018881526020016001151581526020018c606001511515815250614568565b919550909350614a2592505050565b60008360000151905060008460200151905060006149da8888602001516001604051806080016040528088815260200160001981526020016000151581526020018b606001511515815250614568565b90506000614a1c89896000015160006040518060800160405280876000015181526020018881526020016000151581526020018c606001511515815250614568565b95509093505050505b935093915050565b60006000198284099392505050565b6000614a91826040518060400160405280602081526020017f5361666545524332303a206c6f772d6c6576656c2063616c6c206661696c6564815250856001600160a01b0316614c689092919063ffffffff16565b805190915015610b695780806020019051810190614aaf91906153d1565b610b695760405162461bcd60e51b815260206004820152602a60248201527f5361666545524332303a204552433230206f7065726174696f6e20646964206e6044820152691bdd081cdd58d8d9595960b21b60648201526084016107f7565b600054610100900460ff1661316b5760405162461bcd60e51b81526004016107f7906155c8565b600054610100900460ff16614b5c5760405162461bcd60e51b81526004016107f7906155c8565b60c9805461ffff19166001179055614b8260008051602061572983398151915280614bfc565b61316b60008051602061572983398151915233614c77565b600054610100900460ff16614bc15760405162461bcd60e51b81526004016107f7906155c8565b600160fb55565b600054610100900460ff16614bef5760405162461bcd60e51b81526004016107f7906155c8565b61012d805460ff19169055565b600082815260656020526040808220600101805490849055905190918391839186917fbd79b86ffe0ab8e8776151514217cd7cacd52c909f66475c3af44e129f0b00ff9190a4505050565b6136b8846323b872dd60e01b85858560405160240161436293929190615387565b6060612cf58484600085614c81565b610c628282612a79565b606082471015614ce25760405162461bcd60e51b815260206004820152602660248201527f416464726573733a20696e73756666696369656e742062616c616e636520666f6044820152651c8818d85b1b60d21b60648201526084016107f7565b6001600160a01b0385163b614d395760405162461bcd60e51b815260206004820152601d60248201527f416464726573733a2063616c6c20746f206e6f6e2d636f6e747261637400000060448201526064016107f7565b600080866001600160a01b03168587604051614d5591906156cc565b60006040518083038185875af1925050503d8060008114614d92576040519150601f19603f3d011682016040523d82523d6000602084013e614d97565b606091505b5091509150614da7828286614db2565b979650505050505050565b60608315614dc1575081611362565b825115614dd15782518084602001fd5b8160405162461bcd60e51b81526004016107f7919061555d565b600060208284031215614dfd57600080fd5b81356001600160e01b03198116811461136257600080fd5b6001600160a01b03811681146107b057600080fd5b600060208284031215614e3c57600080fd5b813561136281614e15565b600060208284031215614e5957600080fd5b5035919050565b80151581146107b057600080fd5b600060208284031215614e8057600080fd5b813561136281614e60565b60008060408385031215614e9e57600080fd5b823591506020830135614eb081614e15565b809150509250929050565b60008060408385031215614ece57600080fd5b8235614ed981614e15565b946020939093013593505050565b6020808252825182820181905260009190848201906040850190845b81811015614f285783516001600160a01b031683529284019291840191600101614f03565b50909695505050505050565b600080600080600060a08688031215614f4c57600080fd5b8535614f5781614e15565b94506020860135614f6781614e15565b94979496505050506040830135926060810135926080909101359150565b600080600060408486031215614f9a57600080fd5b833567ffffffffffffffff80821115614fb257600080fd5b818601915086601f830112614fc657600080fd5b813581811115614fd557600080fd5b8760208260051b8501011115614fea57600080fd5b6020928301955093505084013561500081614e15565b809150509250925092565b60008060008060008060c0878903121561502457600080fd5b863561502f81614e15565b9550602087013561503f81614e15565b945060408701359350606087013592506080870135915060a087013561506481614e15565b809150509295509295509295565b60008083601f84011261508457600080fd5b50813567ffffffffffffffff81111561509c57600080fd5b6020830191508360208285010111156150b457600080fd5b9250929050565b600080602083850312156150ce57600080fd5b823567ffffffffffffffff8111156150e557600080fd5b6150f185828601615072565b90969095509350505050565b6000806040838503121561511057600080fd5b50508035926020909101359150565b60008060008060006080868803121561513757600080fd5b853561514281614e15565b945060208601359350604086013561515981614e15565b9250606086013567ffffffffffffffff81111561517557600080fd5b61518188828901615072565b969995985093965092949392505050565b6000806000606084860312156151a757600080fd5b83356151b281614e15565b925060208401356151c281614e15565b929592945050506040919091013590565b6000806000606084860312156151e857600080fd5b83356151f381614e15565b9250602084013561520381614e15565b9150604084013561500081614e15565b6020808252601f908201527f5265656e7472616e637947756172643a207265656e7472616e742063616c6c00604082015260600190565b60006020828403121561525c57600080fd5b5051919050565b60006020828403121561527557600080fd5b815161ffff8116811461136257600080fd5b60208082526010908201526f14185d5cd8589b194e881c185d5cd95960821b604082015260600190565b634e487b7160e01b600052604160045260246000fd5b6040516060810167ffffffffffffffff811182821017156152f857634e487b7160e01b600052604160045260246000fd5b60405290565b60006060828403121561531057600080fd5b6153186152c7565b825161532381614e15565b8152602083810151908201526040928301519281019290925250919050565b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052601160045260246000fd5b60006001820161538057615380615358565b5060010190565b6001600160a01b039384168152919092166020820152604081019190915260600190565b600061ffff8083168185168083038211156153c8576153c8615358565b01949350505050565b6000602082840312156153e357600080fd5b815161136281614e60565b60006020828403121561540057600080fd5b815163ffffffff8116811461136257600080fd5b6001600160a01b03878116825286166020820152604081018590526060810184905260a06080820181905281018290526000828460c0840137600060c0848401015260c0601f19601f8501168301019050979650505050505050565b60008282101561548257615482615358565b500390565b6000821982111561549a5761549a615358565b500190565b6000602082840312156154b157600080fd5b815161136281614e15565b60005b838110156154d75781810151838201526020016154bf565b838111156136b85750506000910152565b7f416363657373436f6e74726f6c3a206163636f756e74200000000000000000008152600083516155208160178501602088016154bc565b7001034b99036b4b9b9b4b733903937b6329607d1b60179184019182015283516155518160288401602088016154bc565b01602801949350505050565b602081526000825180602084015261557c8160408501602087016154bc565b601f01601f19169190910160400192915050565b634e487b7160e01b600052601260045260246000fd5b6000826155c357634e487b7160e01b600052601260045260246000fd5b500490565b6020808252602b908201527f496e697469616c697a61626c653a20636f6e7472616374206973206e6f74206960408201526a6e697469616c697a696e6760a81b606082015260800190565b634e487b7160e01b600052603160045260246000fd5b600081600019048311821515161561564357615643615358565b500290565b60008161565757615657615358565b506000190190565b95865260208601949094526040850192909252606084015260808301526001600160a01b031660a082015260c00190565b6000606082840312156156a257600080fd5b6156aa6152c7565b8251815260208301516020820152604083015160408201528091505092915050565b600082516156de8184602087016154bc565b919091019291505056fef28f409b8cbe6b50c7ca45afe893f01f69626f8a4e33cb480bc1bc2d618c084589ce14d20697a788f57260f7690044299bde7ea88cfb7e43d120a0c031f1ffc12172861495e7b85edac73e3cd5fbb42dd675baadf627720e687bcfdaca025096a164736f6c634300080d000a000000000000000000000000a489c2b5b36835a327851ab917a80562b5afc2440000000000000000000000000887ae1251e180d7d453aedebee26e1639f2011300000000000000000000000083e1814ba31f7ea95d216204bb45fe75ce09b14f000000000000000000000000649765821d9f64198c905ec0b2b037a4a52bc373000000000000000000000000fd31662b3d54edde9b6bdd32c9c27c8e292cad57000000000000000000000000ab05cf7c6c3a288cd36326e4f7b8600e7268e34400000000000000000000000041eeba3355d7d6ff628b7982f3f9d055c39488cb
Deployed Bytecode
0x60806040526004361061024a5760003560e01c80637bf6a42511610139578063b3db428b116100b6578063d0d145811161007a578063d0d14581146106c3578063d3a4acd3146106d6578063d547741f146106e9578063d6efd7c314610709578063d895feee1461071e578063e6aac07e1461073157600080fd5b8063b3db428b1461061d578063c0c53b8b14610630578063c109ba1314610650578063c844748714610670578063ca15c873146106a357600080fd5b806393867fb5116100fd57806393867fb51461056d5780639bca0e701461058e578063a217fddf146105c8578063a8bf9046146105dd578063adf51de1146105fd57600080fd5b80637bf6a425146104ca5780638456cb59146104e05780638cd2403d146104f55780639010d07c1461051557806391d148541461054d57600080fd5b80633cd11924116101c757806345d6602c1161018b57806345d6602c1461045657806347e7ef241461046957806354fd4d501461047c5780635c975abb1461049857806371f43f9a146104b157600080fd5b80633cd11924146103c25780633d1c24e7146103e25780633efcfda4146103f557806341f435b314610415578063426599641461043657600080fd5b80632e1a7d4d1161020e5780632e1a7d4d146103205780632f2ff15d14610340578063357a03331461036057806336568abe1461038057806339fadf98146103a057600080fd5b806301ffc9a714610256578063046f7da21461028b578063230df83a146102a2578063248a9ca3146102c257806326e6b6971461030057600080fd5b3661025157005b600080fd5b34801561026257600080fd5b50610276610271366004614deb565b610764565b60405190151581526020015b60405180910390f35b34801561029757600080fd5b506102a061078f565b005b3480156102ae57600080fd5b506102a06102bd366004614e2a565b6107b3565b3480156102ce57600080fd5b506102f26102dd366004614e47565b60009081526065602052604090206001015490565b604051908152602001610282565b34801561030c57600080fd5b506102a061031b366004614e6e565b610961565b34801561032c57600080fd5b506102f261033b366004614e47565b61099e565b34801561034c57600080fd5b506102a061035b366004614e8b565b610b43565b34801561036c57600080fd5b506102f261037b366004614ebb565b610b6e565b34801561038c57600080fd5b506102a061039b366004614e8b565b610be8565b3480156103ac57600080fd5b506103b5610c66565b6040516102829190614ee7565b3480156103ce57600080fd5b506102f26103dd366004614e2a565b610d18565b6102a06103f0366004614f34565b610eae565b34801561040157600080fd5b506102f2610410366004614e47565b611050565b34801561042157600080fd5b506000805160206156e98339815191526102f2565b34801561044257600080fd5b506102a0610451366004614f85565b611124565b6102f261046436600461500b565b6111f1565b6102f2610477366004614ebb565b611263565b34801561048857600080fd5b5060405160088152602001610282565b3480156104a457600080fd5b5061012d5460ff16610276565b3480156104bd57600080fd5b506101695460ff16610276565b3480156104d657600080fd5b50610168546102f2565b3480156104ec57600080fd5b506102a06112d8565b34801561050157600080fd5b506102a06105103660046150bb565b6112f9565b34801561052157600080fd5b506105356105303660046150fd565b61134a565b6040516001600160a01b039091168152602001610282565b34801561055957600080fd5b50610276610568366004614e8b565b611369565b34801561057957600080fd5b506000805160206157298339815191526102f2565b34801561059a57600080fd5b506105356105a9366004614e2a565b6001600160a01b03908116600090815261016760205260409020541690565b3480156105d457600080fd5b506102f2600081565b3480156105e957600080fd5b506102a06105f8366004614e2a565b611394565b34801561060957600080fd5b506102a061061836600461511f565b6115ab565b6102f261062b366004615192565b611b2f565b34801561063c57600080fd5b506102a061064b3660046151d3565b611bae565b34801561065c57600080fd5b506102a061066b366004614f85565b611c96565b34801561067c57600080fd5b507f657d38169ed9612cb2d9de7040b7b6a1adebf7a8433a66ccb49c08554ac9b8a56102f2565b3480156106af57600080fd5b506102f26106be366004614e47565b611e40565b6102f26106d136600461500b565b611e57565b6102f26106e436600461500b565b611ec8565b3480156106f557600080fd5b506102a0610704366004614e8b565b611f2a565b34801561071557600080fd5b506103b5611f50565b6102f261072c36600461500b565b611ffb565b34801561073d57600080fd5b507fdf8c9529ea4b244b569bac557a549516f317e7b5cf82dc5e0d8b6d874930a3f56102f2565b60006001600160e01b03198216635a05180f60e01b1480610789575061078982612060565b92915050565b6000805160206156e98339815191526107a88133612095565b6107b06120bc565b50565b806107bd81612151565b6107d560008051602061572983398151915233612095565b600260fb54036108005760405162461bcd60e51b81526004016107f790615213565b60405180910390fd5b600260fb81905550816001600160a01b031663f525cb686040518163ffffffff1660e01b8152600401602060405180830381865afa158015610846573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061086a919061524a565b15610888576040516332e7879360e01b815260040160405180910390fd5b61089461016283612178565b6108b15760405163b0ce759160e01b815260040160405180910390fd5b6108bc82600061218d565b816001600160a01b0316826001600160a01b031663b1dd61b66040518163ffffffff1660e01b8152600401602060405180830381865afa158015610904573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906109289190615263565b61ffff167fa0c1e3924f995e5ba38f53b4effb6d4b3eeb84176a2951c589115140f638ac0960405160405180910390a35050600160fb55565b61097960008051602061572983398151915233612095565b6101695460ff161515811515146107b057610169805482151560ff1990911617905550565b60006109ad61012d5460ff1690565b156109ca5760405162461bcd60e51b81526004016107f790615287565b600260fb54036109ec5760405162461bcd60e51b81526004016107f790615213565b600260fb55336000610a4f84836000814260405160609290921b6001600160601b031916602083015260e01b6001600160e01b03191660348201526038810184905260580160405160208183030381529060405280519060200120905092915050565b6101605460405163158591ab60e11b8152600481018390526001600160a01b0385811660248301526044820188905292935060009290911690632b0b2356906064016060604051808303816000875af1158015610ab0573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610ad491906152fe565b90507f000000000000000000000000ab05cf7c6c3a288cd36326e4f7b8600e7268e3446001600160a01b031681600001516001600160a01b031603610b2857610b1e8284836126c4565b9350505050610b39565b610b3382848361287e565b93505050505b600160fb55919050565b600082815260656020526040902060010154610b5f8133612a15565b610b698383612a79565b505050565b600082610b7a81612151565b82610b8481612a9b565b61012d5460ff1615610ba85760405162461bcd60e51b81526004016107f790615287565b600260fb5403610bca5760405162461bcd60e51b81526004016107f790615213565b600260fb55610bda338686612abc565b600160fb5595945050505050565b6001600160a01b0381163314610c585760405162461bcd60e51b815260206004820152602f60248201527f416363657373436f6e74726f6c3a2063616e206f6e6c792072656e6f756e636560448201526e103937b632b9903337b91039b2b63360891b60648201526084016107f7565b610c628282612cfd565b5050565b60606000610c75610162612d1f565b905060008167ffffffffffffffff811115610c9257610c926152b1565b604051908082528060200260200182016040528015610cbb578160200160208202803683370190505b50905060005b82811015610d1157610cd561016282612d29565b828281518110610ce757610ce7615342565b6001600160a01b039092166020928302919091019091015280610d098161536e565b915050610cc1565b5092915050565b6000610d2761012d5460ff1690565b15610d445760405162461bcd60e51b81526004016107f790615287565b7f657d38169ed9612cb2d9de7040b7b6a1adebf7a8433a66ccb49c08554ac9b8a5610d6f8133612095565b82610d7981612151565b600260fb5403610d9b5760405162461bcd60e51b81526004016107f790615213565b600260fb55610168546000819003610db7576000935050610ea2565b600061016855604051631c20fadd60e01b81526001600160a01b037f000000000000000000000000649765821d9f64198c905ec0b2b037a4a52bc3731690631c20fadd90610e2d907f0000000000000000000000001f573d6fb3f13d689ff844b4ce37794d79a7ff1c9089908690600401615387565b600060405180830381600087803b158015610e4757600080fd5b505af1158015610e5b573d6000803e3d6000fd5b50506040518381526001600160a01b03881692503391507f328c9cc28e75030423307e732b07659ae452a620281f3e54e838000a7f4675389060200160405180910390a392505b5050600160fb55919050565b61012d5460ff1615610ed25760405162461bcd60e51b81526004016107f790615287565b7fdf8c9529ea4b244b569bac557a549516f317e7b5cf82dc5e0d8b6d874930a3f5610efd8133612095565b600260fb5403610f1f5760405162461bcd60e51b81526004016107f790615213565b600260fb55604080516001600160601b031933606090811b82166020808501919091526001600160e01b03194260e01b1660348501528a821b8316603885015289821b909216604c84015282018790526080820186905260a08083018690528351808403909101815260c090920190925280519101206001600160a01b038088167f0000000000000000000000001f573d6fb3f13d689ff844b4ce37794d79a7ff1c9190911603610fdf57610fd981878733600188612d35565b50610fef565b610fed818789883389612e7c565b505b60408051868152602081018690529081018490526001600160a01b03808816919089169083907f102bce4e43a6a8cf0306fde6154221c1f5460f64ba63b92b156bce998ef0db569060600160405180910390a45050600160fb555050505050565b600061105f61012d5460ff1690565b1561107c5760405162461bcd60e51b81526004016107f790615287565b600260fb540361109e5760405162461bcd60e51b81526004016107f790615213565b600260fb5561016054604051635f23b6c560e11b8152336004820152602481018490526001600160a01b039091169063be476d8a906044016020604051808303816000875af11580156110f5573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611119919061524a565b600160fb5592915050565b8061112e81612151565b61114660008051602061572983398151915233612095565b600260fb54036111685760405162461bcd60e51b81526004016107f790615213565b600260fb5561117961016283612edc565b6111965760405163b0ce759160e01b815260040160405180910390fd5b8260005b818110156111e4576111d28686838181106111b7576111b7615342565b90506020020160208101906111cc9190614e2a565b85612efe565b806111dc8161536e565b91505061119a565b5050600160fb5550505050565b600061120061012d5460ff1690565b1561121d5760405162461bcd60e51b81526004016107f790615287565b600260fb540361123f5760405162461bcd60e51b81526004016107f790615213565b600260fb556112538787878787873361306f565b600160fb55979650505050505050565b600061126d613147565b8261127781612151565b8261128181612a9b565b61012d5460ff16156112a55760405162461bcd60e51b81526004016107f790615287565b600260fb54036112c75760405162461bcd60e51b81526004016107f790615213565b600260fb55610bda3386868261316d565b6000805160206156e98339815191526112f18133612095565b6107b061322b565b60c95460009061130e9061ffff1660016153ab565b905061ffff81166008146113345760405162dc149f60e41b815260040160405180910390fd5b60c9805461ffff191661ffff8316179055505050565b60008281526097602052604081206113629083612d29565b9392505050565b60009182526065602090815260408084206001600160a01b0393909316845291905290205460ff1690565b8061139e81612151565b6113b660008051602061572983398151915233612095565b600260fb54036113d85760405162461bcd60e51b81526004016107f790615213565b600260fb819055506000826001600160a01b031663b1dd61b66040518163ffffffff1660e01b8152600401602060405180830381865afa158015611420573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906114449190615263565b90506000836001600160a01b03166354fd4d506040518163ffffffff1660e01b8152600401602060405180830381865afa158015611486573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906114aa9190615263565b905060006114b88383613285565b90506001600160a01b0381161515806114da57506114d8610162866133bd565b155b156114f85760405163119b4fd360e11b815260040160405180910390fd5b61150385600161218d565b846001600160a01b0316856001600160a01b031663b1dd61b66040518163ffffffff1660e01b8152600401602060405180830381865afa15801561154b573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061156f9190615263565b61ffff167f5ae87719d73cb0fabb219f0e4b6e0a614ed7506f8a08bdb20bebf313573151b760405160405180910390a35050600160fb55505050565b846115b581612151565b846115bf81612a9b565b846115c981612151565b61012d5460ff16156115ed5760405162461bcd60e51b81526004016107f790615287565b600260fb540361160f5760405162461bcd60e51b81526004016107f790615213565b600260fb557f0000000000000000000000001f573d6fb3f13d689ff844b4ce37794d79a7ff1c6001600160a01b03908116908916141580156116d8575060405163b5af090f60e01b81526001600160a01b0389811660048301527f00000000000000000000000083e1814ba31f7ea95d216204bb45fe75ce09b14f169063b5af090f90602401602060405180830381865afa1580156116b2573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906116d691906153d1565b155b156116f657604051630b094f2760e31b815260040160405180910390fd5b60006001600160a01b037f00000000000000000000000041eeba3355d7d6ff628b7982f3f9d055c39488cb163303611730575060006117d2565b604051637c36afad60e01b81526001600160a01b038a811660048301526117cf918a917f00000000000000000000000083e1814ba31f7ea95d216204bb45fe75ce09b14f1690637c36afad90602401602060405180830381865afa15801561179c573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906117c091906153ee565b63ffffffff16620f42406133d2565b90505b60006117e76001600160a01b038b163061349e565b604051631c20fadd60e01b81529091506001600160a01b037f000000000000000000000000649765821d9f64198c905ec0b2b037a4a52bc3731690631c20fadd9061183a908d908c908e90600401615387565b600060405180830381600087803b15801561185457600080fd5b505af1158015611868573d6000803e3d6000fd5b50505050876001600160a01b03166323e30c8b3361188c8d6001600160a01b031690565b8c868c8c6040518763ffffffff1660e01b81526004016118b196959493929190615414565b600060405180830381600087803b1580156118cb57600080fd5b505af11580156118df573d6000803e3d6000fd5b50505050600081611902308d6001600160a01b031661349e90919063ffffffff16565b61190c9190615470565b9050611918838b615487565b8110156119385760405163b7ed78bf60e01b815260040160405180910390fd5b61194a8b6001600160a01b031661352c565b15611987576119826001600160a01b037f000000000000000000000000649765821d9f64198c905ec0b2b037a4a52bc373168261354e565b6119bb565b6119bb6001600160a01b038c167f000000000000000000000000649765821d9f64198c905ec0b2b037a4a52bc37383613667565b6001600160a01b037f0000000000000000000000001f573d6fb3f13d689ff844b4ce37794d79a7ff1c8116908c1603611a645761015f54604051637c8f622d60e01b81526001600160a01b038d811660048301526024820186905260006044830152909116908190637c8f622d90606401600060405180830381600087803b158015611a4657600080fd5b505af1158015611a5a573d6000803e3d6000fd5b5050505050611ad7565b6000611a6f8c6136d2565b604051631510748b60e01b81526001600160a01b038e811660048301526024820187905291925090821690631510748b90604401600060405180830381600087803b158015611abd57600080fd5b505af1158015611ad1573d6000803e3d6000fd5b50505050505b604080518b81526020810185905233916001600160a01b038e16917f0da3485ef1bb570df7bb888887eae5aa01d81b83cd8ccc80c0ea0922a677ecef910160405180910390a35050600160fb55505050505050505050565b6000611b39613147565b83611b4381612151565b83611b4d81612151565b83611b5781612a9b565b61012d5460ff1615611b7b5760405162461bcd60e51b81526004016107f790615287565b600260fb5403611b9d5760405162461bcd60e51b81526004016107f790615213565b600260fb556112538787873361316d565b82611bb881612151565b82611bc281612151565b82611bcc81612151565b600054610100900460ff16611be75760005460ff1615611beb565b303b155b611c4e5760405162461bcd60e51b815260206004820152602e60248201527f496e697469616c697a61626c653a20636f6e747261637420697320616c72656160448201526d191e481a5b9a5d1a585b1a5e995960921b60648201526084016107f7565b600054610100900460ff16158015611c70576000805461ffff19166101011790555b611c7b87878761370e565b8015611c8d576000805461ff00191690555b50505050505050565b600260fb5403611cb85760405162461bcd60e51b81526004016107f790615213565b600260fb55611cc961016282612edc565b611ce65760405163b0ce759160e01b815260040160405180910390fd5b8160005b81811015611e34576000858583818110611d0657611d06615342565b9050602002016020810190611d1b9190614e2a565b6101615460405163772b7e9760e01b81526001600160a01b038084166004830152878116602483015292935091169063772b7e9790604401600060405180830381600087803b158015611d6d57600080fd5b505af1158015611d81573d6000803e3d6000fd5b5050506001600160a01b038083166000818152610167602052604080822080548a86166001600160a01b031982161790915590519316935083927f987eb3c2f78454541205f72f34839b434c306c9eaf4922efd7c0c3060fdb2e4c9190a3846001600160a01b0316826001600160a01b03167f95f865c2808f8b2a85eea2611db7843150ee7835ef1403f9755918a97d76933c60405160405180910390a350508080611e2c9061536e565b915050611cea565b5050600160fb55505050565b600081815260976020526040812061078990612d1f565b6000611e6661012d5460ff1690565b15611e835760405162461bcd60e51b81526004016107f790615287565b7f00000000000000000000000041eeba3355d7d6ff628b7982f3f9d055c39488cb611ead81613758565b611ebc8888888888883361306f565b98975050505050505050565b6000611ed761012d5460ff1690565b15611ef45760405162461bcd60e51b81526004016107f790615287565b600260fb5403611f165760405162461bcd60e51b81526004016107f790615213565b600260fb5561125387878787878733613781565b600082815260656020526040902060010154611f468133612a15565b610b698383612cfd565b60606000611f5f610165612d1f565b905060008167ffffffffffffffff811115611f7c57611f7c6152b1565b604051908082528060200260200182016040528015611fa5578160200160208202803683370190505b50905060005b82811015610d1157611fbf61016582612d29565b828281518110611fd157611fd1615342565b6001600160a01b039092166020928302919091019091015280611ff38161536e565b915050611fab565b600061200a61012d5460ff1690565b156120275760405162461bcd60e51b81526004016107f790615287565b7f00000000000000000000000041eeba3355d7d6ff628b7982f3f9d055c39488cb61205181613758565b611ebc88888888888833613781565b60006001600160e01b03198216637965db0b60e01b148061078957506301ffc9a760e01b6001600160e01b0319831614610789565b61209f8282611369565b610c6257604051634ca8886760e01b815260040160405180910390fd5b61012d5460ff166121065760405162461bcd60e51b815260206004820152601460248201527314185d5cd8589b194e881b9bdd081c185d5cd95960621b60448201526064016107f7565b61012d805460ff191690557f5db9ee0a495bf2e6ff9c91a7834c1ba4fdd244a5e8aa4e537bd38aeae4b073aa335b6040516001600160a01b03909116815260200160405180910390a1565b6001600160a01b0381166107b05760405163e6c4247b60e01b815260040160405180910390fd5b6000611362836001600160a01b03841661384c565b8181156124415761015f54604051632f2ff15d60e01b81527f4cbb5676e6e25e1a3b8a36de10472bcac96f97bd8dd87af6f330881b84739eb860048201526001600160a01b03838116602483015290911690632f2ff15d90604401600060405180830381600087803b15801561220257600080fd5b505af1158015612216573d6000803e3d6000fd5b505061015f54604051632f2ff15d60e01b81527f0d0d17bf5382c809d9a3899d6a94e57386dfb2036f0401b94ef3cf6c1a9ab73f60048201526001600160a01b0385811660248301529091169250632f2ff15d9150604401600060405180830381600087803b15801561228857600080fd5b505af115801561229c573d6000803e3d6000fd5b505061015f54604051632f2ff15d60e01b81527fca51b9188e78415f30da725e0d94567b4d65bc6777d4e5d573191e9f55b88a3260048201526001600160a01b0385811660248301529091169250632f2ff15d9150604401600060405180830381600087803b15801561230e57600080fd5b505af1158015612322573d6000803e3d6000fd5b5050604051632f2ff15d60e01b815260008051602061570983398151915260048201526001600160a01b0384811660248301527f000000000000000000000000649765821d9f64198c905ec0b2b037a4a52bc373169250632f2ff15d9150604401600060405180830381600087803b15801561239d57600080fd5b505af11580156123b1573d6000803e3d6000fd5b5050604051632f2ff15d60e01b815260008051602061570983398151915260048201526001600160a01b0384811660248301527f000000000000000000000000fd31662b3d54edde9b6bdd32c9c27c8e292cad57169250632f2ff15d91506044015b600060405180830381600087803b15801561242d57600080fd5b505af1158015611c8d573d6000803e3d6000fd5b61015f5460405163d547741f60e01b81527f4cbb5676e6e25e1a3b8a36de10472bcac96f97bd8dd87af6f330881b84739eb860048201526001600160a01b0383811660248301529091169063d547741f90604401600060405180830381600087803b1580156124af57600080fd5b505af11580156124c3573d6000803e3d6000fd5b505061015f5460405163d547741f60e01b81527f0d0d17bf5382c809d9a3899d6a94e57386dfb2036f0401b94ef3cf6c1a9ab73f60048201526001600160a01b038581166024830152909116925063d547741f9150604401600060405180830381600087803b15801561253557600080fd5b505af1158015612549573d6000803e3d6000fd5b505061015f5460405163d547741f60e01b81527fca51b9188e78415f30da725e0d94567b4d65bc6777d4e5d573191e9f55b88a3260048201526001600160a01b038581166024830152909116925063d547741f9150604401600060405180830381600087803b1580156125bb57600080fd5b505af11580156125cf573d6000803e3d6000fd5b505060405163d547741f60e01b815260008051602061570983398151915260048201526001600160a01b0384811660248301527f000000000000000000000000649765821d9f64198c905ec0b2b037a4a52bc37316925063d547741f9150604401600060405180830381600087803b15801561264a57600080fd5b505af115801561265e573d6000803e3d6000fd5b505060405163d547741f60e01b815260008051602061570983398151915260048201526001600160a01b0384811660248301527f000000000000000000000000fd31662b3d54edde9b6bdd32c9c27c8e292cad5716925063d547741f9150604401612413565b61015f5481516101605460208401516040516323b872dd60e01b81526000946001600160a01b03908116948116936323b872dd9361270b9391909216918691600401615387565b6020604051808303816000875af115801561272a573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061274e91906153d1565b5060208301516040516323b872dd60e01b81526001600160a01b037f00000000000000000000000048fb253446873234f2febbf9bdeaa72d9d387f9416916323b872dd916127a3918891869190600401615387565b6020604051808303816000875af11580156127c2573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906127e691906153d1565b50602083015160408085015190516372026c6760e11b8152600481018890526001600160a01b038781166024830152604482019390935260648101919091529082169063e404d8ce906084016020604051808303816000875af1158015612851573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190612875919061524a565b95945050505050565b60008082600001516001600160a01b031663f4325d676040518163ffffffff1660e01b8152600401602060405180830381865afa1580156128c3573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906128e7919061549f565b905060006128f4826136d2565b84516101605460208701516040516323b872dd60e01b81529394506001600160a01b03928316936323b872dd936129319316918691600401615387565b6020604051808303816000875af1158015612950573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061297491906153d1565b50602084015160408086015190516356aca36f60e01b8152600481018990526001600160a01b038881166024830152858116604483015260648201939093526084810191909152908216906356aca36f9060a4016020604051808303816000875af11580156129e7573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190612a0b919061524a565b9695505050505050565b612a1f8282611369565b610c6257612a37816001600160a01b0316601461393f565b612a4283602061393f565b604051602001612a539291906154e8565b60408051601f198184030181529082905262461bcd60e51b82526107f79160040161555d565b612a838282613adb565b6000828152609760205260409020610b6990826133bd565b806000036107b057604051637c946ed760e01b815260040160405180910390fd5b60007f000000000000000000000000ab05cf7c6c3a288cd36326e4f7b8600e7268e3446001600160a01b0316836001600160a01b031614612c04576000836001600160a01b031663f4325d676040518163ffffffff1660e01b8152600401602060405180830381865afa158015612b37573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190612b5b919061549f565b9050836001600160a01b0316612b70826136d2565b604051635768adcf60e01b81526001600160a01b0384811660048301529190911690635768adcf90602401602060405180830381865afa158015612bb8573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190612bdc919061549f565b6001600160a01b031614612c025760405162820f3560e61b815260040160405180910390fd5b505b610160546040516323b872dd60e01b81526001600160a01b03808616926323b872dd92612c3992899216908790600401615387565b6020604051808303816000875af1158015612c58573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190612c7c91906153d1565b50610160546040516313e7e7d160e11b81526001600160a01b03909116906327cfcfa290612cb290879087908790600401615387565b6020604051808303816000875af1158015612cd1573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190612cf5919061524a565b949350505050565b612d078282613b61565b6000828152609760205260409020610b699082612178565b6000610789825490565b60006113628383613bc8565b60003415612d56576040516342f7487960e11b815260040160405180910390fd5b61015f546040516323b872dd60e01b81526001600160a01b03918216917f0000000000000000000000001f573d6fb3f13d689ff844b4ce37794d79a7ff1c16906323b872dd90612dae90889085908b90600401615387565b6020604051808303816000875af1158015612dcd573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190612df191906153d1565b5060405163e06bf20d60e01b8152600481018990526001600160a01b0388811660248301526044820188905285151560648301526084820185905282169063e06bf20d9060a4015b6020604051808303816000875af1158015612e58573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611ebc919061524a565b6000612e89858484613bf2565b6000612e94866136d2565b604051639f5c734b60e01b8152600481018a90526001600160a01b03898116602483015288811660448301526064820188905291925090821690639f5c734b90608401612e39565b6001600160a01b03811660009081526001830160205260408120541515611362565b612f0782612151565b6001600160a01b037f0000000000000000000000001f573d6fb3f13d689ff844b4ce37794d79a7ff1c811690831603612f535760405163c1ab6dc160e01b815260040160405180910390fd5b612f5f610165836133bd565b612f7c5760405163119b4fd360e11b815260040160405180910390fd5b604051634824fce960e11b81526001600160a01b038381166004830152821690639049f9d290602401600060405180830381600087803b158015612fbf57600080fd5b505af1158015612fd3573d6000803e3d6000fd5b505050506001600160a01b038281166000818152610167602052604080822080546001600160a01b0319169486169485179055517f4f2ce4e40f623ca765fc0167a25cb7842ceaafb8d82d3dec26ca0d0e0d2d48969190a3806001600160a01b0316826001600160a01b03167f95f865c2808f8b2a85eea2611db7843150ee7835ef1403f9755918a97d76933c60405160405180910390a35050565b600061307e8888888888613cd6565b60007f00000000000000000000000041eeba3355d7d6ff628b7982f3f9d055c39488cb6001600160a01b0316836001600160a01b0316036130bd575060015b61313a60405180604001604052808b6001600160a01b031681526020018a6001600160a01b031681525060405180608001604052808a81526020018981526020016000151581526020018415158152506040518060400160405280876001600160a01b03168152602001886001600160a01b031681525088613d5a565b9998505050505050505050565b6101695460ff1661316b576040516303a5be3f60e31b815260040160405180910390fd5b565b604080516001600160601b0319606084811b82166020808501919091526001600160e01b03194260e01b16603485015288821b8316603885015287821b909216604c84015280830186905283518084039091018152608090920190925280519101206000907f0000000000000000000000001f573d6fb3f13d689ff844b4ce37794d79a7ff1c6001600160a01b039081169086160361321d5761321581878686600080612d35565b915050612cf5565b612a0b818787878789612e7c565b61012d5460ff161561324f5760405162461bcd60e51b81526004016107f790615287565b61012d805460ff191660011790557f62e78cea01bee320cd4e420270b5ea74000d11b0c9f74754ebdbfc544b05a2586121343390565b600080613293610162612d1f565b905060005b818110156133b25760006132ae61016283612d29565b90508561ffff16816001600160a01b031663b1dd61b66040518163ffffffff1660e01b8152600401602060405180830381865afa1580156132f3573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906133179190615263565b61ffff1614801561339057508461ffff16816001600160a01b03166354fd4d506040518163ffffffff1660e01b8152600401602060405180830381865afa158015613366573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061338a9190615263565b61ffff16145b1561339f579250610789915050565b50806133aa8161536e565b915050613298565b506000949350505050565b6000611362836001600160a01b03841661415e565b6000806133df85856141ad565b8051909150600003613403578281602001516133fb91906155a6565b915050611362565b8051831161342457604051631a93c68960e11b815260040160405180910390fd5b6000613431868686614234565b9050600061343f838361424f565b80519091506000036134655784816020015161345b91906155a6565b9350505050611362565b600085810386169061347783836142d4565b9050600061348d613488848a6155a6565b61430b565b919091029998505050505050505050565b60006134a98361352c565b156134bf57506001600160a01b03811631610789565b826040516370a0823160e01b81526001600160a01b03848116600483015291909116906370a0823190602401602060405180830381865afa158015613508573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611362919061524a565b6001600160a01b031673eeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeee1490565b8047101561359e5760405162461bcd60e51b815260206004820152601d60248201527f416464726573733a20696e73756666696369656e742062616c616e636500000060448201526064016107f7565b6000826001600160a01b03168260405160006040518083038185875af1925050503d80600081146135eb576040519150601f19603f3d011682016040523d82523d6000602084013e6135f0565b606091505b5050905080610b695760405162461bcd60e51b815260206004820152603a60248201527f416464726573733a20756e61626c6520746f2073656e642076616c75652c207260448201527f6563697069656e74206d6179206861766520726576657274656400000000000060648201526084016107f7565b8060000361367457505050565b61367d8361352c565b156136be576040516001600160a01b0383169082156108fc029083906000818181858888f193505050501580156136b8573d6000803e3d6000fd5b50505050565b610b696001600160a01b0384168383614336565b6001600160a01b0380821660009081526101676020526040812054909116806107895760405163c1ab6dc160e01b815260040160405180910390fd5b600054610100900460ff166137355760405162461bcd60e51b81526004016107f7906155c8565b61373d614399565b6137456143d0565b61374d6143ff565b610b6983838361442e565b336001600160a01b038216146107b057604051634ca8886760e01b815260040160405180910390fd5b60006137908888888888613cd6565b60007f00000000000000000000000041eeba3355d7d6ff628b7982f3f9d055c39488cb6001600160a01b0316836001600160a01b0316036137cf575060015b61313a60405180604001604052808b6001600160a01b031681526020018a6001600160a01b031681525060405180608001604052808a81526020018981526020016001151581526020018415158152506040518060400160405280876001600160a01b03168152602001886001600160a01b031681525088613d5a565b60008181526001830160205260408120548015613935576000613870600183615470565b855490915060009061388490600190615470565b90508181146138e95760008660000182815481106138a4576138a4615342565b90600052602060002001549050808760000184815481106138c7576138c7615342565b6000918252602080832090910192909255918252600188019052604090208390555b85548690806138fa576138fa615613565b600190038181906000526020600020016000905590558560010160008681526020019081526020016000206000905560019350505050610789565b6000915050610789565b6060600061394e836002615629565b613959906002615487565b67ffffffffffffffff811115613971576139716152b1565b6040519080825280601f01601f19166020018201604052801561399b576020820181803683370190505b509050600360fc1b816000815181106139b6576139b6615342565b60200101906001600160f81b031916908160001a905350600f60fb1b816001815181106139e5576139e5615342565b60200101906001600160f81b031916908160001a9053506000613a09846002615629565b613a14906001615487565b90505b6001811115613a8c576f181899199a1a9b1b9c1cb0b131b232b360811b85600f1660108110613a4857613a48615342565b1a60f81b828281518110613a5e57613a5e615342565b60200101906001600160f81b031916908160001a90535060049490941c93613a8581615648565b9050613a17565b5083156113625760405162461bcd60e51b815260206004820181905260248201527f537472696e67733a20686578206c656e67746820696e73756666696369656e7460448201526064016107f7565b613ae58282611369565b610c625760008281526065602090815260408083206001600160a01b03851684529091529020805460ff19166001179055613b1d3390565b6001600160a01b0316816001600160a01b0316837f2f8788117e7eff1d82e926ec794901d17c78024a50270940304540a733656f0d60405160405180910390a45050565b613b6b8282611369565b15610c625760008281526065602090815260408083206001600160a01b0385168085529252808320805460ff1916905551339285917ff6391f5c32d9c69d2a47ea670b442974b53935d1edc7fd64eb21e047a839171b9190a45050565b6000826000018281548110613bdf57613bdf615342565b9060005260206000200154905092915050565b613c04836001600160a01b031661352c565b15613c825780341015613c2a576040516342f7487960e11b815260040160405180910390fd5b613c5d6001600160a01b037f000000000000000000000000649765821d9f64198c905ec0b2b037a4a52bc373168261354e565b80341115610b6957610b69613c728234615470565b6001600160a01b0384169061354e565b3415613ca1576040516342f7487960e11b815260040160405180910390fd5b610b696001600160a01b038416837f000000000000000000000000649765821d9f64198c905ec0b2b037a4a52bc3738461453e565b613cdf85612151565b613ce884612151565b836001600160a01b0316856001600160a01b031603613d1a5760405163c1ab6dc160e01b815260040160405180910390fd5b613d2383612a9b565b613d2c82612a9b565b4263ffffffff16811015613d5357604051631ab7da6b60e01b815260040160405180910390fd5b5050505050565b60208201516000906001600160a01b0316613d805782516001600160a01b031660208401525b825185516020808801518751888301516040808b0151858b015182516001600160601b031960609a8b1b8116828a01526001600160e01b03194260e01b166034830152988a1b8916603882015295891b8816604c87015288860194909452608080860193909352151560f81b60a085015260a1840189905291861b90941660c1830152805160b581840301815260d5830180835281519185019190912061015584018352600080835260f5850181905261011585018190526101359094018490528251958601835283865293850183905290840182905293830152919087516000907f0000000000000000000000001f573d6fb3f13d689ff844b4ce37794d79a7ff1c6001600160a01b03908116911603613f2a57613ea6848a6020015160018b614568565b91508192508160600151905088602001516001600160a01b031689600001516001600160a01b0316857f5c02c2bb2d1d082317eb23916ca27b3e7c294398b60061a2ad54f1c3c018c318856000015186602001518760000151886040015160008f60000151604051613f1d9695949392919061565f565b60405180910390a4614089565b60208901516001600160a01b037f0000000000000000000000001f573d6fb3f13d689ff844b4ce37794d79a7ff1c8116911603613fec57613f72848a6000015160008b614568565b91508192508160600151905088602001516001600160a01b031689600001516001600160a01b0316857f5c02c2bb2d1d082317eb23916ca27b3e7c294398b60061a2ad54f1c3c018c318856000015186602001518760200151886040015189604001518f60000151604051613f1d9695949392919061565f565b613ff7848a8a61488a565b6060808201519083015192955090935061401091615487565b905088602001516001600160a01b031689600001516001600160a01b0316857f5c02c2bb2d1d082317eb23916ca27b3e7c294398b60061a2ad54f1c3c018c31886600001518660200151886020015188604001518a604001518f600001516040516140809695949392919061565f565b60405180910390a45b88518751845161409a929190613bf2565b6020808a01518882015191840151604051631c20fadd60e01b81526001600160a01b037f000000000000000000000000649765821d9f64198c905ec0b2b037a4a52bc3731693631c20fadd936140f4939092600401615387565b600060405180830381600087803b15801561410e57600080fd5b505af1158015614122573d6000803e3d6000fd5b505050508061016860008282546141399190615487565b9091555050604088015161414e57825161313a565b5060200151979650505050505050565b60008181526001830160205260408120546141a557508154600181810184556000848152602080822090930184905584548482528286019093526040902091909155610789565b506000610789565b604080518082019091526000808252602082015260006141cd8484614a2d565b905083830280821061420257604051806040016040528082846141f09190615470565b81526020018281525092505050610789565b604051806040016040528060016142198585900390565b6142239190615470565b815260200191909152949350505050565b6000818061424457614244615590565b838509949350505050565b60408051808201909152600080825260208201528183602001511061429c576040518060400160405280846000015181526020018385602001516142939190615470565b90529050610789565b6040518060400160405280600185600001516142b89190615470565b81526020016142cb856020015185900390565b90529392505050565b6000806142ec6142e6848084036155a6565b60010190565b90508284602001516142fe91906155a6565b8451820217949350505050565b60006001815b6008811015610d1157838202600203820291508061432e8161536e565b915050614311565b6040516001600160a01b038316602482015260448101829052610b6990849063a9059cbb60e01b906064015b60408051601f198184030181529190526020810180516001600160e01b03166001600160e01b031990931692909217909152614a3c565b600054610100900460ff166143c05760405162461bcd60e51b81526004016107f7906155c8565b6143c8614b0e565b61316b614b35565b600054610100900460ff166143f75760405162461bcd60e51b81526004016107f7906155c8565b61316b614b9a565b600054610100900460ff166144265760405162461bcd60e51b81526004016107f7906155c8565b61316b614bc8565b600054610100900460ff166144555760405162461bcd60e51b81526004016107f7906155c8565b61015f80546001600160a01b038086166001600160a01b03199283161790925561016080548584169083161790556101618054928416929091169190911790556144cd7fdf8c9529ea4b244b569bac557a549516f317e7b5cf82dc5e0d8b6d874930a3f5600080516020615729833981519152614bfc565b6144f36000805160206156e9833981519152600080516020615729833981519152614bfc565b61452b7f657d38169ed9612cb2d9de7040b7b6a1adebf7a8433a66ccb49c08554ac9b8a5600080516020615729833981519152614bfc565b5050610169805460ff1916600117905550565b80158061454f575061454f8461352c565b6136b8576136b86001600160a01b038516848484614c47565b6145936040518060800160405280600081526020016000815260200160008152602001600081525090565b6000836145e6576040518060400160405280866001600160a01b031681526020017f0000000000000000000000001f573d6fb3f13d689ff844b4ce37794d79a7ff1c6001600160a01b031681525061462e565b60405180604001604052807f0000000000000000000000001f573d6fb3f13d689ff844b4ce37794d79a7ff1c6001600160a01b03168152602001866001600160a01b03168152505b9050600083604001516146ec57614644866136d2565b825160208085015187519188015160608901516040516337cb0ead60e21b8152600481018e90526001600160a01b03958616602482015292851660448401526064830193909352608482015290151560a482015291169063df2c3ab49060c4016060604051808303816000875af11580156146c3573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906146e79190615690565b614798565b6146f5866136d2565b8251602080850151875191880151606089015160405163d1aebfc760e01b8152600481018e90526001600160a01b03958616602482015292851660448401526064830193909352608482015290151560a482015291169063d1aebfc79060c4016060604051808303816000875af1158015614774573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906147989190615690565b9050846148315761015f54604082015160208301516001600160a01b0390921691637c8f622d9189916147cb9190615470565b6040516001600160e01b031960e085901b1681526001600160a01b039092166004830152602482015260016044820152606401600060405180830381600087803b15801561481857600080fd5b505af115801561482c573d6000803e3d6000fd5b505050505b6040518060800160405280856040015161484c57825161484f565b85515b81526020018560400151614864578551614867565b82515b815260200182602001518152602001826040015181525092505050949350505050565b6148b56040518060800160405280600081526020016000815260200160008152602001600081525090565b6148e06040518060800160405280600081526020016000815260200160008152602001600081525090565b82604001511561498a57600083600001519050600084602001519050600061493988886000015160006040518060800160405280888152602001600181526020016001151581526020018b606001511515815250614568565b9050600061497b89896020015160016040518060800160405280876020015181526020018881526020016001151581526020018c606001511515815250614568565b919550909350614a2592505050565b60008360000151905060008460200151905060006149da8888602001516001604051806080016040528088815260200160001981526020016000151581526020018b606001511515815250614568565b90506000614a1c89896000015160006040518060800160405280876000015181526020018881526020016000151581526020018c606001511515815250614568565b95509093505050505b935093915050565b60006000198284099392505050565b6000614a91826040518060400160405280602081526020017f5361666545524332303a206c6f772d6c6576656c2063616c6c206661696c6564815250856001600160a01b0316614c689092919063ffffffff16565b805190915015610b695780806020019051810190614aaf91906153d1565b610b695760405162461bcd60e51b815260206004820152602a60248201527f5361666545524332303a204552433230206f7065726174696f6e20646964206e6044820152691bdd081cdd58d8d9595960b21b60648201526084016107f7565b600054610100900460ff1661316b5760405162461bcd60e51b81526004016107f7906155c8565b600054610100900460ff16614b5c5760405162461bcd60e51b81526004016107f7906155c8565b60c9805461ffff19166001179055614b8260008051602061572983398151915280614bfc565b61316b60008051602061572983398151915233614c77565b600054610100900460ff16614bc15760405162461bcd60e51b81526004016107f7906155c8565b600160fb55565b600054610100900460ff16614bef5760405162461bcd60e51b81526004016107f7906155c8565b61012d805460ff19169055565b600082815260656020526040808220600101805490849055905190918391839186917fbd79b86ffe0ab8e8776151514217cd7cacd52c909f66475c3af44e129f0b00ff9190a4505050565b6136b8846323b872dd60e01b85858560405160240161436293929190615387565b6060612cf58484600085614c81565b610c628282612a79565b606082471015614ce25760405162461bcd60e51b815260206004820152602660248201527f416464726573733a20696e73756666696369656e742062616c616e636520666f6044820152651c8818d85b1b60d21b60648201526084016107f7565b6001600160a01b0385163b614d395760405162461bcd60e51b815260206004820152601d60248201527f416464726573733a2063616c6c20746f206e6f6e2d636f6e747261637400000060448201526064016107f7565b600080866001600160a01b03168587604051614d5591906156cc565b60006040518083038185875af1925050503d8060008114614d92576040519150601f19603f3d011682016040523d82523d6000602084013e614d97565b606091505b5091509150614da7828286614db2565b979650505050505050565b60608315614dc1575081611362565b825115614dd15782518084602001fd5b8160405162461bcd60e51b81526004016107f7919061555d565b600060208284031215614dfd57600080fd5b81356001600160e01b03198116811461136257600080fd5b6001600160a01b03811681146107b057600080fd5b600060208284031215614e3c57600080fd5b813561136281614e15565b600060208284031215614e5957600080fd5b5035919050565b80151581146107b057600080fd5b600060208284031215614e8057600080fd5b813561136281614e60565b60008060408385031215614e9e57600080fd5b823591506020830135614eb081614e15565b809150509250929050565b60008060408385031215614ece57600080fd5b8235614ed981614e15565b946020939093013593505050565b6020808252825182820181905260009190848201906040850190845b81811015614f285783516001600160a01b031683529284019291840191600101614f03565b50909695505050505050565b600080600080600060a08688031215614f4c57600080fd5b8535614f5781614e15565b94506020860135614f6781614e15565b94979496505050506040830135926060810135926080909101359150565b600080600060408486031215614f9a57600080fd5b833567ffffffffffffffff80821115614fb257600080fd5b818601915086601f830112614fc657600080fd5b813581811115614fd557600080fd5b8760208260051b8501011115614fea57600080fd5b6020928301955093505084013561500081614e15565b809150509250925092565b60008060008060008060c0878903121561502457600080fd5b863561502f81614e15565b9550602087013561503f81614e15565b945060408701359350606087013592506080870135915060a087013561506481614e15565b809150509295509295509295565b60008083601f84011261508457600080fd5b50813567ffffffffffffffff81111561509c57600080fd5b6020830191508360208285010111156150b457600080fd5b9250929050565b600080602083850312156150ce57600080fd5b823567ffffffffffffffff8111156150e557600080fd5b6150f185828601615072565b90969095509350505050565b6000806040838503121561511057600080fd5b50508035926020909101359150565b60008060008060006080868803121561513757600080fd5b853561514281614e15565b945060208601359350604086013561515981614e15565b9250606086013567ffffffffffffffff81111561517557600080fd5b61518188828901615072565b969995985093965092949392505050565b6000806000606084860312156151a757600080fd5b83356151b281614e15565b925060208401356151c281614e15565b929592945050506040919091013590565b6000806000606084860312156151e857600080fd5b83356151f381614e15565b9250602084013561520381614e15565b9150604084013561500081614e15565b6020808252601f908201527f5265656e7472616e637947756172643a207265656e7472616e742063616c6c00604082015260600190565b60006020828403121561525c57600080fd5b5051919050565b60006020828403121561527557600080fd5b815161ffff8116811461136257600080fd5b60208082526010908201526f14185d5cd8589b194e881c185d5cd95960821b604082015260600190565b634e487b7160e01b600052604160045260246000fd5b6040516060810167ffffffffffffffff811182821017156152f857634e487b7160e01b600052604160045260246000fd5b60405290565b60006060828403121561531057600080fd5b6153186152c7565b825161532381614e15565b8152602083810151908201526040928301519281019290925250919050565b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052601160045260246000fd5b60006001820161538057615380615358565b5060010190565b6001600160a01b039384168152919092166020820152604081019190915260600190565b600061ffff8083168185168083038211156153c8576153c8615358565b01949350505050565b6000602082840312156153e357600080fd5b815161136281614e60565b60006020828403121561540057600080fd5b815163ffffffff8116811461136257600080fd5b6001600160a01b03878116825286166020820152604081018590526060810184905260a06080820181905281018290526000828460c0840137600060c0848401015260c0601f19601f8501168301019050979650505050505050565b60008282101561548257615482615358565b500390565b6000821982111561549a5761549a615358565b500190565b6000602082840312156154b157600080fd5b815161136281614e15565b60005b838110156154d75781810151838201526020016154bf565b838111156136b85750506000910152565b7f416363657373436f6e74726f6c3a206163636f756e74200000000000000000008152600083516155208160178501602088016154bc565b7001034b99036b4b9b9b4b733903937b6329607d1b60179184019182015283516155518160288401602088016154bc565b01602801949350505050565b602081526000825180602084015261557c8160408501602087016154bc565b601f01601f19169190910160400192915050565b634e487b7160e01b600052601260045260246000fd5b6000826155c357634e487b7160e01b600052601260045260246000fd5b500490565b6020808252602b908201527f496e697469616c697a61626c653a20636f6e7472616374206973206e6f74206960408201526a6e697469616c697a696e6760a81b606082015260800190565b634e487b7160e01b600052603160045260246000fd5b600081600019048311821515161561564357615643615358565b500290565b60008161565757615657615358565b506000190190565b95865260208601949094526040850192909252606084015260808301526001600160a01b031660a082015260c00190565b6000606082840312156156a257600080fd5b6156aa6152c7565b8251815260208301516020820152604083015160408201528091505092915050565b600082516156de8184602087016154bc565b919091019291505056fef28f409b8cbe6b50c7ca45afe893f01f69626f8a4e33cb480bc1bc2d618c084589ce14d20697a788f57260f7690044299bde7ea88cfb7e43d120a0c031f1ffc12172861495e7b85edac73e3cd5fbb42dd675baadf627720e687bcfdaca025096a164736f6c634300080d000a
Constructor Arguments (ABI-Encoded and is the last bytes of the Contract Creation Code above)
000000000000000000000000a489c2b5b36835a327851ab917a80562b5afc2440000000000000000000000000887ae1251e180d7d453aedebee26e1639f2011300000000000000000000000083e1814ba31f7ea95d216204bb45fe75ce09b14f000000000000000000000000649765821d9f64198c905ec0b2b037a4a52bc373000000000000000000000000fd31662b3d54edde9b6bdd32c9c27c8e292cad57000000000000000000000000ab05cf7c6c3a288cd36326e4f7b8600e7268e34400000000000000000000000041eeba3355d7d6ff628b7982f3f9d055c39488cb
-----Decoded View---------------
Arg [0] : initBNTGovernance (address): 0xa489C2b5b36835A327851Ab917A80562B5AFC244
Arg [1] : initVBNTGovernance (address): 0x0887ae1251E180d7D453aeDEBee26e1639f20113
Arg [2] : initNetworkSettings (address): 0x83E1814ba31F7ea95D216204BB45FE75Ce09b14F
Arg [3] : initMasterVault (address): 0x649765821D9f64198c905eC0B2B037a4a52Bc373
Arg [4] : initExternalProtectionVault (address): 0xFd31662b3d54eddE9B6Bdd32c9c27C8E292cAD57
Arg [5] : initBNTPoolToken (address): 0xAB05Cf7C6c3a288cd36326e4f7b8600e7268E344
Arg [6] : bancorArbitrage (address): 0x41Eeba3355d7D6FF628B7982F3F9D055c39488cB
-----Encoded View---------------
7 Constructor Arguments found :
Arg [0] : 000000000000000000000000a489c2b5b36835a327851ab917a80562b5afc244
Arg [1] : 0000000000000000000000000887ae1251e180d7d453aedebee26e1639f20113
Arg [2] : 00000000000000000000000083e1814ba31f7ea95d216204bb45fe75ce09b14f
Arg [3] : 000000000000000000000000649765821d9f64198c905ec0b2b037a4a52bc373
Arg [4] : 000000000000000000000000fd31662b3d54edde9b6bdd32c9c27c8e292cad57
Arg [5] : 000000000000000000000000ab05cf7c6c3a288cd36326e4f7b8600e7268e344
Arg [6] : 00000000000000000000000041eeba3355d7d6ff628b7982f3f9d055c39488cb
Loading...
Loading
Loading...
Loading
Multichain Portfolio | 30 Chains
Chain | Token | Portfolio % | Price | Amount | Value |
---|
Loading...
Loading
A contract address hosts a smart contract, which is a set of code stored on the blockchain that runs when predetermined conditions are met. Learn more about addresses in our Knowledge Base.