ETH Price: $2,274.00 (-6.27%)
Gas: 0.04 GWei

Contract

0xF3B07e3968170955503599047aC9FEFbDbC32077

Overview

ETH Balance

Scroll LogoScroll LogoScroll Logo0 ETH

ETH Value

$0.00

Token Holdings

Transaction Hash
Method
Block
From
To
Claim All Reward...93151042024-09-15 15:35:5910 hrs ago1726414559IN
0xF3B07e39...bDbC32077
0 ETH0.000003620.04111581
Withdraw Liquidi...93150692024-09-15 15:34:1610 hrs ago1726414456IN
0xF3B07e39...bDbC32077
0 ETH0.000007320.04092824
Claim All Reward...93044682024-09-15 6:45:3919 hrs ago1726382739IN
0xF3B07e39...bDbC32077
0 ETH0.000003540.03909802
Claim All Reward...92981742024-09-15 1:31:0924 hrs ago1726363869IN
0xF3B07e39...bDbC32077
0 ETH0.000002850.04830206
Claim All Reward...92981532024-09-15 1:30:0624 hrs ago1726363806IN
0xF3B07e39...bDbC32077
0 ETH0.000003770.04006867
Claim All Reward...92958102024-09-14 23:33:0026 hrs ago1726356780IN
0xF3B07e39...bDbC32077
0 ETH0.000006640.06064365
Deposit Liquidit...92574822024-09-13 15:53:522 days ago1726242832IN
0xF3B07e39...bDbC32077
0 ETH0.000019730.08
Claim All Reward...92189322024-09-12 8:01:033 days ago1726128063IN
0xF3B07e39...bDbC32077
0 ETH0.00000380.04242759
Withdraw Liquidi...91992562024-09-11 15:45:364 days ago1726069536IN
0xF3B07e39...bDbC32077
0 ETH0.000012880.05833295
Claim All Reward...91506652024-09-09 23:48:306 days ago1725925710IN
0xF3B07e39...bDbC32077
0 ETH0.000006720.06679079
Deposit Liquidit...91044752024-09-08 9:38:457 days ago1725788325IN
0xF3B07e39...bDbC32077
0 ETH0.000007790.03879727
Deposit Liquidit...91044162024-09-08 9:35:487 days ago1725788148IN
0xF3B07e39...bDbC32077
0 ETH0.000008890.03878361
Claim All Reward...91043262024-09-08 9:31:187 days ago1725787878IN
0xF3B07e39...bDbC32077
0 ETH0.000004340.03866449
Withdraw Liquidi...91016902024-09-08 7:20:247 days ago1725780024IN
0xF3B07e39...bDbC32077
0 ETH0.000007360.03893006
Deposit Liquidit...91016582024-09-08 7:18:487 days ago1725779928IN
0xF3B07e39...bDbC32077
0 ETH0.00000740.03900552
Claim All Reward...91002872024-09-08 6:10:187 days ago1725775818IN
0xF3B07e39...bDbC32077
0 ETH0.000002880.04829359
Claim All Reward...91002682024-09-08 6:09:217 days ago1725775761IN
0xF3B07e39...bDbC32077
0 ETH0.00000360.04024466
Claim All Reward...90793202024-09-07 12:46:328 days ago1725713192IN
0xF3B07e39...bDbC32077
0 ETH0.00000550.0606
Deposit Liquidit...90661922024-09-07 1:54:399 days ago1725674079IN
0xF3B07e39...bDbC32077
0 ETH0.000009950.04648301
Claim All Reward...90660102024-09-07 1:45:339 days ago1725673533IN
0xF3B07e39...bDbC32077
0 ETH0.000003390.05744657
Claim All Reward...90659902024-09-07 1:44:339 days ago1725673473IN
0xF3B07e39...bDbC32077
0 ETH0.000003980.04723539
Claim All Reward...90058172024-09-05 0:59:5411 days ago1725497994IN
0xF3B07e39...bDbC32077
0 ETH0.000006010.05829079
Claim All Reward...90046042024-09-04 23:59:2611 days ago1725494366IN
0xF3B07e39...bDbC32077
0 ETH0.000005410.06193846
Claim All Reward...89995342024-09-04 19:49:3011 days ago1725479370IN
0xF3B07e39...bDbC32077
0 ETH0.000004920.04900616
Claim All Reward...89924522024-09-04 14:17:4311 days ago1725459463IN
0xF3B07e39...bDbC32077
0 ETH0.000007570.05760497
View all transactions

Parent Transaction Hash Block From To
View All Internal Transactions
Loading...
Loading

Contract Source Code Verified (Exact Match)

Contract Name:
Liquidity

Compiler Version
v0.8.22+commit.4fc1097e

Optimization Enabled:
Yes with 10000 runs

Other Settings:
paris EvmVersion
File 1 of 29 : Liquidity.sol
// SPDX-License-Identifier: BUSL 1.1
pragma solidity =0.8.22;

import "openzeppelin-contracts/contracts/token/ERC20/utils/SafeERC20.sol";
import "../pools/interfaces/IPoolsConfig.sol";
import "../interfaces/IExchangeConfig.sol";
import "./interfaces/IStakingConfig.sol";
import "../pools/interfaces/IPools.sol";
import "./interfaces/ILiquidity.sol";
import "./StakingRewards.sol";
import "../pools/PoolMath.sol";
import "../pools/PoolUtils.sol";


// Allows users to add liquidity and increase their liquidity share in the StakingRewards pool so that they can receive proportional future rewards.
// Keeps track of the liquidity held by each user via StakingRewards.userShare.

contract Liquidity is ILiquidity, StakingRewards
    {
	using SafeERC20 for IERC20;

	IPools immutable public pools;


	constructor( IPools _pools, IExchangeConfig _exchangeConfig, IPoolsConfig _poolsConfig, IStakingConfig _stakingConfig )
		StakingRewards( _exchangeConfig, _poolsConfig, _stakingConfig )
		{
		pools = _pools;
		}


	modifier ensureNotExpired(uint deadline)
		{
		require(block.timestamp <= deadline, "TX EXPIRED");
		_;
		}


	// Deposit an arbitrary amount of one or both tokens into the pool and receive liquidity corresponding the the value of both of them.
	// As the ratio of tokens added to the pool has to be the same as the existing ratio of reserves, some of the excess token will be swapped to the other.
	// Due to precision reduction during zapping calculation, the minimum possible reserves and quantity possible to zap is .000101,
	function _dualZapInLiquidity(IERC20 tokenA, IERC20 tokenB, uint256 zapAmountA, uint256 zapAmountB ) internal returns (uint256 amountForLiquidityA, uint256 amountForLiquidityB  )
		{
		(uint256 reserveA, uint256 reserveB) = pools.getPoolReserves(tokenA, tokenB);
		(uint256 swapAmountA, uint256 swapAmountB ) = PoolMath._determineZapSwapAmount( reserveA, reserveB, zapAmountA, zapAmountB );

		// tokenA is in excess so swap some of it to tokenB?
		if ( swapAmountA > 0)
			{
			// https://github.com/code-423n4/2024-01-salty/blob/main/bot-report.md#l-02
			if ( tokenA.allowance(address(this), address(pools) ) > 0 )
				tokenA.safeApprove( address(pools), 0 );

			tokenA.safeApprove( address(pools), swapAmountA );

			// Swap from tokenA to tokenB and adjust the zapAmounts
			zapAmountA -= swapAmountA;
			zapAmountB += pools.depositZapSwapWithdraw( tokenA, tokenB, swapAmountA );
			}

		// tokenB is in excess so swap some of it to tokenA?
		else if ( swapAmountB > 0)
			{
			// https://github.com/code-423n4/2024-01-salty/blob/main/bot-report.md#l-02
			if ( tokenB.allowance(address(this), address(pools) ) > 0 )
				tokenB.safeApprove( address(pools), 0 );

			tokenB.safeApprove( address(pools), swapAmountB );

			// Swap from tokenB to tokenA and adjust the zapAmounts
			zapAmountB -= swapAmountB;
			zapAmountA += pools.depositZapSwapWithdraw( tokenB, tokenA, swapAmountB );
			}

		return (zapAmountA, zapAmountB);
		}


	// Add a certain amount of liquidity to the specified pool and increase the user's liquidity share for that pool so that they can receive future rewards.
	// With zapping, all the tokens specified by the user are added to the liquidity pool regardless of their ratio.
	// If one of the tokens has excess in regards to the reserves token ratio, then some of it is first swapped for the other before the liquidity is added. (See PoolMath.sol for details)
	// Requires exchange access for the user.
	function depositLiquidityAndIncreaseShare( IERC20 tokenA, IERC20 tokenB, uint256 maxAmountA, uint256 maxAmountB, uint256 minAddedAmountA, uint256 minAddedAmountB, uint256 minAddedLiquidity, uint256 deadline, bool useZapping ) external nonReentrant ensureNotExpired(deadline) returns (uint256 addedLiquidity)
		{
		require( exchangeConfig.walletHasAccess(msg.sender), "Sender does not have exchange access" );

		// Transfer the specified maximum amount of tokens from the user
		tokenA.safeTransferFrom(msg.sender, address(this), maxAmountA );
		tokenB.safeTransferFrom(msg.sender, address(this), maxAmountB );

		// Balance the token amounts by swapping one to the other before adding the liquidity?
		if ( useZapping )
			(maxAmountA, maxAmountB) = _dualZapInLiquidity(tokenA, tokenB, maxAmountA, maxAmountB );

		// Approve the liquidity to add

		// https://github.com/code-423n4/2024-01-salty/blob/main/bot-report.md#l-02
		if ( tokenA.allowance(address(this), address(pools) ) > 0 )
			tokenA.safeApprove(address(pools), 0 );

		if ( tokenB.allowance(address(this), address(pools) ) > 0 )
			tokenB.safeApprove(address(pools), 0 );

		tokenA.safeApprove( address(pools), maxAmountA );
		tokenB.safeApprove( address(pools), maxAmountB );

		uint256 addedAmountA;
		uint256 addedAmountB;

			{
			// Deposit the specified liquidity into the Pools contract
			// The added liquidity will be owned by this contract. (external call to Pools contract)
			bytes32 poolID = PoolUtils._poolID( tokenA, tokenB );

			(addedAmountA, addedAmountB, addedLiquidity) = pools.addLiquidity( tokenA, tokenB, maxAmountA, maxAmountB, minAddedAmountA, minAddedAmountB, totalShares[poolID]);

			// Make sure the user receives a sufficient share of liquidity
			require( addedLiquidity >= minAddedLiquidity, "Insufficient liquidity added" );

			// Increase the user's liquidity share by the amount of addedLiquidity.
			// Cooldown is specified to prevent reward hunting (ie - quickly depositing and withdrawing large amounts of liquidity to snipe rewards as they arrive)
			// _increaseUserShare confirms the pool as whitelisted as well.
			_increaseUserShare( msg.sender, poolID, addedLiquidity, true );
			}

		// If any of the user's tokens were not used, then send them back
		if ( addedAmountA < maxAmountA )
			tokenA.safeTransfer( msg.sender, maxAmountA - addedAmountA );

		if ( addedAmountB < maxAmountB )
			tokenB.safeTransfer( msg.sender, maxAmountB - addedAmountB );
		}


	// Withdraw specified liquidity, decrease the user's liquidity share and claim any pending rewards.
    function withdrawLiquidityAndClaim( IERC20 tokenA, IERC20 tokenB, uint256 liquidityToWithdraw, uint256 minReclaimedA, uint256 minReclaimedB, uint256 deadline ) external nonReentrant ensureNotExpired(deadline) returns (uint256 reclaimedA, uint256 reclaimedB)
		{
		bytes32 poolID = PoolUtils._poolID( tokenA, tokenB );
		require( userShareForPool(msg.sender, poolID) >= liquidityToWithdraw, "Cannot withdraw more than existing user share" );

		// Remove the amount of liquidity specified by the user.
		// The liquidity in the pool is currently owned by this contract. (external call)
		(reclaimedA, reclaimedB) = pools.removeLiquidity( tokenA, tokenB, liquidityToWithdraw, minReclaimedA, minReclaimedB, totalShares[poolID] );

		// Transfer the reclaimed tokens to the user
		tokenA.safeTransfer( msg.sender, reclaimedA );
		tokenB.safeTransfer( msg.sender, reclaimedB );

		// Reduce the user's liquidity share for the specified pool so that they receive less rewards.
		// Cooldown is specified to prevent reward hunting (ie - quickly depositing and withdrawing large amounts of liquidity to snipe rewards)
		// This call will send any pending ZERO token rewards to msg.sender as well.
		_decreaseUserShare( msg.sender, poolID, liquidityToWithdraw, true );
		}
	}

File 2 of 29 : SafeERC20.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.9.3) (token/ERC20/utils/SafeERC20.sol)

pragma solidity ^0.8.0;

import "../IERC20.sol";
import "../extensions/IERC20Permit.sol";
import "../../../utils/Address.sol";

/**
 * @title SafeERC20
 * @dev Wrappers around ERC20 operations that throw on failure (when the token
 * contract returns false). Tokens that return no value (and instead revert or
 * throw on failure) are also supported, non-reverting calls are assumed to be
 * successful.
 * To use this library you can add a `using SafeERC20 for IERC20;` statement to your contract,
 * which allows you to call the safe operations as `token.safeTransfer(...)`, etc.
 */
library SafeERC20 {
    using Address for address;

    /**
     * @dev Transfer `value` amount of `token` from the calling contract to `to`. If `token` returns no value,
     * non-reverting calls are assumed to be successful.
     */
    function safeTransfer(IERC20 token, address to, uint256 value) internal {
        _callOptionalReturn(token, abi.encodeWithSelector(token.transfer.selector, to, value));
    }

    /**
     * @dev Transfer `value` amount of `token` from `from` to `to`, spending the approval given by `from` to the
     * calling contract. If `token` returns no value, non-reverting calls are assumed to be successful.
     */
    function safeTransferFrom(IERC20 token, address from, address to, uint256 value) internal {
        _callOptionalReturn(token, abi.encodeWithSelector(token.transferFrom.selector, from, to, value));
    }

    /**
     * @dev Deprecated. This function has issues similar to the ones found in
     * {IERC20-approve}, and its usage is discouraged.
     *
     * Whenever possible, use {safeIncreaseAllowance} and
     * {safeDecreaseAllowance} instead.
     */
    function safeApprove(IERC20 token, address spender, uint256 value) internal {
        // safeApprove should only be called when setting an initial allowance,
        // or when resetting it to zero. To increase and decrease it, use
        // 'safeIncreaseAllowance' and 'safeDecreaseAllowance'
        require(
            (value == 0) || (token.allowance(address(this), spender) == 0),
            "SafeERC20: approve from non-zero to non-zero allowance"
        );
        _callOptionalReturn(token, abi.encodeWithSelector(token.approve.selector, spender, value));
    }

    /**
     * @dev Increase the calling contract's allowance toward `spender` by `value`. If `token` returns no value,
     * non-reverting calls are assumed to be successful.
     */
    function safeIncreaseAllowance(IERC20 token, address spender, uint256 value) internal {
        uint256 oldAllowance = token.allowance(address(this), spender);
        _callOptionalReturn(token, abi.encodeWithSelector(token.approve.selector, spender, oldAllowance + value));
    }

    /**
     * @dev Decrease the calling contract's allowance toward `spender` by `value`. If `token` returns no value,
     * non-reverting calls are assumed to be successful.
     */
    function safeDecreaseAllowance(IERC20 token, address spender, uint256 value) internal {
        unchecked {
            uint256 oldAllowance = token.allowance(address(this), spender);
            require(oldAllowance >= value, "SafeERC20: decreased allowance below zero");
            _callOptionalReturn(token, abi.encodeWithSelector(token.approve.selector, spender, oldAllowance - value));
        }
    }

    /**
     * @dev Set the calling contract's allowance toward `spender` to `value`. If `token` returns no value,
     * non-reverting calls are assumed to be successful. Meant to be used with tokens that require the approval
     * to be set to zero before setting it to a non-zero value, such as USDT.
     */
    function forceApprove(IERC20 token, address spender, uint256 value) internal {
        bytes memory approvalCall = abi.encodeWithSelector(token.approve.selector, spender, value);

        if (!_callOptionalReturnBool(token, approvalCall)) {
            _callOptionalReturn(token, abi.encodeWithSelector(token.approve.selector, spender, 0));
            _callOptionalReturn(token, approvalCall);
        }
    }

    /**
     * @dev Use a ERC-2612 signature to set the `owner` approval toward `spender` on `token`.
     * Revert on invalid signature.
     */
    function safePermit(
        IERC20Permit token,
        address owner,
        address spender,
        uint256 value,
        uint256 deadline,
        uint8 v,
        bytes32 r,
        bytes32 s
    ) internal {
        uint256 nonceBefore = token.nonces(owner);
        token.permit(owner, spender, value, deadline, v, r, s);
        uint256 nonceAfter = token.nonces(owner);
        require(nonceAfter == nonceBefore + 1, "SafeERC20: permit did not succeed");
    }

    /**
     * @dev Imitates a Solidity high-level call (i.e. a regular function call to a contract), relaxing the requirement
     * on the return value: the return value is optional (but if data is returned, it must not be false).
     * @param token The token targeted by the call.
     * @param data The call data (encoded using abi.encode or one of its variants).
     */
    function _callOptionalReturn(IERC20 token, bytes memory data) private {
        // We need to perform a low level call here, to bypass Solidity's return data size checking mechanism, since
        // we're implementing it ourselves. We use {Address-functionCall} to perform this call, which verifies that
        // the target address contains contract code and also asserts for success in the low-level call.

        bytes memory returndata = address(token).functionCall(data, "SafeERC20: low-level call failed");
        require(returndata.length == 0 || abi.decode(returndata, (bool)), "SafeERC20: ERC20 operation did not succeed");
    }

    /**
     * @dev Imitates a Solidity high-level call (i.e. a regular function call to a contract), relaxing the requirement
     * on the return value: the return value is optional (but if data is returned, it must not be false).
     * @param token The token targeted by the call.
     * @param data The call data (encoded using abi.encode or one of its variants).
     *
     * This is a variant of {_callOptionalReturn} that silents catches all reverts and returns a bool instead.
     */
    function _callOptionalReturnBool(IERC20 token, bytes memory data) private returns (bool) {
        // We need to perform a low level call here, to bypass Solidity's return data size checking mechanism, since
        // we're implementing it ourselves. We cannot use {Address-functionCall} here since this should return false
        // and not revert is the subcall reverts.

        (bool success, bytes memory returndata) = address(token).call(data);
        return
            success && (returndata.length == 0 || abi.decode(returndata, (bool))) && Address.isContract(address(token));
    }
}

