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
This contract may be a proxy contract. Click on More Options and select Is this a proxy? to confirm and enable the "Read as Proxy" & "Write as Proxy" tabs.
Contract Name:
ThalesAMMLiquidityPool
Compiler Version
v0.8.4+commit.c7e474f2
Optimization Enabled:
Yes with 200 runs
Other Settings:
default evmVersion
Contract Source Code (Solidity Standard Json-Input format)
// SPDX-License-Identifier: MIT pragma solidity ^0.8.0; import "@openzeppelin/contracts-upgradeable/token/ERC20/utils/SafeERC20Upgradeable.sol"; import "@openzeppelin/contracts-upgradeable/access/OwnableUpgradeable.sol"; import "@openzeppelin/contracts-upgradeable/proxy/utils/Initializable.sol"; import "@openzeppelin/contracts-upgradeable/security/PausableUpgradeable.sol"; import "../../utils/proxy/solidity-0.8.0/ProxyReentrancyGuard.sol"; import "../../utils/proxy/solidity-0.8.0/ProxyOwned.sol"; import "@openzeppelin/contracts-4.4.1/proxy/Clones.sol"; import "../../interfaces/IThalesAMM.sol"; import "../../interfaces/IPositionalMarket.sol"; import "../../interfaces/IStakingThales.sol"; import "./ThalesAMMLiquidityPoolRound.sol"; contract ThalesAMMLiquidityPool is Initializable, ProxyOwned, PausableUpgradeable, ProxyReentrancyGuard { /* ========== LIBRARIES ========== */ using SafeERC20Upgradeable for IERC20Upgradeable; struct InitParams { address _owner; IThalesAMM _thalesAMM; IERC20Upgradeable _sUSD; uint _roundLength; uint _maxAllowedDeposit; uint _minDepositAmount; uint _maxAllowedUsers; bool _needsTransformingCollateral; } /* ========== CONSTANTS ========== */ uint private constant HUNDRED = 1e20; uint private constant ONE = 1e18; uint private constant ONE_PERCENT = 1e16; /* ========== STATE VARIABLES ========== */ IThalesAMM public thalesAMM; IERC20Upgradeable public sUSD; bool public started; uint public round; uint public roundLength; uint public firstRoundStartTime; mapping(uint => address) public roundPools; mapping(uint => address[]) public usersPerRound; mapping(uint => mapping(address => bool)) public userInRound; mapping(uint => mapping(address => uint)) public balancesPerRound; mapping(uint => uint) public allocationPerRound; mapping(address => bool) public withdrawalRequested; mapping(uint => address[]) public tradingMarketsPerRound; mapping(uint => mapping(address => bool)) public isTradingMarketInARound; mapping(uint => uint) public profitAndLossPerRound; mapping(uint => uint) public cumulativeProfitAndLoss; uint public maxAllowedDeposit; uint public minDepositAmount; uint public maxAllowedUsers; uint public usersCurrentlyInPool; address public defaultLiquidityProvider; IStakingThales public stakingThales; uint public stakedThalesMultiplier; address public poolRoundMastercopy; mapping(address => bool) public whitelistedDeposits; uint public totalDeposited; bool public onlyWhitelistedStakersAllowed; mapping(address => bool) public whitelistedStakers; bool public needsTransformingCollateral; mapping(uint => mapping(address => bool)) public marketAlreadyExercisedInRound; bool public roundClosingPrepared; uint public usersProcessedInRound; uint public marketsProcessedInRound; mapping(address => uint) public withdrawalShare; uint public utilizationRate; address public safeBox; uint public safeBoxImpact; /* ========== CONSTRUCTOR ========== */ function initialize(InitParams calldata params) external initializer { setOwner(params._owner); initNonReentrant(); thalesAMM = IThalesAMM(params._thalesAMM); sUSD = params._sUSD; roundLength = params._roundLength; maxAllowedDeposit = params._maxAllowedDeposit; minDepositAmount = params._minDepositAmount; maxAllowedUsers = params._maxAllowedUsers; needsTransformingCollateral = params._needsTransformingCollateral; sUSD.approve(address(thalesAMM), type(uint256).max); } /// @notice Start pool and begin round #1 function start() external onlyOwner { require(!started, "Liquidity pool has already started"); require(allocationPerRound[1] > 0, "can not start with 0 deposits"); firstRoundStartTime = block.timestamp; round = 1; address roundPool = _getOrCreateRoundPool(1); ThalesAMMLiquidityPoolRound(roundPool).updateRoundTimes(firstRoundStartTime, getRoundEndTime(1)); started = true; emit PoolStarted(); } /// @notice Deposit funds from user into pool for the next round /// @param amount Value to be deposited function deposit(uint amount) external canDeposit(amount) nonReentrant whenNotPaused roundClosingNotPrepared { uint nextRound = round + 1; address roundPool = _getOrCreateRoundPool(nextRound); sUSD.safeTransferFrom(msg.sender, roundPool, amount); require(msg.sender != defaultLiquidityProvider, "Can't deposit directly as default liquidity provider"); // new user enters the pool if (balancesPerRound[round][msg.sender] == 0 && balancesPerRound[nextRound][msg.sender] == 0) { require(usersCurrentlyInPool < maxAllowedUsers, "Max amount of users reached"); usersPerRound[nextRound].push(msg.sender); userInRound[nextRound][msg.sender] = true; usersCurrentlyInPool = usersCurrentlyInPool + 1; } balancesPerRound[nextRound][msg.sender] += amount; allocationPerRound[nextRound] += amount; totalDeposited += amount; if (address(stakingThales) != address(0)) { stakingThales.updateVolume(msg.sender, amount); } emit Deposited(msg.sender, amount, round); } /// @notice get sUSD to mint for buy and store market as trading in the round /// @param market to trade /// @param amountToMint amount to get for mint function commitTrade(address market, uint amountToMint) external nonReentrant whenNotPaused onlyAMM roundClosingNotPrepared { require(started, "Pool has not started"); require(amountToMint > 0, "Can't commit a zero trade"); amountToMint = _transformCollateral(amountToMint); // add 1e-6 due to rounding issue, will be sent back to AMM at the end amountToMint = needsTransformingCollateral ? amountToMint + 1 : amountToMint; uint marketRound = getMarketRound(market); address liquidityPoolRound = _getOrCreateRoundPool(marketRound); if (marketRound == round) { sUSD.safeTransferFrom(liquidityPoolRound, address(thalesAMM), amountToMint); require( sUSD.balanceOf(liquidityPoolRound) >= (allocationPerRound[round] - ((allocationPerRound[round] * utilizationRate) / ONE)), "Amount exceeds available utilization for round" ); } else { uint poolBalance = sUSD.balanceOf(liquidityPoolRound); if (poolBalance >= amountToMint) { sUSD.safeTransferFrom(liquidityPoolRound, address(thalesAMM), amountToMint); } else { uint differenceToLPAsDefault = amountToMint - poolBalance; _depositAsDefault(differenceToLPAsDefault, liquidityPoolRound, marketRound); sUSD.safeTransferFrom(liquidityPoolRound, address(thalesAMM), amountToMint); } } if (!isTradingMarketInARound[marketRound][market]) { tradingMarketsPerRound[marketRound].push(market); isTradingMarketInARound[marketRound][market] = true; } } /// @notice get options that are in the LP into the AMM for the buy tx /// @param market to get options for /// @param optionsAmount to get options for /// @param position to get options for function getOptionsForBuy( address market, uint optionsAmount, IThalesAMM.Position position ) external nonReentrant whenNotPaused onlyAMM roundClosingNotPrepared { if (optionsAmount > 0) { require(started, "Pool has not started"); uint marketRound = getMarketRound(market); address liquidityPoolRound = _getOrCreateRoundPool(marketRound); (IPosition up, IPosition down) = IPositionalMarket(market).getOptions(); IPosition target = position == IThalesAMM.Position.Up ? up : down; ThalesAMMLiquidityPoolRound(liquidityPoolRound).moveOptions( IERC20Upgradeable(address(target)), optionsAmount, address(thalesAMM) ); } } /// @notice get options that are in the LP into the AMM for the buy tx /// @param market to get options for /// @param optionsAmount to get options for /// @param position to get options for function getOptionsForBuyByAddress( address market, uint optionsAmount, address position ) external nonReentrant whenNotPaused onlyAMM roundClosingNotPrepared { if (optionsAmount > 0) { require(started, "Pool has not started"); uint marketRound = getMarketRound(market); address liquidityPoolRound = _getOrCreateRoundPool(marketRound); ThalesAMMLiquidityPoolRound(liquidityPoolRound).moveOptions( IERC20Upgradeable(position), optionsAmount, address(thalesAMM) ); } } /// @notice Create a round pool by market maturity date if it doesnt already exist /// @param market to use /// @return roundPool the pool for the passed market function getOrCreateMarketPool(address market) external onlyAMM nonReentrant whenNotPaused roundClosingNotPrepared returns (address roundPool) { uint marketRound = getMarketRound(market); roundPool = _getOrCreateRoundPool(marketRound); } /// @notice request withdrawal from the LP function withdrawalRequest() external nonReentrant canWithdraw whenNotPaused roundClosingNotPrepared { if (totalDeposited > balancesPerRound[round][msg.sender]) { totalDeposited -= balancesPerRound[round][msg.sender]; } else { totalDeposited = 0; } usersCurrentlyInPool = usersCurrentlyInPool - 1; withdrawalRequested[msg.sender] = true; emit WithdrawalRequested(msg.sender); } /// @notice request partial withdrawal from the LP. /// @param share the percentage the user is wihdrawing from his total deposit function partialWithdrawalRequest(uint share) external nonReentrant canWithdraw whenNotPaused roundClosingNotPrepared { require(share >= ONE_PERCENT * 10 && share <= ONE_PERCENT * 90, "Share has to be between 10% and 90%"); uint toWithdraw = (balancesPerRound[round][msg.sender] * share) / ONE; if (totalDeposited > toWithdraw) { totalDeposited -= toWithdraw; } else { totalDeposited = 0; } withdrawalRequested[msg.sender] = true; withdrawalShare[msg.sender] = share; emit WithdrawalRequested(msg.sender); } /// @notice Prepare round closing /// excercise options of trading markets and ensure there are no markets left unresolved function prepareRoundClosing() external nonReentrant whenNotPaused roundClosingNotPrepared { require(canCloseCurrentRound(), "Can't close current round"); // excercise market options exerciseMarketsReadyToExercised(); address roundPool = roundPools[round]; // final balance is the final amount of sUSD in the round pool uint currentBalance = sUSD.balanceOf(roundPool); // send profit reserved for SafeBox if positive round if (currentBalance > allocationPerRound[round]) { uint safeBoxAmount = ((currentBalance - allocationPerRound[round]) * safeBoxImpact) / ONE; sUSD.safeTransferFrom(roundPool, safeBox, safeBoxAmount); currentBalance = currentBalance - safeBoxAmount; emit SafeBoxSharePaid(safeBoxImpact, safeBoxAmount); } // calculate PnL // if no allocation for current round if (allocationPerRound[round] == 0) { profitAndLossPerRound[round] = 1; } else { profitAndLossPerRound[round] = (currentBalance * ONE) / allocationPerRound[round]; } roundClosingPrepared = true; emit RoundClosingPrepared(round); } /// @notice Prepare round closing /// excercise options of trading markets and ensure there are no markets left unresolved function processRoundClosingBatch(uint batchSize) external nonReentrant whenNotPaused { require(roundClosingPrepared, "Round closing not prepared"); require(usersProcessedInRound < usersPerRound[round].length, "All users already processed"); require(batchSize > 0, "batchSize has to be greater than 0"); address roundPool = roundPools[round]; uint endCursor = usersProcessedInRound + batchSize; if (endCursor > usersPerRound[round].length) { endCursor = usersPerRound[round].length; } for (uint i = usersProcessedInRound; i < endCursor; i++) { address user = usersPerRound[round][i]; uint balanceAfterCurRound = (balancesPerRound[round][user] * profitAndLossPerRound[round]) / ONE; if (!withdrawalRequested[user] && (profitAndLossPerRound[round] > 0)) { balancesPerRound[round + 1][user] = balancesPerRound[round + 1][user] + balanceAfterCurRound; usersPerRound[round + 1].push(user); if (address(stakingThales) != address(0)) { stakingThales.updateVolume(user, balanceAfterCurRound); } } else { if (withdrawalShare[user] > 0) { uint amountToClaim = (balanceAfterCurRound * withdrawalShare[user]) / ONE; sUSD.safeTransferFrom(roundPool, user, amountToClaim); emit Claimed(user, amountToClaim); withdrawalRequested[user] = false; withdrawalShare[user] = 0; usersPerRound[round + 1].push(user); balancesPerRound[round + 1][user] = balanceAfterCurRound - amountToClaim; } else { balancesPerRound[round + 1][user] = 0; sUSD.safeTransferFrom(roundPool, user, balanceAfterCurRound); withdrawalRequested[user] = false; emit Claimed(user, balanceAfterCurRound); } } usersProcessedInRound = usersProcessedInRound + 1; } emit RoundClosingBatchProcessed(round, batchSize); } /// @notice Close current round and begin next round, /// calculate profit and loss and process withdrawals function closeRound() external nonReentrant whenNotPaused { require(roundClosingPrepared, "Round closing not prepared"); require(usersProcessedInRound == usersPerRound[round].length, "Not all users processed yet"); // set for next round to false roundClosingPrepared = false; address roundPool = roundPools[round]; //always claim for defaultLiquidityProvider if (balancesPerRound[round][defaultLiquidityProvider] > 0) { uint balanceAfterCurRound = (balancesPerRound[round][defaultLiquidityProvider] * profitAndLossPerRound[round]) / ONE; sUSD.safeTransferFrom(roundPool, defaultLiquidityProvider, balanceAfterCurRound); emit Claimed(defaultLiquidityProvider, balanceAfterCurRound); } if (round == 1) { cumulativeProfitAndLoss[round] = profitAndLossPerRound[round]; } else { cumulativeProfitAndLoss[round] = (cumulativeProfitAndLoss[round - 1] * profitAndLossPerRound[round]) / ONE; } // start next round round += 1; //add all carried over sUSD allocationPerRound[round] += sUSD.balanceOf(roundPool); totalDeposited = allocationPerRound[round] - balancesPerRound[round][defaultLiquidityProvider]; address roundPoolNewRound = _getOrCreateRoundPool(round); sUSD.safeTransferFrom(roundPool, roundPoolNewRound, sUSD.balanceOf(roundPool)); usersProcessedInRound = 0; emit RoundClosed(round - 1, profitAndLossPerRound[round - 1]); } /// @notice Iterate all markets in the current round and exercise those ready to be exercised function exerciseMarketsReadyToExercised() public roundClosingNotPrepared { ThalesAMMLiquidityPoolRound poolRound = ThalesAMMLiquidityPoolRound(roundPools[round]); IPositionalMarket market; for (uint i = 0; i < tradingMarketsPerRound[round].length; i++) { address marketAddress = tradingMarketsPerRound[round][i]; if (!marketAlreadyExercisedInRound[round][marketAddress]) { market = IPositionalMarket(marketAddress); if (market.resolved()) { poolRound.exerciseMarketReadyToExercised(market); marketAlreadyExercisedInRound[round][marketAddress] = true; } } } } /// @notice Exercises markets in a round /// @param batchSize number of markets to be processed function exerciseMarketsReadyToExercisedBatch(uint batchSize) external nonReentrant whenNotPaused roundClosingNotPrepared { require(batchSize > 0, "batchSize has to be greater than 0"); ThalesAMMLiquidityPoolRound poolRound = ThalesAMMLiquidityPoolRound(roundPools[round]); uint count = 0; IPositionalMarket market; for (uint i = 0; i < tradingMarketsPerRound[round].length; i++) { if (count == batchSize) break; address marketAddress = tradingMarketsPerRound[round][i]; if (!marketAlreadyExercisedInRound[round][marketAddress]) { market = IPositionalMarket(marketAddress); if (market.resolved()) { poolRound.exerciseMarketReadyToExercised(market); marketAlreadyExercisedInRound[round][marketAddress] = true; count += 1; } } } } /* ========== VIEWS ========== */ /// @notice whether the user is currently LPing /// @param user to check /// @return isUserInLP whether the user is currently LPing function isUserLPing(address user) external view returns (bool isUserInLP) { isUserInLP = (balancesPerRound[round][user] > 0 || balancesPerRound[round + 1][user] > 0) && (!withdrawalRequested[user] || withdrawalShare[user] > 0); } /// @notice Return the maximum amount the user can deposit now /// @param user address to check /// @return maxDepositForUser the maximum amount the user can deposit in total including already deposited /// @return availableToDepositForUser the maximum amount the user can deposit now /// @return stakedThalesForUser how much THALES the user has staked function getMaxAvailableDepositForUser(address user) external view returns ( uint maxDepositForUser, uint availableToDepositForUser, uint stakedThalesForUser ) { uint nextRound = round + 1; stakedThalesForUser = stakingThales.stakedBalanceOf(user); maxDepositForUser = _transformCollateral((stakedThalesForUser * stakedThalesMultiplier) / ONE); availableToDepositForUser = maxDepositForUser > (balancesPerRound[round][user] + balancesPerRound[nextRound][user]) ? (maxDepositForUser - balancesPerRound[round][user] - balancesPerRound[nextRound][user]) : 0; } /// @notice get the pool address for the market /// @param market to check /// @return roundPool the pool address for the market function getMarketPool(address market) external view returns (address roundPool) { roundPool = roundPools[getMarketRound(market)]; } /// @notice Checks if all conditions are met to close the round /// @return bool function canCloseCurrentRound() public view returns (bool) { if (!started || block.timestamp < getRoundEndTime(round)) { return false; } IPositionalMarket market; for (uint i = 0; i < tradingMarketsPerRound[round].length; i++) { address marketAddress = tradingMarketsPerRound[round][i]; if (!marketAlreadyExercisedInRound[round][marketAddress]) { market = IPositionalMarket(marketAddress); if (!market.resolved()) { return false; } } } return true; } /// @notice Iterate all markets in the current round and return true if at least one can be exercised function hasMarketsReadyToBeExercised() public view returns (bool) { ThalesAMMLiquidityPoolRound poolRound = ThalesAMMLiquidityPoolRound(roundPools[round]); IPositionalMarket market; for (uint i = 0; i < tradingMarketsPerRound[round].length; i++) { address marketAddress = tradingMarketsPerRound[round][i]; if (!marketAlreadyExercisedInRound[round][marketAddress]) { market = IPositionalMarket(marketAddress); if (market.resolved()) { (uint upBalance, uint downBalance) = market.balancesOf(address(poolRound)); if (upBalance > 0 || downBalance > 0) { return true; } } } } return false; } /// @notice Return multiplied PnLs between rounds /// @param roundA Round number from /// @param roundB Round number to /// @return uint function cumulativePnLBetweenRounds(uint roundA, uint roundB) public view returns (uint) { return (cumulativeProfitAndLoss[roundB] * profitAndLossPerRound[roundA]) / cumulativeProfitAndLoss[roundA]; } /// @notice Return the start time of the passed round /// @param _round number /// @return uint the start time of the given round function getRoundStartTime(uint _round) public view returns (uint) { return firstRoundStartTime + (_round - 1) * roundLength; } /// @notice Return the end time of the passed round /// @param _round number /// @return uint the end time of the given round function getRoundEndTime(uint _round) public view returns (uint) { return firstRoundStartTime + _round * roundLength; } /// @notice Return the round to which a market belongs to /// @param market to get the round for /// @return _round the round which the market belongs to function getMarketRound(address market) public view returns (uint _round) { IPositionalMarket marketContract = IPositionalMarket(market); (uint maturity, ) = marketContract.times(); if (maturity > firstRoundStartTime) { _round = (maturity - firstRoundStartTime) / roundLength + 1; } else { _round = 1; } } /// @notice Return the count of users in current round /// @return _the count of users in current round function getUsersCountInCurrentRound() external view returns (uint) { return usersPerRound[round].length; } /* ========== INTERNAL FUNCTIONS ========== */ function _transformCollateral(uint value) internal view returns (uint) { if (needsTransformingCollateral) { return value / 1e12; } else { return value; } } function _reverseTransformCollateral(uint value) internal view returns (uint) { if (needsTransformingCollateral) { return value * 1e12; } else { return value; } } function _depositAsDefault( uint amount, address roundPool, uint _round ) internal { require(defaultLiquidityProvider != address(0), "default liquidity provider not set"); sUSD.safeTransferFrom(defaultLiquidityProvider, roundPool, amount); balancesPerRound[_round][defaultLiquidityProvider] += amount; allocationPerRound[_round] += amount; emit Deposited(defaultLiquidityProvider, amount, _round); } function _getOrCreateRoundPool(uint _round) internal returns (address roundPool) { roundPool = roundPools[_round]; if (roundPool == address(0)) { require(poolRoundMastercopy != address(0), "Round pool mastercopy not set"); ThalesAMMLiquidityPoolRound newRoundPool = ThalesAMMLiquidityPoolRound(Clones.clone(poolRoundMastercopy)); newRoundPool.initialize(address(this), sUSD, _round, getRoundEndTime(_round - 1), getRoundEndTime(_round)); roundPool = address(newRoundPool); roundPools[_round] = roundPool; emit RoundPoolCreated(_round, roundPool); } } /* ========== SETTERS ========== */ function setPaused(bool _setPausing) external onlyOwner { _setPausing ? _pause() : _unpause(); } /// @notice Set _poolRoundMastercopy /// @param _poolRoundMastercopy to clone round pools from function setPoolRoundMastercopy(address _poolRoundMastercopy) external onlyOwner { require(_poolRoundMastercopy != address(0), "Can not set a zero address!"); poolRoundMastercopy = _poolRoundMastercopy; emit PoolRoundMastercopyChanged(poolRoundMastercopy); } /// @notice Set IStakingThales contract /// @param _stakingThales IStakingThales address function setStakingThales(IStakingThales _stakingThales) external onlyOwner { stakingThales = _stakingThales; emit StakingThalesChanged(address(_stakingThales)); } /// @notice Set max allowed deposit /// @param _maxAllowedDeposit Deposit value function setMaxAllowedDeposit(uint _maxAllowedDeposit) external onlyOwner { maxAllowedDeposit = _maxAllowedDeposit; emit MaxAllowedDepositChanged(_maxAllowedDeposit); } /// @notice Set min allowed deposit /// @param _minDepositAmount Deposit value function setMinAllowedDeposit(uint _minDepositAmount) external onlyOwner { minDepositAmount = _minDepositAmount; emit MinAllowedDepositChanged(_minDepositAmount); } /// @notice Set _maxAllowedUsers /// @param _maxAllowedUsers Deposit value function setMaxAllowedUsers(uint _maxAllowedUsers) external onlyOwner { maxAllowedUsers = _maxAllowedUsers; emit MaxAllowedUsersChanged(_maxAllowedUsers); } /// @notice Set ThalesAMM contract /// @param _thalesAMM ThalesAMM address function setThalesAmm(IThalesAMM _thalesAMM) external onlyOwner { require(address(_thalesAMM) != address(0), "Can not set a zero address!"); thalesAMM = _thalesAMM; sUSD.approve(address(thalesAMM), type(uint256).max); emit ThalesAMMChanged(address(_thalesAMM)); } /// @notice Set defaultLiquidityProvider wallet /// @param _defaultLiquidityProvider default liquidity provider function setDefaultLiquidityProvider(address _defaultLiquidityProvider) external onlyOwner { require(_defaultLiquidityProvider != address(0), "Can not set a zero address!"); defaultLiquidityProvider = _defaultLiquidityProvider; emit DefaultLiquidityProviderChanged(_defaultLiquidityProvider); } /// @notice Set length of rounds /// @param _roundLength Length of a round in miliseconds function setRoundLength(uint _roundLength) external onlyOwner { require(!started, "Can't change round length after start"); roundLength = _roundLength; emit RoundLengthChanged(_roundLength); } /// @notice set utilization rate parameter /// @param _utilizationRate value as percentage function setUtilizationRate(uint _utilizationRate) external onlyOwner { utilizationRate = _utilizationRate; emit UtilizationRateChanged(_utilizationRate); } /// @notice set SafeBox params /// @param _safeBox where to send a profit reserved for protocol from each round /// @param _safeBoxImpact how much is the SafeBox percentage function setSafeBoxParams(address _safeBox, uint _safeBoxImpact) external onlyOwner { safeBox = _safeBox; safeBoxImpact = _safeBoxImpact; emit SetSafeBoxParams(_safeBox, _safeBoxImpact); } /* ========== MODIFIERS ========== */ modifier canDeposit(uint amount) { require(!withdrawalRequested[msg.sender], "Withdrawal is requested, cannot deposit"); require(totalDeposited + amount <= maxAllowedDeposit, "Deposit amount exceeds AMM LP cap"); if (balancesPerRound[round][msg.sender] == 0 && balancesPerRound[round + 1][msg.sender] == 0) { require(amount >= minDepositAmount, "Amount less than minDepositAmount"); } _; } modifier canWithdraw() { require(started, "Pool has not started"); require(!withdrawalRequested[msg.sender], "Withdrawal already requested"); require(balancesPerRound[round][msg.sender] > 0, "Nothing to withdraw"); require(balancesPerRound[round + 1][msg.sender] == 0, "Can't withdraw as you already deposited for next round"); _; } modifier onlyAMM() { require(msg.sender == address(thalesAMM), "only the AMM may perform these methods"); _; } modifier roundClosingNotPrepared() { require(!roundClosingPrepared, "Not allowed during roundClosingPrepared"); _; } /* ========== EVENTS ========== */ event PoolStarted(); event Deposited(address user, uint amount, uint round); event WithdrawalRequested(address user); event RoundClosed(uint round, uint roundPnL); event Claimed(address user, uint amount); event RoundPoolCreated(uint _round, address roundPool); event PoolRoundMastercopyChanged(address newMastercopy); event StakedThalesMultiplierChanged(uint _stakedThalesMultiplier); event StakingThalesChanged(address stakingThales); event MaxAllowedDepositChanged(uint maxAllowedDeposit); event MinAllowedDepositChanged(uint minAllowedDeposit); event MaxAllowedUsersChanged(uint MaxAllowedUsersChanged); event ThalesAMMChanged(address thalesAMM); event DefaultLiquidityProviderChanged(address newProvider); event AddedIntoWhitelist(address _whitelistAddress, bool _flag); event AddedIntoWhitelistStaker(address _whitelistAddress, bool _flag); event RoundLengthChanged(uint roundLength); event RoundClosingPrepared(uint round); event RoundClosingBatchProcessed(uint round, uint batchSize); event UtilizationRateChanged(uint utilizationRate); event SetSafeBoxParams(address safeBox, uint safeBoxImpact); event SafeBoxSharePaid(uint safeBoxShare, uint safeBoxAmount); }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts v4.4.1 (token/ERC20/utils/SafeERC20.sol) pragma solidity ^0.8.0; import "../IERC20Upgradeable.sol"; import "../../../utils/AddressUpgradeable.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 SafeERC20Upgradeable { using AddressUpgradeable for address; function safeTransfer( IERC20Upgradeable token, address to, uint256 value ) internal { _callOptionalReturn(token, abi.encodeWithSelector(token.transfer.selector, to, value)); } function safeTransferFrom( IERC20Upgradeable 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( IERC20Upgradeable 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( IERC20Upgradeable 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( IERC20Upgradeable 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(IERC20Upgradeable 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 v4.4.1 (access/Ownable.sol) pragma solidity ^0.8.0; import "../utils/ContextUpgradeable.sol"; import "../proxy/utils/Initializable.sol"; /** * @dev Contract module which provides a basic access control mechanism, where * there is an account (an owner) that can be granted exclusive access to * specific functions. * * By default, the owner account will be the one that deploys the contract. This * can later be changed with {transferOwnership}. * * This module is used through inheritance. It will make available the modifier * `onlyOwner`, which can be applied to your functions to restrict their use to * the owner. */ abstract contract OwnableUpgradeable is Initializable, ContextUpgradeable { address private _owner; event OwnershipTransferred(address indexed previousOwner, address indexed newOwner); /** * @dev Initializes the contract setting the deployer as the initial owner. */ function __Ownable_init() internal onlyInitializing { __Context_init_unchained(); __Ownable_init_unchained(); } function __Ownable_init_unchained() internal onlyInitializing { _transferOwnership(_msgSender()); } /** * @dev Returns the address of the current owner. */ function owner() public view virtual returns (address) { return _owner; } /** * @dev Throws if called by any account other than the owner. */ modifier onlyOwner() { require(owner() == _msgSender(), "Ownable: caller is not the owner"); _; } /** * @dev Leaves the contract without owner. It will not be possible to call * `onlyOwner` functions anymore. Can only be called by the current owner. * * NOTE: Renouncing ownership will leave the contract without an owner, * thereby removing any functionality that is only available to the owner. */ function renounceOwnership() public virtual onlyOwner { _transferOwnership(address(0)); } /** * @dev Transfers ownership of the contract to a new account (`newOwner`). * Can only be called by the current owner. */ function transferOwnership(address newOwner) public virtual onlyOwner { require(newOwner != address(0), "Ownable: new owner is the zero address"); _transferOwnership(newOwner); } /** * @dev Transfers ownership of the contract to a new account (`newOwner`). * Internal function without access restriction. */ function _transferOwnership(address newOwner) internal virtual { address oldOwner = _owner; _owner = newOwner; emit OwnershipTransferred(oldOwner, newOwner); } uint256[49] private __gap; }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts v4.4.1 (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 a proxied contract can't have 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 { __Context_init_unchained(); __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()); } uint256[49] private __gap; }
// SPDX-License-Identifier: MIT pragma solidity ^0.8.0; /** * @dev Contract module that helps prevent reentrant calls to a function. * * Inheriting from `ReentrancyGuard` will make the `nonReentrant` modifier * available, which can be aplied 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. */ contract ProxyReentrancyGuard { /// @dev counter to allow mutex lock with only one SSTORE operation uint256 private _guardCounter; bool private _initialized; function initNonReentrant() public { require(!_initialized, "Already initialized"); _initialized = true; _guardCounter = 1; } /** * @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 make it call a * `private` function that does the actual work. */ modifier nonReentrant() { _guardCounter += 1; uint256 localCounter = _guardCounter; _; require(localCounter == _guardCounter, "ReentrancyGuard: reentrant call"); } }
// SPDX-License-Identifier: MIT pragma solidity ^0.8.0; // Clone of syntetix contract without constructor contract ProxyOwned { address public owner; address public nominatedOwner; bool private _initialized; bool private _transferredAtInit; function setOwner(address _owner) public { require(_owner != address(0), "Owner address cannot be 0"); require(!_initialized, "Already initialized, use nominateNewOwner"); _initialized = true; owner = _owner; emit OwnerChanged(address(0), _owner); } function nominateNewOwner(address _owner) external onlyOwner { nominatedOwner = _owner; emit OwnerNominated(_owner); } function acceptOwnership() external { require(msg.sender == nominatedOwner, "You must be nominated before you can accept ownership"); emit OwnerChanged(owner, nominatedOwner); owner = nominatedOwner; nominatedOwner = address(0); } function transferOwnershipAtInit(address proxyAddress) external onlyOwner { require(proxyAddress != address(0), "Invalid address"); require(!_transferredAtInit, "Already transferred"); owner = proxyAddress; _transferredAtInit = true; emit OwnerChanged(owner, proxyAddress); } modifier onlyOwner { _onlyOwner(); _; } function _onlyOwner() private view { require(msg.sender == owner, "Only the contract owner may perform this action"); } event OwnerNominated(address newOwner); event OwnerChanged(address oldOwner, address newOwner); }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v4.7.0) (proxy/Clones.sol) pragma solidity ^0.8.0; /** * @dev https://eips.ethereum.org/EIPS/eip-1167[EIP 1167] is a standard for * deploying minimal proxy contracts, also known as "clones". * * > To simply and cheaply clone contract functionality in an immutable way, this standard specifies * > a minimal bytecode implementation that delegates all calls to a known, fixed address. * * The library includes functions to deploy a proxy using either `create` (traditional deployment) or `create2` * (salted deterministic deployment). It also includes functions to predict the addresses of clones deployed using the * deterministic method. * * _Available since v3.4._ */ library Clones { /** * @dev Deploys and returns the address of a clone that mimics the behaviour of `implementation`. * * This function uses the create opcode, which should never revert. */ function clone(address implementation) internal returns (address instance) { /// @solidity memory-safe-assembly assembly { let ptr := mload(0x40) mstore(ptr, 0x3d602d80600a3d3981f3363d3d373d3d3d363d73000000000000000000000000) mstore(add(ptr, 0x14), shl(0x60, implementation)) mstore(add(ptr, 0x28), 0x5af43d82803e903d91602b57fd5bf30000000000000000000000000000000000) instance := create(0, ptr, 0x37) } require(instance != address(0), "ERC1167: create failed"); } /** * @dev Deploys and returns the address of a clone that mimics the behaviour of `implementation`. * * This function uses the create2 opcode and a `salt` to deterministically deploy * the clone. Using the same `implementation` and `salt` multiple time will revert, since * the clones cannot be deployed twice at the same address. */ function cloneDeterministic(address implementation, bytes32 salt) internal returns (address instance) { /// @solidity memory-safe-assembly assembly { let ptr := mload(0x40) mstore(ptr, 0x3d602d80600a3d3981f3363d3d373d3d3d363d73000000000000000000000000) mstore(add(ptr, 0x14), shl(0x60, implementation)) mstore(add(ptr, 0x28), 0x5af43d82803e903d91602b57fd5bf30000000000000000000000000000000000) instance := create2(0, ptr, 0x37, salt) } require(instance != address(0), "ERC1167: create2 failed"); } /** * @dev Computes the address of a clone deployed using {Clones-cloneDeterministic}. */ function predictDeterministicAddress( address implementation, bytes32 salt, address deployer ) internal pure returns (address predicted) { /// @solidity memory-safe-assembly assembly { let ptr := mload(0x40) mstore(ptr, 0x3d602d80600a3d3981f3363d3d373d3d3d363d73000000000000000000000000) mstore(add(ptr, 0x14), shl(0x60, implementation)) mstore(add(ptr, 0x28), 0x5af43d82803e903d91602b57fd5bf3ff00000000000000000000000000000000) mstore(add(ptr, 0x38), shl(0x60, deployer)) mstore(add(ptr, 0x4c), salt) mstore(add(ptr, 0x6c), keccak256(ptr, 0x37)) predicted := keccak256(add(ptr, 0x37), 0x55) } } /** * @dev Computes the address of a clone deployed using {Clones-cloneDeterministic}. */ function predictDeterministicAddress(address implementation, bytes32 salt) internal view returns (address predicted) { return predictDeterministicAddress(implementation, salt, address(this)); } }
// SPDX-License-Identifier: MIT pragma solidity >=0.5.16; import "./IPriceFeed.sol"; interface IThalesAMM { enum Position { Up, Down } function manager() external view returns (address); function availableToBuyFromAMM(address market, Position position) external view returns (uint); function impliedVolatilityPerAsset(bytes32 oracleKey) external view returns (uint); function buyFromAmmQuote( address market, Position position, uint amount ) external view returns (uint); function buyFromAMM( address market, Position position, uint amount, uint expectedPayout, uint additionalSlippage ) external returns (uint); function availableToSellToAMM(address market, Position position) external view returns (uint); function sellToAmmQuote( address market, Position position, uint amount ) external view returns (uint); function sellToAMM( address market, Position position, uint amount, uint expectedPayout, uint additionalSlippage ) external returns (uint); function isMarketInAMMTrading(address market) external view returns (bool); function price(address market, Position position) external view returns (uint); function buyPriceImpact( address market, Position position, uint amount ) external view returns (int); function sellPriceImpact( address market, Position position, uint amount ) external view returns (int); function priceFeed() external view returns (IPriceFeed); }
// SPDX-License-Identifier: MIT pragma solidity >=0.5.16; import "../interfaces/IPositionalMarketManager.sol"; import "../interfaces/IPosition.sol"; import "../interfaces/IPriceFeed.sol"; interface IPositionalMarket { /* ========== TYPES ========== */ enum Phase { Trading, Maturity, Expiry } enum Side { Up, Down } /* ========== VIEWS / VARIABLES ========== */ function getOptions() external view returns (IPosition up, IPosition down); function times() external view returns (uint maturity, uint destructino); function getOracleDetails() external view returns ( bytes32 key, uint strikePrice, uint finalPrice ); function fees() external view returns (uint poolFee, uint creatorFee); function deposited() external view returns (uint); function creator() external view returns (address); function resolved() external view returns (bool); function phase() external view returns (Phase); function oraclePrice() external view returns (uint); function oraclePriceAndTimestamp() external view returns (uint price, uint updatedAt); function canResolve() external view returns (bool); function result() external view returns (Side); function balancesOf(address account) external view returns (uint up, uint down); function totalSupplies() external view returns (uint up, uint down); function getMaximumBurnable(address account) external view returns (uint amount); /* ========== MUTATIVE FUNCTIONS ========== */ function mint(uint value) external; function exerciseOptions() external returns (uint); function burnOptions(uint amount) external; function burnOptionsMaximum() external; }
// SPDX-License-Identifier: MIT pragma solidity >=0.5.16; interface IStakingThales { function updateVolume(address account, uint amount) external; function updateStakingRewards( uint _currentPeriodRewards, uint _extraRewards, uint _revShare ) external; /* ========== VIEWS / VARIABLES ========== */ function totalStakedAmount() external view returns (uint); function stakedBalanceOf(address account) external view returns (uint); function currentPeriodRewards() external view returns (uint); function currentPeriodFees() external view returns (uint); function getLastPeriodOfClaimedRewards(address account) external view returns (uint); function getRewardsAvailable(address account) external view returns (uint); function getRewardFeesAvailable(address account) external view returns (uint); function getAlreadyClaimedRewards(address account) external view returns (uint); function getContractRewardFunds() external view returns (uint); function getContractFeeFunds() external view returns (uint); function getAMMVolume(address account) external view returns (uint); }
// SPDX-License-Identifier: MIT pragma solidity ^0.8.0; import "@openzeppelin/contracts-upgradeable/token/ERC20/utils/SafeERC20Upgradeable.sol"; import "../../interfaces/IPositionalMarket.sol"; import "./ThalesAMMLiquidityPool.sol"; contract ThalesAMMLiquidityPoolRound { /* ========== LIBRARIES ========== */ using SafeERC20Upgradeable for IERC20Upgradeable; /* ========== STATE VARIABLES ========== */ ThalesAMMLiquidityPool public liquidityPool; IERC20Upgradeable public sUSD; uint public round; uint public roundStartTime; uint public roundEndTime; /* ========== CONSTRUCTOR ========== */ bool public initialized; function initialize( address _liquidityPool, IERC20Upgradeable _sUSD, uint _round, uint _roundStartTime, uint _roundEndTime ) external { require(!initialized, "Already initialized"); initialized = true; liquidityPool = ThalesAMMLiquidityPool(_liquidityPool); sUSD = _sUSD; round = _round; roundStartTime = _roundStartTime; roundEndTime = _roundEndTime; sUSD.approve(_liquidityPool, type(uint256).max); } function updateRoundTimes(uint _roundStartTime, uint _roundEndTime) external onlyLiquidityPool { roundStartTime = _roundStartTime; roundEndTime = _roundEndTime; emit RoundTimesUpdated(_roundStartTime, _roundEndTime); } function exerciseMarketReadyToExercised(IPositionalMarket market) external onlyLiquidityPool { if (market.resolved()) { (uint upBalance, uint downBalance) = market.balancesOf(address(this)); if (upBalance > 0 || downBalance > 0) { market.exerciseOptions(); } } } function moveOptions( IERC20Upgradeable option, uint optionsAmount, address destination ) external onlyLiquidityPool { option.safeTransfer(destination, optionsAmount); } modifier onlyLiquidityPool() { require(msg.sender == address(liquidityPool), "only the Pool manager may perform these methods"); _; } event RoundTimesUpdated(uint _roundStartTime, uint _roundEndTime); }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts v4.4.1 (token/ERC20/IERC20.sol) pragma solidity ^0.8.0; /** * @dev Interface of the ERC20 standard as defined in the EIP. */ interface IERC20Upgradeable { /** * @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 `recipient`. * * Returns a boolean value indicating whether the operation succeeded. * * Emits a {Transfer} event. */ function transfer(address recipient, 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 `sender` to `recipient` 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 sender, address recipient, 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 (utils/Address.sol) pragma solidity ^0.8.0; /** * @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 * ==== */ function isContract(address account) internal view returns (bool) { // This method relies on extcodesize, which returns 0 for contracts in // construction, since the code is only stored at the end of the // constructor execution. uint256 size; assembly { size := extcodesize(account) } return size > 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 { __Context_init_unchained(); } 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; } uint256[50] private __gap; }
// SPDX-License-Identifier: MIT pragma solidity >=0.5.16; interface IPriceFeed { // Structs struct RateAndUpdatedTime { uint216 rate; uint40 time; } // Mutative functions function addAggregator(bytes32 currencyKey, address aggregatorAddress) external; function removeAggregator(bytes32 currencyKey) external; // Views function rateForCurrency(bytes32 currencyKey) external view returns (uint); function rateAndUpdatedTime(bytes32 currencyKey) external view returns (uint rate, uint time); function getRates() external view returns (uint[] memory); function getCurrencies() external view returns (bytes32[] memory); }
// SPDX-License-Identifier: MIT pragma solidity >=0.5.16; import "../interfaces/IPositionalMarket.sol"; interface IPositionalMarketManager { /* ========== VIEWS / VARIABLES ========== */ function durations() external view returns (uint expiryDuration, uint maxTimeToMaturity); function capitalRequirement() external view returns (uint); function marketCreationEnabled() external view returns (bool); function onlyAMMMintingAndBurning() external view returns (bool); function transformCollateral(uint value) external view returns (uint); function reverseTransformCollateral(uint value) external view returns (uint); function totalDeposited() external view returns (uint); function numActiveMarkets() external view returns (uint); function activeMarkets(uint index, uint pageSize) external view returns (address[] memory); function numMaturedMarkets() external view returns (uint); function maturedMarkets(uint index, uint pageSize) external view returns (address[] memory); function isActiveMarket(address candidate) external view returns (bool); function isKnownMarket(address candidate) external view returns (bool); function getThalesAMM() external view returns (address); /* ========== MUTATIVE FUNCTIONS ========== */ function createMarket( bytes32 oracleKey, uint strikePrice, uint maturity, uint initialMint // initial sUSD to mint options for, ) external returns (IPositionalMarket); function resolveMarket(address market) external; function expireMarkets(address[] calldata market) external; function transferSusdTo( address sender, address receiver, uint amount ) external; }
// SPDX-License-Identifier: MIT pragma solidity >=0.5.16; import "./IPositionalMarket.sol"; interface IPosition { /* ========== VIEWS / VARIABLES ========== */ function getBalanceOf(address account) external view returns (uint); function getTotalSupply() external view returns (uint); function exerciseWithAmount(address claimant, uint amount) external; }
{ "optimizer": { "enabled": true, "runs": 200 }, "outputSelection": { "*": { "*": [ "evm.bytecode", "evm.deployedBytecode", "devdoc", "userdoc", "metadata", "abi" ] } }, "libraries": {} }
Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
[{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"_whitelistAddress","type":"address"},{"indexed":false,"internalType":"bool","name":"_flag","type":"bool"}],"name":"AddedIntoWhitelist","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"_whitelistAddress","type":"address"},{"indexed":false,"internalType":"bool","name":"_flag","type":"bool"}],"name":"AddedIntoWhitelistStaker","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"user","type":"address"},{"indexed":false,"internalType":"uint256","name":"amount","type":"uint256"}],"name":"Claimed","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"newProvider","type":"address"}],"name":"DefaultLiquidityProviderChanged","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"user","type":"address"},{"indexed":false,"internalType":"uint256","name":"amount","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"round","type":"uint256"}],"name":"Deposited","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"maxAllowedDeposit","type":"uint256"}],"name":"MaxAllowedDepositChanged","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"MaxAllowedUsersChanged","type":"uint256"}],"name":"MaxAllowedUsersChanged","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"minAllowedDeposit","type":"uint256"}],"name":"MinAllowedDepositChanged","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"oldOwner","type":"address"},{"indexed":false,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnerChanged","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnerNominated","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"account","type":"address"}],"name":"Paused","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"newMastercopy","type":"address"}],"name":"PoolRoundMastercopyChanged","type":"event"},{"anonymous":false,"inputs":[],"name":"PoolStarted","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"round","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"roundPnL","type":"uint256"}],"name":"RoundClosed","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"round","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"batchSize","type":"uint256"}],"name":"RoundClosingBatchProcessed","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"round","type":"uint256"}],"name":"RoundClosingPrepared","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"roundLength","type":"uint256"}],"name":"RoundLengthChanged","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"_round","type":"uint256"},{"indexed":false,"internalType":"address","name":"roundPool","type":"address"}],"name":"RoundPoolCreated","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"safeBoxShare","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"safeBoxAmount","type":"uint256"}],"name":"SafeBoxSharePaid","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"safeBox","type":"address"},{"indexed":false,"internalType":"uint256","name":"safeBoxImpact","type":"uint256"}],"name":"SetSafeBoxParams","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"_stakedThalesMultiplier","type":"uint256"}],"name":"StakedThalesMultiplierChanged","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"stakingThales","type":"address"}],"name":"StakingThalesChanged","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"thalesAMM","type":"address"}],"name":"ThalesAMMChanged","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"account","type":"address"}],"name":"Unpaused","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"utilizationRate","type":"uint256"}],"name":"UtilizationRateChanged","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"user","type":"address"}],"name":"WithdrawalRequested","type":"event"},{"inputs":[],"name":"acceptOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"","type":"uint256"}],"name":"allocationPerRound","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"","type":"uint256"},{"internalType":"address","name":"","type":"address"}],"name":"balancesPerRound","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"canCloseCurrentRound","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"closeRound","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"market","type":"address"},{"internalType":"uint256","name":"amountToMint","type":"uint256"}],"name":"commitTrade","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"roundA","type":"uint256"},{"internalType":"uint256","name":"roundB","type":"uint256"}],"name":"cumulativePnLBetweenRounds","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"","type":"uint256"}],"name":"cumulativeProfitAndLoss","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"defaultLiquidityProvider","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"deposit","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"exerciseMarketsReadyToExercised","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"batchSize","type":"uint256"}],"name":"exerciseMarketsReadyToExercisedBatch","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"firstRoundStartTime","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"market","type":"address"}],"name":"getMarketPool","outputs":[{"internalType":"address","name":"roundPool","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"market","type":"address"}],"name":"getMarketRound","outputs":[{"internalType":"uint256","name":"_round","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"user","type":"address"}],"name":"getMaxAvailableDepositForUser","outputs":[{"internalType":"uint256","name":"maxDepositForUser","type":"uint256"},{"internalType":"uint256","name":"availableToDepositForUser","type":"uint256"},{"internalType":"uint256","name":"stakedThalesForUser","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"market","type":"address"},{"internalType":"uint256","name":"optionsAmount","type":"uint256"},{"internalType":"enum IThalesAMM.Position","name":"position","type":"uint8"}],"name":"getOptionsForBuy","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"market","type":"address"},{"internalType":"uint256","name":"optionsAmount","type":"uint256"},{"internalType":"address","name":"position","type":"address"}],"name":"getOptionsForBuyByAddress","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"market","type":"address"}],"name":"getOrCreateMarketPool","outputs":[{"internalType":"address","name":"roundPool","type":"address"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_round","type":"uint256"}],"name":"getRoundEndTime","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_round","type":"uint256"}],"name":"getRoundStartTime","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"getUsersCountInCurrentRound","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"hasMarketsReadyToBeExercised","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"initNonReentrant","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"components":[{"internalType":"address","name":"_owner","type":"address"},{"internalType":"contract IThalesAMM","name":"_thalesAMM","type":"address"},{"internalType":"contract IERC20Upgradeable","name":"_sUSD","type":"address"},{"internalType":"uint256","name":"_roundLength","type":"uint256"},{"internalType":"uint256","name":"_maxAllowedDeposit","type":"uint256"},{"internalType":"uint256","name":"_minDepositAmount","type":"uint256"},{"internalType":"uint256","name":"_maxAllowedUsers","type":"uint256"},{"internalType":"bool","name":"_needsTransformingCollateral","type":"bool"}],"internalType":"struct ThalesAMMLiquidityPool.InitParams","name":"params","type":"tuple"}],"name":"initialize","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"","type":"uint256"},{"internalType":"address","name":"","type":"address"}],"name":"isTradingMarketInARound","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"user","type":"address"}],"name":"isUserLPing","outputs":[{"internalType":"bool","name":"isUserInLP","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"","type":"uint256"},{"internalType":"address","name":"","type":"address"}],"name":"marketAlreadyExercisedInRound","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"marketsProcessedInRound","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxAllowedDeposit","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxAllowedUsers","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"minDepositAmount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"needsTransformingCollateral","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_owner","type":"address"}],"name":"nominateNewOwner","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"nominatedOwner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"onlyWhitelistedStakersAllowed","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"share","type":"uint256"}],"name":"partialWithdrawalRequest","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"paused","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"poolRoundMastercopy","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"prepareRoundClosing","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"batchSize","type":"uint256"}],"name":"processRoundClosingBatch","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"","type":"uint256"}],"name":"profitAndLossPerRound","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"round","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"roundClosingPrepared","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"roundLength","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"","type":"uint256"}],"name":"roundPools","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"sUSD","outputs":[{"internalType":"contract IERC20Upgradeable","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"safeBox","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"safeBoxImpact","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_defaultLiquidityProvider","type":"address"}],"name":"setDefaultLiquidityProvider","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_maxAllowedDeposit","type":"uint256"}],"name":"setMaxAllowedDeposit","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_maxAllowedUsers","type":"uint256"}],"name":"setMaxAllowedUsers","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_minDepositAmount","type":"uint256"}],"name":"setMinAllowedDeposit","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_owner","type":"address"}],"name":"setOwner","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"_setPausing","type":"bool"}],"name":"setPaused","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_poolRoundMastercopy","type":"address"}],"name":"setPoolRoundMastercopy","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_roundLength","type":"uint256"}],"name":"setRoundLength","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_safeBox","type":"address"},{"internalType":"uint256","name":"_safeBoxImpact","type":"uint256"}],"name":"setSafeBoxParams","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"contract IStakingThales","name":"_stakingThales","type":"address"}],"name":"setStakingThales","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"contract IThalesAMM","name":"_thalesAMM","type":"address"}],"name":"setThalesAmm","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_utilizationRate","type":"uint256"}],"name":"setUtilizationRate","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"stakedThalesMultiplier","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"stakingThales","outputs":[{"internalType":"contract IStakingThales","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"start","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"started","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"thalesAMM","outputs":[{"internalType":"contract IThalesAMM","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalDeposited","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"","type":"uint256"},{"internalType":"uint256","name":"","type":"uint256"}],"name":"tradingMarketsPerRound","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"proxyAddress","type":"address"}],"name":"transferOwnershipAtInit","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"","type":"uint256"},{"internalType":"address","name":"","type":"address"}],"name":"userInRound","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"usersCurrentlyInPool","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"","type":"uint256"},{"internalType":"uint256","name":"","type":"uint256"}],"name":"usersPerRound","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"usersProcessedInRound","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"utilizationRate","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"whitelistedDeposits","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"whitelistedStakers","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"withdrawalRequest","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"withdrawalRequested","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"withdrawalShare","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"}]
Contract Creation Code
608060405234801561001057600080fd5b50615042806100206000396000f3fe608060405234801561001057600080fd5b50600436106104805760003560e01c806378fe782d11610257578063bdcc22e911610146578063ddcc8fe9116100c3578063f475f13b11610087578063f475f13b14610a4f578063f61fcb8b14610a62578063fd8a8cc614610a82578063fdaf17f014610a95578063ff50abdc14610ab857600080fd5b8063ddcc8fe914610a1c578063e278fe6f14610a2f578063e3041fd914610a37578063ebc7977214610a3f578063ee161cce14610a4757600080fd5b8063d27c07971161010a578063d27c0797146109d1578063d69fb668146109da578063d95ad45c146109e3578063db7f92d4146109f6578063ddc6ac2314610a0957600080fd5b8063bdcc22e914610987578063be9a655514610990578063c2edfc7314610998578063c3b83f5f146109ab578063c9f4ff46146109be57600080fd5b8063930102f2116101d4578063a8df539f11610198578063a8df539f14610939578063b6b55f2514610946578063b745abe314610959578063b9b1be8b14610961578063bcfa89371461097457600080fd5b8063930102f2146108ee5780639324cac7146108f757806398faa2ce1461090a5780639bd2e61b146109135780639faf68021461092657600080fd5b8063828fce881161021b578063828fce88146108a45780638b649b94146108b75780638b844412146108c05780638da5cb5b146108c85780638fe812b4146108e157600080fd5b806378fe782d1461084057806379ba5097146108535780637a1e0aa81461085b5780637f7b8c501461086e5780637f8525821461089157600080fd5b806348663e9511610373578063610589e1116102f0578063681312f5116102b4578063681312f5146107c35780636c321c8a146107d657806371143ab9146107df5780637261b81a1461080d57806374094edd1461082057600080fd5b8063610589e114610759578063634e0d9714610762578063645006ca1461079057806365e0e725146107995780636685fdc2146107ac57600080fd5b8063572e36e611610337578063572e36e6146106ef57806358c09cc0146107075780635c7b396e1461071a5780635c975abb146107235780635ddd3e831461072e57600080fd5b806348663e95146106835780634ae7937f146106965780634d549a42146106b657806352129e48146106c957806353a47bb7146106dc57600080fd5b80631baa885611610401578063336d30ed116103c5578063336d30ed14610601578063343e4f9f146106215780633b92d7581461063457806340774ff6146106475780634651f0801461065a57600080fd5b80631baa8856146105a65780631daae173146105af5780631f2698ab146105d2578063202ffce8146105e6578063311c56df146105f957600080fd5b8063146ca53111610448578063146ca531146105365780631627540c1461053f57806316c38b3c14610552578063175e6700146105655780631b2a52d81461059357600080fd5b806302f97b0c14610485578063042047cf146104c8578063082f9fd4146104d557806312b19a131461050057806313af403514610521575b600080fd5b6104b3610493366004614c7c565b608360209081526000928352604080842090915290825290205460ff1681565b60405190151581526020015b60405180910390f35b6080546104b39060ff1681565b6104e86104e3366004614ca0565b610ac1565b6040516001600160a01b0390911681526020016104bf565b61051361050e366004614c4c565b610af9565b6040519081526020016104bf565b61053461052f366004614b08565b610b1c565b005b61051360695481565b61053461054d366004614b08565b610c5c565b610534610560366004614bc9565b610cb2565b610578610573366004614b08565b610cd2565b604080519384526020840192909252908201526060016104bf565b6105346105a1366004614c4c565b610e3c565b610513606b5481565b6104b36105bd366004614b08565b60716020526000908152604090205460ff1681565b6068546104b390600160a01b900460ff1681565b6105346105f4366004614c4c565b61148a565b6105346114c7565b61051361060f366004614c4c565b60756020526000908152604090205481565b6104e861062f366004614ca0565b611746565b607a546104e8906001600160a01b031681565b610534610655366004614c4c565b611762565b6104e8610668366004614c4c565b606c602052600090815260409020546001600160a01b031681565b6089546104e8906001600160a01b031681565b6105136106a4366004614c4c565b60706020526000908152604090205481565b6105346106c4366004614b08565b61179f565b6105346106d7366004614b4f565b61181b565b6001546104e8906001600160a01b031681565b6067546104e89061010090046001600160a01b031681565b610534610715366004614b24565b611991565b61051360855481565b60345460ff166104b3565b61051361073c366004614c7c565b606f60209081526000928352604080842090915290825290205481565b61051360785481565b6104b3610770366004614c7c565b606e60209081526000928352604080842090915290825290205460ff1681565b61051360775481565b6105346107a7366004614b08565b611ddf565b6069546000908152606d6020526040902054610513565b6105346107d1366004614c4c565b611e5b565b61051360885481565b6104b36107ed366004614c7c565b607360209081526000928352604080842090915290825290205460ff1681565b61053461081b366004614c3a565b611f00565b61051361082e366004614c4c565b60746020526000908152604090205481565b61053461084e366004614b08565b61210b565b61053461221b565b610534610869366004614b24565b612318565b6104b361087c366004614b08565b607e6020526000908152604090205460ff1681565b61053461089f366004614b08565b612380565b6105346108b2366004614b90565b6123d6565b610513606a5481565b6105346125f2565b6000546104e8906201000090046001600160a01b031681565b6082546104b39060ff1681565b610513607c5481565b6068546104e8906001600160a01b031681565b61051360865481565b610534610921366004614c4c565b6128e9565b610513610934366004614b08565b612bef565b6084546104b39060ff1681565b610534610954366004614c4c565b612cac565b6104b3613192565b607d546104e8906001600160a01b031681565b610534610982366004614c4c565b613370565b61051360795481565b6105346135ef565b6104e86109a6366004614b08565b61379e565b6105346109b9366004614b08565b6137cd565b6105136109cc366004614ca0565b6138e6565b61051360765481565b610513608a5481565b6104b36109f1366004614b08565b613926565b610534610a04366004614c4c565b6139e5565b610513610a17366004614c4c565b613a22565b610534610a2a366004614c4c565b613a3d565b610534613a7a565b610534613f0b565b6105346140e9565b6104b3614147565b6104e8610a5d366004614b08565b61429e565b610513610a70366004614b08565b60876020526000908152604090205481565b607b546104e8906001600160a01b031681565b6104b3610aa3366004614b08565b60816020526000908152604090205460ff1681565b610513607f5481565b60726020528160005260406000208181548110610add57600080fd5b6000918252602090912001546001600160a01b03169150829050565b6000606a5482610b099190614f56565b606b54610b169190614f1e565b92915050565b6001600160a01b038116610b775760405162461bcd60e51b815260206004820152601960248201527f4f776e657220616464726573732063616e6e6f7420626520300000000000000060448201526064015b60405180910390fd5b600154600160a01b900460ff1615610be35760405162461bcd60e51b815260206004820152602960248201527f416c726561647920696e697469616c697a65642c20757365206e6f6d696e617460448201526832a732bba7bbb732b960b91b6064820152608401610b6e565b6001805460ff60a01b1916600160a01b179055600080546001600160a01b03831662010000810262010000600160b01b03199092169190911782556040805192835260208301919091527fb532073b38c83145e3e5135377a08bf9aab55bc0fd7c1179cd4fb995d2a5159c91015b60405180910390a150565b610c64614371565b600180546001600160a01b0319166001600160a01b0383169081179091556040519081527f906a1c6bd7e3091ea86693dd029a831c19049ce77f1dce2ce0bab1cacbabce2290602001610c51565b610cba614371565b80610cca57610cc76143eb565b50565b610cc761447e565b6000806000806069546001610ce79190614f1e565b607b54604051631676539160e01b81526001600160a01b03888116600483015292935091169063167653919060240160206040518083038186803b158015610d2e57600080fd5b505afa158015610d42573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610d669190614c64565b9150610d91670de0b6b3a7640000607c5484610d829190614f56565b610d8c9190614f36565b6144d6565b6000828152606f602081815260408084206001600160a01b038b1680865290835281852054606954865293835281852090855290915290912054919550610dd791614f1e565b8411610de4576000610e32565b6000818152606f602081815260408084206001600160a01b038a1680865290835281852054606954865293835281852090855290915290912054610e289086614f75565b610e329190614f75565b9250509193909250565b600160666000828254610e4f9190614f1e565b909155505060665460345460ff1615610e7a5760405162461bcd60e51b8152600401610b6e90614da7565b60845460ff16610ecc5760405162461bcd60e51b815260206004820152601a60248201527f526f756e6420636c6f73696e67206e6f742070726570617265640000000000006044820152606401610b6e565b6069546000908152606d602052604090205460855410610f2e5760405162461bcd60e51b815260206004820152601b60248201527f416c6c20757365727320616c72656164792070726f63657373656400000000006044820152606401610b6e565b60008211610f4e5760405162461bcd60e51b8152600401610b6e90614e6e565b6069546000908152606c60205260408120546085546001600160a01b039091169190610f7b908590614f1e565b6069546000908152606d6020526040902054909150811115610fab57506069546000908152606d60205260409020545b6085545b81811015611426576069546000908152606d60205260408120805483908110610fe857634e487b7160e01b600052603260045260246000fd5b6000918252602080832090910154606954835260748252604080842054606f84528185206001600160a01b0390931680865292909352832054909350670de0b6b3a76400009161103791614f56565b6110419190614f36565b6001600160a01b03831660009081526071602052604090205490915060ff1615801561107d575060695460009081526074602052604090205415155b156111e25780606f600060695460016110969190614f1e565b81526020019081526020016000206000846001600160a01b03166001600160a01b03168152602001908152602001600020546110d29190614f1e565b606f600060695460016110e59190614f1e565b81526020019081526020016000206000846001600160a01b03166001600160a01b0316815260200190815260200160002081905550606d6000606954600161112d9190614f1e565b8152602080820192909252604001600090812080546001810182559082529190200180546001600160a01b0319166001600160a01b0384811691909117909155607b5416156111dd57607b546040516302c7739b60e01b81526001600160a01b03848116600483015260248201849052909116906302c7739b90604401600060405180830381600087803b1580156111c457600080fd5b505af11580156111d8573d6000803e3d6000fd5b505050505b611400565b6001600160a01b03821660009081526087602052604090205415611358576001600160a01b038216600090815260876020526040812054670de0b6b3a76400009061122d9084614f56565b6112379190614f36565b606854909150611252906001600160a01b03168785846144fc565b604080516001600160a01b0385168152602081018390527fd8138f8a3f377c5259ca548e70e4c2de94f129f5a11036a15b69513cba2b426a910160405180910390a16001600160a01b0383166000908152607160209081526040808320805460ff1916905560879091528120819055606954606d91906112d3906001614f1e565b8152602080820192909252604001600090812080546001810182559082529190200180546001600160a01b0319166001600160a01b0385161790556113188183614f75565b606f6000606954600161132b9190614f1e565b8152602080820192909252604090810160009081206001600160a01b038816825290925290205550611400565b6000606f6000606954600161136d9190614f1e565b8152602080820192909252604090810160009081206001600160a01b038088168352935220919091556068546113a691168684846144fc565b6001600160a01b038216600081815260716020908152604091829020805460ff19169055815192835282018390527fd8138f8a3f377c5259ca548e70e4c2de94f129f5a11036a15b69513cba2b426a910160405180910390a15b60855461140e906001614f1e565b6085555081905061141e81614fb8565b915050610faf565b5060695460408051918252602082018690527f2e692c8fcabe33ba22535323e79dcb54ef22dccdb8e4ebdd9f2a7ffb1a28856c910160405180910390a1505060665481146114865760405162461bcd60e51b8152600401610b6e90614eb0565b5050565b611492614371565b60788190556040518181527fe7c2c09f66c8b970b4a99250f4d0844e1496b9d51d4760a17b0134ddd52023e190602001610c51565b6001606660008282546114da9190614f1e565b9091555050606654606854600160a01b900460ff1661150b5760405162461bcd60e51b8152600401610b6e90614d33565b3360009081526071602052604090205460ff161561156b5760405162461bcd60e51b815260206004820152601c60248201527f5769746864726177616c20616c726561647920726571756573746564000000006044820152606401610b6e565b6069546000908152606f602090815260408083203384529091529020546115ca5760405162461bcd60e51b81526020600482015260136024820152724e6f7468696e6720746f20776974686472617760681b6044820152606401610b6e565b606f600060695460016115dd9190614f1e565b815260208082019290925260409081016000908120338252909252902054156116185760405162461bcd60e51b8152600401610b6e90614e18565b60345460ff161561163b5760405162461bcd60e51b8152600401610b6e90614da7565b60845460ff161561165e5760405162461bcd60e51b8152600401610b6e90614dd1565b6069546000908152606f60209081526040808320338452909152902054607f5411156116bf576069546000908152606f60209081526040808320338452909152812054607f8054919290916116b4908490614f75565b909155506116c59050565b6000607f555b60016079546116d49190614f75565b60795533600081815260716020908152604091829020805460ff1916600117905590519182527fe5892ff2a8b08efb903ffbba1f0514c1d3e22eea34dd5b89cf30aabce03dde5a910160405180910390a16066548114610cc75760405162461bcd60e51b8152600401610b6e90614eb0565b606d6020528160005260406000208181548110610add57600080fd5b61176a614371565b60888190556040518181527fc117ccf765672707ebe3c1606037488c1e27dc1f42b5266e3d6b496db7d4209e90602001610c51565b6117a7614371565b6001600160a01b0381166117cd5760405162461bcd60e51b8152600401610b6e90614ee7565b607d80546001600160a01b0319166001600160a01b0383169081179091556040519081527fa65a5aa86bb6f8e75752296da3ebda45474c8a302fc640c3b62868793862a03390602001610c51565b60016066600082825461182e9190614f1e565b909155505060665460345460ff16156118595760405162461bcd60e51b8152600401610b6e90614da7565b60675461010090046001600160a01b031633146118885760405162461bcd60e51b8152600401610b6e90614d61565b60845460ff16156118ab5760405162461bcd60e51b8152600401610b6e90614dd1565b821561196a57606854600160a01b900460ff166118da5760405162461bcd60e51b8152600401610b6e90614d33565b60006118e585612bef565b905060006118f282614556565b606754604051633cf57f7560e21b81526001600160a01b038781166004830152602482018990526101009092048216604482015291925082169063f3d5fdd490606401600060405180830381600087803b15801561194f57600080fd5b505af1158015611963573d6000803e3d6000fd5b5050505050505b606654811461198b5760405162461bcd60e51b8152600401610b6e90614eb0565b50505050565b6001606660008282546119a49190614f1e565b909155505060665460345460ff16156119cf5760405162461bcd60e51b8152600401610b6e90614da7565b60675461010090046001600160a01b031633146119fe5760405162461bcd60e51b8152600401610b6e90614d61565b60845460ff1615611a215760405162461bcd60e51b8152600401610b6e90614dd1565b606854600160a01b900460ff16611a4a5760405162461bcd60e51b8152600401610b6e90614d33565b60008211611a9a5760405162461bcd60e51b815260206004820152601960248201527f43616e277420636f6d6d69742061207a65726f207472616465000000000000006044820152606401610b6e565b611aa3826144d6565b60825490925060ff16611ab65781611ac1565b611ac1826001614f1e565b91506000611ace84612bef565b90506000611adb82614556565b9050606954821415611c4057606754606854611b0b916001600160a01b03918216918491610100900416876144fc565b608854606954600090815260706020526040902054670de0b6b3a764000091611b3391614f56565b611b3d9190614f36565b606954600090815260706020526040902054611b599190614f75565b6068546040516370a0823160e01b81526001600160a01b038481166004830152909116906370a082319060240160206040518083038186803b158015611b9e57600080fd5b505afa158015611bb2573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611bd69190614c64565b1015611c3b5760405162461bcd60e51b815260206004820152602e60248201527f416d6f756e74206578636565647320617661696c61626c65207574696c697a6160448201526d1d1a5bdb88199bdc881c9bdd5b9960921b6064820152608401610b6e565b611d31565b6068546040516370a0823160e01b81526001600160a01b03838116600483015260009216906370a082319060240160206040518083038186803b158015611c8657600080fd5b505afa158015611c9a573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611cbe9190614c64565b9050848110611cf057606754606854611ceb916001600160a01b03918216918591610100900416886144fc565b611d2f565b6000611cfc8287614f75565b9050611d098184866146f7565b606754606854611d2d916001600160a01b03918216918691610100900416896144fc565b505b505b60008281526073602090815260408083206001600160a01b038916845290915290205460ff16611db75760008281526072602090815260408083208054600180820183559185528385200180546001600160a01b0319166001600160a01b038b1690811790915586855260738452828520908552909252909120805460ff191690911790555b50506066548114611dda5760405162461bcd60e51b8152600401610b6e90614eb0565b505050565b611de7614371565b6001600160a01b038116611e0d5760405162461bcd60e51b8152600401610b6e90614ee7565b607a80546001600160a01b0319166001600160a01b0383169081179091556040519081527faaf6f0738515c3cf390f1b3faec649d2dacb169d024089afc43bbe2fe66cd2d890602001610c51565b611e63614371565b606854600160a01b900460ff1615611ecb5760405162461bcd60e51b815260206004820152602560248201527f43616e2774206368616e676520726f756e64206c656e677468206166746572206044820152641cdd185c9d60da1b6064820152608401610b6e565b606a8190556040518181527f1d1fb7111c3779798bd4aefb2daea07ee8257a13c7eaceba89b4b1ccd405050d90602001610c51565b600054610100900460ff16611f1b5760005460ff1615611f1f565b303b155b611f825760405162461bcd60e51b815260206004820152602e60248201527f496e697469616c697a61626c653a20636f6e747261637420697320616c72656160448201526d191e481a5b9a5d1a585b1a5e995960921b6064820152608401610b6e565b600054610100900460ff16158015611fa4576000805461ffff19166101011790555b611fb461052f6020840184614b08565b611fbc6140e9565b611fcc6040830160208401614b08565b606780546001600160a01b039290921661010002610100600160a81b03199092169190911790556120036060830160408401614b08565b606880546001600160a01b0319166001600160a01b03929092169190911790556060820135606a55608082013560765560a082013560775560c0820135607855612054610100830160e08401614bc9565b6082805460ff191691151591909117905560685460675460405163095ea7b360e01b81526101009091046001600160a01b03908116600483015260001960248301529091169063095ea7b390604401602060405180830381600087803b1580156120bd57600080fd5b505af11580156120d1573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906120f59190614be5565b508015611486576000805461ff00191690555050565b612113614371565b6001600160a01b0381166121395760405162461bcd60e51b8152600401610b6e90614ee7565b60678054610100600160a81b0319166101006001600160a01b038481168202929092179283905560685460405163095ea7b360e01b81529190930482166004820152600019602482015291169063095ea7b390604401602060405180830381600087803b1580156121a957600080fd5b505af11580156121bd573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906121e19190614be5565b506040516001600160a01b03821681527fcd9f73cb77eb3f2287cdfd1b291c691d33e2cb7ca1774dba627bc61f163d6b9b90602001610c51565b6001546001600160a01b031633146122935760405162461bcd60e51b815260206004820152603560248201527f596f75206d757374206265206e6f6d696e61746564206265666f726520796f7560448201527402063616e20616363657074206f776e65727368697605c1b6064820152608401610b6e565b60005460015460408051620100009093046001600160a01b03908116845290911660208301527fb532073b38c83145e3e5135377a08bf9aab55bc0fd7c1179cd4fb995d2a5159c910160405180910390a1600180546000805462010000600160b01b0319166001600160a01b03831662010000021790556001600160a01b0319169055565b612320614371565b608980546001600160a01b0319166001600160a01b038416908117909155608a82905560408051918252602082018390527fa1a8623472ca4e2879372be60dfd1ff0675778e49f7379eedd98ca57cf36b21a910160405180910390a15050565b612388614371565b607b80546001600160a01b0319166001600160a01b0383169081179091556040519081527f3c7faa500efbd341aedbf1ee7ebd52ea36d226dda76bc01dd39b43d46f55b8d390602001610c51565b6001606660008282546123e99190614f1e565b909155505060665460345460ff16156124145760405162461bcd60e51b8152600401610b6e90614da7565b60675461010090046001600160a01b031633146124435760405162461bcd60e51b8152600401610b6e90614d61565b60845460ff16156124665760405162461bcd60e51b8152600401610b6e90614dd1565b821561196a57606854600160a01b900460ff166124955760405162461bcd60e51b8152600401610b6e90614d33565b60006124a085612bef565b905060006124ad82614556565b9050600080876001600160a01b031663cc2ee1966040518163ffffffff1660e01b8152600401604080518083038186803b1580156124ea57600080fd5b505afa1580156124fe573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906125229190614c01565b909250905060008087600181111561254a57634e487b7160e01b600052602160045260246000fd5b146125555781612557565b825b606754604051633cf57f7560e21b81526001600160a01b038084166004830152602482018c90526101009092048216604482015291925085169063f3d5fdd490606401600060405180830381600087803b1580156125b457600080fd5b505af11580156125c8573d6000803e3d6000fd5b505050505050505050606654811461198b5760405162461bcd60e51b8152600401610b6e90614eb0565b6001606660008282546126059190614f1e565b909155505060665460345460ff16156126305760405162461bcd60e51b8152600401610b6e90614da7565b60845460ff16156126535760405162461bcd60e51b8152600401610b6e90614dd1565b61265b614147565b6126a75760405162461bcd60e51b815260206004820152601960248201527f43616e277420636c6f73652063757272656e7420726f756e64000000000000006044820152606401610b6e565b6126af613f0b565b6069546000908152606c60205260408082205460685491516370a0823160e01b81526001600160a01b0391821660048201819052939291909116906370a082319060240160206040518083038186803b15801561270b57600080fd5b505afa15801561271f573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906127439190614c64565b60695460009081526070602052604090205490915081111561280b57608a546069546000908152607060205260408120549091670de0b6b3a76400009161278a9085614f75565b6127949190614f56565b61279e9190614f36565b6089546068549192506127c0916001600160a01b0390811691869116846144fc565b6127ca8183614f75565b608a5460408051918252602082018490529193507fb8379d05082aa2dd32963972d72cc2d46257811133341855b63bb2fddda6ca3e910160405180910390a1505b60695460009081526070602052604090205461283b5760695460009081526074602052604090206001905561287c565b60695460009081526070602052604090205461285f670de0b6b3a764000083614f56565b6128699190614f36565b6069546000908152607460205260409020555b6084805460ff191660011790556069546040517fa224cce482b24082d1d3128437615f7f5ce87b97453a11114846ea442a100272916128be9190815260200190565b60405180910390a150506066548114610cc75760405162461bcd60e51b8152600401610b6e90614eb0565b6001606660008282546128fc9190614f1e565b9091555050606654606854600160a01b900460ff1661292d5760405162461bcd60e51b8152600401610b6e90614d33565b3360009081526071602052604090205460ff161561298d5760405162461bcd60e51b815260206004820152601c60248201527f5769746864726177616c20616c726561647920726571756573746564000000006044820152606401610b6e565b6069546000908152606f602090815260408083203384529091529020546129ec5760405162461bcd60e51b81526020600482015260136024820152724e6f7468696e6720746f20776974686472617760681b6044820152606401610b6e565b606f600060695460016129ff9190614f1e565b81526020808201929092526040908101600090812033825290925290205415612a3a5760405162461bcd60e51b8152600401610b6e90614e18565b60345460ff1615612a5d5760405162461bcd60e51b8152600401610b6e90614da7565b60845460ff1615612a805760405162461bcd60e51b8152600401610b6e90614dd1565b612a92662386f26fc10000600a614f56565b8210158015612ab25750612aae662386f26fc10000605a614f56565b8211155b612b0a5760405162461bcd60e51b815260206004820152602360248201527f53686172652068617320746f206265206265747765656e2031302520616e642060448201526239302560e81b6064820152608401610b6e565b6069546000908152606f60209081526040808320338452909152812054670de0b6b3a764000090612b3c908590614f56565b612b469190614f36565b905080607f541115612b6f5780607f6000828254612b649190614f75565b90915550612b759050565b6000607f555b336000818152607160209081526040808320805460ff19166001179055608782529182902086905590519182527fe5892ff2a8b08efb903ffbba1f0514c1d3e22eea34dd5b89cf30aabce03dde5a910160405180910390a15060665481146114865760405162461bcd60e51b8152600401610b6e90614eb0565b6000808290506000816001600160a01b0316639e3b34bf6040518163ffffffff1660e01b8152600401604080518083038186803b158015612c2f57600080fd5b505afa158015612c43573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190612c679190614cc1565b509050606b54811115612ca057606a54606b54612c849083614f75565b612c8e9190614f36565b612c99906001614f1e565b9250612ca5565b600192505b5050919050565b33600090815260716020526040902054819060ff1615612d1e5760405162461bcd60e51b815260206004820152602760248201527f5769746864726177616c206973207265717565737465642c2063616e6e6f742060448201526619195c1bdcda5d60ca1b6064820152608401610b6e565b60765481607f54612d2f9190614f1e565b1115612d875760405162461bcd60e51b815260206004820152602160248201527f4465706f73697420616d6f756e74206578636565647320414d4d204c502063616044820152600760fc1b6064820152608401610b6e565b6069546000908152606f60209081526040808320338452909152902054158015612ddf5750606f60006069546001612dbf9190614f1e565b815260208082019290925260409081016000908120338252909252902054155b15612e4057607754811015612e405760405162461bcd60e51b815260206004820152602160248201527f416d6f756e74206c657373207468616e206d696e4465706f736974416d6f756e6044820152601d60fa1b6064820152608401610b6e565b600160666000828254612e539190614f1e565b909155505060665460345460ff1615612e7e5760405162461bcd60e51b8152600401610b6e90614da7565b60845460ff1615612ea15760405162461bcd60e51b8152600401610b6e90614dd1565b60006069546001612eb29190614f1e565b90506000612ebf82614556565b606854909150612eda906001600160a01b03163383886144fc565b607a546001600160a01b0316331415612f525760405162461bcd60e51b815260206004820152603460248201527f43616e2774206465706f736974206469726563746c792061732064656661756c6044820152733a103634b8bab4b234ba3c90383937bb34b232b960611b6064820152608401610b6e565b6069546000908152606f60209081526040808320338452909152902054158015612f9357506000828152606f60209081526040808320338452909152902054155b1561304c5760785460795410612feb5760405162461bcd60e51b815260206004820152601b60248201527f4d617820616d6f756e74206f66207573657273207265616368656400000000006044820152606401610b6e565b6000828152606d602090815260408083208054600181810183559185528385200180546001600160a01b03191633908117909155868552606e8452828520908552909252909120805460ff19168217905560795461304891614f1e565b6079555b6000828152606f6020908152604080832033845290915281208054879290613075908490614f1e565b909155505060008281526070602052604081208054879290613098908490614f1e565b9250508190555084607f60008282546130b19190614f1e565b9091555050607b546001600160a01b03161561312c57607b546040516302c7739b60e01b8152336004820152602481018790526001600160a01b03909116906302c7739b90604401600060405180830381600087803b15801561311357600080fd5b505af1158015613127573d6000803e3d6000fd5b505050505b606954604080513381526020810188905280820192909252517f73a19dd210f1a7f902193214c0ee91dd35ee5b4d920cba8d519eca65a7b488ca9181900360600190a150506066548114611dda5760405162461bcd60e51b8152600401610b6e90614eb0565b6069546000908152606c60205260408120546001600160a01b031681805b6069546000908152607260205260409020548110156133665760695460009081526072602052604081208054839081106131fa57634e487b7160e01b600052603260045260246000fd5b600091825260208083209091015460695483526083825260408084206001600160a01b039092168085529190925291205490915060ff1661335357809250826001600160a01b0316633f6fa6556040518163ffffffff1660e01b815260040160206040518083038186803b15801561327157600080fd5b505afa158015613285573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906132a99190614be5565b1561335357604051636392a51f60e01b81526001600160a01b0385811660048301526000918291861690636392a51f90602401604080518083038186803b1580156132f357600080fd5b505afa158015613307573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061332b9190614cc1565b91509150600082118061333e5750600081115b15613350576001965050505050505090565b50505b508061335e81614fb8565b9150506131b0565b5060009250505090565b6001606660008282546133839190614f1e565b909155505060665460345460ff16156133ae5760405162461bcd60e51b8152600401610b6e90614da7565b60845460ff16156133d15760405162461bcd60e51b8152600401610b6e90614dd1565b600082116133f15760405162461bcd60e51b8152600401610b6e90614e6e565b6069546000908152606c60205260408120546001600160a01b03169080805b6069546000908152607260205260409020548110156135ca5785831415613436576135ca565b606954600090815260726020526040812080548390811061346757634e487b7160e01b600052603260045260246000fd5b600091825260208083209091015460695483526083825260408084206001600160a01b039092168085529190925291205490915060ff166135b757809250826001600160a01b0316633f6fa6556040518163ffffffff1660e01b815260040160206040518083038186803b1580156134de57600080fd5b505afa1580156134f2573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906135169190614be5565b156135b75760405163bb580fbb60e01b81526001600160a01b03848116600483015286169063bb580fbb90602401600060405180830381600087803b15801561355e57600080fd5b505af1158015613572573d6000803e3d6000fd5b505060695460009081526083602090815260408083206001600160a01b03871684529091529020805460ff191660019081179091556135b49250905085614f1e565b93505b50806135c281614fb8565b915050613410565b5050505060665481146114865760405162461bcd60e51b8152600401610b6e90614eb0565b6135f7614371565b606854600160a01b900460ff161561365c5760405162461bcd60e51b815260206004820152602260248201527f4c697175696469747920706f6f6c2068617320616c7265616479207374617274604482015261195960f21b6064820152608401610b6e565b600160005260706020527fb1a24bae1e5047fbb0cf526090cbec15c09a4036896111a8964a155b1c4771a1546136d45760405162461bcd60e51b815260206004820152601d60248201527f63616e206e6f7420737461727420776974682030206465706f736974730000006044820152606401610b6e565b42606b55600160698190556000906136eb90614556565b9050806001600160a01b0316637d3de7ce606b546137096001610af9565b6040516001600160e01b031960e085901b16815260048101929092526024820152604401600060405180830381600087803b15801561374757600080fd5b505af115801561375b573d6000803e3d6000fd5b50506068805460ff60a01b1916600160a01b17905550506040517f960682678fca98f3ed131eaf165e59544bcd738e948f0b3c64f58fa9e1c65e6090600090a150565b6000606c60006137ad84612bef565b81526020810191909152604001600020546001600160a01b031692915050565b6137d5614371565b6001600160a01b03811661381d5760405162461bcd60e51b815260206004820152600f60248201526e496e76616c6964206164647265737360881b6044820152606401610b6e565b600154600160a81b900460ff161561386d5760405162461bcd60e51b8152602060048201526013602482015272105b1c9958591e481d1c985b9cd9995c9c9959606a1b6044820152606401610b6e565b600080546001600160a01b038381166201000081810262010000600160b01b031990941693909317938490556001805460ff60a81b1916600160a81b1790556040805193909404909116825260208201527fb532073b38c83145e3e5135377a08bf9aab55bc0fd7c1179cd4fb995d2a5159c9101610c51565b600082815260756020818152604080842054607483528185205486865293909252832054909161391591614f56565b61391f9190614f36565b9392505050565b6069546000908152606f602090815260408083206001600160a01b038516845290915281205415158061399d57506000606f600060695460016139699190614f1e565b81526020019081526020016000206000846001600160a01b03166001600160a01b0316815260200190815260200160002054115b8015610b1657506001600160a01b03821660009081526071602052604090205460ff161580610b165750506001600160a01b0316600090815260876020526040902054151590565b6139ed614371565b60778190556040518181527f990717cc219e5348c1b88bb0ff530d804f0b6f54f3b03844a2bfbe4eb1e9c5d690602001610c51565b606a54600090613a33600184614f75565b610b099190614f56565b613a45614371565b60768190556040518181527f8c43aa02599ac8f8bab4724621ceea5e7a06b07bbbfaf3b7bd0386cbe481ea3c90602001610c51565b600160666000828254613a8d9190614f1e565b909155505060665460345460ff1615613ab85760405162461bcd60e51b8152600401610b6e90614da7565b60845460ff16613b0a5760405162461bcd60e51b815260206004820152601a60248201527f526f756e6420636c6f73696e67206e6f742070726570617265640000000000006044820152606401610b6e565b6069546000908152606d602052604090205460855414613b6c5760405162461bcd60e51b815260206004820152601b60248201527f4e6f7420616c6c2075736572732070726f6365737365642079657400000000006044820152606401610b6e565b6084805460ff191690556069546000908152606c6020908152604080832054606f8352818420607a546001600160a01b039081168652935292205491169015613c6657606954600090815260746020908152604080832054606f8352818420607a546001600160a01b03168552909252822054670de0b6b3a764000091613bf291614f56565b613bfc9190614f36565b607a54606854919250613c1e916001600160a01b0390811691859116846144fc565b607a54604080516001600160a01b039092168252602082018390527fd8138f8a3f377c5259ca548e70e4c2de94f129f5a11036a15b69513cba2b426a910160405180910390a1505b60695460011415613c9457606954600090815260746020908152604080832054607590925290912055613cf7565b606954600081815260746020526040812054670de0b6b3a7640000929091607591613cc190600190614f75565b815260200190815260200160002054613cda9190614f56565b613ce49190614f36565b6069546000908152607560205260409020555b600160696000828254613d0a9190614f1e565b90915550506068546040516370a0823160e01b81526001600160a01b038381166004830152909116906370a082319060240160206040518083038186803b158015613d5457600080fd5b505afa158015613d68573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190613d8c9190614c64565b60695460009081526070602052604081208054909190613dad908490614f1e565b90915550506069546000818152606f60209081526040808320607a546001600160a01b031684528252808320549383526070909152902054613def9190614f75565b607f55606954600090613e0190614556565b6068546040516370a0823160e01b81526001600160a01b038086166004830152929350613e9c92859285929116906370a082319060240160206040518083038186803b158015613e5057600080fd5b505afa158015613e64573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190613e889190614c64565b6068546001600160a01b03169291906144fc565b60006085556069547fc67dda8e11f1aa941c7e74466b1859a07a32f46aaf641d29b83be348424d93cd90613ed290600190614f75565b607460006001606954613ee59190614f75565b8152602001908152602001600020546040516128be929190918252602082015260400190565b60845460ff1615613f2e5760405162461bcd60e51b8152600401610b6e90614dd1565b6069546000908152606c60205260408120546001600160a01b031690805b606954600090815260726020526040902054811015611dda576069546000908152607260205260408120805483908110613f9657634e487b7160e01b600052603260045260246000fd5b600091825260208083209091015460695483526083825260408084206001600160a01b039092168085529190925291205490915060ff166140d657809250826001600160a01b0316633f6fa6556040518163ffffffff1660e01b815260040160206040518083038186803b15801561400d57600080fd5b505afa158015614021573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906140459190614be5565b156140d65760405163bb580fbb60e01b81526001600160a01b03848116600483015285169063bb580fbb90602401600060405180830381600087803b15801561408d57600080fd5b505af11580156140a1573d6000803e3d6000fd5b505060695460009081526083602090815260408083206001600160a01b03871684529091529020805460ff1916600117905550505b50806140e181614fb8565b915050613f4c565b60675460ff16156141325760405162461bcd60e51b8152602060048201526013602482015272105b1c9958591e481a5b9a5d1a585b1a5e9959606a1b6044820152606401610b6e565b6067805460ff19166001908117909155606655565b606854600090600160a01b900460ff16158061416c5750614169606954610af9565b42105b156141775750600090565b6000805b6069546000908152607260205260409020548110156142955760695460009081526072602052604081208054839081106141c557634e487b7160e01b600052603260045260246000fd5b600091825260208083209091015460695483526083825260408084206001600160a01b039092168085529190925291205490915060ff1661428257809250826001600160a01b0316633f6fa6556040518163ffffffff1660e01b815260040160206040518083038186803b15801561423c57600080fd5b505afa158015614250573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906142749190614be5565b614282576000935050505090565b508061428d81614fb8565b91505061417b565b50600191505090565b60675460009061010090046001600160a01b031633146142d05760405162461bcd60e51b8152600401610b6e90614d61565b6001606660008282546142e39190614f1e565b909155505060665460345460ff161561430e5760405162461bcd60e51b8152600401610b6e90614da7565b60845460ff16156143315760405162461bcd60e51b8152600401610b6e90614dd1565b600061433c84612bef565b905061434781614556565b925050606654811461436b5760405162461bcd60e51b8152600401610b6e90614eb0565b50919050565b6000546201000090046001600160a01b031633146143e95760405162461bcd60e51b815260206004820152602f60248201527f4f6e6c792074686520636f6e7472616374206f776e6572206d6179207065726660448201526e37b936903a3434b99030b1ba34b7b760891b6064820152608401610b6e565b565b60345460ff166144345760405162461bcd60e51b815260206004820152601460248201527314185d5cd8589b194e881b9bdd081c185d5cd95960621b6044820152606401610b6e565b6034805460ff191690557f5db9ee0a495bf2e6ff9c91a7834c1ba4fdd244a5e8aa4e537bd38aeae4b073aa335b6040516001600160a01b03909116815260200160405180910390a1565b60345460ff16156144a15760405162461bcd60e51b8152600401610b6e90614da7565b6034805460ff191660011790557f62e78cea01bee320cd4e420270b5ea74000d11b0c9f74754ebdbfc544b05a2586144613390565b60825460009060ff16156144f357610b1664e8d4a5100083614f36565b5090565b919050565b604080516001600160a01b0385811660248301528416604482015260648082018490528251808303909101815260849091019091526020810180516001600160e01b03166323b872dd60e01b17905261198b908590614826565b6000818152606c60205260409020546001600160a01b0316806144f757607d546001600160a01b03166145cb5760405162461bcd60e51b815260206004820152601d60248201527f526f756e6420706f6f6c206d6173746572636f7079206e6f74207365740000006044820152606401610b6e565b607d546000906145e3906001600160a01b03166148f8565b6068549091506001600160a01b038083169163d13f90b4913091168661460d61050e600183614f75565b61461689610af9565b6040516001600160e01b031960e088901b1681526001600160a01b03958616600482015294909316602485015260448401919091526064830152608482015260a401600060405180830381600087803b15801561467257600080fd5b505af1158015614686573d6000803e3d6000fd5b5050506000848152606c602090815260409182902080546001600160a01b0319166001600160a01b03861690811790915582518781529182015292935083927f24c1b21b902a85b5039d7d72427d9376657229eea77880ec9e62031dc950f6ba92500160405180910390a150919050565b607a546001600160a01b031661475a5760405162461bcd60e51b815260206004820152602260248201527f64656661756c74206c69717569646974792070726f7669646572206e6f742073604482015261195d60f21b6064820152608401610b6e565b607a54606854614778916001600160a01b03918216911684866144fc565b6000818152606f60209081526040808320607a546001600160a01b03168452909152812080548592906147ac908490614f1e565b9091555050600081815260706020526040812080548592906147cf908490614f1e565b9091555050607a54604080516001600160a01b0390921682526020820185905281018290527f73a19dd210f1a7f902193214c0ee91dd35ee5b4d920cba8d519eca65a7b488ca9060600160405180910390a1505050565b600061487b826040518060400160405280602081526020017f5361666545524332303a206c6f772d6c6576656c2063616c6c206661696c6564815250856001600160a01b03166149909092919063ffffffff16565b805190915015611dda57808060200190518101906148999190614be5565b611dda5760405162461bcd60e51b815260206004820152602a60248201527f5361666545524332303a204552433230206f7065726174696f6e20646964206e6044820152691bdd081cdd58d8d9595960b21b6064820152608401610b6e565b6000604051733d602d80600a3d3981f3363d3d373d3d3d363d7360601b81528260601b60148201526e5af43d82803e903d91602b57fd5bf360881b60288201526037816000f09150506001600160a01b0381166144f75760405162461bcd60e51b8152602060048201526016602482015275115490cc4c4d8dce8818dc99585d194819985a5b195960521b6044820152606401610b6e565b606061499f84846000856149a7565b949350505050565b606082471015614a085760405162461bcd60e51b815260206004820152602660248201527f416464726573733a20696e73756666696369656e742062616c616e636520666f6044820152651c8818d85b1b60d21b6064820152608401610b6e565b843b614a565760405162461bcd60e51b815260206004820152601d60248201527f416464726573733a2063616c6c20746f206e6f6e2d636f6e74726163740000006044820152606401610b6e565b600080866001600160a01b03168587604051614a729190614ce4565b60006040518083038185875af1925050503d8060008114614aaf576040519150601f19603f3d011682016040523d82523d6000602084013e614ab4565b606091505b5091509150614ac4828286614acf565b979650505050505050565b60608315614ade57508161391f565b825115614aee5782518084602001fd5b8160405162461bcd60e51b8152600401610b6e9190614d00565b600060208284031215614b19578081fd5b813561391f81614fe9565b60008060408385031215614b36578081fd5b8235614b4181614fe9565b946020939093013593505050565b600080600060608486031215614b63578081fd5b8335614b6e81614fe9565b9250602084013591506040840135614b8581614fe9565b809150509250925092565b600080600060608486031215614ba4578283fd5b8335614baf81614fe9565b925060208401359150604084013560028110614b85578182fd5b600060208284031215614bda578081fd5b813561391f81614ffe565b600060208284031215614bf6578081fd5b815161391f81614ffe565b60008060408385031215614c13578182fd5b8251614c1e81614fe9565b6020840151909250614c2f81614fe9565b809150509250929050565b6000610100828403121561436b578081fd5b600060208284031215614c5d578081fd5b5035919050565b600060208284031215614c75578081fd5b5051919050565b60008060408385031215614c8e578182fd5b823591506020830135614c2f81614fe9565b60008060408385031215614cb2578182fd5b50508035926020909101359150565b60008060408385031215614cd3578182fd5b505080516020909101519092909150565b60008251614cf6818460208701614f8c565b9190910192915050565b6020815260008251806020840152614d1f816040850160208701614f8c565b601f01601f19169190910160400192915050565b602080825260149082015273141bdbdb081a185cc81b9bdd081cdd185c9d195960621b604082015260600190565b60208082526026908201527f6f6e6c792074686520414d4d206d617920706572666f726d207468657365206d6040820152656574686f647360d01b606082015260800190565b60208082526010908201526f14185d5cd8589b194e881c185d5cd95960821b604082015260600190565b60208082526027908201527f4e6f7420616c6c6f77656420647572696e6720726f756e64436c6f73696e67506040820152661c995c185c995960ca1b606082015260800190565b60208082526036908201527f43616e277420776974686472617720617320796f7520616c72656164792064656040820152751c1bdcda5d195908199bdc881b995e1d081c9bdd5b9960521b606082015260800190565b60208082526022908201527f626174636853697a652068617320746f2062652067726561746572207468616e604082015261020360f41b606082015260800190565b6020808252601f908201527f5265656e7472616e637947756172643a207265656e7472616e742063616c6c00604082015260600190565b6020808252601b908201527f43616e206e6f74207365742061207a65726f2061646472657373210000000000604082015260600190565b60008219821115614f3157614f31614fd3565b500190565b600082614f5157634e487b7160e01b81526012600452602481fd5b500490565b6000816000190483118215151615614f7057614f70614fd3565b500290565b600082821015614f8757614f87614fd3565b500390565b60005b83811015614fa7578181015183820152602001614f8f565b8381111561198b5750506000910152565b6000600019821415614fcc57614fcc614fd3565b5060010190565b634e487b7160e01b600052601160045260246000fd5b6001600160a01b0381168114610cc757600080fd5b8015158114610cc757600080fdfea26469706673582212204b0f40139a1270f3a5906f859589ed9dba83d4e25ba399b4c429aaa3248a5ad464736f6c63430008040033
Deployed Bytecode
0x608060405234801561001057600080fd5b50600436106104805760003560e01c806378fe782d11610257578063bdcc22e911610146578063ddcc8fe9116100c3578063f475f13b11610087578063f475f13b14610a4f578063f61fcb8b14610a62578063fd8a8cc614610a82578063fdaf17f014610a95578063ff50abdc14610ab857600080fd5b8063ddcc8fe914610a1c578063e278fe6f14610a2f578063e3041fd914610a37578063ebc7977214610a3f578063ee161cce14610a4757600080fd5b8063d27c07971161010a578063d27c0797146109d1578063d69fb668146109da578063d95ad45c146109e3578063db7f92d4146109f6578063ddc6ac2314610a0957600080fd5b8063bdcc22e914610987578063be9a655514610990578063c2edfc7314610998578063c3b83f5f146109ab578063c9f4ff46146109be57600080fd5b8063930102f2116101d4578063a8df539f11610198578063a8df539f14610939578063b6b55f2514610946578063b745abe314610959578063b9b1be8b14610961578063bcfa89371461097457600080fd5b8063930102f2146108ee5780639324cac7146108f757806398faa2ce1461090a5780639bd2e61b146109135780639faf68021461092657600080fd5b8063828fce881161021b578063828fce88146108a45780638b649b94146108b75780638b844412146108c05780638da5cb5b146108c85780638fe812b4146108e157600080fd5b806378fe782d1461084057806379ba5097146108535780637a1e0aa81461085b5780637f7b8c501461086e5780637f8525821461089157600080fd5b806348663e9511610373578063610589e1116102f0578063681312f5116102b4578063681312f5146107c35780636c321c8a146107d657806371143ab9146107df5780637261b81a1461080d57806374094edd1461082057600080fd5b8063610589e114610759578063634e0d9714610762578063645006ca1461079057806365e0e725146107995780636685fdc2146107ac57600080fd5b8063572e36e611610337578063572e36e6146106ef57806358c09cc0146107075780635c7b396e1461071a5780635c975abb146107235780635ddd3e831461072e57600080fd5b806348663e95146106835780634ae7937f146106965780634d549a42146106b657806352129e48146106c957806353a47bb7146106dc57600080fd5b80631baa885611610401578063336d30ed116103c5578063336d30ed14610601578063343e4f9f146106215780633b92d7581461063457806340774ff6146106475780634651f0801461065a57600080fd5b80631baa8856146105a65780631daae173146105af5780631f2698ab146105d2578063202ffce8146105e6578063311c56df146105f957600080fd5b8063146ca53111610448578063146ca531146105365780631627540c1461053f57806316c38b3c14610552578063175e6700146105655780631b2a52d81461059357600080fd5b806302f97b0c14610485578063042047cf146104c8578063082f9fd4146104d557806312b19a131461050057806313af403514610521575b600080fd5b6104b3610493366004614c7c565b608360209081526000928352604080842090915290825290205460ff1681565b60405190151581526020015b60405180910390f35b6080546104b39060ff1681565b6104e86104e3366004614ca0565b610ac1565b6040516001600160a01b0390911681526020016104bf565b61051361050e366004614c4c565b610af9565b6040519081526020016104bf565b61053461052f366004614b08565b610b1c565b005b61051360695481565b61053461054d366004614b08565b610c5c565b610534610560366004614bc9565b610cb2565b610578610573366004614b08565b610cd2565b604080519384526020840192909252908201526060016104bf565b6105346105a1366004614c4c565b610e3c565b610513606b5481565b6104b36105bd366004614b08565b60716020526000908152604090205460ff1681565b6068546104b390600160a01b900460ff1681565b6105346105f4366004614c4c565b61148a565b6105346114c7565b61051361060f366004614c4c565b60756020526000908152604090205481565b6104e861062f366004614ca0565b611746565b607a546104e8906001600160a01b031681565b610534610655366004614c4c565b611762565b6104e8610668366004614c4c565b606c602052600090815260409020546001600160a01b031681565b6089546104e8906001600160a01b031681565b6105136106a4366004614c4c565b60706020526000908152604090205481565b6105346106c4366004614b08565b61179f565b6105346106d7366004614b4f565b61181b565b6001546104e8906001600160a01b031681565b6067546104e89061010090046001600160a01b031681565b610534610715366004614b24565b611991565b61051360855481565b60345460ff166104b3565b61051361073c366004614c7c565b606f60209081526000928352604080842090915290825290205481565b61051360785481565b6104b3610770366004614c7c565b606e60209081526000928352604080842090915290825290205460ff1681565b61051360775481565b6105346107a7366004614b08565b611ddf565b6069546000908152606d6020526040902054610513565b6105346107d1366004614c4c565b611e5b565b61051360885481565b6104b36107ed366004614c7c565b607360209081526000928352604080842090915290825290205460ff1681565b61053461081b366004614c3a565b611f00565b61051361082e366004614c4c565b60746020526000908152604090205481565b61053461084e366004614b08565b61210b565b61053461221b565b610534610869366004614b24565b612318565b6104b361087c366004614b08565b607e6020526000908152604090205460ff1681565b61053461089f366004614b08565b612380565b6105346108b2366004614b90565b6123d6565b610513606a5481565b6105346125f2565b6000546104e8906201000090046001600160a01b031681565b6082546104b39060ff1681565b610513607c5481565b6068546104e8906001600160a01b031681565b61051360865481565b610534610921366004614c4c565b6128e9565b610513610934366004614b08565b612bef565b6084546104b39060ff1681565b610534610954366004614c4c565b612cac565b6104b3613192565b607d546104e8906001600160a01b031681565b610534610982366004614c4c565b613370565b61051360795481565b6105346135ef565b6104e86109a6366004614b08565b61379e565b6105346109b9366004614b08565b6137cd565b6105136109cc366004614ca0565b6138e6565b61051360765481565b610513608a5481565b6104b36109f1366004614b08565b613926565b610534610a04366004614c4c565b6139e5565b610513610a17366004614c4c565b613a22565b610534610a2a366004614c4c565b613a3d565b610534613a7a565b610534613f0b565b6105346140e9565b6104b3614147565b6104e8610a5d366004614b08565b61429e565b610513610a70366004614b08565b60876020526000908152604090205481565b607b546104e8906001600160a01b031681565b6104b3610aa3366004614b08565b60816020526000908152604090205460ff1681565b610513607f5481565b60726020528160005260406000208181548110610add57600080fd5b6000918252602090912001546001600160a01b03169150829050565b6000606a5482610b099190614f56565b606b54610b169190614f1e565b92915050565b6001600160a01b038116610b775760405162461bcd60e51b815260206004820152601960248201527f4f776e657220616464726573732063616e6e6f7420626520300000000000000060448201526064015b60405180910390fd5b600154600160a01b900460ff1615610be35760405162461bcd60e51b815260206004820152602960248201527f416c726561647920696e697469616c697a65642c20757365206e6f6d696e617460448201526832a732bba7bbb732b960b91b6064820152608401610b6e565b6001805460ff60a01b1916600160a01b179055600080546001600160a01b03831662010000810262010000600160b01b03199092169190911782556040805192835260208301919091527fb532073b38c83145e3e5135377a08bf9aab55bc0fd7c1179cd4fb995d2a5159c91015b60405180910390a150565b610c64614371565b600180546001600160a01b0319166001600160a01b0383169081179091556040519081527f906a1c6bd7e3091ea86693dd029a831c19049ce77f1dce2ce0bab1cacbabce2290602001610c51565b610cba614371565b80610cca57610cc76143eb565b50565b610cc761447e565b6000806000806069546001610ce79190614f1e565b607b54604051631676539160e01b81526001600160a01b03888116600483015292935091169063167653919060240160206040518083038186803b158015610d2e57600080fd5b505afa158015610d42573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610d669190614c64565b9150610d91670de0b6b3a7640000607c5484610d829190614f56565b610d8c9190614f36565b6144d6565b6000828152606f602081815260408084206001600160a01b038b1680865290835281852054606954865293835281852090855290915290912054919550610dd791614f1e565b8411610de4576000610e32565b6000818152606f602081815260408084206001600160a01b038a1680865290835281852054606954865293835281852090855290915290912054610e289086614f75565b610e329190614f75565b9250509193909250565b600160666000828254610e4f9190614f1e565b909155505060665460345460ff1615610e7a5760405162461bcd60e51b8152600401610b6e90614da7565b60845460ff16610ecc5760405162461bcd60e51b815260206004820152601a60248201527f526f756e6420636c6f73696e67206e6f742070726570617265640000000000006044820152606401610b6e565b6069546000908152606d602052604090205460855410610f2e5760405162461bcd60e51b815260206004820152601b60248201527f416c6c20757365727320616c72656164792070726f63657373656400000000006044820152606401610b6e565b60008211610f4e5760405162461bcd60e51b8152600401610b6e90614e6e565b6069546000908152606c60205260408120546085546001600160a01b039091169190610f7b908590614f1e565b6069546000908152606d6020526040902054909150811115610fab57506069546000908152606d60205260409020545b6085545b81811015611426576069546000908152606d60205260408120805483908110610fe857634e487b7160e01b600052603260045260246000fd5b6000918252602080832090910154606954835260748252604080842054606f84528185206001600160a01b0390931680865292909352832054909350670de0b6b3a76400009161103791614f56565b6110419190614f36565b6001600160a01b03831660009081526071602052604090205490915060ff1615801561107d575060695460009081526074602052604090205415155b156111e25780606f600060695460016110969190614f1e565b81526020019081526020016000206000846001600160a01b03166001600160a01b03168152602001908152602001600020546110d29190614f1e565b606f600060695460016110e59190614f1e565b81526020019081526020016000206000846001600160a01b03166001600160a01b0316815260200190815260200160002081905550606d6000606954600161112d9190614f1e565b8152602080820192909252604001600090812080546001810182559082529190200180546001600160a01b0319166001600160a01b0384811691909117909155607b5416156111dd57607b546040516302c7739b60e01b81526001600160a01b03848116600483015260248201849052909116906302c7739b90604401600060405180830381600087803b1580156111c457600080fd5b505af11580156111d8573d6000803e3d6000fd5b505050505b611400565b6001600160a01b03821660009081526087602052604090205415611358576001600160a01b038216600090815260876020526040812054670de0b6b3a76400009061122d9084614f56565b6112379190614f36565b606854909150611252906001600160a01b03168785846144fc565b604080516001600160a01b0385168152602081018390527fd8138f8a3f377c5259ca548e70e4c2de94f129f5a11036a15b69513cba2b426a910160405180910390a16001600160a01b0383166000908152607160209081526040808320805460ff1916905560879091528120819055606954606d91906112d3906001614f1e565b8152602080820192909252604001600090812080546001810182559082529190200180546001600160a01b0319166001600160a01b0385161790556113188183614f75565b606f6000606954600161132b9190614f1e565b8152602080820192909252604090810160009081206001600160a01b038816825290925290205550611400565b6000606f6000606954600161136d9190614f1e565b8152602080820192909252604090810160009081206001600160a01b038088168352935220919091556068546113a691168684846144fc565b6001600160a01b038216600081815260716020908152604091829020805460ff19169055815192835282018390527fd8138f8a3f377c5259ca548e70e4c2de94f129f5a11036a15b69513cba2b426a910160405180910390a15b60855461140e906001614f1e565b6085555081905061141e81614fb8565b915050610faf565b5060695460408051918252602082018690527f2e692c8fcabe33ba22535323e79dcb54ef22dccdb8e4ebdd9f2a7ffb1a28856c910160405180910390a1505060665481146114865760405162461bcd60e51b8152600401610b6e90614eb0565b5050565b611492614371565b60788190556040518181527fe7c2c09f66c8b970b4a99250f4d0844e1496b9d51d4760a17b0134ddd52023e190602001610c51565b6001606660008282546114da9190614f1e565b9091555050606654606854600160a01b900460ff1661150b5760405162461bcd60e51b8152600401610b6e90614d33565b3360009081526071602052604090205460ff161561156b5760405162461bcd60e51b815260206004820152601c60248201527f5769746864726177616c20616c726561647920726571756573746564000000006044820152606401610b6e565b6069546000908152606f602090815260408083203384529091529020546115ca5760405162461bcd60e51b81526020600482015260136024820152724e6f7468696e6720746f20776974686472617760681b6044820152606401610b6e565b606f600060695460016115dd9190614f1e565b815260208082019290925260409081016000908120338252909252902054156116185760405162461bcd60e51b8152600401610b6e90614e18565b60345460ff161561163b5760405162461bcd60e51b8152600401610b6e90614da7565b60845460ff161561165e5760405162461bcd60e51b8152600401610b6e90614dd1565b6069546000908152606f60209081526040808320338452909152902054607f5411156116bf576069546000908152606f60209081526040808320338452909152812054607f8054919290916116b4908490614f75565b909155506116c59050565b6000607f555b60016079546116d49190614f75565b60795533600081815260716020908152604091829020805460ff1916600117905590519182527fe5892ff2a8b08efb903ffbba1f0514c1d3e22eea34dd5b89cf30aabce03dde5a910160405180910390a16066548114610cc75760405162461bcd60e51b8152600401610b6e90614eb0565b606d6020528160005260406000208181548110610add57600080fd5b61176a614371565b60888190556040518181527fc117ccf765672707ebe3c1606037488c1e27dc1f42b5266e3d6b496db7d4209e90602001610c51565b6117a7614371565b6001600160a01b0381166117cd5760405162461bcd60e51b8152600401610b6e90614ee7565b607d80546001600160a01b0319166001600160a01b0383169081179091556040519081527fa65a5aa86bb6f8e75752296da3ebda45474c8a302fc640c3b62868793862a03390602001610c51565b60016066600082825461182e9190614f1e565b909155505060665460345460ff16156118595760405162461bcd60e51b8152600401610b6e90614da7565b60675461010090046001600160a01b031633146118885760405162461bcd60e51b8152600401610b6e90614d61565b60845460ff16156118ab5760405162461bcd60e51b8152600401610b6e90614dd1565b821561196a57606854600160a01b900460ff166118da5760405162461bcd60e51b8152600401610b6e90614d33565b60006118e585612bef565b905060006118f282614556565b606754604051633cf57f7560e21b81526001600160a01b038781166004830152602482018990526101009092048216604482015291925082169063f3d5fdd490606401600060405180830381600087803b15801561194f57600080fd5b505af1158015611963573d6000803e3d6000fd5b5050505050505b606654811461198b5760405162461bcd60e51b8152600401610b6e90614eb0565b50505050565b6001606660008282546119a49190614f1e565b909155505060665460345460ff16156119cf5760405162461bcd60e51b8152600401610b6e90614da7565b60675461010090046001600160a01b031633146119fe5760405162461bcd60e51b8152600401610b6e90614d61565b60845460ff1615611a215760405162461bcd60e51b8152600401610b6e90614dd1565b606854600160a01b900460ff16611a4a5760405162461bcd60e51b8152600401610b6e90614d33565b60008211611a9a5760405162461bcd60e51b815260206004820152601960248201527f43616e277420636f6d6d69742061207a65726f207472616465000000000000006044820152606401610b6e565b611aa3826144d6565b60825490925060ff16611ab65781611ac1565b611ac1826001614f1e565b91506000611ace84612bef565b90506000611adb82614556565b9050606954821415611c4057606754606854611b0b916001600160a01b03918216918491610100900416876144fc565b608854606954600090815260706020526040902054670de0b6b3a764000091611b3391614f56565b611b3d9190614f36565b606954600090815260706020526040902054611b599190614f75565b6068546040516370a0823160e01b81526001600160a01b038481166004830152909116906370a082319060240160206040518083038186803b158015611b9e57600080fd5b505afa158015611bb2573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611bd69190614c64565b1015611c3b5760405162461bcd60e51b815260206004820152602e60248201527f416d6f756e74206578636565647320617661696c61626c65207574696c697a6160448201526d1d1a5bdb88199bdc881c9bdd5b9960921b6064820152608401610b6e565b611d31565b6068546040516370a0823160e01b81526001600160a01b03838116600483015260009216906370a082319060240160206040518083038186803b158015611c8657600080fd5b505afa158015611c9a573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611cbe9190614c64565b9050848110611cf057606754606854611ceb916001600160a01b03918216918591610100900416886144fc565b611d2f565b6000611cfc8287614f75565b9050611d098184866146f7565b606754606854611d2d916001600160a01b03918216918691610100900416896144fc565b505b505b60008281526073602090815260408083206001600160a01b038916845290915290205460ff16611db75760008281526072602090815260408083208054600180820183559185528385200180546001600160a01b0319166001600160a01b038b1690811790915586855260738452828520908552909252909120805460ff191690911790555b50506066548114611dda5760405162461bcd60e51b8152600401610b6e90614eb0565b505050565b611de7614371565b6001600160a01b038116611e0d5760405162461bcd60e51b8152600401610b6e90614ee7565b607a80546001600160a01b0319166001600160a01b0383169081179091556040519081527faaf6f0738515c3cf390f1b3faec649d2dacb169d024089afc43bbe2fe66cd2d890602001610c51565b611e63614371565b606854600160a01b900460ff1615611ecb5760405162461bcd60e51b815260206004820152602560248201527f43616e2774206368616e676520726f756e64206c656e677468206166746572206044820152641cdd185c9d60da1b6064820152608401610b6e565b606a8190556040518181527f1d1fb7111c3779798bd4aefb2daea07ee8257a13c7eaceba89b4b1ccd405050d90602001610c51565b600054610100900460ff16611f1b5760005460ff1615611f1f565b303b155b611f825760405162461bcd60e51b815260206004820152602e60248201527f496e697469616c697a61626c653a20636f6e747261637420697320616c72656160448201526d191e481a5b9a5d1a585b1a5e995960921b6064820152608401610b6e565b600054610100900460ff16158015611fa4576000805461ffff19166101011790555b611fb461052f6020840184614b08565b611fbc6140e9565b611fcc6040830160208401614b08565b606780546001600160a01b039290921661010002610100600160a81b03199092169190911790556120036060830160408401614b08565b606880546001600160a01b0319166001600160a01b03929092169190911790556060820135606a55608082013560765560a082013560775560c0820135607855612054610100830160e08401614bc9565b6082805460ff191691151591909117905560685460675460405163095ea7b360e01b81526101009091046001600160a01b03908116600483015260001960248301529091169063095ea7b390604401602060405180830381600087803b1580156120bd57600080fd5b505af11580156120d1573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906120f59190614be5565b508015611486576000805461ff00191690555050565b612113614371565b6001600160a01b0381166121395760405162461bcd60e51b8152600401610b6e90614ee7565b60678054610100600160a81b0319166101006001600160a01b038481168202929092179283905560685460405163095ea7b360e01b81529190930482166004820152600019602482015291169063095ea7b390604401602060405180830381600087803b1580156121a957600080fd5b505af11580156121bd573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906121e19190614be5565b506040516001600160a01b03821681527fcd9f73cb77eb3f2287cdfd1b291c691d33e2cb7ca1774dba627bc61f163d6b9b90602001610c51565b6001546001600160a01b031633146122935760405162461bcd60e51b815260206004820152603560248201527f596f75206d757374206265206e6f6d696e61746564206265666f726520796f7560448201527402063616e20616363657074206f776e65727368697605c1b6064820152608401610b6e565b60005460015460408051620100009093046001600160a01b03908116845290911660208301527fb532073b38c83145e3e5135377a08bf9aab55bc0fd7c1179cd4fb995d2a5159c910160405180910390a1600180546000805462010000600160b01b0319166001600160a01b03831662010000021790556001600160a01b0319169055565b612320614371565b608980546001600160a01b0319166001600160a01b038416908117909155608a82905560408051918252602082018390527fa1a8623472ca4e2879372be60dfd1ff0675778e49f7379eedd98ca57cf36b21a910160405180910390a15050565b612388614371565b607b80546001600160a01b0319166001600160a01b0383169081179091556040519081527f3c7faa500efbd341aedbf1ee7ebd52ea36d226dda76bc01dd39b43d46f55b8d390602001610c51565b6001606660008282546123e99190614f1e565b909155505060665460345460ff16156124145760405162461bcd60e51b8152600401610b6e90614da7565b60675461010090046001600160a01b031633146124435760405162461bcd60e51b8152600401610b6e90614d61565b60845460ff16156124665760405162461bcd60e51b8152600401610b6e90614dd1565b821561196a57606854600160a01b900460ff166124955760405162461bcd60e51b8152600401610b6e90614d33565b60006124a085612bef565b905060006124ad82614556565b9050600080876001600160a01b031663cc2ee1966040518163ffffffff1660e01b8152600401604080518083038186803b1580156124ea57600080fd5b505afa1580156124fe573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906125229190614c01565b909250905060008087600181111561254a57634e487b7160e01b600052602160045260246000fd5b146125555781612557565b825b606754604051633cf57f7560e21b81526001600160a01b038084166004830152602482018c90526101009092048216604482015291925085169063f3d5fdd490606401600060405180830381600087803b1580156125b457600080fd5b505af11580156125c8573d6000803e3d6000fd5b505050505050505050606654811461198b5760405162461bcd60e51b8152600401610b6e90614eb0565b6001606660008282546126059190614f1e565b909155505060665460345460ff16156126305760405162461bcd60e51b8152600401610b6e90614da7565b60845460ff16156126535760405162461bcd60e51b8152600401610b6e90614dd1565b61265b614147565b6126a75760405162461bcd60e51b815260206004820152601960248201527f43616e277420636c6f73652063757272656e7420726f756e64000000000000006044820152606401610b6e565b6126af613f0b565b6069546000908152606c60205260408082205460685491516370a0823160e01b81526001600160a01b0391821660048201819052939291909116906370a082319060240160206040518083038186803b15801561270b57600080fd5b505afa15801561271f573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906127439190614c64565b60695460009081526070602052604090205490915081111561280b57608a546069546000908152607060205260408120549091670de0b6b3a76400009161278a9085614f75565b6127949190614f56565b61279e9190614f36565b6089546068549192506127c0916001600160a01b0390811691869116846144fc565b6127ca8183614f75565b608a5460408051918252602082018490529193507fb8379d05082aa2dd32963972d72cc2d46257811133341855b63bb2fddda6ca3e910160405180910390a1505b60695460009081526070602052604090205461283b5760695460009081526074602052604090206001905561287c565b60695460009081526070602052604090205461285f670de0b6b3a764000083614f56565b6128699190614f36565b6069546000908152607460205260409020555b6084805460ff191660011790556069546040517fa224cce482b24082d1d3128437615f7f5ce87b97453a11114846ea442a100272916128be9190815260200190565b60405180910390a150506066548114610cc75760405162461bcd60e51b8152600401610b6e90614eb0565b6001606660008282546128fc9190614f1e565b9091555050606654606854600160a01b900460ff1661292d5760405162461bcd60e51b8152600401610b6e90614d33565b3360009081526071602052604090205460ff161561298d5760405162461bcd60e51b815260206004820152601c60248201527f5769746864726177616c20616c726561647920726571756573746564000000006044820152606401610b6e565b6069546000908152606f602090815260408083203384529091529020546129ec5760405162461bcd60e51b81526020600482015260136024820152724e6f7468696e6720746f20776974686472617760681b6044820152606401610b6e565b606f600060695460016129ff9190614f1e565b81526020808201929092526040908101600090812033825290925290205415612a3a5760405162461bcd60e51b8152600401610b6e90614e18565b60345460ff1615612a5d5760405162461bcd60e51b8152600401610b6e90614da7565b60845460ff1615612a805760405162461bcd60e51b8152600401610b6e90614dd1565b612a92662386f26fc10000600a614f56565b8210158015612ab25750612aae662386f26fc10000605a614f56565b8211155b612b0a5760405162461bcd60e51b815260206004820152602360248201527f53686172652068617320746f206265206265747765656e2031302520616e642060448201526239302560e81b6064820152608401610b6e565b6069546000908152606f60209081526040808320338452909152812054670de0b6b3a764000090612b3c908590614f56565b612b469190614f36565b905080607f541115612b6f5780607f6000828254612b649190614f75565b90915550612b759050565b6000607f555b336000818152607160209081526040808320805460ff19166001179055608782529182902086905590519182527fe5892ff2a8b08efb903ffbba1f0514c1d3e22eea34dd5b89cf30aabce03dde5a910160405180910390a15060665481146114865760405162461bcd60e51b8152600401610b6e90614eb0565b6000808290506000816001600160a01b0316639e3b34bf6040518163ffffffff1660e01b8152600401604080518083038186803b158015612c2f57600080fd5b505afa158015612c43573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190612c679190614cc1565b509050606b54811115612ca057606a54606b54612c849083614f75565b612c8e9190614f36565b612c99906001614f1e565b9250612ca5565b600192505b5050919050565b33600090815260716020526040902054819060ff1615612d1e5760405162461bcd60e51b815260206004820152602760248201527f5769746864726177616c206973207265717565737465642c2063616e6e6f742060448201526619195c1bdcda5d60ca1b6064820152608401610b6e565b60765481607f54612d2f9190614f1e565b1115612d875760405162461bcd60e51b815260206004820152602160248201527f4465706f73697420616d6f756e74206578636565647320414d4d204c502063616044820152600760fc1b6064820152608401610b6e565b6069546000908152606f60209081526040808320338452909152902054158015612ddf5750606f60006069546001612dbf9190614f1e565b815260208082019290925260409081016000908120338252909252902054155b15612e4057607754811015612e405760405162461bcd60e51b815260206004820152602160248201527f416d6f756e74206c657373207468616e206d696e4465706f736974416d6f756e6044820152601d60fa1b6064820152608401610b6e565b600160666000828254612e539190614f1e565b909155505060665460345460ff1615612e7e5760405162461bcd60e51b8152600401610b6e90614da7565b60845460ff1615612ea15760405162461bcd60e51b8152600401610b6e90614dd1565b60006069546001612eb29190614f1e565b90506000612ebf82614556565b606854909150612eda906001600160a01b03163383886144fc565b607a546001600160a01b0316331415612f525760405162461bcd60e51b815260206004820152603460248201527f43616e2774206465706f736974206469726563746c792061732064656661756c6044820152733a103634b8bab4b234ba3c90383937bb34b232b960611b6064820152608401610b6e565b6069546000908152606f60209081526040808320338452909152902054158015612f9357506000828152606f60209081526040808320338452909152902054155b1561304c5760785460795410612feb5760405162461bcd60e51b815260206004820152601b60248201527f4d617820616d6f756e74206f66207573657273207265616368656400000000006044820152606401610b6e565b6000828152606d602090815260408083208054600181810183559185528385200180546001600160a01b03191633908117909155868552606e8452828520908552909252909120805460ff19168217905560795461304891614f1e565b6079555b6000828152606f6020908152604080832033845290915281208054879290613075908490614f1e565b909155505060008281526070602052604081208054879290613098908490614f1e565b9250508190555084607f60008282546130b19190614f1e565b9091555050607b546001600160a01b03161561312c57607b546040516302c7739b60e01b8152336004820152602481018790526001600160a01b03909116906302c7739b90604401600060405180830381600087803b15801561311357600080fd5b505af1158015613127573d6000803e3d6000fd5b505050505b606954604080513381526020810188905280820192909252517f73a19dd210f1a7f902193214c0ee91dd35ee5b4d920cba8d519eca65a7b488ca9181900360600190a150506066548114611dda5760405162461bcd60e51b8152600401610b6e90614eb0565b6069546000908152606c60205260408120546001600160a01b031681805b6069546000908152607260205260409020548110156133665760695460009081526072602052604081208054839081106131fa57634e487b7160e01b600052603260045260246000fd5b600091825260208083209091015460695483526083825260408084206001600160a01b039092168085529190925291205490915060ff1661335357809250826001600160a01b0316633f6fa6556040518163ffffffff1660e01b815260040160206040518083038186803b15801561327157600080fd5b505afa158015613285573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906132a99190614be5565b1561335357604051636392a51f60e01b81526001600160a01b0385811660048301526000918291861690636392a51f90602401604080518083038186803b1580156132f357600080fd5b505afa158015613307573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061332b9190614cc1565b91509150600082118061333e5750600081115b15613350576001965050505050505090565b50505b508061335e81614fb8565b9150506131b0565b5060009250505090565b6001606660008282546133839190614f1e565b909155505060665460345460ff16156133ae5760405162461bcd60e51b8152600401610b6e90614da7565b60845460ff16156133d15760405162461bcd60e51b8152600401610b6e90614dd1565b600082116133f15760405162461bcd60e51b8152600401610b6e90614e6e565b6069546000908152606c60205260408120546001600160a01b03169080805b6069546000908152607260205260409020548110156135ca5785831415613436576135ca565b606954600090815260726020526040812080548390811061346757634e487b7160e01b600052603260045260246000fd5b600091825260208083209091015460695483526083825260408084206001600160a01b039092168085529190925291205490915060ff166135b757809250826001600160a01b0316633f6fa6556040518163ffffffff1660e01b815260040160206040518083038186803b1580156134de57600080fd5b505afa1580156134f2573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906135169190614be5565b156135b75760405163bb580fbb60e01b81526001600160a01b03848116600483015286169063bb580fbb90602401600060405180830381600087803b15801561355e57600080fd5b505af1158015613572573d6000803e3d6000fd5b505060695460009081526083602090815260408083206001600160a01b03871684529091529020805460ff191660019081179091556135b49250905085614f1e565b93505b50806135c281614fb8565b915050613410565b5050505060665481146114865760405162461bcd60e51b8152600401610b6e90614eb0565b6135f7614371565b606854600160a01b900460ff161561365c5760405162461bcd60e51b815260206004820152602260248201527f4c697175696469747920706f6f6c2068617320616c7265616479207374617274604482015261195960f21b6064820152608401610b6e565b600160005260706020527fb1a24bae1e5047fbb0cf526090cbec15c09a4036896111a8964a155b1c4771a1546136d45760405162461bcd60e51b815260206004820152601d60248201527f63616e206e6f7420737461727420776974682030206465706f736974730000006044820152606401610b6e565b42606b55600160698190556000906136eb90614556565b9050806001600160a01b0316637d3de7ce606b546137096001610af9565b6040516001600160e01b031960e085901b16815260048101929092526024820152604401600060405180830381600087803b15801561374757600080fd5b505af115801561375b573d6000803e3d6000fd5b50506068805460ff60a01b1916600160a01b17905550506040517f960682678fca98f3ed131eaf165e59544bcd738e948f0b3c64f58fa9e1c65e6090600090a150565b6000606c60006137ad84612bef565b81526020810191909152604001600020546001600160a01b031692915050565b6137d5614371565b6001600160a01b03811661381d5760405162461bcd60e51b815260206004820152600f60248201526e496e76616c6964206164647265737360881b6044820152606401610b6e565b600154600160a81b900460ff161561386d5760405162461bcd60e51b8152602060048201526013602482015272105b1c9958591e481d1c985b9cd9995c9c9959606a1b6044820152606401610b6e565b600080546001600160a01b038381166201000081810262010000600160b01b031990941693909317938490556001805460ff60a81b1916600160a81b1790556040805193909404909116825260208201527fb532073b38c83145e3e5135377a08bf9aab55bc0fd7c1179cd4fb995d2a5159c9101610c51565b600082815260756020818152604080842054607483528185205486865293909252832054909161391591614f56565b61391f9190614f36565b9392505050565b6069546000908152606f602090815260408083206001600160a01b038516845290915281205415158061399d57506000606f600060695460016139699190614f1e565b81526020019081526020016000206000846001600160a01b03166001600160a01b0316815260200190815260200160002054115b8015610b1657506001600160a01b03821660009081526071602052604090205460ff161580610b165750506001600160a01b0316600090815260876020526040902054151590565b6139ed614371565b60778190556040518181527f990717cc219e5348c1b88bb0ff530d804f0b6f54f3b03844a2bfbe4eb1e9c5d690602001610c51565b606a54600090613a33600184614f75565b610b099190614f56565b613a45614371565b60768190556040518181527f8c43aa02599ac8f8bab4724621ceea5e7a06b07bbbfaf3b7bd0386cbe481ea3c90602001610c51565b600160666000828254613a8d9190614f1e565b909155505060665460345460ff1615613ab85760405162461bcd60e51b8152600401610b6e90614da7565b60845460ff16613b0a5760405162461bcd60e51b815260206004820152601a60248201527f526f756e6420636c6f73696e67206e6f742070726570617265640000000000006044820152606401610b6e565b6069546000908152606d602052604090205460855414613b6c5760405162461bcd60e51b815260206004820152601b60248201527f4e6f7420616c6c2075736572732070726f6365737365642079657400000000006044820152606401610b6e565b6084805460ff191690556069546000908152606c6020908152604080832054606f8352818420607a546001600160a01b039081168652935292205491169015613c6657606954600090815260746020908152604080832054606f8352818420607a546001600160a01b03168552909252822054670de0b6b3a764000091613bf291614f56565b613bfc9190614f36565b607a54606854919250613c1e916001600160a01b0390811691859116846144fc565b607a54604080516001600160a01b039092168252602082018390527fd8138f8a3f377c5259ca548e70e4c2de94f129f5a11036a15b69513cba2b426a910160405180910390a1505b60695460011415613c9457606954600090815260746020908152604080832054607590925290912055613cf7565b606954600081815260746020526040812054670de0b6b3a7640000929091607591613cc190600190614f75565b815260200190815260200160002054613cda9190614f56565b613ce49190614f36565b6069546000908152607560205260409020555b600160696000828254613d0a9190614f1e565b90915550506068546040516370a0823160e01b81526001600160a01b038381166004830152909116906370a082319060240160206040518083038186803b158015613d5457600080fd5b505afa158015613d68573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190613d8c9190614c64565b60695460009081526070602052604081208054909190613dad908490614f1e565b90915550506069546000818152606f60209081526040808320607a546001600160a01b031684528252808320549383526070909152902054613def9190614f75565b607f55606954600090613e0190614556565b6068546040516370a0823160e01b81526001600160a01b038086166004830152929350613e9c92859285929116906370a082319060240160206040518083038186803b158015613e5057600080fd5b505afa158015613e64573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190613e889190614c64565b6068546001600160a01b03169291906144fc565b60006085556069547fc67dda8e11f1aa941c7e74466b1859a07a32f46aaf641d29b83be348424d93cd90613ed290600190614f75565b607460006001606954613ee59190614f75565b8152602001908152602001600020546040516128be929190918252602082015260400190565b60845460ff1615613f2e5760405162461bcd60e51b8152600401610b6e90614dd1565b6069546000908152606c60205260408120546001600160a01b031690805b606954600090815260726020526040902054811015611dda576069546000908152607260205260408120805483908110613f9657634e487b7160e01b600052603260045260246000fd5b600091825260208083209091015460695483526083825260408084206001600160a01b039092168085529190925291205490915060ff166140d657809250826001600160a01b0316633f6fa6556040518163ffffffff1660e01b815260040160206040518083038186803b15801561400d57600080fd5b505afa158015614021573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906140459190614be5565b156140d65760405163bb580fbb60e01b81526001600160a01b03848116600483015285169063bb580fbb90602401600060405180830381600087803b15801561408d57600080fd5b505af11580156140a1573d6000803e3d6000fd5b505060695460009081526083602090815260408083206001600160a01b03871684529091529020805460ff1916600117905550505b50806140e181614fb8565b915050613f4c565b60675460ff16156141325760405162461bcd60e51b8152602060048201526013602482015272105b1c9958591e481a5b9a5d1a585b1a5e9959606a1b6044820152606401610b6e565b6067805460ff19166001908117909155606655565b606854600090600160a01b900460ff16158061416c5750614169606954610af9565b42105b156141775750600090565b6000805b6069546000908152607260205260409020548110156142955760695460009081526072602052604081208054839081106141c557634e487b7160e01b600052603260045260246000fd5b600091825260208083209091015460695483526083825260408084206001600160a01b039092168085529190925291205490915060ff1661428257809250826001600160a01b0316633f6fa6556040518163ffffffff1660e01b815260040160206040518083038186803b15801561423c57600080fd5b505afa158015614250573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906142749190614be5565b614282576000935050505090565b508061428d81614fb8565b91505061417b565b50600191505090565b60675460009061010090046001600160a01b031633146142d05760405162461bcd60e51b8152600401610b6e90614d61565b6001606660008282546142e39190614f1e565b909155505060665460345460ff161561430e5760405162461bcd60e51b8152600401610b6e90614da7565b60845460ff16156143315760405162461bcd60e51b8152600401610b6e90614dd1565b600061433c84612bef565b905061434781614556565b925050606654811461436b5760405162461bcd60e51b8152600401610b6e90614eb0565b50919050565b6000546201000090046001600160a01b031633146143e95760405162461bcd60e51b815260206004820152602f60248201527f4f6e6c792074686520636f6e7472616374206f776e6572206d6179207065726660448201526e37b936903a3434b99030b1ba34b7b760891b6064820152608401610b6e565b565b60345460ff166144345760405162461bcd60e51b815260206004820152601460248201527314185d5cd8589b194e881b9bdd081c185d5cd95960621b6044820152606401610b6e565b6034805460ff191690557f5db9ee0a495bf2e6ff9c91a7834c1ba4fdd244a5e8aa4e537bd38aeae4b073aa335b6040516001600160a01b03909116815260200160405180910390a1565b60345460ff16156144a15760405162461bcd60e51b8152600401610b6e90614da7565b6034805460ff191660011790557f62e78cea01bee320cd4e420270b5ea74000d11b0c9f74754ebdbfc544b05a2586144613390565b60825460009060ff16156144f357610b1664e8d4a5100083614f36565b5090565b919050565b604080516001600160a01b0385811660248301528416604482015260648082018490528251808303909101815260849091019091526020810180516001600160e01b03166323b872dd60e01b17905261198b908590614826565b6000818152606c60205260409020546001600160a01b0316806144f757607d546001600160a01b03166145cb5760405162461bcd60e51b815260206004820152601d60248201527f526f756e6420706f6f6c206d6173746572636f7079206e6f74207365740000006044820152606401610b6e565b607d546000906145e3906001600160a01b03166148f8565b6068549091506001600160a01b038083169163d13f90b4913091168661460d61050e600183614f75565b61461689610af9565b6040516001600160e01b031960e088901b1681526001600160a01b03958616600482015294909316602485015260448401919091526064830152608482015260a401600060405180830381600087803b15801561467257600080fd5b505af1158015614686573d6000803e3d6000fd5b5050506000848152606c602090815260409182902080546001600160a01b0319166001600160a01b03861690811790915582518781529182015292935083927f24c1b21b902a85b5039d7d72427d9376657229eea77880ec9e62031dc950f6ba92500160405180910390a150919050565b607a546001600160a01b031661475a5760405162461bcd60e51b815260206004820152602260248201527f64656661756c74206c69717569646974792070726f7669646572206e6f742073604482015261195d60f21b6064820152608401610b6e565b607a54606854614778916001600160a01b03918216911684866144fc565b6000818152606f60209081526040808320607a546001600160a01b03168452909152812080548592906147ac908490614f1e565b9091555050600081815260706020526040812080548592906147cf908490614f1e565b9091555050607a54604080516001600160a01b0390921682526020820185905281018290527f73a19dd210f1a7f902193214c0ee91dd35ee5b4d920cba8d519eca65a7b488ca9060600160405180910390a1505050565b600061487b826040518060400160405280602081526020017f5361666545524332303a206c6f772d6c6576656c2063616c6c206661696c6564815250856001600160a01b03166149909092919063ffffffff16565b805190915015611dda57808060200190518101906148999190614be5565b611dda5760405162461bcd60e51b815260206004820152602a60248201527f5361666545524332303a204552433230206f7065726174696f6e20646964206e6044820152691bdd081cdd58d8d9595960b21b6064820152608401610b6e565b6000604051733d602d80600a3d3981f3363d3d373d3d3d363d7360601b81528260601b60148201526e5af43d82803e903d91602b57fd5bf360881b60288201526037816000f09150506001600160a01b0381166144f75760405162461bcd60e51b8152602060048201526016602482015275115490cc4c4d8dce8818dc99585d194819985a5b195960521b6044820152606401610b6e565b606061499f84846000856149a7565b949350505050565b606082471015614a085760405162461bcd60e51b815260206004820152602660248201527f416464726573733a20696e73756666696369656e742062616c616e636520666f6044820152651c8818d85b1b60d21b6064820152608401610b6e565b843b614a565760405162461bcd60e51b815260206004820152601d60248201527f416464726573733a2063616c6c20746f206e6f6e2d636f6e74726163740000006044820152606401610b6e565b600080866001600160a01b03168587604051614a729190614ce4565b60006040518083038185875af1925050503d8060008114614aaf576040519150601f19603f3d011682016040523d82523d6000602084013e614ab4565b606091505b5091509150614ac4828286614acf565b979650505050505050565b60608315614ade57508161391f565b825115614aee5782518084602001fd5b8160405162461bcd60e51b8152600401610b6e9190614d00565b600060208284031215614b19578081fd5b813561391f81614fe9565b60008060408385031215614b36578081fd5b8235614b4181614fe9565b946020939093013593505050565b600080600060608486031215614b63578081fd5b8335614b6e81614fe9565b9250602084013591506040840135614b8581614fe9565b809150509250925092565b600080600060608486031215614ba4578283fd5b8335614baf81614fe9565b925060208401359150604084013560028110614b85578182fd5b600060208284031215614bda578081fd5b813561391f81614ffe565b600060208284031215614bf6578081fd5b815161391f81614ffe565b60008060408385031215614c13578182fd5b8251614c1e81614fe9565b6020840151909250614c2f81614fe9565b809150509250929050565b6000610100828403121561436b578081fd5b600060208284031215614c5d578081fd5b5035919050565b600060208284031215614c75578081fd5b5051919050565b60008060408385031215614c8e578182fd5b823591506020830135614c2f81614fe9565b60008060408385031215614cb2578182fd5b50508035926020909101359150565b60008060408385031215614cd3578182fd5b505080516020909101519092909150565b60008251614cf6818460208701614f8c565b9190910192915050565b6020815260008251806020840152614d1f816040850160208701614f8c565b601f01601f19169190910160400192915050565b602080825260149082015273141bdbdb081a185cc81b9bdd081cdd185c9d195960621b604082015260600190565b60208082526026908201527f6f6e6c792074686520414d4d206d617920706572666f726d207468657365206d6040820152656574686f647360d01b606082015260800190565b60208082526010908201526f14185d5cd8589b194e881c185d5cd95960821b604082015260600190565b60208082526027908201527f4e6f7420616c6c6f77656420647572696e6720726f756e64436c6f73696e67506040820152661c995c185c995960ca1b606082015260800190565b60208082526036908201527f43616e277420776974686472617720617320796f7520616c72656164792064656040820152751c1bdcda5d195908199bdc881b995e1d081c9bdd5b9960521b606082015260800190565b60208082526022908201527f626174636853697a652068617320746f2062652067726561746572207468616e604082015261020360f41b606082015260800190565b6020808252601f908201527f5265656e7472616e637947756172643a207265656e7472616e742063616c6c00604082015260600190565b6020808252601b908201527f43616e206e6f74207365742061207a65726f2061646472657373210000000000604082015260600190565b60008219821115614f3157614f31614fd3565b500190565b600082614f5157634e487b7160e01b81526012600452602481fd5b500490565b6000816000190483118215151615614f7057614f70614fd3565b500290565b600082821015614f8757614f87614fd3565b500390565b60005b83811015614fa7578181015183820152602001614f8f565b8381111561198b5750506000910152565b6000600019821415614fcc57614fcc614fd3565b5060010190565b634e487b7160e01b600052601160045260246000fd5b6001600160a01b0381168114610cc757600080fd5b8015158114610cc757600080fdfea26469706673582212204b0f40139a1270f3a5906f859589ed9dba83d4e25ba399b4c429aaa3248a5ad464736f6c63430008040033
Loading...
Loading
Loading...
Loading
Multichain Portfolio | 29 Chains
Chain | Token | Portfolio % | Price | Amount | Value |
---|
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.