Source Code
Overview
ETH Balance
0 ETH
ETH Value
$0.00
Cross-Chain Transactions
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:
ChainedSpeedMarketsAMM
Compiler Version
v0.8.16+commit.07a7930e
Optimization Enabled:
Yes with 100 runs
Other Settings:
default evmVersion
Contract Source Code (Solidity Standard Json-Input format)
// SPDX-License-Identifier: MIT
pragma solidity ^0.8.0;
// external
import "@openzeppelin/contracts-upgradeable/token/ERC20/utils/SafeERC20Upgradeable.sol";
import "@openzeppelin/contracts-upgradeable/utils/math/MathUpgradeable.sol";
import "@openzeppelin/contracts-upgradeable/access/OwnableUpgradeable.sol";
import "@openzeppelin/contracts-upgradeable/proxy/utils/Initializable.sol";
import "@openzeppelin/contracts-upgradeable/utils/math/SafeMathUpgradeable.sol";
import "@openzeppelin/contracts-upgradeable/token/ERC20/IERC20Upgradeable.sol";
import "@openzeppelin/contracts-upgradeable/security/PausableUpgradeable.sol";
import "@openzeppelin/contracts-4.4.1/proxy/Clones.sol";
// internal
import "../utils/proxy/solidity-0.8.0/ProxyReentrancyGuard.sol";
import "../utils/proxy/solidity-0.8.0/ProxyOwned.sol";
import "../utils/proxy/solidity-0.8.0/ProxyPausable.sol";
import "../utils/libraries/AddressSetLib.sol";
import "../interfaces/IStakingThales.sol";
import "../interfaces/IMultiCollateralOnOffRamp.sol";
import "../interfaces/IReferrals.sol";
import "../interfaces/ISpeedMarketsAMM.sol";
import "../interfaces/IAddressManager.sol";
import "./SpeedMarket.sol";
import "./ChainedSpeedMarket.sol";
/// @title An AMM for Overtime Speed Markets
contract ChainedSpeedMarketsAMM is Initializable, ProxyOwned, ProxyPausable, ProxyReentrancyGuard {
using SafeERC20Upgradeable for IERC20Upgradeable;
using AddressSetLib for AddressSetLib.AddressSet;
uint private constant ONE = 1e18;
uint private constant MAX_APPROVAL = type(uint256).max;
error MulticollateralOnrampDisabled();
error NotEnoughReceivedViaOnramp();
error AssetNotSupported();
error InvalidBuyinAmount();
error InvalidTimeFrame();
error InvalidNumberOfDirections();
error ProfitTooHigh();
error OutOfLiquidity();
error CanNotResolve();
error InvalidPrice();
error CanOnlyBeCalledFromResolver();
error OnlyCreatorAllowed();
error OnlyMarketOwner();
error EtherTransferFailed();
error InvalidOffRampCollateral();
error MinChainedMarketsError();
error OnlyWhitelistedAddresses();
IERC20Upgradeable public sUSD;
AddressSetLib.AddressSet internal _activeMarkets;
AddressSetLib.AddressSet internal _maturedMarkets;
mapping(address => AddressSetLib.AddressSet) internal _activeMarketsPerUser;
mapping(address => AddressSetLib.AddressSet) internal _maturedMarketsPerUser;
uint public minChainedMarkets;
uint public maxChainedMarkets;
uint64 public minTimeFrame;
uint64 public maxTimeFrame;
uint public minBuyinAmount;
uint public maxBuyinAmount;
uint public maxProfitPerIndividualMarket;
uint private payoutMultiplier; // unused, part of payoutMultipliers
uint public maxRisk;
uint public currentRisk;
address public chainedSpeedMarketMastercopy;
bool public multicollateralEnabled;
/// @notice The address of the address manager contract
IAddressManager public addressManager;
/// @notice payout multipliers for each number of chained markets, starting from minChainedMarkets up to maxChainedMarkets
/// e.g. for 2-6 chained markets [1.7, 1.8, 1.9, 1.95, 2] - for 2 chained markets multiplier is 1.7, for 3 it is 1.8, ...
uint[] public payoutMultipliers;
// using this to solve stack too deep
struct TempData {
uint payout;
uint payoutMultiplier;
ISpeedMarketsAMM.Params speedAMMParams;
}
struct CreateMarketParams {
address user;
bytes32 asset;
uint64 timeFrame;
int64 strikePrice;
ISpeedMarketsAMM.OracleSource oracleSource;
SpeedMarket.Direction[] directions;
address collateral;
uint collateralAmount;
address referrer;
}
struct InternalCreateMarketParams {
CreateMarketParams createMarketParams;
uint buyinAmount;
uint buyinAmountInUSD;
uint bonus;
bool transferCollateral;
address defaultCollateral;
}
receive() external payable {}
function initialize(address _owner, IERC20Upgradeable _sUSD) external initializer {
setOwner(_owner);
initNonReentrant();
sUSD = _sUSD;
}
function createNewMarket(CreateMarketParams calldata _params)
external
nonReentrant
notPaused
onlyPending
returns (address marketAddress)
{
IAddressManager.Addresses memory contractsAddresses = addressManager.getAddresses();
// Determine collateral configuration
(
bool isNativeCollateral,
address defaultCollateral,
uint buyinAmount,
uint buyinAmountInUSD,
uint bonus
) = _determineCollateralConfig(_params, contractsAddresses);
InternalCreateMarketParams memory internalParams = InternalCreateMarketParams({
createMarketParams: _params,
buyinAmount: buyinAmount,
buyinAmountInUSD: buyinAmountInUSD,
bonus: bonus,
transferCollateral: isNativeCollateral,
defaultCollateral: defaultCollateral
});
marketAddress = _createNewMarket(internalParams, contractsAddresses);
}
/// @notice Determines collateral configuration and calculates buyin amount
/// @param _params Market creation parameters
/// @param contractsAddresses Contract addresses from address manager
/// @return isNativeCollateral Whether the collateral is natively supported
/// @return defaultCollateral The default collateral address to use
/// @return buyinAmount The calculated buyin amount
function _determineCollateralConfig(
CreateMarketParams calldata _params,
IAddressManager.Addresses memory contractsAddresses
)
internal
returns (
bool isNativeCollateral,
address defaultCollateral,
uint buyinAmount,
uint buyinAmountInUSD,
uint bonus
)
{
bool isSupportedNativeCollateral = ISpeedMarketsAMM(contractsAddresses.speedMarketsAMM).supportedNativeCollateral(
_params.collateral
);
isNativeCollateral = isSupportedNativeCollateral || _params.collateral == address(0);
if (isSupportedNativeCollateral && _params.collateral != address(0)) {
defaultCollateral = _params.collateral;
} else {
defaultCollateral = address(sUSD);
}
bonus = ISpeedMarketsAMM(contractsAddresses.speedMarketsAMM).bonusPerCollateral(defaultCollateral);
// Calculate buyin amount based on collateral type
if (isNativeCollateral) {
buyinAmount = buyinAmountInUSD = _params.collateralAmount;
if (defaultCollateral != address(sUSD)) {
buyinAmountInUSD = ISpeedMarketsAMM(contractsAddresses.speedMarketsAMM)
.speedMarketsAMMUtils()
.transformCollateralToUSD(defaultCollateral, address(sUSD), _params.collateralAmount);
}
} else {
// For external collaterals, convert through onramp
buyinAmount = buyinAmountInUSD = _getBuyinWithConversion(
_params.user,
_params.collateral,
_params.collateralAmount,
contractsAddresses
);
}
}
/// @notice Gets the buyin amount with conversion
/// @param user The user address
/// @param collateral The collateral address
/// @param collateralAmount The collateral amount
/// @param contractsAddresses Contract addresses from address manager
/// @return buyinAmount The calculated buyin amount
function _getBuyinWithConversion(
address user,
address collateral,
uint collateralAmount,
IAddressManager.Addresses memory contractsAddresses
) internal returns (uint buyinAmount) {
if (!multicollateralEnabled) revert MulticollateralOnrampDisabled();
uint amountBefore = sUSD.balanceOf(address(this));
IMultiCollateralOnOffRamp multiCollateralOnOffRamp = IMultiCollateralOnOffRamp(
contractsAddresses.multiCollateralOnOffRamp
);
IERC20Upgradeable(collateral).safeTransferFrom(user, address(this), collateralAmount);
IERC20Upgradeable(collateral).approve(address(multiCollateralOnOffRamp), collateralAmount);
uint convertedAmount = multiCollateralOnOffRamp.onramp(collateral, collateralAmount);
ISpeedMarketsAMM speedMarketsAMM = ISpeedMarketsAMM(contractsAddresses.speedMarketsAMM);
buyinAmount = (convertedAmount * (ONE - speedMarketsAMM.safeBoxImpact())) / ONE;
uint amountDiff = sUSD.balanceOf(address(this)) - amountBefore;
if (amountDiff < buyinAmount) revert NotEnoughReceivedViaOnramp();
}
/// @notice Gets the payout amount
/// @param _buyinAmount The buyin amount
/// @param _numOfDirections The number of directions
/// @param _payoutMultiplier The payout multiplier
/// @return _payout The calculated payout amount
function _getPayout(
uint _buyinAmount,
uint8 _numOfDirections,
uint _payoutMultiplier
) internal pure returns (uint _payout) {
_payout = _buyinAmount;
for (uint8 i; i < _numOfDirections; ++i) {
_payout = (_payout * _payoutMultiplier) / ONE;
}
}
/// @notice Handles the referrer and safe box
/// @param user The user address
/// @param referrer The referrer address
/// @param buyinAmount The buyin amount
/// @param safeBoxImpact The safe box impact
/// @param collateral The collateral address
function _handleReferrerAndSafeBox(
address user,
address referrer,
uint buyinAmount,
uint safeBoxImpact,
address collateral,
IAddressManager.Addresses memory contractsAddresses
) internal returns (uint referrerShare) {
IReferrals referrals = IReferrals(contractsAddresses.referrals);
if (address(referrals) != address(0)) {
address newOrExistingReferrer;
if (referrer != address(0)) {
referrals.setReferrer(referrer, user);
newOrExistingReferrer = referrer;
} else {
newOrExistingReferrer = referrals.referrals(user);
}
if (newOrExistingReferrer != address(0)) {
uint referrerFeeByTier = referrals.getReferrerFee(newOrExistingReferrer);
if (referrerFeeByTier > 0) {
referrerShare = (buyinAmount * referrerFeeByTier) / ONE;
IERC20Upgradeable(collateral).safeTransfer(newOrExistingReferrer, referrerShare);
emit ReferrerPaid(newOrExistingReferrer, user, referrerShare, buyinAmount);
}
}
}
IERC20Upgradeable(collateral).safeTransfer(
contractsAddresses.safeBox,
(buyinAmount * safeBoxImpact) / ONE - referrerShare
);
}
/// @notice Creates a new market
/// @param internalParams Internal market creation parameters
/// @param contractsAddresses Contract addresses from address manager
function _createNewMarket(
InternalCreateMarketParams memory internalParams,
IAddressManager.Addresses memory contractsAddresses
) internal returns (address) {
TempData memory tempData;
tempData.speedAMMParams = ISpeedMarketsAMM(contractsAddresses.speedMarketsAMM).getParams(
internalParams.createMarketParams.asset
);
if (!tempData.speedAMMParams.supportedAsset) revert AssetNotSupported();
if (internalParams.buyinAmountInUSD < minBuyinAmount || internalParams.buyinAmountInUSD > maxBuyinAmount) {
revert InvalidBuyinAmount();
}
if (
internalParams.createMarketParams.timeFrame < minTimeFrame ||
internalParams.createMarketParams.timeFrame > maxTimeFrame
) {
revert InvalidTimeFrame();
}
if (
internalParams.createMarketParams.directions.length < minChainedMarkets ||
internalParams.createMarketParams.directions.length > maxChainedMarkets
) {
revert InvalidNumberOfDirections();
}
tempData.payoutMultiplier = payoutMultipliers[
uint8(internalParams.createMarketParams.directions.length) - minChainedMarkets
];
tempData.payout = _getPayout(
internalParams.buyinAmount,
uint8(internalParams.createMarketParams.directions.length),
tempData.payoutMultiplier
);
if (internalParams.bonus > 0) {
tempData.payout = (tempData.payout * (ONE + internalParams.bonus)) / ONE;
}
{
uint payoutInUSD = internalParams.defaultCollateral == address(sUSD)
? tempData.payout
: ISpeedMarketsAMM(contractsAddresses.speedMarketsAMM).speedMarketsAMMUtils().transformCollateralToUSD(
internalParams.defaultCollateral,
address(sUSD),
tempData.payout
);
if (payoutInUSD > maxProfitPerIndividualMarket) revert ProfitTooHigh();
currentRisk += (payoutInUSD - internalParams.buyinAmountInUSD);
if (currentRisk > maxRisk) revert OutOfLiquidity();
}
if (internalParams.transferCollateral) {
uint totalAmountToTransfer = (internalParams.buyinAmount * (ONE + tempData.speedAMMParams.safeBoxImpact)) / ONE;
IERC20Upgradeable(internalParams.defaultCollateral).safeTransferFrom(
internalParams.createMarketParams.user,
address(this),
totalAmountToTransfer
);
}
ChainedSpeedMarket csm = ChainedSpeedMarket(Clones.clone(chainedSpeedMarketMastercopy));
csm.initialize(
ChainedSpeedMarket.InitParams(
address(this),
internalParams.createMarketParams.user,
internalParams.createMarketParams.asset,
internalParams.createMarketParams.timeFrame,
uint64(block.timestamp + internalParams.createMarketParams.timeFrame),
uint64(
block.timestamp +
internalParams.createMarketParams.timeFrame *
internalParams.createMarketParams.directions.length
), // strike time
internalParams.createMarketParams.strikePrice,
internalParams.createMarketParams.oracleSource,
internalParams.createMarketParams.directions,
internalParams.buyinAmount,
tempData.speedAMMParams.safeBoxImpact,
tempData.payoutMultiplier,
internalParams.defaultCollateral,
tempData.payout
)
);
if (internalParams.transferCollateral && internalParams.defaultCollateral != address(sUSD)) {
IERC20Upgradeable(internalParams.defaultCollateral).safeTransfer(address(csm), tempData.payout);
} else {
sUSD.safeTransfer(address(csm), tempData.payout);
}
_handleReferrerAndSafeBox(
internalParams.createMarketParams.user,
internalParams.createMarketParams.referrer,
internalParams.buyinAmount,
tempData.speedAMMParams.safeBoxImpact,
internalParams.defaultCollateral,
contractsAddresses
);
_activeMarkets.add(address(csm));
_activeMarketsPerUser[internalParams.createMarketParams.user].add(address(csm));
emit MarketCreated(
address(csm),
internalParams.createMarketParams.user,
internalParams.createMarketParams.asset,
internalParams.createMarketParams.timeFrame,
uint64(
block.timestamp +
internalParams.createMarketParams.timeFrame *
internalParams.createMarketParams.directions.length
), // strike time
internalParams.createMarketParams.strikePrice,
internalParams.createMarketParams.directions,
internalParams.buyinAmount,
tempData.payoutMultiplier,
tempData.speedAMMParams.safeBoxImpact
);
return address(csm);
}
/// @notice resolver or owner can resolve market for a given market address with finalPrices
function resolveMarketWithPrices(
address _market,
int64[] calldata _finalPrices,
bool _isManually
) external {
if (msg.sender != addressManager.getAddress("SpeedMarketsAMMResolver") && msg.sender != owner)
revert CanOnlyBeCalledFromResolver();
if (!canResolveMarket(_market)) revert CanNotResolve();
_isManually = msg.sender == owner ? false : _isManually;
_resolveMarketWithPrices(_market, _finalPrices, _isManually);
}
function _resolveMarketWithPrices(
address market,
int64[] memory _finalPrices,
bool _isManually
) internal {
ChainedSpeedMarket csm = ChainedSpeedMarket(market);
csm.resolve(_finalPrices, _isManually);
if (csm.resolved()) {
_activeMarkets.remove(market);
_maturedMarkets.add(market);
address user = csm.user();
if (_activeMarketsPerUser[user].contains(market)) {
_activeMarketsPerUser[user].remove(market);
}
_maturedMarketsPerUser[user].add(market);
uint buyinAmount = csm.buyinAmount();
uint payout = _getPayout(buyinAmount, csm.numOfDirections(), csm.payoutMultiplier());
IAddressManager.Addresses memory contractsAddresses = addressManager.getAddresses();
uint collateralBonus = ISpeedMarketsAMM(contractsAddresses.speedMarketsAMM).bonusPerCollateral(csm.collateral());
if (collateralBonus > 0) {
payout = (payout * (ONE + collateralBonus)) / ONE;
}
uint payoutInUSD = csm.collateral() == address(sUSD)
? payout
: ISpeedMarketsAMM(contractsAddresses.speedMarketsAMM).speedMarketsAMMUtils().transformCollateralToUSD(
csm.collateral(),
address(sUSD),
payout
);
if (!csm.isUserWinner()) {
if (currentRisk > payoutInUSD) {
currentRisk -= payoutInUSD;
} else {
currentRisk = 0;
}
}
}
emit MarketResolved(market, csm.isUserWinner());
}
function offrampHelper(address user, uint amount) external {
if (msg.sender != addressManager.getAddress("SpeedMarketsAMMResolver")) revert CanOnlyBeCalledFromResolver();
sUSD.safeTransferFrom(user, msg.sender, amount);
}
/// @notice Transfer amount to destination address
function transferAmount(
address _collateral,
address _destination,
uint _amount
) external onlyOwner {
IERC20Upgradeable(_collateral).safeTransfer(_destination, _amount);
emit AmountTransfered(_collateral, _destination, _amount);
}
//////////// getters /////////////////
/// @notice activeMarkets returns list of active markets
/// @param index index of the page
/// @param pageSize number of addresses per page
/// @return address[] active market list
function activeMarkets(uint index, uint pageSize) external view returns (address[] memory) {
return _activeMarkets.getPage(index, pageSize);
}
/// @notice maturedMarkets returns list of matured markets
/// @param index index of the page
/// @param pageSize number of addresses per page
/// @return address[] matured market list
function maturedMarkets(uint index, uint pageSize) external view returns (address[] memory) {
return _maturedMarkets.getPage(index, pageSize);
}
/// @notice activeMarkets returns list of active markets per user
function activeMarketsPerUser(
uint index,
uint pageSize,
address user
) external view returns (address[] memory) {
return _activeMarketsPerUser[user].getPage(index, pageSize);
}
/// @notice maturedMarkets returns list of matured markets per user
function maturedMarketsPerUser(
uint index,
uint pageSize,
address user
) external view returns (address[] memory) {
return _maturedMarketsPerUser[user].getPage(index, pageSize);
}
/// @notice whether a market can be resolved
function canResolveMarket(address market) public view returns (bool) {
if (!_activeMarkets.contains(market)) return false;
ChainedSpeedMarket chainedMarket = ChainedSpeedMarket(market);
if (chainedMarket.resolved()) return false;
// For chained markets, we need to wait for all strike times to pass
// This means initialStrikeTime + (timeFrame * (numOfDirections - 1))
uint256 finalStrikeTime = chainedMarket.initialStrikeTime() +
(chainedMarket.timeFrame() * (chainedMarket.numOfDirections() - 1));
return block.timestamp > finalStrikeTime;
}
/// @notice get lengths of all arrays
function getLengths(address user) external view returns (uint[4] memory) {
return [
_activeMarkets.elements.length,
_maturedMarkets.elements.length,
_activeMarketsPerUser[user].elements.length,
_maturedMarketsPerUser[user].elements.length
];
}
//////////////////setters/////////////////
/// @notice Set mastercopy to use to create markets
/// @param _mastercopy to use to create markets
function setMastercopy(address _mastercopy) external onlyOwner {
chainedSpeedMarketMastercopy = _mastercopy;
emit MastercopyChanged(_mastercopy);
}
/// @notice Set parameters for limits and payout
function setLimitParams(
uint64 _minTimeFrame,
uint64 _maxTimeFrame,
uint _minChainedMarkets,
uint _maxChainedMarkets,
uint _minBuyinAmount,
uint _maxBuyinAmount,
uint _maxProfitPerIndividualMarket,
uint _maxRisk,
uint[] calldata _payoutMultipliers
) external onlyOwner {
if (_minChainedMarkets <= 1) revert MinChainedMarketsError();
minTimeFrame = _minTimeFrame;
maxTimeFrame = _maxTimeFrame;
minChainedMarkets = _minChainedMarkets;
maxChainedMarkets = _maxChainedMarkets;
minBuyinAmount = _minBuyinAmount;
maxBuyinAmount = _maxBuyinAmount;
maxProfitPerIndividualMarket = _maxProfitPerIndividualMarket;
maxRisk = _maxRisk;
currentRisk = 0;
payoutMultipliers = _payoutMultipliers;
emit LimitParamsChanged(
_minTimeFrame,
_maxTimeFrame,
_minChainedMarkets,
_maxChainedMarkets,
_minBuyinAmount,
_maxBuyinAmount,
_maxProfitPerIndividualMarket,
_maxRisk,
_payoutMultipliers
);
}
/// @notice set address manager contract address
function setAddressManager(address _addressManager) external onlyOwner {
addressManager = IAddressManager(_addressManager);
emit AddressManagerChanged(_addressManager);
}
/// @notice set sUSD address (default collateral)
function setSusdAddress(address _sUSD) external onlyOwner {
sUSD = IERC20Upgradeable(_sUSD);
emit SusdAddressChanged(_sUSD);
}
/// @notice set multicollateral enabled
function setMultiCollateralOnOffRampEnabled(bool _enabled) external onlyOwner {
address multiCollateralOnOffRamp = addressManager.multiCollateralOnOffRamp();
if (multiCollateralOnOffRamp != address(0)) {
sUSD.approve(multiCollateralOnOffRamp, _enabled ? MAX_APPROVAL : 0);
}
multicollateralEnabled = _enabled;
emit MultiCollateralOnOffRampEnabled(_enabled);
}
//////////////////modifiers/////////////////
modifier onlyPending() {
address speedMarketsCreator = addressManager.getAddress("SpeedMarketsAMMCreator");
if (msg.sender != speedMarketsCreator) revert OnlyCreatorAllowed();
_;
}
//////////////////events/////////////////
event MarketCreated(
address market,
address user,
bytes32 asset,
uint64 timeFrame,
uint64 strikeTime,
int64 strikePrice,
SpeedMarket.Direction[] directions,
uint buyinAmount,
uint payoutMultiplier,
uint safeBoxImpact
);
event MarketResolved(address market, bool userIsWinner);
event MastercopyChanged(address mastercopy);
event LimitParamsChanged(
uint64 _minTimeFrame,
uint64 _maxTimeFrame,
uint _minChainedMarkets,
uint _maxChainedMarkets,
uint _minBuyinAmount,
uint _maxBuyinAmount,
uint _maxProfitPerIndividualMarket,
uint _maxRisk,
uint[] _payoutMultipliers
);
event ReferrerPaid(address refferer, address trader, uint amount, uint volume);
event SusdAddressChanged(address _sUSD);
event MultiCollateralOnOffRampEnabled(bool _enabled);
event AmountTransfered(address _collateral, address _destination, uint _amount);
event AddressManagerChanged(address _addressManager);
}// 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 (utils/math/Math.sol)
pragma solidity ^0.8.0;
/**
* @dev Standard math utilities missing in the Solidity language.
*/
library MathUpgradeable {
/**
* @dev Returns the largest of two numbers.
*/
function max(uint256 a, uint256 b) internal pure returns (uint256) {
return a >= b ? a : b;
}
/**
* @dev Returns the smallest of two numbers.
*/
function min(uint256 a, uint256 b) internal pure returns (uint256) {
return a < b ? a : b;
}
/**
* @dev Returns the average of two numbers. The result is rounded towards
* zero.
*/
function average(uint256 a, uint256 b) internal pure returns (uint256) {
// (a + b) / 2 can overflow.
return (a & b) + (a ^ b) / 2;
}
/**
* @dev Returns the ceiling of the division of two numbers.
*
* This differs from standard division with `/` in that it rounds up instead
* of rounding down.
*/
function ceilDiv(uint256 a, uint256 b) internal pure returns (uint256) {
// (a + b - 1) / b can overflow on addition, so we distribute.
return a / b + (a % b == 0 ? 0 : 1);
}
}// SPDX-License-Identifier: 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 (utils/math/SafeMath.sol)
pragma solidity ^0.8.0;
// CAUTION
// This version of SafeMath should only be used with Solidity 0.8 or later,
// because it relies on the compiler's built in overflow checks.
/**
* @dev Wrappers over Solidity's arithmetic operations.
*
* NOTE: `SafeMath` is generally not needed starting with Solidity 0.8, since the compiler
* now has built in overflow checking.
*/
library SafeMathUpgradeable {
/**
* @dev Returns the addition of two unsigned integers, with an overflow flag.
*
* _Available since v3.4._
*/
function tryAdd(uint256 a, uint256 b) internal pure returns (bool, uint256) {
unchecked {
uint256 c = a + b;
if (c < a) return (false, 0);
return (true, c);
}
}
/**
* @dev Returns the substraction of two unsigned integers, with an overflow flag.
*
* _Available since v3.4._
*/
function trySub(uint256 a, uint256 b) internal pure returns (bool, uint256) {
unchecked {
if (b > a) return (false, 0);
return (true, a - b);
}
}
/**
* @dev Returns the multiplication of two unsigned integers, with an overflow flag.
*
* _Available since v3.4._
*/
function tryMul(uint256 a, uint256 b) internal pure returns (bool, uint256) {
unchecked {
// Gas optimization: this is cheaper than requiring 'a' not being zero, but the
// benefit is lost if 'b' is also tested.
// See: https://github.com/OpenZeppelin/openzeppelin-contracts/pull/522
if (a == 0) return (true, 0);
uint256 c = a * b;
if (c / a != b) return (false, 0);
return (true, c);
}
}
/**
* @dev Returns the division of two unsigned integers, with a division by zero flag.
*
* _Available since v3.4._
*/
function tryDiv(uint256 a, uint256 b) internal pure returns (bool, uint256) {
unchecked {
if (b == 0) return (false, 0);
return (true, a / b);
}
}
/**
* @dev Returns the remainder of dividing two unsigned integers, with a division by zero flag.
*
* _Available since v3.4._
*/
function tryMod(uint256 a, uint256 b) internal pure returns (bool, uint256) {
unchecked {
if (b == 0) return (false, 0);
return (true, a % b);
}
}
/**
* @dev Returns the addition of two unsigned integers, reverting on
* overflow.
*
* Counterpart to Solidity's `+` operator.
*
* Requirements:
*
* - Addition cannot overflow.
*/
function add(uint256 a, uint256 b) internal pure returns (uint256) {
return a + b;
}
/**
* @dev Returns the subtraction of two unsigned integers, reverting on
* overflow (when the result is negative).
*
* Counterpart to Solidity's `-` operator.
*
* Requirements:
*
* - Subtraction cannot overflow.
*/
function sub(uint256 a, uint256 b) internal pure returns (uint256) {
return a - b;
}
/**
* @dev Returns the multiplication of two unsigned integers, reverting on
* overflow.
*
* Counterpart to Solidity's `*` operator.
*
* Requirements:
*
* - Multiplication cannot overflow.
*/
function mul(uint256 a, uint256 b) internal pure returns (uint256) {
return a * b;
}
/**
* @dev Returns the integer division of two unsigned integers, reverting on
* division by zero. The result is rounded towards zero.
*
* Counterpart to Solidity's `/` operator.
*
* Requirements:
*
* - The divisor cannot be zero.
*/
function div(uint256 a, uint256 b) internal pure returns (uint256) {
return a / b;
}
/**
* @dev Returns the remainder of dividing two unsigned integers. (unsigned integer modulo),
* reverting when dividing by zero.
*
* Counterpart to Solidity's `%` operator. This function uses a `revert`
* opcode (which leaves remaining gas untouched) while Solidity uses an
* invalid opcode to revert (consuming all remaining gas).
*
* Requirements:
*
* - The divisor cannot be zero.
*/
function mod(uint256 a, uint256 b) internal pure returns (uint256) {
return a % b;
}
/**
* @dev Returns the subtraction of two unsigned integers, reverting with custom message on
* overflow (when the result is negative).
*
* CAUTION: This function is deprecated because it requires allocating memory for the error
* message unnecessarily. For custom revert reasons use {trySub}.
*
* Counterpart to Solidity's `-` operator.
*
* Requirements:
*
* - Subtraction cannot overflow.
*/
function sub(
uint256 a,
uint256 b,
string memory errorMessage
) internal pure returns (uint256) {
unchecked {
require(b <= a, errorMessage);
return a - b;
}
}
/**
* @dev Returns the integer division of two unsigned integers, reverting with custom message on
* division by zero. The result is rounded towards zero.
*
* Counterpart to Solidity's `/` operator. Note: this function uses a
* `revert` opcode (which leaves remaining gas untouched) while Solidity
* uses an invalid opcode to revert (consuming all remaining gas).
*
* Requirements:
*
* - The divisor cannot be zero.
*/
function div(
uint256 a,
uint256 b,
string memory errorMessage
) internal pure returns (uint256) {
unchecked {
require(b > 0, errorMessage);
return a / b;
}
}
/**
* @dev Returns the remainder of dividing two unsigned integers. (unsigned integer modulo),
* reverting with custom message when dividing by zero.
*
* CAUTION: This function is deprecated because it requires allocating memory for the error
* message unnecessarily. For custom revert reasons use {tryMod}.
*
* Counterpart to Solidity's `%` operator. This function uses a `revert`
* opcode (which leaves remaining gas untouched) while Solidity uses an
* invalid opcode to revert (consuming all remaining gas).
*
* Requirements:
*
* - The divisor cannot be zero.
*/
function mod(
uint256 a,
uint256 b,
string memory errorMessage
) internal pure returns (uint256) {
unchecked {
require(b > 0, errorMessage);
return a % b;
}
}
}// 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 (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
// 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.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
pragma solidity ^0.8.0;
// Inheritance
import "./ProxyOwned.sol";
// Clone of syntetix contract without constructor
contract ProxyPausable is ProxyOwned {
uint public lastPauseTime;
bool public paused;
/**
* @notice Change the paused state of the contract
* @dev Only the contract owner may call this.
*/
function setPaused(bool _paused) external onlyOwner {
// Ensure we're actually changing the state before we do anything
if (_paused == paused) {
return;
}
// Set our paused state.
paused = _paused;
// If applicable, set the last pause time.
if (paused) {
lastPauseTime = block.timestamp;
}
// Let everyone know that our pause state has changed.
emit PauseChanged(paused);
}
event PauseChanged(bool isPaused);
modifier notPaused {
require(!paused, "This action cannot be performed while the contract is paused");
_;
}
}// SPDX-License-Identifier: MIT
pragma solidity ^0.8.0;
library AddressSetLib {
struct AddressSet {
address[] elements;
mapping(address => uint) indices;
}
function contains(AddressSet storage set, address candidate) internal view returns (bool) {
if (set.elements.length == 0) {
return false;
}
uint index = set.indices[candidate];
return index != 0 || set.elements[0] == candidate;
}
function getPage(
AddressSet storage set,
uint index,
uint pageSize
) internal view returns (address[] memory) {
// NOTE: This implementation should be converted to slice operators if the compiler is updated to v0.6.0+
uint endIndex = index + pageSize; // The check below that endIndex <= index handles overflow.
// If the page extends past the end of the list, truncate it.
if (endIndex > set.elements.length) {
endIndex = set.elements.length;
}
if (endIndex <= index) {
return new address[](0);
}
uint n = endIndex - index; // We already checked for negative overflow.
address[] memory page = new address[](n);
for (uint i; i < n; i++) {
page[i] = set.elements[i + index];
}
return page;
}
function add(AddressSet storage set, address element) internal {
// Adding to a set is an idempotent operation.
if (!contains(set, element)) {
set.indices[element] = set.elements.length;
set.elements.push(element);
}
}
function remove(AddressSet storage set, address element) internal {
require(contains(set, element), "Element not in set.");
// Replace the removed element with the last element of the list.
uint index = set.indices[element];
uint lastIndex = set.elements.length - 1; // We required that element is in the list, so it is not empty.
if (index != lastIndex) {
// No need to shift the last element if it is the one we want to delete.
address shiftedElement = set.elements[lastIndex];
set.elements[index] = shiftedElement;
set.indices[shiftedElement] = index;
}
set.elements.pop();
delete set.indices[element];
}
}// 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);
function decreaseAndTransferStakedThales(address account, uint amount) external;
function increaseAndTransferStakedThales(address account, uint amount) external;
function updateVolumeAtAmountDecimals(
address account,
uint amount,
uint decimals
) external;
}// SPDX-License-Identifier: MIT
pragma solidity >=0.5.16;
interface IMultiCollateralOnOffRamp {
function onramp(address collateral, uint collateralAmount) external returns (uint);
function onrampWithEth(uint amount) external payable returns (uint);
function getMinimumReceived(address collateral, uint amount) external view returns (uint);
function getMinimumNeeded(address collateral, uint amount) external view returns (uint);
function WETH9() external view returns (address);
function offrampIntoEth(uint amount) external returns (uint);
function offramp(address collateral, uint amount) external returns (uint);
function offrampFromIntoEth(address collateralFrom, uint amount) external returns (uint);
function offrampFrom(
address collateralFrom,
address collateralTo,
uint amount
) external returns (uint);
function priceFeed() external view returns (address);
}// SPDX-License-Identifier: MIT
pragma solidity >=0.5.16;
interface IReferrals {
function referrals(address) external view returns (address);
function getReferrerFee(address) external view returns (uint);
function sportReferrals(address) external view returns (address);
function setReferrer(address, address) external;
}// SPDX-License-Identifier: MIT
pragma solidity >=0.5.16;
import "@openzeppelin/contracts-upgradeable/token/ERC20/IERC20Upgradeable.sol";
import "@pythnetwork/pyth-sdk-solidity/PythStructs.sol";
import "../SpeedMarkets/SpeedMarket.sol";
import "../SpeedMarkets/SpeedMarketsAMM.sol";
import "./ISpeedMarketsAMMUtils.sol";
interface ISpeedMarketsAMM {
enum OracleSource {
Pyth,
Chainlink
}
struct Params {
bool supportedAsset;
uint safeBoxImpact;
uint64 maximumPriceDelay;
}
function sUSD() external view returns (IERC20Upgradeable);
function addressManager() external view returns (address);
function createNewMarket(SpeedMarketsAMM.CreateMarketParams calldata _params) external returns (address marketAddress);
function resolveMarketWithPrice(address _market, int64 _finalPrice) external;
function canResolveMarket(address market) external view returns (bool);
function multicollateralEnabled() external view returns (bool);
function offrampHelper(address user, uint amount) external;
function supportedAsset(bytes32 _asset) external view returns (bool);
function assetToPythId(bytes32 _asset) external view returns (bytes32);
function assetToChainlinkId(bytes32 _asset) external view returns (bytes32);
function minBuyinAmount() external view returns (uint);
function maxBuyinAmount() external view returns (uint);
function minimalTimeToMaturity() external view returns (uint);
function maximalTimeToMaturity() external view returns (uint);
function maximumPriceDelay() external view returns (uint64);
function maximumPriceDelayForResolving() external view returns (uint64);
function timeThresholdsForFees(uint _index) external view returns (uint);
function lpFees(uint _index) external view returns (uint);
function lpFee() external view returns (uint);
function maxSkewImpact() external view returns (uint);
function safeBoxImpact() external view returns (uint);
function marketHasCreatedAtAttribute(address _market) external view returns (bool);
function marketHasFeeAttribute(address _market) external view returns (bool);
function maxRiskPerAsset(bytes32 _asset) external view returns (uint);
function currentRiskPerAsset(bytes32 _asset) external view returns (uint);
function maxRiskPerAssetAndDirection(bytes32 _asset, SpeedMarket.Direction _direction) external view returns (uint);
function currentRiskPerAssetAndDirection(bytes32 _asset, SpeedMarket.Direction _direction) external view returns (uint);
function whitelistedAddresses(address _wallet) external view returns (bool);
function getLengths(address _user) external view returns (uint[5] memory);
function getParams(bytes32 _asset) external view returns (Params memory);
function supportedNativeCollateral(address _collateral) external view returns (bool);
function bonusPerCollateral(address _collateral) external view returns (uint);
function speedMarketsAMMUtils() external view returns (ISpeedMarketsAMMUtils);
}// SPDX-License-Identifier: MIT
pragma solidity >=0.5.16;
interface IAddressManager {
struct Addresses {
address safeBox;
address referrals;
address stakingThales;
address multiCollateralOnOffRamp;
address pyth;
address speedMarketsAMM;
}
function safeBox() external view returns (address);
function referrals() external view returns (address);
function stakingThales() external view returns (address);
function multiCollateralOnOffRamp() external view returns (address);
function pyth() external view returns (address);
function speedMarketsAMM() external view returns (address);
function getAddresses() external view returns (Addresses memory);
function getAddresses(string[] calldata _contractNames) external view returns (address[] memory contracts);
function getAddress(string memory _contractName) external view returns (address contract_);
function checkIfContractExists(string memory _contractName) external view returns (bool contractExists);
}// SPDX-License-Identifier: MIT
pragma solidity ^0.8.0;
import "@openzeppelin/contracts-upgradeable/token/ERC20/utils/SafeERC20Upgradeable.sol";
import "@openzeppelin/contracts-upgradeable/token/ERC20/IERC20Upgradeable.sol";
import "../interfaces/ISpeedMarketsAMM.sol";
contract SpeedMarket {
using SafeERC20Upgradeable for IERC20Upgradeable;
struct InitParams {
address _speedMarketsAMM;
address _user;
bytes32 _asset;
uint64 _strikeTime;
int64 _strikePrice;
uint64 _strikePricePublishTime;
ISpeedMarketsAMM.OracleSource _oracleSource;
Direction _direction;
address _collateral;
uint _buyinAmount;
uint _safeBoxImpact;
uint _lpFee;
uint _payout;
}
enum Direction {
Up,
Down
}
address public user;
bytes32 public asset;
uint64 public strikeTime;
int64 public strikePrice;
uint64 public strikePricePublishTime;
ISpeedMarketsAMM.OracleSource public oracleSource;
Direction public direction;
uint public buyinAmount;
uint public payout;
address public collateral;
bool public resolved;
int64 public finalPrice;
Direction public result;
ISpeedMarketsAMM public speedMarketsAMM;
uint public safeBoxImpact;
uint public lpFee;
uint256 public createdAt;
/* ========== CONSTRUCTOR ========== */
bool public initialized = false;
function initialize(InitParams calldata params) external {
require(!initialized, "Speed market already initialized");
initialized = true;
speedMarketsAMM = ISpeedMarketsAMM(params._speedMarketsAMM);
user = params._user;
asset = params._asset;
strikeTime = params._strikeTime;
strikePrice = params._strikePrice;
strikePricePublishTime = params._strikePricePublishTime;
oracleSource = params._oracleSource;
direction = params._direction;
buyinAmount = params._buyinAmount;
safeBoxImpact = params._safeBoxImpact;
lpFee = params._lpFee;
collateral = params._collateral;
payout = params._payout;
IERC20Upgradeable(params._collateral).approve(params._speedMarketsAMM, type(uint256).max);
createdAt = block.timestamp;
}
function resolve(int64 _finalPrice) external onlyAMM {
require(!resolved, "already resolved");
require(block.timestamp > strikeTime, "not ready to be resolved");
resolved = true;
finalPrice = _finalPrice;
if (finalPrice < strikePrice) {
result = Direction.Down;
} else if (finalPrice > strikePrice) {
result = Direction.Up;
} else {
result = direction == Direction.Up ? Direction.Down : Direction.Up;
}
uint payoutToTransfer = IERC20Upgradeable(collateral).balanceOf(address(this));
if (direction == result) {
if (payoutToTransfer > payout) {
IERC20Upgradeable(collateral).safeTransfer(address(speedMarketsAMM), payoutToTransfer - payout);
payoutToTransfer = payout;
}
IERC20Upgradeable(collateral).safeTransfer(user, payoutToTransfer);
} else {
IERC20Upgradeable(collateral).safeTransfer(address(speedMarketsAMM), payoutToTransfer);
}
emit Resolved(finalPrice, result, direction == result);
}
function isUserWinner() external view returns (bool) {
return resolved && (direction == result);
}
modifier onlyAMM() {
require(msg.sender == address(speedMarketsAMM), "only the AMM may perform these methods");
_;
}
event Resolved(int64 finalPrice, Direction result, bool userIsWinner);
}// SPDX-License-Identifier: MIT
pragma solidity ^0.8.0;
// external
import "@openzeppelin/contracts-upgradeable/token/ERC20/utils/SafeERC20Upgradeable.sol";
import "@openzeppelin/contracts-upgradeable/token/ERC20/IERC20Upgradeable.sol";
// internal
import "../interfaces/IChainedSpeedMarketsAMM.sol";
import "./SpeedMarket.sol";
contract ChainedSpeedMarket {
using SafeERC20Upgradeable for IERC20Upgradeable;
struct InitParams {
address _chainedMarketsAMM;
address _user;
bytes32 _asset;
uint64 _timeFrame;
uint64 _initialStrikeTime;
uint64 _strikeTime;
int64 _initialStrikePrice;
ISpeedMarketsAMM.OracleSource _oracleSource;
SpeedMarket.Direction[] _directions;
uint _buyinAmount;
uint _safeBoxImpact;
uint _payoutMultiplier;
address _collateral;
uint _payout;
}
address public user;
address public collateral;
bytes32 public asset;
uint64 public timeFrame;
uint64 public initialStrikeTime;
uint64 public strikeTime;
int64 public initialStrikePrice;
int64[] public strikePrices;
ISpeedMarketsAMM.OracleSource public oracleSource;
SpeedMarket.Direction[] public directions;
uint public buyinAmount;
uint public payout;
uint public safeBoxImpact;
uint public payoutMultiplier;
bool public resolved;
int64[] public finalPrices;
bool public isUserWinner;
uint256 public createdAt;
IChainedSpeedMarketsAMM public chainedMarketsAMM;
/* ========== CONSTRUCTOR ========== */
bool public initialized = false;
function initialize(InitParams calldata params) external {
require(!initialized, "Chained market already initialized");
initialized = true;
chainedMarketsAMM = IChainedSpeedMarketsAMM(params._chainedMarketsAMM);
user = params._user;
asset = params._asset;
timeFrame = params._timeFrame;
initialStrikeTime = params._initialStrikeTime;
strikeTime = params._strikeTime;
initialStrikePrice = params._initialStrikePrice;
oracleSource = params._oracleSource;
directions = params._directions;
buyinAmount = params._buyinAmount;
safeBoxImpact = params._safeBoxImpact;
payoutMultiplier = params._payoutMultiplier;
collateral = params._collateral;
payout = params._payout;
IERC20Upgradeable(params._collateral).approve(params._chainedMarketsAMM, type(uint256).max);
createdAt = block.timestamp;
}
function resolve(int64[] calldata _finalPrices, bool _isManually) external onlyAMM {
require(!resolved, "already resolved");
require(block.timestamp > initialStrikeTime + (timeFrame * (_finalPrices.length - 1)), "not ready to be resolved");
require(_finalPrices.length <= directions.length, "more prices than directions");
finalPrices = _finalPrices;
for (uint i = 0; i < _finalPrices.length; i++) {
strikePrices.push(i == 0 ? initialStrikePrice : _finalPrices[i - 1]); // previous final price is current strike price
bool userLostDirection = _finalPrices[i] > 0 &&
strikePrices[i] > 0 &&
((_finalPrices[i] >= strikePrices[i] && directions[i] == SpeedMarket.Direction.Down) ||
(_finalPrices[i] <= strikePrices[i] && directions[i] == SpeedMarket.Direction.Up));
// user lost stop checking rest of directions
if (userLostDirection) {
resolved = true;
break;
}
// when last final price for last direction user won
if (i == directions.length - 1) {
require(!_isManually, "Can not resolve manually");
isUserWinner = true;
resolved = true;
}
}
require(resolved, "Not ready to resolve");
uint payoutToTransfer = IERC20Upgradeable(collateral).balanceOf(address(this));
if (isUserWinner) {
if (payoutToTransfer > payout) {
IERC20Upgradeable(collateral).safeTransfer(address(chainedMarketsAMM), payoutToTransfer - payout);
payoutToTransfer = payout;
}
IERC20Upgradeable(collateral).safeTransfer(user, payoutToTransfer);
} else {
IERC20Upgradeable(collateral).safeTransfer(address(chainedMarketsAMM), payoutToTransfer);
}
emit Resolved(finalPrices, isUserWinner);
}
/// @notice numOfDirections returns number of directions (speed markets in chain)
/// @return uint8
function numOfDirections() external view returns (uint8) {
return uint8(directions.length);
}
/// @notice numOfPrices returns number of strike/finales
/// @return uint
function numOfPrices() external view returns (uint) {
return strikePrices.length;
}
modifier onlyAMM() {
require(msg.sender == address(chainedMarketsAMM), "only the AMM may perform these methods");
_;
}
event Resolved(int64[] finalPrices, bool userIsWinner);
}// 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: Apache-2.0
pragma solidity ^0.8.0;
contract PythStructs {
// A price with a degree of uncertainty, represented as a price +- a confidence interval.
//
// The confidence interval roughly corresponds to the standard error of a normal distribution.
// Both the price and confidence are stored in a fixed-point numeric representation,
// `x * (10^expo)`, where `expo` is the exponent.
//
// Please refer to the documentation at https://docs.pyth.network/consumers/best-practices for how
// to how this price safely.
struct Price {
// Price
int64 price;
// Confidence interval around the price
uint64 conf;
// Price exponent
int32 expo;
// Unix timestamp describing when the price was published
uint publishTime;
}
// PriceFeed represents a current aggregate price from pyth publisher feeds.
struct PriceFeed {
// The price ID.
bytes32 id;
// Latest available price
Price price;
// Latest available exponentially-weighted moving average price
Price emaPrice;
}
}// SPDX-License-Identifier: MIT
pragma solidity ^0.8.0;
// external
import "@openzeppelin/contracts-upgradeable/token/ERC20/utils/SafeERC20Upgradeable.sol";
import "@openzeppelin/contracts-upgradeable/utils/math/MathUpgradeable.sol";
import "@openzeppelin/contracts-upgradeable/access/OwnableUpgradeable.sol";
import "@openzeppelin/contracts-upgradeable/proxy/utils/Initializable.sol";
import "@openzeppelin/contracts-upgradeable/utils/math/SafeMathUpgradeable.sol";
import "@openzeppelin/contracts-upgradeable/token/ERC20/IERC20Upgradeable.sol";
import "@openzeppelin/contracts-upgradeable/security/PausableUpgradeable.sol";
import "@openzeppelin/contracts-4.4.1/proxy/Clones.sol";
import "@pythnetwork/pyth-sdk-solidity/IPyth.sol";
// internal
import "../utils/proxy/solidity-0.8.0/ProxyReentrancyGuard.sol";
import "../utils/proxy/solidity-0.8.0/ProxyOwned.sol";
import "../utils/proxy/solidity-0.8.0/ProxyPausable.sol";
import "../utils/libraries/AddressSetLib.sol";
import "../interfaces/IStakingThales.sol";
import "../interfaces/IMultiCollateralOnOffRamp.sol";
import "../interfaces/IReferrals.sol";
import "../interfaces/IAddressManager.sol";
import "../interfaces/ISpeedMarketsAMM.sol";
import "./SpeedMarket.sol";
import "../interfaces/ISpeedMarketsAMMUtils.sol";
/// @title An AMM for Overtime Speed Markets
contract SpeedMarketsAMM is Initializable, ProxyOwned, ProxyPausable, ProxyReentrancyGuard {
using SafeERC20Upgradeable for IERC20Upgradeable;
using AddressSetLib for AddressSetLib.AddressSet;
AddressSetLib.AddressSet internal _activeMarkets;
AddressSetLib.AddressSet internal _maturedMarkets;
uint private constant ONE = 1e18;
uint private constant MAX_APPROVAL = type(uint256).max;
/// ========== Custom Errors ==========
error MulticollateralOnrampDisabled();
error NotEnoughReceivedViaOnramp();
error SkewSlippageExceeded();
error RiskPerDirectionExceeded();
error RiskPerAssetExceeded();
error AssetNotSupported();
error InvalidBuyinAmount();
error InvalidStrikeTime();
error TimeTooFarIntoFuture();
error CanNotResolve();
error InvalidPrice();
error CanOnlyBeCalledFromResolverOrOwner();
error OnlyCreatorAllowed();
error BonusTooHigh();
error OnlyMarketOwner();
error EtherTransferFailed();
error MismatchedLengths();
error CollateralNotSupported();
error InvalidOffRampCollateral();
error InvalidWhitelistAddress();
IERC20Upgradeable public sUSD;
address public speedMarketMastercopy;
uint public safeBoxImpact;
uint public lpFee;
address private safeBox; // unused, moved to AddressManager
mapping(bytes32 => bool) public supportedAsset;
uint public minimalTimeToMaturity;
uint public maximalTimeToMaturity;
uint public minBuyinAmount;
uint public maxBuyinAmount;
mapping(bytes32 => uint) public maxRiskPerAsset;
mapping(bytes32 => uint) public currentRiskPerAsset;
mapping(bytes32 => bytes32) public assetToPythId;
IPyth private pyth; // unused, moved to AddressManager
uint64 public maximumPriceDelay;
IStakingThales private stakingThales; // unused, moved to AddressManager
mapping(address => AddressSetLib.AddressSet) internal _activeMarketsPerUser;
mapping(address => AddressSetLib.AddressSet) internal _maturedMarketsPerUser;
mapping(address => bool) public whitelistedAddresses;
IMultiCollateralOnOffRamp private multiCollateralOnOffRamp; // unused, moved to AddressManager
bool public multicollateralEnabled;
mapping(bytes32 => mapping(SpeedMarket.Direction => uint)) public maxRiskPerAssetAndDirection;
mapping(bytes32 => mapping(SpeedMarket.Direction => uint)) public currentRiskPerAssetAndDirection;
uint64 public maximumPriceDelayForResolving;
mapping(address => bool) public marketHasCreatedAtAttribute;
address private referrals; // unused, moved to AddressManager
uint[] public timeThresholdsForFees;
uint[] public lpFees;
ISpeedMarketsAMMUtils public speedMarketsAMMUtils;
mapping(address => bool) public marketHasFeeAttribute;
/// @return The address of the address manager contract
IAddressManager public addressManager;
uint public maxSkewImpact;
uint public skewSlippage;
mapping(address => bool) public supportedNativeCollateral;
/// @notice Bonus percentage per collateral token (e.g., 0.02e18 for 2%)
mapping(address => uint) public bonusPerCollateral;
mapping(bytes32 => bytes32) public assetToChainlinkId;
/// @param user user wallet address
/// @param asset market asset
/// @param strikeTime strike time, if zero delta time is used
/// @param delta delta time, used if strike time is zero
/// @param strikePrice oracle price
/// @param strikePricePublishTime oracle publish time for strike price
/// @param direction direction (UP/DOWN)
/// @param collateral collateral address, for default collateral use zero address
/// @param collateralAmount collateral amount, for non default includes fees
/// @param referrer referrer address
/// @param skewImpact skew impact, used to check skew slippage
struct CreateMarketParams {
address user;
bytes32 asset;
uint64 strikeTime;
uint64 delta;
int64 strikePrice;
uint64 strikePricePublishTime;
ISpeedMarketsAMM.OracleSource oracleSource;
SpeedMarket.Direction direction;
address collateral;
uint collateralAmount;
address referrer;
uint skewImpact;
}
struct InternalCreateParams {
CreateMarketParams createMarketParams;
bool transferCollateral;
uint64 strikeTime;
uint buyinAmount;
uint buyinAmountInUSD;
address defaultCollateral;
}
receive() external payable {}
function initialize(address _owner, IERC20Upgradeable _sUSD) external initializer {
setOwner(_owner);
initNonReentrant();
sUSD = _sUSD;
supportedNativeCollateral[address(_sUSD)] = true;
}
/// @notice create new market for a given delta/strike time
/// @param _params parameters for creating market
function createNewMarket(CreateMarketParams calldata _params)
external
nonReentrant
notPaused
onlyCreator
returns (address marketAddress)
{
IAddressManager.Addresses memory contractsAddresses = addressManager.getAddresses();
// Calculate strike time: use provided strikeTime or current timestamp + delta
uint64 strikeTime = _params.strikeTime == 0 ? uint64(block.timestamp + _params.delta) : _params.strikeTime;
// Determine collateral configuration
(
bool isNativeCollateral,
address defaultCollateral,
uint buyinAmount,
uint buyinAmountInUSD
) = _determineCollateralConfig(_params, strikeTime, contractsAddresses);
// Create internal parameters struct
InternalCreateParams memory internalParams = InternalCreateParams({
createMarketParams: _params,
strikeTime: strikeTime,
buyinAmount: buyinAmount,
transferCollateral: isNativeCollateral,
defaultCollateral: defaultCollateral,
buyinAmountInUSD: buyinAmountInUSD
});
marketAddress = _createNewMarket(internalParams, contractsAddresses);
}
/// @notice Determines collateral configuration and calculates buyin amount
/// @param _params Market creation parameters
/// @param strikeTime Calculated strike time
/// @param contractsAddresses Contract addresses from address manager
/// @return isNativeCollateral Whether the collateral is natively supported
/// @return defaultCollateral The default collateral address to use
/// @return buyinAmount The calculated buyin amount
function _determineCollateralConfig(
CreateMarketParams calldata _params,
uint64 strikeTime,
IAddressManager.Addresses memory contractsAddresses
)
internal
returns (
bool isNativeCollateral,
address defaultCollateral,
uint buyinAmount,
uint buyinAmountInUSD
)
{
isNativeCollateral = supportedNativeCollateral[_params.collateral] || _params.collateral == address(0);
if (supportedNativeCollateral[_params.collateral] && _params.collateral != address(0)) {
defaultCollateral = _params.collateral;
} else {
defaultCollateral = address(sUSD);
}
// Calculate buyin amount based on collateral type
if (isNativeCollateral) {
buyinAmount = buyinAmountInUSD = _params.collateralAmount;
if (defaultCollateral != address(sUSD)) {
buyinAmountInUSD = speedMarketsAMMUtils.transformCollateralToUSD(
defaultCollateral,
address(sUSD),
_params.collateralAmount
);
}
} else {
// For external collaterals, convert through onramp
buyinAmount = buyinAmountInUSD = _getBuyinWithConversion(
_params.user,
_params.collateral,
_params.collateralAmount,
strikeTime,
contractsAddresses
);
}
}
/// @notice Gets the buyin amount with conversion
/// @param user The user address
/// @param collateral The collateral address
/// @param collateralAmount The collateral amount
/// @param strikeTime The strike time
/// @param contractsAddresses Contract addresses from address manager
/// @return buyinAmount The calculated buyin amount
function _getBuyinWithConversion(
address user,
address collateral,
uint collateralAmount,
uint64 strikeTime,
IAddressManager.Addresses memory contractsAddresses
) internal returns (uint buyinAmount) {
if (!multicollateralEnabled) revert MulticollateralOnrampDisabled();
uint amountBefore = sUSD.balanceOf(address(this));
IMultiCollateralOnOffRamp iMultiCollateralOnOffRamp = IMultiCollateralOnOffRamp(
contractsAddresses.multiCollateralOnOffRamp
);
IERC20Upgradeable(collateral).safeTransferFrom(user, address(this), collateralAmount);
IERC20Upgradeable(collateral).approve(address(iMultiCollateralOnOffRamp), collateralAmount);
uint convertedAmount = iMultiCollateralOnOffRamp.onramp(collateral, collateralAmount);
uint lpFeeForDeltaTime = speedMarketsAMMUtils.getFeeByTimeThreshold(
uint64(strikeTime - block.timestamp),
timeThresholdsForFees,
lpFees,
lpFee
);
buyinAmount = (convertedAmount * ONE) / (ONE + safeBoxImpact + lpFeeForDeltaTime);
uint amountDiff = sUSD.balanceOf(address(this)) - amountBefore;
if (amountDiff < buyinAmount) revert NotEnoughReceivedViaOnramp();
}
/// @notice Gets the skew by asset and direction
/// @param _asset The asset
/// @param _direction The direction
/// @return skew The skew
function _getSkewByAssetAndDirection(bytes32 _asset, SpeedMarket.Direction _direction) internal view returns (uint) {
return
(((currentRiskPerAssetAndDirection[_asset][_direction] * ONE) /
maxRiskPerAssetAndDirection[_asset][_direction]) * maxSkewImpact) / ONE;
}
/// @notice Handles the risk and gets the fee
/// @param asset The asset
/// @param direction The direction
/// @param buyinAmountInUSD The buyin amount in USD
/// @param strikeTime The strike time
/// @param skewImpact The skew impact
function _handleRiskAndGetFee(
bytes32 asset,
SpeedMarket.Direction direction,
uint buyinAmountInUSD,
uint64 strikeTime,
uint skewImpact,
uint payoutBonus
) internal returns (uint lpFeeWithSkew, uint payoutInUSD) {
uint skew = _getSkewByAssetAndDirection(asset, direction);
if (skew > skewImpact + skewSlippage) revert SkewSlippageExceeded();
SpeedMarket.Direction oppositeDirection = direction == SpeedMarket.Direction.Up
? SpeedMarket.Direction.Down
: SpeedMarket.Direction.Up;
// calculate discount as half of skew for opposite direction
uint discount = skew == 0 ? _getSkewByAssetAndDirection(asset, oppositeDirection) / 2 : 0;
// decrease risk for opposite direction if there is, otherwise increase risk for current direction
if (currentRiskPerAssetAndDirection[asset][oppositeDirection] > buyinAmountInUSD) {
currentRiskPerAssetAndDirection[asset][oppositeDirection] -= buyinAmountInUSD;
} else {
currentRiskPerAssetAndDirection[asset][direction] +=
buyinAmountInUSD -
currentRiskPerAssetAndDirection[asset][oppositeDirection];
currentRiskPerAssetAndDirection[asset][oppositeDirection] = 0;
if (currentRiskPerAssetAndDirection[asset][direction] > maxRiskPerAssetAndDirection[asset][direction]) {
revert RiskPerDirectionExceeded();
}
}
// (LP fee by delta time) + (skew impact based on risk per direction and asset) - (discount as half of opposite skew)
lpFeeWithSkew =
speedMarketsAMMUtils.getFeeByTimeThreshold(
uint64(strikeTime - block.timestamp),
timeThresholdsForFees,
lpFees,
lpFee
) +
skew -
discount;
// payout with bonus
payoutInUSD = buyinAmountInUSD * 2 + (buyinAmountInUSD * 2 * payoutBonus) / ONE;
// update risk per asset with the bonus applied
currentRiskPerAsset[asset] += (payoutInUSD - (buyinAmountInUSD * (ONE + lpFeeWithSkew)) / ONE);
if (currentRiskPerAsset[asset] > maxRiskPerAsset[asset]) {
revert RiskPerAssetExceeded();
}
}
/// @notice Handles the referrer and safe box
/// @param user The user address
/// @param referrer The referrer address
/// @param buyinAmount The buyin amount
/// @param collateral The collateral address
/// @param contractsAddresses Contract addresses from address manager
function _handleReferrerAndSafeBox(
address user,
address referrer,
uint buyinAmount,
IERC20Upgradeable collateral,
IAddressManager.Addresses memory contractsAddresses
) internal returns (uint referrerShare) {
IReferrals iReferrals = IReferrals(contractsAddresses.referrals);
if (address(iReferrals) != address(0)) {
address newOrExistingReferrer;
if (referrer != address(0)) {
iReferrals.setReferrer(referrer, user);
newOrExistingReferrer = referrer;
} else {
newOrExistingReferrer = iReferrals.referrals(user);
}
if (newOrExistingReferrer != address(0)) {
uint referrerFeeByTier = iReferrals.getReferrerFee(newOrExistingReferrer);
if (referrerFeeByTier > 0) {
referrerShare = (buyinAmount * referrerFeeByTier) / ONE;
collateral.safeTransfer(newOrExistingReferrer, referrerShare);
emit ReferrerPaid(newOrExistingReferrer, user, referrerShare, buyinAmount);
}
}
}
collateral.safeTransfer(contractsAddresses.safeBox, (buyinAmount * safeBoxImpact) / ONE - referrerShare);
}
/// @notice Creates a new market
/// @param params Internal market creation parameters
/// @param contractsAddresses Contract addresses from address manager
function _createNewMarket(InternalCreateParams memory params, IAddressManager.Addresses memory contractsAddresses)
internal
returns (address)
{
if (!supportedAsset[params.createMarketParams.asset]) revert AssetNotSupported();
if (params.buyinAmountInUSD < minBuyinAmount || params.buyinAmountInUSD > maxBuyinAmount) {
revert InvalidBuyinAmount();
}
if (params.strikeTime < block.timestamp + minimalTimeToMaturity) {
revert InvalidStrikeTime();
}
if (params.strikeTime > block.timestamp + maximalTimeToMaturity) {
revert TimeTooFarIntoFuture();
}
(uint lpFeeWithSkew, uint payoutInUSD) = _handleRiskAndGetFee(
params.createMarketParams.asset,
params.createMarketParams.direction,
params.buyinAmountInUSD,
params.strikeTime,
params.createMarketParams.skewImpact,
params.transferCollateral ? bonusPerCollateral[params.defaultCollateral] : 0
);
if (params.transferCollateral) {
uint totalAmountToTransfer = (params.buyinAmount * (ONE + safeBoxImpact + lpFeeWithSkew)) / ONE;
IERC20Upgradeable(params.defaultCollateral).safeTransferFrom(
params.createMarketParams.user,
address(this),
totalAmountToTransfer
);
}
SpeedMarket srm = SpeedMarket(Clones.clone(speedMarketMastercopy));
uint payout = payoutInUSD;
bool defaultCollateralIsNotUSD = params.transferCollateral && params.defaultCollateral != address(sUSD);
if (defaultCollateralIsNotUSD) {
payout = params.buyinAmount * 2 + (params.buyinAmount * 2 * bonusPerCollateral[params.defaultCollateral]) / ONE;
}
srm.initialize(
SpeedMarket.InitParams(
address(this),
params.createMarketParams.user,
params.createMarketParams.asset,
params.strikeTime,
params.createMarketParams.strikePrice,
params.createMarketParams.strikePricePublishTime,
params.createMarketParams.oracleSource,
params.createMarketParams.direction,
params.defaultCollateral,
params.buyinAmount,
safeBoxImpact,
lpFeeWithSkew,
payout
)
);
if (defaultCollateralIsNotUSD) {
IERC20Upgradeable(params.defaultCollateral).safeTransfer(address(srm), payout);
} else {
sUSD.safeTransfer(address(srm), payout);
}
_handleReferrerAndSafeBox(
params.createMarketParams.user,
params.createMarketParams.referrer,
params.buyinAmount,
IERC20Upgradeable(params.defaultCollateral),
contractsAddresses
);
_activeMarkets.add(address(srm));
_activeMarketsPerUser[params.createMarketParams.user].add(address(srm));
marketHasCreatedAtAttribute[address(srm)] = true;
marketHasFeeAttribute[address(srm)] = true;
emit MarketCreated(
address(srm),
params.createMarketParams.user,
params.createMarketParams.asset,
params.strikeTime,
params.createMarketParams.strikePrice,
params.createMarketParams.direction,
params.buyinAmount
);
emit MarketCreatedWithFees(
address(srm),
params.createMarketParams.user,
params.createMarketParams.asset,
params.strikeTime,
params.createMarketParams.strikePrice,
params.createMarketParams.direction,
params.buyinAmountInUSD,
safeBoxImpact,
lpFeeWithSkew
);
return address(srm);
}
/// @notice owner can resolve market for a given market address with finalPrice
function resolveMarketWithPrice(address _market, int64 _finalPrice) external {
if (msg.sender != addressManager.getAddress("SpeedMarketsAMMResolver") && msg.sender != owner)
revert CanOnlyBeCalledFromResolverOrOwner();
if (!canResolveMarket(_market)) revert CanNotResolve();
_resolveMarketWithPrice(_market, _finalPrice);
}
function _resolveMarketWithPrice(address market, int64 _finalPrice) internal {
SpeedMarket sm = SpeedMarket(market);
sm.resolve(_finalPrice);
_activeMarkets.remove(market);
_maturedMarkets.add(market);
address user = sm.user();
if (_activeMarketsPerUser[user].contains(market)) {
_activeMarketsPerUser[user].remove(market);
}
_maturedMarketsPerUser[user].add(market);
bytes32 asset = SpeedMarket(market).asset();
address collateral = SpeedMarket(market).collateral();
uint buyinAmountInUSD = collateral == address(sUSD) || collateral == address(0)
? SpeedMarket(market).buyinAmount()
: speedMarketsAMMUtils.transformCollateralToUSD(collateral, address(sUSD), SpeedMarket(market).buyinAmount());
SpeedMarket.Direction direction = SpeedMarket(market).direction();
if (currentRiskPerAssetAndDirection[asset][direction] > buyinAmountInUSD) {
currentRiskPerAssetAndDirection[asset][direction] -= buyinAmountInUSD;
} else {
currentRiskPerAssetAndDirection[asset][direction] = 0;
}
if (!sm.isUserWinner()) {
if (currentRiskPerAsset[asset] > 2 * buyinAmountInUSD) {
currentRiskPerAsset[asset] -= (2 * buyinAmountInUSD);
} else {
currentRiskPerAsset[asset] = 0;
}
}
emit MarketResolved(market, sm.result(), sm.isUserWinner());
}
function offrampHelper(address user, uint amount) external {
if (msg.sender != addressManager.getAddress("SpeedMarketsAMMResolver")) revert CanOnlyBeCalledFromResolverOrOwner();
sUSD.safeTransferFrom(user, msg.sender, amount);
}
/// @notice Transfer amount to destination address
function transferAmount(
address _collateral,
address _destination,
uint _amount
) external onlyOwner {
IERC20Upgradeable(_collateral).safeTransfer(_destination, _amount);
emit AmountTransfered(_collateral, _destination, _amount);
}
//////////// getters /////////////////
/// @notice activeMarkets returns list of active markets
/// @param index index of the page
/// @param pageSize number of addresses per page
/// @return address[] active market list
function activeMarkets(uint index, uint pageSize) external view returns (address[] memory) {
return _activeMarkets.getPage(index, pageSize);
}
/// @notice maturedMarkets returns list of matured markets
/// @param index index of the page
/// @param pageSize number of addresses per page
/// @return address[] matured market list
function maturedMarkets(uint index, uint pageSize) external view returns (address[] memory) {
return _maturedMarkets.getPage(index, pageSize);
}
/// @notice activeMarkets returns list of active markets per user
function activeMarketsPerUser(
uint index,
uint pageSize,
address user
) external view returns (address[] memory) {
return _activeMarketsPerUser[user].getPage(index, pageSize);
}
/// @notice maturedMarkets returns list of matured markets per user
function maturedMarketsPerUser(
uint index,
uint pageSize,
address user
) external view returns (address[] memory) {
return _maturedMarketsPerUser[user].getPage(index, pageSize);
}
/// @notice whether a market can be resolved
function canResolveMarket(address market) public view returns (bool) {
return
_activeMarkets.contains(market) &&
(SpeedMarket(market).strikeTime() < block.timestamp) &&
!SpeedMarket(market).resolved();
}
/// @notice get lengths of all arrays
function getLengths(address user) external view returns (uint[5] memory) {
return [
_activeMarkets.elements.length,
_maturedMarkets.elements.length,
_activeMarketsPerUser[user].elements.length,
_maturedMarketsPerUser[user].elements.length,
lpFees.length
];
}
/// @notice get params for chained market
function getParams(bytes32 asset) external view returns (ISpeedMarketsAMM.Params memory) {
ISpeedMarketsAMM.Params memory params;
params.supportedAsset = supportedAsset[asset];
params.safeBoxImpact = safeBoxImpact;
params.maximumPriceDelay = maximumPriceDelay;
return params;
}
//////////////////setters/////////////////
/// @notice Set addresses used in AMM
/// @param _mastercopy to use to create markets
/// @param _speedMarketsAMMUtils address of speed markets AMM utils
/// @param _addressManager address manager contract
function setAMMAddresses(
address _mastercopy,
ISpeedMarketsAMMUtils _speedMarketsAMMUtils,
address _addressManager
) external onlyOwner {
speedMarketMastercopy = _mastercopy;
speedMarketsAMMUtils = _speedMarketsAMMUtils;
addressManager = IAddressManager(_addressManager);
emit AMMAddressesChanged(_mastercopy, _speedMarketsAMMUtils, _addressManager);
}
/// @notice Set parameters for limits
function setLimitParams(
uint _minBuyinAmount,
uint _maxBuyinAmount,
uint _minimalTimeToMaturity,
uint _maximalTimeToMaturity,
uint64 _maximumPriceDelay,
uint64 _maximumPriceDelayForResolving
) external onlyOwner {
minBuyinAmount = _minBuyinAmount;
maxBuyinAmount = _maxBuyinAmount;
minimalTimeToMaturity = _minimalTimeToMaturity;
maximalTimeToMaturity = _maximalTimeToMaturity;
maximumPriceDelay = _maximumPriceDelay;
maximumPriceDelayForResolving = _maximumPriceDelayForResolving;
emit LimitParamsChanged(
_minBuyinAmount,
_maxBuyinAmount,
_minimalTimeToMaturity,
_maximalTimeToMaturity,
_maximumPriceDelay,
_maximumPriceDelayForResolving
);
}
/// @notice maximum risk per asset and per asset and direction
function setMaxRisks(
bytes32 asset,
uint _maxRiskPerAsset,
uint _maxRiskPerAssetAndDirection
) external onlyOwner {
maxRiskPerAsset[asset] = _maxRiskPerAsset;
currentRiskPerAsset[asset] = 0;
maxRiskPerAssetAndDirection[asset][SpeedMarket.Direction.Up] = _maxRiskPerAssetAndDirection;
maxRiskPerAssetAndDirection[asset][SpeedMarket.Direction.Down] = _maxRiskPerAssetAndDirection;
emit SetMaxRisks(asset, _maxRiskPerAsset, _maxRiskPerAssetAndDirection);
}
/// @notice set SafeBox, max skew impact and skew slippage
/// @param _safeBoxImpact safebox impact
/// @param _maxSkewImpact skew impact
/// @param _skewSlippage skew slippage
function setSafeBoxAndMaxSkewImpact(
uint _safeBoxImpact,
uint _maxSkewImpact,
uint _skewSlippage
) external onlyOwner {
safeBoxImpact = _safeBoxImpact;
maxSkewImpact = _maxSkewImpact;
skewSlippage = _skewSlippage;
emit SafeBoxAndMaxSkewImpactChanged(_safeBoxImpact, _maxSkewImpact, _skewSlippage);
}
/// @notice set LP fee params
/// @param _timeThresholds array of time thresholds (minutes) for different fees in ascending order
/// @param _lpFees array of fees applied to each time frame defined in _timeThresholds
/// @param _lpFee default LP fee when there are no dynamic fees
function setLPFeeParams(
uint[] calldata _timeThresholds,
uint[] calldata _lpFees,
uint _lpFee
) external onlyOwner {
if (_timeThresholds.length != _lpFees.length) revert MismatchedLengths();
delete timeThresholdsForFees;
delete lpFees;
for (uint i; i < _timeThresholds.length; ++i) {
timeThresholdsForFees.push(_timeThresholds[i]);
lpFees.push(_lpFees[i]);
}
lpFee = _lpFee;
emit SetLPFeeParams(_timeThresholds, _lpFees, _lpFee);
}
/// @notice set whether an asset is supported
function setSupportedAsset(bytes32 asset, bool _supported) external onlyOwner {
supportedAsset[asset] = _supported;
emit SetSupportedAsset(asset, _supported);
}
/// @notice map asset to PythID/ChainlinkID, e.g. "ETH" as bytes 32 to an equivalent ID from pyth/chainlink docs
function setAssetToPriceOracleID(
bytes32 asset,
bytes32 pythId,
bytes32 chainlinkId
) external onlyOwner {
assetToPythId[asset] = pythId;
assetToChainlinkId[asset] = chainlinkId;
emit SetAssetToPriceOracleID(asset, pythId, chainlinkId);
}
/// @notice set sUSD address (default collateral)
function setSusdAddress(address _sUSD) external onlyOwner {
sUSD = IERC20Upgradeable(_sUSD);
emit SusdAddressChanged(_sUSD);
}
/// @notice set multi-collateral enabled
function setMultiCollateralOnOffRampEnabled(bool _enabled) external onlyOwner {
address multiCollateralAddress = addressManager.multiCollateralOnOffRamp();
if (multiCollateralAddress != address(0)) {
sUSD.approve(multiCollateralAddress, _enabled ? MAX_APPROVAL : 0);
}
multicollateralEnabled = _enabled;
emit MultiCollateralOnOffRampEnabled(_enabled);
}
/// @notice Set bonus percentage for a collateral
/// @param _collateral collateral address
/// @param _bonus bonus percentage (e.g., 0.02e18 for 2%)
function setSupportedNativeCollateralAndBonus(
address _collateral,
bool _supported,
uint _bonus,
bytes32 _collateralKey
) external onlyOwner {
// 10% bonus as max
if (_bonus > 1e17) revert BonusTooHigh();
bonusPerCollateral[_collateral] = _bonus;
supportedNativeCollateral[_collateral] = _supported;
speedMarketsAMMUtils.setCollateralKey(_collateral, _collateralKey);
emit CollateralBonusSet(_collateral, _bonus);
}
/// @notice adding/removing whitelist address depending on a flag
/// @param _whitelistAddress address that needed to be whitelisted or removed from WL
/// @param _flag adding or removing from whitelist (true: add, false: remove)
function addToWhitelist(address _whitelistAddress, bool _flag) external onlyOwner {
if (_whitelistAddress == address(0)) revert InvalidWhitelistAddress();
whitelistedAddresses[_whitelistAddress] = _flag;
emit AddedIntoWhitelist(_whitelistAddress, _flag);
}
//////////////////modifiers/////////////////
modifier onlyCreator() {
address speedMarketsCreator = addressManager.getAddress("SpeedMarketsAMMCreator");
if (msg.sender != speedMarketsCreator) revert OnlyCreatorAllowed();
_;
}
//////////////////events/////////////////
event MarketCreated(
address _market,
address _user,
bytes32 _asset,
uint _strikeTime,
int64 _strikePrice,
SpeedMarket.Direction _direction,
uint _buyinAmount
);
event MarketCreatedWithFees(
address _market,
address _user,
bytes32 _asset,
uint _strikeTime,
int64 _strikePrice,
SpeedMarket.Direction _direction,
uint _buyinAmount,
uint _safeBoxImpact,
uint _lpFee
);
event MarketResolved(address _market, SpeedMarket.Direction _result, bool _userIsWinner);
event AMMAddressesChanged(address _mastercopy, ISpeedMarketsAMMUtils _speedMarketsAMMUtils, address _addressManager);
event LimitParamsChanged(
uint _minBuyinAmount,
uint _maxBuyinAmount,
uint _minimalTimeToMaturity,
uint _maximalTimeToMaturity,
uint _maximumPriceDelay,
uint _maximumPriceDelayForResolving
);
event SetMaxRisks(bytes32 asset, uint _maxRiskPerAsset, uint _maxRiskPerAssetAndDirection);
event SafeBoxAndMaxSkewImpactChanged(uint _safeBoxImpact, uint _maxSkewImpact, uint _skewSlippage);
event SetLPFeeParams(uint[] _timeThresholds, uint[] _lpFees, uint _lpFee);
event SetSupportedAsset(bytes32 asset, bool _supported);
event SetAssetToPriceOracleID(bytes32 asset, bytes32 pythId, bytes32 chainlinkId);
event SusdAddressChanged(address _sUSD);
event MultiCollateralOnOffRampEnabled(bool _enabled);
event ReferrerPaid(address refferer, address trader, uint amount, uint volume);
event AmountTransfered(address _collateral, address _destination, uint _amount);
event CollateralBonusSet(address indexed collateral, uint bonus);
event AddedIntoWhitelist(address _whitelistAddress, bool _flag);
}// SPDX-License-Identifier: MIT
pragma solidity ^0.8.0;
/// @title An AMM utils for Thales speed markets
interface ISpeedMarketsAMMUtils {
function getFeeByTimeThreshold(
uint64 _deltaTimeSec,
uint[] calldata _timeThresholds,
uint[] calldata _fees,
uint _defaultFee
) external pure returns (uint fee);
function collateralKey(address _collateral) external view returns (bytes32);
function setCollateralKey(address _collateral, bytes32 _key) external;
function transformCollateralToUSD(
address _collateral,
address defaultCollateral,
uint _amount
) external view returns (uint);
}// SPDX-License-Identifier: Apache-2.0
pragma solidity ^0.8.0;
import "./PythStructs.sol";
import "./IPythEvents.sol";
/// @title Consume prices from the Pyth Network (https://pyth.network/).
/// @dev Please refer to the guidance at https://docs.pyth.network/consumers/best-practices for how to consume prices safely.
/// @author Pyth Data Association
interface IPyth is IPythEvents {
/// @notice Returns the period (in seconds) that a price feed is considered valid since its publish time
function getValidTimePeriod() external view returns (uint validTimePeriod);
/// @notice Returns the price and confidence interval.
/// @dev Reverts if the price has not been updated within the last `getValidTimePeriod()` seconds.
/// @param id The Pyth Price Feed ID of which to fetch the price and confidence interval.
/// @return price - please read the documentation of PythStructs.Price to understand how to use this safely.
function getPrice(
bytes32 id
) external view returns (PythStructs.Price memory price);
/// @notice Returns the exponentially-weighted moving average price and confidence interval.
/// @dev Reverts if the EMA price is not available.
/// @param id The Pyth Price Feed ID of which to fetch the EMA price and confidence interval.
/// @return price - please read the documentation of PythStructs.Price to understand how to use this safely.
function getEmaPrice(
bytes32 id
) external view returns (PythStructs.Price memory price);
/// @notice Returns the price of a price feed without any sanity checks.
/// @dev This function returns the most recent price update in this contract without any recency checks.
/// This function is unsafe as the returned price update may be arbitrarily far in the past.
///
/// Users of this function should check the `publishTime` in the price to ensure that the returned price is
/// sufficiently recent for their application. If you are considering using this function, it may be
/// safer / easier to use either `getPrice` or `getPriceNoOlderThan`.
/// @return price - please read the documentation of PythStructs.Price to understand how to use this safely.
function getPriceUnsafe(
bytes32 id
) external view returns (PythStructs.Price memory price);
/// @notice Returns the price that is no older than `age` seconds of the current time.
/// @dev This function is a sanity-checked version of `getPriceUnsafe` which is useful in
/// applications that require a sufficiently-recent price. Reverts if the price wasn't updated sufficiently
/// recently.
/// @return price - please read the documentation of PythStructs.Price to understand how to use this safely.
function getPriceNoOlderThan(
bytes32 id,
uint age
) external view returns (PythStructs.Price memory price);
/// @notice Returns the exponentially-weighted moving average price of a price feed without any sanity checks.
/// @dev This function returns the same price as `getEmaPrice` in the case where the price is available.
/// However, if the price is not recent this function returns the latest available price.
///
/// The returned price can be from arbitrarily far in the past; this function makes no guarantees that
/// the returned price is recent or useful for any particular application.
///
/// Users of this function should check the `publishTime` in the price to ensure that the returned price is
/// sufficiently recent for their application. If you are considering using this function, it may be
/// safer / easier to use either `getEmaPrice` or `getEmaPriceNoOlderThan`.
/// @return price - please read the documentation of PythStructs.Price to understand how to use this safely.
function getEmaPriceUnsafe(
bytes32 id
) external view returns (PythStructs.Price memory price);
/// @notice Returns the exponentially-weighted moving average price that is no older than `age` seconds
/// of the current time.
/// @dev This function is a sanity-checked version of `getEmaPriceUnsafe` which is useful in
/// applications that require a sufficiently-recent price. Reverts if the price wasn't updated sufficiently
/// recently.
/// @return price - please read the documentation of PythStructs.Price to understand how to use this safely.
function getEmaPriceNoOlderThan(
bytes32 id,
uint age
) external view returns (PythStructs.Price memory price);
/// @notice Update price feeds with given update messages.
/// This method requires the caller to pay a fee in wei; the required fee can be computed by calling
/// `getUpdateFee` with the length of the `updateData` array.
/// Prices will be updated if they are more recent than the current stored prices.
/// The call will succeed even if the update is not the most recent.
/// @dev Reverts if the transferred fee is not sufficient or the updateData is invalid.
/// @param updateData Array of price update data.
function updatePriceFeeds(bytes[] calldata updateData) external payable;
/// @notice Wrapper around updatePriceFeeds that rejects fast if a price update is not necessary. A price update is
/// necessary if the current on-chain publishTime is older than the given publishTime. It relies solely on the
/// given `publishTimes` for the price feeds and does not read the actual price update publish time within `updateData`.
///
/// This method requires the caller to pay a fee in wei; the required fee can be computed by calling
/// `getUpdateFee` with the length of the `updateData` array.
///
/// `priceIds` and `publishTimes` are two arrays with the same size that correspond to senders known publishTime
/// of each priceId when calling this method. If all of price feeds within `priceIds` have updated and have
/// a newer or equal publish time than the given publish time, it will reject the transaction to save gas.
/// Otherwise, it calls updatePriceFeeds method to update the prices.
///
/// @dev Reverts if update is not needed or the transferred fee is not sufficient or the updateData is invalid.
/// @param updateData Array of price update data.
/// @param priceIds Array of price ids.
/// @param publishTimes Array of publishTimes. `publishTimes[i]` corresponds to known `publishTime` of `priceIds[i]`
function updatePriceFeedsIfNecessary(
bytes[] calldata updateData,
bytes32[] calldata priceIds,
uint64[] calldata publishTimes
) external payable;
/// @notice Returns the required fee to update an array of price updates.
/// @param updateData Array of price update data.
/// @return feeAmount The required fee in Wei.
function getUpdateFee(
bytes[] calldata updateData
) external view returns (uint feeAmount);
/// @notice Parse `updateData` and return price feeds of the given `priceIds` if they are all published
/// within `minPublishTime` and `maxPublishTime`.
///
/// You can use this method if you want to use a Pyth price at a fixed time and not the most recent price;
/// otherwise, please consider using `updatePriceFeeds`. This method does not store the price updates on-chain.
///
/// This method requires the caller to pay a fee in wei; the required fee can be computed by calling
/// `getUpdateFee` with the length of the `updateData` array.
///
///
/// @dev Reverts if the transferred fee is not sufficient or the updateData is invalid or there is
/// no update for any of the given `priceIds` within the given time range.
/// @param updateData Array of price update data.
/// @param priceIds Array of price ids.
/// @param minPublishTime minimum acceptable publishTime for the given `priceIds`.
/// @param maxPublishTime maximum acceptable publishTime for the given `priceIds`.
/// @return priceFeeds Array of the price feeds corresponding to the given `priceIds` (with the same order).
function parsePriceFeedUpdates(
bytes[] calldata updateData,
bytes32[] calldata priceIds,
uint64 minPublishTime,
uint64 maxPublishTime
) external payable returns (PythStructs.PriceFeed[] memory priceFeeds);
}// SPDX-License-Identifier: Apache-2.0
pragma solidity ^0.8.0;
/// @title IPythEvents contains the events that Pyth contract emits.
/// @dev This interface can be used for listening to the updates for off-chain and testing purposes.
interface IPythEvents {
/// @dev Emitted when the price feed with `id` has received a fresh update.
/// @param id The Pyth Price Feed ID.
/// @param publishTime Publish time of the given price update.
/// @param price Price of the given price update.
/// @param conf Confidence interval of the given price update.
event PriceFeedUpdate(
bytes32 indexed id,
uint64 publishTime,
int64 price,
uint64 conf
);
/// @dev Emitted when a batch price update is processed successfully.
/// @param chainId ID of the source chain that the batch price update comes from.
/// @param sequenceNumber Sequence number of the batch price update.
event BatchPriceFeedUpdate(uint16 chainId, uint64 sequenceNumber);
}// SPDX-License-Identifier: MIT
pragma solidity >=0.5.16;
import "@openzeppelin/contracts-upgradeable/token/ERC20/IERC20Upgradeable.sol";
import "@pythnetwork/pyth-sdk-solidity/PythStructs.sol";
import "../SpeedMarkets/SpeedMarket.sol";
import "../SpeedMarkets/ChainedSpeedMarketsAMM.sol";
interface IChainedSpeedMarketsAMM {
function sUSD() external view returns (IERC20Upgradeable);
function createNewMarket(ChainedSpeedMarketsAMM.CreateMarketParams calldata _params)
external
returns (address marketAddress);
function minChainedMarkets() external view returns (uint);
function maxChainedMarkets() external view returns (uint);
function minTimeFrame() external view returns (uint64);
function maxTimeFrame() external view returns (uint64);
function minBuyinAmount() external view returns (uint);
function maxBuyinAmount() external view returns (uint);
function maxProfitPerIndividualMarket() external view returns (uint);
function payoutMultipliers(uint _index) external view returns (uint);
function maxRisk() external view returns (uint);
function currentRisk() external view returns (uint);
function getLengths(address _user) external view returns (uint[4] memory);
function multicollateralEnabled() external view returns (bool);
function canResolveMarket(address market) external view returns (bool);
function resolveMarketWithPrices(
address _market,
int64[] calldata _finalPrices,
bool _manualResolution
) external;
function offrampHelper(address user, uint amount) external;
}{
"optimizer": {
"enabled": true,
"runs": 100
},
"outputSelection": {
"*": {
"*": [
"evm.bytecode",
"evm.deployedBytecode",
"devdoc",
"userdoc",
"metadata",
"abi"
]
}
}
}Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
Contract ABI
API[{"inputs":[],"name":"AssetNotSupported","type":"error"},{"inputs":[],"name":"CanNotResolve","type":"error"},{"inputs":[],"name":"CanOnlyBeCalledFromResolver","type":"error"},{"inputs":[],"name":"EtherTransferFailed","type":"error"},{"inputs":[],"name":"InvalidBuyinAmount","type":"error"},{"inputs":[],"name":"InvalidNumberOfDirections","type":"error"},{"inputs":[],"name":"InvalidOffRampCollateral","type":"error"},{"inputs":[],"name":"InvalidPrice","type":"error"},{"inputs":[],"name":"InvalidTimeFrame","type":"error"},{"inputs":[],"name":"MinChainedMarketsError","type":"error"},{"inputs":[],"name":"MulticollateralOnrampDisabled","type":"error"},{"inputs":[],"name":"NotEnoughReceivedViaOnramp","type":"error"},{"inputs":[],"name":"OnlyCreatorAllowed","type":"error"},{"inputs":[],"name":"OnlyMarketOwner","type":"error"},{"inputs":[],"name":"OnlyWhitelistedAddresses","type":"error"},{"inputs":[],"name":"OutOfLiquidity","type":"error"},{"inputs":[],"name":"ProfitTooHigh","type":"error"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"_addressManager","type":"address"}],"name":"AddressManagerChanged","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"_collateral","type":"address"},{"indexed":false,"internalType":"address","name":"_destination","type":"address"},{"indexed":false,"internalType":"uint256","name":"_amount","type":"uint256"}],"name":"AmountTransfered","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint64","name":"_minTimeFrame","type":"uint64"},{"indexed":false,"internalType":"uint64","name":"_maxTimeFrame","type":"uint64"},{"indexed":false,"internalType":"uint256","name":"_minChainedMarkets","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"_maxChainedMarkets","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"_minBuyinAmount","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"_maxBuyinAmount","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"_maxProfitPerIndividualMarket","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"_maxRisk","type":"uint256"},{"indexed":false,"internalType":"uint256[]","name":"_payoutMultipliers","type":"uint256[]"}],"name":"LimitParamsChanged","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"market","type":"address"},{"indexed":false,"internalType":"address","name":"user","type":"address"},{"indexed":false,"internalType":"bytes32","name":"asset","type":"bytes32"},{"indexed":false,"internalType":"uint64","name":"timeFrame","type":"uint64"},{"indexed":false,"internalType":"uint64","name":"strikeTime","type":"uint64"},{"indexed":false,"internalType":"int64","name":"strikePrice","type":"int64"},{"indexed":false,"internalType":"enum SpeedMarket.Direction[]","name":"directions","type":"uint8[]"},{"indexed":false,"internalType":"uint256","name":"buyinAmount","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"payoutMultiplier","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"safeBoxImpact","type":"uint256"}],"name":"MarketCreated","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"market","type":"address"},{"indexed":false,"internalType":"bool","name":"userIsWinner","type":"bool"}],"name":"MarketResolved","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"mastercopy","type":"address"}],"name":"MastercopyChanged","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"bool","name":"_enabled","type":"bool"}],"name":"MultiCollateralOnOffRampEnabled","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":"bool","name":"isPaused","type":"bool"}],"name":"PauseChanged","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"refferer","type":"address"},{"indexed":false,"internalType":"address","name":"trader","type":"address"},{"indexed":false,"internalType":"uint256","name":"amount","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"volume","type":"uint256"}],"name":"ReferrerPaid","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"_sUSD","type":"address"}],"name":"SusdAddressChanged","type":"event"},{"inputs":[],"name":"acceptOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"index","type":"uint256"},{"internalType":"uint256","name":"pageSize","type":"uint256"}],"name":"activeMarkets","outputs":[{"internalType":"address[]","name":"","type":"address[]"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"index","type":"uint256"},{"internalType":"uint256","name":"pageSize","type":"uint256"},{"internalType":"address","name":"user","type":"address"}],"name":"activeMarketsPerUser","outputs":[{"internalType":"address[]","name":"","type":"address[]"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"addressManager","outputs":[{"internalType":"contract IAddressManager","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"market","type":"address"}],"name":"canResolveMarket","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"chainedSpeedMarketMastercopy","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"components":[{"internalType":"address","name":"user","type":"address"},{"internalType":"bytes32","name":"asset","type":"bytes32"},{"internalType":"uint64","name":"timeFrame","type":"uint64"},{"internalType":"int64","name":"strikePrice","type":"int64"},{"internalType":"enum ISpeedMarketsAMM.OracleSource","name":"oracleSource","type":"uint8"},{"internalType":"enum SpeedMarket.Direction[]","name":"directions","type":"uint8[]"},{"internalType":"address","name":"collateral","type":"address"},{"internalType":"uint256","name":"collateralAmount","type":"uint256"},{"internalType":"address","name":"referrer","type":"address"}],"internalType":"struct ChainedSpeedMarketsAMM.CreateMarketParams","name":"_params","type":"tuple"}],"name":"createNewMarket","outputs":[{"internalType":"address","name":"marketAddress","type":"address"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"currentRisk","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"user","type":"address"}],"name":"getLengths","outputs":[{"internalType":"uint256[4]","name":"","type":"uint256[4]"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"initNonReentrant","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_owner","type":"address"},{"internalType":"contract IERC20Upgradeable","name":"_sUSD","type":"address"}],"name":"initialize","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"lastPauseTime","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"index","type":"uint256"},{"internalType":"uint256","name":"pageSize","type":"uint256"}],"name":"maturedMarkets","outputs":[{"internalType":"address[]","name":"","type":"address[]"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"index","type":"uint256"},{"internalType":"uint256","name":"pageSize","type":"uint256"},{"internalType":"address","name":"user","type":"address"}],"name":"maturedMarketsPerUser","outputs":[{"internalType":"address[]","name":"","type":"address[]"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxBuyinAmount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxChainedMarkets","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxProfitPerIndividualMarket","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxRisk","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxTimeFrame","outputs":[{"internalType":"uint64","name":"","type":"uint64"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"minBuyinAmount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"minChainedMarkets","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"minTimeFrame","outputs":[{"internalType":"uint64","name":"","type":"uint64"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"multicollateralEnabled","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":[{"internalType":"address","name":"user","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"offrampHelper","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"paused","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"","type":"uint256"}],"name":"payoutMultipliers","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_market","type":"address"},{"internalType":"int64[]","name":"_finalPrices","type":"int64[]"},{"internalType":"bool","name":"_isManually","type":"bool"}],"name":"resolveMarketWithPrices","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"sUSD","outputs":[{"internalType":"contract IERC20Upgradeable","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_addressManager","type":"address"}],"name":"setAddressManager","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint64","name":"_minTimeFrame","type":"uint64"},{"internalType":"uint64","name":"_maxTimeFrame","type":"uint64"},{"internalType":"uint256","name":"_minChainedMarkets","type":"uint256"},{"internalType":"uint256","name":"_maxChainedMarkets","type":"uint256"},{"internalType":"uint256","name":"_minBuyinAmount","type":"uint256"},{"internalType":"uint256","name":"_maxBuyinAmount","type":"uint256"},{"internalType":"uint256","name":"_maxProfitPerIndividualMarket","type":"uint256"},{"internalType":"uint256","name":"_maxRisk","type":"uint256"},{"internalType":"uint256[]","name":"_payoutMultipliers","type":"uint256[]"}],"name":"setLimitParams","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_mastercopy","type":"address"}],"name":"setMastercopy","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"_enabled","type":"bool"}],"name":"setMultiCollateralOnOffRampEnabled","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_owner","type":"address"}],"name":"setOwner","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"_paused","type":"bool"}],"name":"setPaused","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_sUSD","type":"address"}],"name":"setSusdAddress","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_collateral","type":"address"},{"internalType":"address","name":"_destination","type":"address"},{"internalType":"uint256","name":"_amount","type":"uint256"}],"name":"transferAmount","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"proxyAddress","type":"address"}],"name":"transferOwnershipAtInit","outputs":[],"stateMutability":"nonpayable","type":"function"},{"stateMutability":"payable","type":"receive"}]Contract Creation Code
608060405234801561001057600080fd5b506142a1806100206000396000f3fe60806040526004361061023f5760003560e01c80635c975abb1161012e578063999045a0116100ab578063dc56e7b31161006f578063dc56e7b3146106e3578063e73efc9b146106f9578063ebc7977214610719578063f823c6431461072e578063ffde0f971461074457600080fd5b8063999045a01461064257806399c18e7e146106625780639fc4270314610683578063c3b83f5f146106a3578063c80a4fa5146106c357600080fd5b806382e59f57116100f257806382e59f57146105a157806389c6318d146105c15780638da5cb5b146105e157806391b4ded9146106075780639324cac71461061d57600080fd5b80635c975abb1461051c57806368b9f66b146105365780636c9259f4146105565780636dcf6def1461056c57806379ba50971461058c57600080fd5b80631994c4f9116101bc57806335f127521161018057806335f127521461047c5780633ab76e9f1461049c578063485cc955146104bc57806348a017d9146104dc57806353a47bb7146104fc57600080fd5b80631994c4f9146103ba5780631b1ad49d146103e75780631f50899b146104265780632236aa651461044657806323b312151461046657600080fd5b806312aa38331161020357806312aa38331461031457806313af40351461032a57806314527f3a1461034a5780631627540c1461037a57806316c38b3c1461039a57600080fd5b806301f474711461024b578063023fb2591461026d5780630652b57a146102a357806307b53bb4146102c357806312039b6d146102e757600080fd5b3661024657005b600080fd5b34801561025757600080fd5b5061026b6102663660046135fe565b61075a565b005b34801561027957600080fd5b5061028d61028836600461363f565b6107b6565b60405161029a919061365c565b60405180910390f35b3480156102af57600080fd5b5061026b6102be36600461363f565b610809565b3480156102cf57600080fd5b506102d960105481565b60405190815260200161029a565b3480156102f357600080fd5b5061030761030236600461368d565b610867565b60405161029a91906136c6565b34801561032057600080fd5b506102d9600f5481565b34801561033657600080fd5b5061026b61034536600461363f565b610897565b34801561035657600080fd5b5061036a61036536600461363f565b6109af565b604051901515815260200161029a565b34801561038657600080fd5b5061026b61039536600461363f565b610b9b565b3480156103a657600080fd5b5061026b6103b5366004613721565b610bee565b3480156103c657600080fd5b506015546103da906001600160a01b031681565b60405161029a919061373e565b3480156103f357600080fd5b50600e5461040e90600160401b90046001600160401b031681565b6040516001600160401b03909116815260200161029a565b34801561043257600080fd5b5061026b61044136600461363f565b610c60565b34801561045257600080fd5b5061026b61046136600461379d565b610cb3565b34801561047257600080fd5b506102d9600c5481565b34801561048857600080fd5b50600e5461040e906001600160401b031681565b3480156104a857600080fd5b506016546103da906001600160a01b031681565b3480156104c857600080fd5b5061026b6104d7366004613804565b610e00565b3480156104e857600080fd5b506103da6104f736600461383d565b610eec565b34801561050857600080fd5b506001546103da906001600160a01b031681565b34801561052857600080fd5b5060035461036a9060ff1681565b34801561054257600080fd5b5061026b610551366004613721565b611184565b34801561056257600080fd5b506102d960115481565b34801561057857600080fd5b5061026b610587366004613878565b6112ed565b34801561059857600080fd5b5061026b6113ae565b3480156105ad57600080fd5b5061026b6105bc3660046138c4565b611499565b3480156105cd57600080fd5b506103076105dc36600461396a565b61156f565b3480156105ed57600080fd5b506000546103da906201000090046001600160a01b031681565b34801561061357600080fd5b506102d960025481565b34801561062957600080fd5b506005546103da9061010090046001600160a01b031681565b34801561064e57600080fd5b5061026b61065d36600461363f565b611586565b34801561066e57600080fd5b5060155461036a90600160a01b900460ff1681565b34801561068f57600080fd5b5061030761069e36600461368d565b6115de565b3480156106af57600080fd5b5061026b6106be36600461363f565b611604565b3480156106cf57600080fd5b506102d96106de36600461398c565b611707565b3480156106ef57600080fd5b506102d960135481565b34801561070557600080fd5b5061030761071436600461396a565b611728565b34801561072557600080fd5b5061026b611736565b34801561073a57600080fd5b506102d9600d5481565b34801561075057600080fd5b506102d960145481565b610762611794565b6107766001600160a01b038416838361180e565b7f3dfef6507ded35b9ec518bb3532736bd85a598bdcb440fdd2289ce92a771e7978383836040516107a9939291906139a5565b60405180910390a1505050565b6107be613560565b506040805160808101825260065481526008546020808301919091526001600160a01b039093166000818152600a85528381205483850152908152600b909352912054606082015290565b610811611794565b601680546001600160a01b0319166001600160a01b0383161790556040517f399ded90cb5ed8d89ef7e76ff4af65c373f06d3bf5d7eef55f4228e7b702a18b9061085c90839061373e565b60405180910390a150565b6001600160a01b0381166000908152600a6020526040902060609061088d908585611864565b90505b9392505050565b6001600160a01b0381166108ee5760405162461bcd60e51b815260206004820152601960248201527804f776e657220616464726573732063616e6e6f74206265203603c1b60448201526064015b60405180910390fd5b600154600160a01b900460ff161561095a5760405162461bcd60e51b815260206004820152602960248201527f416c726561647920696e697469616c697a65642c20757365206e6f6d696e617460448201526832a732bba7bbb732b960b91b60648201526084016108e5565b6001805460ff60a01b1916600160a01b179055600080546001600160a01b038316620100000262010000600160b01b031990911617815560405160008051602061424c8339815191529161085c9184906139c9565b60006109bc60068361197e565b6109c857506000919050565b6000829050806001600160a01b0316633f6fa6556040518163ffffffff1660e01b8152600401602060405180830381865afa158015610a0b573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610a2f91906139e3565b15610a3d5750600092915050565b60006001826001600160a01b031663e004b5bf6040518163ffffffff1660e01b8152600401602060405180830381865afa158015610a7f573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610aa39190613a00565b610aad9190613a39565b60ff16826001600160a01b0316638b13b64b6040518163ffffffff1660e01b8152600401602060405180830381865afa158015610aee573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610b129190613a52565b610b1c9190613a6f565b826001600160a01b03166320c1bb466040518163ffffffff1660e01b8152600401602060405180830381865afa158015610b5a573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610b7e9190613a52565b610b889190613a9e565b6001600160401b03164211949350505050565b610ba3611794565b600180546001600160a01b0319166001600160a01b0383161790556040517f906a1c6bd7e3091ea86693dd029a831c19049ce77f1dce2ce0bab1cacbabce229061085c90839061373e565b610bf6611794565b60035460ff16151581151514610c5d576003805460ff191682151590811790915560ff1615610c2457426002555b60035460405160ff909116151581527f8fb6c181ee25a520cf3dd6565006ef91229fcfe5a989566c2a3b8c115570cec59060200161085c565b50565b610c68611794565b601580546001600160a01b0319166001600160a01b0383161790556040517fe9f33266a193fa018a5d4acaa6790d296c2344e2edcb5647eee2a01575d39b369061085c90839061373e565b60165460405163bf40fac160e01b81526001600160a01b039091169063bf40fac190610ce190600401613ac5565b602060405180830381865afa158015610cfe573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610d229190613af6565b6001600160a01b0316336001600160a01b031614158015610d5457506000546201000090046001600160a01b03163314155b15610d7257604051631fada62160e21b815260040160405180910390fd5b610d7b846109af565b610d98576040516309f4985b60e21b815260040160405180910390fd5b6000546201000090046001600160a01b03163314610db65780610db9565b60005b9050610dfa848484808060200260200160405190810160405280939291908181526020018383602002808284376000920191909152508692506119f4915050565b50505050565b600054610100900460ff16610e1b5760005460ff1615610e1f565b303b155b610e825760405162461bcd60e51b815260206004820152602e60248201527f496e697469616c697a61626c653a20636f6e747261637420697320616c72656160448201526d191e481a5b9a5d1a585b1a5e995960921b60648201526084016108e5565b600054610100900460ff16158015610ea4576000805461ffff19166101011790555b610ead83610897565b610eb5611736565b60058054610100600160a81b0319166101006001600160a01b038516021790558015610ee7576000805461ff00191690555b505050565b6000600160046000828254610f019190613b13565b909155505060045460035460ff1615610f825760405162461bcd60e51b815260206004820152603c60248201527f5468697320616374696f6e2063616e6e6f7420626520706572666f726d65642060448201527f7768696c652074686520636f6e7472616374206973207061757365640000000060648201526084016108e5565b60165460405163bf40fac160e01b81526000916001600160a01b03169063bf40fac190610fdc9060040160208082526016908201527529b832b2b226b0b935b2ba39a0a6a6a1b932b0ba37b960511b604082015260600190565b602060405180830381865afa158015610ff9573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061101d9190613af6565b9050336001600160a01b038216146110485760405163027cbd1b60e61b815260040160405180910390fd5b601654604080516351cfd60960e11b815290516000926001600160a01b03169163a39fac129160048083019260c09291908290030181865afa158015611092573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906110b69190613b65565b905060008060008060006110ca8a87612189565b9450945094509450945060006040518060c001604052808c6110eb90613cd1565b81526020018581526020018481526020018381526020018715158152602001866001600160a01b03168152509050611123818861245b565b99505050505050505050600454811461117e5760405162461bcd60e51b815260206004820152601f60248201527f5265656e7472616e637947756172643a207265656e7472616e742063616c6c0060448201526064016108e5565b50919050565b61118c611794565b60165460408051639a618c0f60e01b815290516000926001600160a01b031691639a618c0f9160048083019260209291908290030181865afa1580156111d6573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906111fa9190613af6565b90506001600160a01b038116156112945760055461010090046001600160a01b031663095ea7b3828461122e576000611232565b6000195b6040518363ffffffff1660e01b815260040161124f929190613d92565b6020604051808303816000875af115801561126e573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061129291906139e3565b505b60158054831515600160a01b0260ff60a01b199091161790556040517fb76eab56cfa3088dda43a9a4b3ea4bb7685b8007428d4a65248fdaa763d339f8906112e190841515815260200190565b60405180910390a15050565b60165460405163bf40fac160e01b81526001600160a01b039091169063bf40fac19061131b90600401613ac5565b602060405180830381865afa158015611338573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061135c9190613af6565b6001600160a01b0316336001600160a01b03161461138d57604051631fada62160e21b815260040160405180910390fd5b6005546113aa9061010090046001600160a01b0316833384612b88565b5050565b6001546001600160a01b031633146114265760405162461bcd60e51b815260206004820152603560248201527f596f75206d757374206265206e6f6d696e61746564206265666f726520796f7560448201527402063616e20616363657074206f776e65727368697605c1b60648201526084016108e5565b60005460015460405160008051602061424c8339815191529261145d926001600160a01b03620100009092048216929116906139c9565b60405180910390a1600180546000805462010000600160b01b0319166001600160a01b03831662010000021790556001600160a01b0319169055565b6114a1611794565b600188116114c25760405163144541b560e31b815260040160405180910390fd5b600e80546001600160401b038b8116600160401b026001600160801b0319909216908d1617179055600c889055600d879055600f86905560108590556011849055601383905560006014556115196017838361357e565b507ff286a7833e5a7fc3330b62b2ca952b0ab1e44791f67a465649f7da03516da2368a8a8a8a8a8a8a8a8a8a60405161155b9a99989796959493929190613dab565b60405180910390a150505050505050505050565b606061157d60088484611864565b90505b92915050565b61158e611794565b60058054610100600160a81b0319166101006001600160a01b038416021790556040517fba10f1023c43b7797db2ff58a62990dbbb24aa29adb28dae7424301e38d99ed99061085c90839061373e565b6001600160a01b0381166000908152600b6020526040902060609061088d908585611864565b61160c611794565b6001600160a01b0381166116545760405162461bcd60e51b815260206004820152600f60248201526e496e76616c6964206164647265737360881b60448201526064016108e5565b600154600160a81b900460ff16156116a45760405162461bcd60e51b8152602060048201526013602482015272105b1c9958591e481d1c985b9cd9995c9c9959606a1b60448201526064016108e5565b600080546001600160a01b038084166201000090810262010000600160b01b031990931692909217928390556001805460ff60a81b1916600160a81b17905560405160008051602061424c8339815191529361085c9390049091169084906139c9565b6017818154811061171757600080fd5b600091825260209091200154905081565b606061157d60068484611864565b60055460ff161561177f5760405162461bcd60e51b8152602060048201526013602482015272105b1c9958591e481a5b9a5d1a585b1a5e9959606a1b60448201526064016108e5565b6005805460ff19166001908117909155600455565b6000546201000090046001600160a01b0316331461180c5760405162461bcd60e51b815260206004820152602f60248201527f4f6e6c792074686520636f6e7472616374206f776e6572206d6179207065726660448201526e37b936903a3434b99030b1ba34b7b760891b60648201526084016108e5565b565b610ee78363a9059cbb60e01b848460405160240161182d929190613d92565b60408051601f198184030181529190526020810180516001600160e01b03166001600160e01b031990931692909217909152612ba9565b606060006118728385613b13565b8554909150811115611882575083545b83811161189f575050604080516000815260208101909152610890565b60006118ab8583613e2d565b90506000816001600160401b038111156118c7576118c7613b26565b6040519080825280602002602001820160405280156118f0578160200160208202803683370190505b50905060005b8281101561197357876119098883613b13565b8154811061191957611919613e40565b9060005260206000200160009054906101000a90046001600160a01b031682828151811061194957611949613e40565b6001600160a01b03909216602092830291909101909101528061196b81613e56565b9150506118f6565b509695505050505050565b8154600090810361199157506000611580565b6001600160a01b0382166000908152600184016020526040902054801515806119ec5750826001600160a01b0316846000016000815481106119d5576119d5613e40565b6000918252602090912001546001600160a01b0316145b949350505050565b60405163089eec6760e21b815283906001600160a01b0382169063227bb19c90611a249086908690600401613e6f565b600060405180830381600087803b158015611a3e57600080fd5b505af1158015611a52573d6000803e3d6000fd5b50505050806001600160a01b0316633f6fa6556040518163ffffffff1660e01b8152600401602060405180830381865afa158015611a94573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611ab891906139e3565b156120dd57611ac8600685612c7b565b611ad3600885612dd4565b6000816001600160a01b0316634f8632ba6040518163ffffffff1660e01b8152600401602060405180830381865afa158015611b13573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611b379190613af6565b6001600160a01b0381166000908152600a60205260409020909150611b5c908661197e565b15611b83576001600160a01b0381166000908152600a60205260409020611b839086612c7b565b6001600160a01b0381166000908152600b60205260409020611ba59086612dd4565b6000826001600160a01b0316631fcc8bb26040518163ffffffff1660e01b8152600401602060405180830381865afa158015611be5573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611c099190613ebd565b90506000611cda82856001600160a01b031663e004b5bf6040518163ffffffff1660e01b8152600401602060405180830381865afa158015611c4f573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611c739190613a00565b866001600160a01b0316635c8127376040518163ffffffff1660e01b8152600401602060405180830381865afa158015611cb1573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611cd59190613ebd565b612e26565b90506000601660009054906101000a90046001600160a01b03166001600160a01b031663a39fac126040518163ffffffff1660e01b815260040160c060405180830381865afa158015611d31573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611d559190613b65565b905060008160a001516001600160a01b0316633c1ae421876001600160a01b031663d8dfeb456040518163ffffffff1660e01b8152600401602060405180830381865afa158015611daa573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611dce9190613af6565b6040518263ffffffff1660e01b8152600401611dea919061373e565b602060405180830381865afa158015611e07573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611e2b9190613ebd565b90508015611e5d57670de0b6b3a7640000611e468282613b13565b611e509085613ed6565b611e5a9190613ef5565b92505b6000600560019054906101000a90046001600160a01b03166001600160a01b0316876001600160a01b031663d8dfeb456040518163ffffffff1660e01b8152600401602060405180830381865afa158015611ebc573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611ee09190613af6565b6001600160a01b03161461203f578260a001516001600160a01b03166357dfa0ff6040518163ffffffff1660e01b8152600401602060405180830381865afa158015611f30573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611f549190613af6565b6001600160a01b03166364be7bee886001600160a01b031663d8dfeb456040518163ffffffff1660e01b8152600401602060405180830381865afa158015611fa0573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611fc49190613af6565b60055460405160e084901b6001600160e01b0319168152611ff9929161010090046001600160a01b03169089906004016139a5565b602060405180830381865afa158015612016573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061203a9190613ebd565b612041565b835b9050866001600160a01b0316633a2c1e556040518163ffffffff1660e01b8152600401602060405180830381865afa158015612081573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906120a591906139e3565b6120d6578060145411156120d05780601460008282546120c59190613e2d565b909155506120d69050565b60006014555b5050505050505b7fe1ed361a9267ee898f74c2ae2b43810623c3ff7fbafed1bf79c651e5122bbd5284826001600160a01b0316633a2c1e556040518163ffffffff1660e01b8152600401602060405180830381865afa15801561213d573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061216191906139e3565b604080516001600160a01b03909316835290151560208301520160405180910390a150505050565b6000806000806000808660a001516001600160a01b031663a2f653218960c00160208101906121b8919061363f565b6040518263ffffffff1660e01b81526004016121d4919061373e565b602060405180830381865afa1580156121f1573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061221591906139e3565b9050808061223b5750600061223060e08a0160c08b0161363f565b6001600160a01b0316145b95508080156122635750600061225760e08a0160c08b0161363f565b6001600160a01b031614155b1561227f5761227860e0890160c08a0161363f565b9450612293565b60055461010090046001600160a01b031694505b8660a001516001600160a01b0316633c1ae421866040518263ffffffff1660e01b81526004016122c3919061373e565b602060405180830381865afa1580156122e0573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906123049190613ebd565b9150851561241f5760055460e089013594508493506001600160a01b03868116610100909204161461241a578660a001516001600160a01b03166357dfa0ff6040518163ffffffff1660e01b8152600401602060405180830381865afa158015612372573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906123969190613af6565b60055460405163325f3df760e11b81526001600160a01b03928316926364be7bee926123d6928a926101009092049091169060e08e0135906004016139a5565b602060405180830381865afa1580156123f3573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906124179190613ebd565b92505b612450565b61244a61242f60208a018a61363f565b61243f60e08b0160c08c0161363f565b8a60e001358a612e6f565b92508293505b509295509295909350565b6040805160608082018352600080835260208084018290528451928301855281835282018190528184018190529282015260a0830151845160200151604051630ac0f68f60e21b81526001600160a01b0390921691632b03da3c916124c69160040190815260200190565b606060405180830381865afa1580156124e3573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906125079190613f17565b604082018190525161252c5760405163981a2a2b60e01b815260040160405180910390fd5b600f548460400151108061254557506010548460400151115b1561256357604051633575fcab60e01b815260040160405180910390fd5b600e548451604001516001600160401b039182169116108061259f5750600e548451604001516001600160401b03600160401b90920482169116115b156125bd57604051630857121760e01b815260040160405180910390fd5b600c54845160a001515110806125da5750600d54845160a0015151115b156125f8576040516337a7ba3f60e01b815260040160405180910390fd5b600c54845160a00151516017916126119160ff16613e2d565b8154811061262157612621613e40565b6000918252602091829020015482820181905290850151855160a001515161264892612e26565b815260608401511561268e57670de0b6b3a76400008460600151670de0b6b3a76400006126759190613b13565b82516126819190613ed6565b61268b9190613ef5565b81525b6000600560019054906101000a90046001600160a01b03166001600160a01b03168560a001516001600160a01b0316146127af578360a001516001600160a01b03166357dfa0ff6040518163ffffffff1660e01b8152600401602060405180830381865afa158015612704573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906127289190613af6565b60a0860151600554845160405163325f3df760e11b81526001600160a01b03948516946364be7bee94612769949093610100909104909116916004016139a5565b602060405180830381865afa158015612786573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906127aa9190613ebd565b6127b2565b81515b90506011548111156127d75760405163035c9b7f60e11b815260040160405180910390fd5b60408501516127e69082613e2d565b601460008282546127f79190613b13565b909155505060135460145411156128215760405163725128bd60e01b815260040160405180910390fd5b5083608001511561288e576000670de0b6b3a7640000826040015160200151670de0b6b3a76400006128539190613b13565b86602001516128629190613ed6565b61286c9190613ef5565b85515160a087015191925061288c916001600160a01b0316903084612b88565b505b6015546000906128a6906001600160a01b0316613168565b604080516101c0810182523081528751516001600160a01b03908116602080840191909152895101518284015288518301516001600160401b03908116606084015289519093015193945084169263ab8318d792608083019161290a911642613b13565b6001600160401b03168152602001886000015160a00151518960000151604001516001600160401b031661293e9190613ed6565b6129489042613b13565b6001600160401b0316815288516060015160070b6020820152885160800151604090910190600181111561297e5761297e613f7f565b8152602001886000015160a001518152602001886020015181526020018560400151602001518152602001856020015181526020018860a001516001600160a01b0316815260200185600001518152506040518263ffffffff1660e01b81526004016129ea9190614004565b600060405180830381600087803b158015612a0457600080fd5b505af1158015612a18573d6000803e3d6000fd5b5050505084608001518015612a45575060055460a08601516001600160a01b039081166101009092041614155b15612a6d57815160a0860151612a68916001600160a01b0390911690839061180e565b612a8d565b8151600554612a8d916101009091046001600160a01b031690839061180e565b612abc8560000151600001518660000151610100015187602001518560400151602001518960a0015189613205565b50612ac8600682612dd4565b8451516001600160a01b03166000908152600a60205260409020612aec9082612dd4565b845180516020820151604083015160a090930151517fd061c182aaa319a32c4cb7717e176ffddabdf9a1d7f1dc1e5d8296ffc9eead1d9385939291612b3a906001600160401b038316613ed6565b612b449042613b13565b8a51606081015160a0909101516020808e01518b8201516040808e0151909301519251612b789a9998979695949390614129565b60405180910390a1949350505050565b610dfa846323b872dd60e01b85858560405160240161182d939291906139a5565b6000612bfe826040518060400160405280602081526020017f5361666545524332303a206c6f772d6c6576656c2063616c6c206661696c6564815250856001600160a01b03166134559092919063ffffffff16565b805190915015610ee75780806020019051810190612c1c91906139e3565b610ee75760405162461bcd60e51b815260206004820152602a60248201527f5361666545524332303a204552433230206f7065726174696f6e20646964206e6044820152691bdd081cdd58d8d9595960b21b60648201526084016108e5565b612c85828261197e565b612cc75760405162461bcd60e51b815260206004820152601360248201527222b632b6b2b73a103737ba1034b71039b2ba1760691b60448201526064016108e5565b6001600160a01b0381166000908152600180840160205260408220548454909291612cf191613e2d565b9050808214612d7d576000846000018281548110612d1157612d11613e40565b60009182526020909120015485546001600160a01b0390911691508190869085908110612d4057612d40613e40565b600091825260208083209190910180546001600160a01b0319166001600160a01b0394851617905592909116815260018601909152604090208290555b8354849080612d8e57612d8e6141a3565b60008281526020808220830160001990810180546001600160a01b03191690559092019092556001600160a01b0394909416815260019490940190925250506040812055565b612dde828261197e565b6113aa5781546001600160a01b038216600081815260018086016020908152604083208590559084018655858252902090910180546001600160a01b03191690911790555050565b8260005b8360ff168160ff161015612e6757670de0b6b3a7640000612e4b8484613ed6565b612e559190613ef5565b9150612e60816141b9565b9050612e2a565b509392505050565b601554600090600160a01b900460ff16612e9c5760405163355da01160e11b815260040160405180910390fd5b6005546040516370a0823160e01b815260009161010090046001600160a01b0316906370a0823190612ed290309060040161373e565b602060405180830381865afa158015612eef573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190612f139190613ebd565b6060840151909150612f306001600160a01b038716883088612b88565b60405163095ea7b360e01b81526001600160a01b0387169063095ea7b390612f5e9084908990600401613d92565b6020604051808303816000875af1158015612f7d573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190612fa191906139e3565b506040516322ceb11360e21b81526000906001600160a01b03831690638b3ac44c90612fd3908a908a90600401613d92565b6020604051808303816000875af1158015612ff2573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906130169190613ebd565b905060008560a001519050670de0b6b3a7640000816001600160a01b031663d69fb6686040518163ffffffff1660e01b8152600401602060405180830381865afa158015613068573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061308c9190613ebd565b61309e90670de0b6b3a7640000613e2d565b6130a89084613ed6565b6130b29190613ef5565b6005546040516370a0823160e01b8152919650600091869161010090046001600160a01b0316906370a08231906130ed90309060040161373e565b602060405180830381865afa15801561310a573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061312e9190613ebd565b6131389190613e2d565b90508581101561315b57604051633c923d8b60e21b815260040160405180910390fd5b5050505050949350505050565b6000604051733d602d80600a3d3981f3363d3d373d3d3d363d7360601b81528260601b60148201526e5af43d82803e903d91602b57fd5bf360881b60288201526037816000f09150506001600160a01b0381166132005760405162461bcd60e51b8152602060048201526016602482015275115490cc4c4d8dce8818dc99585d194819985a5b195960521b60448201526064016108e5565b919050565b60208101516000906001600160a01b038116156134165760006001600160a01b038816156132955760405163bbddaca360e01b81526001600160a01b0383169063bbddaca39061325b908b908d906004016139c9565b600060405180830381600087803b15801561327557600080fd5b505af1158015613289573d6000803e3d6000fd5b50505050879050613305565b604051639ca423b360e01b81526001600160a01b03831690639ca423b3906132c1908c9060040161373e565b602060405180830381865afa1580156132de573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906133029190613af6565b90505b6001600160a01b038116156134145760405163c7d1f5f160e01b81526000906001600160a01b0384169063c7d1f5f19061334390859060040161373e565b602060405180830381865afa158015613360573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906133849190613ebd565b9050801561341257670de0b6b3a764000061339f828a613ed6565b6133a99190613ef5565b93506133bf6001600160a01b038716838661180e565b604080516001600160a01b0380851682528c166020820152908101859052606081018990527f8fa68a6a8e2fc9ff758a6e64afba8bc2f66fb082999a2c5225c8c49633faded49060800160405180910390a15b505b505b82516119739083670de0b6b3a7640000613430898b613ed6565b61343a9190613ef5565b6134449190613e2d565b6001600160a01b038716919061180e565b606061088d848460008585843b6134ae5760405162461bcd60e51b815260206004820152601d60248201527f416464726573733a2063616c6c20746f206e6f6e2d636f6e747261637400000060448201526064016108e5565b600080866001600160a01b031685876040516134ca91906141fc565b60006040518083038185875af1925050503d8060008114613507576040519150601f19603f3d011682016040523d82523d6000602084013e61350c565b606091505b509150915061351c828286613527565b979650505050505050565b60608315613536575081610890565b8251156135465782518084602001fd5b8160405162461bcd60e51b81526004016108e59190614218565b60405180608001604052806004906020820280368337509192915050565b8280548282559060005260206000209081019282156135b9579160200282015b828111156135b957823582559160200191906001019061359e565b506135c59291506135c9565b5090565b5b808211156135c557600081556001016135ca565b6001600160a01b0381168114610c5d57600080fd5b8035613200816135de565b60008060006060848603121561361357600080fd5b833561361e816135de565b9250602084013561362e816135de565b929592945050506040919091013590565b60006020828403121561365157600080fd5b8135610890816135de565b60808101818360005b6004811015613684578151835260209283019290910190600101613665565b50505092915050565b6000806000606084860312156136a257600080fd5b833592506020840135915060408401356136bb816135de565b809150509250925092565b6020808252825182820181905260009190848201906040850190845b818110156137075783516001600160a01b0316835292840192918401916001016136e2565b50909695505050505050565b8015158114610c5d57600080fd5b60006020828403121561373357600080fd5b813561089081613713565b6001600160a01b0391909116815260200190565b60008083601f84011261376457600080fd5b5081356001600160401b0381111561377b57600080fd5b6020830191508360208260051b850101111561379657600080fd5b9250929050565b600080600080606085870312156137b357600080fd5b84356137be816135de565b935060208501356001600160401b038111156137d957600080fd5b6137e587828801613752565b90945092505060408501356137f981613713565b939692955090935050565b6000806040838503121561381757600080fd5b8235613822816135de565b91506020830135613832816135de565b809150509250929050565b60006020828403121561384f57600080fd5b81356001600160401b0381111561386557600080fd5b8201610120818503121561089057600080fd5b6000806040838503121561388b57600080fd5b8235613896816135de565b946020939093013593505050565b6001600160401b0381168114610c5d57600080fd5b8035613200816138a4565b6000806000806000806000806000806101208b8d0312156138e457600080fd5b8a356138ef816138a4565b995060208b01356138ff816138a4565b985060408b0135975060608b0135965060808b0135955060a08b0135945060c08b0135935060e08b013592506101008b01356001600160401b0381111561394557600080fd5b6139518d828e01613752565b915080935050809150509295989b9194979a5092959850565b6000806040838503121561397d57600080fd5b50508035926020909101359150565b60006020828403121561399e57600080fd5b5035919050565b6001600160a01b039384168152919092166020820152604081019190915260600190565b6001600160a01b0392831681529116602082015260400190565b6000602082840312156139f557600080fd5b815161089081613713565b600060208284031215613a1257600080fd5b815160ff8116811461089057600080fd5b634e487b7160e01b600052601160045260246000fd5b60ff828116828216039081111561158057611580613a23565b600060208284031215613a6457600080fd5b8151610890816138a4565b60006001600160401b0380831681851681830481118215151615613a9557613a95613a23565b02949350505050565b6001600160401b03818116838216019080821115613abe57613abe613a23565b5092915050565b60208082526017908201527629b832b2b226b0b935b2ba39a0a6a6a932b9b7b63b32b960491b604082015260600190565b600060208284031215613b0857600080fd5b8151610890816135de565b8082018082111561158057611580613a23565b634e487b7160e01b600052604160045260246000fd5b60405161012081016001600160401b0381118282101715613b5f57613b5f613b26565b60405290565b600060c08284031215613b7757600080fd5b60405160c081018181106001600160401b0382111715613b9957613b99613b26565b6040528251613ba7816135de565b81526020830151613bb7816135de565b60208201526040830151613bca816135de565b60408201526060830151613bdd816135de565b60608201526080830151613bf0816135de565b608082015260a0830151613c03816135de565b60a08201529392505050565b8035600781900b811461320057600080fd5b60028110610c5d57600080fd5b803561320081613c21565b600082601f830112613c4a57600080fd5b813560206001600160401b0380831115613c6657613c66613b26565b8260051b604051601f19603f83011681018181108482111715613c8b57613c8b613b26565b604052938452858101830193838101925087851115613ca957600080fd5b83870191505b8482101561351c578135613cc281613c21565b83529183019190830190613caf565b60006101208236031215613ce457600080fd5b613cec613b3c565b613cf5836135f3565b815260208301356020820152613d0d604084016138b9565b6040820152613d1e60608401613c0f565b6060820152613d2f60808401613c2e565b608082015260a08301356001600160401b03811115613d4d57600080fd5b613d5936828601613c39565b60a083015250613d6b60c084016135f3565b60c082015260e083013560e0820152610100613d888185016135f3565b9082015292915050565b6001600160a01b03929092168252602082015260400190565b60006101206001600160401b03808e168452808d166020850152508a60408401528960608401528860808401528760a08401528660c08401528560e08401528061010084015283818401525061014060018060fb1b03841115613e0d57600080fd5b8360051b808683860137929092019091019b9a5050505050505050505050565b8181038181111561158057611580613a23565b634e487b7160e01b600052603260045260246000fd5b600060018201613e6857613e68613a23565b5060010190565b604080825283519082018190526000906020906060840190828701845b82811015613eab57815160070b84529284019290840190600101613e8c565b50505093151592019190915250919050565b600060208284031215613ecf57600080fd5b5051919050565b6000816000190483118215151615613ef057613ef0613a23565b500290565b600082613f1257634e487b7160e01b600052601260045260246000fd5b500490565b600060608284031215613f2957600080fd5b604051606081018181106001600160401b0382111715613f4b57613f4b613b26565b6040528251613f5981613713565b8152602083810151908201526040830151613f73816138a4565b60408201529392505050565b634e487b7160e01b600052602160045260246000fd5b60028110610c5d57634e487b7160e01b600052602160045260246000fd5b613fbc81613f95565b9052565b600081518084526020808501945080840160005b83811015613ff9578151613fe781613f95565b87529582019590820190600101613fd4565b509495945050505050565b6020815261401e6020820183516001600160a01b03169052565b6000602083015161403a60408401826001600160a01b03169052565b5060408301516060830152606083015161405f60808401826001600160401b03169052565b5060808301516001600160401b03811660a08401525060a08301516001600160401b03811660c08401525060c083015161409e60e084018260070b9052565b5060e08301516101006140b381850183613fb3565b808501519150506101c061012081818601526140d36101e0860184613fc0565b908601516101408681019190915286015161016080870191909152860151610180808701919091528601519092506101a0614118818701836001600160a01b03169052565b959095015193019290925250919050565b6001600160a01b038b811682528a166020820152604081018990526001600160401b03888116606083015287166080820152600786900b60a082015261014060c0820181905260009061417e83820188613fc0565b60e0840196909652505061010081019290925261012090910152979650505050505050565b634e487b7160e01b600052603160045260246000fd5b600060ff821660ff81036141cf576141cf613a23565b60010192915050565b60005b838110156141f35781810151838201526020016141db565b50506000910152565b6000825161420e8184602087016141d8565b9190910192915050565b60208152600082518060208401526142378160408501602087016141d8565b601f01601f1916919091016040019291505056feb532073b38c83145e3e5135377a08bf9aab55bc0fd7c1179cd4fb995d2a5159ca26469706673582212204e08735e8a87f1bea983ed24601db8978f617650e4c6c05d5aeee684549c6eed64736f6c63430008100033
Deployed Bytecode
0x60806040526004361061023f5760003560e01c80635c975abb1161012e578063999045a0116100ab578063dc56e7b31161006f578063dc56e7b3146106e3578063e73efc9b146106f9578063ebc7977214610719578063f823c6431461072e578063ffde0f971461074457600080fd5b8063999045a01461064257806399c18e7e146106625780639fc4270314610683578063c3b83f5f146106a3578063c80a4fa5146106c357600080fd5b806382e59f57116100f257806382e59f57146105a157806389c6318d146105c15780638da5cb5b146105e157806391b4ded9146106075780639324cac71461061d57600080fd5b80635c975abb1461051c57806368b9f66b146105365780636c9259f4146105565780636dcf6def1461056c57806379ba50971461058c57600080fd5b80631994c4f9116101bc57806335f127521161018057806335f127521461047c5780633ab76e9f1461049c578063485cc955146104bc57806348a017d9146104dc57806353a47bb7146104fc57600080fd5b80631994c4f9146103ba5780631b1ad49d146103e75780631f50899b146104265780632236aa651461044657806323b312151461046657600080fd5b806312aa38331161020357806312aa38331461031457806313af40351461032a57806314527f3a1461034a5780631627540c1461037a57806316c38b3c1461039a57600080fd5b806301f474711461024b578063023fb2591461026d5780630652b57a146102a357806307b53bb4146102c357806312039b6d146102e757600080fd5b3661024657005b600080fd5b34801561025757600080fd5b5061026b6102663660046135fe565b61075a565b005b34801561027957600080fd5b5061028d61028836600461363f565b6107b6565b60405161029a919061365c565b60405180910390f35b3480156102af57600080fd5b5061026b6102be36600461363f565b610809565b3480156102cf57600080fd5b506102d960105481565b60405190815260200161029a565b3480156102f357600080fd5b5061030761030236600461368d565b610867565b60405161029a91906136c6565b34801561032057600080fd5b506102d9600f5481565b34801561033657600080fd5b5061026b61034536600461363f565b610897565b34801561035657600080fd5b5061036a61036536600461363f565b6109af565b604051901515815260200161029a565b34801561038657600080fd5b5061026b61039536600461363f565b610b9b565b3480156103a657600080fd5b5061026b6103b5366004613721565b610bee565b3480156103c657600080fd5b506015546103da906001600160a01b031681565b60405161029a919061373e565b3480156103f357600080fd5b50600e5461040e90600160401b90046001600160401b031681565b6040516001600160401b03909116815260200161029a565b34801561043257600080fd5b5061026b61044136600461363f565b610c60565b34801561045257600080fd5b5061026b61046136600461379d565b610cb3565b34801561047257600080fd5b506102d9600c5481565b34801561048857600080fd5b50600e5461040e906001600160401b031681565b3480156104a857600080fd5b506016546103da906001600160a01b031681565b3480156104c857600080fd5b5061026b6104d7366004613804565b610e00565b3480156104e857600080fd5b506103da6104f736600461383d565b610eec565b34801561050857600080fd5b506001546103da906001600160a01b031681565b34801561052857600080fd5b5060035461036a9060ff1681565b34801561054257600080fd5b5061026b610551366004613721565b611184565b34801561056257600080fd5b506102d960115481565b34801561057857600080fd5b5061026b610587366004613878565b6112ed565b34801561059857600080fd5b5061026b6113ae565b3480156105ad57600080fd5b5061026b6105bc3660046138c4565b611499565b3480156105cd57600080fd5b506103076105dc36600461396a565b61156f565b3480156105ed57600080fd5b506000546103da906201000090046001600160a01b031681565b34801561061357600080fd5b506102d960025481565b34801561062957600080fd5b506005546103da9061010090046001600160a01b031681565b34801561064e57600080fd5b5061026b61065d36600461363f565b611586565b34801561066e57600080fd5b5060155461036a90600160a01b900460ff1681565b34801561068f57600080fd5b5061030761069e36600461368d565b6115de565b3480156106af57600080fd5b5061026b6106be36600461363f565b611604565b3480156106cf57600080fd5b506102d96106de36600461398c565b611707565b3480156106ef57600080fd5b506102d960135481565b34801561070557600080fd5b5061030761071436600461396a565b611728565b34801561072557600080fd5b5061026b611736565b34801561073a57600080fd5b506102d9600d5481565b34801561075057600080fd5b506102d960145481565b610762611794565b6107766001600160a01b038416838361180e565b7f3dfef6507ded35b9ec518bb3532736bd85a598bdcb440fdd2289ce92a771e7978383836040516107a9939291906139a5565b60405180910390a1505050565b6107be613560565b506040805160808101825260065481526008546020808301919091526001600160a01b039093166000818152600a85528381205483850152908152600b909352912054606082015290565b610811611794565b601680546001600160a01b0319166001600160a01b0383161790556040517f399ded90cb5ed8d89ef7e76ff4af65c373f06d3bf5d7eef55f4228e7b702a18b9061085c90839061373e565b60405180910390a150565b6001600160a01b0381166000908152600a6020526040902060609061088d908585611864565b90505b9392505050565b6001600160a01b0381166108ee5760405162461bcd60e51b815260206004820152601960248201527804f776e657220616464726573732063616e6e6f74206265203603c1b60448201526064015b60405180910390fd5b600154600160a01b900460ff161561095a5760405162461bcd60e51b815260206004820152602960248201527f416c726561647920696e697469616c697a65642c20757365206e6f6d696e617460448201526832a732bba7bbb732b960b91b60648201526084016108e5565b6001805460ff60a01b1916600160a01b179055600080546001600160a01b038316620100000262010000600160b01b031990911617815560405160008051602061424c8339815191529161085c9184906139c9565b60006109bc60068361197e565b6109c857506000919050565b6000829050806001600160a01b0316633f6fa6556040518163ffffffff1660e01b8152600401602060405180830381865afa158015610a0b573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610a2f91906139e3565b15610a3d5750600092915050565b60006001826001600160a01b031663e004b5bf6040518163ffffffff1660e01b8152600401602060405180830381865afa158015610a7f573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610aa39190613a00565b610aad9190613a39565b60ff16826001600160a01b0316638b13b64b6040518163ffffffff1660e01b8152600401602060405180830381865afa158015610aee573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610b129190613a52565b610b1c9190613a6f565b826001600160a01b03166320c1bb466040518163ffffffff1660e01b8152600401602060405180830381865afa158015610b5a573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610b7e9190613a52565b610b889190613a9e565b6001600160401b03164211949350505050565b610ba3611794565b600180546001600160a01b0319166001600160a01b0383161790556040517f906a1c6bd7e3091ea86693dd029a831c19049ce77f1dce2ce0bab1cacbabce229061085c90839061373e565b610bf6611794565b60035460ff16151581151514610c5d576003805460ff191682151590811790915560ff1615610c2457426002555b60035460405160ff909116151581527f8fb6c181ee25a520cf3dd6565006ef91229fcfe5a989566c2a3b8c115570cec59060200161085c565b50565b610c68611794565b601580546001600160a01b0319166001600160a01b0383161790556040517fe9f33266a193fa018a5d4acaa6790d296c2344e2edcb5647eee2a01575d39b369061085c90839061373e565b60165460405163bf40fac160e01b81526001600160a01b039091169063bf40fac190610ce190600401613ac5565b602060405180830381865afa158015610cfe573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610d229190613af6565b6001600160a01b0316336001600160a01b031614158015610d5457506000546201000090046001600160a01b03163314155b15610d7257604051631fada62160e21b815260040160405180910390fd5b610d7b846109af565b610d98576040516309f4985b60e21b815260040160405180910390fd5b6000546201000090046001600160a01b03163314610db65780610db9565b60005b9050610dfa848484808060200260200160405190810160405280939291908181526020018383602002808284376000920191909152508692506119f4915050565b50505050565b600054610100900460ff16610e1b5760005460ff1615610e1f565b303b155b610e825760405162461bcd60e51b815260206004820152602e60248201527f496e697469616c697a61626c653a20636f6e747261637420697320616c72656160448201526d191e481a5b9a5d1a585b1a5e995960921b60648201526084016108e5565b600054610100900460ff16158015610ea4576000805461ffff19166101011790555b610ead83610897565b610eb5611736565b60058054610100600160a81b0319166101006001600160a01b038516021790558015610ee7576000805461ff00191690555b505050565b6000600160046000828254610f019190613b13565b909155505060045460035460ff1615610f825760405162461bcd60e51b815260206004820152603c60248201527f5468697320616374696f6e2063616e6e6f7420626520706572666f726d65642060448201527f7768696c652074686520636f6e7472616374206973207061757365640000000060648201526084016108e5565b60165460405163bf40fac160e01b81526000916001600160a01b03169063bf40fac190610fdc9060040160208082526016908201527529b832b2b226b0b935b2ba39a0a6a6a1b932b0ba37b960511b604082015260600190565b602060405180830381865afa158015610ff9573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061101d9190613af6565b9050336001600160a01b038216146110485760405163027cbd1b60e61b815260040160405180910390fd5b601654604080516351cfd60960e11b815290516000926001600160a01b03169163a39fac129160048083019260c09291908290030181865afa158015611092573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906110b69190613b65565b905060008060008060006110ca8a87612189565b9450945094509450945060006040518060c001604052808c6110eb90613cd1565b81526020018581526020018481526020018381526020018715158152602001866001600160a01b03168152509050611123818861245b565b99505050505050505050600454811461117e5760405162461bcd60e51b815260206004820152601f60248201527f5265656e7472616e637947756172643a207265656e7472616e742063616c6c0060448201526064016108e5565b50919050565b61118c611794565b60165460408051639a618c0f60e01b815290516000926001600160a01b031691639a618c0f9160048083019260209291908290030181865afa1580156111d6573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906111fa9190613af6565b90506001600160a01b038116156112945760055461010090046001600160a01b031663095ea7b3828461122e576000611232565b6000195b6040518363ffffffff1660e01b815260040161124f929190613d92565b6020604051808303816000875af115801561126e573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061129291906139e3565b505b60158054831515600160a01b0260ff60a01b199091161790556040517fb76eab56cfa3088dda43a9a4b3ea4bb7685b8007428d4a65248fdaa763d339f8906112e190841515815260200190565b60405180910390a15050565b60165460405163bf40fac160e01b81526001600160a01b039091169063bf40fac19061131b90600401613ac5565b602060405180830381865afa158015611338573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061135c9190613af6565b6001600160a01b0316336001600160a01b03161461138d57604051631fada62160e21b815260040160405180910390fd5b6005546113aa9061010090046001600160a01b0316833384612b88565b5050565b6001546001600160a01b031633146114265760405162461bcd60e51b815260206004820152603560248201527f596f75206d757374206265206e6f6d696e61746564206265666f726520796f7560448201527402063616e20616363657074206f776e65727368697605c1b60648201526084016108e5565b60005460015460405160008051602061424c8339815191529261145d926001600160a01b03620100009092048216929116906139c9565b60405180910390a1600180546000805462010000600160b01b0319166001600160a01b03831662010000021790556001600160a01b0319169055565b6114a1611794565b600188116114c25760405163144541b560e31b815260040160405180910390fd5b600e80546001600160401b038b8116600160401b026001600160801b0319909216908d1617179055600c889055600d879055600f86905560108590556011849055601383905560006014556115196017838361357e565b507ff286a7833e5a7fc3330b62b2ca952b0ab1e44791f67a465649f7da03516da2368a8a8a8a8a8a8a8a8a8a60405161155b9a99989796959493929190613dab565b60405180910390a150505050505050505050565b606061157d60088484611864565b90505b92915050565b61158e611794565b60058054610100600160a81b0319166101006001600160a01b038416021790556040517fba10f1023c43b7797db2ff58a62990dbbb24aa29adb28dae7424301e38d99ed99061085c90839061373e565b6001600160a01b0381166000908152600b6020526040902060609061088d908585611864565b61160c611794565b6001600160a01b0381166116545760405162461bcd60e51b815260206004820152600f60248201526e496e76616c6964206164647265737360881b60448201526064016108e5565b600154600160a81b900460ff16156116a45760405162461bcd60e51b8152602060048201526013602482015272105b1c9958591e481d1c985b9cd9995c9c9959606a1b60448201526064016108e5565b600080546001600160a01b038084166201000090810262010000600160b01b031990931692909217928390556001805460ff60a81b1916600160a81b17905560405160008051602061424c8339815191529361085c9390049091169084906139c9565b6017818154811061171757600080fd5b600091825260209091200154905081565b606061157d60068484611864565b60055460ff161561177f5760405162461bcd60e51b8152602060048201526013602482015272105b1c9958591e481a5b9a5d1a585b1a5e9959606a1b60448201526064016108e5565b6005805460ff19166001908117909155600455565b6000546201000090046001600160a01b0316331461180c5760405162461bcd60e51b815260206004820152602f60248201527f4f6e6c792074686520636f6e7472616374206f776e6572206d6179207065726660448201526e37b936903a3434b99030b1ba34b7b760891b60648201526084016108e5565b565b610ee78363a9059cbb60e01b848460405160240161182d929190613d92565b60408051601f198184030181529190526020810180516001600160e01b03166001600160e01b031990931692909217909152612ba9565b606060006118728385613b13565b8554909150811115611882575083545b83811161189f575050604080516000815260208101909152610890565b60006118ab8583613e2d565b90506000816001600160401b038111156118c7576118c7613b26565b6040519080825280602002602001820160405280156118f0578160200160208202803683370190505b50905060005b8281101561197357876119098883613b13565b8154811061191957611919613e40565b9060005260206000200160009054906101000a90046001600160a01b031682828151811061194957611949613e40565b6001600160a01b03909216602092830291909101909101528061196b81613e56565b9150506118f6565b509695505050505050565b8154600090810361199157506000611580565b6001600160a01b0382166000908152600184016020526040902054801515806119ec5750826001600160a01b0316846000016000815481106119d5576119d5613e40565b6000918252602090912001546001600160a01b0316145b949350505050565b60405163089eec6760e21b815283906001600160a01b0382169063227bb19c90611a249086908690600401613e6f565b600060405180830381600087803b158015611a3e57600080fd5b505af1158015611a52573d6000803e3d6000fd5b50505050806001600160a01b0316633f6fa6556040518163ffffffff1660e01b8152600401602060405180830381865afa158015611a94573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611ab891906139e3565b156120dd57611ac8600685612c7b565b611ad3600885612dd4565b6000816001600160a01b0316634f8632ba6040518163ffffffff1660e01b8152600401602060405180830381865afa158015611b13573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611b379190613af6565b6001600160a01b0381166000908152600a60205260409020909150611b5c908661197e565b15611b83576001600160a01b0381166000908152600a60205260409020611b839086612c7b565b6001600160a01b0381166000908152600b60205260409020611ba59086612dd4565b6000826001600160a01b0316631fcc8bb26040518163ffffffff1660e01b8152600401602060405180830381865afa158015611be5573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611c099190613ebd565b90506000611cda82856001600160a01b031663e004b5bf6040518163ffffffff1660e01b8152600401602060405180830381865afa158015611c4f573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611c739190613a00565b866001600160a01b0316635c8127376040518163ffffffff1660e01b8152600401602060405180830381865afa158015611cb1573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611cd59190613ebd565b612e26565b90506000601660009054906101000a90046001600160a01b03166001600160a01b031663a39fac126040518163ffffffff1660e01b815260040160c060405180830381865afa158015611d31573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611d559190613b65565b905060008160a001516001600160a01b0316633c1ae421876001600160a01b031663d8dfeb456040518163ffffffff1660e01b8152600401602060405180830381865afa158015611daa573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611dce9190613af6565b6040518263ffffffff1660e01b8152600401611dea919061373e565b602060405180830381865afa158015611e07573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611e2b9190613ebd565b90508015611e5d57670de0b6b3a7640000611e468282613b13565b611e509085613ed6565b611e5a9190613ef5565b92505b6000600560019054906101000a90046001600160a01b03166001600160a01b0316876001600160a01b031663d8dfeb456040518163ffffffff1660e01b8152600401602060405180830381865afa158015611ebc573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611ee09190613af6565b6001600160a01b03161461203f578260a001516001600160a01b03166357dfa0ff6040518163ffffffff1660e01b8152600401602060405180830381865afa158015611f30573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611f549190613af6565b6001600160a01b03166364be7bee886001600160a01b031663d8dfeb456040518163ffffffff1660e01b8152600401602060405180830381865afa158015611fa0573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611fc49190613af6565b60055460405160e084901b6001600160e01b0319168152611ff9929161010090046001600160a01b03169089906004016139a5565b602060405180830381865afa158015612016573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061203a9190613ebd565b612041565b835b9050866001600160a01b0316633a2c1e556040518163ffffffff1660e01b8152600401602060405180830381865afa158015612081573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906120a591906139e3565b6120d6578060145411156120d05780601460008282546120c59190613e2d565b909155506120d69050565b60006014555b5050505050505b7fe1ed361a9267ee898f74c2ae2b43810623c3ff7fbafed1bf79c651e5122bbd5284826001600160a01b0316633a2c1e556040518163ffffffff1660e01b8152600401602060405180830381865afa15801561213d573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061216191906139e3565b604080516001600160a01b03909316835290151560208301520160405180910390a150505050565b6000806000806000808660a001516001600160a01b031663a2f653218960c00160208101906121b8919061363f565b6040518263ffffffff1660e01b81526004016121d4919061373e565b602060405180830381865afa1580156121f1573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061221591906139e3565b9050808061223b5750600061223060e08a0160c08b0161363f565b6001600160a01b0316145b95508080156122635750600061225760e08a0160c08b0161363f565b6001600160a01b031614155b1561227f5761227860e0890160c08a0161363f565b9450612293565b60055461010090046001600160a01b031694505b8660a001516001600160a01b0316633c1ae421866040518263ffffffff1660e01b81526004016122c3919061373e565b602060405180830381865afa1580156122e0573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906123049190613ebd565b9150851561241f5760055460e089013594508493506001600160a01b03868116610100909204161461241a578660a001516001600160a01b03166357dfa0ff6040518163ffffffff1660e01b8152600401602060405180830381865afa158015612372573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906123969190613af6565b60055460405163325f3df760e11b81526001600160a01b03928316926364be7bee926123d6928a926101009092049091169060e08e0135906004016139a5565b602060405180830381865afa1580156123f3573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906124179190613ebd565b92505b612450565b61244a61242f60208a018a61363f565b61243f60e08b0160c08c0161363f565b8a60e001358a612e6f565b92508293505b509295509295909350565b6040805160608082018352600080835260208084018290528451928301855281835282018190528184018190529282015260a0830151845160200151604051630ac0f68f60e21b81526001600160a01b0390921691632b03da3c916124c69160040190815260200190565b606060405180830381865afa1580156124e3573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906125079190613f17565b604082018190525161252c5760405163981a2a2b60e01b815260040160405180910390fd5b600f548460400151108061254557506010548460400151115b1561256357604051633575fcab60e01b815260040160405180910390fd5b600e548451604001516001600160401b039182169116108061259f5750600e548451604001516001600160401b03600160401b90920482169116115b156125bd57604051630857121760e01b815260040160405180910390fd5b600c54845160a001515110806125da5750600d54845160a0015151115b156125f8576040516337a7ba3f60e01b815260040160405180910390fd5b600c54845160a00151516017916126119160ff16613e2d565b8154811061262157612621613e40565b6000918252602091829020015482820181905290850151855160a001515161264892612e26565b815260608401511561268e57670de0b6b3a76400008460600151670de0b6b3a76400006126759190613b13565b82516126819190613ed6565b61268b9190613ef5565b81525b6000600560019054906101000a90046001600160a01b03166001600160a01b03168560a001516001600160a01b0316146127af578360a001516001600160a01b03166357dfa0ff6040518163ffffffff1660e01b8152600401602060405180830381865afa158015612704573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906127289190613af6565b60a0860151600554845160405163325f3df760e11b81526001600160a01b03948516946364be7bee94612769949093610100909104909116916004016139a5565b602060405180830381865afa158015612786573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906127aa9190613ebd565b6127b2565b81515b90506011548111156127d75760405163035c9b7f60e11b815260040160405180910390fd5b60408501516127e69082613e2d565b601460008282546127f79190613b13565b909155505060135460145411156128215760405163725128bd60e01b815260040160405180910390fd5b5083608001511561288e576000670de0b6b3a7640000826040015160200151670de0b6b3a76400006128539190613b13565b86602001516128629190613ed6565b61286c9190613ef5565b85515160a087015191925061288c916001600160a01b0316903084612b88565b505b6015546000906128a6906001600160a01b0316613168565b604080516101c0810182523081528751516001600160a01b03908116602080840191909152895101518284015288518301516001600160401b03908116606084015289519093015193945084169263ab8318d792608083019161290a911642613b13565b6001600160401b03168152602001886000015160a00151518960000151604001516001600160401b031661293e9190613ed6565b6129489042613b13565b6001600160401b0316815288516060015160070b6020820152885160800151604090910190600181111561297e5761297e613f7f565b8152602001886000015160a001518152602001886020015181526020018560400151602001518152602001856020015181526020018860a001516001600160a01b0316815260200185600001518152506040518263ffffffff1660e01b81526004016129ea9190614004565b600060405180830381600087803b158015612a0457600080fd5b505af1158015612a18573d6000803e3d6000fd5b5050505084608001518015612a45575060055460a08601516001600160a01b039081166101009092041614155b15612a6d57815160a0860151612a68916001600160a01b0390911690839061180e565b612a8d565b8151600554612a8d916101009091046001600160a01b031690839061180e565b612abc8560000151600001518660000151610100015187602001518560400151602001518960a0015189613205565b50612ac8600682612dd4565b8451516001600160a01b03166000908152600a60205260409020612aec9082612dd4565b845180516020820151604083015160a090930151517fd061c182aaa319a32c4cb7717e176ffddabdf9a1d7f1dc1e5d8296ffc9eead1d9385939291612b3a906001600160401b038316613ed6565b612b449042613b13565b8a51606081015160a0909101516020808e01518b8201516040808e0151909301519251612b789a9998979695949390614129565b60405180910390a1949350505050565b610dfa846323b872dd60e01b85858560405160240161182d939291906139a5565b6000612bfe826040518060400160405280602081526020017f5361666545524332303a206c6f772d6c6576656c2063616c6c206661696c6564815250856001600160a01b03166134559092919063ffffffff16565b805190915015610ee75780806020019051810190612c1c91906139e3565b610ee75760405162461bcd60e51b815260206004820152602a60248201527f5361666545524332303a204552433230206f7065726174696f6e20646964206e6044820152691bdd081cdd58d8d9595960b21b60648201526084016108e5565b612c85828261197e565b612cc75760405162461bcd60e51b815260206004820152601360248201527222b632b6b2b73a103737ba1034b71039b2ba1760691b60448201526064016108e5565b6001600160a01b0381166000908152600180840160205260408220548454909291612cf191613e2d565b9050808214612d7d576000846000018281548110612d1157612d11613e40565b60009182526020909120015485546001600160a01b0390911691508190869085908110612d4057612d40613e40565b600091825260208083209190910180546001600160a01b0319166001600160a01b0394851617905592909116815260018601909152604090208290555b8354849080612d8e57612d8e6141a3565b60008281526020808220830160001990810180546001600160a01b03191690559092019092556001600160a01b0394909416815260019490940190925250506040812055565b612dde828261197e565b6113aa5781546001600160a01b038216600081815260018086016020908152604083208590559084018655858252902090910180546001600160a01b03191690911790555050565b8260005b8360ff168160ff161015612e6757670de0b6b3a7640000612e4b8484613ed6565b612e559190613ef5565b9150612e60816141b9565b9050612e2a565b509392505050565b601554600090600160a01b900460ff16612e9c5760405163355da01160e11b815260040160405180910390fd5b6005546040516370a0823160e01b815260009161010090046001600160a01b0316906370a0823190612ed290309060040161373e565b602060405180830381865afa158015612eef573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190612f139190613ebd565b6060840151909150612f306001600160a01b038716883088612b88565b60405163095ea7b360e01b81526001600160a01b0387169063095ea7b390612f5e9084908990600401613d92565b6020604051808303816000875af1158015612f7d573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190612fa191906139e3565b506040516322ceb11360e21b81526000906001600160a01b03831690638b3ac44c90612fd3908a908a90600401613d92565b6020604051808303816000875af1158015612ff2573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906130169190613ebd565b905060008560a001519050670de0b6b3a7640000816001600160a01b031663d69fb6686040518163ffffffff1660e01b8152600401602060405180830381865afa158015613068573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061308c9190613ebd565b61309e90670de0b6b3a7640000613e2d565b6130a89084613ed6565b6130b29190613ef5565b6005546040516370a0823160e01b8152919650600091869161010090046001600160a01b0316906370a08231906130ed90309060040161373e565b602060405180830381865afa15801561310a573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061312e9190613ebd565b6131389190613e2d565b90508581101561315b57604051633c923d8b60e21b815260040160405180910390fd5b5050505050949350505050565b6000604051733d602d80600a3d3981f3363d3d373d3d3d363d7360601b81528260601b60148201526e5af43d82803e903d91602b57fd5bf360881b60288201526037816000f09150506001600160a01b0381166132005760405162461bcd60e51b8152602060048201526016602482015275115490cc4c4d8dce8818dc99585d194819985a5b195960521b60448201526064016108e5565b919050565b60208101516000906001600160a01b038116156134165760006001600160a01b038816156132955760405163bbddaca360e01b81526001600160a01b0383169063bbddaca39061325b908b908d906004016139c9565b600060405180830381600087803b15801561327557600080fd5b505af1158015613289573d6000803e3d6000fd5b50505050879050613305565b604051639ca423b360e01b81526001600160a01b03831690639ca423b3906132c1908c9060040161373e565b602060405180830381865afa1580156132de573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906133029190613af6565b90505b6001600160a01b038116156134145760405163c7d1f5f160e01b81526000906001600160a01b0384169063c7d1f5f19061334390859060040161373e565b602060405180830381865afa158015613360573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906133849190613ebd565b9050801561341257670de0b6b3a764000061339f828a613ed6565b6133a99190613ef5565b93506133bf6001600160a01b038716838661180e565b604080516001600160a01b0380851682528c166020820152908101859052606081018990527f8fa68a6a8e2fc9ff758a6e64afba8bc2f66fb082999a2c5225c8c49633faded49060800160405180910390a15b505b505b82516119739083670de0b6b3a7640000613430898b613ed6565b61343a9190613ef5565b6134449190613e2d565b6001600160a01b038716919061180e565b606061088d848460008585843b6134ae5760405162461bcd60e51b815260206004820152601d60248201527f416464726573733a2063616c6c20746f206e6f6e2d636f6e747261637400000060448201526064016108e5565b600080866001600160a01b031685876040516134ca91906141fc565b60006040518083038185875af1925050503d8060008114613507576040519150601f19603f3d011682016040523d82523d6000602084013e61350c565b606091505b509150915061351c828286613527565b979650505050505050565b60608315613536575081610890565b8251156135465782518084602001fd5b8160405162461bcd60e51b81526004016108e59190614218565b60405180608001604052806004906020820280368337509192915050565b8280548282559060005260206000209081019282156135b9579160200282015b828111156135b957823582559160200191906001019061359e565b506135c59291506135c9565b5090565b5b808211156135c557600081556001016135ca565b6001600160a01b0381168114610c5d57600080fd5b8035613200816135de565b60008060006060848603121561361357600080fd5b833561361e816135de565b9250602084013561362e816135de565b929592945050506040919091013590565b60006020828403121561365157600080fd5b8135610890816135de565b60808101818360005b6004811015613684578151835260209283019290910190600101613665565b50505092915050565b6000806000606084860312156136a257600080fd5b833592506020840135915060408401356136bb816135de565b809150509250925092565b6020808252825182820181905260009190848201906040850190845b818110156137075783516001600160a01b0316835292840192918401916001016136e2565b50909695505050505050565b8015158114610c5d57600080fd5b60006020828403121561373357600080fd5b813561089081613713565b6001600160a01b0391909116815260200190565b60008083601f84011261376457600080fd5b5081356001600160401b0381111561377b57600080fd5b6020830191508360208260051b850101111561379657600080fd5b9250929050565b600080600080606085870312156137b357600080fd5b84356137be816135de565b935060208501356001600160401b038111156137d957600080fd5b6137e587828801613752565b90945092505060408501356137f981613713565b939692955090935050565b6000806040838503121561381757600080fd5b8235613822816135de565b91506020830135613832816135de565b809150509250929050565b60006020828403121561384f57600080fd5b81356001600160401b0381111561386557600080fd5b8201610120818503121561089057600080fd5b6000806040838503121561388b57600080fd5b8235613896816135de565b946020939093013593505050565b6001600160401b0381168114610c5d57600080fd5b8035613200816138a4565b6000806000806000806000806000806101208b8d0312156138e457600080fd5b8a356138ef816138a4565b995060208b01356138ff816138a4565b985060408b0135975060608b0135965060808b0135955060a08b0135945060c08b0135935060e08b013592506101008b01356001600160401b0381111561394557600080fd5b6139518d828e01613752565b915080935050809150509295989b9194979a5092959850565b6000806040838503121561397d57600080fd5b50508035926020909101359150565b60006020828403121561399e57600080fd5b5035919050565b6001600160a01b039384168152919092166020820152604081019190915260600190565b6001600160a01b0392831681529116602082015260400190565b6000602082840312156139f557600080fd5b815161089081613713565b600060208284031215613a1257600080fd5b815160ff8116811461089057600080fd5b634e487b7160e01b600052601160045260246000fd5b60ff828116828216039081111561158057611580613a23565b600060208284031215613a6457600080fd5b8151610890816138a4565b60006001600160401b0380831681851681830481118215151615613a9557613a95613a23565b02949350505050565b6001600160401b03818116838216019080821115613abe57613abe613a23565b5092915050565b60208082526017908201527629b832b2b226b0b935b2ba39a0a6a6a932b9b7b63b32b960491b604082015260600190565b600060208284031215613b0857600080fd5b8151610890816135de565b8082018082111561158057611580613a23565b634e487b7160e01b600052604160045260246000fd5b60405161012081016001600160401b0381118282101715613b5f57613b5f613b26565b60405290565b600060c08284031215613b7757600080fd5b60405160c081018181106001600160401b0382111715613b9957613b99613b26565b6040528251613ba7816135de565b81526020830151613bb7816135de565b60208201526040830151613bca816135de565b60408201526060830151613bdd816135de565b60608201526080830151613bf0816135de565b608082015260a0830151613c03816135de565b60a08201529392505050565b8035600781900b811461320057600080fd5b60028110610c5d57600080fd5b803561320081613c21565b600082601f830112613c4a57600080fd5b813560206001600160401b0380831115613c6657613c66613b26565b8260051b604051601f19603f83011681018181108482111715613c8b57613c8b613b26565b604052938452858101830193838101925087851115613ca957600080fd5b83870191505b8482101561351c578135613cc281613c21565b83529183019190830190613caf565b60006101208236031215613ce457600080fd5b613cec613b3c565b613cf5836135f3565b815260208301356020820152613d0d604084016138b9565b6040820152613d1e60608401613c0f565b6060820152613d2f60808401613c2e565b608082015260a08301356001600160401b03811115613d4d57600080fd5b613d5936828601613c39565b60a083015250613d6b60c084016135f3565b60c082015260e083013560e0820152610100613d888185016135f3565b9082015292915050565b6001600160a01b03929092168252602082015260400190565b60006101206001600160401b03808e168452808d166020850152508a60408401528960608401528860808401528760a08401528660c08401528560e08401528061010084015283818401525061014060018060fb1b03841115613e0d57600080fd5b8360051b808683860137929092019091019b9a5050505050505050505050565b8181038181111561158057611580613a23565b634e487b7160e01b600052603260045260246000fd5b600060018201613e6857613e68613a23565b5060010190565b604080825283519082018190526000906020906060840190828701845b82811015613eab57815160070b84529284019290840190600101613e8c565b50505093151592019190915250919050565b600060208284031215613ecf57600080fd5b5051919050565b6000816000190483118215151615613ef057613ef0613a23565b500290565b600082613f1257634e487b7160e01b600052601260045260246000fd5b500490565b600060608284031215613f2957600080fd5b604051606081018181106001600160401b0382111715613f4b57613f4b613b26565b6040528251613f5981613713565b8152602083810151908201526040830151613f73816138a4565b60408201529392505050565b634e487b7160e01b600052602160045260246000fd5b60028110610c5d57634e487b7160e01b600052602160045260246000fd5b613fbc81613f95565b9052565b600081518084526020808501945080840160005b83811015613ff9578151613fe781613f95565b87529582019590820190600101613fd4565b509495945050505050565b6020815261401e6020820183516001600160a01b03169052565b6000602083015161403a60408401826001600160a01b03169052565b5060408301516060830152606083015161405f60808401826001600160401b03169052565b5060808301516001600160401b03811660a08401525060a08301516001600160401b03811660c08401525060c083015161409e60e084018260070b9052565b5060e08301516101006140b381850183613fb3565b808501519150506101c061012081818601526140d36101e0860184613fc0565b908601516101408681019190915286015161016080870191909152860151610180808701919091528601519092506101a0614118818701836001600160a01b03169052565b959095015193019290925250919050565b6001600160a01b038b811682528a166020820152604081018990526001600160401b03888116606083015287166080820152600786900b60a082015261014060c0820181905260009061417e83820188613fc0565b60e0840196909652505061010081019290925261012090910152979650505050505050565b634e487b7160e01b600052603160045260246000fd5b600060ff821660ff81036141cf576141cf613a23565b60010192915050565b60005b838110156141f35781810151838201526020016141db565b50506000910152565b6000825161420e8184602087016141d8565b9190910192915050565b60208152600082518060208401526142378160408501602087016141d8565b601f01601f1916919091016040019291505056feb532073b38c83145e3e5135377a08bf9aab55bc0fd7c1179cd4fb995d2a5159ca26469706673582212204e08735e8a87f1bea983ed24601db8978f617650e4c6c05d5aeee684549c6eed64736f6c63430008100033
Loading...
Loading
Loading...
Loading
Loading...
Loading
Net Worth in USD
$0.00
Net Worth in ETH
0
Multichain Portfolio | 33 Chains
| Chain | Token | Portfolio % | Price | Amount | Value |
|---|
Loading...
Loading
Loading...
Loading
Loading...
Loading
A contract address hosts a smart contract, which is a set of code stored on the blockchain that runs when predetermined conditions are met. Learn more about addresses in our Knowledge Base.