File 3 of 29 : IPoolsConfig.sol
// SPDX-License-Identifier: BUSL 1.1
pragma solidity =0.8.22;

import "openzeppelin-contracts/contracts/token/ERC20/IERC20.sol";
import "./IPools.sol";


interface IPoolsConfig
	{
	function whitelistPool( IERC20 tokenA, IERC20 tokenB ) external; // onlyOwner
	function unwhitelistPool( IERC20 tokenA, IERC20 tokenB ) external; // onlyOwner
	function changeMaximumWhitelistedPools(bool increase) external; // onlyOwner

	// Views
    function maximumWhitelistedPools() external view returns (uint256);

	function numberOfWhitelistedPools() external view returns (uint256);
	function isWhitelisted( bytes32 poolID ) external view returns (bool);
	function whitelistedPools() external view returns (bytes32[] calldata);
	function underlyingTokenPair( bytes32 poolID ) external view returns (IERC20 tokenA, IERC20 tokenB);

	// Returns true if the token has been whitelisted (meaning it has been pooled with either WETH and ZERO)
	function tokenHasBeenWhitelisted( IERC20 token, IERC20 weth, IERC20 zero ) external view returns (bool);
	}

File 4 of 29 : IExchangeConfig.sol
// SPDX-License-Identifier: BUSL 1.1
pragma solidity =0.8.22;

import "openzeppelin-contracts/contracts/finance/VestingWallet.sol";
import "../staking/interfaces/ILiquidity.sol";
import "../launch/interfaces/IInitialDistribution.sol";
import "../rewards/interfaces/IRewardsEmitter.sol";
import "../rewards/interfaces/IZeroRewards.sol";
import "../rewards/interfaces/IEmissions.sol";
import "../interfaces/IAccessManager.sol";
import "../launch/interfaces/IAirdrop.sol";
import "../dao/interfaces/IDAO.sol";
import "../interfaces/IZero.sol";
import "./IUpkeep.sol";


interface IExchangeConfig
	{
	function setContracts( IDAO _dao, IUpkeep _upkeep, IInitialDistribution _initialDistribution, VestingWallet _teamVestingWallet, VestingWallet _daoVestingWallet ) external; // onlyOwner
	function setAccessManager( IAccessManager _accessManager ) external; // onlyOwner

	// Views
	function zero() external view returns (IZero);
	function wbtc() external view returns (IERC20);
	function weth() external view returns (IERC20);
	function usdc() external view returns (IERC20);
	function usdt() external view returns (IERC20);

	function daoVestingWallet() external view returns (VestingWallet);
    function teamVestingWallet() external view returns (VestingWallet);
    function initialDistribution() external view returns (IInitialDistribution);

	function accessManager() external view returns (IAccessManager);
	function dao() external view returns (IDAO);
	function upkeep() external view returns (IUpkeep);
	function teamWallet() external view returns (address);

	function walletHasAccess( address wallet ) external view returns (bool);
	}

File 5 of 29 : IStakingConfig.sol
// SPDX-License-Identifier: BUSL 1.1
pragma solidity =0.8.22;


interface IStakingConfig
	{
	function changeMinUnstakeWeeks(bool increase) external; // onlyOwner
	function changeMaxUnstakeWeeks(bool increase) external; // onlyOwner
	function changeMinUnstakePercent(bool increase) external; // onlyOwner
	function changeModificationCooldown(bool increase) external; // onlyOwner

	// Views
    function minUnstakeWeeks() external view returns (uint256);
    function maxUnstakeWeeks() external view returns (uint256);
    function minUnstakePercent() external view returns (uint256);
    function modificationCooldown() external view returns (uint256);
	}

File 6 of 29 : IPools.sol
// SPDX-License-Identifier: BUSL 1.1
pragma solidity =0.8.22;

import "../../staking/interfaces/ILiquidity.sol";
import "../../dao/interfaces/IDAO.sol";
import "./IPoolStats.sol";


interface IPools is IPoolStats
	{
	function startExchangeApproved() external;
	function setContracts( IDAO _dao, ILiquidity _liquidity ) external; // onlyOwner

	function addLiquidity( IERC20 tokenA, IERC20 tokenB, uint256 maxAmountA, uint256 maxAmountB, uint256 minAddedAmountA, uint256 minAddedAmountB, uint256 totalLiquidity ) external returns (uint256 addedAmountA, uint256 addedAmountB, uint256 addedLiquidity);
	function removeLiquidity( IERC20 tokenA, IERC20 tokenB, uint256 liquidityToRemove, uint256 minReclaimedA, uint256 minReclaimedB, uint256 totalLiquidity ) external returns (uint256 reclaimedA, uint256 reclaimedB);

	function deposit( IERC20 token, uint256 amount ) external;
	function withdraw( IERC20 token, uint256 amount ) external;
	function swap( IERC20 swapTokenIn, IERC20 swapTokenOut, uint256 swapAmountIn, uint256 minAmountOut, uint256 deadline ) external returns (uint256 swapAmountOut);
	function depositSwapWithdraw(IERC20 swapTokenIn, IERC20 swapTokenOut, uint256 swapAmountIn, uint256 minAmountOut, uint256 deadline ) external returns (uint256 swapAmountOut);
	function depositDoubleSwapWithdraw( IERC20 swapTokenIn, IERC20 swapTokenMiddle, IERC20 swapTokenOut, uint256 swapAmountIn, uint256 minAmountOut, uint256 deadline ) external returns (uint256 swapAmountOut);
	function depositZapSwapWithdraw(IERC20 swapTokenIn, IERC20 swapTokenOut, uint256 swapAmountIn ) external returns (uint256 swapAmountOut);

	// Views
	function exchangeIsLive() external view returns (bool);
	function getPoolReserves(IERC20 tokenA, IERC20 tokenB) external view returns (uint256 reserveA, uint256 reserveB);
	function depositedUserBalance(address user, IERC20 token) external view returns (uint256);
	}

File 7 of 29 : ILiquidity.sol
// SPDX-License-Identifier: BUSL 1.1
pragma solidity =0.8.22;

import "openzeppelin-contracts/contracts/token/ERC20/IERC20.sol";
import "./IStakingRewards.sol";


interface ILiquidity is IStakingRewards
	{
	function depositLiquidityAndIncreaseShare( IERC20 tokenA, IERC20 tokenB, uint256 maxAmountA, uint256 maxAmountB, uint256 minAddedAmountA, uint256 minAddedAmountB, uint256 minAddedLiquidity, uint256 deadline, bool useZapping ) external returns (uint256 addedLiquidity);
	function withdrawLiquidityAndClaim( IERC20 tokenA, IERC20 tokenB, uint256 liquidityToWithdraw, uint256 minReclaimedA, uint256 minReclaimedB, uint256 deadline ) external returns (uint256 reclaimedA, uint256 reclaimedB);
	}

File 8 of 29 : StakingRewards.sol
// SPDX-License-Identifier: BUSL 1.1
pragma solidity =0.8.22;

import "openzeppelin-contracts/contracts/token/ERC20/utils/SafeERC20.sol";
import "openzeppelin-contracts/contracts/security/ReentrancyGuard.sol";
import "openzeppelin-contracts/contracts/utils/math/Math.sol";
import "../pools/interfaces/IPoolsConfig.sol";
import "../interfaces/IExchangeConfig.sol";
import "./interfaces/IStakingRewards.sol";
import "./interfaces/IStakingConfig.sol";
import "../interfaces/IZero.sol";

// This contract allows users to receive rewards (as ZERO tokens) for staking ZERO or liquidity shares.
// A user's reward is proportional to their share of the stake and is based on their share at the time that rewards are added.
//
// What staked shares represent is specific to the contracts that derive from StakingRewards.
//
// 1. Staking.sol: shares represent the amount of ZERO staked (staked to the STAKED_ZERO pool)
// 2. Liquidity.sol: shares represent the amount of liquidity deposited and staked to specific pools
//
// Regarding virtualRewards: the idea is that the ratio of totalRewards/totalShare before the user increases share needs to equal (totalRewards+virtualRewards)/(totalShare+shareIncrease).
// Namely that the ratio of rewards to shares before and after needs to remain the same. It's akin to a liquidity pool where the two tokens are "rewards" and "shares". When a user want add shares they borrow the rewards needed to create the correct proportion of virtualRewards / addedShares.
// When rewards are added, it increases the value of the shares, in terms of the rewards.
// On claim, users pay back any "borrowed" rewards (the virtual rewards).

abstract contract StakingRewards is IStakingRewards, ReentrancyGuard
    {
	event UserShareIncreased(address indexed wallet, bytes32 indexed poolID, uint256 amountIncreased);
	event UserShareDecreased(address indexed wallet, bytes32 indexed poolID, uint256 amountDecreased, uint256 claimedRewards);
	event RewardsClaimed(address indexed wallet, uint256 claimedRewards);
	event ZeroRewardsAdded(bytes32 indexed poolID, uint256 amountAdded);

	using SafeERC20 for IZero;

	IZero immutable public zero;
	IExchangeConfig immutable public exchangeConfig;
    IStakingConfig immutable public stakingConfig;
    IPoolsConfig immutable public poolsConfig;

	// A nested mapping that stores the UserShareInfo data for each user and each poolID.
	mapping(address=>mapping(bytes32=>UserShareInfo)) private _userShareInfo;

    // A mapping that stores the total pending ZERO rewards for each poolID.
    mapping(bytes32=>uint256) public totalRewards;

    // A mapping that stores the total shares for each poolID.
    mapping(bytes32=>uint256) public totalShares;


	// Constructs a new StakingRewards contract with providing configs
 	constructor( IExchangeConfig _exchangeConfig, IPoolsConfig _poolsConfig, IStakingConfig _stakingConfig )
		{
		exchangeConfig = _exchangeConfig;
    	poolsConfig = _poolsConfig;
		stakingConfig = _stakingConfig;

		zero = _exchangeConfig.zero(); // cached for efficiency
        }


	// Increase a user's share for the given whitelisted pool.
	function _increaseUserShare( address wallet, bytes32 poolID, uint256 increaseShareAmount, bool useCooldown ) internal
		{
		require( poolsConfig.isWhitelisted( poolID ), "Invalid pool" );
		require( increaseShareAmount != 0, "Cannot increase zero share" );

		UserShareInfo storage user = _userShareInfo[wallet][poolID];

		if ( useCooldown )
		if ( msg.sender != address(exchangeConfig.dao()) ) // DAO doesn't use the cooldown
			{
			require( block.timestamp >= user.cooldownExpiration, "Must wait for the cooldown to expire" );

			// Update the cooldown expiration for future transactions
			user.cooldownExpiration = block.timestamp + stakingConfig.modificationCooldown();
			}

		uint256 existingTotalShares = totalShares[poolID];

		// Determine the amount of virtualRewards to add based on the current ratio of rewards/shares.
		// The ratio of virtualRewards/increaseShareAmount is the same as totalRewards/totalShares for the pool.
		// The virtual rewards will be deducted later when calculating the user's owed rewards.
        if ( existingTotalShares != 0 ) // prevent / 0
        	{
			// Round up in favor of the protocol.
			uint256 virtualRewardsToAdd = Math.ceilDiv( totalRewards[poolID] * increaseShareAmount, existingTotalShares );

			user.virtualRewards += virtualRewardsToAdd;
	        totalRewards[poolID] += virtualRewardsToAdd;
	        }

		// Update the deposit balances
		user.userShare += increaseShareAmount;
		totalShares[poolID] = existingTotalShares + increaseShareAmount;

		emit UserShareIncreased(wallet, poolID, increaseShareAmount);
		}


	// Decrease a user's share for the pool and have any pending rewards sent to them.
	// Does not require the pool to be valid (in case the pool was recently unwhitelisted).
	function _decreaseUserShare( address wallet, bytes32 poolID, uint256 decreaseShareAmount, bool useCooldown ) internal
		{
		require( decreaseShareAmount != 0, "Cannot decrease zero share" );

		UserShareInfo storage user = _userShareInfo[wallet][poolID];
		require( decreaseShareAmount <= user.userShare, "Cannot decrease more than existing user share" );

		if ( useCooldown )
		if ( msg.sender != address(exchangeConfig.dao()) ) // DAO doesn't use the cooldown
			{
			require( block.timestamp >= user.cooldownExpiration, "Must wait for the cooldown to expire" );

			// Update the cooldown expiration for future transactions
			user.cooldownExpiration = block.timestamp + stakingConfig.modificationCooldown();
			}

		// Determine the share of the rewards for the amountToDecrease (will include previously added virtual rewards)
		uint256 rewardsForAmount = ( totalRewards[poolID] * decreaseShareAmount ) / totalShares[poolID];

		// For the amountToDecrease determine the proportion of virtualRewards (proportional to all virtualRewards for the user)

		// Round virtualRewardsToRemoveFromClaimable up in favor of the protocol
		uint256 virtualRewardsToRemoveFromClaimable = Math.ceilDiv(user.virtualRewards * decreaseShareAmount,  user.userShare );

		// Round virtualRewardsToRemoveFromUserVirtRewards down in favor of the protocol
		uint256 virtualRewardsToRemoveFromUserVirtRewards = (user.virtualRewards * decreaseShareAmount) / user.userShare;

		// Update totals
		totalRewards[poolID] -= rewardsForAmount;
		totalShares[poolID] -= decreaseShareAmount;

		// Update the user's share and virtual rewards
		user.userShare -= decreaseShareAmount;
		user.virtualRewards -= virtualRewardsToRemoveFromUserVirtRewards;

		uint256 claimableRewards = 0;

		// Some of the rewardsForAmount are actually virtualRewards and can't be claimed.

		// In the event that virtualRewardsToRemoveFromClaimable are greater than actual rewards - claimableRewards will stay zero.
		if ( virtualRewardsToRemoveFromClaimable < rewardsForAmount )
			claimableRewards = rewardsForAmount - virtualRewardsToRemoveFromClaimable;

		// Send the claimable rewards
		if ( claimableRewards != 0 )
			zero.safeTransfer( wallet, claimableRewards );

		emit UserShareDecreased(wallet, poolID, decreaseShareAmount, claimableRewards);
		}


	// ===== PUBLIC FUNCTIONS =====

	// Claim all available ZERO rewards from multiple pools for the user.
	// The claimed rewards are added to the user's virtual rewards balance - so that they can't be claimed again later.
     function claimAllRewards( bytes32[] calldata poolIDs ) external nonReentrant returns (uint256 claimableRewards)
    	{
		mapping(bytes32=>UserShareInfo) storage userInfo = _userShareInfo[msg.sender];

		claimableRewards = 0;
		for( uint256 i = 0; i < poolIDs.length; i++ )
			{
			bytes32 poolID = poolIDs[i];

			uint256 pendingRewards = userRewardForPool( msg.sender, poolID );

			// Increase the virtualRewards balance for the user to account for them receiving the rewards without withdrawing
			userInfo[poolID].virtualRewards += pendingRewards;

			claimableRewards += pendingRewards;
			}

		if ( claimableRewards > 0 )
			{
			// Send the actual rewards
			zero.safeTransfer( msg.sender, claimableRewards );

			emit RewardsClaimed(msg.sender, claimableRewards);
			}
    	}


	// Adds ZERO token rewards for specific whitelisted pools.
	// There is some risk of addZERORewards being frontrun to hunt rewards, but there are multiple mechanisms in place to prevent this from being effective.
	// 1. There is a cooldown period of default one hour before shares can be withdrawn once deposited.
	// 2. Staked ZERO tokens have a default unstake period of 52 weeks.
	// 3. Rewards are first placed into a RewardsEmitter which deposits rewards via addZERORewards at the default rate of 1% per day.
	// 4. Rewards are deposited fairly often, with outstanding rewards being transferred with a frequency proportional to the activity of the exchange.
	// Example: if $100k rewards were being deposited in a bulk transaction, it would only equate to $1000 (1%) the first day,
	// or $10 in claimable rewards during a 15 minute upkeep period.
 	function addZERORewards( AddedReward[] calldata addedRewards ) external nonReentrant
		{
		uint256 sum = 0;
		for( uint256 i = 0; i < addedRewards.length; i++ )
			{
			AddedReward memory addedReward = addedRewards[i];

			bytes32 poolID = addedReward.poolID;
			require( poolsConfig.isWhitelisted( poolID ), "Invalid pool" );

			uint256 amountToAdd = addedReward.amountToAdd;

			totalRewards[ poolID ] += amountToAdd;
			sum = sum + amountToAdd;

			emit ZeroRewardsAdded(poolID, amountToAdd);
			}

		// Transfer in the ZERO tokens for all the specified rewards
		if ( sum > 0 )
			{
			// Transfer the ZERO token rewards from the sender
			zero.safeTransferFrom( msg.sender, address(this), sum );
			}
		}


	// === VIEWS ===

	// Returns the total shares for specified pools.
	function totalSharesForPools( bytes32[] calldata poolIDs ) external view returns (uint256[] memory shares)
		{
		shares = new uint256[]( poolIDs.length );

		for( uint256 i = 0; i < shares.length; i++ )
			shares[i] = totalShares[ poolIDs[i] ];
		}


	// Returns the total rewards for specified pools.
	function totalRewardsForPools( bytes32[] calldata poolIDs ) external view returns (uint256[] memory rewards)
		{
		rewards = new uint256[]( poolIDs.length );

		for( uint256 i = 0; i < rewards.length; i++ )
			rewards[i] = totalRewards[ poolIDs[i] ];
		}


	// Returns the user's pending rewards for a specified pool.
	function userRewardForPool( address wallet, bytes32 poolID ) public view returns (uint256)
		{
		// If there are no shares for the pool, the user can't have any shares either and there can't be any rewards
		if ( totalShares[poolID] == 0 )
			return 0;

		UserShareInfo memory user = _userShareInfo[wallet][poolID];
		if ( user.userShare == 0 )
			return 0;

		// Determine the share of the rewards for the user based on their deposited share
		uint256 rewardsShare = ( totalRewards[poolID] * user.userShare ) / totalShares[poolID];

		// Reduce by the virtualRewards - as they were only added to keep the share / rewards ratio the same when the used added their share

		// In the event that virtualRewards exceeds rewardsShare due to precision loss - just return zero
		if ( user.virtualRewards > rewardsShare )
			return 0;

		return rewardsShare - user.virtualRewards;
		}


	// Returns the user's pending rewards for specified pools.
	function userRewardsForPools( address wallet, bytes32[] calldata poolIDs ) external view returns (uint256[] memory rewards)
		{
		rewards = new uint256[]( poolIDs.length );

		for( uint256 i = 0; i < rewards.length; i++ )
			rewards[i] = userRewardForPool( wallet, poolIDs[i] );
		}


	// Get the user's shares for a specified pool.
	function userShareForPool( address wallet, bytes32 poolID ) public view returns (uint256)
		{
		return _userShareInfo[wallet][poolID].userShare;
		}


	// Get the user's shares for specified pools.
	function userShareForPools( address wallet, bytes32[] calldata poolIDs ) external view returns (uint256[] memory shares)
		{
		shares = new uint256[]( poolIDs.length );

		for( uint256 i = 0; i < shares.length; i++ )
			shares[i] = _userShareInfo[wallet][ poolIDs[i] ].userShare;
		}


	// Get the user's virtual rewards for a specified pool.
	function userVirtualRewardsForPool( address wallet, bytes32 poolID ) public view returns (uint256)
		{
		return _userShareInfo[wallet][poolID].virtualRewards;
		}


	// Get the cooldown time remaining for the user for specified pools.
	function userCooldowns( address wallet, bytes32[] calldata poolIDs ) external view returns (uint256[] memory cooldowns)
		{
		cooldowns = new uint256[]( poolIDs.length );

		mapping(bytes32=>UserShareInfo) storage userInfo = _userShareInfo[wallet];

		for( uint256 i = 0; i < cooldowns.length; i++ )
			{
			uint256 cooldownExpiration = userInfo[ poolIDs[i] ].cooldownExpiration;

			if ( block.timestamp >= cooldownExpiration )
				cooldowns[i] = 0;
			else
				cooldowns[i] = cooldownExpiration - block.timestamp;
			}
		}
	}

File 9 of 29 : PoolMath.sol
pragma solidity =0.8.22;

import "openzeppelin-contracts/contracts/utils/math/Math.sol";
import "./PoolUtils.sol";

/*
	=== DERIVATION ===
	// User will zap z0 of token0 and z1 of token1 into the pool
    // Initial reserves: r0 and r1
    // Assuming z0 in excess, determine how much z0 should be swapped to z1 first so that the resulting z0/z1 matches the resulting post-swap reserves ratio so that liquidity can be added with minimal leftover.

    // Initial k
    k = r0 * r1

    // Swap s0 of token0 for s1 of token1
    s1 = r1 - k / (r0 + s0)

    // Substituting k
    s1 = r1 - r0 * r1 / (r0 + s0)

    // Updated reserves ratio after swap
    (r0 + s0) / ( r1 - s1)

    // Adjusted addLiquidity zap amounts after the swap
    a0 = z0 - s0
    a1 = z1 + s1

    // Adjusted addLiquidity amounts need to have the token ratio of the current reserves
    a0 / a1 = (r0 + s0) / ( r1 - s1)

    // Substitute in a0 and a1 from above
    (z0 - s0) / ( z1 + s1) = (r0 + s0) / ( r1 - s1)

    // Substitute
    x = s0         y = s1
    a = r0         b = r1
    c = z0         d = z1

    (c-x)/(d+y) = (a+x)/(b-y)

    // From s1 = r1 - r0 * r1 / (r0 + s0)
    y = b - ab/(a+x)

    // Solve for x
    (c-x)/(d+y) = (a+x)/(b-y)

    // Cross multiply
    (c-x)(b-y) = (a+x)(d+y)

    // Multiply binomials on both sides
    bc - cy - bx + xy = ad + ay + dx + xy

    // Cancel xy both sides
    bc - cy - bx = ad + ay + dx

    // Multiply both sides by -1
    - bc + cy + bx = - ad - ay - dx

    // Gather x and y on the left
    bx + dx + ay + cy = bc - ad

    // Factor x and y
    x(b+d) + y(a+c) = bc - ad

    // Substitute y = b - ab/(a+x)
    x(b+d) + b(a+c) - ab(a+c)/(a+x) = bc - ad

    // Multiply by (a+x)
    x(b+d)(a+x) + b(a+c)(a+x) - ab(a+c) = (bc - ad)(a+x)

    // Multiply all binomials
    x(ab+bx+ad+dx) + b(aa+ax+ac+cx) - aab - abc = abc+bcx-aad-adx

    // Distribute x and b
    abx+bxx+adx+dxx + aab+abx+abc+bcx - aab - abc = abc+bcx-aad-adx

    // Cancel abc (on left), bcx, aab
    abx + bxx + adx + dxx + abx = abc - aad - adx

    // Gather x on the left
    bxx + dxx + abx + abx + adx + adx = abc - aad

    // Factor xx and x
    xx(b+d) + x(2ab + 2ad) = abc - aad

    // Quadratic equation
    xx(b+d) + x(2ab + 2ad) + (aad-abc) = 0

    // Factor out 2a
    xx(b+d) + x(2a)(b+d) + (aad-abc) = 0

    // Divide by (b+d)
    xx + x(2a) + (aad-abc)/(b+d) = 0

    xxA + xB + C = 0

    A = 1
    B = 2a
    C = a(ad - bc)/(b+d)

    // Substitute back
    a = r0         b = r1
    c = z0         d = z1

    A = 1
    B = 2r0
    C = r0(r0z1 - r1z0)/(r1 + z1)

    x = [-B + sqrt(B^2 - 4AC)] / 2A
*/

library PoolMath
	{
	// Given initial reserves, and that the user wants to zap specified token amounts into the pool as liquidity,
	// determine how much of token0 needs to be swapped to token1 such that the liquidity added has the same proportion as the reserves in the pool after that swap.
	// Assumes that token0 is in excess (in regards to the current reserve ratio).
    function _zapSwapAmount( uint256 r0, uint256 r1, uint256 z0, uint256 z1 ) internal pure returns (uint256 swapAmount)
    	{
		// In order to swap and zap, require that the reduced reserves and one of the zapAmounts exceed DUST.
        if ( r0 < PoolUtils.DUST)
        	return 0;

        if ( r1 < PoolUtils.DUST)
        	return 0;

        if ( z0 < PoolUtils.DUST)
        if ( z1 < PoolUtils.DUST)
        	return 0;

        // Components of the quadratic formula mentioned in the initial comment block: x = [-B + sqrt(B^2 - 4AC)] / 2A
		uint256 A = 1;
        uint256 B = 2 * r0;

		// Here for reference
//        uint256 C = r0 * ( r0 * z1 - r1 * z0 ) / ( r1 + z1 );
//        uint256 discriminant = B * B - 4 * A * C;

		// Negate C (from above) and add instead of subtract.
		// r1 * z0 guaranteed to be greater than r0 * z1 per the conditional check in _determineZapSwapAmount
		// Divide by (r1 + z1) before multiplying by r0 to keep the max value within uint256
        uint256 C = r0 * ( ( r1 * z0 - r0 * z1 ) / ( r1 + z1 ) );
        uint256 discriminant = B * B + 4 * A * C;

        // Compute the square root of the discriminant.
        uint256 sqrtDiscriminant = Math.sqrt(discriminant);

		// Safety check: make sure B is not greater than sqrtDiscriminant
		if ( B > sqrtDiscriminant )
			return 0;

        // Only use the positive sqrt of the discriminant from: x = (-B +/- sqrtDiscriminant) / 2A
		swapAmount = ( sqrtDiscriminant - B ) / ( 2 * A );
    	}


	// Determine how much of either token needs to be swapped to give them a ratio equivalent to the reserves.
	// If (0,0) is returned it signifies that no swap should be done before the addLiquidity.
	function _determineZapSwapAmount( uint256 reserveA, uint256 reserveB, uint256 zapAmountA, uint256 zapAmountB ) internal pure returns (uint256 swapAmountA, uint256 swapAmountB )
		{
		// zapAmountA / zapAmountB exceeds the ratio of reserveA / reserveB? - meaning too much zapAmountA
		if ( zapAmountA * reserveB > reserveA * zapAmountB )
			(swapAmountA, swapAmountB) = (_zapSwapAmount( reserveA, reserveB, zapAmountA, zapAmountB ), 0);

		// zapAmountA / zapAmountB is less than the ratio of reserveA / reserveB? - meaning too much zapAmountB
		if ( zapAmountA * reserveB < reserveA * zapAmountB )
			(swapAmountA, swapAmountB) = (0, _zapSwapAmount( reserveB, reserveA, zapAmountB, zapAmountA ));

		// Ensure we are not swapping more than was specified for zapping
		if ( ( swapAmountA > zapAmountA ) || ( swapAmountB > zapAmountB ) )
			return (0, 0);

		return (swapAmountA, swapAmountB);
		}
	}

File 10 of 29 : PoolUtils.sol
pragma solidity =0.8.22;

import "openzeppelin-contracts/contracts/token/ERC20/IERC20.sol";


library PoolUtils
	{
	// Token reserves less than dust are treated as if they don't exist at all.
	// With the 18 decimals that are used for most tokens, DUST has a value of 0.0000000000000001
	uint256 constant public DUST = 100;

	// A special pool that represents staked ZERO tokens that are not associated with any actual liquidity pool.
    bytes32 constant public STAKED_ZERO = bytes32(0);


    // Return the unique poolID for the given two tokens.
    // Tokens are sorted before being hashed to make reversed pairs equivalent.
    function _poolID( IERC20 tokenA, IERC20 tokenB ) internal pure returns (bytes32 poolID)
    	{
        // See if the token orders are flipped
        if ( uint160(address(tokenB)) < uint160(address(tokenA)) )
            return keccak256(abi.encodePacked(address(tokenB), address(tokenA)));

        return keccak256(abi.encodePacked(address(tokenA), address(tokenB)));
    	}


    // Return the unique poolID and whether or not it is flipped
    function _poolIDAndFlipped( IERC20 tokenA, IERC20 tokenB ) internal pure returns (bytes32 poolID, bool flipped)
    	{
        // See if the token orders are flipped
        if ( uint160(address(tokenB)) < uint160(address(tokenA)) )
            return (keccak256(abi.encodePacked(address(tokenB), address(tokenA))), true);

        return (keccak256(abi.encodePacked(address(tokenA), address(tokenB))), false);
    	}
	}

File 11 of 29 : IERC20.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.9.0) (token/ERC20/IERC20.sol)

pragma solidity ^0.8.0;

/**
 * @dev Interface of the ERC20 standard as defined in the EIP.
 */
interface IERC20 {
    /**
     * @dev Emitted when `value` tokens are moved from one account (`from`) to
     * another (`to`).
     *
     * Note that `value` may be zero.
     */
    event Transfer(address indexed from, address indexed to, uint256 value);

    /**
     * @dev Emitted when the allowance of a `spender` for an `owner` is set by
     * a call to {approve}. `value` is the new allowance.
     */
    event Approval(address indexed owner, address indexed spender, uint256 value);

    /**
     * @dev Returns the amount of tokens in existence.
     */
    function totalSupply() external view returns (uint256);

    /**
     * @dev Returns the amount of tokens owned by `account`.
     */
    function balanceOf(address account) external view returns (uint256);

    /**
     * @dev Moves `amount` tokens from the caller's account to `to`.
     *
     * Returns a boolean value indicating whether the operation succeeded.
     *
     * Emits a {Transfer} event.
     */
    function transfer(address to, uint256 amount) external returns (bool);

    /**
     * @dev Returns the remaining number of tokens that `spender` will be
     * allowed to spend on behalf of `owner` through {transferFrom}. This is
     * zero by default.
     *
     * This value changes when {approve} or {transferFrom} are called.
     */
    function allowance(address owner, address spender) external view returns (uint256);

    /**
     * @dev Sets `amount` as the allowance of `spender` over the caller's tokens.
     *
     * Returns a boolean value indicating whether the operation succeeded.
     *
     * IMPORTANT: Beware that changing an allowance with this method brings the risk
     * that someone may use both the old and the new allowance by unfortunate
     * transaction ordering. One possible solution to mitigate this race
     * condition is to first reduce the spender's allowance to 0 and set the
     * desired value afterwards:
     * https://github.com/ethereum/EIPs/issues/20#issuecomment-263524729
     *
     * Emits an {Approval} event.
     */
    function approve(address spender, uint256 amount) external returns (bool);

    /**
     * @dev Moves `amount` tokens from `from` to `to` using the
     * allowance mechanism. `amount` is then deducted from the caller's
     * allowance.
     *
     * Returns a boolean value indicating whether the operation succeeded.
     *
     * Emits a {Transfer} event.
     */
    function transferFrom(address from, address to, uint256 amount) external returns (bool);
}

File 12 of 29 : IERC20Permit.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.9.0) (token/ERC20/extensions/IERC20Permit.sol)

pragma solidity ^0.8.0;

/**
 * @dev Interface of the ERC20 Permit extension allowing approvals to be made via signatures, as defined in
 * https://eips.ethereum.org/EIPS/eip-2612[EIP-2612].
 *
 * Adds the {permit} method, which can be used to change an account's ERC20 allowance (see {IERC20-allowance}) by
 * presenting a message signed by the account. By not relying on {IERC20-approve}, the token holder account doesn't
 * need to send a transaction, and thus is not required to hold Ether at all.
 */
interface IERC20Permit {
    /**
     * @dev Sets `value` as the allowance of `spender` over ``owner``'s tokens,
     * given ``owner``'s signed approval.
     *
     * IMPORTANT: The same issues {IERC20-approve} has related to transaction
     * ordering also apply here.
     *
     * Emits an {Approval} event.
     *
     * Requirements:
     *
     * - `spender` cannot be the zero address.
     * - `deadline` must be a timestamp in the future.
     * - `v`, `r` and `s` must be a valid `secp256k1` signature from `owner`
     * over the EIP712-formatted function arguments.
     * - the signature must use ``owner``'s current nonce (see {nonces}).
     *
     * For more information on the signature format, see the
     * https://eips.ethereum.org/EIPS/eip-2612#specification[relevant EIP
     * section].
     */
    function permit(
        address owner,
        address spender,
        uint256 value,
        uint256 deadline,
        uint8 v,
        bytes32 r,
        bytes32 s
    ) external;

    /**
     * @dev Returns the current nonce for `owner`. This value must be
     * included whenever a signature is generated for {permit}.
     *
     * Every successful call to {permit} increases ``owner``'s nonce by one. This
     * prevents a signature from being used multiple times.
     */
    function nonces(address owner) external view returns (uint256);

    /**
     * @dev Returns the domain separator used in the encoding of the signature for {permit}, as defined by {EIP712}.
     */
    // solhint-disable-next-line func-name-mixedcase
    function DOMAIN_SEPARATOR() external view returns (bytes32);
}

File 13 of 29 : Address.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.9.0) (utils/Address.sol)

pragma solidity ^0.8.1;

/**
 * @dev Collection of functions related to the address type
 */
library Address {
    /**
     * @dev Returns true if `account` is a contract.
     *
     * [IMPORTANT]
     * ====
     * It is unsafe to assume that an address for which this function returns
     * false is an externally-owned account (EOA) and not a contract.
     *
     * Among others, `isContract` will return false for the following
     * types of addresses:
     *
     *  - an externally-owned account
     *  - a contract in construction
     *  - an address where a contract will be created
     *  - an address where a contract lived, but was destroyed
     *
     * Furthermore, `isContract` will also return true if the target contract within
     * the same transaction is already scheduled for destruction by `SELFDESTRUCT`,
     * which only has an effect at the end of a transaction.
     * ====
     *
     * [IMPORTANT]
     * ====
     * You shouldn't rely on `isContract` to protect against flash loan attacks!
     *
     * Preventing calls from contracts is highly discouraged. It breaks composability, breaks support for smart wallets
     * like Gnosis Safe, and does not provide security since it can be circumvented by calling from a contract
     * constructor.
     * ====
     */
    function isContract(address account) internal view returns (bool) {
        // This method relies on extcodesize/address.code.length, which returns 0
        // for contracts in construction, since the code is only stored at the end
        // of the constructor execution.

        return account.code.length > 0;
    }

    /**
     * @dev Replacement for Solidity's `transfer`: sends `amount` wei to
     * `recipient`, forwarding all available gas and reverting on errors.
     *
     * https://eips.ethereum.org/EIPS/eip-1884[EIP1884] increases the gas cost
     * of certain opcodes, possibly making contracts go over the 2300 gas limit
     * imposed by `transfer`, making them unable to receive funds via
     * `transfer`. {sendValue} removes this limitation.
     *
     * https://consensys.net/diligence/blog/2019/09/stop-using-soliditys-transfer-now/[Learn more].
     *
     * IMPORTANT: because control is transferred to `recipient`, care must be
     * taken to not create reentrancy vulnerabilities. Consider using
     * {ReentrancyGuard} or the
     * https://solidity.readthedocs.io/en/v0.8.0/security-considerations.html#use-the-checks-effects-interactions-pattern[checks-effects-interactions pattern].
     */
    function sendValue(address payable recipient, uint256 amount) internal {
        require(address(this).balance >= amount, "Address: insufficient balance");

        (bool success, ) = recipient.call{value: amount}("");
        require(success, "Address: unable to send value, recipient may have reverted");
    }

    /**
     * @dev Performs a Solidity function call using a low level `call`. A
     * plain `call` is an unsafe replacement for a function call: use this
     * function instead.
     *
     * If `target` reverts with a revert reason, it is bubbled up by this
     * function (like regular Solidity function calls).
     *
     * Returns the raw returned data. To convert to the expected return value,
     * use https://solidity.readthedocs.io/en/latest/units-and-global-variables.html?highlight=abi.decode#abi-encoding-and-decoding-functions[`abi.decode`].
     *
     * Requirements:
     *
     * - `target` must be a contract.
     * - calling `target` with `data` must not revert.
     *
     * _Available since v3.1._
     */
    function functionCall(address target, bytes memory data) internal returns (bytes memory) {
        return functionCallWithValue(target, data, 0, "Address: low-level call failed");
    }

    /**
     * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], but with
     * `errorMessage` as a fallback revert reason when `target` reverts.
     *
     * _Available since v3.1._
     */
    function functionCall(
        address target,
        bytes memory data,
        string memory errorMessage
    ) internal returns (bytes memory) {
        return functionCallWithValue(target, data, 0, errorMessage);
    }

    /**
     * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`],
     * but also transferring `value` wei to `target`.
     *
     * Requirements:
     *
     * - the calling contract must have an ETH balance of at least `value`.
     * - the called Solidity function must be `payable`.
     *
     * _Available since v3.1._
     */
    function functionCallWithValue(address target, bytes memory data, uint256 value) internal returns (bytes memory) {
        return functionCallWithValue(target, data, value, "Address: low-level call with value failed");
    }

    /**
     * @dev Same as {xref-Address-functionCallWithValue-address-bytes-uint256-}[`functionCallWithValue`], but
     * with `errorMessage` as a fallback revert reason when `target` reverts.
     *
     * _Available since v3.1._
     */
    function functionCallWithValue(
        address target,
        bytes memory data,
        uint256 value,
        string memory errorMessage
    ) internal returns (bytes memory) {
        require(address(this).balance >= value, "Address: insufficient balance for call");
        (bool success, bytes memory returndata) = target.call{value: value}(data);
        return verifyCallResultFromTarget(target, success, returndata, errorMessage);
    }

    /**
     * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`],
     * but performing a static call.
     *
     * _Available since v3.3._
     */
    function functionStaticCall(address target, bytes memory data) internal view returns (bytes memory) {
        return functionStaticCall(target, data, "Address: low-level static call failed");
    }

    /**
     * @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`],
     * but performing a static call.
     *
     * _Available since v3.3._
     */
    function functionStaticCall(
        address target,
        bytes memory data,
        string memory errorMessage
    ) internal view returns (bytes memory) {
        (bool success, bytes memory returndata) = target.staticcall(data);
        return verifyCallResultFromTarget(target, success, returndata, errorMessage);
    }

    /**
     * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`],
     * but performing a delegate call.
     *
     * _Available since v3.4._
     */
    function functionDelegateCall(address target, bytes memory data) internal returns (bytes memory) {
        return functionDelegateCall(target, data, "Address: low-level delegate call failed");
    }

    /**
     * @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`],
     * but performing a delegate call.
     *
     * _Available since v3.4._
     */
    function functionDelegateCall(
        address target,
        bytes memory data,
        string memory errorMessage
    ) internal returns (bytes memory) {
        (bool success, bytes memory returndata) = target.delegatecall(data);
        return verifyCallResultFromTarget(target, success, returndata, errorMessage);
    }

    /**
     * @dev Tool to verify that a low level call to smart-contract was successful, and revert (either by bubbling
     * the revert reason or using the provided one) in case of unsuccessful call or if target was not a contract.
     *
     * _Available since v4.8._
     */
    function verifyCallResultFromTarget(
        address target,
        bool success,
        bytes memory returndata,
        string memory errorMessage
    ) internal view returns (bytes memory) {
        if (success) {
            if (returndata.length == 0) {
                // only check isContract if the call was successful and the return data is empty
                // otherwise we already know that it was a contract
                require(isContract(target), "Address: call to non-contract");
            }
            return returndata;
        } else {
            _revert(returndata, errorMessage);
        }
    }

    /**
     * @dev Tool to verify that a low level call was successful, and revert if it wasn't, either by bubbling the
     * revert reason or using the provided one.
     *
     * _Available since v4.3._
     */
    function verifyCallResult(
        bool success,
        bytes memory returndata,
        string memory errorMessage
    ) internal pure returns (bytes memory) {
        if (success) {
            return returndata;
        } else {
            _revert(returndata, errorMessage);
        }
    }

    function _revert(bytes memory returndata, string memory errorMessage) private pure {
        // Look for revert reason and bubble it up if present
        if (returndata.length > 0) {
            // The easiest way to bubble the revert reason is using memory via assembly
            /// @solidity memory-safe-assembly
            assembly {
                let returndata_size := mload(returndata)
                revert(add(32, returndata), returndata_size)
            }
        } else {
            revert(errorMessage);
        }
    }
}

File 14 of 29 : VestingWallet.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.9.0) (finance/VestingWallet.sol)
pragma solidity ^0.8.0;

import "../token/ERC20/utils/SafeERC20.sol";
import "../utils/Address.sol";
import "../utils/Context.sol";

/**
 * @title VestingWallet
 * @dev This contract handles the vesting of Eth and ERC20 tokens for a given beneficiary. Custody of multiple tokens
 * can be given to this contract, which will release the token to the beneficiary following a given vesting schedule.
 * The vesting schedule is customizable through the {vestedAmount} function.
 *
 * Any token transferred to this contract will follow the vesting schedule as if they were locked from the beginning.
 * Consequently, if the vesting has already started, any amount of tokens sent to this contract will (at least partly)
 * be immediately releasable.
 */
contract VestingWallet is Context {
    event EtherReleased(uint256 amount);
    event ERC20Released(address indexed token, uint256 amount);

    uint256 private _released;
    mapping(address => uint256) private _erc20Released;
    address private immutable _beneficiary;
    uint64 private immutable _start;
    uint64 private immutable _duration;

    /**
     * @dev Set the beneficiary, start timestamp and vesting duration of the vesting wallet.
     */
    constructor(address beneficiaryAddress, uint64 startTimestamp, uint64 durationSeconds) payable {
        require(beneficiaryAddress != address(0), "VestingWallet: beneficiary is zero address");
        _beneficiary = beneficiaryAddress;
        _start = startTimestamp;
        _duration = durationSeconds;
    }

    /**
     * @dev The contract should be able to receive Eth.
     */
    receive() external payable virtual {}

    /**
     * @dev Getter for the beneficiary address.
     */
    function beneficiary() public view virtual returns (address) {
        return _beneficiary;
    }

    /**
     * @dev Getter for the start timestamp.
     */
    function start() public view virtual returns (uint256) {
        return _start;
    }

    /**
     * @dev Getter for the vesting duration.
     */
    function duration() public view virtual returns (uint256) {
        return _duration;
    }

    /**
     * @dev Amount of eth already released
     */
    function released() public view virtual returns (uint256) {
        return _released;
    }

    /**
     * @dev Amount of token already released
     */
    function released(address token) public view virtual returns (uint256) {
        return _erc20Released[token];
    }

    /**
     * @dev Getter for the amount of releasable eth.
     */
    function releasable() public view virtual returns (uint256) {
        return vestedAmount(uint64(block.timestamp)) - released();
    }

    /**
     * @dev Getter for the amount of releasable `token` tokens. `token` should be the address of an
     * IERC20 contract.
     */
    function releasable(address token) public view virtual returns (uint256) {
        return vestedAmount(token, uint64(block.timestamp)) - released(token);
    }

    /**
     * @dev Release the native token (ether) that have already vested.
     *
     * Emits a {EtherReleased} event.
     */
    function release() public virtual {
        uint256 amount = releasable();
        _released += amount;
        emit EtherReleased(amount);
        Address.sendValue(payable(beneficiary()), amount);
    }

    /**
     * @dev Release the tokens that have already vested.
     *
     * Emits a {ERC20Released} event.
     */
    function release(address token) public virtual {
        uint256 amount = releasable(token);
        _erc20Released[token] += amount;
        emit ERC20Released(token, amount);
        SafeERC20.safeTransfer(IERC20(token), beneficiary(), amount);
    }

    /**
     * @dev Calculates the amount of ether that has already vested. Default implementation is a linear vesting curve.
     */
    function vestedAmount(uint64 timestamp) public view virtual returns (uint256) {
        return _vestingSchedule(address(this).balance + released(), timestamp);
    }

    /**
     * @dev Calculates the amount of tokens that has already vested. Default implementation is a linear vesting curve.
     */
    function vestedAmount(address token, uint64 timestamp) public view virtual returns (uint256) {
        return _vestingSchedule(IERC20(token).balanceOf(address(this)) + released(token), timestamp);
    }

    /**
     * @dev Virtual implementation of the vesting formula. This returns the amount vested, as a function of time, for
     * an asset given its total historical allocation.
     */
    function _vestingSchedule(uint256 totalAllocation, uint64 timestamp) internal view virtual returns (uint256) {
        if (timestamp < start()) {
            return 0;
        } else if (timestamp > start() + duration()) {
            return totalAllocation;
        } else {
            return (totalAllocation * (timestamp - start())) / duration();
        }
    }
}

File 15 of 29 : IInitialDistribution.sol
// SPDX-License-Identifier: BUSL 1.1
pragma solidity =0.8.22;

import "./IBootstrapBallot.sol";
import "./IAirdrop.sol";


interface IInitialDistribution
	{
	function distributionApproved( IAirdrop airdrop1, IAirdrop airdrop2 ) external;

	// Views
	function bootstrapBallot() external view returns (IBootstrapBallot);
	}

File 16 of 29 : IRewardsEmitter.sol
// SPDX-License-Identifier: BUSL 1.1
pragma solidity =0.8.22;

import "../../staking/interfaces/IStakingRewards.sol";


interface IRewardsEmitter
	{
	function addZERORewards( AddedReward[] calldata addedRewards ) external;
	function performUpkeep( uint256 timeSinceLastUpkeep ) external;

	// Views
	function pendingRewardsForPools( bytes32[] calldata pools ) external view returns (uint256[] calldata);
	}

File 17 of 29 : IZeroRewards.sol
// SPDX-License-Identifier: BUSL 1.1
pragma solidity =0.8.22;

import "./IRewardsEmitter.sol";


interface IZeroRewards
	{
	function sendInitialZERORewards( uint256 liquidityBootstrapAmount, bytes32[] calldata poolIDs ) external;
    function performUpkeep( bytes32[] calldata poolIDs, uint256[] calldata profitsForPools ) external;

    // Views
    function stakingRewardsEmitter() external view returns (IRewardsEmitter);
    function liquidityRewardsEmitter() external view returns (IRewardsEmitter);
    }

File 18 of 29 : IEmissions.sol
// SPDX-License-Identifier: BUSL 1.1
pragma solidity =0.8.22;


interface IEmissions
	{
	function performUpkeep( uint256 timeSinceLastUpkeep ) external;
    }

File 19 of 29 : IAccessManager.sol
// SPDX-License-Identifier: BUSL 1.1
pragma solidity =0.8.22;


interface IAccessManager
	{
	function excludedCountriesUpdated() external;
	function grantAccess(bytes calldata signature) external;

	// Views
	function geoVersion() external view returns (uint256);
	function walletHasAccess(address wallet) external view returns (bool);
	}

File 20 of 29 : IAirdrop.sol
// SPDX-License-Identifier: BUSL 1.1
pragma solidity =0.8.22;


interface IAirdrop
	{
	function authorizeWallet( address wallet, uint256 zeroAmount ) external;
	function allowClaiming() external;
	function claim() external;

	// Views
	function claimedByUser( address wallet) external view returns (uint256);
	function claimingAllowed() external view returns (bool);
	function claimingStartTimestamp() external view returns (uint256);
	function claimableAmount(address wallet) external view returns (uint256);
    function airdropForUser( address wallet ) external view returns (uint256);
	}

File 21 of 29 : IDAO.sol
// SPDX-License-Identifier: BUSL 1.1
pragma solidity =0.8.22;

import "../../rewards/interfaces/IZeroRewards.sol";
import "../../pools/interfaces/IPools.sol";
import "../../interfaces/IZero.sol";

interface IDAO
	{
	function finalizeBallot( uint256 ballotID ) external;
	function manuallyRemoveBallot( uint256 ballotID ) external;

	function withdrawFromDAO( IERC20 token ) external returns (uint256 withdrawnAmount);

	// Views
	function pools() external view returns (IPools);
	function websiteURL() external view returns (string memory);
	function countryIsExcluded( string calldata country ) external view returns (bool);
	}

File 22 of 29 : IZero.sol
// SPDX-License-Identifier: BUSL 1.1
pragma solidity =0.8.22;

import "openzeppelin-contracts/contracts/token/ERC20/IERC20.sol";


interface IZero is IERC20
	{
	function burnTokensInContract() external;

	// Views
	function totalBurned() external view returns (uint256);
	}

File 23 of 29 : IUpkeep.sol
// SPDX-License-Identifier: BUSL 1.1
pragma solidity =0.8.22;


interface IUpkeep
	{
	function performUpkeep() external;

	// Views
	function currentRewardsForCallingPerformUpkeep() external view returns (uint256);
	function lastUpkeepTimeEmissions() external view returns (uint256);
	function lastUpkeepTimeRewardsEmitters() external view returns (uint256);
	}

File 24 of 29 : IPoolStats.sol
// SPDX-License-Identifier: BUSL 1.1
pragma solidity =0.8.22;


interface IPoolStats
	{
	// These are the indicies (in terms of a poolIDs location in the current whitelistedPoolIDs array) of pools involved in an arbitrage path
	struct ArbitrageIndicies
		{
		uint64 index1;
		uint64 index2;
		uint64 index3;
		}

	function clearProfitsForPools() external;
	function updateArbitrageIndicies() external;

	// Views
	function profitsForWhitelistedPools() external view returns (uint256[] memory _calculatedProfits);
	function arbitrageIndicies(bytes32 poolID) external view returns (ArbitrageIndicies memory);
	}

File 25 of 29 : IStakingRewards.sol
// SPDX-License-Identifier: BUSL 1.1
pragma solidity =0.8.22;


struct AddedReward
	{
	bytes32 poolID;							// The pool to add rewards to
	uint256 amountToAdd;				// The amount of rewards (as ZERO) to add
	}

struct UserShareInfo
	{
	uint256 userShare;					// A user's share for a given poolID
	uint256 virtualRewards;				// The amount of rewards that were added to maintain proper rewards/share ratio - and will be deducted from a user's pending rewards.
	uint256 cooldownExpiration;		// The timestamp when the user can modify their share
	}


interface IStakingRewards
	{
	function claimAllRewards( bytes32[] calldata poolIDs ) external returns (uint256 rewardsAmount);
	function addZERORewards( AddedReward[] calldata addedRewards ) external;

	// Views
	function totalShares(bytes32 poolID) external view returns (uint256);
	function totalSharesForPools( bytes32[] calldata poolIDs ) external view returns (uint256[] calldata shares);
	function totalRewardsForPools( bytes32[] calldata poolIDs ) external view returns (uint256[] calldata rewards);

	function userRewardForPool( address wallet, bytes32 poolID ) external view returns (uint256);
	function userShareForPool( address wallet, bytes32 poolID ) external view returns (uint256);
	function userVirtualRewardsForPool( address wallet, bytes32 poolID ) external view returns (uint256);

	function userRewardsForPools( address wallet, bytes32[] calldata poolIDs ) external view returns (uint256[] calldata rewards);
	function userShareForPools( address wallet, bytes32[] calldata poolIDs ) external view returns (uint256[] calldata shares);
	function userCooldowns( address wallet, bytes32[] calldata poolIDs ) external view returns (uint256[] calldata cooldowns);
	}

File 26 of 29 : ReentrancyGuard.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.9.0) (security/ReentrancyGuard.sol)

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 applied to functions to make sure there are no nested
 * (reentrant) calls to them.
 *
 * Note that because there is a single `nonReentrant` guard, functions marked as
 * `nonReentrant` may not call one another. This can be worked around by making
 * those functions `private`, and then adding `external` `nonReentrant` entry
 * points to them.
 *
 * TIP: If you would like to learn more about reentrancy and alternative ways
 * to protect against it, check out our blog post
 * https://blog.openzeppelin.com/reentrancy-after-istanbul/[Reentrancy After Istanbul].
 */
abstract contract ReentrancyGuard {
    // Booleans are more expensive than uint256 or any type that takes up a full
    // word because each write operation emits an extra SLOAD to first read the
    // slot's contents, replace the bits taken up by the boolean, and then write
    // back. This is the compiler's defense against contract upgrades and
    // pointer aliasing, and it cannot be disabled.

    // The values being non-zero value makes deployment a bit more expensive,
    // but in exchange the refund on every call to nonReentrant will be lower in
    // amount. Since refunds are capped to a percentage of the total
    // transaction's gas, it is best to keep them low in cases like this one, to
    // increase the likelihood of the full refund coming into effect.
    uint256 private constant _NOT_ENTERED = 1;
    uint256 private constant _ENTERED = 2;

    uint256 private _status;

    constructor() {
        _status = _NOT_ENTERED;
    }

    /**
     * @dev Prevents a contract from calling itself, directly or indirectly.
     * Calling a `nonReentrant` function from another `nonReentrant`
     * function is not supported. It is possible to prevent this from happening
     * by making the `nonReentrant` function external, and making it call a
     * `private` function that does the actual work.
     */
    modifier nonReentrant() {
        _nonReentrantBefore();
        _;
        _nonReentrantAfter();
    }

    function _nonReentrantBefore() private {
        // On the first call to nonReentrant, _status will be _NOT_ENTERED
        require(_status != _ENTERED, "ReentrancyGuard: reentrant call");

        // Any calls to nonReentrant after this point will fail
        _status = _ENTERED;
    }

    function _nonReentrantAfter() private {
        // By storing the original value once again, a refund is triggered (see
        // https://eips.ethereum.org/EIPS/eip-2200)
        _status = _NOT_ENTERED;
    }

    /**
     * @dev Returns true if the reentrancy guard is currently set to "entered", which indicates there is a
     * `nonReentrant` function in the call stack.
     */
    function _reentrancyGuardEntered() internal view returns (bool) {
        return _status == _ENTERED;
    }
}

File 27 of 29 : Math.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.9.0) (utils/math/Math.sol)

pragma solidity ^0.8.0;

/**
 * @dev Standard math utilities missing in the Solidity language.
 */
library Math {
    enum Rounding {
        Down, // Toward negative infinity
        Up, // Toward infinity
        Zero // Toward zero
    }

    /**
     * @dev Returns the largest of two numbers.
     */
    function max(uint256 a, uint256 b) internal pure returns (uint256) {
        return a > b ? a : b;
    }

    /**
     * @dev Returns the smallest of two numbers.
     */
    function min(uint256 a, uint256 b) internal pure returns (uint256) {
        return a < b ? a : b;
    }

    /**
     * @dev Returns the average of two numbers. The result is rounded towards
     * zero.
     */
    function average(uint256 a, uint256 b) internal pure returns (uint256) {
        // (a + b) / 2 can overflow.
        return (a & b) + (a ^ b) / 2;
    }

    /**
     * @dev Returns the ceiling of the division of two numbers.
     *
     * This differs from standard division with `/` in that it rounds up instead
     * of rounding down.
     */
    function ceilDiv(uint256 a, uint256 b) internal pure returns (uint256) {
        // (a + b - 1) / b can overflow on addition, so we distribute.
        return a == 0 ? 0 : (a - 1) / b + 1;
    }

    /**
     * @notice Calculates floor(x * y / denominator) with full precision. Throws if result overflows a uint256 or denominator == 0
     * @dev Original credit to Remco Bloemen under MIT license (https://xn--2-umb.com/21/muldiv)
     * with further edits by Uniswap Labs also under MIT license.
     */
    function mulDiv(uint256 x, uint256 y, uint256 denominator) internal pure returns (uint256 result) {
        unchecked {
            // 512-bit multiply [prod1 prod0] = x * y. Compute the product mod 2^256 and mod 2^256 - 1, then use
            // use the Chinese Remainder Theorem to reconstruct the 512 bit result. The result is stored in two 256
            // variables such that product = prod1 * 2^256 + prod0.
            uint256 prod0; // Least significant 256 bits of the product
            uint256 prod1; // Most significant 256 bits of the product
            assembly {
                let mm := mulmod(x, y, not(0))
                prod0 := mul(x, y)
                prod1 := sub(sub(mm, prod0), lt(mm, prod0))
            }

            // Handle non-overflow cases, 256 by 256 division.
            if (prod1 == 0) {
                // Solidity will revert if denominator == 0, unlike the div opcode on its own.
                // The surrounding unchecked block does not change this fact.
                // See https://docs.soliditylang.org/en/latest/control-structures.html#checked-or-unchecked-arithmetic.
                return prod0 / denominator;
            }

            // Make sure the result is less than 2^256. Also prevents denominator == 0.
            require(denominator > prod1, "Math: mulDiv overflow");

            ///////////////////////////////////////////////
            // 512 by 256 division.
            ///////////////////////////////////////////////

            // Make division exact by subtracting the remainder from [prod1 prod0].
            uint256 remainder;
            assembly {
                // Compute remainder using mulmod.
                remainder := mulmod(x, y, denominator)

                // Subtract 256 bit number from 512 bit number.
                prod1 := sub(prod1, gt(remainder, prod0))
                prod0 := sub(prod0, remainder)
            }

            // Factor powers of two out of denominator and compute largest power of two divisor of denominator. Always >= 1.
            // See https://cs.stackexchange.com/q/138556/92363.

            // Does not overflow because the denominator cannot be zero at this stage in the function.
            uint256 twos = denominator & (~denominator + 1);
            assembly {
                // Divide denominator by twos.
                denominator := div(denominator, twos)

                // Divide [prod1 prod0] by twos.
                prod0 := div(prod0, twos)

                // Flip twos such that it is 2^256 / twos. If twos is zero, then it becomes one.
                twos := add(div(sub(0, twos), twos), 1)
            }

            // Shift in bits from prod1 into prod0.
            prod0 |= prod1 * twos;

            // Invert denominator mod 2^256. Now that denominator is an odd number, it has an inverse modulo 2^256 such
            // that denominator * inv = 1 mod 2^256. Compute the inverse by starting with a seed that is correct for
            // four bits. That is, denominator * inv = 1 mod 2^4.
            uint256 inverse = (3 * denominator) ^ 2;

            // Use the Newton-Raphson iteration to improve the precision. Thanks to Hensel's lifting lemma, this also works
            // in modular arithmetic, doubling the correct bits in each step.
            inverse *= 2 - denominator * inverse; // inverse mod 2^8
            inverse *= 2 - denominator * inverse; // inverse mod 2^16
            inverse *= 2 - denominator * inverse; // inverse mod 2^32
            inverse *= 2 - denominator * inverse; // inverse mod 2^64
            inverse *= 2 - denominator * inverse; // inverse mod 2^128
            inverse *= 2 - denominator * inverse; // inverse mod 2^256

            // Because the division is now exact we can divide by multiplying with the modular inverse of denominator.
            // This will give us the correct result modulo 2^256. Since the preconditions guarantee that the outcome is
            // less than 2^256, this is the final result. We don't need to compute the high bits of the result and prod1
            // is no longer required.
            result = prod0 * inverse;
            return result;
        }
    }

    /**
     * @notice Calculates x * y / denominator with full precision, following the selected rounding direction.
     */
    function mulDiv(uint256 x, uint256 y, uint256 denominator, Rounding rounding) internal pure returns (uint256) {
        uint256 result = mulDiv(x, y, denominator);
        if (rounding == Rounding.Up && mulmod(x, y, denominator) > 0) {
            result += 1;
        }
        return result;
    }

    /**
     * @dev Returns the square root of a number. If the number is not a perfect square, the value is rounded down.
     *
     * Inspired by Henry S. Warren, Jr.'s "Hacker's Delight" (Chapter 11).
     */
    function sqrt(uint256 a) internal pure returns (uint256) {
        if (a == 0) {
            return 0;
        }

        // For our first guess, we get the biggest power of 2 which is smaller than the square root of the target.
        //
        // We know that the "msb" (most significant bit) of our target number `a` is a power of 2 such that we have
        // `msb(a) <= a < 2*msb(a)`. This value can be written `msb(a)=2**k` with `k=log2(a)`.
        //
        // This can be rewritten `2**log2(a) <= a < 2**(log2(a) + 1)`
        // → `sqrt(2**k) <= sqrt(a) < sqrt(2**(k+1))`
        // → `2**(k/2) <= sqrt(a) < 2**((k+1)/2) <= 2**(k/2 + 1)`
        //
        // Consequently, `2**(log2(a) / 2)` is a good first approximation of `sqrt(a)` with at least 1 correct bit.
        uint256 result = 1 << (log2(a) >> 1);

        // At this point `result` is an estimation with one bit of precision. We know the true value is a uint128,
        // since it is the square root of a uint256. Newton's method converges quadratically (precision doubles at
        // every iteration). We thus need at most 7 iteration to turn our partial result with one bit of precision
        // into the expected uint128 result.
        unchecked {
            result = (result + a / result) >> 1;
            result = (result + a / result) >> 1;
            result = (result + a / result) >> 1;
            result = (result + a / result) >> 1;
            result = (result + a / result) >> 1;
            result = (result + a / result) >> 1;
            result = (result + a / result) >> 1;
            return min(result, a / result);
        }
    }

    /**
     * @notice Calculates sqrt(a), following the selected rounding direction.
     */
    function sqrt(uint256 a, Rounding rounding) internal pure returns (uint256) {
        unchecked {
            uint256 result = sqrt(a);
            return result + (rounding == Rounding.Up && result * result < a ? 1 : 0);
        }
    }

    /**
     * @dev Return the log in base 2, rounded down, of a positive value.
     * Returns 0 if given 0.
     */
    function log2(uint256 value) internal pure returns (uint256) {
        uint256 result = 0;
        unchecked {
            if (value >> 128 > 0) {
                value >>= 128;
                result += 128;
            }
            if (value >> 64 > 0) {
                value >>= 64;
                result += 64;
            }
            if (value >> 32 > 0) {
                value >>= 32;
                result += 32;
            }
            if (value >> 16 > 0) {
                value >>= 16;
                result += 16;
            }
            if (value >> 8 > 0) {
                value >>= 8;
                result += 8;
            }
            if (value >> 4 > 0) {
                value >>= 4;
                result += 4;
            }
            if (value >> 2 > 0) {
                value >>= 2;
                result += 2;
            }
            if (value >> 1 > 0) {
                result += 1;
            }
        }
        return result;
    }

    /**
     * @dev Return the log in base 2, following the selected rounding direction, of a positive value.
     * Returns 0 if given 0.
     */
    function log2(uint256 value, Rounding rounding) internal pure returns (uint256) {
        unchecked {
            uint256 result = log2(value);
            return result + (rounding == Rounding.Up && 1 << result < value ? 1 : 0);
        }
    }

    /**
     * @dev Return the log in base 10, rounded down, of a positive value.
     * Returns 0 if given 0.
     */
    function log10(uint256 value) internal pure returns (uint256) {
        uint256 result = 0;
        unchecked {
            if (value >= 10 ** 64) {
                value /= 10 ** 64;
                result += 64;
            }
            if (value >= 10 ** 32) {
                value /= 10 ** 32;
                result += 32;
            }
            if (value >= 10 ** 16) {
                value /= 10 ** 16;
                result += 16;
            }
            if (value >= 10 ** 8) {
                value /= 10 ** 8;
                result += 8;
            }
            if (value >= 10 ** 4) {
                value /= 10 ** 4;
                result += 4;
            }
            if (value >= 10 ** 2) {
                value /= 10 ** 2;
                result += 2;
            }
            if (value >= 10 ** 1) {
                result += 1;
            }
        }
        return result;
    }

    /**
     * @dev Return the log in base 10, following the selected rounding direction, of a positive value.
     * Returns 0 if given 0.
     */
    function log10(uint256 value, Rounding rounding) internal pure returns (uint256) {
        unchecked {
            uint256 result = log10(value);
            return result + (rounding == Rounding.Up && 10 ** result < value ? 1 : 0);
        }
    }

    /**
     * @dev Return the log in base 256, rounded down, of a positive value.
     * Returns 0 if given 0.
     *
     * Adding one to the result gives the number of pairs of hex symbols needed to represent `value` as a hex string.
     */
    function log256(uint256 value) internal pure returns (uint256) {
        uint256 result = 0;
        unchecked {
            if (value >> 128 > 0) {
                value >>= 128;
                result += 16;
            }
            if (value >> 64 > 0) {
                value >>= 64;
                result += 8;
            }
            if (value >> 32 > 0) {
                value >>= 32;
                result += 4;
            }
            if (value >> 16 > 0) {
                value >>= 16;
                result += 2;
            }
            if (value >> 8 > 0) {
                result += 1;
            }
        }
        return result;
    }

    /**
     * @dev Return the log in base 256, following the selected rounding direction, of a positive value.
     * Returns 0 if given 0.
     */
    function log256(uint256 value, Rounding rounding) internal pure returns (uint256) {
        unchecked {
            uint256 result = log256(value);
            return result + (rounding == Rounding.Up && 1 << (result << 3) < value ? 1 : 0);
        }
    }
}

File 28 of 29 : Context.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (utils/Context.sol)

pragma solidity ^0.8.0;

/**
 * @dev Provides information about the current execution context, including the
 * sender of the transaction and its data. While these are generally available
 * via msg.sender and msg.data, they should not be accessed in such a direct
 * manner, since when dealing with meta-transactions the account sending and
 * paying for execution may not be the actual sender (as far as an application
 * is concerned).
 *
 * This contract is only required for intermediate, library-like contracts.
 */
abstract contract Context {
    function _msgSender() internal view virtual returns (address) {
        return msg.sender;
    }

    function _msgData() internal view virtual returns (bytes calldata) {
        return msg.data;
    }
}

File 29 of 29 : IBootstrapBallot.sol
// SPDX-License-Identifier: BUSL 1.1
pragma solidity =0.8.22;


interface IBootstrapBallot
	{
	function vote( bool voteStartExchangeYes, uint256 zeroAmount, bytes calldata signature ) external;
	function finalizeBallot() external;

	function authorizeAirdrop2( uint256 zeroAmount, bytes calldata signature ) external;
	function finalizeAirdrop2() external;

	// Views
	function claimableTimestamp1() external view returns (uint256);
	function claimableTimestamp2() external view returns (uint256);

	function hasVoted(address user) external view returns (bool);
	function ballotFinalized() external view returns (bool);

	function startExchangeYes() external view returns (uint256);
	function startExchangeNo() external view returns (uint256);
	}

Settings
{
  "remappings": [
    "chainlink/=lib/chainlink/",
    "ds-test/=lib/openzeppelin-contracts/lib/forge-std/lib/ds-test/src/",
    "erc4626-tests/=lib/openzeppelin-contracts/lib/erc4626-tests/",
    "forge-std/=lib/openzeppelin-contracts/lib/forge-std/src/",
    "openzeppelin-contracts/=lib/openzeppelin-contracts/",
    "openzeppelin/=lib/openzeppelin-contracts/contracts/",
    "v3-core/=lib/v3-core/contracts/"
  ],
  "optimizer": {
    "enabled": true,
    "runs": 10000
  },
  "metadata": {
    "useLiteralContent": false,
    "bytecodeHash": "ipfs",
    "appendCBOR": true
  },
  "outputSelection": {
    "*": {
      "*": [
        "evm.bytecode",
        "evm.deployedBytecode",
        "devdoc",
        "userdoc",
        "metadata",
        "abi"
      ]
    }
  },
  "evmVersion": "paris",
  "libraries": {}
}

Contract Security Audit

Contract ABI

[{"inputs":[{"internalType":"contract IPools","name":"_pools","type":"address"},{"internalType":"contract IExchangeConfig","name":"_exchangeConfig","type":"address"},{"internalType":"contract IPoolsConfig","name":"_poolsConfig","type":"address"},{"internalType":"contract IStakingConfig","name":"_stakingConfig","type":"address"}],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"wallet","type":"address"},{"indexed":false,"internalType":"uint256","name":"claimedRewards","type":"uint256"}],"name":"RewardsClaimed","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"wallet","type":"address"},{"indexed":true,"internalType":"bytes32","name":"poolID","type":"bytes32"},{"indexed":false,"internalType":"uint256","name":"amountDecreased","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"claimedRewards","type":"uint256"}],"name":"UserShareDecreased","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"wallet","type":"address"},{"indexed":true,"internalType":"bytes32","name":"poolID","type":"bytes32"},{"indexed":false,"internalType":"uint256","name":"amountIncreased","type":"uint256"}],"name":"UserShareIncreased","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"bytes32","name":"poolID","type":"bytes32"},{"indexed":false,"internalType":"uint256","name":"amountAdded","type":"uint256"}],"name":"ZeroRewardsAdded","type":"event"},{"inputs":[{"components":[{"internalType":"bytes32","name":"poolID","type":"bytes32"},{"internalType":"uint256","name":"amountToAdd","type":"uint256"}],"internalType":"struct AddedReward[]","name":"addedRewards","type":"tuple[]"}],"name":"addZERORewards","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes32[]","name":"poolIDs","type":"bytes32[]"}],"name":"claimAllRewards","outputs":[{"internalType":"uint256","name":"claimableRewards","type":"uint256"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"contract IERC20","name":"tokenA","type":"address"},{"internalType":"contract IERC20","name":"tokenB","type":"address"},{"internalType":"uint256","name":"maxAmountA","type":"uint256"},{"internalType":"uint256","name":"maxAmountB","type":"uint256"},{"internalType":"uint256","name":"minAddedAmountA","type":"uint256"},{"internalType":"uint256","name":"minAddedAmountB","type":"uint256"},{"internalType":"uint256","name":"minAddedLiquidity","type":"uint256"},{"internalType":"uint256","name":"deadline","type":"uint256"},{"internalType":"bool","name":"useZapping","type":"bool"}],"name":"depositLiquidityAndIncreaseShare","outputs":[{"internalType":"uint256","name":"addedLiquidity","type":"uint256"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"exchangeConfig","outputs":[{"internalType":"contract IExchangeConfig","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"pools","outputs":[{"internalType":"contract IPools","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"poolsConfig","outputs":[{"internalType":"contract IPoolsConfig","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"stakingConfig","outputs":[{"internalType":"contract IStakingConfig","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"name":"totalRewards","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bytes32[]","name":"poolIDs","type":"bytes32[]"}],"name":"totalRewardsForPools","outputs":[{"internalType":"uint256[]","name":"rewards","type":"uint256[]"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"name":"totalShares","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bytes32[]","name":"poolIDs","type":"bytes32[]"}],"name":"totalSharesForPools","outputs":[{"internalType":"uint256[]","name":"shares","type":"uint256[]"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"wallet","type":"address"},{"internalType":"bytes32[]","name":"poolIDs","type":"bytes32[]"}],"name":"userCooldowns","outputs":[{"internalType":"uint256[]","name":"cooldowns","type":"uint256[]"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"wallet","type":"address"},{"internalType":"bytes32","name":"poolID","type":"bytes32"}],"name":"userRewardForPool","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"wallet","type":"address"},{"internalType":"bytes32[]","name":"poolIDs","type":"bytes32[]"}],"name":"userRewardsForPools","outputs":[{"internalType":"uint256[]","name":"rewards","type":"uint256[]"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"wallet","type":"address"},{"internalType":"bytes32","name":"poolID","type":"bytes32"}],"name":"userShareForPool","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"wallet","type":"address"},{"internalType":"bytes32[]","name":"poolIDs","type":"bytes32[]"}],"name":"userShareForPools","outputs":[{"internalType":"uint256[]","name":"shares","type":"uint256[]"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"wallet","type":"address"},{"internalType":"bytes32","name":"poolID","type":"bytes32"}],"name":"userVirtualRewardsForPool","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"contract IERC20","name":"tokenA","type":"address"},{"internalType":"contract IERC20","name":"tokenB","type":"address"},{"internalType":"uint256","name":"liquidityToWithdraw","type":"uint256"},{"internalType":"uint256","name":"minReclaimedA","type":"uint256"},{"internalType":"uint256","name":"minReclaimedB","type":"uint256"},{"internalType":"uint256","name":"deadline","type":"uint256"}],"name":"withdrawLiquidityAndClaim","outputs":[{"internalType":"uint256","name":"reclaimedA","type":"uint256"},{"internalType":"uint256","name":"reclaimedB","type":"uint256"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"zero","outputs":[{"internalType":"contract IZero","name":"","type":"address"}],"stateMutability":"view","type":"function"}]

6101206040523480156200001257600080fd5b506040516200323d3803806200323d8339810160408190526200003591620000fa565b60016000556001600160a01b0380841660a081905281841660e05290821660c0526040805163bc1b392d60e01b8152905185928592859263bc1b392d916004808201926020929091908290030181865afa15801562000098573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190620000be919062000162565b6001600160a01b0390811660805296909616610100525062000189945050505050565b6001600160a01b0381168114620000f757600080fd5b50565b600080600080608085870312156200011157600080fd5b84516200011e81620000e1565b60208601519094506200013181620000e1565b60408601519093506200014481620000e1565b60608601519092506200015781620000e1565b939692955090935050565b6000602082840312156200017557600080fd5b81516200018281620000e1565b9392505050565b60805160a05160c05160e05161010051612fb26200028b600039600081816102f70152818161097601528181610a0201528181610a5e01528181610aea01528181610b1f01528181610b5301528181610b8b015281816110a6015281816114bb01528181611579015281816116050152818161163a015281816116b30152818161176f015281816117fb0152818161183001526118a901526000818161021401528181610db80152611b8a0152600081816101cd01528181611dd701526121ac01526000818161015b0152818161081a01528181611cc401526120990152600081816102d001528181610f070152818161120901526123580152612fb26000f3fe608060405234801561001057600080fd5b50600436106101515760003560e01c806397146776116100cd578063d106dae111610081578063e679cf5c11610066578063e679cf5c14610361578063e970e29e14610389578063f38a851e1461039c57600080fd5b8063d106dae11461032c578063de6448491461034157600080fd5b8063bc1b392d116100b2578063bc1b392d146102cb578063c5c51dca146102f2578063c841a1b61461031957600080fd5b806397146776146102825780639f71cc3d146102b857600080fd5b806352c19b5a1161012457806371481a7e1161010957806371481a7e14610249578063798248931461025c5780637eed72261461026f57600080fd5b806352c19b5a1461020f57806370c512d21461023657600080fd5b80630e2789bb1461015657806312e8d5941461019a57806336829dfc146101c857806338c56364146101ef575b600080fd5b61017d7f000000000000000000000000000000000000000000000000000000000000000081565b6040516001600160a01b0390911681526020015b60405180910390f35b6101ba6101a83660046129b6565b60036020526000908152604090205481565b604051908152602001610191565b61017d7f000000000000000000000000000000000000000000000000000000000000000081565b6102026101fd366004612a33565b6103af565b6040516101919190612a88565b61017d7f000000000000000000000000000000000000000000000000000000000000000081565b610202610244366004612a33565b6104b2565b610202610257366004612acc565b610554565b61020261026a366004612a33565b6105ff565b6101ba61027d366004612b0e565b6106bb565b6101ba610290366004612b0e565b6001600160a01b03919091166000908152600160209081526040808320938352929052205490565b6102026102c6366004612acc565b6106e8565b61017d7f000000000000000000000000000000000000000000000000000000000000000081565b61017d7f000000000000000000000000000000000000000000000000000000000000000081565b6101ba610327366004612b48565b61078c565b61033f61033a366004612bce565b610d45565b005b6101ba61034f3660046129b6565b60026020526000908152604090205481565b61037461036f366004612c43565b610f3e565b60408051928352602083019190915201610191565b6101ba610397366004612acc565b611165565b6101ba6103aa366004612b0e565b611271565b60608167ffffffffffffffff8111156103ca576103ca612c9c565b6040519080825280602002602001820160405280156103f3578160200160208202803683370190505b506001600160a01b03851660009081526001602052604081209192505b82518110156104a957600082600087878581811061043057610430612ccb565b90506020020135815260200190815260200160002060020154905080421061047757600084838151811061046657610466612ccb565b6020026020010181815250506104a0565b6104814282612d29565b84838151811061049357610493612ccb565b6020026020010181815250505b50600101610410565b50509392505050565b60608167ffffffffffffffff8111156104cd576104cd612c9c565b6040519080825280602002602001820160405280156104f6578160200160208202803683370190505b50905060005b815181101561054c576105278585858481811061051b5761051b612ccb565b90506020020135611271565b82828151811061053957610539612ccb565b60209081029190910101526001016104fc565b509392505050565b60608167ffffffffffffffff81111561056f5761056f612c9c565b604051908082528060200260200182016040528015610598578160200160208202803683370190505b50905060005b81518110156105f857600260008585848181106105bd576105bd612ccb565b905060200201358152602001908152602001600020548282815181106105e5576105e5612ccb565b602090810291909101015260010161059e565b5092915050565b60608167ffffffffffffffff81111561061a5761061a612c9c565b604051908082528060200260200182016040528015610643578160200160208202803683370190505b50905060005b815181101561054c576001600160a01b03851660009081526001602052604081209085858481811061067d5761067d612ccb565b905060200201358152602001908152602001600020600001548282815181106106a8576106a8612ccb565b6020908102919091010152600101610649565b6001600160a01b038216600090815260016020818152604080842085855290915290912001545b92915050565b60608167ffffffffffffffff81111561070357610703612c9c565b60405190808252806020026020018201604052801561072c578160200160208202803683370190505b50905060005b81518110156105f8576003600085858481811061075157610751612ccb565b9050602002013581526020019081526020016000205482828151811061077957610779612ccb565b6020908102919091010152600101610732565b6000610796611344565b82804211156107ec5760405162461bcd60e51b815260206004820152600a60248201527f545820455850495245440000000000000000000000000000000000000000000060448201526064015b60405180910390fd5b6040517fcf4a66510000000000000000000000000000000000000000000000000000000081523360048201527f00000000000000000000000000000000000000000000000000000000000000006001600160a01b03169063cf4a665190602401602060405180830381865afa158015610869573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061088d9190612d3c565b6108fe5760405162461bcd60e51b8152602060048201526024808201527f53656e64657220646f6573206e6f7420686176652065786368616e676520616360448201527f636573730000000000000000000000000000000000000000000000000000000060648201526084016107e3565b6109136001600160a01b038c1633308c61139d565b6109286001600160a01b038b1633308b61139d565b82156109405761093a8b8b8b8b611472565b90995097505b6040517fdd62ed3e0000000000000000000000000000000000000000000000000000000081523060048201526001600160a01b037f000000000000000000000000000000000000000000000000000000000000000081166024830152600091908d169063dd62ed3e90604401602060405180830381865afa1580156109c9573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906109ed9190612d59565b1115610a2857610a286001600160a01b038c167f00000000000000000000000000000000000000000000000000000000000000006000611939565b6040517fdd62ed3e0000000000000000000000000000000000000000000000000000000081523060048201526001600160a01b037f000000000000000000000000000000000000000000000000000000000000000081166024830152600091908c169063dd62ed3e90604401602060405180830381865afa158015610ab1573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610ad59190612d59565b1115610b1057610b106001600160a01b038b167f00000000000000000000000000000000000000000000000000000000000000006000611939565b610b446001600160a01b038c167f00000000000000000000000000000000000000000000000000000000000000008b611939565b610b786001600160a01b038b167f00000000000000000000000000000000000000000000000000000000000000008a611939565b6000806000610b878e8e611a8c565b90507f00000000000000000000000000000000000000000000000000000000000000006001600160a01b0316637ae06e588f8f8f8f8f8f600360008a8152602001908152602001600020546040518863ffffffff1660e01b8152600401610c2d97969594939291906001600160a01b03978816815295909616602086015260408501939093526060840191909152608083015260a082015260c081019190915260e00190565b6060604051808303816000875af1158015610c4c573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610c709190612d72565b9650909350915087851015610cc75760405162461bcd60e51b815260206004820152601c60248201527f496e73756666696369656e74206c69717569646974792061646465640000000060448201526064016107e3565b610cd43382876001611b5b565b508a821015610d0457610d0433610ceb848e612d29565b8f6001600160a01b0316611f5e9092919063ffffffff16565b89811015610d2b57610d2b33610d1a838d612d29565b6001600160a01b038f169190611f5e565b505050610d386001600055565b9998505050505050505050565b610d4d611344565b6000805b82811015610ef3576000848483818110610d6d57610d6d612ccb565b905060400201803603810190610d839190612da0565b80516040517f01a5e3fe00000000000000000000000000000000000000000000000000000000815260048101829052919250907f00000000000000000000000000000000000000000000000000000000000000006001600160a01b0316906301a5e3fe90602401602060405180830381865afa158015610e07573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610e2b9190612d3c565b610e775760405162461bcd60e51b815260206004820152600c60248201527f496e76616c696420706f6f6c000000000000000000000000000000000000000060448201526064016107e3565b6020808301516000838152600290925260408220805491928392610e9c908490612e16565b90915550610eac90508186612e16565b9450817fc4d46d1e4a2da7a73f458c61d904e233a455439d9f8c59ac9965d6cc35ffb3b982604051610ee091815260200190565b60405180910390a2505050600101610d51565b508015610f2f57610f2f6001600160a01b037f00000000000000000000000000000000000000000000000000000000000000001633308461139d565b50610f3a6001600055565b5050565b600080610f49611344565b8280421115610f9a5760405162461bcd60e51b815260206004820152600a60248201527f545820455850495245440000000000000000000000000000000000000000000060448201526064016107e3565b6000610fa68a8a611a8c565b3360009081526001602090815260408083208484529091529020549091508811156110395760405162461bcd60e51b815260206004820152602d60248201527f43616e6e6f74207769746864726177206d6f7265207468616e2065786973746960448201527f6e6720757365722073686172650000000000000000000000000000000000000060648201526084016107e3565b600081815260036020526040908190205490517f44483d530000000000000000000000000000000000000000000000000000000081526001600160a01b038c811660048301528b81166024830152604482018b9052606482018a90526084820189905260a48201929092527f0000000000000000000000000000000000000000000000000000000000000000909116906344483d539060c40160408051808303816000875af11580156110f0573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906111149190612e29565b909450925061112d6001600160a01b038b163386611f5e565b6111416001600160a01b038a163385611f5e565b61114e33828a6001611fa7565b505061115a6001600055565b965096945050505050565b600061116f611344565b50336000908152600160205260408120815b838110156111f557600085858381811061119d5761119d612ccb565b90506020020135905060006111b23383611271565b90508084600084815260200190815260200160002060010160008282546111d99190612e16565b909155506111e990508186612e16565b94505050600101611181565b508115611266576112306001600160a01b037f0000000000000000000000000000000000000000000000000000000000000000163384611f5e565b60405182815233907ffc30cddea38e2bf4d6ea7d3f9ed3b6ad7f176419f4963bd81318067a4aee73fe9060200160405180910390a25b506106e26001600055565b600081815260036020526040812054810361128e575060006106e2565b6001600160a01b03831660009081526001602081815260408084208685528252808420815160608101835281548082529482015493810193909352600201549082015291036112e15760009150506106e2565b6000838152600360209081526040808320548451600290935290832054909161130991612e4d565b6113139190612e93565b9050808260200151111561132c576000925050506106e2565b602082015161133b9082612d29565b95945050505050565b6002600054036113965760405162461bcd60e51b815260206004820152601f60248201527f5265656e7472616e637947756172643a207265656e7472616e742063616c6c0060448201526064016107e3565b6002600055565b6040516001600160a01b038085166024830152831660448201526064810182905261146c9085907f23b872dd00000000000000000000000000000000000000000000000000000000906084015b604080517fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe08184030181529190526020810180517bffffffffffffffffffffffffffffffffffffffffffffffffffffffff167fffffffff00000000000000000000000000000000000000000000000000000000909316929092179091526123d0565b50505050565b6040517fd4469c3e0000000000000000000000000000000000000000000000000000000081526001600160a01b03858116600483015284811660248301526000918291829182917f0000000000000000000000000000000000000000000000000000000000000000169063d4469c3e906044016040805180830381865afa158015611501573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906115259190612e29565b9150915060008061153884848a8a6124b8565b90925090508115611733576040517fdd62ed3e0000000000000000000000000000000000000000000000000000000081523060048201526001600160a01b037f000000000000000000000000000000000000000000000000000000000000000081166024830152600091908c169063dd62ed3e90604401602060405180830381865afa1580156115cc573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906115f09190612d59565b111561162b5761162b6001600160a01b038b167f00000000000000000000000000000000000000000000000000000000000000006000611939565b61165f6001600160a01b038b167f000000000000000000000000000000000000000000000000000000000000000084611939565b6116698289612d29565b6040517f2458a8000000000000000000000000000000000000000000000000000000000081526001600160a01b038c811660048301528b81166024830152604482018590529199507f000000000000000000000000000000000000000000000000000000000000000090911690632458a800906064016020604051808303816000875af11580156116fe573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906117229190612d59565b61172c9088612e16565b9650611925565b8015611925576040517fdd62ed3e0000000000000000000000000000000000000000000000000000000081523060048201526001600160a01b037f000000000000000000000000000000000000000000000000000000000000000081166024830152600091908b169063dd62ed3e90604401602060405180830381865afa1580156117c2573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906117e69190612d59565b1115611821576118216001600160a01b038a167f00000000000000000000000000000000000000000000000000000000000000006000611939565b6118556001600160a01b038a167f000000000000000000000000000000000000000000000000000000000000000083611939565b61185f8188612d29565b6040517f2458a8000000000000000000000000000000000000000000000000000000000081526001600160a01b038b811660048301528c81166024830152604482018490529198507f000000000000000000000000000000000000000000000000000000000000000090911690632458a800906064016020604051808303816000875af11580156118f4573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906119189190612d59565b6119229089612e16565b97505b878795509550505050505b94509492505050565b8015806119cc57506040517fdd62ed3e0000000000000000000000000000000000000000000000000000000081523060048201526001600160a01b03838116602483015284169063dd62ed3e90604401602060405180830381865afa1580156119a6573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906119ca9190612d59565b155b611a3e5760405162461bcd60e51b815260206004820152603660248201527f5361666545524332303a20617070726f76652066726f6d206e6f6e2d7a65726f60448201527f20746f206e6f6e2d7a65726f20616c6c6f77616e63650000000000000000000060648201526084016107e3565b6040516001600160a01b038316602482015260448101829052611a879084907f095ea7b300000000000000000000000000000000000000000000000000000000906064016113ea565b505050565b6000826001600160a01b0316826001600160a01b03161015611b01576040517fffffffffffffffffffffffffffffffffffffffff000000000000000000000000606084811b8216602084015285901b1660348201526048016040516020818303038152906040528051906020012090506106e2565b6040517fffffffffffffffffffffffffffffffffffffffff000000000000000000000000606085811b8216602084015284901b16603482015260480160405160208183030381529060405280519060200120905092915050565b6040517f01a5e3fe000000000000000000000000000000000000000000000000000000008152600481018490527f00000000000000000000000000000000000000000000000000000000000000006001600160a01b0316906301a5e3fe90602401602060405180830381865afa158015611bd9573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611bfd9190612d3c565b611c495760405162461bcd60e51b815260206004820152600c60248201527f496e76616c696420706f6f6c000000000000000000000000000000000000000060448201526064016107e3565b81600003611c995760405162461bcd60e51b815260206004820152601a60248201527f43616e6e6f7420696e637265617365207a65726f20736861726500000000000060448201526064016107e3565b6001600160a01b038416600090815260016020908152604080832086845290915290208115611e67577f00000000000000000000000000000000000000000000000000000000000000006001600160a01b0316634162169f6040518163ffffffff1660e01b8152600401602060405180830381865afa158015611d20573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611d449190612ece565b6001600160a01b0316336001600160a01b031614611e67578060020154421015611dd55760405162461bcd60e51b8152602060048201526024808201527f4d757374207761697420666f722074686520636f6f6c646f776e20746f20657860448201527f706972650000000000000000000000000000000000000000000000000000000060648201526084016107e3565b7f00000000000000000000000000000000000000000000000000000000000000006001600160a01b0316639852e4196040518163ffffffff1660e01b8152600401602060405180830381865afa158015611e33573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611e579190612d59565b611e619042612e16565b60028201555b6000848152600360205260409020548015611ee057600085815260026020526040812054611ea090611e9a908790612e4d565b83612533565b905080836001016000828254611eb69190612e16565b909155505060008681526002602052604081208054839290611ed9908490612e16565b9091555050505b83826000016000828254611ef49190612e16565b90915550611f0490508482612e16565b600086815260036020908152604091829020929092555185815286916001600160a01b038916917f2d42c28eb0a06d672788615e7fbf33f445d2a9a2e6529cf1a719320b67b6289a910160405180910390a3505050505050565b6040516001600160a01b038316602482015260448101829052611a879084907fa9059cbb00000000000000000000000000000000000000000000000000000000906064016113ea565b81600003611ff75760405162461bcd60e51b815260206004820152601a60248201527f43616e6e6f74206465637265617365207a65726f20736861726500000000000060448201526064016107e3565b6001600160a01b0384166000908152600160209081526040808320868452909152902080548311156120915760405162461bcd60e51b815260206004820152602d60248201527f43616e6e6f74206465637265617365206d6f7265207468616e2065786973746960448201527f6e6720757365722073686172650000000000000000000000000000000000000060648201526084016107e3565b811561223c577f00000000000000000000000000000000000000000000000000000000000000006001600160a01b0316634162169f6040518163ffffffff1660e01b8152600401602060405180830381865afa1580156120f5573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906121199190612ece565b6001600160a01b0316336001600160a01b03161461223c5780600201544210156121aa5760405162461bcd60e51b8152602060048201526024808201527f4d757374207761697420666f722074686520636f6f6c646f776e20746f20657860448201527f706972650000000000000000000000000000000000000000000000000000000060648201526084016107e3565b7f00000000000000000000000000000000000000000000000000000000000000006001600160a01b0316639852e4196040518163ffffffff1660e01b8152600401602060405180830381865afa158015612208573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061222c9190612d59565b6122369042612e16565b60028201555b6000848152600360209081526040808320546002909252822054612261908690612e4d565b61226b9190612e93565b905060006122898584600101546122829190612e4d565b8454612533565b9050600083600001548685600101546122a29190612e4d565b6122ac9190612e93565b9050826002600089815260200190815260200160002060008282546122d19190612d29565b9091555050600087815260036020526040812080548892906122f4908490612d29565b909155505083548690859060009061230d908490612d29565b92505081905550808460010160008282546123289190612d29565b909155506000905083831015612345576123428385612d29565b90505b801561237f5761237f6001600160a01b037f0000000000000000000000000000000000000000000000000000000000000000168a83611f5e565b604080518881526020810183905289916001600160a01b038c16917ff3ff952bb635509e33aac00d3bce385321c4a0e4ea2b60d92c7c5d3ddd24f6d0910160405180910390a3505050505050505050565b6000612425826040518060400160405280602081526020017f5361666545524332303a206c6f772d6c6576656c2063616c6c206661696c6564815250856001600160a01b031661256b9092919063ffffffff16565b90508051600014806124465750808060200190518101906124469190612d3c565b611a875760405162461bcd60e51b815260206004820152602a60248201527f5361666545524332303a204552433230206f7065726174696f6e20646964206e60448201527f6f7420737563636565640000000000000000000000000000000000000000000060648201526084016107e3565b6000806124c58387612e4d565b6124cf8686612e4d565b11156124e8576124e186868686612582565b9150600090505b6124f28387612e4d565b6124fc8686612e4d565b101561251657600061251086888688612582565b90925090505b8382118061252357508281115b1561193057506000905080611930565b600082156125615781612547600185612d29565b6125519190612e93565b61255c906001612e16565b612564565b60005b9392505050565b606061257a848460008561268f565b949350505050565b600060648510156125955750600061257a565b60648410156125a65750600061257a565b60648310156125c05760648210156125c05750600061257a565b600160006125cf876002612e4d565b905060006125dd8588612e16565b6125e7868a612e4d565b6125f1888a612e4d565b6125fb9190612d29565b6126059190612e93565b61260f9089612e4d565b905060008161261f856004612e4d565b6126299190612e4d565b6126338480612e4d565b61263d9190612e16565b9050600061264a82612781565b9050808411156126625760009550505050505061257a565b61266d856002612e4d565b6126778583612d29565b6126819190612e93565b9a9950505050505050505050565b6060824710156127075760405162461bcd60e51b815260206004820152602660248201527f416464726573733a20696e73756666696369656e742062616c616e636520666f60448201527f722063616c6c000000000000000000000000000000000000000000000000000060648201526084016107e3565b600080866001600160a01b031685876040516127239190612f0f565b60006040518083038185875af1925050503d8060008114612760576040519150601f19603f3d011682016040523d82523d6000602084013e612765565b606091505b509150915061277687838387612869565b979650505050505050565b60008160000361279357506000919050565b600060016127a0846128e2565b901c6001901b905060018184816127b9576127b9612e64565b048201901c905060018184816127d1576127d1612e64565b048201901c905060018184816127e9576127e9612e64565b048201901c9050600181848161280157612801612e64565b048201901c9050600181848161281957612819612e64565b048201901c9050600181848161283157612831612e64565b048201901c9050600181848161284957612849612e64565b048201901c90506125648182858161286357612863612e64565b04612976565b606083156128d85782516000036128d1576001600160a01b0385163b6128d15760405162461bcd60e51b815260206004820152601d60248201527f416464726573733a2063616c6c20746f206e6f6e2d636f6e747261637400000060448201526064016107e3565b508161257a565b61257a838361298c565b600080608083901c156128f757608092831c92015b604083901c1561290957604092831c92015b602083901c1561291b57602092831c92015b601083901c1561292d57601092831c92015b600883901c1561293f57600892831c92015b600483901c1561295157600492831c92015b600283901c1561296357600292831c92015b600183901c156106e25760010192915050565b60008183106129855781612564565b5090919050565b81511561299c5781518083602001fd5b8060405162461bcd60e51b81526004016107e39190612f2b565b6000602082840312156129c857600080fd5b5035919050565b6001600160a01b03811681146129e457600080fd5b50565b60008083601f8401126129f957600080fd5b50813567ffffffffffffffff811115612a1157600080fd5b6020830191508360208260051b8501011115612a2c57600080fd5b9250929050565b600080600060408486031215612a4857600080fd5b8335612a53816129cf565b9250602084013567ffffffffffffffff811115612a6f57600080fd5b612a7b868287016129e7565b9497909650939450505050565b6020808252825182820181905260009190848201906040850190845b81811015612ac057835183529284019291840191600101612aa4565b50909695505050505050565b60008060208385031215612adf57600080fd5b823567ffffffffffffffff811115612af657600080fd5b612b02858286016129e7565b90969095509350505050565b60008060408385031215612b2157600080fd5b8235612b2c816129cf565b946020939093013593505050565b80151581146129e457600080fd5b60008060008060008060008060006101208a8c031215612b6757600080fd5b8935612b72816129cf565b985060208a0135612b82816129cf565b975060408a0135965060608a0135955060808a0135945060a08a0135935060c08a0135925060e08a013591506101008a0135612bbd81612b3a565b809150509295985092959850929598565b60008060208385031215612be157600080fd5b823567ffffffffffffffff80821115612bf957600080fd5b818501915085601f830112612c0d57600080fd5b813581811115612c1c57600080fd5b8660208260061b8501011115612c3157600080fd5b60209290920196919550909350505050565b60008060008060008060c08789031215612c5c57600080fd5b8635612c67816129cf565b95506020870135612c77816129cf565b95989597505050506040840135936060810135936080820135935060a0909101359150565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b818103818111156106e2576106e2612cfa565b600060208284031215612d4e57600080fd5b815161256481612b3a565b600060208284031215612d6b57600080fd5b5051919050565b600080600060608486031215612d8757600080fd5b8351925060208401519150604084015190509250925092565b600060408284031215612db257600080fd5b6040516040810181811067ffffffffffffffff82111715612dfc577f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b604052823581526020928301359281019290925250919050565b808201808211156106e2576106e2612cfa565b60008060408385031215612e3c57600080fd5b505080516020909101519092909150565b80820281158282048414176106e2576106e2612cfa565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b600082612ec9577f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b500490565b600060208284031215612ee057600080fd5b8151612564816129cf565b60005b83811015612f06578181015183820152602001612eee565b50506000910152565b60008251612f21818460208701612eeb565b9190910192915050565b6020815260008251806020840152612f4a816040850160208701612eeb565b601f017fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe016919091016040019291505056fea26469706673582212200b9f336a751c7a8e8a2db71b44ac6af22ddddfb0cb8510cd89b928669bcfb79064736f6c634300081600330000000000000000000000003a07ffb529c1f4efe2bb3613e2419a149c357110000000000000000000000000f2fed4a7a8d1cc2db73ae0439e07db21d0d58bd90000000000000000000000000ac992636f863504039a028a6e9a2c192529c4870000000000000000000000001e1abc5affa2fadbdf8c10cfa4c432e6f6b674de

Deployed Bytecode

0x608060405234801561001057600080fd5b50600436106101515760003560e01c806397146776116100cd578063d106dae111610081578063e679cf5c11610066578063e679cf5c14610361578063e970e29e14610389578063f38a851e1461039c57600080fd5b8063d106dae11461032c578063de6448491461034157600080fd5b8063bc1b392d116100b2578063bc1b392d146102cb578063c5c51dca146102f2578063c841a1b61461031957600080fd5b806397146776146102825780639f71cc3d146102b857600080fd5b806352c19b5a1161012457806371481a7e1161010957806371481a7e14610249578063798248931461025c5780637eed72261461026f57600080fd5b806352c19b5a1461020f57806370c512d21461023657600080fd5b80630e2789bb1461015657806312e8d5941461019a57806336829dfc146101c857806338c56364146101ef575b600080fd5b61017d7f000000000000000000000000f2fed4a7a8d1cc2db73ae0439e07db21d0d58bd981565b6040516001600160a01b0390911681526020015b60405180910390f35b6101ba6101a83660046129b6565b60036020526000908152604090205481565b604051908152602001610191565b61017d7f0000000000000000000000001e1abc5affa2fadbdf8c10cfa4c432e6f6b674de81565b6102026101fd366004612a33565b6103af565b6040516101919190612a88565b61017d7f0000000000000000000000000ac992636f863504039a028a6e9a2c192529c48781565b610202610244366004612a33565b6104b2565b610202610257366004612acc565b610554565b61020261026a366004612a33565b6105ff565b6101ba61027d366004612b0e565b6106bb565b6101ba610290366004612b0e565b6001600160a01b03919091166000908152600160209081526040808320938352929052205490565b6102026102c6366004612acc565b6106e8565b61017d7f0000000000000000000000004dfa880a85e173aaf83cd70f48213aaab369176881565b61017d7f0000000000000000000000003a07ffb529c1f4efe2bb3613e2419a149c35711081565b6101ba610327366004612b48565b61078c565b61033f61033a366004612bce565b610d45565b005b6101ba61034f3660046129b6565b60026020526000908152604090205481565b61037461036f366004612c43565b610f3e565b60408051928352602083019190915201610191565b6101ba610397366004612acc565b611165565b6101ba6103aa366004612b0e565b611271565b60608167ffffffffffffffff8111156103ca576103ca612c9c565b6040519080825280602002602001820160405280156103f3578160200160208202803683370190505b506001600160a01b03851660009081526001602052604081209192505b82518110156104a957600082600087878581811061043057610430612ccb565b90506020020135815260200190815260200160002060020154905080421061047757600084838151811061046657610466612ccb565b6020026020010181815250506104a0565b6104814282612d29565b84838151811061049357610493612ccb565b6020026020010181815250505b50600101610410565b50509392505050565b60608167ffffffffffffffff8111156104cd576104cd612c9c565b6040519080825280602002602001820160405280156104f6578160200160208202803683370190505b50905060005b815181101561054c576105278585858481811061051b5761051b612ccb565b90506020020135611271565b82828151811061053957610539612ccb565b60209081029190910101526001016104fc565b509392505050565b60608167ffffffffffffffff81111561056f5761056f612c9c565b604051908082528060200260200182016040528015610598578160200160208202803683370190505b50905060005b81518110156105f857600260008585848181106105bd576105bd612ccb565b905060200201358152602001908152602001600020548282815181106105e5576105e5612ccb565b602090810291909101015260010161059e565b5092915050565b60608167ffffffffffffffff81111561061a5761061a612c9c565b604051908082528060200260200182016040528015610643578160200160208202803683370190505b50905060005b815181101561054c576001600160a01b03851660009081526001602052604081209085858481811061067d5761067d612ccb565b905060200201358152602001908152602001600020600001548282815181106106a8576106a8612ccb565b6020908102919091010152600101610649565b6001600160a01b038216600090815260016020818152604080842085855290915290912001545b92915050565b60608167ffffffffffffffff81111561070357610703612c9c565b60405190808252806020026020018201604052801561072c578160200160208202803683370190505b50905060005b81518110156105f8576003600085858481811061075157610751612ccb565b9050602002013581526020019081526020016000205482828151811061077957610779612ccb565b6020908102919091010152600101610732565b6000610796611344565b82804211156107ec5760405162461bcd60e51b815260206004820152600a60248201527f545820455850495245440000000000000000000000000000000000000000000060448201526064015b60405180910390fd5b6040517fcf4a66510000000000000000000000000000000000000000000000000000000081523360048201527f000000000000000000000000f2fed4a7a8d1cc2db73ae0439e07db21d0d58bd96001600160a01b03169063cf4a665190602401602060405180830381865afa158015610869573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061088d9190612d3c565b6108fe5760405162461bcd60e51b8152602060048201526024808201527f53656e64657220646f6573206e6f7420686176652065786368616e676520616360448201527f636573730000000000000000000000000000000000000000000000000000000060648201526084016107e3565b6109136001600160a01b038c1633308c61139d565b6109286001600160a01b038b1633308b61139d565b82156109405761093a8b8b8b8b611472565b90995097505b6040517fdd62ed3e0000000000000000000000000000000000000000000000000000000081523060048201526001600160a01b037f0000000000000000000000003a07ffb529c1f4efe2bb3613e2419a149c35711081166024830152600091908d169063dd62ed3e90604401602060405180830381865afa1580156109c9573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906109ed9190612d59565b1115610a2857610a286001600160a01b038c167f0000000000000000000000003a07ffb529c1f4efe2bb3613e2419a149c3571106000611939565b6040517fdd62ed3e0000000000000000000000000000000000000000000000000000000081523060048201526001600160a01b037f0000000000000000000000003a07ffb529c1f4efe2bb3613e2419a149c35711081166024830152600091908c169063dd62ed3e90604401602060405180830381865afa158015610ab1573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610ad59190612d59565b1115610b1057610b106001600160a01b038b167f0000000000000000000000003a07ffb529c1f4efe2bb3613e2419a149c3571106000611939565b610b446001600160a01b038c167f0000000000000000000000003a07ffb529c1f4efe2bb3613e2419a149c3571108b611939565b610b786001600160a01b038b167f0000000000000000000000003a07ffb529c1f4efe2bb3613e2419a149c3571108a611939565b6000806000610b878e8e611a8c565b90507f0000000000000000000000003a07ffb529c1f4efe2bb3613e2419a149c3571106001600160a01b0316637ae06e588f8f8f8f8f8f600360008a8152602001908152602001600020546040518863ffffffff1660e01b8152600401610c2d97969594939291906001600160a01b03978816815295909616602086015260408501939093526060840191909152608083015260a082015260c081019190915260e00190565b6060604051808303816000875af1158015610c4c573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610c709190612d72565b9650909350915087851015610cc75760405162461bcd60e51b815260206004820152601c60248201527f496e73756666696369656e74206c69717569646974792061646465640000000060448201526064016107e3565b610cd43382876001611b5b565b508a821015610d0457610d0433610ceb848e612d29565b8f6001600160a01b0316611f5e9092919063ffffffff16565b89811015610d2b57610d2b33610d1a838d612d29565b6001600160a01b038f169190611f5e565b505050610d386001600055565b9998505050505050505050565b610d4d611344565b6000805b82811015610ef3576000848483818110610d6d57610d6d612ccb565b905060400201803603810190610d839190612da0565b80516040517f01a5e3fe00000000000000000000000000000000000000000000000000000000815260048101829052919250907f0000000000000000000000000ac992636f863504039a028a6e9a2c192529c4876001600160a01b0316906301a5e3fe90602401602060405180830381865afa158015610e07573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610e2b9190612d3c565b610e775760405162461bcd60e51b815260206004820152600c60248201527f496e76616c696420706f6f6c000000000000000000000000000000000000000060448201526064016107e3565b6020808301516000838152600290925260408220805491928392610e9c908490612e16565b90915550610eac90508186612e16565b9450817fc4d46d1e4a2da7a73f458c61d904e233a455439d9f8c59ac9965d6cc35ffb3b982604051610ee091815260200190565b60405180910390a2505050600101610d51565b508015610f2f57610f2f6001600160a01b037f0000000000000000000000004dfa880a85e173aaf83cd70f48213aaab36917681633308461139d565b50610f3a6001600055565b5050565b600080610f49611344565b8280421115610f9a5760405162461bcd60e51b815260206004820152600a60248201527f545820455850495245440000000000000000000000000000000000000000000060448201526064016107e3565b6000610fa68a8a611a8c565b3360009081526001602090815260408083208484529091529020549091508811156110395760405162461bcd60e51b815260206004820152602d60248201527f43616e6e6f74207769746864726177206d6f7265207468616e2065786973746960448201527f6e6720757365722073686172650000000000000000000000000000000000000060648201526084016107e3565b600081815260036020526040908190205490517f44483d530000000000000000000000000000000000000000000000000000000081526001600160a01b038c811660048301528b81166024830152604482018b9052606482018a90526084820189905260a48201929092527f0000000000000000000000003a07ffb529c1f4efe2bb3613e2419a149c357110909116906344483d539060c40160408051808303816000875af11580156110f0573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906111149190612e29565b909450925061112d6001600160a01b038b163386611f5e565b6111416001600160a01b038a163385611f5e565b61114e33828a6001611fa7565b505061115a6001600055565b965096945050505050565b600061116f611344565b50336000908152600160205260408120815b838110156111f557600085858381811061119d5761119d612ccb565b90506020020135905060006111b23383611271565b90508084600084815260200190815260200160002060010160008282546111d99190612e16565b909155506111e990508186612e16565b94505050600101611181565b508115611266576112306001600160a01b037f0000000000000000000000004dfa880a85e173aaf83cd70f48213aaab3691768163384611f5e565b60405182815233907ffc30cddea38e2bf4d6ea7d3f9ed3b6ad7f176419f4963bd81318067a4aee73fe9060200160405180910390a25b506106e26001600055565b600081815260036020526040812054810361128e575060006106e2565b6001600160a01b03831660009081526001602081815260408084208685528252808420815160608101835281548082529482015493810193909352600201549082015291036112e15760009150506106e2565b6000838152600360209081526040808320548451600290935290832054909161130991612e4d565b6113139190612e93565b9050808260200151111561132c576000925050506106e2565b602082015161133b9082612d29565b95945050505050565b6002600054036113965760405162461bcd60e51b815260206004820152601f60248201527f5265656e7472616e637947756172643a207265656e7472616e742063616c6c0060448201526064016107e3565b6002600055565b6040516001600160a01b038085166024830152831660448201526064810182905261146c9085907f23b872dd00000000000000000000000000000000000000000000000000000000906084015b604080517fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe08184030181529190526020810180517bffffffffffffffffffffffffffffffffffffffffffffffffffffffff167fffffffff00000000000000000000000000000000000000000000000000000000909316929092179091526123d0565b50505050565b6040517fd4469c3e0000000000000000000000000000000000000000000000000000000081526001600160a01b03858116600483015284811660248301526000918291829182917f0000000000000000000000003a07ffb529c1f4efe2bb3613e2419a149c357110169063d4469c3e906044016040805180830381865afa158015611501573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906115259190612e29565b9150915060008061153884848a8a6124b8565b90925090508115611733576040517fdd62ed3e0000000000000000000000000000000000000000000000000000000081523060048201526001600160a01b037f0000000000000000000000003a07ffb529c1f4efe2bb3613e2419a149c35711081166024830152600091908c169063dd62ed3e90604401602060405180830381865afa1580156115cc573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906115f09190612d59565b111561162b5761162b6001600160a01b038b167f0000000000000000000000003a07ffb529c1f4efe2bb3613e2419a149c3571106000611939565b61165f6001600160a01b038b167f0000000000000000000000003a07ffb529c1f4efe2bb3613e2419a149c35711084611939565b6116698289612d29565b6040517f2458a8000000000000000000000000000000000000000000000000000000000081526001600160a01b038c811660048301528b81166024830152604482018590529199507f0000000000000000000000003a07ffb529c1f4efe2bb3613e2419a149c35711090911690632458a800906064016020604051808303816000875af11580156116fe573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906117229190612d59565b61172c9088612e16565b9650611925565b8015611925576040517fdd62ed3e0000000000000000000000000000000000000000000000000000000081523060048201526001600160a01b037f0000000000000000000000003a07ffb529c1f4efe2bb3613e2419a149c35711081166024830152600091908b169063dd62ed3e90604401602060405180830381865afa1580156117c2573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906117e69190612d59565b1115611821576118216001600160a01b038a167f0000000000000000000000003a07ffb529c1f4efe2bb3613e2419a149c3571106000611939565b6118556001600160a01b038a167f0000000000000000000000003a07ffb529c1f4efe2bb3613e2419a149c35711083611939565b61185f8188612d29565b6040517f2458a8000000000000000000000000000000000000000000000000000000000081526001600160a01b038b811660048301528c81166024830152604482018490529198507f0000000000000000000000003a07ffb529c1f4efe2bb3613e2419a149c35711090911690632458a800906064016020604051808303816000875af11580156118f4573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906119189190612d59565b6119229089612e16565b97505b878795509550505050505b94509492505050565b8015806119cc57506040517fdd62ed3e0000000000000000000000000000000000000000000000000000000081523060048201526001600160a01b03838116602483015284169063dd62ed3e90604401602060405180830381865afa1580156119a6573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906119ca9190612d59565b155b611a3e5760405162461bcd60e51b815260206004820152603660248201527f5361666545524332303a20617070726f76652066726f6d206e6f6e2d7a65726f60448201527f20746f206e6f6e2d7a65726f20616c6c6f77616e63650000000000000000000060648201526084016107e3565b6040516001600160a01b038316602482015260448101829052611a879084907f095ea7b300000000000000000000000000000000000000000000000000000000906064016113ea565b505050565b6000826001600160a01b0316826001600160a01b03161015611b01576040517fffffffffffffffffffffffffffffffffffffffff000000000000000000000000606084811b8216602084015285901b1660348201526048016040516020818303038152906040528051906020012090506106e2565b6040517fffffffffffffffffffffffffffffffffffffffff000000000000000000000000606085811b8216602084015284901b16603482015260480160405160208183030381529060405280519060200120905092915050565b6040517f01a5e3fe000000000000000000000000000000000000000000000000000000008152600481018490527f0000000000000000000000000ac992636f863504039a028a6e9a2c192529c4876001600160a01b0316906301a5e3fe90602401602060405180830381865afa158015611bd9573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611bfd9190612d3c565b611c495760405162461bcd60e51b815260206004820152600c60248201527f496e76616c696420706f6f6c000000000000000000000000000000000000000060448201526064016107e3565b81600003611c995760405162461bcd60e51b815260206004820152601a60248201527f43616e6e6f7420696e637265617365207a65726f20736861726500000000000060448201526064016107e3565b6001600160a01b038416600090815260016020908152604080832086845290915290208115611e67577f000000000000000000000000f2fed4a7a8d1cc2db73ae0439e07db21d0d58bd96001600160a01b0316634162169f6040518163ffffffff1660e01b8152600401602060405180830381865afa158015611d20573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611d449190612ece565b6001600160a01b0316336001600160a01b031614611e67578060020154421015611dd55760405162461bcd60e51b8152602060048201526024808201527f4d757374207761697420666f722074686520636f6f6c646f776e20746f20657860448201527f706972650000000000000000000000000000000000000000000000000000000060648201526084016107e3565b7f0000000000000000000000001e1abc5affa2fadbdf8c10cfa4c432e6f6b674de6001600160a01b0316639852e4196040518163ffffffff1660e01b8152600401602060405180830381865afa158015611e33573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611e579190612d59565b611e619042612e16565b60028201555b6000848152600360205260409020548015611ee057600085815260026020526040812054611ea090611e9a908790612e4d565b83612533565b905080836001016000828254611eb69190612e16565b909155505060008681526002602052604081208054839290611ed9908490612e16565b9091555050505b83826000016000828254611ef49190612e16565b90915550611f0490508482612e16565b600086815260036020908152604091829020929092555185815286916001600160a01b038916917f2d42c28eb0a06d672788615e7fbf33f445d2a9a2e6529cf1a719320b67b6289a910160405180910390a3505050505050565b6040516001600160a01b038316602482015260448101829052611a879084907fa9059cbb00000000000000000000000000000000000000000000000000000000906064016113ea565b81600003611ff75760405162461bcd60e51b815260206004820152601a60248201527f43616e6e6f74206465637265617365207a65726f20736861726500000000000060448201526064016107e3565b6001600160a01b0384166000908152600160209081526040808320868452909152902080548311156120915760405162461bcd60e51b815260206004820152602d60248201527f43616e6e6f74206465637265617365206d6f7265207468616e2065786973746960448201527f6e6720757365722073686172650000000000000000000000000000000000000060648201526084016107e3565b811561223c577f000000000000000000000000f2fed4a7a8d1cc2db73ae0439e07db21d0d58bd96001600160a01b0316634162169f6040518163ffffffff1660e01b8152600401602060405180830381865afa1580156120f5573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906121199190612ece565b6001600160a01b0316336001600160a01b03161461223c5780600201544210156121aa5760405162461bcd60e51b8152602060048201526024808201527f4d757374207761697420666f722074686520636f6f6c646f776e20746f20657860448201527f706972650000000000000000000000000000000000000000000000000000000060648201526084016107e3565b7f0000000000000000000000001e1abc5affa2fadbdf8c10cfa4c432e6f6b674de6001600160a01b0316639852e4196040518163ffffffff1660e01b8152600401602060405180830381865afa158015612208573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061222c9190612d59565b6122369042612e16565b60028201555b6000848152600360209081526040808320546002909252822054612261908690612e4d565b61226b9190612e93565b905060006122898584600101546122829190612e4d565b8454612533565b9050600083600001548685600101546122a29190612e4d565b6122ac9190612e93565b9050826002600089815260200190815260200160002060008282546122d19190612d29565b9091555050600087815260036020526040812080548892906122f4908490612d29565b909155505083548690859060009061230d908490612d29565b92505081905550808460010160008282546123289190612d29565b909155506000905083831015612345576123428385612d29565b90505b801561237f5761237f6001600160a01b037f0000000000000000000000004dfa880a85e173aaf83cd70f48213aaab3691768168a83611f5e565b604080518881526020810183905289916001600160a01b038c16917ff3ff952bb635509e33aac00d3bce385321c4a0e4ea2b60d92c7c5d3ddd24f6d0910160405180910390a3505050505050505050565b6000612425826040518060400160405280602081526020017f5361666545524332303a206c6f772d6c6576656c2063616c6c206661696c6564815250856001600160a01b031661256b9092919063ffffffff16565b90508051600014806124465750808060200190518101906124469190612d3c565b611a875760405162461bcd60e51b815260206004820152602a60248201527f5361666545524332303a204552433230206f7065726174696f6e20646964206e60448201527f6f7420737563636565640000000000000000000000000000000000000000000060648201526084016107e3565b6000806124c58387612e4d565b6124cf8686612e4d565b11156124e8576124e186868686612582565b9150600090505b6124f28387612e4d565b6124fc8686612e4d565b101561251657600061251086888688612582565b90925090505b8382118061252357508281115b1561193057506000905080611930565b600082156125615781612547600185612d29565b6125519190612e93565b61255c906001612e16565b612564565b60005b9392505050565b606061257a848460008561268f565b949350505050565b600060648510156125955750600061257a565b60648410156125a65750600061257a565b60648310156125c05760648210156125c05750600061257a565b600160006125cf876002612e4d565b905060006125dd8588612e16565b6125e7868a612e4d565b6125f1888a612e4d565b6125fb9190612d29565b6126059190612e93565b61260f9089612e4d565b905060008161261f856004612e4d565b6126299190612e4d565b6126338480612e4d565b61263d9190612e16565b9050600061264a82612781565b9050808411156126625760009550505050505061257a565b61266d856002612e4d565b6126778583612d29565b6126819190612e93565b9a9950505050505050505050565b6060824710156127075760405162461bcd60e51b815260206004820152602660248201527f416464726573733a20696e73756666696369656e742062616c616e636520666f60448201527f722063616c6c000000000000000000000000000000000000000000000000000060648201526084016107e3565b600080866001600160a01b031685876040516127239190612f0f565b60006040518083038185875af1925050503d8060008114612760576040519150601f19603f3d011682016040523d82523d6000602084013e612765565b606091505b509150915061277687838387612869565b979650505050505050565b60008160000361279357506000919050565b600060016127a0846128e2565b901c6001901b905060018184816127b9576127b9612e64565b048201901c905060018184816127d1576127d1612e64565b048201901c905060018184816127e9576127e9612e64565b048201901c9050600181848161280157612801612e64565b048201901c9050600181848161281957612819612e64565b048201901c9050600181848161283157612831612e64565b048201901c9050600181848161284957612849612e64565b048201901c90506125648182858161286357612863612e64565b04612976565b606083156128d85782516000036128d1576001600160a01b0385163b6128d15760405162461bcd60e51b815260206004820152601d60248201527f416464726573733a2063616c6c20746f206e6f6e2d636f6e747261637400000060448201526064016107e3565b508161257a565b61257a838361298c565b600080608083901c156128f757608092831c92015b604083901c1561290957604092831c92015b602083901c1561291b57602092831c92015b601083901c1561292d57601092831c92015b600883901c1561293f57600892831c92015b600483901c1561295157600492831c92015b600283901c1561296357600292831c92015b600183901c156106e25760010192915050565b60008183106129855781612564565b5090919050565b81511561299c5781518083602001fd5b8060405162461bcd60e51b81526004016107e39190612f2b565b6000602082840312156129c857600080fd5b5035919050565b6001600160a01b03811681146129e457600080fd5b50565b60008083601f8401126129f957600080fd5b50813567ffffffffffffffff811115612a1157600080fd5b6020830191508360208260051b8501011115612a2c57600080fd5b9250929050565b600080600060408486031215612a4857600080fd5b8335612a53816129cf565b9250602084013567ffffffffffffffff811115612a6f57600080fd5b612a7b868287016129e7565b9497909650939450505050565b6020808252825182820181905260009190848201906040850190845b81811015612ac057835183529284019291840191600101612aa4565b50909695505050505050565b60008060208385031215612adf57600080fd5b823567ffffffffffffffff811115612af657600080fd5b612b02858286016129e7565b90969095509350505050565b60008060408385031215612b2157600080fd5b8235612b2c816129cf565b946020939093013593505050565b80151581146129e457600080fd5b60008060008060008060008060006101208a8c031215612b6757600080fd5b8935612b72816129cf565b985060208a0135612b82816129cf565b975060408a0135965060608a0135955060808a0135945060a08a0135935060c08a0135925060e08a013591506101008a0135612bbd81612b3a565b809150509295985092959850929598565b60008060208385031215612be157600080fd5b823567ffffffffffffffff80821115612bf957600080fd5b818501915085601f830112612c0d57600080fd5b813581811115612c1c57600080fd5b8660208260061b8501011115612c3157600080fd5b60209290920196919550909350505050565b60008060008060008060c08789031215612c5c57600080fd5b8635612c67816129cf565b95506020870135612c77816129cf565b95989597505050506040840135936060810135936080820135935060a0909101359150565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b818103818111156106e2576106e2612cfa565b600060208284031215612d4e57600080fd5b815161256481612b3a565b600060208284031215612d6b57600080fd5b5051919050565b600080600060608486031215612d8757600080fd5b8351925060208401519150604084015190509250925092565b600060408284031215612db257600080fd5b6040516040810181811067ffffffffffffffff82111715612dfc577f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b604052823581526020928301359281019290925250919050565b808201808211156106e2576106e2612cfa565b60008060408385031215612e3c57600080fd5b505080516020909101519092909150565b80820281158282048414176106e2576106e2612cfa565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b600082612ec9577f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b500490565b600060208284031215612ee057600080fd5b8151612564816129cf565b60005b83811015612f06578181015183820152602001612eee565b50506000910152565b60008251612f21818460208701612eeb565b9190910192915050565b6020815260008251806020840152612f4a816040850160208701612eeb565b601f017fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe016919091016040019291505056fea26469706673582212200b9f336a751c7a8e8a2db71b44ac6af22ddddfb0cb8510cd89b928669bcfb79064736f6c63430008160033

Constructor Arguments (ABI-Encoded and is the last bytes of the Contract Creation Code above)

0000000000000000000000003a07ffb529c1f4efe2bb3613e2419a149c357110000000000000000000000000f2fed4a7a8d1cc2db73ae0439e07db21d0d58bd90000000000000000000000000ac992636f863504039a028a6e9a2c192529c4870000000000000000000000001e1abc5affa2fadbdf8c10cfa4c432e6f6b674de

-----Decoded View---------------
Arg [0] : _pools (address): 0x3A07FfB529C1f4EfE2Bb3613e2419a149c357110
Arg [1] : _exchangeConfig (address): 0xF2fEd4a7a8D1CC2dB73AE0439E07db21D0D58bD9
Arg [2] : _poolsConfig (address): 0x0aC992636f863504039A028A6E9a2c192529c487
Arg [3] : _stakingConfig (address): 0x1E1aBC5aFFA2FadBDf8c10CfA4C432E6f6B674De

-----Encoded View---------------
4 Constructor Arguments found :
Arg [0] : 0000000000000000000000003a07ffb529c1f4efe2bb3613e2419a149c357110
Arg [1] : 000000000000000000000000f2fed4a7a8d1cc2db73ae0439e07db21d0d58bd9
Arg [2] : 0000000000000000000000000ac992636f863504039a028a6e9a2c192529c487
Arg [3] : 0000000000000000000000001e1abc5affa2fadbdf8c10cfa4c432e6f6b674de


Block Transaction Gas Used Reward
view all blocks sequenced

Block Uncle Number Difficulty Gas Used Reward
View All Uncles
Loading...
Loading
Loading...
Loading

Validator Index Block Amount
View All Withdrawals

Transaction Hash Block Value Eth2 PubKey Valid
View All Deposits
[ Download: CSV Export  ]

A contract address hosts a smart contract, which is a set of code stored on the blockchain that runs when predetermined conditions are met. Learn more about addresses in our Knowledge Base.