ETH Price: $3,266.22 (+0.19%)
Gas: 2 Gwei

Contract

0x3006EB573bA4b6f28C36AAd49d2062C5e82Cfc75
 

Overview

ETH Balance

0 ETH

Eth Value

$0.00

Multichain Info

No addresses found
Transaction Hash
Method
Block
From
To
0x6101c060184340162023-10-26 11:12:11275 days ago1698318731IN
 Create: BancorNetwork
0 ETH0.0858381416.34861784

View more zero value Internal Transactions in Advanced View mode

Advanced mode:
Loading...
Loading

Contract Source Code Verified (Exact Match)

Contract Name:
BancorNetwork

Compiler Version
v0.8.13+commit.abaa5c0e

Optimization Enabled:
Yes with 200 runs

Other Settings:
london EvmVersion, None license
File 1 of 49 : BancorNetwork.sol
// SPDX-License-Identifier: SEE LICENSE IN LICENSE
pragma solidity 0.8.13;

import { Address } from "@openzeppelin/contracts/utils/Address.sol";
import { IERC20 } from "@openzeppelin/contracts/token/ERC20/IERC20.sol";
import { SafeERC20 } from "@openzeppelin/contracts/token/ERC20/utils/SafeERC20.sol";
import { ReentrancyGuardUpgradeable } from "@openzeppelin/contracts-upgradeable/security/ReentrancyGuardUpgradeable.sol";
import { EnumerableSetUpgradeable } from "@openzeppelin/contracts-upgradeable/utils/structs/EnumerableSetUpgradeable.sol";
import { PausableUpgradeable } from "@openzeppelin/contracts-upgradeable/security/PausableUpgradeable.sol";

import { ITokenGovernance } from "@bancor/token-governance/contracts/ITokenGovernance.sol";

import { IVersioned } from "../utility/interfaces/IVersioned.sol";
import { PPM_RESOLUTION } from "../utility/Constants.sol";
import { Upgradeable } from "../utility/Upgradeable.sol";
import { Time } from "../utility/Time.sol";
import { MathEx } from "../utility/MathEx.sol";

// prettier-ignore
import {
    Utils,
    AlreadyExists,
    DoesNotExist,
    InvalidToken,
    InvalidPool,
NotEmpty
} from "../utility/Utils.sol";

import { ROLE_ASSET_MANAGER } from "../vaults/interfaces/IVault.sol";
import { IMasterVault } from "../vaults/interfaces/IMasterVault.sol";
import { IExternalProtectionVault } from "../vaults/interfaces/IExternalProtectionVault.sol";

import { Token } from "../token/Token.sol";
import { TokenLibrary } from "../token/TokenLibrary.sol";

import { IPoolCollection, TradeAmountAndFee, PoolLiquidity } from "../pools/interfaces/IPoolCollection.sol";
import { IPoolMigrator } from "../pools/interfaces/IPoolMigrator.sol";

// prettier-ignore
import {
    IBNTPool,
    ROLE_BNT_MANAGER,
    ROLE_VAULT_MANAGER,
    ROLE_FUNDING_MANAGER
} from "../pools/interfaces/IBNTPool.sol";

import { IPoolToken } from "../pools/interfaces/IPoolToken.sol";

import { INetworkSettings, NotWhitelisted, NotWhitelistedForPOL } from "./interfaces/INetworkSettings.sol";
import { IPendingWithdrawals, CompletedWithdrawal } from "./interfaces/IPendingWithdrawals.sol";
import { IBancorNetwork, IFlashLoanRecipient } from "./interfaces/IBancorNetwork.sol";

/**
 * @dev Bancor Network contract
 */
contract BancorNetwork is IBancorNetwork, Upgradeable, ReentrancyGuardUpgradeable, PausableUpgradeable, Time, Utils {
    using Address for address payable;
    using EnumerableSetUpgradeable for EnumerableSetUpgradeable.AddressSet;
    using TokenLibrary for Token;
    using SafeERC20 for IPoolToken;

    error DeadlineExpired();
    error DepositingDisabled();
    error NativeTokenAmountMismatch();
    error InsufficientFlashLoanReturn();
    error PoolNotInSurplus();

    struct TradeParams {
        uint256 amount;
        uint256 limit;
        bool bySourceAmount;
        bool ignoreFees;
    }

    struct TradeResult {
        uint256 sourceAmount;
        uint256 targetAmount;
        uint256 tradingFeeAmount;
        uint256 networkFeeAmount;
    }

    struct TradeTokens {
        Token sourceToken;
        Token targetToken;
    }

    struct TraderInfo {
        address trader;
        address beneficiary;
    }

    // the migration manager role is required for migrating liquidity
    bytes32 private constant ROLE_MIGRATION_MANAGER = keccak256("ROLE_MIGRATION_MANAGER");

    // the emergency manager role is required to pause/unpause the network
    bytes32 private constant ROLE_EMERGENCY_STOPPER = keccak256("ROLE_EMERGENCY_STOPPER");

    // the address of the BNT token
    IERC20 private immutable _bnt;

    // the address of the BNT token governance
    ITokenGovernance private immutable _bntGovernance;

    // the address of the vBNT token
    IERC20 private immutable _vbnt;

    // the address of the vBNT token governance
    ITokenGovernance private immutable _vbntGovernance;

    // the network settings contract
    INetworkSettings private immutable _networkSettings;

    // the master vault contract
    IMasterVault private immutable _masterVault;

    // the address of the external protection vault
    IExternalProtectionVault private immutable _externalProtectionVault;

    // the BNT pool token
    IPoolToken internal immutable _bntPoolToken;

    // the Bancor arbitrage contract
    address internal immutable _bancorArbitrage;

    // the carbon POL contract
    address internal immutable _carbonPOL;

    // the BNT pool contract
    IBNTPool internal _bntPool;

    // the pending withdrawals contract
    IPendingWithdrawals internal _pendingWithdrawals;

    // the pool migrator contract
    IPoolMigrator internal _poolMigrator;

    // the set of all valid pool collections
    EnumerableSetUpgradeable.AddressSet private _poolCollections;

    // DEPRECATED (mapping(uint16 => IPoolCollection) _latestPoolCollections)
    uint256 private _deprecated0;

    // the set of all pools
    EnumerableSetUpgradeable.AddressSet private _liquidityPools;

    // a mapping between pools and their respective pool collections
    mapping(Token => IPoolCollection) private _collectionByPool;

    // the pending network fee amount to be burned
    uint256 internal _pendingNetworkFeeAmount;

    bool private _depositingEnabled = true;

    uint32 private _polRewardsPPM;

    // min network fee amount that can be burned
    uint256 private _minNetworkFeeBurn;

    // upgrade forward-compatibility storage gap
    uint256[MAX_GAP - 12] private __gap;

    /**
     * @dev triggered when a new pool collection is added
     */
    event PoolCollectionAdded(uint16 indexed poolType, IPoolCollection indexed poolCollection);

    /**
     * @dev triggered when an existing pool collection is removed
     */
    event PoolCollectionRemoved(uint16 indexed poolType, IPoolCollection indexed poolCollection);

    /**
     * @dev triggered when a pool is created
     */
    event PoolCreated(Token indexed pool, IPoolCollection indexed poolCollection);

    /**
     * @dev triggered when a new pool is added to a pool collection
     */
    event PoolAdded(Token indexed pool, IPoolCollection indexed poolCollection);

    /**
     * @dev triggered when a new pool is removed from a pool collection
     */
    event PoolRemoved(Token indexed pool, IPoolCollection indexed poolCollection);

    /**
     * @dev triggered when funds are migrated
     */
    event FundsMigrated(
        bytes32 indexed contextId,
        Token indexed token,
        address indexed provider,
        uint256 amount,
        uint256 availableAmount,
        uint256 originalAmount
    );

    /**
     * @dev triggered on a successful trade
     */
    event TokensTraded(
        bytes32 indexed contextId,
        Token indexed sourceToken,
        Token indexed targetToken,
        uint256 sourceAmount,
        uint256 targetAmount,
        uint256 bntAmount,
        uint256 targetFeeAmount,
        uint256 bntFeeAmount,
        address trader
    );

    /**
     * @dev triggered when a flash-loan is completed
     */
    event FlashLoanCompleted(Token indexed token, address indexed borrower, uint256 amount, uint256 feeAmount);

    /**
     * @dev triggered when network fees are burned
     */
    event NetworkFeesBurned(address indexed caller, uint256 amount);

    /**
     * @dev triggered when pool surplus tokens are withdrawn
     */
    event POLWithdrawn(address indexed caller, address indexed token, uint256 polTokenAmount, uint256 userReward);

    /**
     * @dev triggered when POL rewards ppm is updated
     */
    event POLRewardsPPMUpdated(uint32 oldRewardsPPM, uint32 newRewardsPPM);

    /**
     * @dev triggered when the min network fee burn is updated
     */
    event MinNetworkFeeBurnUpdated(uint256 oldMinNetworkFeeBurn, uint256 newMinNetworkFeeBurn);

    /**
     * @dev a "virtual" constructor that is only used to set immutable state variables
     */
    constructor(
        ITokenGovernance initBNTGovernance,
        ITokenGovernance initVBNTGovernance,
        INetworkSettings initNetworkSettings,
        IMasterVault initMasterVault,
        IExternalProtectionVault initExternalProtectionVault,
        IPoolToken initBNTPoolToken,
        address bancorArbitrage,
        address carbonPOL
    )
        validAddress(address(initBNTGovernance))
        validAddress(address(initVBNTGovernance))
        validAddress(address(initNetworkSettings))
        validAddress(address(initMasterVault))
        validAddress(address(initExternalProtectionVault))
        validAddress(address(initBNTPoolToken))
        validAddress(address(bancorArbitrage))
        validAddress(address(carbonPOL))
    {
        _bntGovernance = initBNTGovernance;
        _bnt = initBNTGovernance.token();
        _vbntGovernance = initVBNTGovernance;
        _vbnt = initVBNTGovernance.token();

        _networkSettings = initNetworkSettings;
        _masterVault = initMasterVault;
        _externalProtectionVault = initExternalProtectionVault;
        _bntPoolToken = initBNTPoolToken;
        _bancorArbitrage = bancorArbitrage;
        _carbonPOL = carbonPOL;
    }

    /**
     * @dev fully initializes the contract and its parents
     */
    function initialize(
        IBNTPool initBNTPool,
        IPendingWithdrawals initPendingWithdrawals,
        IPoolMigrator initPoolMigrator
    )
        external
        validAddress(address(initBNTPool))
        validAddress(address(initPendingWithdrawals))
        validAddress(address(initPoolMigrator))
        initializer
    {
        __BancorNetwork_init(initBNTPool, initPendingWithdrawals, initPoolMigrator);
    }

    // solhint-disable func-name-mixedcase

    /**
     * @dev initializes the contract and its parents
     */
    function __BancorNetwork_init(
        IBNTPool initBNTPool,
        IPendingWithdrawals initPendingWithdrawals,
        IPoolMigrator initPoolMigrator
    ) internal onlyInitializing {
        __Upgradeable_init();
        __ReentrancyGuard_init();
        __Pausable_init();

        __BancorNetwork_init_unchained(initBNTPool, initPendingWithdrawals, initPoolMigrator);
    }

    /**
     * @dev performs contract-specific initialization
     */
    function __BancorNetwork_init_unchained(
        IBNTPool initBNTPool,
        IPendingWithdrawals initPendingWithdrawals,
        IPoolMigrator initPoolMigrator
    ) internal onlyInitializing {
        _bntPool = initBNTPool;
        _pendingWithdrawals = initPendingWithdrawals;
        _poolMigrator = initPoolMigrator;

        // set up administrative roles
        _setRoleAdmin(ROLE_MIGRATION_MANAGER, ROLE_ADMIN);
        _setRoleAdmin(ROLE_EMERGENCY_STOPPER, ROLE_ADMIN);

        _depositingEnabled = true;

        _setPOLRewardsPPM(2000);
        _setMinNetworkFeeBurn(1_000_000e18);
    }

    // solhint-enable func-name-mixedcase

    modifier depositsEnabled() {
        _depositsEnabled();

        _;
    }

    function _depositsEnabled() internal view {
        if (!_depositingEnabled) {
            revert DepositingDisabled();
        }
    }

    receive() external payable {}

    /**
     * @inheritdoc Upgradeable
     */
    function version() public pure override(IVersioned, Upgradeable) returns (uint16) {
        return 10;
    }

    /**
     * @dev returns the migration manager role
     */
    function roleMigrationManager() external pure returns (bytes32) {
        return ROLE_MIGRATION_MANAGER;
    }

    /**
     * @dev returns the emergency stopper role
     */
    function roleEmergencyStopper() external pure returns (bytes32) {
        return ROLE_EMERGENCY_STOPPER;
    }

    /**
     * @dev returns the pending network fee amount to be burned
     */
    function pendingNetworkFeeAmount() external view returns (uint256) {
        return _pendingNetworkFeeAmount;
    }

    /**
     * @dev registers new pool collection with the network
     *
     * requirements:
     *
     * - the caller must be the admin of the contract
     */
    function registerPoolCollection(
        IPoolCollection newPoolCollection
    ) external validAddress(address(newPoolCollection)) onlyAdmin nonReentrant {
        // verify that there is no pool collection of the same type and version
        uint16 newPoolType = newPoolCollection.poolType();
        uint16 newPoolVersion = newPoolCollection.version();

        IPoolCollection poolCollection = _findPoolCollection(newPoolType, newPoolVersion);
        if (poolCollection != IPoolCollection(address(0)) || !_poolCollections.add(address(newPoolCollection))) {
            revert AlreadyExists();
        }

        _setAccessRoles(newPoolCollection, true);

        emit PoolCollectionAdded({ poolType: newPoolCollection.poolType(), poolCollection: newPoolCollection });
    }

    /**
     * @dev unregisters an existing pool collection from the network
     *
     * requirements:
     *
     * - the caller must be the admin of the contract
     */
    function unregisterPoolCollection(
        IPoolCollection poolCollection
    ) external validAddress(address(poolCollection)) onlyAdmin nonReentrant {
        // verify that no pools are associated with the specified pool collection
        if (poolCollection.poolCount() != 0) {
            revert NotEmpty();
        }

        if (!_poolCollections.remove(address(poolCollection))) {
            revert DoesNotExist();
        }

        _setAccessRoles(poolCollection, false);

        emit PoolCollectionRemoved({ poolType: poolCollection.poolType(), poolCollection: poolCollection });
    }

    /**
     * @inheritdoc IBancorNetwork
     */
    function poolCollections() external view returns (IPoolCollection[] memory) {
        uint256 length = _poolCollections.length();
        IPoolCollection[] memory list = new IPoolCollection[](length);
        for (uint256 i = 0; i < length; i++) {
            list[i] = IPoolCollection(_poolCollections.at(i));
        }
        return list;
    }

    /**
     * @inheritdoc IBancorNetwork
     */
    function liquidityPools() external view returns (Token[] memory) {
        uint256 length = _liquidityPools.length();
        Token[] memory list = new Token[](length);
        for (uint256 i = 0; i < length; i++) {
            list[i] = Token(_liquidityPools.at(i));
        }
        return list;
    }

    /**
     * @inheritdoc IBancorNetwork
     */
    function collectionByPool(Token pool) external view returns (IPoolCollection) {
        return _collectionByPool[pool];
    }

    /**
     * @inheritdoc IBancorNetwork
     */
    function createPools(
        Token[] calldata tokens,
        IPoolCollection poolCollection
    ) external validAddress(address(poolCollection)) onlyAdmin nonReentrant {
        if (!_poolCollections.contains(address(poolCollection))) {
            revert DoesNotExist();
        }

        uint256 length = tokens.length;
        for (uint256 i = 0; i < length; i++) {
            _createPool(tokens[i], poolCollection);
        }
    }

    /**
     * @dev creates a new pool
     */
    function _createPool(Token token, IPoolCollection poolCollection) private {
        _validAddress(address(token));

        if (token.isEqual(_bnt)) {
            revert InvalidToken();
        }

        if (!_liquidityPools.add(address(token))) {
            revert AlreadyExists();
        }

        // this is where the magic happens...
        poolCollection.createPool(token);

        // add the pool collection to the reverse pool collection lookup
        _collectionByPool[token] = poolCollection;

        emit PoolCreated({ pool: token, poolCollection: poolCollection });
        emit PoolAdded({ pool: token, poolCollection: poolCollection });
    }

    /**
     * @inheritdoc IBancorNetwork
     */
    function migratePools(Token[] calldata pools, IPoolCollection newPoolCollection) external nonReentrant {
        if (!_poolCollections.contains(address(newPoolCollection))) {
            revert DoesNotExist();
        }

        uint256 length = pools.length;
        for (uint256 i = 0; i < length; i++) {
            Token pool = pools[i];

            // request the pool migrator to migrate the pool to the new pool collection
            _poolMigrator.migratePool(pool, newPoolCollection);

            IPoolCollection prevPoolCollection = _collectionByPool[pool];

            // update the mapping between pools and their respective pool collections
            _collectionByPool[pool] = newPoolCollection;

            emit PoolRemoved(pool, prevPoolCollection);
            emit PoolAdded(pool, newPoolCollection);
        }
    }

    /**
     * @inheritdoc IBancorNetwork
     */
    function depositFor(
        address provider,
        Token pool,
        uint256 tokenAmount
    )
        external
        payable
        depositsEnabled
        validAddress(provider)
        validAddress(address(pool))
        greaterThanZero(tokenAmount)
        whenNotPaused
        nonReentrant
        returns (uint256)
    {
        return _depositFor(provider, pool, tokenAmount, msg.sender);
    }

    /**
     * @inheritdoc IBancorNetwork
     */
    function deposit(
        Token pool,
        uint256 tokenAmount
    )
        external
        payable
        depositsEnabled
        validAddress(address(pool))
        greaterThanZero(tokenAmount)
        whenNotPaused
        nonReentrant
        returns (uint256)
    {
        return _depositFor(msg.sender, pool, tokenAmount, msg.sender);
    }

    /**
     * @inheritdoc IBancorNetwork
     */
    function initWithdrawal(
        IPoolToken poolToken,
        uint256 poolTokenAmount
    )
        external
        validAddress(address(poolToken))
        greaterThanZero(poolTokenAmount)
        whenNotPaused
        nonReentrant
        returns (uint256)
    {
        return _initWithdrawal(msg.sender, poolToken, poolTokenAmount);
    }

    /**
     * @inheritdoc IBancorNetwork
     */
    function cancelWithdrawal(uint256 id) external whenNotPaused nonReentrant returns (uint256) {
        return _pendingWithdrawals.cancelWithdrawal(msg.sender, id);
    }

    /**
     * @inheritdoc IBancorNetwork
     */
    function withdraw(uint256 id) external whenNotPaused nonReentrant returns (uint256) {
        address provider = msg.sender;
        bytes32 contextId = _withdrawContextId(id, provider);

        // complete the withdrawal and claim the locked pool tokens
        CompletedWithdrawal memory completedRequest = _pendingWithdrawals.completeWithdrawal(contextId, provider, id);

        if (completedRequest.poolToken == _bntPoolToken) {
            return _withdrawBNT(contextId, provider, completedRequest);
        }

        return _withdrawBaseToken(contextId, provider, completedRequest);
    }

    /**
     * @inheritdoc IBancorNetwork
     */
    function withdrawPOL(Token pool) external whenNotPaused nonReentrant returns (uint256) {
        // verify pool is whitelisted
        if (!_networkSettings.isTokenWhitelistedForPOL(pool)) {
            revert NotWhitelistedForPOL();
        }

        // verify pool collection exists and retrieve it
        IPoolCollection poolCollection = _poolCollection(pool);

        // get token vault balance and staked balance
        uint256 masterVaultBalance = pool.balanceOf(address(_masterVault));
        PoolLiquidity memory poolLiquidity = poolCollection.poolLiquidity(pool);
        uint256 stakedTokenBalance = poolLiquidity.stakedBalance;

        // verify pool is in surplus
        if (stakedTokenBalance >= masterVaultBalance) {
            revert PoolNotInSurplus();
        }

        // disable pool trading
        poolCollection.disableTradingByNetwork(pool);

        // calculate pool surplus amount and user reward
        uint256 poolSurplus = masterVaultBalance - stakedTokenBalance;
        uint256 userReward = MathEx.mulDivF(poolSurplus, _polRewardsPPM, PPM_RESOLUTION);

        // withdraw surplus tokens from master vault to POL contract
        _masterVault.withdrawFunds(pool, payable(_carbonPOL), poolSurplus - userReward);
        // withdraw user reward to caller
        _masterVault.withdrawFunds(pool, payable(msg.sender), userReward);
        // emit event
        emit POLWithdrawn(msg.sender, address(pool), poolSurplus - userReward, userReward);
        // return pool surplus amount
        return poolSurplus;
    }

    /**
     * @inheritdoc IBancorNetwork
     */
    function tradeBySourceAmount(
        Token sourceToken,
        Token targetToken,
        uint256 sourceAmount,
        uint256 minReturnAmount,
        uint256 deadline,
        address beneficiary
    ) external payable whenNotPaused nonReentrant returns (uint256) {
        return
            _tradeBySourceAmount(
                sourceToken,
                targetToken,
                sourceAmount,
                minReturnAmount,
                deadline,
                beneficiary,
                msg.sender
            );
    }

    /**
     * @inheritdoc IBancorNetwork
     */
    function tradeByTargetAmount(
        Token sourceToken,
        Token targetToken,
        uint256 targetAmount,
        uint256 maxSourceAmount,
        uint256 deadline,
        address beneficiary
    ) external payable whenNotPaused nonReentrant returns (uint256) {
        return
            _tradeByTargetAmount(
                sourceToken,
                targetToken,
                targetAmount,
                maxSourceAmount,
                deadline,
                beneficiary,
                msg.sender
            );
    }

    /**
     * @inheritdoc IBancorNetwork
     */
    function tradeBySourceAmountArb(
        Token sourceToken,
        Token targetToken,
        uint256 sourceAmount,
        uint256 minReturnAmount,
        uint256 deadline,
        address beneficiary
    ) external payable whenNotPaused only(_bancorArbitrage) returns (uint256) {
        return
            _tradeBySourceAmount(
                sourceToken,
                targetToken,
                sourceAmount,
                minReturnAmount,
                deadline,
                beneficiary,
                msg.sender
            );
    }

    /**
     * @inheritdoc IBancorNetwork
     */
    function tradeByTargetAmountArb(
        Token sourceToken,
        Token targetToken,
        uint256 targetAmount,
        uint256 maxSourceAmount,
        uint256 deadline,
        address beneficiary
    ) external payable whenNotPaused only(_bancorArbitrage) returns (uint256) {
        return
            _tradeByTargetAmount(
                sourceToken,
                targetToken,
                targetAmount,
                maxSourceAmount,
                deadline,
                beneficiary,
                msg.sender
            );
    }

    /**
     * @inheritdoc IBancorNetwork
     */
    function flashLoan(
        Token token,
        uint256 amount,
        IFlashLoanRecipient recipient,
        bytes calldata data
    )
        external
        validAddress(address(token))
        greaterThanZero(amount)
        validAddress(address(recipient))
        whenNotPaused
        nonReentrant
    {
        if (!token.isEqual(_bnt) && !_networkSettings.isTokenWhitelisted(token)) {
            revert NotWhitelisted();
        }

        uint256 feeAmount;
        if (msg.sender == _bancorArbitrage) {
            // exempt arb contract from fees
            feeAmount = 0;
        } else {
            feeAmount = MathEx.mulDivF(amount, _networkSettings.flashLoanFeePPM(token), PPM_RESOLUTION);
        }

        // save the current balance
        uint256 prevBalance = token.balanceOf(address(this));

        // transfer the amount from the master vault to the recipient
        _masterVault.withdrawFunds(token, payable(address(recipient)), amount);

        // invoke the recipient's callback
        recipient.onFlashLoan(msg.sender, token.toIERC20(), amount, feeAmount, data);

        // ensure that the tokens + fee have been deposited back to the network
        uint256 returnedAmount = token.balanceOf(address(this)) - prevBalance;
        if (returnedAmount < amount + feeAmount) {
            revert InsufficientFlashLoanReturn();
        }

        // transfer the amount and the fee back to the vault
        if (token.isNative()) {
            payable(address(_masterVault)).sendValue(returnedAmount);
        } else {
            token.safeTransfer(payable(address(_masterVault)), returnedAmount);
        }

        // notify the pool of accrued fees
        if (token.isEqual(_bnt)) {
            IBNTPool cachedBNTPool = _bntPool;

            cachedBNTPool.onFeesCollected(token, feeAmount, false);
        } else {
            // get the pool and verify that it exists
            IPoolCollection poolCollection = _poolCollection(token);
            poolCollection.onFeesCollected(token, feeAmount);
        }

        emit FlashLoanCompleted({ token: token, borrower: msg.sender, amount: amount, feeAmount: feeAmount });
    }

    /**
     * @inheritdoc IBancorNetwork
     */
    function migrateLiquidity(
        Token token,
        address provider,
        uint256 amount,
        uint256 availableAmount,
        uint256 originalAmount
    ) external payable whenNotPaused onlyRoleMember(ROLE_MIGRATION_MANAGER) nonReentrant {
        bytes32 contextId = keccak256(
            abi.encodePacked(msg.sender, _time(), token, provider, amount, availableAmount, originalAmount)
        );

        if (token.isEqual(_bnt)) {
            _depositBNTFor(contextId, provider, amount, msg.sender, true, originalAmount);
        } else {
            _depositBaseTokenFor(contextId, provider, token, amount, msg.sender, availableAmount);
        }

        emit FundsMigrated(contextId, token, provider, amount, availableAmount, originalAmount);
    }

    /**
     * @inheritdoc IBancorNetwork
     */
    function burnNetworkFees() external whenNotPaused nonReentrant returns (uint256) {
        uint256 currentPendingNetworkFeeAmount = _pendingNetworkFeeAmount;
        if (currentPendingNetworkFeeAmount < _minNetworkFeeBurn) {
            return 0;
        }

        _pendingNetworkFeeAmount = 0;

        // transferring bnt to the token's address burns the tokens
        _masterVault.withdrawFunds(Token(address(_bnt)), payable(address(_bnt)), currentPendingNetworkFeeAmount);

        emit NetworkFeesBurned(msg.sender, currentPendingNetworkFeeAmount);

        return currentPendingNetworkFeeAmount;
    }

    /**
     * @dev pauses the network
     *
     * requirements:
     *
     * - the caller must have the ROLE_EMERGENCY_STOPPER privilege
     */
    function pause() external onlyRoleMember(ROLE_EMERGENCY_STOPPER) {
        _pause();
    }

    /**
     * @dev resumes the network
     *
     * requirements:
     *
     * - the caller must have the ROLE_EMERGENCY_STOPPER privilege
     */
    function resume() external onlyRoleMember(ROLE_EMERGENCY_STOPPER) {
        _unpause();
    }

    /**
     * @dev returns whether deposits are enabled
     */
    function depositingEnabled() external view returns (bool) {
        return _depositingEnabled;
    }

    /**
     * @dev enables/disables depositing into a given pool
     *
     * requirements:
     *
     * - the caller must be the owner of the contract
     */
    function enableDepositing(bool status) external onlyAdmin {
        if (_depositingEnabled == status) {
            return;
        }

        _depositingEnabled = status;
    }

    /**
     * @dev returns the POL rewards ppm
     */
    function polRewardsPPM() external view returns (uint32) {
        return _polRewardsPPM;
    }

    /**
     * @dev set the POL rewards ppm
     */
    function setPOLRewardsPPM(uint32 newRewardsPPM) external onlyAdmin validFee(newRewardsPPM) {
        _setPOLRewardsPPM(newRewardsPPM);
    }

    /**
     * @dev set the POL rewards ppm
     */
    function _setPOLRewardsPPM(uint32 newRewardsPPM) private {
        uint32 oldRewardsPPM = _polRewardsPPM;
        if (oldRewardsPPM == newRewardsPPM) {
            return;
        }

        _polRewardsPPM = newRewardsPPM;
        emit POLRewardsPPMUpdated(oldRewardsPPM, newRewardsPPM);
    }

    /**
     * @dev returns the min network fee burn
     */
    function minNetworkFeeBurn() external view returns (uint256) {
        return _minNetworkFeeBurn;
    }

    /**
     * @dev set the min network fee burn
     */
    function setMinNetworkFeeBurn(
        uint256 newMinNetworkFeeBurn
    ) external onlyAdmin greaterThanZero(newMinNetworkFeeBurn) {
        _setMinNetworkFeeBurn(newMinNetworkFeeBurn);
    }

    /**
     * @dev set the min network fee burn
     */
    function _setMinNetworkFeeBurn(uint256 newMinNetworkFeeBurn) private {
        uint256 oldMinNetworkFeeBurn = _minNetworkFeeBurn;
        if (oldMinNetworkFeeBurn == newMinNetworkFeeBurn) {
            return;
        }

        _minNetworkFeeBurn = newMinNetworkFeeBurn;
        emit MinNetworkFeeBurnUpdated(oldMinNetworkFeeBurn, newMinNetworkFeeBurn);
    }

    /**
     * @dev generates context ID for a deposit request
     */
    function _depositContextId(
        address provider,
        Token pool,
        uint256 tokenAmount,
        address caller
    ) private view returns (bytes32) {
        return keccak256(abi.encodePacked(caller, _time(), provider, pool, tokenAmount));
    }

    /**
     * @dev generates context ID for a withdraw request
     */
    function _withdrawContextId(uint256 id, address caller) private view returns (bytes32) {
        return keccak256(abi.encodePacked(caller, _time(), id));
    }

    /**
     * @dev deposits liquidity for the specified provider from caller
     *
     * requirements:
     *
     * - the caller must have approved the network to transfer the liquidity tokens on its behalf
     */
    function _depositFor(address provider, Token pool, uint256 tokenAmount, address caller) private returns (uint256) {
        bytes32 contextId = _depositContextId(provider, pool, tokenAmount, caller);

        if (pool.isEqual(_bnt)) {
            return _depositBNTFor(contextId, provider, tokenAmount, caller, false, 0);
        }

        return _depositBaseTokenFor(contextId, provider, pool, tokenAmount, caller, tokenAmount);
    }

    /**
     * @dev deposits BNT liquidity for the specified provider from caller
     *
     * requirements:
     *
     * - the caller must have approved the network to transfer BNT on its behalf
     */
    function _depositBNTFor(
        bytes32 contextId,
        address provider,
        uint256 bntAmount,
        address caller,
        bool isMigrating,
        uint256 originalAmount
    ) private returns (uint256) {
        if (msg.value > 0) {
            revert NativeTokenAmountMismatch();
        }

        IBNTPool cachedBNTPool = _bntPool;

        // transfer the tokens from the caller to the BNT pool
        _bnt.transferFrom(caller, address(cachedBNTPool), bntAmount);

        // process BNT pool deposit
        return cachedBNTPool.depositFor(contextId, provider, bntAmount, isMigrating, originalAmount);
    }

    /**
     * @dev deposits base token liquidity for the specified provider from sender
     *
     * requirements:
     *
     * - the caller must have approved the network to transfer base tokens to on its behalf
     */
    function _depositBaseTokenFor(
        bytes32 contextId,
        address provider,
        Token pool,
        uint256 tokenAmount,
        address caller,
        uint256 availableAmount
    ) private returns (uint256) {
        // transfer the tokens from the sender to the vault
        _depositToMasterVault(pool, caller, availableAmount);

        // get the pool collection that managed this pool
        IPoolCollection poolCollection = _poolCollection(pool);

        // process deposit to the base token pool (includes the native token pool)
        return poolCollection.depositFor(contextId, provider, pool, tokenAmount);
    }

    /**
     * @dev handles BNT withdrawal
     */
    function _withdrawBNT(
        bytes32 contextId,
        address provider,
        CompletedWithdrawal memory completedRequest
    ) private returns (uint256) {
        IBNTPool cachedBNTPool = _bntPool;

        // transfer the pool tokens to from the pending withdrawals contract to the BNT pool
        completedRequest.poolToken.transferFrom(
            address(_pendingWithdrawals),
            address(cachedBNTPool),
            completedRequest.poolTokenAmount
        );

        // transfer vBNT from the caller to the BNT pool
        _vbnt.transferFrom(provider, address(cachedBNTPool), completedRequest.poolTokenAmount);

        // call withdraw on the BNT pool
        return
            cachedBNTPool.withdraw(
                contextId,
                provider,
                completedRequest.poolTokenAmount,
                completedRequest.reserveTokenAmount
            );
    }

    /**
     * @dev handles base token withdrawal
     */
    function _withdrawBaseToken(
        bytes32 contextId,
        address provider,
        CompletedWithdrawal memory completedRequest
    ) private returns (uint256) {
        Token pool = completedRequest.poolToken.reserveToken();

        // get the pool collection that manages this pool
        IPoolCollection poolCollection = _poolCollection(pool);

        // transfer the pool tokens to from the pending withdrawals contract to the pool collection
        completedRequest.poolToken.transferFrom(
            address(_pendingWithdrawals),
            address(poolCollection),
            completedRequest.poolTokenAmount
        );

        // call withdraw on the base token pool - returns the amounts/breakdown
        return
            poolCollection.withdraw(
                contextId,
                provider,
                pool,
                completedRequest.poolTokenAmount,
                completedRequest.reserveTokenAmount
            );
    }

    /**
     * @dev verifies that the provided trade params are valid
     */
    function _verifyTradeParams(
        Token sourceToken,
        Token targetToken,
        uint256 amount,
        uint256 limit,
        uint256 deadline
    ) internal view {
        _validAddress(address(sourceToken));
        _validAddress(address(targetToken));

        if (sourceToken == targetToken) {
            revert InvalidToken();
        }

        _greaterThanZero(amount);
        _greaterThanZero(limit);

        if (deadline < _time()) {
            revert DeadlineExpired();
        }
    }

    /**
     * @dev internal trade by source amount logic
     */
    function _tradeBySourceAmount(
        Token sourceToken,
        Token targetToken,
        uint256 sourceAmount,
        uint256 minReturnAmount,
        uint256 deadline,
        address beneficiary,
        address sender
    ) private returns (uint256) {
        _verifyTradeParams(sourceToken, targetToken, sourceAmount, minReturnAmount, deadline);
        bool _ignoreFees = false;
        if (sender == _bancorArbitrage) {
            _ignoreFees = true;
        }

        return
            _trade(
                TradeTokens({ sourceToken: sourceToken, targetToken: targetToken }),
                TradeParams({
                    bySourceAmount: true,
                    amount: sourceAmount,
                    limit: minReturnAmount,
                    ignoreFees: _ignoreFees
                }),
                TraderInfo({ trader: sender, beneficiary: beneficiary }),
                deadline
            );
    }

    /**
     * @dev internal trade by target amount logic
     */
    function _tradeByTargetAmount(
        Token sourceToken,
        Token targetToken,
        uint256 targetAmount,
        uint256 maxSourceAmount,
        uint256 deadline,
        address beneficiary,
        address sender
    ) private returns (uint256) {
        _verifyTradeParams(sourceToken, targetToken, targetAmount, maxSourceAmount, deadline);
        bool _ignoreFees = false;
        if (sender == _bancorArbitrage) {
            _ignoreFees = true;
        }

        return
            _trade(
                TradeTokens({ sourceToken: sourceToken, targetToken: targetToken }),
                TradeParams({
                    bySourceAmount: false,
                    amount: targetAmount,
                    limit: maxSourceAmount,
                    ignoreFees: _ignoreFees
                }),
                TraderInfo({ trader: sender, beneficiary: beneficiary }),
                deadline
            );
    }

    /**
     * @dev performs a trade by providing either the source or target amount:
     *
     * - when trading by the source amount, the amount represents the source amount and the limit is the minimum return
     *   amount
     * - when trading by the target amount, the amount represents the target amount and the limit is the maximum source
     *   amount
     *
     * requirements:
     *
     * - the caller must have approved the network to transfer the source tokens on its behalf (except for in the
     *   native token case)
     */
    function _trade(
        TradeTokens memory tokens,
        TradeParams memory params,
        TraderInfo memory traderInfo,
        uint256 deadline
    ) private returns (uint256) {
        // ensure the beneficiary is set
        if (traderInfo.beneficiary == address(0)) {
            traderInfo.beneficiary = traderInfo.trader;
        }

        bytes32 contextId = keccak256(
            abi.encodePacked(
                traderInfo.trader,
                _time(),
                tokens.sourceToken,
                tokens.targetToken,
                params.amount,
                params.limit,
                params.bySourceAmount,
                deadline,
                traderInfo.beneficiary
            )
        );

        // perform either a single or double hop trade, based on the source and the target pool
        TradeResult memory firstHopTradeResult;
        TradeResult memory lastHopTradeResult;
        uint256 networkFeeAmount;

        if (tokens.sourceToken.isEqual(_bnt)) {
            lastHopTradeResult = _tradeBNT(contextId, tokens.targetToken, true, params);

            firstHopTradeResult = lastHopTradeResult;

            networkFeeAmount = lastHopTradeResult.networkFeeAmount;

            emit TokensTraded({
                contextId: contextId,
                sourceToken: tokens.sourceToken,
                targetToken: tokens.targetToken,
                sourceAmount: lastHopTradeResult.sourceAmount,
                targetAmount: lastHopTradeResult.targetAmount,
                bntAmount: lastHopTradeResult.sourceAmount,
                targetFeeAmount: lastHopTradeResult.tradingFeeAmount,
                bntFeeAmount: 0,
                trader: traderInfo.trader
            });
        } else if (tokens.targetToken.isEqual(_bnt)) {
            lastHopTradeResult = _tradeBNT(contextId, tokens.sourceToken, false, params);

            firstHopTradeResult = lastHopTradeResult;

            networkFeeAmount = lastHopTradeResult.networkFeeAmount;

            emit TokensTraded({
                contextId: contextId,
                sourceToken: tokens.sourceToken,
                targetToken: tokens.targetToken,
                sourceAmount: lastHopTradeResult.sourceAmount,
                targetAmount: lastHopTradeResult.targetAmount,
                bntAmount: lastHopTradeResult.targetAmount,
                targetFeeAmount: lastHopTradeResult.tradingFeeAmount,
                bntFeeAmount: lastHopTradeResult.tradingFeeAmount,
                trader: traderInfo.trader
            });
        } else {
            (firstHopTradeResult, lastHopTradeResult) = _tradeBaseTokens(contextId, tokens, params);

            networkFeeAmount = firstHopTradeResult.networkFeeAmount + lastHopTradeResult.networkFeeAmount;

            emit TokensTraded({
                contextId: contextId,
                sourceToken: tokens.sourceToken,
                targetToken: tokens.targetToken,
                sourceAmount: firstHopTradeResult.sourceAmount,
                targetAmount: lastHopTradeResult.targetAmount,
                bntAmount: firstHopTradeResult.targetAmount,
                targetFeeAmount: lastHopTradeResult.tradingFeeAmount,
                bntFeeAmount: firstHopTradeResult.tradingFeeAmount,
                trader: traderInfo.trader
            });
        }

        // transfer the tokens from the trader to the vault
        _depositToMasterVault(tokens.sourceToken, traderInfo.trader, firstHopTradeResult.sourceAmount);

        // transfer the target tokens/native token to the beneficiary
        _masterVault.withdrawFunds(
            tokens.targetToken,
            payable(traderInfo.beneficiary),
            lastHopTradeResult.targetAmount
        );

        // update the pending network fee amount to be burned by the vortex
        _pendingNetworkFeeAmount += networkFeeAmount;

        return params.bySourceAmount ? lastHopTradeResult.targetAmount : firstHopTradeResult.sourceAmount;
    }

    /**
     * @dev performs a single hop between BNT and a base token trade by providing either the source or the target amount
     *
     * - when trading by the source amount, the amount represents the source amount and the limit is the minimum return
     *   amount
     * - when trading by the target amount, the amount represents the target amount and the limit is the maximum source
     *   amount
     */
    function _tradeBNT(
        bytes32 contextId,
        Token pool,
        bool fromBNT,
        TradeParams memory params
    ) private returns (TradeResult memory) {
        TradeTokens memory tokens = fromBNT
            ? TradeTokens({ sourceToken: Token(address(_bnt)), targetToken: pool })
            : TradeTokens({ sourceToken: pool, targetToken: Token(address(_bnt)) });

        TradeAmountAndFee memory tradeAmountsAndFee = params.bySourceAmount
            ? _poolCollection(pool).tradeBySourceAmount(
                contextId,
                tokens.sourceToken,
                tokens.targetToken,
                params.amount,
                params.limit,
                params.ignoreFees
            )
            : _poolCollection(pool).tradeByTargetAmount(
                contextId,
                tokens.sourceToken,
                tokens.targetToken,
                params.amount,
                params.limit,
                params.ignoreFees
            );

        // if the target token is BNT, notify the BNT pool on collected fees (which shouldn't include the network fee
        // amount, so we have to deduct it explicitly from the full trading fee amount)
        if (!fromBNT) {
            _bntPool.onFeesCollected(
                pool,
                tradeAmountsAndFee.tradingFeeAmount - tradeAmountsAndFee.networkFeeAmount,
                true
            );
        }

        return
            TradeResult({
                sourceAmount: params.bySourceAmount ? params.amount : tradeAmountsAndFee.amount,
                targetAmount: params.bySourceAmount ? tradeAmountsAndFee.amount : params.amount,
                tradingFeeAmount: tradeAmountsAndFee.tradingFeeAmount,
                networkFeeAmount: tradeAmountsAndFee.networkFeeAmount
            });
    }

    /**
     * @dev performs a double hop trade between two base tokens by providing either the source or the target amount
     *
     * - when trading by the source amount, the amount represents the source amount and the limit is the minimum return
     *   amount
     * - when trading by the target amount, the amount represents the target amount and the limit is the maximum source
     *   amount
     */
    function _tradeBaseTokens(
        bytes32 contextId,
        TradeTokens memory tokens,
        TradeParams memory params
    ) private returns (TradeResult memory, TradeResult memory) {
        if (params.bySourceAmount) {
            uint256 sourceAmount = params.amount;
            uint256 minReturnAmount = params.limit;

            // trade source tokens to BNT (while accepting any return amount)
            TradeResult memory targetHop1 = _tradeBNT(
                contextId,
                tokens.sourceToken,
                false,
                TradeParams({ bySourceAmount: true, amount: sourceAmount, limit: 1, ignoreFees: params.ignoreFees })
            );

            // trade the received BNT target amount to target tokens (while respecting the minimum return amount)
            TradeResult memory targetHop2 = _tradeBNT(
                contextId,
                tokens.targetToken,
                true,
                TradeParams({
                    bySourceAmount: true,
                    amount: targetHop1.targetAmount,
                    limit: minReturnAmount,
                    ignoreFees: params.ignoreFees
                })
            );

            return (targetHop1, targetHop2);
        }

        uint256 targetAmount = params.amount;
        uint256 maxSourceAmount = params.limit;

        // trade any amount of BNT to get the requested target amount (we will use the actual traded amount to restrict
        // the trade from the source)
        TradeResult memory sourceHop2 = _tradeBNT(
            contextId,
            tokens.targetToken,
            true,
            TradeParams({
                bySourceAmount: false,
                amount: targetAmount,
                limit: type(uint256).max,
                ignoreFees: params.ignoreFees
            })
        );

        // trade source tokens to the required amount of BNT (while respecting the maximum source amount)
        TradeResult memory sourceHop1 = _tradeBNT(
            contextId,
            tokens.sourceToken,
            false,
            TradeParams({
                bySourceAmount: false,
                amount: sourceHop2.sourceAmount,
                limit: maxSourceAmount,
                ignoreFees: params.ignoreFees
            })
        );

        return (sourceHop1, sourceHop2);
    }

    /**
     * @dev deposits tokens to the master vault and verifies that msg.value corresponds to its type
     */
    function _depositToMasterVault(Token token, address caller, uint256 amount) private {
        if (token.isNative()) {
            if (msg.value < amount) {
                revert NativeTokenAmountMismatch();
            }

            // using a regular transfer here would revert due to exceeding the 2300 gas limit which is why we're using
            // call instead (via sendValue), which the 2300 gas limit does not apply for
            payable(address(_masterVault)).sendValue(amount);

            // refund the caller for the remaining native token amount
            if (msg.value > amount) {
                payable(address(caller)).sendValue(msg.value - amount);
            }
        } else {
            if (msg.value > 0) {
                revert NativeTokenAmountMismatch();
            }

            token.safeTransferFrom(caller, address(_masterVault), amount);
        }
    }

    /**
     * @dev verifies that the specified pool is managed by a valid pool collection and returns it
     */
    function _poolCollection(Token token) private view returns (IPoolCollection) {
        // verify that the pool is managed by a valid pool collection
        IPoolCollection poolCollection = _collectionByPool[token];
        if (address(poolCollection) == address(0)) {
            revert InvalidToken();
        }

        return poolCollection;
    }

    /**
     * @dev initiates liquidity withdrawal
     */
    function _initWithdrawal(
        address provider,
        IPoolToken poolToken,
        uint256 poolTokenAmount
    ) private returns (uint256) {
        if (poolToken != _bntPoolToken) {
            Token reserveToken = poolToken.reserveToken();
            if (_poolCollection(reserveToken).poolToken(reserveToken) != poolToken) {
                revert InvalidPool();
            }
        }

        // transfer the pool tokens from the provider (we aren't using safeTransferFrom, since the PoolToken is a fully
        // compliant ERC20 token contract)
        poolToken.transferFrom(provider, address(_pendingWithdrawals), poolTokenAmount);

        return _pendingWithdrawals.initWithdrawal(provider, poolToken, poolTokenAmount);
    }

    /**
     * @dev grants/revokes required roles to/from a pool collection
     */
    function _setAccessRoles(IPoolCollection poolCollection, bool set) private {
        address poolCollectionAddress = address(poolCollection);

        if (set) {
            _bntPool.grantRole(ROLE_BNT_MANAGER, poolCollectionAddress);
            _bntPool.grantRole(ROLE_VAULT_MANAGER, poolCollectionAddress);
            _bntPool.grantRole(ROLE_FUNDING_MANAGER, poolCollectionAddress);
            _masterVault.grantRole(ROLE_ASSET_MANAGER, poolCollectionAddress);
            _externalProtectionVault.grantRole(ROLE_ASSET_MANAGER, poolCollectionAddress);
        } else {
            _bntPool.revokeRole(ROLE_BNT_MANAGER, poolCollectionAddress);
            _bntPool.revokeRole(ROLE_VAULT_MANAGER, poolCollectionAddress);
            _bntPool.revokeRole(ROLE_FUNDING_MANAGER, poolCollectionAddress);
            _masterVault.revokeRole(ROLE_ASSET_MANAGER, poolCollectionAddress);
            _externalProtectionVault.revokeRole(ROLE_ASSET_MANAGER, poolCollectionAddress);
        }
    }

    /*
     * @dev finds a pool collection with the given type and version
     */
    function _findPoolCollection(uint16 poolType, uint16 poolVersion) private view returns (IPoolCollection) {
        // note that there's no risk of using an unbounded loop here since the list of all the active pool collections
        // is always going to remain sufficiently small
        uint256 length = _poolCollections.length();
        for (uint256 i = 0; i < length; i++) {
            IPoolCollection poolCollection = IPoolCollection(_poolCollections.at(i));
            if ((poolCollection.poolType() == poolType && poolCollection.version() == poolVersion)) {
                return poolCollection;
            }
        }

        return IPoolCollection(address(0));
    }
}

File 2 of 49 : IClaimable.sol
// SPDX-License-Identifier: MIT
pragma solidity >=0.6.12;

/// @title Claimable contract interface
interface IClaimable {
    function owner() external view returns (address);

    function transferOwnership(address newOwner) external;

    function acceptOwnership() external;
}

File 3 of 49 : IMintableToken.sol
// SPDX-License-Identifier: MIT
pragma solidity >=0.6.12;

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

import "./IClaimable.sol";

/// @title Mintable Token interface
interface IMintableToken is IERC20, IClaimable {
    function issue(address to, uint256 amount) external;

    function destroy(address from, uint256 amount) external;
}

File 4 of 49 : ITokenGovernance.sol
// SPDX-License-Identifier: MIT
pragma solidity >=0.6.12;

import "./IMintableToken.sol";

/// @title The interface for mintable/burnable token governance.
interface ITokenGovernance {
    // The address of the mintable ERC20 token.
    function token() external view returns (IMintableToken);

    /// @dev Mints new tokens.
    ///
    /// @param to Account to receive the new amount.
    /// @param amount Amount to increase the supply by.
    ///
    function mint(address to, uint256 amount) external;

    /// @dev Burns tokens from the caller.
    ///
    /// @param amount Amount to decrease the supply by.
    ///
    function burn(uint256 amount) external;
}

File 5 of 49 : AccessControlEnumerableUpgradeable.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.5.0) (access/AccessControlEnumerable.sol)

pragma solidity ^0.8.0;

import "./IAccessControlEnumerableUpgradeable.sol";
import "./AccessControlUpgradeable.sol";
import "../utils/structs/EnumerableSetUpgradeable.sol";
import "../proxy/utils/Initializable.sol";

/**
 * @dev Extension of {AccessControl} that allows enumerating the members of each role.
 */
abstract contract AccessControlEnumerableUpgradeable is Initializable, IAccessControlEnumerableUpgradeable, AccessControlUpgradeable {
    function __AccessControlEnumerable_init() internal onlyInitializing {
    }

    function __AccessControlEnumerable_init_unchained() internal onlyInitializing {
    }
    using EnumerableSetUpgradeable for EnumerableSetUpgradeable.AddressSet;

    mapping(bytes32 => EnumerableSetUpgradeable.AddressSet) private _roleMembers;

    /**
     * @dev See {IERC165-supportsInterface}.
     */
    function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) {
        return interfaceId == type(IAccessControlEnumerableUpgradeable).interfaceId || super.supportsInterface(interfaceId);
    }

    /**
     * @dev Returns one of the accounts that have `role`. `index` must be a
     * value between 0 and {getRoleMemberCount}, non-inclusive.
     *
     * Role bearers are not sorted in any particular way, and their ordering may
     * change at any point.
     *
     * WARNING: When using {getRoleMember} and {getRoleMemberCount}, make sure
     * you perform all queries on the same block. See the following
     * https://forum.openzeppelin.com/t/iterating-over-elements-on-enumerableset-in-openzeppelin-contracts/2296[forum post]
     * for more information.
     */
    function getRoleMember(bytes32 role, uint256 index) public view virtual override returns (address) {
        return _roleMembers[role].at(index);
    }

    /**
     * @dev Returns the number of accounts that have `role`. Can be used
     * together with {getRoleMember} to enumerate all bearers of a role.
     */
    function getRoleMemberCount(bytes32 role) public view virtual override returns (uint256) {
        return _roleMembers[role].length();
    }

    /**
     * @dev Overload {_grantRole} to track enumerable memberships
     */
    function _grantRole(bytes32 role, address account) internal virtual override {
        super._grantRole(role, account);
        _roleMembers[role].add(account);
    }

    /**
     * @dev Overload {_revokeRole} to track enumerable memberships
     */
    function _revokeRole(bytes32 role, address account) internal virtual override {
        super._revokeRole(role, account);
        _roleMembers[role].remove(account);
    }

    /**
     * @dev This empty reserved space is put in place to allow future versions to add new
     * variables without shifting down storage in the inheritance chain.
     * See https://docs.openzeppelin.com/contracts/4.x/upgradeable#storage_gaps
     */
    uint256[49] private __gap;
}

File 6 of 49 : AccessControlUpgradeable.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.5.0) (access/AccessControl.sol)

pragma solidity ^0.8.0;

import "./IAccessControlUpgradeable.sol";
import "../utils/ContextUpgradeable.sol";
import "../utils/StringsUpgradeable.sol";
import "../utils/introspection/ERC165Upgradeable.sol";
import "../proxy/utils/Initializable.sol";

/**
 * @dev Contract module that allows children to implement role-based access
 * control mechanisms. This is a lightweight version that doesn't allow enumerating role
 * members except through off-chain means by accessing the contract event logs. Some
 * applications may benefit from on-chain enumerability, for those cases see
 * {AccessControlEnumerable}.
 *
 * Roles are referred to by their `bytes32` identifier. These should be exposed
 * in the external API and be unique. The best way to achieve this is by
 * using `public constant` hash digests:
 *
 * ```
 * bytes32 public constant MY_ROLE = keccak256("MY_ROLE");
 * ```
 *
 * Roles can be used to represent a set of permissions. To restrict access to a
 * function call, use {hasRole}:
 *
 * ```
 * function foo() public {
 *     require(hasRole(MY_ROLE, msg.sender));
 *     ...
 * }
 * ```
 *
 * Roles can be granted and revoked dynamically via the {grantRole} and
 * {revokeRole} functions. Each role has an associated admin role, and only
 * accounts that have a role's admin role can call {grantRole} and {revokeRole}.
 *
 * By default, the admin role for all roles is `DEFAULT_ADMIN_ROLE`, which means
 * that only accounts with this role will be able to grant or revoke other
 * roles. More complex role relationships can be created by using
 * {_setRoleAdmin}.
 *
 * WARNING: The `DEFAULT_ADMIN_ROLE` is also its own admin: it has permission to
 * grant and revoke this role. Extra precautions should be taken to secure
 * accounts that have been granted it.
 */
abstract contract AccessControlUpgradeable is Initializable, ContextUpgradeable, IAccessControlUpgradeable, ERC165Upgradeable {
    function __AccessControl_init() internal onlyInitializing {
    }

    function __AccessControl_init_unchained() internal onlyInitializing {
    }
    struct RoleData {
        mapping(address => bool) members;
        bytes32 adminRole;
    }

    mapping(bytes32 => RoleData) private _roles;

    bytes32 public constant DEFAULT_ADMIN_ROLE = 0x00;

    /**
     * @dev Modifier that checks that an account has a specific role. Reverts
     * with a standardized message including the required role.
     *
     * The format of the revert reason is given by the following regular expression:
     *
     *  /^AccessControl: account (0x[0-9a-f]{40}) is missing role (0x[0-9a-f]{64})$/
     *
     * _Available since v4.1._
     */
    modifier onlyRole(bytes32 role) {
        _checkRole(role, _msgSender());
        _;
    }

    /**
     * @dev See {IERC165-supportsInterface}.
     */
    function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) {
        return interfaceId == type(IAccessControlUpgradeable).interfaceId || super.supportsInterface(interfaceId);
    }

    /**
     * @dev Returns `true` if `account` has been granted `role`.
     */
    function hasRole(bytes32 role, address account) public view virtual override returns (bool) {
        return _roles[role].members[account];
    }

    /**
     * @dev Revert with a standard message if `account` is missing `role`.
     *
     * The format of the revert reason is given by the following regular expression:
     *
     *  /^AccessControl: account (0x[0-9a-f]{40}) is missing role (0x[0-9a-f]{64})$/
     */
    function _checkRole(bytes32 role, address account) internal view virtual {
        if (!hasRole(role, account)) {
            revert(
                string(
                    abi.encodePacked(
                        "AccessControl: account ",
                        StringsUpgradeable.toHexString(uint160(account), 20),
                        " is missing role ",
                        StringsUpgradeable.toHexString(uint256(role), 32)
                    )
                )
            );
        }
    }

    /**
     * @dev Returns the admin role that controls `role`. See {grantRole} and
     * {revokeRole}.
     *
     * To change a role's admin, use {_setRoleAdmin}.
     */
    function getRoleAdmin(bytes32 role) public view virtual override returns (bytes32) {
        return _roles[role].adminRole;
    }

    /**
     * @dev Grants `role` to `account`.
     *
     * If `account` had not been already granted `role`, emits a {RoleGranted}
     * event.
     *
     * Requirements:
     *
     * - the caller must have ``role``'s admin role.
     */
    function grantRole(bytes32 role, address account) public virtual override onlyRole(getRoleAdmin(role)) {
        _grantRole(role, account);
    }

    /**
     * @dev Revokes `role` from `account`.
     *
     * If `account` had been granted `role`, emits a {RoleRevoked} event.
     *
     * Requirements:
     *
     * - the caller must have ``role``'s admin role.
     */
    function revokeRole(bytes32 role, address account) public virtual override onlyRole(getRoleAdmin(role)) {
        _revokeRole(role, account);
    }

    /**
     * @dev Revokes `role` from the calling account.
     *
     * Roles are often managed via {grantRole} and {revokeRole}: this function's
     * purpose is to provide a mechanism for accounts to lose their privileges
     * if they are compromised (such as when a trusted device is misplaced).
     *
     * If the calling account had been revoked `role`, emits a {RoleRevoked}
     * event.
     *
     * Requirements:
     *
     * - the caller must be `account`.
     */
    function renounceRole(bytes32 role, address account) public virtual override {
        require(account == _msgSender(), "AccessControl: can only renounce roles for self");

        _revokeRole(role, account);
    }

    /**
     * @dev Grants `role` to `account`.
     *
     * If `account` had not been already granted `role`, emits a {RoleGranted}
     * event. Note that unlike {grantRole}, this function doesn't perform any
     * checks on the calling account.
     *
     * [WARNING]
     * ====
     * This function should only be called from the constructor when setting
     * up the initial roles for the system.
     *
     * Using this function in any other way is effectively circumventing the admin
     * system imposed by {AccessControl}.
     * ====
     *
     * NOTE: This function is deprecated in favor of {_grantRole}.
     */
    function _setupRole(bytes32 role, address account) internal virtual {
        _grantRole(role, account);
    }

    /**
     * @dev Sets `adminRole` as ``role``'s admin role.
     *
     * Emits a {RoleAdminChanged} event.
     */
    function _setRoleAdmin(bytes32 role, bytes32 adminRole) internal virtual {
        bytes32 previousAdminRole = getRoleAdmin(role);
        _roles[role].adminRole = adminRole;
        emit RoleAdminChanged(role, previousAdminRole, adminRole);
    }

    /**
     * @dev Grants `role` to `account`.
     *
     * Internal function without access restriction.
     */
    function _grantRole(bytes32 role, address account) internal virtual {
        if (!hasRole(role, account)) {
            _roles[role].members[account] = true;
            emit RoleGranted(role, account, _msgSender());
        }
    }

    /**
     * @dev Revokes `role` from `account`.
     *
     * Internal function without access restriction.
     */
    function _revokeRole(bytes32 role, address account) internal virtual {
        if (hasRole(role, account)) {
            _roles[role].members[account] = false;
            emit RoleRevoked(role, account, _msgSender());
        }
    }

    /**
     * @dev This empty reserved space is put in place to allow future versions to add new
     * variables without shifting down storage in the inheritance chain.
     * See https://docs.openzeppelin.com/contracts/4.x/upgradeable#storage_gaps
     */
    uint256[49] private __gap;
}

File 7 of 49 : IAccessControlEnumerableUpgradeable.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (access/IAccessControlEnumerable.sol)

pragma solidity ^0.8.0;

import "./IAccessControlUpgradeable.sol";

/**
 * @dev External interface of AccessControlEnumerable declared to support ERC165 detection.
 */
interface IAccessControlEnumerableUpgradeable is IAccessControlUpgradeable {
    /**
     * @dev Returns one of the accounts that have `role`. `index` must be a
     * value between 0 and {getRoleMemberCount}, non-inclusive.
     *
     * Role bearers are not sorted in any particular way, and their ordering may
     * change at any point.
     *
     * WARNING: When using {getRoleMember} and {getRoleMemberCount}, make sure
     * you perform all queries on the same block. See the following
     * https://forum.openzeppelin.com/t/iterating-over-elements-on-enumerableset-in-openzeppelin-contracts/2296[forum post]
     * for more information.
     */
    function getRoleMember(bytes32 role, uint256 index) external view returns (address);

    /**
     * @dev Returns the number of accounts that have `role`. Can be used
     * together with {getRoleMember} to enumerate all bearers of a role.
     */
    function getRoleMemberCount(bytes32 role) external view returns (uint256);
}

File 8 of 49 : IAccessControlUpgradeable.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (access/IAccessControl.sol)

pragma solidity ^0.8.0;

/**
 * @dev External interface of AccessControl declared to support ERC165 detection.
 */
interface IAccessControlUpgradeable {
    /**
     * @dev Emitted when `newAdminRole` is set as ``role``'s admin role, replacing `previousAdminRole`
     *
     * `DEFAULT_ADMIN_ROLE` is the starting admin for all roles, despite
     * {RoleAdminChanged} not being emitted signaling this.
     *
     * _Available since v3.1._
     */
    event RoleAdminChanged(bytes32 indexed role, bytes32 indexed previousAdminRole, bytes32 indexed newAdminRole);

    /**
     * @dev Emitted when `account` is granted `role`.
     *
     * `sender` is the account that originated the contract call, an admin role
     * bearer except when using {AccessControl-_setupRole}.
     */
    event RoleGranted(bytes32 indexed role, address indexed account, address indexed sender);

    /**
     * @dev Emitted when `account` is revoked `role`.
     *
     * `sender` is the account that originated the contract call:
     *   - if using `revokeRole`, it is the admin role bearer
     *   - if using `renounceRole`, it is the role bearer (i.e. `account`)
     */
    event RoleRevoked(bytes32 indexed role, address indexed account, address indexed sender);

    /**
     * @dev Returns `true` if `account` has been granted `role`.
     */
    function hasRole(bytes32 role, address account) external view returns (bool);

    /**
     * @dev Returns the admin role that controls `role`. See {grantRole} and
     * {revokeRole}.
     *
     * To change a role's admin, use {AccessControl-_setRoleAdmin}.
     */
    function getRoleAdmin(bytes32 role) external view returns (bytes32);

    /**
     * @dev Grants `role` to `account`.
     *
     * If `account` had not been already granted `role`, emits a {RoleGranted}
     * event.
     *
     * Requirements:
     *
     * - the caller must have ``role``'s admin role.
     */
    function grantRole(bytes32 role, address account) external;

    /**
     * @dev Revokes `role` from `account`.
     *
     * If `account` had been granted `role`, emits a {RoleRevoked} event.
     *
     * Requirements:
     *
     * - the caller must have ``role``'s admin role.
     */
    function revokeRole(bytes32 role, address account) external;

    /**
     * @dev Revokes `role` from the calling account.
     *
     * Roles are often managed via {grantRole} and {revokeRole}: this function's
     * purpose is to provide a mechanism for accounts to lose their privileges
     * if they are compromised (such as when a trusted device is misplaced).
     *
     * If the calling account had been granted `role`, emits a {RoleRevoked}
     * event.
     *
     * Requirements:
     *
     * - the caller must be `account`.
     */
    function renounceRole(bytes32 role, address account) external;
}

File 9 of 49 : Initializable.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.5.0) (proxy/utils/Initializable.sol)

pragma solidity ^0.8.0;

import "../../utils/AddressUpgradeable.sol";

/**
 * @dev This is a base contract to aid in writing upgradeable contracts, or any kind of contract that will be deployed
 * behind a proxy. Since proxied contracts do not make use of a constructor, it's common to move constructor logic to an
 * external initializer function, usually called `initialize`. It then becomes necessary to protect this initializer
 * function so it can only be called once. The {initializer} modifier provided by this contract will have this effect.
 *
 * TIP: To avoid leaving the proxy in an uninitialized state, the initializer function should be called as early as
 * possible by providing the encoded function call as the `_data` argument to {ERC1967Proxy-constructor}.
 *
 * CAUTION: When used with inheritance, manual care must be taken to not invoke a parent initializer twice, or to ensure
 * that all initializers are idempotent. This is not verified automatically as constructors are by Solidity.
 *
 * [CAUTION]
 * ====
 * Avoid leaving a contract uninitialized.
 *
 * An uninitialized contract can be taken over by an attacker. This applies to both a proxy and its implementation
 * contract, which may impact the proxy. To initialize the implementation contract, you can either invoke the
 * initializer manually, or you can include a constructor to automatically mark it as initialized when it is deployed:
 *
 * [.hljs-theme-light.nopadding]
 * ```
 * /// @custom:oz-upgrades-unsafe-allow constructor
 * constructor() initializer {}
 * ```
 * ====
 */
abstract contract Initializable {
    /**
     * @dev Indicates that the contract has been initialized.
     */
    bool private _initialized;

    /**
     * @dev Indicates that the contract is in the process of being initialized.
     */
    bool private _initializing;

    /**
     * @dev Modifier to protect an initializer function from being invoked twice.
     */
    modifier initializer() {
        // If the contract is initializing we ignore whether _initialized is set in order to support multiple
        // inheritance patterns, but we only do this in the context of a constructor, because in other contexts the
        // contract may have been reentered.
        require(_initializing ? _isConstructor() : !_initialized, "Initializable: contract is already initialized");

        bool isTopLevelCall = !_initializing;
        if (isTopLevelCall) {
            _initializing = true;
            _initialized = true;
        }

        _;

        if (isTopLevelCall) {
            _initializing = false;
        }
    }

    /**
     * @dev Modifier to protect an initialization function so that it can only be invoked by functions with the
     * {initializer} modifier, directly or indirectly.
     */
    modifier onlyInitializing() {
        require(_initializing, "Initializable: contract is not initializing");
        _;
    }

    function _isConstructor() private view returns (bool) {
        return !AddressUpgradeable.isContract(address(this));
    }
}

File 10 of 49 : PausableUpgradeable.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (security/Pausable.sol)

pragma solidity ^0.8.0;

import "../utils/ContextUpgradeable.sol";
import "../proxy/utils/Initializable.sol";

/**
 * @dev Contract module which allows children to implement an emergency stop
 * mechanism that can be triggered by an authorized account.
 *
 * This module is used through inheritance. It will make available the
 * modifiers `whenNotPaused` and `whenPaused`, which can be applied to
 * the functions of your contract. Note that they will not be pausable by
 * simply including this module, only once the modifiers are put in place.
 */
abstract contract PausableUpgradeable is Initializable, ContextUpgradeable {
    /**
     * @dev Emitted when the pause is triggered by `account`.
     */
    event Paused(address account);

    /**
     * @dev Emitted when the pause is lifted by `account`.
     */
    event Unpaused(address account);

    bool private _paused;

    /**
     * @dev Initializes the contract in unpaused state.
     */
    function __Pausable_init() internal onlyInitializing {
        __Pausable_init_unchained();
    }

    function __Pausable_init_unchained() internal onlyInitializing {
        _paused = false;
    }

    /**
     * @dev Returns true if the contract is paused, and false otherwise.
     */
    function paused() public view virtual returns (bool) {
        return _paused;
    }

    /**
     * @dev Modifier to make a function callable only when the contract is not paused.
     *
     * Requirements:
     *
     * - The contract must not be paused.
     */
    modifier whenNotPaused() {
        require(!paused(), "Pausable: paused");
        _;
    }

    /**
     * @dev Modifier to make a function callable only when the contract is paused.
     *
     * Requirements:
     *
     * - The contract must be paused.
     */
    modifier whenPaused() {
        require(paused(), "Pausable: not paused");
        _;
    }

    /**
     * @dev Triggers stopped state.
     *
     * Requirements:
     *
     * - The contract must not be paused.
     */
    function _pause() internal virtual whenNotPaused {
        _paused = true;
        emit Paused(_msgSender());
    }

    /**
     * @dev Returns to normal state.
     *
     * Requirements:
     *
     * - The contract must be paused.
     */
    function _unpause() internal virtual whenPaused {
        _paused = false;
        emit Unpaused(_msgSender());
    }

    /**
     * @dev This empty reserved space is put in place to allow future versions to add new
     * variables without shifting down storage in the inheritance chain.
     * See https://docs.openzeppelin.com/contracts/4.x/upgradeable#storage_gaps
     */
    uint256[49] private __gap;
}

File 11 of 49 : ReentrancyGuardUpgradeable.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (security/ReentrancyGuard.sol)

pragma solidity ^0.8.0;
import "../proxy/utils/Initializable.sol";

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

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

    uint256 private _status;

    function __ReentrancyGuard_init() internal onlyInitializing {
        __ReentrancyGuard_init_unchained();
    }

    function __ReentrancyGuard_init_unchained() internal onlyInitializing {
        _status = _NOT_ENTERED;
    }

    /**
     * @dev Prevents a contract from calling itself, directly or indirectly.
     * Calling a `nonReentrant` function from another `nonReentrant`
     * function is not supported. It is possible to prevent this from happening
     * by making the `nonReentrant` function external, and making it call a
     * `private` function that does the actual work.
     */
    modifier nonReentrant() {
        // On the first call to nonReentrant, _notEntered will be true
        require(_status != _ENTERED, "ReentrancyGuard: reentrant call");

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

        _;

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

    /**
     * @dev This empty reserved space is put in place to allow future versions to add new
     * variables without shifting down storage in the inheritance chain.
     * See https://docs.openzeppelin.com/contracts/4.x/upgradeable#storage_gaps
     */
    uint256[49] private __gap;
}

File 12 of 49 : AddressUpgradeable.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.5.0) (utils/Address.sol)

pragma solidity ^0.8.1;

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

        return account.code.length > 0;
    }

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

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

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

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

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

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

        (bool success, bytes memory returndata) = target.call{value: value}(data);
        return verifyCallResult(success, returndata, errorMessage);
    }

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

    /**
     * @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`],
     * but performing a static call.
     *
     * _Available since v3.3._
     */
    function functionStaticCall(
        address target,
        bytes memory data,
        string memory errorMessage
    ) internal view returns (bytes memory) {
        require(isContract(target), "Address: static call to non-contract");

        (bool success, bytes memory returndata) = target.staticcall(data);
        return verifyCallResult(success, returndata, errorMessage);
    }

    /**
     * @dev Tool to verifies that a low level call was successful, and revert if it wasn't, either by bubbling the
     * revert reason using the provided one.
     *
     * _Available since v4.3._
     */
    function verifyCallResult(
        bool success,
        bytes memory returndata,
        string memory errorMessage
    ) internal pure returns (bytes memory) {
        if (success) {
            return returndata;
        } else {
            // Look for revert reason and bubble it up if present
            if (returndata.length > 0) {
                // The easiest way to bubble the revert reason is using memory via assembly

                assembly {
                    let returndata_size := mload(returndata)
                    revert(add(32, returndata), returndata_size)
                }
            } else {
                revert(errorMessage);
            }
        }
    }
}

File 13 of 49 : ContextUpgradeable.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (utils/Context.sol)

pragma solidity ^0.8.0;
import "../proxy/utils/Initializable.sol";

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

    function __Context_init_unchained() internal onlyInitializing {
    }
    function _msgSender() internal view virtual returns (address) {
        return msg.sender;
    }

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

    /**
     * @dev This empty reserved space is put in place to allow future versions to add new
     * variables without shifting down storage in the inheritance chain.
     * See https://docs.openzeppelin.com/contracts/4.x/upgradeable#storage_gaps
     */
    uint256[50] private __gap;
}

File 14 of 49 : StringsUpgradeable.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (utils/Strings.sol)

pragma solidity ^0.8.0;

/**
 * @dev String operations.
 */
library StringsUpgradeable {
    bytes16 private constant _HEX_SYMBOLS = "0123456789abcdef";

    /**
     * @dev Converts a `uint256` to its ASCII `string` decimal representation.
     */
    function toString(uint256 value) internal pure returns (string memory) {
        // Inspired by OraclizeAPI's implementation - MIT licence
        // https://github.com/oraclize/ethereum-api/blob/b42146b063c7d6ee1358846c198246239e9360e8/oraclizeAPI_0.4.25.sol

        if (value == 0) {
            return "0";
        }
        uint256 temp = value;
        uint256 digits;
        while (temp != 0) {
            digits++;
            temp /= 10;
        }
        bytes memory buffer = new bytes(digits);
        while (value != 0) {
            digits -= 1;
            buffer[digits] = bytes1(uint8(48 + uint256(value % 10)));
            value /= 10;
        }
        return string(buffer);
    }

    /**
     * @dev Converts a `uint256` to its ASCII `string` hexadecimal representation.
     */
    function toHexString(uint256 value) internal pure returns (string memory) {
        if (value == 0) {
            return "0x00";
        }
        uint256 temp = value;
        uint256 length = 0;
        while (temp != 0) {
            length++;
            temp >>= 8;
        }
        return toHexString(value, length);
    }

    /**
     * @dev Converts a `uint256` to its ASCII `string` hexadecimal representation with fixed length.
     */
    function toHexString(uint256 value, uint256 length) internal pure returns (string memory) {
        bytes memory buffer = new bytes(2 * length + 2);
        buffer[0] = "0";
        buffer[1] = "x";
        for (uint256 i = 2 * length + 1; i > 1; --i) {
            buffer[i] = _HEX_SYMBOLS[value & 0xf];
            value >>= 4;
        }
        require(value == 0, "Strings: hex length insufficient");
        return string(buffer);
    }
}

File 15 of 49 : ERC165Upgradeable.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (utils/introspection/ERC165.sol)

pragma solidity ^0.8.0;

import "./IERC165Upgradeable.sol";
import "../../proxy/utils/Initializable.sol";

/**
 * @dev Implementation of the {IERC165} interface.
 *
 * Contracts that want to implement ERC165 should inherit from this contract and override {supportsInterface} to check
 * for the additional interface id that will be supported. For example:
 *
 * ```solidity
 * function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) {
 *     return interfaceId == type(MyInterface).interfaceId || super.supportsInterface(interfaceId);
 * }
 * ```
 *
 * Alternatively, {ERC165Storage} provides an easier to use but more expensive implementation.
 */
abstract contract ERC165Upgradeable is Initializable, IERC165Upgradeable {
    function __ERC165_init() internal onlyInitializing {
    }

    function __ERC165_init_unchained() internal onlyInitializing {
    }
    /**
     * @dev See {IERC165-supportsInterface}.
     */
    function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) {
        return interfaceId == type(IERC165Upgradeable).interfaceId;
    }

    /**
     * @dev This empty reserved space is put in place to allow future versions to add new
     * variables without shifting down storage in the inheritance chain.
     * See https://docs.openzeppelin.com/contracts/4.x/upgradeable#storage_gaps
     */
    uint256[50] private __gap;
}

File 16 of 49 : IERC165Upgradeable.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (utils/introspection/IERC165.sol)

pragma solidity ^0.8.0;

/**
 * @dev Interface of the ERC165 standard, as defined in the
 * https://eips.ethereum.org/EIPS/eip-165[EIP].
 *
 * Implementers can declare support of contract interfaces, which can then be
 * queried by others ({ERC165Checker}).
 *
 * For an implementation, see {ERC165}.
 */
interface IERC165Upgradeable {
    /**
     * @dev Returns true if this contract implements the interface defined by
     * `interfaceId`. See the corresponding
     * https://eips.ethereum.org/EIPS/eip-165#how-interfaces-are-identified[EIP section]
     * to learn more about how these ids are created.
     *
     * This function call must use less than 30 000 gas.
     */
    function supportsInterface(bytes4 interfaceId) external view returns (bool);
}

File 17 of 49 : EnumerableSetUpgradeable.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (utils/structs/EnumerableSet.sol)

pragma solidity ^0.8.0;

/**
 * @dev Library for managing
 * https://en.wikipedia.org/wiki/Set_(abstract_data_type)[sets] of primitive
 * types.
 *
 * Sets have the following properties:
 *
 * - Elements are added, removed, and checked for existence in constant time
 * (O(1)).
 * - Elements are enumerated in O(n). No guarantees are made on the ordering.
 *
 * ```
 * contract Example {
 *     // Add the library methods
 *     using EnumerableSet for EnumerableSet.AddressSet;
 *
 *     // Declare a set state variable
 *     EnumerableSet.AddressSet private mySet;
 * }
 * ```
 *
 * As of v3.3.0, sets of type `bytes32` (`Bytes32Set`), `address` (`AddressSet`)
 * and `uint256` (`UintSet`) are supported.
 */
library EnumerableSetUpgradeable {
    // To implement this library for multiple types with as little code
    // repetition as possible, we write it in terms of a generic Set type with
    // bytes32 values.
    // The Set implementation uses private functions, and user-facing
    // implementations (such as AddressSet) are just wrappers around the
    // underlying Set.
    // This means that we can only create new EnumerableSets for types that fit
    // in bytes32.

    struct Set {
        // Storage of set values
        bytes32[] _values;
        // Position of the value in the `values` array, plus 1 because index 0
        // means a value is not in the set.
        mapping(bytes32 => uint256) _indexes;
    }

    /**
     * @dev Add a value to a set. O(1).
     *
     * Returns true if the value was added to the set, that is if it was not
     * already present.
     */
    function _add(Set storage set, bytes32 value) private returns (bool) {
        if (!_contains(set, value)) {
            set._values.push(value);
            // The value is stored at length-1, but we add 1 to all indexes
            // and use 0 as a sentinel value
            set._indexes[value] = set._values.length;
            return true;
        } else {
            return false;
        }
    }

    /**
     * @dev Removes a value from a set. O(1).
     *
     * Returns true if the value was removed from the set, that is if it was
     * present.
     */
    function _remove(Set storage set, bytes32 value) private returns (bool) {
        // We read and store the value's index to prevent multiple reads from the same storage slot
        uint256 valueIndex = set._indexes[value];

        if (valueIndex != 0) {
            // Equivalent to contains(set, value)
            // To delete an element from the _values array in O(1), we swap the element to delete with the last one in
            // the array, and then remove the last element (sometimes called as 'swap and pop').
            // This modifies the order of the array, as noted in {at}.

            uint256 toDeleteIndex = valueIndex - 1;
            uint256 lastIndex = set._values.length - 1;

            if (lastIndex != toDeleteIndex) {
                bytes32 lastvalue = set._values[lastIndex];

                // Move the last value to the index where the value to delete is
                set._values[toDeleteIndex] = lastvalue;
                // Update the index for the moved value
                set._indexes[lastvalue] = valueIndex; // Replace lastvalue's index to valueIndex
            }

            // Delete the slot where the moved value was stored
            set._values.pop();

            // Delete the index for the deleted slot
            delete set._indexes[value];

            return true;
        } else {
            return false;
        }
    }

    /**
     * @dev Returns true if the value is in the set. O(1).
     */
    function _contains(Set storage set, bytes32 value) private view returns (bool) {
        return set._indexes[value] != 0;
    }

    /**
     * @dev Returns the number of values on the set. O(1).
     */
    function _length(Set storage set) private view returns (uint256) {
        return set._values.length;
    }

    /**
     * @dev Returns the value stored at position `index` in the set. O(1).
     *
     * Note that there are no guarantees on the ordering of values inside the
     * array, and it may change when more values are added or removed.
     *
     * Requirements:
     *
     * - `index` must be strictly less than {length}.
     */
    function _at(Set storage set, uint256 index) private view returns (bytes32) {
        return set._values[index];
    }

    /**
     * @dev Return the entire set in an array
     *
     * WARNING: This operation will copy the entire storage to memory, which can be quite expensive. This is designed
     * to mostly be used by view accessors that are queried without any gas fees. Developers should keep in mind that
     * this function has an unbounded cost, and using it as part of a state-changing function may render the function
     * uncallable if the set grows to a point where copying to memory consumes too much gas to fit in a block.
     */
    function _values(Set storage set) private view returns (bytes32[] memory) {
        return set._values;
    }

    // Bytes32Set

    struct Bytes32Set {
        Set _inner;
    }

    /**
     * @dev Add a value to a set. O(1).
     *
     * Returns true if the value was added to the set, that is if it was not
     * already present.
     */
    function add(Bytes32Set storage set, bytes32 value) internal returns (bool) {
        return _add(set._inner, value);
    }

    /**
     * @dev Removes a value from a set. O(1).
     *
     * Returns true if the value was removed from the set, that is if it was
     * present.
     */
    function remove(Bytes32Set storage set, bytes32 value) internal returns (bool) {
        return _remove(set._inner, value);
    }

    /**
     * @dev Returns true if the value is in the set. O(1).
     */
    function contains(Bytes32Set storage set, bytes32 value) internal view returns (bool) {
        return _contains(set._inner, value);
    }

    /**
     * @dev Returns the number of values in the set. O(1).
     */
    function length(Bytes32Set storage set) internal view returns (uint256) {
        return _length(set._inner);
    }

    /**
     * @dev Returns the value stored at position `index` in the set. O(1).
     *
     * Note that there are no guarantees on the ordering of values inside the
     * array, and it may change when more values are added or removed.
     *
     * Requirements:
     *
     * - `index` must be strictly less than {length}.
     */
    function at(Bytes32Set storage set, uint256 index) internal view returns (bytes32) {
        return _at(set._inner, index);
    }

    /**
     * @dev Return the entire set in an array
     *
     * WARNING: This operation will copy the entire storage to memory, which can be quite expensive. This is designed
     * to mostly be used by view accessors that are queried without any gas fees. Developers should keep in mind that
     * this function has an unbounded cost, and using it as part of a state-changing function may render the function
     * uncallable if the set grows to a point where copying to memory consumes too much gas to fit in a block.
     */
    function values(Bytes32Set storage set) internal view returns (bytes32[] memory) {
        return _values(set._inner);
    }

    // AddressSet

    struct AddressSet {
        Set _inner;
    }

    /**
     * @dev Add a value to a set. O(1).
     *
     * Returns true if the value was added to the set, that is if it was not
     * already present.
     */
    function add(AddressSet storage set, address value) internal returns (bool) {
        return _add(set._inner, bytes32(uint256(uint160(value))));
    }

    /**
     * @dev Removes a value from a set. O(1).
     *
     * Returns true if the value was removed from the set, that is if it was
     * present.
     */
    function remove(AddressSet storage set, address value) internal returns (bool) {
        return _remove(set._inner, bytes32(uint256(uint160(value))));
    }

    /**
     * @dev Returns true if the value is in the set. O(1).
     */
    function contains(AddressSet storage set, address value) internal view returns (bool) {
        return _contains(set._inner, bytes32(uint256(uint160(value))));
    }

    /**
     * @dev Returns the number of values in the set. O(1).
     */
    function length(AddressSet storage set) internal view returns (uint256) {
        return _length(set._inner);
    }

    /**
     * @dev Returns the value stored at position `index` in the set. O(1).
     *
     * Note that there are no guarantees on the ordering of values inside the
     * array, and it may change when more values are added or removed.
     *
     * Requirements:
     *
     * - `index` must be strictly less than {length}.
     */
    function at(AddressSet storage set, uint256 index) internal view returns (address) {
        return address(uint160(uint256(_at(set._inner, index))));
    }

    /**
     * @dev Return the entire set in an array
     *
     * WARNING: This operation will copy the entire storage to memory, which can be quite expensive. This is designed
     * to mostly be used by view accessors that are queried without any gas fees. Developers should keep in mind that
     * this function has an unbounded cost, and using it as part of a state-changing function may render the function
     * uncallable if the set grows to a point where copying to memory consumes too much gas to fit in a block.
     */
    function values(AddressSet storage set) internal view returns (address[] memory) {
        bytes32[] memory store = _values(set._inner);
        address[] memory result;

        assembly {
            result := store
        }

        return result;
    }

    // UintSet

    struct UintSet {
        Set _inner;
    }

    /**
     * @dev Add a value to a set. O(1).
     *
     * Returns true if the value was added to the set, that is if it was not
     * already present.
     */
    function add(UintSet storage set, uint256 value) internal returns (bool) {
        return _add(set._inner, bytes32(value));
    }

    /**
     * @dev Removes a value from a set. O(1).
     *
     * Returns true if the value was removed from the set, that is if it was
     * present.
     */
    function remove(UintSet storage set, uint256 value) internal returns (bool) {
        return _remove(set._inner, bytes32(value));
    }

    /**
     * @dev Returns true if the value is in the set. O(1).
     */
    function contains(UintSet storage set, uint256 value) internal view returns (bool) {
        return _contains(set._inner, bytes32(value));
    }

    /**
     * @dev Returns the number of values on the set. O(1).
     */
    function length(UintSet storage set) internal view returns (uint256) {
        return _length(set._inner);
    }

    /**
     * @dev Returns the value stored at position `index` in the set. O(1).
     *
     * Note that there are no guarantees on the ordering of values inside the
     * array, and it may change when more values are added or removed.
     *
     * Requirements:
     *
     * - `index` must be strictly less than {length}.
     */
    function at(UintSet storage set, uint256 index) internal view returns (uint256) {
        return uint256(_at(set._inner, index));
    }

    /**
     * @dev Return the entire set in an array
     *
     * WARNING: This operation will copy the entire storage to memory, which can be quite expensive. This is designed
     * to mostly be used by view accessors that are queried without any gas fees. Developers should keep in mind that
     * this function has an unbounded cost, and using it as part of a state-changing function may render the function
     * uncallable if the set grows to a point where copying to memory consumes too much gas to fit in a block.
     */
    function values(UintSet storage set) internal view returns (uint256[] memory) {
        bytes32[] memory store = _values(set._inner);
        uint256[] memory result;

        assembly {
            result := store
        }

        return result;
    }
}

File 18 of 49 : ERC20.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.5.0) (token/ERC20/ERC20.sol)

pragma solidity ^0.8.0;

import "./IERC20.sol";
import "./extensions/IERC20Metadata.sol";
import "../../utils/Context.sol";

/**
 * @dev Implementation of the {IERC20} interface.
 *
 * This implementation is agnostic to the way tokens are created. This means
 * that a supply mechanism has to be added in a derived contract using {_mint}.
 * For a generic mechanism see {ERC20PresetMinterPauser}.
 *
 * TIP: For a detailed writeup see our guide
 * https://forum.zeppelin.solutions/t/how-to-implement-erc20-supply-mechanisms/226[How
 * to implement supply mechanisms].
 *
 * We have followed general OpenZeppelin Contracts guidelines: functions revert
 * instead returning `false` on failure. This behavior is nonetheless
 * conventional and does not conflict with the expectations of ERC20
 * applications.
 *
 * Additionally, an {Approval} event is emitted on calls to {transferFrom}.
 * This allows applications to reconstruct the allowance for all accounts just
 * by listening to said events. Other implementations of the EIP may not emit
 * these events, as it isn't required by the specification.
 *
 * Finally, the non-standard {decreaseAllowance} and {increaseAllowance}
 * functions have been added to mitigate the well-known issues around setting
 * allowances. See {IERC20-approve}.
 */
contract ERC20 is Context, IERC20, IERC20Metadata {
    mapping(address => uint256) private _balances;

    mapping(address => mapping(address => uint256)) private _allowances;

    uint256 private _totalSupply;

    string private _name;
    string private _symbol;

    /**
     * @dev Sets the values for {name} and {symbol}.
     *
     * The default value of {decimals} is 18. To select a different value for
     * {decimals} you should overload it.
     *
     * All two of these values are immutable: they can only be set once during
     * construction.
     */
    constructor(string memory name_, string memory symbol_) {
        _name = name_;
        _symbol = symbol_;
    }

    /**
     * @dev Returns the name of the token.
     */
    function name() public view virtual override returns (string memory) {
        return _name;
    }

    /**
     * @dev Returns the symbol of the token, usually a shorter version of the
     * name.
     */
    function symbol() public view virtual override returns (string memory) {
        return _symbol;
    }

    /**
     * @dev Returns the number of decimals used to get its user representation.
     * For example, if `decimals` equals `2`, a balance of `505` tokens should
     * be displayed to a user as `5.05` (`505 / 10 ** 2`).
     *
     * Tokens usually opt for a value of 18, imitating the relationship between
     * Ether and Wei. This is the value {ERC20} uses, unless this function is
     * overridden;
     *
     * NOTE: This information is only used for _display_ purposes: it in
     * no way affects any of the arithmetic of the contract, including
     * {IERC20-balanceOf} and {IERC20-transfer}.
     */
    function decimals() public view virtual override returns (uint8) {
        return 18;
    }

    /**
     * @dev See {IERC20-totalSupply}.
     */
    function totalSupply() public view virtual override returns (uint256) {
        return _totalSupply;
    }

    /**
     * @dev See {IERC20-balanceOf}.
     */
    function balanceOf(address account) public view virtual override returns (uint256) {
        return _balances[account];
    }

    /**
     * @dev See {IERC20-transfer}.
     *
     * Requirements:
     *
     * - `to` cannot be the zero address.
     * - the caller must have a balance of at least `amount`.
     */
    function transfer(address to, uint256 amount) public virtual override returns (bool) {
        address owner = _msgSender();
        _transfer(owner, to, amount);
        return true;
    }

    /**
     * @dev See {IERC20-allowance}.
     */
    function allowance(address owner, address spender) public view virtual override returns (uint256) {
        return _allowances[owner][spender];
    }

    /**
     * @dev See {IERC20-approve}.
     *
     * NOTE: If `amount` is the maximum `uint256`, the allowance is not updated on
     * `transferFrom`. This is semantically equivalent to an infinite approval.
     *
     * Requirements:
     *
     * - `spender` cannot be the zero address.
     */
    function approve(address spender, uint256 amount) public virtual override returns (bool) {
        address owner = _msgSender();
        _approve(owner, spender, amount);
        return true;
    }

    /**
     * @dev See {IERC20-transferFrom}.
     *
     * Emits an {Approval} event indicating the updated allowance. This is not
     * required by the EIP. See the note at the beginning of {ERC20}.
     *
     * NOTE: Does not update the allowance if the current allowance
     * is the maximum `uint256`.
     *
     * Requirements:
     *
     * - `from` and `to` cannot be the zero address.
     * - `from` must have a balance of at least `amount`.
     * - the caller must have allowance for ``from``'s tokens of at least
     * `amount`.
     */
    function transferFrom(
        address from,
        address to,
        uint256 amount
    ) public virtual override returns (bool) {
        address spender = _msgSender();
        _spendAllowance(from, spender, amount);
        _transfer(from, to, amount);
        return true;
    }

    /**
     * @dev Atomically increases the allowance granted to `spender` by the caller.
     *
     * This is an alternative to {approve} that can be used as a mitigation for
     * problems described in {IERC20-approve}.
     *
     * Emits an {Approval} event indicating the updated allowance.
     *
     * Requirements:
     *
     * - `spender` cannot be the zero address.
     */
    function increaseAllowance(address spender, uint256 addedValue) public virtual returns (bool) {
        address owner = _msgSender();
        _approve(owner, spender, _allowances[owner][spender] + addedValue);
        return true;
    }

    /**
     * @dev Atomically decreases the allowance granted to `spender` by the caller.
     *
     * This is an alternative to {approve} that can be used as a mitigation for
     * problems described in {IERC20-approve}.
     *
     * Emits an {Approval} event indicating the updated allowance.
     *
     * Requirements:
     *
     * - `spender` cannot be the zero address.
     * - `spender` must have allowance for the caller of at least
     * `subtractedValue`.
     */
    function decreaseAllowance(address spender, uint256 subtractedValue) public virtual returns (bool) {
        address owner = _msgSender();
        uint256 currentAllowance = _allowances[owner][spender];
        require(currentAllowance >= subtractedValue, "ERC20: decreased allowance below zero");
        unchecked {
            _approve(owner, spender, currentAllowance - subtractedValue);
        }

        return true;
    }

    /**
     * @dev Moves `amount` of tokens from `sender` to `recipient`.
     *
     * This internal function is equivalent to {transfer}, and can be used to
     * e.g. implement automatic token fees, slashing mechanisms, etc.
     *
     * Emits a {Transfer} event.
     *
     * Requirements:
     *
     * - `from` cannot be the zero address.
     * - `to` cannot be the zero address.
     * - `from` must have a balance of at least `amount`.
     */
    function _transfer(
        address from,
        address to,
        uint256 amount
    ) internal virtual {
        require(from != address(0), "ERC20: transfer from the zero address");
        require(to != address(0), "ERC20: transfer to the zero address");

        _beforeTokenTransfer(from, to, amount);

        uint256 fromBalance = _balances[from];
        require(fromBalance >= amount, "ERC20: transfer amount exceeds balance");
        unchecked {
            _balances[from] = fromBalance - amount;
        }
        _balances[to] += amount;

        emit Transfer(from, to, amount);

        _afterTokenTransfer(from, to, amount);
    }

    /** @dev Creates `amount` tokens and assigns them to `account`, increasing
     * the total supply.
     *
     * Emits a {Transfer} event with `from` set to the zero address.
     *
     * Requirements:
     *
     * - `account` cannot be the zero address.
     */
    function _mint(address account, uint256 amount) internal virtual {
        require(account != address(0), "ERC20: mint to the zero address");

        _beforeTokenTransfer(address(0), account, amount);

        _totalSupply += amount;
        _balances[account] += amount;
        emit Transfer(address(0), account, amount);

        _afterTokenTransfer(address(0), account, amount);
    }

    /**
     * @dev Destroys `amount` tokens from `account`, reducing the
     * total supply.
     *
     * Emits a {Transfer} event with `to` set to the zero address.
     *
     * Requirements:
     *
     * - `account` cannot be the zero address.
     * - `account` must have at least `amount` tokens.
     */
    function _burn(address account, uint256 amount) internal virtual {
        require(account != address(0), "ERC20: burn from the zero address");

        _beforeTokenTransfer(account, address(0), amount);

        uint256 accountBalance = _balances[account];
        require(accountBalance >= amount, "ERC20: burn amount exceeds balance");
        unchecked {
            _balances[account] = accountBalance - amount;
        }
        _totalSupply -= amount;

        emit Transfer(account, address(0), amount);

        _afterTokenTransfer(account, address(0), amount);
    }

    /**
     * @dev Sets `amount` as the allowance of `spender` over the `owner` s tokens.
     *
     * This internal function is equivalent to `approve`, and can be used to
     * e.g. set automatic allowances for certain subsystems, etc.
     *
     * Emits an {Approval} event.
     *
     * Requirements:
     *
     * - `owner` cannot be the zero address.
     * - `spender` cannot be the zero address.
     */
    function _approve(
        address owner,
        address spender,
        uint256 amount
    ) internal virtual {
        require(owner != address(0), "ERC20: approve from the zero address");
        require(spender != address(0), "ERC20: approve to the zero address");

        _allowances[owner][spender] = amount;
        emit Approval(owner, spender, amount);
    }

    /**
     * @dev Spend `amount` form the allowance of `owner` toward `spender`.
     *
     * Does not update the allowance amount in case of infinite allowance.
     * Revert if not enough allowance is available.
     *
     * Might emit an {Approval} event.
     */
    function _spendAllowance(
        address owner,
        address spender,
        uint256 amount
    ) internal virtual {
        uint256 currentAllowance = allowance(owner, spender);
        if (currentAllowance != type(uint256).max) {
            require(currentAllowance >= amount, "ERC20: insufficient allowance");
            unchecked {
                _approve(owner, spender, currentAllowance - amount);
            }
        }
    }

    /**
     * @dev Hook that is called before any transfer of tokens. This includes
     * minting and burning.
     *
     * Calling conditions:
     *
     * - when `from` and `to` are both non-zero, `amount` of ``from``'s tokens
     * will be transferred to `to`.
     * - when `from` is zero, `amount` tokens will be minted for `to`.
     * - when `to` is zero, `amount` of ``from``'s tokens will be burned.
     * - `from` and `to` are never both zero.
     *
     * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks].
     */
    function _beforeTokenTransfer(
        address from,
        address to,
        uint256 amount
    ) internal virtual {}

    /**
     * @dev Hook that is called after any transfer of tokens. This includes
     * minting and burning.
     *
     * Calling conditions:
     *
     * - when `from` and `to` are both non-zero, `amount` of ``from``'s tokens
     * has been transferred to `to`.
     * - when `from` is zero, `amount` tokens have been minted for `to`.
     * - when `to` is zero, `amount` of ``from``'s tokens have been burned.
     * - `from` and `to` are never both zero.
     *
     * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks].
     */
    function _afterTokenTransfer(
        address from,
        address to,
        uint256 amount
    ) internal virtual {}
}

File 19 of 49 : IERC20.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.5.0) (token/ERC20/IERC20.sol)

pragma solidity ^0.8.0;

/**
 * @dev Interface of the ERC20 standard as defined in the EIP.
 */
interface IERC20 {
    /**
     * @dev Returns the amount of tokens in existence.
     */
    function totalSupply() external view returns (uint256);

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

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

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

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

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

    /**
     * @dev Emitted when `value` tokens are moved from one account (`from`) to
     * another (`to`).
     *
     * Note that `value` may be zero.
     */
    event Transfer(address indexed from, address indexed to, uint256 value);

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

File 20 of 49 : IERC20Metadata.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (token/ERC20/extensions/IERC20Metadata.sol)

pragma solidity ^0.8.0;

import "../IERC20.sol";

/**
 * @dev Interface for the optional metadata functions from the ERC20 standard.
 *
 * _Available since v4.1._
 */
interface IERC20Metadata is IERC20 {
    /**
     * @dev Returns the name of the token.
     */
    function name() external view returns (string memory);

    /**
     * @dev Returns the symbol of the token.
     */
    function symbol() external view returns (string memory);

    /**
     * @dev Returns the decimals places of the token.
     */
    function decimals() external view returns (uint8);
}

File 21 of 49 : draft-IERC20Permit.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (token/ERC20/extensions/draft-IERC20Permit.sol)

pragma solidity ^0.8.0;

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

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

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

File 22 of 49 : SafeERC20.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (token/ERC20/utils/SafeERC20.sol)

pragma solidity ^0.8.0;

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

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

    function safeTransfer(
        IERC20 token,
        address to,
        uint256 value
    ) internal {
        _callOptionalReturn(token, abi.encodeWithSelector(token.transfer.selector, to, value));
    }

    function safeTransferFrom(
        IERC20 token,
        address from,
        address to,
        uint256 value
    ) internal {
        _callOptionalReturn(token, abi.encodeWithSelector(token.transferFrom.selector, from, to, value));
    }

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

    function safeIncreaseAllowance(
        IERC20 token,
        address spender,
        uint256 value
    ) internal {
        uint256 newAllowance = token.allowance(address(this), spender) + value;
        _callOptionalReturn(token, abi.encodeWithSelector(token.approve.selector, spender, newAllowance));
    }

    function safeDecreaseAllowance(
        IERC20 token,
        address spender,
        uint256 value
    ) internal {
        unchecked {
            uint256 oldAllowance = token.allowance(address(this), spender);
            require(oldAllowance >= value, "SafeERC20: decreased allowance below zero");
            uint256 newAllowance = oldAllowance - value;
            _callOptionalReturn(token, abi.encodeWithSelector(token.approve.selector, spender, newAllowance));
        }
    }

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

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

File 23 of 49 : Address.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.5.0) (utils/Address.sol)

pragma solidity ^0.8.1;

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

        return account.code.length > 0;
    }

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

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

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

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

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

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

        (bool success, bytes memory returndata) = target.call{value: value}(data);
        return verifyCallResult(success, returndata, errorMessage);
    }

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

    /**
     * @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`],
     * but performing a static call.
     *
     * _Available since v3.3._
     */
    function functionStaticCall(
        address target,
        bytes memory data,
        string memory errorMessage
    ) internal view returns (bytes memory) {
        require(isContract(target), "Address: static call to non-contract");

        (bool success, bytes memory returndata) = target.staticcall(data);
        return verifyCallResult(success, returndata, errorMessage);
    }

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

    /**
     * @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`],
     * but performing a delegate call.
     *
     * _Available since v3.4._
     */
    function functionDelegateCall(
        address target,
        bytes memory data,
        string memory errorMessage
    ) internal returns (bytes memory) {
        require(isContract(target), "Address: delegate call to non-contract");

        (bool success, bytes memory returndata) = target.delegatecall(data);
        return verifyCallResult(success, returndata, errorMessage);
    }

    /**
     * @dev Tool to verifies that a low level call was successful, and revert if it wasn't, either by bubbling the
     * revert reason using the provided one.
     *
     * _Available since v4.3._
     */
    function verifyCallResult(
        bool success,
        bytes memory returndata,
        string memory errorMessage
    ) internal pure returns (bytes memory) {
        if (success) {
            return returndata;
        } else {
            // Look for revert reason and bubble it up if present
            if (returndata.length > 0) {
                // The easiest way to bubble the revert reason is using memory via assembly

                assembly {
                    let returndata_size := mload(returndata)
                    revert(add(32, returndata), returndata_size)
                }
            } else {
                revert(errorMessage);
            }
        }
    }
}

File 24 of 49 : 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 25 of 49 : Math.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.5.0) (utils/math/Math.sol)

pragma solidity ^0.8.0;

/**
 * @dev Standard math utilities missing in the Solidity language.
 */
library Math {
    /**
     * @dev Returns the largest of two numbers.
     */
    function max(uint256 a, uint256 b) internal pure returns (uint256) {
        return a >= b ? a : b;
    }

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

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

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

File 26 of 49 : IBancorNetwork.sol
// SPDX-License-Identifier: SEE LICENSE IN LICENSE
pragma solidity 0.8.13;

import { IERC20 } from "@openzeppelin/contracts/token/ERC20/IERC20.sol";

import { IUpgradeable } from "../../utility/interfaces/IUpgradeable.sol";

import { Token } from "../../token/Token.sol";

import { IPoolCollection } from "../../pools/interfaces/IPoolCollection.sol";
import { IPoolToken } from "../../pools/interfaces/IPoolToken.sol";

/**
 * @dev Flash-loan recipient interface
 */
interface IFlashLoanRecipient {
    /**
     * @dev a flash-loan recipient callback after each the caller must return the borrowed amount and an additional fee
     */
    function onFlashLoan(
        address caller,
        IERC20 erc20Token,
        uint256 amount,
        uint256 feeAmount,
        bytes memory data
    ) external;
}

/**
 * @dev Bancor Network interface
 */
interface IBancorNetwork is IUpgradeable {
    /**
     * @dev returns the set of all valid pool collections
     */
    function poolCollections() external view returns (IPoolCollection[] memory);

    /**
     * @dev returns the set of all liquidity pools
     */
    function liquidityPools() external view returns (Token[] memory);

    /**
     * @dev returns the respective pool collection for the provided pool
     */
    function collectionByPool(Token pool) external view returns (IPoolCollection);

    /**
     * @dev creates new pools
     *
     * requirements:
     *
     * - none of the pools already exists
     */
    function createPools(Token[] calldata tokens, IPoolCollection poolCollection) external;

    /**
     * @dev migrates a list of pools between pool collections
     *
     * notes:
     *
     * - invalid or incompatible pools will be skipped gracefully
     */
    function migratePools(Token[] calldata pools, IPoolCollection newPoolCollection) external;

    /**
     * @dev deposits liquidity for the specified provider and returns the respective pool token amount
     *
     * requirements:
     *
     * - the caller must have approved the network to transfer the tokens on its behalf (except for in the
     *   native token case)
     */
    function depositFor(
        address provider,
        Token pool,
        uint256 tokenAmount
    ) external payable returns (uint256);

    /**
     * @dev deposits liquidity for the current provider and returns the respective pool token amount
     *
     * requirements:
     *
     * - the caller must have approved the network to transfer the tokens on its behalf (except for in the
     *   native token case)
     */
    function deposit(Token pool, uint256 tokenAmount) external payable returns (uint256);

    /**
     * @dev initiates liquidity withdrawal
     *
     * requirements:
     *
     * - the caller must have approved the contract to transfer the pool token amount on its behalf
     */
    function initWithdrawal(IPoolToken poolToken, uint256 poolTokenAmount) external returns (uint256);

    /**
     * @dev cancels a withdrawal request, and returns the number of pool token amount associated with the withdrawal
     * request
     *
     * requirements:
     *
     * - the caller must have already initiated a withdrawal and received the specified id
     */
    function cancelWithdrawal(uint256 id) external returns (uint256);

    /**
     * @dev withdraws liquidity and returns the withdrawn amount
     *
     * requirements:
     *
     * - the provider must have already initiated a withdrawal and received the specified id
     * - the specified withdrawal request is eligible for completion
     * - the provider must have approved the network to transfer vBNT amount on its behalf, when withdrawing BNT
     * liquidity
     */
    function withdraw(uint256 id) external returns (uint256);

    /**
     * @dev performs a trade by providing the input source amount, sends the proceeds to the optional beneficiary (or
     * to the address of the caller, in case it's not supplied), and returns the trade target amount
     *
     * requirements:
     *
     * - the caller must have approved the network to transfer the source tokens on its behalf (except for in the
     *   native token case)
     */
    function tradeBySourceAmount(
        Token sourceToken,
        Token targetToken,
        uint256 sourceAmount,
        uint256 minReturnAmount,
        uint256 deadline,
        address beneficiary
    ) external payable returns (uint256);

    /**
     * @dev performs a trade by providing the output target amount, sends the proceeds to the optional beneficiary (or
     * to the address of the caller, in case it's not supplied), and returns the trade source amount
     *
     * requirements:
     *
     * - the caller must have approved the network to transfer the source tokens on its behalf (except for in the
     *   native token case)
     */
    function tradeByTargetAmount(
        Token sourceToken,
        Token targetToken,
        uint256 targetAmount,
        uint256 maxSourceAmount,
        uint256 deadline,
        address beneficiary
    ) external payable returns (uint256);

    /**
     * @dev performs a trade by providing the input source amount, sends the proceeds to the optional beneficiary (or
     * to the address of the caller, in case it's not supplied), and returns the trade target amount
     *
     * requirements:
     *
     * - the caller must have approved the network to transfer the source tokens on its behalf (except for in the
     *   native token case)
     * - the caller must be the _bancorArbitrage contract
     */
    function tradeBySourceAmountArb(
        Token sourceToken,
        Token targetToken,
        uint256 sourceAmount,
        uint256 minReturnAmount,
        uint256 deadline,
        address beneficiary
    ) external payable returns (uint256);

    /**
     * @dev performs a trade by providing the output target amount, sends the proceeds to the optional beneficiary (or
     * to the address of the caller, in case it's not supplied), and returns the trade source amount
     *
     * requirements:
     *
     * - the caller must have approved the network to transfer the source tokens on its behalf (except for in the
     *   native token case)
     * - the caller must be the _bancorArbitrage contract
     */
    function tradeByTargetAmountArb(
        Token sourceToken,
        Token targetToken,
        uint256 targetAmount,
        uint256 maxSourceAmount,
        uint256 deadline,
        address beneficiary
    ) external payable returns (uint256);

    /**
     * @dev provides a flash-loan
     *
     * requirements:
     *
     * - the recipient's callback must return *at least* the borrowed amount and fee back to the specified return address
     */
    function flashLoan(
        Token token,
        uint256 amount,
        IFlashLoanRecipient recipient,
        bytes calldata data
    ) external;

    /**
     * @dev deposits liquidity during a migration
     */
    function migrateLiquidity(
        Token token,
        address provider,
        uint256 amount,
        uint256 availableAmount,
        uint256 originalAmount
    ) external payable;

    /**
     * @dev burns pending network fees, and returns the amount of fees burned
     */
    function burnNetworkFees() external returns (uint256);

    /**
     * @dev withdraws surplus tokens from a given pool to CarbonPOL contract,
     * and disables trading on the given pool if it is not already disabled
     */
    function withdrawPOL(Token pool) external returns (uint256);
}

File 27 of 49 : INetworkSettings.sol
// SPDX-License-Identifier: SEE LICENSE IN LICENSE
pragma solidity 0.8.13;

import { IUpgradeable } from "../../utility/interfaces/IUpgradeable.sol";

import { Token } from "../../token/Token.sol";

error NotWhitelisted();
error NotWhitelistedForPOL();

struct VortexRewards {
    // the percentage of converted BNT to be sent to the initiator of the burning event (in units of PPM)
    uint32 burnRewardPPM;
    // the maximum burn reward to be sent to the initiator of the burning event
    uint256 burnRewardMaxAmount;
}

/**
 * @dev Network Settings interface
 */
interface INetworkSettings is IUpgradeable {
    /**
     * @dev returns the protected tokens whitelist
     */
    function protectedTokenWhitelist() external view returns (Token[] memory);

    /**
     * @dev checks whether a given token is whitelisted
     */
    function isTokenWhitelisted(Token pool) external view returns (bool);

    /**
     * @dev returns the tokens whitelist for POL
     */
    function tokenWhitelistForPOL() external view returns (Token[] memory);

    /**
     * @dev checks whether a given token is whitelist for POL
     */
    function isTokenWhitelistedForPOL(Token pool) external view returns (bool);

    /**
     * @dev returns the BNT funding limit for a given pool
     */
    function poolFundingLimit(Token pool) external view returns (uint256);

    /**
     * @dev returns the minimum BNT trading liquidity required before the system enables trading in the relevant pool
     */
    function minLiquidityForTrading() external view returns (uint256);

    /**
     * @dev returns the withdrawal fee (in units of PPM)
     */
    function withdrawalFeePPM() external view returns (uint32);

    /**
     * @dev returns the default flash-loan fee (in units of PPM)
     */
    function defaultFlashLoanFeePPM() external view returns (uint32);

    /**
     * @dev returns the flash-loan fee (in units of PPM) of a pool
     */
    function flashLoanFeePPM(Token pool) external view returns (uint32);

    /**
     * @dev returns the vortex settings
     */
    function vortexRewards() external view returns (VortexRewards memory);
}

File 28 of 49 : IPendingWithdrawals.sol
// SPDX-License-Identifier: SEE LICENSE IN LICENSE
pragma solidity 0.8.13;

import { IPoolToken } from "../../pools/interfaces/IPoolToken.sol";

import { Token } from "../../token/Token.sol";

import { IUpgradeable } from "../../utility/interfaces/IUpgradeable.sol";

/**
 * @dev the data struct representing a pending withdrawal request
 */
struct WithdrawalRequest {
    address provider; // the liquidity provider
    IPoolToken poolToken; // the locked pool token
    Token reserveToken; // the reserve token to withdraw
    uint32 createdAt; // the time when the request was created (Unix timestamp)
    uint256 poolTokenAmount; // the locked pool token amount
    uint256 reserveTokenAmount; // the expected reserve token amount to withdraw
}

/**
 * @dev the data struct representing a completed withdrawal request
 */
struct CompletedWithdrawal {
    IPoolToken poolToken; // the withdraw pool token
    uint256 poolTokenAmount; // the original pool token amount in the withdrawal request
    uint256 reserveTokenAmount; // the original reserve token amount at the time of the withdrawal init request
}

/**
 * @dev Pending Withdrawals interface
 */
interface IPendingWithdrawals is IUpgradeable {
    /**
     * @dev returns the lock duration
     */
    function lockDuration() external view returns (uint32);

    /**
     * @dev returns the pending withdrawal requests count for a specific provider
     */
    function withdrawalRequestCount(address provider) external view returns (uint256);

    /**
     * @dev returns the pending withdrawal requests IDs for a specific provider
     */
    function withdrawalRequestIds(address provider) external view returns (uint256[] memory);

    /**
     * @dev returns the pending withdrawal request with the specified ID
     */
    function withdrawalRequest(uint256 id) external view returns (WithdrawalRequest memory);

    /**
     * @dev initiates liquidity withdrawal
     *
     * requirements:
     *
     * - the caller must be the network contract
     */
    function initWithdrawal(
        address provider,
        IPoolToken poolToken,
        uint256 poolTokenAmount
    ) external returns (uint256);

    /**
     * @dev cancels a withdrawal request, and returns the number of pool tokens which were sent back to the provider
     *
     * requirements:
     *
     * - the caller must be the network contract
     * - the provider must have already initiated a withdrawal and received the specified id
     */
    function cancelWithdrawal(address provider, uint256 id) external returns (uint256);

    /**
     * @dev completes a withdrawal request, and returns the pool token and its transferred amount
     *
     * requirements:
     *
     * - the caller must be the network contract
     * - the provider must have already initiated a withdrawal and received the specified id
     * - the lock duration has ended
     */
    function completeWithdrawal(
        bytes32 contextId,
        address provider,
        uint256 id
    ) external returns (CompletedWithdrawal memory);

    /**
     * @dev returns whether the given request is ready for withdrawal
     */
    function isReadyForWithdrawal(uint256 id) external view returns (bool);
}

File 29 of 49 : IBNTPool.sol
// SPDX-License-Identifier: SEE LICENSE IN LICENSE
pragma solidity 0.8.13;

import { IPoolToken } from "./IPoolToken.sol";

import { Token } from "../../token/Token.sol";

import { IVault } from "../../vaults/interfaces/IVault.sol";

// the BNT pool token manager role is required to access the BNT pool tokens
bytes32 constant ROLE_BNT_POOL_TOKEN_MANAGER = keccak256("ROLE_BNT_POOL_TOKEN_MANAGER");

// the BNT manager role is required to request the BNT pool to mint BNT
bytes32 constant ROLE_BNT_MANAGER = keccak256("ROLE_BNT_MANAGER");

// the vault manager role is required to request the BNT pool to burn BNT from the master vault
bytes32 constant ROLE_VAULT_MANAGER = keccak256("ROLE_VAULT_MANAGER");

// the funding manager role is required to request or renounce funding from the BNT pool
bytes32 constant ROLE_FUNDING_MANAGER = keccak256("ROLE_FUNDING_MANAGER");

/**
 * @dev BNT Pool interface
 */
interface IBNTPool is IVault {
    /**
     * @dev returns the BNT pool token contract
     */
    function poolToken() external view returns (IPoolToken);

    /**
     * @dev returns the total staked BNT balance in the network
     */
    function stakedBalance() external view returns (uint256);

    /**
     * @dev returns the current funding of given pool
     */
    function currentPoolFunding(Token pool) external view returns (uint256);

    /**
     * @dev returns the available BNT funding for a given pool
     */
    function availableFunding(Token pool) external view returns (uint256);

    /**
     * @dev converts the specified pool token amount to the underlying BNT amount
     */
    function poolTokenToUnderlying(uint256 poolTokenAmount) external view returns (uint256);

    /**
     * @dev converts the specified underlying BNT amount to pool token amount
     */
    function underlyingToPoolToken(uint256 bntAmount) external view returns (uint256);

    /**
     * @dev returns the number of pool token to burn in order to increase everyone's underlying value by the specified
     * amount
     */
    function poolTokenAmountToBurn(uint256 bntAmountToDistribute) external view returns (uint256);

    /**
     * @dev mints BNT to the recipient
     *
     * requirements:
     *
     * - the caller must have the ROLE_BNT_MANAGER role
     */
    function mint(address recipient, uint256 bntAmount) external;

    /**
     * @dev burns BNT from the vault
     *
     * requirements:
     *
     * - the caller must have the ROLE_VAULT_MANAGER role
     */
    function burnFromVault(uint256 bntAmount) external;

    /**
     * @dev deposits BNT liquidity on behalf of a specific provider and returns the respective pool token amount
     *
     * requirements:
     *
     * - the caller must be the network contract
     * - BNT tokens must have been already deposited into the contract
     */
    function depositFor(
        bytes32 contextId,
        address provider,
        uint256 bntAmount,
        bool isMigrating,
        uint256 originalVBNTAmount
    ) external returns (uint256);

    /**
     * @dev withdraws BNT liquidity on behalf of a specific provider and returns the withdrawn BNT amount
     *
     * requirements:
     *
     * - the caller must be the network contract
     * - bnBNT token must have been already deposited into the contract
     * - vBNT token must have been already deposited into the contract
     */
    function withdraw(
        bytes32 contextId,
        address provider,
        uint256 poolTokenAmount,
        uint256 bntAmount
    ) external returns (uint256);

    /**
     * @dev returns the withdrawn BNT amount
     */
    function withdrawalAmount(uint256 poolTokenAmount) external view returns (uint256);

    /**
     * @dev requests BNT funding
     *
     * requirements:
     *
     * - the caller must have the ROLE_FUNDING_MANAGER role
     * - the token must have been whitelisted
     * - the request amount should be below the funding limit for a given pool
     * - the average rate of the pool must not deviate too much from its spot rate
     */
    function requestFunding(
        bytes32 contextId,
        Token pool,
        uint256 bntAmount
    ) external;

    /**
     * @dev renounces BNT funding
     *
     * requirements:
     *
     * - the caller must have the ROLE_FUNDING_MANAGER role
     * - the token must have been whitelisted
     * - the average rate of the pool must not deviate too much from its spot rate
     */
    function renounceFunding(
        bytes32 contextId,
        Token pool,
        uint256 bntAmount
    ) external;

    /**
     * @dev notifies the pool of accrued fees
     *
     * requirements:
     *
     * - the caller must be the network contract
     */
    function onFeesCollected(
        Token pool,
        uint256 feeAmount,
        bool isTradeFee
    ) external;
}

File 30 of 49 : IPoolCollection.sol
// SPDX-License-Identifier: SEE LICENSE IN LICENSE
pragma solidity 0.8.13;

import { IVersioned } from "../../utility/interfaces/IVersioned.sol";
import { Fraction112 } from "../../utility/FractionLibrary.sol";

import { Token } from "../../token/Token.sol";

import { IPoolToken } from "./IPoolToken.sol";

struct PoolLiquidity {
    uint128 bntTradingLiquidity; // the BNT trading liquidity
    uint128 baseTokenTradingLiquidity; // the base token trading liquidity
    uint256 stakedBalance; // the staked balance
}

struct AverageRates {
    uint32 blockNumber;
    Fraction112 rate;
    Fraction112 invRate;
}

struct Pool {
    IPoolToken poolToken; // the pool token of the pool
    uint32 tradingFeePPM; // the trading fee (in units of PPM)
    bool tradingEnabled; // whether trading is enabled
    bool depositingEnabled; // whether depositing is enabled
    AverageRates averageRates; // the recent average rates
    PoolLiquidity liquidity; // the overall liquidity in the pool
}

struct WithdrawalAmounts {
    uint256 totalAmount;
    uint256 baseTokenAmount;
    uint256 bntAmount;
}

// trading enabling/disabling reasons
uint8 constant TRADING_STATUS_UPDATE_DEFAULT = 0;
uint8 constant TRADING_STATUS_UPDATE_ADMIN = 1;
uint8 constant TRADING_STATUS_UPDATE_MIN_LIQUIDITY = 2;
uint8 constant TRADING_STATUS_UPDATE_INVALID_STATE = 3;
uint8 constant TRADING_STATUS_UPDATE_NETWORK_DISABLE = 4;

struct TradeAmountAndFee {
    uint256 amount; // the source/target amount (depending on the context) resulting from the trade
    uint256 tradingFeeAmount; // the trading fee amount
    uint256 networkFeeAmount; // the network fee amount (always in units of BNT)
}

/**
 * @dev Pool Collection interface
 */
interface IPoolCollection is IVersioned {
    /**
     * @dev returns the type of the pool
     */
    function poolType() external view returns (uint16);

    /**
     * @dev returns the default trading fee (in units of PPM)
     */
    function defaultTradingFeePPM() external view returns (uint32);

    /**
     * @dev returns the network fee (in units of PPM)
     */
    function networkFeePPM() external view returns (uint32);

    /**
     * @dev returns all the pools which are managed by this pool collection
     */
    function pools() external view returns (Token[] memory);

    /**
     * @dev returns the number of all the pools which are managed by this pool collection
     */
    function poolCount() external view returns (uint256);

    /**
     * @dev returns whether a pool is valid
     */
    function isPoolValid(Token pool) external view returns (bool);

    /**
     * @dev returns the overall liquidity in the pool
     */
    function poolLiquidity(Token pool) external view returns (PoolLiquidity memory);

    /**
     * @dev returns the pool token of the pool
     */
    function poolToken(Token pool) external view returns (IPoolToken);

    /**
     * @dev returns the trading fee (in units of PPM)
     */
    function tradingFeePPM(Token pool) external view returns (uint32);

    /**
     * @dev returns whether trading is enabled
     */
    function tradingEnabled(Token pool) external view returns (bool);

    /**
     * @dev returns whether depositing is enabled
     */
    function depositingEnabled(Token pool) external view returns (bool);

    /**
     * @dev returns whether the pool is stable
     */
    function isPoolStable(Token pool) external view returns (bool);

    /**
     * @dev converts the specified pool token amount to the underlying base token amount
     */
    function poolTokenToUnderlying(Token pool, uint256 poolTokenAmount) external view returns (uint256);

    /**
     * @dev converts the specified underlying base token amount to pool token amount
     */
    function underlyingToPoolToken(Token pool, uint256 baseTokenAmount) external view returns (uint256);

    /**
     * @dev returns the number of pool token to burn in order to increase everyone's underlying value by the specified
     * amount
     */
    function poolTokenAmountToBurn(
        Token pool,
        uint256 baseTokenAmountToDistribute,
        uint256 protocolPoolTokenAmount
    ) external view returns (uint256);

    /**
     * @dev creates a new pool
     *
     * requirements:
     *
     * - the caller must be the network contract
     * - the pool should have been whitelisted
     * - the pool isn't already defined in the collection
     */
    function createPool(Token token) external;

    /**
     * @dev deposits base token liquidity on behalf of a specific provider and returns the respective pool token amount
     *
     * requirements:
     *
     * - the caller must be the network contract
     * - assumes that the base token has been already deposited in the vault
     */
    function depositFor(
        bytes32 contextId,
        address provider,
        Token pool,
        uint256 baseTokenAmount
    ) external returns (uint256);

    /**
     * @dev handles some of the withdrawal-related actions and returns the withdrawn base token amount
     *
     * requirements:
     *
     * - the caller must be the network contract
     * - the caller must have approved the collection to transfer/burn the pool token amount on its behalf
     */
    function withdraw(
        bytes32 contextId,
        address provider,
        Token pool,
        uint256 poolTokenAmount,
        uint256 baseTokenAmount
    ) external returns (uint256);

    /**
     * @dev returns the amounts that would be returned if the position is currently withdrawn,
     * along with the breakdown of the base token and the BNT compensation
     */
    function withdrawalAmounts(Token pool, uint256 poolTokenAmount) external view returns (WithdrawalAmounts memory);

    /**
     * @dev performs a trade by providing the source amount and returns the target amount and the associated fee
     *
     * requirements:
     *
     * - the caller must be the network contract
     */
    function tradeBySourceAmount(
        bytes32 contextId,
        Token sourceToken,
        Token targetToken,
        uint256 sourceAmount,
        uint256 minReturnAmount,
        bool ignoreFees
    ) external returns (TradeAmountAndFee memory);

    /**
     * @dev performs a trade by providing the target amount and returns the required source amount and the associated fee
     *
     * requirements:
     *
     * - the caller must be the network contract
     */
    function tradeByTargetAmount(
        bytes32 contextId,
        Token sourceToken,
        Token targetToken,
        uint256 targetAmount,
        uint256 maxSourceAmount,
        bool ignoreFees
    ) external returns (TradeAmountAndFee memory);

    /**
     * @dev returns the output amount and fee when trading by providing the source amount
     */
    function tradeOutputAndFeeBySourceAmount(
        Token sourceToken,
        Token targetToken,
        uint256 sourceAmount
    ) external view returns (TradeAmountAndFee memory);

    /**
     * @dev returns the input amount and fee when trading by providing the target amount
     */
    function tradeInputAndFeeByTargetAmount(
        Token sourceToken,
        Token targetToken,
        uint256 targetAmount
    ) external view returns (TradeAmountAndFee memory);

    /**
     * @dev notifies the pool of accrued fees
     *
     * requirements:
     *
     * - the caller must be the network contract
     */
    function onFeesCollected(Token pool, uint256 feeAmount) external;

    /**
     * @dev migrates a pool to this pool collection
     *
     * requirements:
     *
     * - the caller must be the pool migrator contract
     */
    function migratePoolIn(Token pool, Pool calldata data) external;

    /**
     * @dev migrates a pool from this pool collection
     *
     * requirements:
     *
     * - the caller must be the pool migrator contract
     */
    function migratePoolOut(Token pool, IPoolCollection targetPoolCollection) external;

    /**
     * @dev disables trading on a pool
     *
     * requirements:
     *
     * - the caller must be the network contract
     */
    function disableTradingByNetwork(Token pool) external;
}

File 31 of 49 : IPoolMigrator.sol
// SPDX-License-Identifier: SEE LICENSE IN LICENSE
pragma solidity 0.8.13;

import { Token } from "../../token/Token.sol";

import { IVersioned } from "../../utility/interfaces/IVersioned.sol";

import { IPoolCollection } from "./IPoolCollection.sol";

/**
 * @dev Pool Migrator interface
 */
interface IPoolMigrator is IVersioned {
    /**
     * @dev migrates a pool and returns the new pool collection it exists in
     *
     * notes:
     *
     * - invalid or incompatible pools will be skipped gracefully
     *
     * requirements:
     *
     * - the caller must be the network contract
     */
    function migratePool(Token pool, IPoolCollection newPoolCollection) external;
}

File 32 of 49 : IPoolToken.sol
// SPDX-License-Identifier: SEE LICENSE IN LICENSE
pragma solidity 0.8.13;

import { IERC20 } from "@openzeppelin/contracts/token/ERC20/IERC20.sol";
import { IERC20Permit } from "@openzeppelin/contracts/token/ERC20/extensions/draft-IERC20Permit.sol";

import { IERC20Burnable } from "../../token/interfaces/IERC20Burnable.sol";
import { Token } from "../../token/Token.sol";

import { IVersioned } from "../../utility/interfaces/IVersioned.sol";
import { IOwned } from "../../utility/interfaces/IOwned.sol";

/**
 * @dev Pool Token interface
 */
interface IPoolToken is IVersioned, IOwned, IERC20, IERC20Permit, IERC20Burnable {
    /**
     * @dev returns the address of the reserve token
     */
    function reserveToken() external view returns (Token);

    /**
     * @dev increases the token supply and sends the new tokens to the given account
     *
     * requirements:
     *
     * - the caller must be the owner of the contract
     */
    function mint(address recipient, uint256 amount) external;
}

File 33 of 49 : SafeERC20Ex.sol
// SPDX-License-Identifier: SEE LICENSE IN LICENSE
pragma solidity 0.8.13;

import { IERC20 } from "@openzeppelin/contracts/token/ERC20/IERC20.sol";
import { SafeERC20 } from "@openzeppelin/contracts/token/ERC20/utils/SafeERC20.sol";

/**
 * @dev extends the SafeERC20 library with additional operations
 */
library SafeERC20Ex {
    using SafeERC20 for IERC20;

    /**
     * @dev ensures that the spender has sufficient allowance
     */
    function ensureApprove(IERC20 token, address spender, uint256 amount) internal {
        if (amount == 0) {
            return;
        }

        uint256 allowance = token.allowance(address(this), spender);
        if (allowance >= amount) {
            return;
        }

        if (allowance > 0) {
            token.safeApprove(spender, 0);
        }
        token.safeApprove(spender, amount);
    }
}

File 34 of 49 : Token.sol
// SPDX-License-Identifier: SEE LICENSE IN LICENSE
pragma solidity 0.8.13;

/**
 * @dev the main purpose of the Token interfaces is to ensure artificially that we won't use ERC20's standard functions,
 * but only their safe versions, which are provided by SafeERC20 and SafeERC20Ex via the TokenLibrary contract
 */
interface Token {

}

File 35 of 49 : TokenLibrary.sol
// SPDX-License-Identifier: SEE LICENSE IN LICENSE
pragma solidity 0.8.13;

import { IERC20 } from "@openzeppelin/contracts/token/ERC20/IERC20.sol";
import { ERC20 } from "@openzeppelin/contracts/token/ERC20/ERC20.sol";
import { SafeERC20 } from "@openzeppelin/contracts/token/ERC20/utils/SafeERC20.sol";

import { SafeERC20Ex } from "./SafeERC20Ex.sol";

import { Token } from "./Token.sol";

/**
 * @dev This library implements ERC20 and SafeERC20 utilities for both the native token and for ERC20 tokens
 */
library TokenLibrary {
    using SafeERC20 for IERC20;
    using SafeERC20Ex for IERC20;

    error PermitUnsupported();

    // the address that represents the native token reserve
    address private constant NATIVE_TOKEN_ADDRESS = 0xEeeeeEeeeEeEeeEeEeEeeEEEeeeeEeeeeeeeEEeE;

    // the symbol that represents the native token
    string private constant NATIVE_TOKEN_SYMBOL = "ETH";

    // the decimals for the native token
    uint8 private constant NATIVE_TOKEN_DECIMALS = 18;

    // the token representing the native token
    Token public constant NATIVE_TOKEN = Token(NATIVE_TOKEN_ADDRESS);

    /**
     * @dev returns whether the provided token represents an ERC20 or the native token reserve
     */
    function isNative(Token token) internal pure returns (bool) {
        return address(token) == NATIVE_TOKEN_ADDRESS;
    }

    /**
     * @dev returns the symbol of the native token/ERC20 token
     */
    function symbol(Token token) internal view returns (string memory) {
        if (isNative(token)) {
            return NATIVE_TOKEN_SYMBOL;
        }

        return toERC20(token).symbol();
    }

    /**
     * @dev returns the decimals of the native token/ERC20 token
     */
    function decimals(Token token) internal view returns (uint8) {
        if (isNative(token)) {
            return NATIVE_TOKEN_DECIMALS;
        }

        return toERC20(token).decimals();
    }

    /**
     * @dev returns the balance of the native token/ERC20 token
     */
    function balanceOf(Token token, address account) internal view returns (uint256) {
        if (isNative(token)) {
            return account.balance;
        }

        return toIERC20(token).balanceOf(account);
    }

    /**
     * @dev transfers a specific amount of the native token/ERC20 token
     */
    function safeTransfer(Token token, address to, uint256 amount) internal {
        if (amount == 0) {
            return;
        }

        if (isNative(token)) {
            payable(to).transfer(amount);
        } else {
            toIERC20(token).safeTransfer(to, amount);
        }
    }

    /**
     * @dev transfers a specific amount of the native token/ERC20 token from a specific holder using the allowance mechanism
     *
     * note that the function does not perform any action if the native token is provided
     */
    function safeTransferFrom(Token token, address from, address to, uint256 amount) internal {
        if (amount == 0 || isNative(token)) {
            return;
        }

        toIERC20(token).safeTransferFrom(from, to, amount);
    }

    /**
     * @dev approves a specific amount of the native token/ERC20 token from a specific holder
     *
     * note that the function does not perform any action if the native token is provided
     */
    function safeApprove(Token token, address spender, uint256 amount) internal {
        if (isNative(token)) {
            return;
        }

        toIERC20(token).safeApprove(spender, amount);
    }

    /**
     * @dev increases allowance of the native token/ERC20 token from a specific holder
     *
     * note that the function does not perform any action if the native token is provided
     */
    function safeIncreaseAllowance(Token token, address spender, uint256 amount) internal {
        if (isNative(token)) {
            return;
        }

        toIERC20(token).safeIncreaseAllowance(spender, amount);
    }

    /**
     * @dev ensures that the spender has sufficient allowance
     *
     * note that the function does not perform any action if the native token is provided
     */
    function ensureApprove(Token token, address spender, uint256 amount) internal {
        if (isNative(token)) {
            return;
        }

        toIERC20(token).ensureApprove(spender, amount);
    }

    /**
     * @dev compares between a token and another raw ERC20 token
     */
    function isEqual(Token token, IERC20 erc20Token) internal pure returns (bool) {
        return toIERC20(token) == erc20Token;
    }

    /**
     * @dev utility function that converts a token to an IERC20
     */
    function toIERC20(Token token) internal pure returns (IERC20) {
        return IERC20(address(token));
    }

    /**
     * @dev utility function that converts a token to an ERC20
     */
    function toERC20(Token token) internal pure returns (ERC20) {
        return ERC20(address(token));
    }
}

File 36 of 49 : IERC20Burnable.sol
// SPDX-License-Identifier: SEE LICENSE IN LICENSE
pragma solidity 0.8.13;

/**
 * @dev burnable ERC20 interface
 */
interface IERC20Burnable {
    /**
     * @dev Destroys tokens from the caller.
     */
    function burn(uint256 amount) external;

    /**
     * @dev Destroys tokens from a recipient, deducting from the caller's allowance
     *
     * requirements:
     *
     * - the caller must have allowance for recipient's tokens of at least the specified amount
     */
    function burnFrom(address recipient, uint256 amount) external;
}

File 37 of 49 : Constants.sol
// SPDX-License-Identifier: SEE LICENSE IN LICENSE
pragma solidity 0.8.13;

uint32 constant PPM_RESOLUTION = 1_000_000;

File 38 of 49 : Fraction.sol
// SPDX-License-Identifier: SEE LICENSE IN LICENSE
pragma solidity 0.8.13;

struct Fraction {
    uint256 n;
    uint256 d;
}

struct Fraction112 {
    uint112 n;
    uint112 d;
}

error InvalidFraction();

File 39 of 49 : FractionLibrary.sol
// SPDX-License-Identifier: SEE LICENSE IN LICENSE
pragma solidity 0.8.13;

import { Fraction, Fraction112, InvalidFraction } from "./Fraction.sol";
import { MathEx } from "./MathEx.sol";

// solhint-disable-next-line func-visibility
function zeroFraction() pure returns (Fraction memory) {
    return Fraction({ n: 0, d: 1 });
}

// solhint-disable-next-line func-visibility
function zeroFraction112() pure returns (Fraction112 memory) {
    return Fraction112({ n: 0, d: 1 });
}

/**
 * @dev this library provides a set of fraction operations
 */
library FractionLibrary {
    /**
     * @dev returns whether a standard fraction is valid
     */
    function isValid(Fraction memory fraction) internal pure returns (bool) {
        return fraction.d != 0;
    }

    /**
     * @dev returns whether a 112-bit fraction is valid
     */
    function isValid(Fraction112 memory fraction) internal pure returns (bool) {
        return fraction.d != 0;
    }

    /**
     * @dev returns whether a standard fraction is positive
     */
    function isPositive(Fraction memory fraction) internal pure returns (bool) {
        return isValid(fraction) && fraction.n != 0;
    }

    /**
     * @dev returns whether a 112-bit fraction is positive
     */
    function isPositive(Fraction112 memory fraction) internal pure returns (bool) {
        return isValid(fraction) && fraction.n != 0;
    }

    /**
     * @dev returns the inverse of a given fraction
     */
    function inverse(Fraction memory fraction) internal pure returns (Fraction memory) {
        Fraction memory invFraction = Fraction({ n: fraction.d, d: fraction.n });

        if (!isValid(invFraction)) {
            revert InvalidFraction();
        }

        return invFraction;
    }

    /**
     * @dev returns the inverse of a given fraction
     */
    function inverse(Fraction112 memory fraction) internal pure returns (Fraction112 memory) {
        Fraction112 memory invFraction = Fraction112({ n: fraction.d, d: fraction.n });

        if (!isValid(invFraction)) {
            revert InvalidFraction();
        }

        return invFraction;
    }

    /**
     * @dev reduces a standard fraction to a 112-bit fraction
     */
    function toFraction112(Fraction memory fraction) internal pure returns (Fraction112 memory) {
        Fraction memory truncatedFraction = MathEx.truncatedFraction(fraction, type(uint112).max);

        return Fraction112({ n: uint112(truncatedFraction.n), d: uint112(truncatedFraction.d) });
    }

    /**
     * @dev expands a 112-bit fraction to a standard fraction
     */
    function fromFraction112(Fraction112 memory fraction) internal pure returns (Fraction memory) {
        return Fraction({ n: fraction.n, d: fraction.d });
    }
}

File 40 of 49 : MathEx.sol
// SPDX-License-Identifier: SEE LICENSE IN LICENSE
pragma solidity 0.8.13;

import { Math } from "@openzeppelin/contracts/utils/math/Math.sol";
import { Fraction, InvalidFraction } from "./Fraction.sol";

import { PPM_RESOLUTION } from "./Constants.sol";

uint256 constant ONE = 0x80000000000000000000000000000000;
uint256 constant LN2 = 0x58b90bfbe8e7bcd5e4f1d9cc01f97b57;

struct Uint512 {
    uint256 hi; // 256 most significant bits
    uint256 lo; // 256 least significant bits
}

struct Sint256 {
    uint256 value;
    bool isNeg;
}

/**
 * @dev this library provides a set of complex math operations
 */
library MathEx {
    error Overflow();

    /**
     * @dev returns `2 ^ f` by calculating `e ^ (f * ln(2))`, where `e` is Euler's number:
     * - Rewrite the input as a sum of binary exponents and a single residual r, as small as possible
     * - The exponentiation of each binary exponent is given (pre-calculated)
     * - The exponentiation of r is calculated via Taylor series for e^x, where x = r
     * - The exponentiation of the input is calculated by multiplying the intermediate results above
     * - For example: e^5.521692859 = e^(4 + 1 + 0.5 + 0.021692859) = e^4 * e^1 * e^0.5 * e^0.021692859
     */
    function exp2(Fraction memory f) internal pure returns (Fraction memory) {
        uint256 x = MathEx.mulDivF(LN2, f.n, f.d);
        uint256 y;
        uint256 z;
        uint256 n;

        if (x >= (ONE << 4)) {
            revert Overflow();
        }

        unchecked {
            z = y = x % (ONE >> 3); // get the input modulo 2^(-3)
            z = (z * y) / ONE;
            n += z * 0x10e1b3be415a0000; // add y^02 * (20! / 02!)
            z = (z * y) / ONE;
            n += z * 0x05a0913f6b1e0000; // add y^03 * (20! / 03!)
            z = (z * y) / ONE;
            n += z * 0x0168244fdac78000; // add y^04 * (20! / 04!)
            z = (z * y) / ONE;
            n += z * 0x004807432bc18000; // add y^05 * (20! / 05!)
            z = (z * y) / ONE;
            n += z * 0x000c0135dca04000; // add y^06 * (20! / 06!)
            z = (z * y) / ONE;
            n += z * 0x0001b707b1cdc000; // add y^07 * (20! / 07!)
            z = (z * y) / ONE;
            n += z * 0x000036e0f639b800; // add y^08 * (20! / 08!)
            z = (z * y) / ONE;
            n += z * 0x00000618fee9f800; // add y^09 * (20! / 09!)
            z = (z * y) / ONE;
            n += z * 0x0000009c197dcc00; // add y^10 * (20! / 10!)
            z = (z * y) / ONE;
            n += z * 0x0000000e30dce400; // add y^11 * (20! / 11!)
            z = (z * y) / ONE;
            n += z * 0x000000012ebd1300; // add y^12 * (20! / 12!)
            z = (z * y) / ONE;
            n += z * 0x0000000017499f00; // add y^13 * (20! / 13!)
            z = (z * y) / ONE;
            n += z * 0x0000000001a9d480; // add y^14 * (20! / 14!)
            z = (z * y) / ONE;
            n += z * 0x00000000001c6380; // add y^15 * (20! / 15!)
            z = (z * y) / ONE;
            n += z * 0x000000000001c638; // add y^16 * (20! / 16!)
            z = (z * y) / ONE;
            n += z * 0x0000000000001ab8; // add y^17 * (20! / 17!)
            z = (z * y) / ONE;
            n += z * 0x000000000000017c; // add y^18 * (20! / 18!)
            z = (z * y) / ONE;
            n += z * 0x0000000000000014; // add y^19 * (20! / 19!)
            z = (z * y) / ONE;
            n += z * 0x0000000000000001; // add y^20 * (20! / 20!)
            n = n / 0x21c3677c82b40000 + y + ONE; // divide by 20! and then add y^1 / 1! + y^0 / 0!

            if ((x & (ONE >> 3)) != 0)
                n = (n * 0x1c3d6a24ed82218787d624d3e5eba95f9) / 0x18ebef9eac820ae8682b9793ac6d1e776; // multiply by e^(2^-3)
            if ((x & (ONE >> 2)) != 0)
                n = (n * 0x18ebef9eac820ae8682b9793ac6d1e778) / 0x1368b2fc6f9609fe7aceb46aa619baed4; // multiply by e^(2^-2)
            if ((x & (ONE >> 1)) != 0)
                n = (n * 0x1368b2fc6f9609fe7aceb46aa619baed5) / 0x0bc5ab1b16779be3575bd8f0520a9f21f; // multiply by e^(2^-1)
            if ((x & (ONE << 0)) != 0)
                n = (n * 0x0bc5ab1b16779be3575bd8f0520a9f21e) / 0x0454aaa8efe072e7f6ddbab84b40a55c9; // multiply by e^(2^+0)
            if ((x & (ONE << 1)) != 0)
                n = (n * 0x0454aaa8efe072e7f6ddbab84b40a55c5) / 0x00960aadc109e7a3bf4578099615711ea; // multiply by e^(2^+1)
            if ((x & (ONE << 2)) != 0)
                n = (n * 0x00960aadc109e7a3bf4578099615711d7) / 0x0002bf84208204f5977f9a8cf01fdce3d; // multiply by e^(2^+2)
            if ((x & (ONE << 3)) != 0)
                n = (n * 0x0002bf84208204f5977f9a8cf01fdc307) / 0x0000003c6ab775dd0b95b4cbee7e65d11; // multiply by e^(2^+3)
        }

        return Fraction({ n: n, d: ONE });
    }

    /**
     * @dev returns a fraction with truncated components
     * note that since the input value is truncated, the use of the method incurs precision loss
     */
    function truncatedFraction(Fraction memory fraction, uint256 max) internal pure returns (Fraction memory) {
        uint256 scale = Math.ceilDiv(Math.max(fraction.n, fraction.d), max);
        Fraction memory truncated = Fraction({ n: fraction.n / scale, d: fraction.d / scale });
        if (truncated.d == 0) {
            revert InvalidFraction();
        }

        return truncated;
    }

    /**
     * @dev returns the weighted average of two fractions
     */
    function weightedAverage(
        Fraction memory fraction1,
        Fraction memory fraction2,
        uint256 weight1,
        uint256 weight2
    ) internal pure returns (Fraction memory) {
        return
            Fraction({
                n: fraction1.n * fraction2.d * weight1 + fraction1.d * fraction2.n * weight2,
                d: fraction1.d * fraction2.d * (weight1 + weight2)
            });
    }

    /**
     * @dev returns whether or not the deviation of an offset sample from a base sample is within a permitted range
     * for example, if the maximum permitted deviation is 5%, then evaluate `95% * base <= offset <= 105% * base`
     */
    function isInRange(
        Fraction memory baseSample,
        Fraction memory offsetSample,
        uint32 maxDeviationPPM
    ) internal pure returns (bool) {
        Uint512 memory min = mul512(baseSample.n, offsetSample.d * (PPM_RESOLUTION - maxDeviationPPM));
        Uint512 memory mid = mul512(baseSample.d, offsetSample.n * PPM_RESOLUTION);
        Uint512 memory max = mul512(baseSample.n, offsetSample.d * (PPM_RESOLUTION + maxDeviationPPM));
        return lte512(min, mid) && lte512(mid, max);
    }

    /**
     * @dev returns an `Sint256` positive representation of an unsigned integer
     */
    function toPos256(uint256 n) internal pure returns (Sint256 memory) {
        return Sint256({ value: n, isNeg: false });
    }

    /**
     * @dev returns an `Sint256` negative representation of an unsigned integer
     */
    function toNeg256(uint256 n) internal pure returns (Sint256 memory) {
        return Sint256({ value: n, isNeg: true });
    }

    /**
     * @dev returns the largest integer smaller than or equal to `x * y / z`
     */
    function mulDivF(uint256 x, uint256 y, uint256 z) internal pure returns (uint256) {
        Uint512 memory xy = mul512(x, y);

        // if `x * y < 2 ^ 256`
        if (xy.hi == 0) {
            return xy.lo / z;
        }

        // assert `x * y / z < 2 ^ 256`
        if (xy.hi >= z) {
            revert Overflow();
        }

        uint256 m = _mulMod(x, y, z); // `m = x * y % z`
        Uint512 memory n = _sub512(xy, m); // `n = x * y - m` hence `n / z = floor(x * y / z)`

        // if `n < 2 ^ 256`
        if (n.hi == 0) {
            return n.lo / z;
        }

        uint256 p = _unsafeSub(0, z) & z; // `p` is the largest power of 2 which `z` is divisible by
        uint256 q = _div512(n, p); // `n` is divisible by `p` because `n` is divisible by `z` and `z` is divisible by `p`
        uint256 r = _inv256(z / p); // `z / p = 1 mod 2` hence `inverse(z / p) = 1 mod 2 ^ 256`
        return _unsafeMul(q, r); // `q * r = (n / p) * inverse(z / p) = n / z`
    }

    /**
     * @dev returns the smallest integer larger than or equal to `x * y / z`
     */
    function mulDivC(uint256 x, uint256 y, uint256 z) internal pure returns (uint256) {
        uint256 w = mulDivF(x, y, z);
        if (_mulMod(x, y, z) > 0) {
            if (w >= type(uint256).max) {
                revert Overflow();
            }

            return w + 1;
        }
        return w;
    }

    /**
     * @dev returns the maximum of `n1 - n2` and 0
     */
    function subMax0(uint256 n1, uint256 n2) internal pure returns (uint256) {
        return n1 > n2 ? n1 - n2 : 0;
    }

    /**
     * @dev returns the value of `x > y`
     */
    function gt512(Uint512 memory x, Uint512 memory y) internal pure returns (bool) {
        return x.hi > y.hi || (x.hi == y.hi && x.lo > y.lo);
    }

    /**
     * @dev returns the value of `x < y`
     */
    function lt512(Uint512 memory x, Uint512 memory y) internal pure returns (bool) {
        return x.hi < y.hi || (x.hi == y.hi && x.lo < y.lo);
    }

    /**
     * @dev returns the value of `x >= y`
     */
    function gte512(Uint512 memory x, Uint512 memory y) internal pure returns (bool) {
        return !lt512(x, y);
    }

    /**
     * @dev returns the value of `x <= y`
     */
    function lte512(Uint512 memory x, Uint512 memory y) internal pure returns (bool) {
        return !gt512(x, y);
    }

    /**
     * @dev returns the value of `x * y`
     */
    function mul512(uint256 x, uint256 y) internal pure returns (Uint512 memory) {
        uint256 p = _mulModMax(x, y);
        uint256 q = _unsafeMul(x, y);
        if (p >= q) {
            return Uint512({ hi: p - q, lo: q });
        }
        return Uint512({ hi: _unsafeSub(p, q) - 1, lo: q });
    }

    /**
     * @dev returns the value of `x - y`, given that `x >= y`
     */
    function _sub512(Uint512 memory x, uint256 y) private pure returns (Uint512 memory) {
        if (x.lo >= y) {
            return Uint512({ hi: x.hi, lo: x.lo - y });
        }
        return Uint512({ hi: x.hi - 1, lo: _unsafeSub(x.lo, y) });
    }

    /**
     * @dev returns the value of `x / pow2n`, given that `x` is divisible by `pow2n`
     */
    function _div512(Uint512 memory x, uint256 pow2n) private pure returns (uint256) {
        uint256 pow2nInv = _unsafeAdd(_unsafeSub(0, pow2n) / pow2n, 1); // `1 << (256 - n)`
        return _unsafeMul(x.hi, pow2nInv) | (x.lo / pow2n); // `(x.hi << (256 - n)) | (x.lo >> n)`
    }

    /**
     * @dev returns the inverse of `d` modulo `2 ^ 256`, given that `d` is congruent to `1` modulo `2`
     */
    function _inv256(uint256 d) private pure returns (uint256) {
        // approximate the root of `f(x) = 1 / x - d` using the newton–raphson convergence method
        uint256 x = 1;
        for (uint256 i = 0; i < 8; i++) {
            x = _unsafeMul(x, _unsafeSub(2, _unsafeMul(x, d))); // `x = x * (2 - x * d) mod 2 ^ 256`
        }
        return x;
    }

    /**
     * @dev returns `(x + y) % 2 ^ 256`
     */
    function _unsafeAdd(uint256 x, uint256 y) private pure returns (uint256) {
        unchecked {
            return x + y;
        }
    }

    /**
     * @dev returns `(x - y) % 2 ^ 256`
     */
    function _unsafeSub(uint256 x, uint256 y) private pure returns (uint256) {
        unchecked {
            return x - y;
        }
    }

    /**
     * @dev returns `(x * y) % 2 ^ 256`
     */
    function _unsafeMul(uint256 x, uint256 y) private pure returns (uint256) {
        unchecked {
            return x * y;
        }
    }

    /**
     * @dev returns `x * y % (2 ^ 256 - 1)`
     */
    function _mulModMax(uint256 x, uint256 y) private pure returns (uint256) {
        return mulmod(x, y, type(uint256).max);
    }

    /**
     * @dev returns `x * y % z`
     */
    function _mulMod(uint256 x, uint256 y, uint256 z) private pure returns (uint256) {
        return mulmod(x, y, z);
    }
}

File 41 of 49 : Time.sol
// SPDX-License-Identifier: SEE LICENSE IN LICENSE
pragma solidity 0.8.13;

/**
 * @dev this contract abstracts the block timestamp in order to allow for more flexible control in tests
 */
abstract contract Time {
    /**
     * @dev returns the current time
     */
    function _time() internal view virtual returns (uint32) {
        return uint32(block.timestamp);
    }
}

File 42 of 49 : Upgradeable.sol
// SPDX-License-Identifier: SEE LICENSE IN LICENSE
pragma solidity 0.8.13;

import { AccessControlEnumerableUpgradeable } from "@openzeppelin/contracts-upgradeable/access/AccessControlEnumerableUpgradeable.sol";

import { IUpgradeable } from "./interfaces/IUpgradeable.sol";

import { AccessDenied } from "./Utils.sol";

/**
 * @dev this contract provides common utilities for upgradeable contracts
 *
 * note that we're using the Transparent Upgradeable Proxy pattern and *not* the Universal Upgradeable Proxy Standard
 * (UUPS) pattern, therefore initializing the implementation contracts is not necessary or required
 */
abstract contract Upgradeable is IUpgradeable, AccessControlEnumerableUpgradeable {
    error AlreadyInitialized();

    // the admin role is used to allow a non-proxy admin to perform additional initialization/setup during contract
    // upgrades
    bytes32 internal constant ROLE_ADMIN = keccak256("ROLE_ADMIN");

    uint32 internal constant MAX_GAP = 50;

    uint16 internal _initializations;

    // upgrade forward-compatibility storage gap
    uint256[MAX_GAP - 1] private __gap;

    // solhint-disable func-name-mixedcase

    /**
     * @dev initializes the contract and its parents
     */
    function __Upgradeable_init() internal onlyInitializing {
        __AccessControl_init();

        __Upgradeable_init_unchained();
    }

    /**
     * @dev performs contract-specific initialization
     */
    function __Upgradeable_init_unchained() internal onlyInitializing {
        _initializations = 1;

        // set up administrative roles
        _setRoleAdmin(ROLE_ADMIN, ROLE_ADMIN);

        // allow the deployer to initially be the admin of the contract
        _setupRole(ROLE_ADMIN, msg.sender);
    }

    // solhint-enable func-name-mixedcase

    modifier onlyAdmin() {
        _hasRole(ROLE_ADMIN, msg.sender);

        _;
    }

    modifier onlyRoleMember(bytes32 role) {
        _hasRole(role, msg.sender);

        _;
    }

    function version() public view virtual override returns (uint16);

    /**
     * @dev returns the admin role
     */
    function roleAdmin() external pure returns (bytes32) {
        return ROLE_ADMIN;
    }

    /**
     * @dev performs post-upgrade initialization
     *
     * requirements:
     *
     * - this must can be called only once per-upgrade
     */
    function postUpgrade(bytes calldata data) external {
        uint16 initializations = _initializations + 1;

        if (initializations != version()) {
            revert AlreadyInitialized();
        }

        _initializations = initializations;

        _postUpgrade(data);
    }

    /**
     * @dev an optional post-upgrade callback that can be implemented by child contracts
     */
    function _postUpgrade(bytes calldata /* data */) internal virtual {}

    function _hasRole(bytes32 role, address account) internal view {
        if (!hasRole(role, account)) {
            revert AccessDenied();
        }
    }
}

File 43 of 49 : Utils.sol
// SPDX-License-Identifier: SEE LICENSE IN LICENSE
pragma solidity 0.8.13;

import { PPM_RESOLUTION } from "./Constants.sol";

error AccessDenied();
error AlreadyExists();
error DoesNotExist();
error InvalidAddress();
error InvalidExternalAddress();
error InvalidFee();
error InvalidPool();
error InvalidPoolCollection();
error InvalidStakedBalance();
error InvalidToken();
error InvalidParam();
error NotEmpty();
error NotPayable();
error ZeroValue();

/**
 * @dev common utilities
 */
abstract contract Utils {
    // allows execution by the caller only
    modifier only(address caller) {
        _only(caller);

        _;
    }

    function _only(address caller) internal view {
        if (msg.sender != caller) {
            revert AccessDenied();
        }
    }

    // verifies that a value is greater than zero
    modifier greaterThanZero(uint256 value) {
        _greaterThanZero(value);

        _;
    }

    // error message binary size optimization
    function _greaterThanZero(uint256 value) internal pure {
        if (value == 0) {
            revert ZeroValue();
        }
    }

    // validates an address - currently only checks that it isn't null
    modifier validAddress(address addr) {
        _validAddress(addr);

        _;
    }

    // error message binary size optimization
    function _validAddress(address addr) internal pure {
        if (addr == address(0)) {
            revert InvalidAddress();
        }
    }

    // validates an external address - currently only checks that it isn't null or this
    modifier validExternalAddress(address addr) {
        _validExternalAddress(addr);

        _;
    }

    // error message binary size optimization
    function _validExternalAddress(address addr) internal view {
        if (addr == address(0) || addr == address(this)) {
            revert InvalidExternalAddress();
        }
    }

    // ensures that the fee is valid
    modifier validFee(uint32 fee) {
        _validFee(fee);

        _;
    }

    // error message binary size optimization
    function _validFee(uint32 fee) internal pure {
        if (fee > PPM_RESOLUTION) {
            revert InvalidFee();
        }
    }
}

File 44 of 49 : IOwned.sol
// SPDX-License-Identifier: SEE LICENSE IN LICENSE
pragma solidity 0.8.13;

/**
 * @dev Owned interface
 */
interface IOwned {
    /**
     * @dev returns the address of the current owner
     */
    function owner() external view returns (address);

    /**
     * @dev allows transferring the contract ownership
     *
     * requirements:
     *
     * - the caller must be the owner of the contract
     * - the new owner still needs to accept the transfer
     */
    function transferOwnership(address ownerCandidate) external;

    /**
     * @dev used by a new owner to accept an ownership transfer
     */
    function acceptOwnership() external;
}

File 45 of 49 : IUpgradeable.sol
// SPDX-License-Identifier: SEE LICENSE IN LICENSE
pragma solidity 0.8.13;

import { IVersioned } from "./IVersioned.sol";

import { IAccessControlEnumerableUpgradeable } from "@openzeppelin/contracts-upgradeable/access/IAccessControlEnumerableUpgradeable.sol";

/**
 * @dev this is the common interface for upgradeable contracts
 */
interface IUpgradeable is IAccessControlEnumerableUpgradeable, IVersioned {

}

File 46 of 49 : IVersioned.sol
// SPDX-License-Identifier: SEE LICENSE IN LICENSE
pragma solidity 0.8.13;

/**
 * @dev an interface for a versioned contract
 */
interface IVersioned {
    function version() external view returns (uint16);
}

File 47 of 49 : IExternalProtectionVault.sol
// SPDX-License-Identifier: SEE LICENSE IN LICENSE
pragma solidity 0.8.13;

import { IVault } from "./IVault.sol";

interface IExternalProtectionVault is IVault {}

File 48 of 49 : IMasterVault.sol
// SPDX-License-Identifier: SEE LICENSE IN LICENSE
pragma solidity 0.8.13;

import { IVault } from "./IVault.sol";

interface IMasterVault is IVault {}

File 49 of 49 : IVault.sol
// SPDX-License-Identifier: SEE LICENSE IN LICENSE
pragma solidity 0.8.13;

import { IUpgradeable } from "../../utility/interfaces/IUpgradeable.sol";

import { Token } from "../../token/Token.sol";

// the asset manager role is required to access all the funds
bytes32 constant ROLE_ASSET_MANAGER = keccak256("ROLE_ASSET_MANAGER");

interface IVault is IUpgradeable {
    /**
     * @dev triggered when tokens have been withdrawn from the vault
     */
    event FundsWithdrawn(Token indexed token, address indexed caller, address indexed target, uint256 amount);

    /**
     * @dev triggered when tokens have been burned from the vault
     */
    event FundsBurned(Token indexed token, address indexed caller, uint256 amount);

    /**
     * @dev tells whether the vault accepts native token deposits
     */
    function isPayable() external view returns (bool);

    /**
     * @dev withdraws funds held by the contract and sends them to an account
     */
    function withdrawFunds(
        Token token,
        address payable target,
        uint256 amount
    ) external;

    /**
     * @dev burns funds held by the contract
     */
    function burn(Token token, uint256 amount) external;
}

Settings
{
  "evmVersion": "london",
  "libraries": {},
  "metadata": {
    "bytecodeHash": "none",
    "useLiteralContent": true
  },
  "optimizer": {
    "enabled": true,
    "runs": 200
  },
  "remappings": [],
  "outputSelection": {
    "*": {
      "*": [
        "evm.bytecode",
        "evm.deployedBytecode",
        "devdoc",
        "userdoc",
        "metadata",
        "abi"
      ]
    }
  }
}

Contract Security Audit

Contract ABI

[{"inputs":[{"internalType":"contract ITokenGovernance","name":"initBNTGovernance","type":"address"},{"internalType":"contract ITokenGovernance","name":"initVBNTGovernance","type":"address"},{"internalType":"contract INetworkSettings","name":"initNetworkSettings","type":"address"},{"internalType":"contract IMasterVault","name":"initMasterVault","type":"address"},{"internalType":"contract IExternalProtectionVault","name":"initExternalProtectionVault","type":"address"},{"internalType":"contract IPoolToken","name":"initBNTPoolToken","type":"address"},{"internalType":"address","name":"bancorArbitrage","type":"address"},{"internalType":"address","name":"carbonPOL","type":"address"}],"stateMutability":"nonpayable","type":"constructor"},{"inputs":[],"name":"AccessDenied","type":"error"},{"inputs":[],"name":"AlreadyExists","type":"error"},{"inputs":[],"name":"AlreadyInitialized","type":"error"},{"inputs":[],"name":"DeadlineExpired","type":"error"},{"inputs":[],"name":"DepositingDisabled","type":"error"},{"inputs":[],"name":"DoesNotExist","type":"error"},{"inputs":[],"name":"InsufficientFlashLoanReturn","type":"error"},{"inputs":[],"name":"InvalidAddress","type":"error"},{"inputs":[],"name":"InvalidFee","type":"error"},{"inputs":[],"name":"InvalidPool","type":"error"},{"inputs":[],"name":"InvalidToken","type":"error"},{"inputs":[],"name":"NativeTokenAmountMismatch","type":"error"},{"inputs":[],"name":"NotEmpty","type":"error"},{"inputs":[],"name":"NotWhitelisted","type":"error"},{"inputs":[],"name":"NotWhitelistedForPOL","type":"error"},{"inputs":[],"name":"Overflow","type":"error"},{"inputs":[],"name":"PoolNotInSurplus","type":"error"},{"inputs":[],"name":"ZeroValue","type":"error"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"contract Token","name":"token","type":"address"},{"indexed":true,"internalType":"address","name":"borrower","type":"address"},{"indexed":false,"internalType":"uint256","name":"amount","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"feeAmount","type":"uint256"}],"name":"FlashLoanCompleted","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"bytes32","name":"contextId","type":"bytes32"},{"indexed":true,"internalType":"contract Token","name":"token","type":"address"},{"indexed":true,"internalType":"address","name":"provider","type":"address"},{"indexed":false,"internalType":"uint256","name":"amount","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"availableAmount","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"originalAmount","type":"uint256"}],"name":"FundsMigrated","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"oldMinNetworkFeeBurn","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"newMinNetworkFeeBurn","type":"uint256"}],"name":"MinNetworkFeeBurnUpdated","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"caller","type":"address"},{"indexed":false,"internalType":"uint256","name":"amount","type":"uint256"}],"name":"NetworkFeesBurned","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint32","name":"oldRewardsPPM","type":"uint32"},{"indexed":false,"internalType":"uint32","name":"newRewardsPPM","type":"uint32"}],"name":"POLRewardsPPMUpdated","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"caller","type":"address"},{"indexed":true,"internalType":"address","name":"token","type":"address"},{"indexed":false,"internalType":"uint256","name":"polTokenAmount","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"userReward","type":"uint256"}],"name":"POLWithdrawn","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"account","type":"address"}],"name":"Paused","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"contract Token","name":"pool","type":"address"},{"indexed":true,"internalType":"contract IPoolCollection","name":"poolCollection","type":"address"}],"name":"PoolAdded","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"uint16","name":"poolType","type":"uint16"},{"indexed":true,"internalType":"contract IPoolCollection","name":"poolCollection","type":"address"}],"name":"PoolCollectionAdded","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"uint16","name":"poolType","type":"uint16"},{"indexed":true,"internalType":"contract IPoolCollection","name":"poolCollection","type":"address"}],"name":"PoolCollectionRemoved","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"contract Token","name":"pool","type":"address"},{"indexed":true,"internalType":"contract IPoolCollection","name":"poolCollection","type":"address"}],"name":"PoolCreated","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"contract Token","name":"pool","type":"address"},{"indexed":true,"internalType":"contract IPoolCollection","name":"poolCollection","type":"address"}],"name":"PoolRemoved","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"bytes32","name":"role","type":"bytes32"},{"indexed":true,"internalType":"bytes32","name":"previousAdminRole","type":"bytes32"},{"indexed":true,"internalType":"bytes32","name":"newAdminRole","type":"bytes32"}],"name":"RoleAdminChanged","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"bytes32","name":"role","type":"bytes32"},{"indexed":true,"internalType":"address","name":"account","type":"address"},{"indexed":true,"internalType":"address","name":"sender","type":"address"}],"name":"RoleGranted","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"bytes32","name":"role","type":"bytes32"},{"indexed":true,"internalType":"address","name":"account","type":"address"},{"indexed":true,"internalType":"address","name":"sender","type":"address"}],"name":"RoleRevoked","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"bytes32","name":"contextId","type":"bytes32"},{"indexed":true,"internalType":"contract Token","name":"sourceToken","type":"address"},{"indexed":true,"internalType":"contract Token","name":"targetToken","type":"address"},{"indexed":false,"internalType":"uint256","name":"sourceAmount","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"targetAmount","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"bntAmount","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"targetFeeAmount","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"bntFeeAmount","type":"uint256"},{"indexed":false,"internalType":"address","name":"trader","type":"address"}],"name":"TokensTraded","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"account","type":"address"}],"name":"Unpaused","type":"event"},{"inputs":[],"name":"DEFAULT_ADMIN_ROLE","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"burnNetworkFees","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"id","type":"uint256"}],"name":"cancelWithdrawal","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"contract Token","name":"pool","type":"address"}],"name":"collectionByPool","outputs":[{"internalType":"contract IPoolCollection","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"contract Token[]","name":"tokens","type":"address[]"},{"internalType":"contract IPoolCollection","name":"poolCollection","type":"address"}],"name":"createPools","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"contract Token","name":"pool","type":"address"},{"internalType":"uint256","name":"tokenAmount","type":"uint256"}],"name":"deposit","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"address","name":"provider","type":"address"},{"internalType":"contract Token","name":"pool","type":"address"},{"internalType":"uint256","name":"tokenAmount","type":"uint256"}],"name":"depositFor","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"depositingEnabled","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bool","name":"status","type":"bool"}],"name":"enableDepositing","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"contract Token","name":"token","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"},{"internalType":"contract IFlashLoanRecipient","name":"recipient","type":"address"},{"internalType":"bytes","name":"data","type":"bytes"}],"name":"flashLoan","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes32","name":"role","type":"bytes32"}],"name":"getRoleAdmin","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bytes32","name":"role","type":"bytes32"},{"internalType":"uint256","name":"index","type":"uint256"}],"name":"getRoleMember","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bytes32","name":"role","type":"bytes32"}],"name":"getRoleMemberCount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bytes32","name":"role","type":"bytes32"},{"internalType":"address","name":"account","type":"address"}],"name":"grantRole","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes32","name":"role","type":"bytes32"},{"internalType":"address","name":"account","type":"address"}],"name":"hasRole","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"contract IPoolToken","name":"poolToken","type":"address"},{"internalType":"uint256","name":"poolTokenAmount","type":"uint256"}],"name":"initWithdrawal","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"contract IBNTPool","name":"initBNTPool","type":"address"},{"internalType":"contract IPendingWithdrawals","name":"initPendingWithdrawals","type":"address"},{"internalType":"contract IPoolMigrator","name":"initPoolMigrator","type":"address"}],"name":"initialize","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"liquidityPools","outputs":[{"internalType":"contract Token[]","name":"","type":"address[]"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"contract Token","name":"token","type":"address"},{"internalType":"address","name":"provider","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"},{"internalType":"uint256","name":"availableAmount","type":"uint256"},{"internalType":"uint256","name":"originalAmount","type":"uint256"}],"name":"migrateLiquidity","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"contract Token[]","name":"pools","type":"address[]"},{"internalType":"contract IPoolCollection","name":"newPoolCollection","type":"address"}],"name":"migratePools","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"minNetworkFeeBurn","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"pause","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"paused","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"pendingNetworkFeeAmount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"polRewardsPPM","outputs":[{"internalType":"uint32","name":"","type":"uint32"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"poolCollections","outputs":[{"internalType":"contract IPoolCollection[]","name":"","type":"address[]"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bytes","name":"data","type":"bytes"}],"name":"postUpgrade","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"contract IPoolCollection","name":"newPoolCollection","type":"address"}],"name":"registerPoolCollection","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes32","name":"role","type":"bytes32"},{"internalType":"address","name":"account","type":"address"}],"name":"renounceRole","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"resume","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes32","name":"role","type":"bytes32"},{"internalType":"address","name":"account","type":"address"}],"name":"revokeRole","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"roleAdmin","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"pure","type":"function"},{"inputs":[],"name":"roleEmergencyStopper","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"pure","type":"function"},{"inputs":[],"name":"roleMigrationManager","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"pure","type":"function"},{"inputs":[{"internalType":"uint256","name":"newMinNetworkFeeBurn","type":"uint256"}],"name":"setMinNetworkFeeBurn","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint32","name":"newRewardsPPM","type":"uint32"}],"name":"setPOLRewardsPPM","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"contract Token","name":"sourceToken","type":"address"},{"internalType":"contract Token","name":"targetToken","type":"address"},{"internalType":"uint256","name":"sourceAmount","type":"uint256"},{"internalType":"uint256","name":"minReturnAmount","type":"uint256"},{"internalType":"uint256","name":"deadline","type":"uint256"},{"internalType":"address","name":"beneficiary","type":"address"}],"name":"tradeBySourceAmount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"contract Token","name":"sourceToken","type":"address"},{"internalType":"contract Token","name":"targetToken","type":"address"},{"internalType":"uint256","name":"sourceAmount","type":"uint256"},{"internalType":"uint256","name":"minReturnAmount","type":"uint256"},{"internalType":"uint256","name":"deadline","type":"uint256"},{"internalType":"address","name":"beneficiary","type":"address"}],"name":"tradeBySourceAmountArb","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"contract Token","name":"sourceToken","type":"address"},{"internalType":"contract Token","name":"targetToken","type":"address"},{"internalType":"uint256","name":"targetAmount","type":"uint256"},{"internalType":"uint256","name":"maxSourceAmount","type":"uint256"},{"internalType":"uint256","name":"deadline","type":"uint256"},{"internalType":"address","name":"beneficiary","type":"address"}],"name":"tradeByTargetAmount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"contract Token","name":"sourceToken","type":"address"},{"internalType":"contract Token","name":"targetToken","type":"address"},{"internalType":"uint256","name":"targetAmount","type":"uint256"},{"internalType":"uint256","name":"maxSourceAmount","type":"uint256"},{"internalType":"uint256","name":"deadline","type":"uint256"},{"internalType":"address","name":"beneficiary","type":"address"}],"name":"tradeByTargetAmountArb","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"contract IPoolCollection","name":"poolCollection","type":"address"}],"name":"unregisterPoolCollection","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"version","outputs":[{"internalType":"uint16","name":"","type":"uint16"}],"stateMutability":"pure","type":"function"},{"inputs":[{"internalType":"uint256","name":"id","type":"uint256"}],"name":"withdraw","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"contract Token","name":"pool","type":"address"}],"name":"withdrawPOL","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"nonpayable","type":"function"},{"stateMutability":"payable","type":"receive"}]

6101c0604052610169805460ff191660011790553480156200002057600080fd5b50604051620061a3380380620061a3833981016040819052620000439162000222565b876200004f81620001e1565b876200005b81620001e1565b876200006781620001e1565b876200007381620001e1565b876200007f81620001e1565b876200008b81620001e1565b876200009781620001e1565b87620000a381620001e1565b8f6001600160a01b031660a0816001600160a01b0316815250508f6001600160a01b031663fc0c546a6040518163ffffffff1660e01b8152600401602060405180830381865afa158015620000fc573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190620001229190620002e3565b6001600160a01b039081166080528f1660e081905260408051637e062a3560e11b8152905163fc0c546a916004808201926020929091908290030181865afa15801562000173573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190620001999190620002e3565b6001600160a01b0390811660c0529d8e1661010052505050509789166101205250505092851661014052908416610160528316610180529091166101a052506200030a915050565b6001600160a01b038116620002095760405163e6c4247b60e01b815260040160405180910390fd5b50565b6001600160a01b03811681146200020957600080fd5b600080600080600080600080610100898b0312156200024057600080fd5b88516200024d816200020c565b60208a015190985062000260816200020c565b60408a015190975062000273816200020c565b60608a015190965062000286816200020c565b60808a015190955062000299816200020c565b60a08a0151909450620002ac816200020c565b60c08a0151909350620002bf816200020c565b60e08a0151909250620002d2816200020c565b809150509295985092959890939650565b600060208284031215620002f657600080fd5b815162000303816200020c565b9392505050565b60805160a05160c05160e05161010051610120516101405161016051610180516101a051615d586200044b6000396000611688015260008181611b990152818161231c015281816124c00152818161356c0152613d21015260008181610cf00152612faa01526000818161287d0152612b2a0152600081816108da0152818161150b015281816116600152818161171601528181611c9801528181611df301528181611e2d015281816127ee01528181612a9b015281816141c40152818161423e015261464c01526000818161146501528181611b020152611bec0152600050506000612c76015260005050600081816109070152818161102001528181611aad01528181611e5c0152818161325f015281816133fb015281816136be015281816143f1015281816144c601528181614b240152614b610152615d586000f3fe6080604052600436106102765760003560e01c80635c975abb1161014f578063a8bf9046116100c1578063d0d145811161007a578063d0d1458114610758578063d3a4acd31461076b578063d547741f1461077e578063d6efd7c31461079e578063d895feee146107b3578063e6aac07e146107c657600080fd5b8063a8bf9046146106a5578063adf51de1146106c5578063b3db428b146106e5578063c0c53b8b146106f8578063c109ba1314610718578063ca15c8731461073857600080fd5b80638ffcca07116101135780638ffcca07146105bd5780639010d07c146105dd57806391d148541461061557806393867fb5146106355780639bca0e7014610656578063a217fddf1461069057600080fd5b80635c975abb1461054057806371f43f9a146105595780637bf6a425146105725780638456cb59146105885780638cd2403d1461059d57600080fd5b806336568abe116101e857806341f435b3116101ac57806341f435b31461049d57806342659964146104be57806345d6602c146104de57806347e7ef24146104f1578063533007721461050457806354fd4d501461052457600080fd5b806336568abe146104125780633982b5311461043257806339fadf98146104485780633d1c24e71461046a5780633efcfda41461047d57600080fd5b8063248a9ca31161023a578063248a9ca31461034257806326e6b697146103725780632d944b80146103925780632e1a7d4d146103b25780632f2ff15d146103d2578063357a0333146103f257600080fd5b806301ffc9a714610282578063046f7da2146102b7578063079767de146102ce5780631329db29146102f1578063230df83a1461032257600080fd5b3661027d57005b600080fd5b34801561028e57600080fd5b506102a261029d366004615359565b6107f9565b60405190151581526020015b60405180910390f35b3480156102c357600080fd5b506102cc610824565b005b3480156102da57600080fd5b506102e3610848565b6040519081526020016102ae565b3480156102fd57600080fd5b5061016954610100900463ffffffff1660405163ffffffff90911681526020016102ae565b34801561032e57600080fd5b506102cc61033d366004615398565b6109a5565b34801561034e57600080fd5b506102e361035d3660046153b5565b60009081526065602052604090206001015490565b34801561037e57600080fd5b506102cc61038d3660046153dc565b610b4a565b34801561039e57600080fd5b506102cc6103ad3660046153b5565b610b87565b3480156103be57600080fd5b506102e36103cd3660046153b5565b610bb6565b3480156103de57600080fd5b506102cc6103ed3660046153f9565b610d5b565b3480156103fe57600080fd5b506102e361040d366004615429565b610d86565b34801561041e57600080fd5b506102cc61042d3660046153f9565b610e00565b34801561043e57600080fd5b5061016a546102e3565b34801561045457600080fd5b5061045d610e7a565b6040516102ae9190615455565b6102cc6104783660046154a2565b610f2c565b34801561048957600080fd5b506102e36104983660046153b5565b6110ce565b3480156104a957600080fd5b50600080516020615cec8339815191526102e3565b3480156104ca57600080fd5b506102cc6104d93660046154f3565b6111a2565b6102e36104ec366004615579565b61126f565b6102e36104ff366004615429565b6112e1565b34801561051057600080fd5b506102cc61051f3660046155f2565b611356565b34801561053057600080fd5b50604051600a81526020016102ae565b34801561054c57600080fd5b5061012d5460ff166102a2565b34801561056557600080fd5b506101695460ff166102a2565b34801561057e57600080fd5b50610168546102e3565b34801561059457600080fd5b506102cc611381565b3480156105a957600080fd5b506102cc6105b8366004615658565b6113a2565b3480156105c957600080fd5b506102e36105d8366004615398565b6113f3565b3480156105e957600080fd5b506105fd6105f836600461569a565b6117e1565b6040516001600160a01b0390911681526020016102ae565b34801561062157600080fd5b506102a26106303660046153f9565b611800565b34801561064157600080fd5b50600080516020615d2c8339815191526102e3565b34801561066257600080fd5b506105fd610671366004615398565b6001600160a01b03908116600090815261016760205260409020541690565b34801561069c57600080fd5b506102e3600081565b3480156106b157600080fd5b506102cc6106c0366004615398565b61182b565b3480156106d157600080fd5b506102cc6106e03660046156bc565b611a42565b6102e36106f336600461572f565b611fc6565b34801561070457600080fd5b506102cc610713366004615770565b612045565b34801561072457600080fd5b506102cc6107333660046154f3565b61212d565b34801561074457600080fd5b506102e36107533660046153b5565b6122d7565b6102e3610766366004615579565b6122ee565b6102e3610779366004615579565b61235f565b34801561078a57600080fd5b506102cc6107993660046153f9565b6123c1565b3480156107aa57600080fd5b5061045d6123e7565b6102e36107c1366004615579565b612492565b3480156107d257600080fd5b507fdf8c9529ea4b244b569bac557a549516f317e7b5cf82dc5e0d8b6d874930a3f56102e3565b60006001600160e01b03198216635a05180f60e01b148061081e575061081e826124f7565b92915050565b600080516020615cec83398151915261083d813361252c565b610845612553565b50565b600061085761012d5460ff1690565b1561087d5760405162461bcd60e51b8152600401610874906157b0565b60405180910390fd5b600260fb540361089f5760405162461bcd60e51b8152600401610874906157da565b600260fb556101685461016a548110156108bd57600091505061099d565b600061016855604051631c20fadd60e01b81526001600160a01b037f00000000000000000000000000000000000000000000000000000000000000001690631c20fadd90610933907f00000000000000000000000000000000000000000000000000000000000000009081908690600401615811565b600060405180830381600087803b15801561094d57600080fd5b505af1158015610961573d6000803e3d6000fd5b50506040518381523392507f032863b8ce7ba939f971bf78a7ee035ae1044bef5dadf789c7cd09d26c0c40f4915060200160405180910390a290505b600160fb5590565b806109af816125e8565b6109c7600080516020615d2c8339815191523361252c565b600260fb54036109e95760405162461bcd60e51b8152600401610874906157da565b600260fb81905550816001600160a01b031663f525cb686040518163ffffffff1660e01b8152600401602060405180830381865afa158015610a2f573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610a539190615835565b15610a71576040516332e7879360e01b815260040160405180910390fd5b610a7d6101628361260f565b610a9a5760405163b0ce759160e01b815260040160405180910390fd5b610aa5826000612624565b816001600160a01b0316826001600160a01b031663b1dd61b66040518163ffffffff1660e01b8152600401602060405180830381865afa158015610aed573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610b11919061584e565b61ffff167fa0c1e3924f995e5ba38f53b4effb6d4b3eeb84176a2951c589115140f638ac0960405160405180910390a35050600160fb55565b610b62600080516020615d2c8339815191523361252c565b6101695460ff1615158115151461084557610169805482151560ff1990911617905550565b610b9f600080516020615d2c8339815191523361252c565b80610ba981612b5b565b610bb282612b7c565b5050565b6000610bc561012d5460ff1690565b15610be25760405162461bcd60e51b8152600401610874906157b0565b600260fb5403610c045760405162461bcd60e51b8152600401610874906157da565b600260fb55336000610c6784836000814260405160609290921b6001600160601b031916602083015260e01b6001600160e01b03191660348201526038810184905260580160405160208183030381529060405280519060200120905092915050565b6101605460405163158591ab60e11b8152600481018390526001600160a01b0385811660248301526044820188905292935060009290911690632b0b2356906064016060604051808303816000875af1158015610cc8573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610cec91906158bf565b90507f00000000000000000000000000000000000000000000000000000000000000006001600160a01b031681600001516001600160a01b031603610d4057610d36828483612bcf565b9350505050610d51565b610d4b828483612d89565b93505050505b600160fb55919050565b600082815260656020526040902060010154610d778133612f20565b610d818383612f84565b505050565b600082610d92816125e8565b82610d9c81612b5b565b61012d5460ff1615610dc05760405162461bcd60e51b8152600401610874906157b0565b600260fb5403610de25760405162461bcd60e51b8152600401610874906157da565b600260fb55610df2338686612fa6565b600160fb5595945050505050565b6001600160a01b0381163314610e705760405162461bcd60e51b815260206004820152602f60248201527f416363657373436f6e74726f6c3a2063616e206f6e6c792072656e6f756e636560448201526e103937b632b9903337b91039b2b63360891b6064820152608401610874565b610bb282826131e7565b60606000610e89610162613209565b905060008167ffffffffffffffff811115610ea657610ea6615872565b604051908082528060200260200182016040528015610ecf578160200160208202803683370190505b50905060005b82811015610f2557610ee961016282613213565b828281518110610efb57610efb615903565b6001600160a01b039092166020928302919091019091015280610f1d8161592f565b915050610ed5565b5092915050565b61012d5460ff1615610f505760405162461bcd60e51b8152600401610874906157b0565b7fdf8c9529ea4b244b569bac557a549516f317e7b5cf82dc5e0d8b6d874930a3f5610f7b813361252c565b600260fb5403610f9d5760405162461bcd60e51b8152600401610874906157da565b600260fb55604080516001600160601b031933606090811b82166020808501919091526001600160e01b03194260e01b1660348501528a821b8316603885015289821b909216604c84015282018790526080820186905260a08083018690528351808403909101815260c090920190925280519101206001600160a01b038088167f0000000000000000000000000000000000000000000000000000000000000000919091160361105d576110578187873360018861321f565b5061106d565b61106b818789883389613366565b505b60408051868152602081018690529081018490526001600160a01b03808816919089169083907f102bce4e43a6a8cf0306fde6154221c1f5460f64ba63b92b156bce998ef0db569060600160405180910390a45050600160fb555050505050565b60006110dd61012d5460ff1690565b156110fa5760405162461bcd60e51b8152600401610874906157b0565b600260fb540361111c5760405162461bcd60e51b8152600401610874906157da565b600260fb5561016054604051635f23b6c560e11b8152336004820152602481018490526001600160a01b039091169063be476d8a906044016020604051808303816000875af1158015611173573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906111979190615835565b600160fb5592915050565b806111ac816125e8565b6111c4600080516020615d2c8339815191523361252c565b600260fb54036111e65760405162461bcd60e51b8152600401610874906157da565b600260fb556111f7610162836133c6565b6112145760405163b0ce759160e01b815260040160405180910390fd5b8260005b818110156112625761125086868381811061123557611235615903565b905060200201602081019061124a9190615398565b856133e8565b8061125a8161592f565b915050611218565b5050600160fb5550505050565b600061127e61012d5460ff1690565b1561129b5760405162461bcd60e51b8152600401610874906157b0565b600260fb54036112bd5760405162461bcd60e51b8152600401610874906157da565b600260fb556112d187878787878733613559565b600160fb55979650505050505050565b60006112eb613631565b826112f5816125e8565b826112ff81612b5b565b61012d5460ff16156113235760405162461bcd60e51b8152600401610874906157b0565b600260fb54036113455760405162461bcd60e51b8152600401610874906157da565b600260fb55610df233868682613657565b61136e600080516020615d2c8339815191523361252c565b8061137881613715565b610bb28261373f565b600080516020615cec83398151915261139a813361252c565b6108456137b8565b60c9546000906113b79061ffff166001615948565b905061ffff8116600a146113dd5760405162dc149f60e41b815260040160405180910390fd5b60c9805461ffff191661ffff8316179055505050565b600061140261012d5460ff1690565b1561141f5760405162461bcd60e51b8152600401610874906157b0565b600260fb54036114415760405162461bcd60e51b8152600401610874906157da565b600260fb5560405163ce53e72960e01b81526001600160a01b0383811660048301527f0000000000000000000000000000000000000000000000000000000000000000169063ce53e72990602401602060405180830381865afa1580156114ac573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906114d0919061596e565b6114ed576040516307d7f4eb60e21b815260040160405180910390fd5b60006114f883613812565b9050600061152f6001600160a01b0385167f000000000000000000000000000000000000000000000000000000000000000061384e565b60405163a135ef1760e01b81526001600160a01b03868116600483015291925060009184169063a135ef1790602401606060405180830381865afa15801561157b573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061159f91906159b0565b60408101519091508281106115c7576040516341e43e3960e01b815260040160405180910390fd5b6040516387a7db0f60e01b81526001600160a01b0387811660048301528516906387a7db0f90602401600060405180830381600087803b15801561160a57600080fd5b505af115801561161e573d6000803e3d6000fd5b505050506000818461163091906159fa565b61016954909150600090611654908390610100900463ffffffff16620f42406138dc565b90506001600160a01b037f000000000000000000000000000000000000000000000000000000000000000016631c20fadd897f00000000000000000000000000000000000000000000000000000000000000006116b185876159fa565b6040518463ffffffff1660e01b81526004016116cf93929190615811565b600060405180830381600087803b1580156116e957600080fd5b505af11580156116fd573d6000803e3d6000fd5b5050604051631c20fadd60e01b81526001600160a01b037f0000000000000000000000000000000000000000000000000000000000000000169250631c20fadd9150611751908b9033908690600401615811565b600060405180830381600087803b15801561176b57600080fd5b505af115801561177f573d6000803e3d6000fd5b5050506001600160a01b0389169050337f5ad7a2184454b6259cd118e4041a953dc9d6498302bbe528e4f967bed91971296117ba84866159fa565b60408051918252602082018690520160405180910390a350600160fb559695505050505050565b60008281526097602052604081206117f99083613213565b9392505050565b60009182526065602090815260408084206001600160a01b0393909316845291905290205460ff1690565b80611835816125e8565b61184d600080516020615d2c8339815191523361252c565b600260fb540361186f5760405162461bcd60e51b8152600401610874906157da565b600260fb819055506000826001600160a01b031663b1dd61b66040518163ffffffff1660e01b8152600401602060405180830381865afa1580156118b7573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906118db919061584e565b90506000836001600160a01b03166354fd4d506040518163ffffffff1660e01b8152600401602060405180830381865afa15801561191d573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611941919061584e565b9050600061194f83836139a8565b90506001600160a01b038116151580611971575061196f61016286613ae0565b155b1561198f5760405163119b4fd360e11b815260040160405180910390fd5b61199a856001612624565b846001600160a01b0316856001600160a01b031663b1dd61b66040518163ffffffff1660e01b8152600401602060405180830381865afa1580156119e2573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611a06919061584e565b61ffff167f5ae87719d73cb0fabb219f0e4b6e0a614ed7506f8a08bdb20bebf313573151b760405160405180910390a35050600160fb55505050565b84611a4c816125e8565b84611a5681612b5b565b84611a60816125e8565b61012d5460ff1615611a845760405162461bcd60e51b8152600401610874906157b0565b600260fb5403611aa65760405162461bcd60e51b8152600401610874906157da565b600260fb557f00000000000000000000000000000000000000000000000000000000000000006001600160a01b0390811690891614158015611b6f575060405163b5af090f60e01b81526001600160a01b0389811660048301527f0000000000000000000000000000000000000000000000000000000000000000169063b5af090f90602401602060405180830381865afa158015611b49573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611b6d919061596e565b155b15611b8d57604051630b094f2760e31b815260040160405180910390fd5b60006001600160a01b037f0000000000000000000000000000000000000000000000000000000000000000163303611bc757506000611c69565b604051637c36afad60e01b81526001600160a01b038a81166004830152611c66918a917f00000000000000000000000000000000000000000000000000000000000000001690637c36afad90602401602060405180830381865afa158015611c33573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611c579190615a11565b63ffffffff16620f42406138dc565b90505b6000611c7e6001600160a01b038b163061384e565b604051631c20fadd60e01b81529091506001600160a01b037f00000000000000000000000000000000000000000000000000000000000000001690631c20fadd90611cd1908d908c908e90600401615811565b600060405180830381600087803b158015611ceb57600080fd5b505af1158015611cff573d6000803e3d6000fd5b50505050876001600160a01b03166323e30c8b33611d238d6001600160a01b031690565b8c868c8c6040518763ffffffff1660e01b8152600401611d4896959493929190615a2e565b600060405180830381600087803b158015611d6257600080fd5b505af1158015611d76573d6000803e3d6000fd5b50505050600081611d99308d6001600160a01b031661384e90919063ffffffff16565b611da391906159fa565b9050611daf838b615a8a565b811015611dcf5760405163b7ed78bf60e01b815260040160405180910390fd5b611de18b6001600160a01b0316613af5565b15611e1e57611e196001600160a01b037f00000000000000000000000000000000000000000000000000000000000000001682613b17565b611e52565b611e526001600160a01b038c167f000000000000000000000000000000000000000000000000000000000000000083613c30565b6001600160a01b037f00000000000000000000000000000000000000000000000000000000000000008116908c1603611efb5761015f54604051637c8f622d60e01b81526001600160a01b038d811660048301526024820186905260006044830152909116908190637c8f622d90606401600060405180830381600087803b158015611edd57600080fd5b505af1158015611ef1573d6000803e3d6000fd5b5050505050611f6e565b6000611f068c613812565b604051631510748b60e01b81526001600160a01b038e811660048301526024820187905291925090821690631510748b90604401600060405180830381600087803b158015611f5457600080fd5b505af1158015611f68573d6000803e3d6000fd5b50505050505b604080518b81526020810185905233916001600160a01b038e16917f0da3485ef1bb570df7bb888887eae5aa01d81b83cd8ccc80c0ea0922a677ecef910160405180910390a35050600160fb55505050505050505050565b6000611fd0613631565b83611fda816125e8565b83611fe4816125e8565b83611fee81612b5b565b61012d5460ff16156120125760405162461bcd60e51b8152600401610874906157b0565b600260fb54036120345760405162461bcd60e51b8152600401610874906157da565b600260fb556112d187878733613657565b8261204f816125e8565b82612059816125e8565b82612063816125e8565b600054610100900460ff1661207e5760005460ff1615612082565b303b155b6120e55760405162461bcd60e51b815260206004820152602e60248201527f496e697469616c697a61626c653a20636f6e747261637420697320616c72656160448201526d191e481a5b9a5d1a585b1a5e995960921b6064820152608401610874565b600054610100900460ff16158015612107576000805461ffff19166101011790555b612112878787613c9b565b8015612124576000805461ff00191690555b50505050505050565b600260fb540361214f5760405162461bcd60e51b8152600401610874906157da565b600260fb55612160610162826133c6565b61217d5760405163b0ce759160e01b815260040160405180910390fd5b8160005b818110156122cb57600085858381811061219d5761219d615903565b90506020020160208101906121b29190615398565b6101615460405163772b7e9760e01b81526001600160a01b038084166004830152878116602483015292935091169063772b7e9790604401600060405180830381600087803b15801561220457600080fd5b505af1158015612218573d6000803e3d6000fd5b5050506001600160a01b038083166000818152610167602052604080822080548a86166001600160a01b031982161790915590519316935083927f987eb3c2f78454541205f72f34839b434c306c9eaf4922efd7c0c3060fdb2e4c9190a3846001600160a01b0316826001600160a01b03167f95f865c2808f8b2a85eea2611db7843150ee7835ef1403f9755918a97d76933c60405160405180910390a3505080806122c39061592f565b915050612181565b5050600160fb55505050565b600081815260976020526040812061081e90613209565b60006122fd61012d5460ff1690565b1561231a5760405162461bcd60e51b8152600401610874906157b0565b7f000000000000000000000000000000000000000000000000000000000000000061234481613ce5565b61235388888888888833613559565b98975050505050505050565b600061236e61012d5460ff1690565b1561238b5760405162461bcd60e51b8152600401610874906157b0565b600260fb54036123ad5760405162461bcd60e51b8152600401610874906157da565b600260fb556112d187878787878733613d0e565b6000828152606560205260409020600101546123dd8133612f20565b610d8183836131e7565b606060006123f6610165613209565b905060008167ffffffffffffffff81111561241357612413615872565b60405190808252806020026020018201604052801561243c578160200160208202803683370190505b50905060005b82811015610f255761245661016582613213565b82828151811061246857612468615903565b6001600160a01b03909216602092830291909101909101528061248a8161592f565b915050612442565b60006124a161012d5460ff1690565b156124be5760405162461bcd60e51b8152600401610874906157b0565b7f00000000000000000000000000000000000000000000000000000000000000006124e881613ce5565b61235388888888888833613d0e565b60006001600160e01b03198216637965db0b60e01b148061081e57506301ffc9a760e01b6001600160e01b031983161461081e565b6125368282611800565b610bb257604051634ca8886760e01b815260040160405180910390fd5b61012d5460ff1661259d5760405162461bcd60e51b815260206004820152601460248201527314185d5cd8589b194e881b9bdd081c185d5cd95960621b6044820152606401610874565b61012d805460ff191690557f5db9ee0a495bf2e6ff9c91a7834c1ba4fdd244a5e8aa4e537bd38aeae4b073aa335b6040516001600160a01b03909116815260200160405180910390a1565b6001600160a01b0381166108455760405163e6c4247b60e01b815260040160405180910390fd5b60006117f9836001600160a01b038416613dd9565b8181156128d85761015f54604051632f2ff15d60e01b81527f4cbb5676e6e25e1a3b8a36de10472bcac96f97bd8dd87af6f330881b84739eb860048201526001600160a01b03838116602483015290911690632f2ff15d90604401600060405180830381600087803b15801561269957600080fd5b505af11580156126ad573d6000803e3d6000fd5b505061015f54604051632f2ff15d60e01b81527f0d0d17bf5382c809d9a3899d6a94e57386dfb2036f0401b94ef3cf6c1a9ab73f60048201526001600160a01b0385811660248301529091169250632f2ff15d9150604401600060405180830381600087803b15801561271f57600080fd5b505af1158015612733573d6000803e3d6000fd5b505061015f54604051632f2ff15d60e01b81527fca51b9188e78415f30da725e0d94567b4d65bc6777d4e5d573191e9f55b88a3260048201526001600160a01b0385811660248301529091169250632f2ff15d9150604401600060405180830381600087803b1580156127a557600080fd5b505af11580156127b9573d6000803e3d6000fd5b5050604051632f2ff15d60e01b8152600080516020615d0c83398151915260048201526001600160a01b0384811660248301527f0000000000000000000000000000000000000000000000000000000000000000169250632f2ff15d9150604401600060405180830381600087803b15801561283457600080fd5b505af1158015612848573d6000803e3d6000fd5b5050604051632f2ff15d60e01b8152600080516020615d0c83398151915260048201526001600160a01b0384811660248301527f0000000000000000000000000000000000000000000000000000000000000000169250632f2ff15d91506044015b600060405180830381600087803b1580156128c457600080fd5b505af1158015612124573d6000803e3d6000fd5b61015f5460405163d547741f60e01b81527f4cbb5676e6e25e1a3b8a36de10472bcac96f97bd8dd87af6f330881b84739eb860048201526001600160a01b0383811660248301529091169063d547741f90604401600060405180830381600087803b15801561294657600080fd5b505af115801561295a573d6000803e3d6000fd5b505061015f5460405163d547741f60e01b81527f0d0d17bf5382c809d9a3899d6a94e57386dfb2036f0401b94ef3cf6c1a9ab73f60048201526001600160a01b038581166024830152909116925063d547741f9150604401600060405180830381600087803b1580156129cc57600080fd5b505af11580156129e0573d6000803e3d6000fd5b505061015f5460405163d547741f60e01b81527fca51b9188e78415f30da725e0d94567b4d65bc6777d4e5d573191e9f55b88a3260048201526001600160a01b038581166024830152909116925063d547741f9150604401600060405180830381600087803b158015612a5257600080fd5b505af1158015612a66573d6000803e3d6000fd5b505060405163d547741f60e01b8152600080516020615d0c83398151915260048201526001600160a01b0384811660248301527f000000000000000000000000000000000000000000000000000000000000000016925063d547741f9150604401600060405180830381600087803b158015612ae157600080fd5b505af1158015612af5573d6000803e3d6000fd5b505060405163d547741f60e01b8152600080516020615d0c83398151915260048201526001600160a01b0384811660248301527f000000000000000000000000000000000000000000000000000000000000000016925063d547741f91506044016128aa565b8060000361084557604051637c946ed760e01b815260040160405180910390fd5b61016a54818103612b8b575050565b61016a82905560408051828152602081018490527f7cf7d95d939472232a091a8af32b247f54067369068b83e2add6f34dafac377591015b60405180910390a15050565b61015f5481516101605460208401516040516323b872dd60e01b81526000946001600160a01b03908116948116936323b872dd93612c169391909216918691600401615811565b6020604051808303816000875af1158015612c35573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190612c59919061596e565b5060208301516040516323b872dd60e01b81526001600160a01b037f000000000000000000000000000000000000000000000000000000000000000016916323b872dd91612cae918891869190600401615811565b6020604051808303816000875af1158015612ccd573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190612cf1919061596e565b50602083015160408085015190516372026c6760e11b8152600481018890526001600160a01b038781166024830152604482019390935260648101919091529082169063e404d8ce906084016020604051808303816000875af1158015612d5c573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190612d809190615835565b95945050505050565b60008082600001516001600160a01b031663f4325d676040518163ffffffff1660e01b8152600401602060405180830381865afa158015612dce573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190612df29190615aa2565b90506000612dff82613812565b84516101605460208701516040516323b872dd60e01b81529394506001600160a01b03928316936323b872dd93612e3c9316918691600401615811565b6020604051808303816000875af1158015612e5b573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190612e7f919061596e565b50602084015160408086015190516356aca36f60e01b8152600481018990526001600160a01b038881166024830152858116604483015260648201939093526084810191909152908216906356aca36f9060a4016020604051808303816000875af1158015612ef2573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190612f169190615835565b9695505050505050565b612f2a8282611800565b610bb257612f42816001600160a01b03166014613ecc565b612f4d836020613ecc565b604051602001612f5e929190615aeb565b60408051601f198184030181529082905262461bcd60e51b825261087491600401615b60565b612f8e8282614068565b6000828152609760205260409020610d819082613ae0565b60007f00000000000000000000000000000000000000000000000000000000000000006001600160a01b0316836001600160a01b0316146130ee576000836001600160a01b031663f4325d676040518163ffffffff1660e01b8152600401602060405180830381865afa158015613021573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906130459190615aa2565b9050836001600160a01b031661305a82613812565b604051635768adcf60e01b81526001600160a01b0384811660048301529190911690635768adcf90602401602060405180830381865afa1580156130a2573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906130c69190615aa2565b6001600160a01b0316146130ec5760405162820f3560e61b815260040160405180910390fd5b505b610160546040516323b872dd60e01b81526001600160a01b03808616926323b872dd9261312392899216908790600401615811565b6020604051808303816000875af1158015613142573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190613166919061596e565b50610160546040516313e7e7d160e11b81526001600160a01b03909116906327cfcfa29061319c90879087908790600401615811565b6020604051808303816000875af11580156131bb573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906131df9190615835565b949350505050565b6131f182826140ee565b6000828152609760205260409020610d81908261260f565b600061081e825490565b60006117f98383614155565b60003415613240576040516342f7487960e11b815260040160405180910390fd5b61015f546040516323b872dd60e01b81526001600160a01b03918216917f000000000000000000000000000000000000000000000000000000000000000016906323b872dd9061329890889085908b90600401615811565b6020604051808303816000875af11580156132b7573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906132db919061596e565b5060405163e06bf20d60e01b8152600481018990526001600160a01b0388811660248301526044820188905285151560648301526084820185905282169063e06bf20d9060a4015b6020604051808303816000875af1158015613342573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906123539190615835565b600061337385848461417f565b600061337e86613812565b604051639f5c734b60e01b8152600481018a90526001600160a01b03898116602483015288811660448301526064820188905291925090821690639f5c734b90608401613323565b6001600160a01b038116600090815260018301602052604081205415156117f9565b6133f1826125e8565b6001600160a01b037f000000000000000000000000000000000000000000000000000000000000000081169083160361343d5760405163c1ab6dc160e01b815260040160405180910390fd5b61344961016583613ae0565b6134665760405163119b4fd360e11b815260040160405180910390fd5b604051634824fce960e11b81526001600160a01b038381166004830152821690639049f9d290602401600060405180830381600087803b1580156134a957600080fd5b505af11580156134bd573d6000803e3d6000fd5b505050506001600160a01b038281166000818152610167602052604080822080546001600160a01b0319169486169485179055517f4f2ce4e40f623ca765fc0167a25cb7842ceaafb8d82d3dec26ca0d0e0d2d48969190a3806001600160a01b0316826001600160a01b03167f95f865c2808f8b2a85eea2611db7843150ee7835ef1403f9755918a97d76933c60405160405180910390a35050565b60006135688888888888614263565b60007f00000000000000000000000000000000000000000000000000000000000000006001600160a01b0316836001600160a01b0316036135a7575060015b61362460405180604001604052808b6001600160a01b031681526020018a6001600160a01b031681525060405180608001604052808a81526020018981526020016000151581526020018415158152506040518060400160405280876001600160a01b03168152602001886001600160a01b0316815250886142e7565b9998505050505050505050565b6101695460ff16613655576040516303a5be3f60e31b815260040160405180910390fd5b565b604080516001600160601b0319606084811b82166020808501919091526001600160e01b03194260e01b16603485015288821b8316603885015287821b909216604c84015280830186905283518084039091018152608090920190925280519101206000907f00000000000000000000000000000000000000000000000000000000000000006001600160a01b0390811690861603613707576136ff8187868660008061321f565b9150506131df565b612f16818787878789613366565b620f424063ffffffff82161115610845576040516358d620b360e01b815260040160405180910390fd5b6101695463ffffffff6101009091048116908216810361375d575050565b610169805464ffffffff00191661010063ffffffff8581169182029290921790925560408051918416825260208201929092527fa159b13d7eac36d9a65034b4fd6ace1d9cb070d063dc950c564a266f4d0918029101612bc3565b61012d5460ff16156137dc5760405162461bcd60e51b8152600401610874906157b0565b61012d805460ff191660011790557f62e78cea01bee320cd4e420270b5ea74000d11b0c9f74754ebdbfc544b05a2586125cb3390565b6001600160a01b03808216600090815261016760205260408120549091168061081e5760405163c1ab6dc160e01b815260040160405180910390fd5b600061385983613af5565b1561386f57506001600160a01b0381163161081e565b826040516370a0823160e01b81526001600160a01b03848116600483015291909116906370a0823190602401602060405180830381865afa1580156138b8573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906117f99190615835565b6000806138e985856146eb565b805190915060000361390d578281602001516139059190615ba9565b9150506117f9565b8051831161392e57604051631a93c68960e11b815260040160405180910390fd5b600061393b868686614772565b90506000613949838361478d565b805190915060000361396f578481602001516139659190615ba9565b93505050506117f9565b60008581038616906139818383614812565b90506000613997613992848a615ba9565b614849565b919091029998505050505050505050565b6000806139b6610162613209565b905060005b81811015613ad55760006139d161016283613213565b90508561ffff16816001600160a01b031663b1dd61b66040518163ffffffff1660e01b8152600401602060405180830381865afa158015613a16573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190613a3a919061584e565b61ffff16148015613ab357508461ffff16816001600160a01b03166354fd4d506040518163ffffffff1660e01b8152600401602060405180830381865afa158015613a89573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190613aad919061584e565b61ffff16145b15613ac257925061081e915050565b5080613acd8161592f565b9150506139bb565b506000949350505050565b60006117f9836001600160a01b038416614874565b6001600160a01b031673eeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeee1490565b80471015613b675760405162461bcd60e51b815260206004820152601d60248201527f416464726573733a20696e73756666696369656e742062616c616e63650000006044820152606401610874565b6000826001600160a01b03168260405160006040518083038185875af1925050503d8060008114613bb4576040519150601f19603f3d011682016040523d82523d6000602084013e613bb9565b606091505b5050905080610d815760405162461bcd60e51b815260206004820152603a60248201527f416464726573733a20756e61626c6520746f2073656e642076616c75652c207260448201527f6563697069656e74206d617920686176652072657665727465640000000000006064820152608401610874565b80600003613c3d57505050565b613c4683613af5565b15613c87576040516001600160a01b0383169082156108fc029083906000818181858888f19350505050158015613c81573d6000803e3d6000fd5b50505050565b610d816001600160a01b03841683836148c3565b600054610100900460ff16613cc25760405162461bcd60e51b815260040161087490615bcb565b613cca614926565b613cd261495d565b613cda61498c565b610d818383836149bb565b336001600160a01b0382161461084557604051634ca8886760e01b815260040160405180910390fd5b6000613d1d8888888888614263565b60007f00000000000000000000000000000000000000000000000000000000000000006001600160a01b0316836001600160a01b031603613d5c575060015b61362460405180604001604052808b6001600160a01b031681526020018a6001600160a01b031681525060405180608001604052808a81526020018981526020016001151581526020018415158152506040518060400160405280876001600160a01b03168152602001886001600160a01b0316815250886142e7565b60008181526001830160205260408120548015613ec2576000613dfd6001836159fa565b8554909150600090613e11906001906159fa565b9050818114613e76576000866000018281548110613e3157613e31615903565b9060005260206000200154905080876000018481548110613e5457613e54615903565b6000918252602080832090910192909255918252600188019052604090208390555b8554869080613e8757613e87615c16565b60019003818190600052602060002001600090559055856001016000868152602001908152602001600020600090556001935050505061081e565b600091505061081e565b60606000613edb836002615c2c565b613ee6906002615a8a565b67ffffffffffffffff811115613efe57613efe615872565b6040519080825280601f01601f191660200182016040528015613f28576020820181803683370190505b509050600360fc1b81600081518110613f4357613f43615903565b60200101906001600160f81b031916908160001a905350600f60fb1b81600181518110613f7257613f72615903565b60200101906001600160f81b031916908160001a9053506000613f96846002615c2c565b613fa1906001615a8a565b90505b6001811115614019576f181899199a1a9b1b9c1cb0b131b232b360811b85600f1660108110613fd557613fd5615903565b1a60f81b828281518110613feb57613feb615903565b60200101906001600160f81b031916908160001a90535060049490941c9361401281615c4b565b9050613fa4565b5083156117f95760405162461bcd60e51b815260206004820181905260248201527f537472696e67733a20686578206c656e67746820696e73756666696369656e746044820152606401610874565b6140728282611800565b610bb25760008281526065602090815260408083206001600160a01b03851684529091529020805460ff191660011790556140aa3390565b6001600160a01b0316816001600160a01b0316837f2f8788117e7eff1d82e926ec794901d17c78024a50270940304540a733656f0d60405160405180910390a45050565b6140f88282611800565b15610bb25760008281526065602090815260408083206001600160a01b0385168085529252808320805460ff1916905551339285917ff6391f5c32d9c69d2a47ea670b442974b53935d1edc7fd64eb21e047a839171b9190a45050565b600082600001828154811061416c5761416c615903565b9060005260206000200154905092915050565b614191836001600160a01b0316613af5565b1561420f57803410156141b7576040516342f7487960e11b815260040160405180910390fd5b6141ea6001600160a01b037f00000000000000000000000000000000000000000000000000000000000000001682613b17565b80341115610d8157610d816141ff82346159fa565b6001600160a01b03841690613b17565b341561422e576040516342f7487960e11b815260040160405180910390fd5b610d816001600160a01b038416837f000000000000000000000000000000000000000000000000000000000000000084614aac565b61426c856125e8565b614275846125e8565b836001600160a01b0316856001600160a01b0316036142a75760405163c1ab6dc160e01b815260040160405180910390fd5b6142b083612b5b565b6142b982612b5b565b4263ffffffff168110156142e057604051631ab7da6b60e01b815260040160405180910390fd5b5050505050565b60208201516000906001600160a01b031661430d5782516001600160a01b031660208401525b825185516020808801518751888301516040808b0151858b015182516001600160601b031960609a8b1b8116828a01526001600160e01b03194260e01b166034830152988a1b8916603882015295891b8816604c87015288860194909452608080860193909352151560f81b60a085015260a1840189905291861b90941660c1830152805160b581840301815260d5830180835281519185019190912061015584018352600080835260f5850181905261011585018190526101359094018490528251958601835283865293850183905290840182905293830152919087516000907f00000000000000000000000000000000000000000000000000000000000000006001600160a01b039081169116036144b757614433848a6020015160018b614ad6565b91508192508160600151905088602001516001600160a01b031689600001516001600160a01b0316857f5c02c2bb2d1d082317eb23916ca27b3e7c294398b60061a2ad54f1c3c018c318856000015186602001518760000151886040015160008f600001516040516144aa96959493929190615c62565b60405180910390a4614616565b60208901516001600160a01b037f00000000000000000000000000000000000000000000000000000000000000008116911603614579576144ff848a6000015160008b614ad6565b91508192508160600151905088602001516001600160a01b031689600001516001600160a01b0316857f5c02c2bb2d1d082317eb23916ca27b3e7c294398b60061a2ad54f1c3c018c318856000015186602001518760200151886040015189604001518f600001516040516144aa96959493929190615c62565b614584848a8a614df8565b6060808201519083015192955090935061459d91615a8a565b905088602001516001600160a01b031689600001516001600160a01b0316857f5c02c2bb2d1d082317eb23916ca27b3e7c294398b60061a2ad54f1c3c018c31886600001518660200151886020015188604001518a604001518f6000015160405161460d96959493929190615c62565b60405180910390a45b88518751845161462792919061417f565b6020808a01518882015191840151604051631c20fadd60e01b81526001600160a01b037f00000000000000000000000000000000000000000000000000000000000000001693631c20fadd93614681939092600401615811565b600060405180830381600087803b15801561469b57600080fd5b505af11580156146af573d6000803e3d6000fd5b505050508061016860008282546146c69190615a8a565b909155505060408801516146db578251613624565b5060200151979650505050505050565b6040805180820190915260008082526020820152600061470b8484614f9b565b9050838302808210614740576040518060400160405280828461472e91906159fa565b8152602001828152509250505061081e565b604051806040016040528060016147578585900390565b61476191906159fa565b815260200191909152949350505050565b6000818061478257614782615b93565b838509949350505050565b6040805180820190915260008082526020820152818360200151106147da576040518060400160405280846000015181526020018385602001516147d191906159fa565b9052905061081e565b6040518060400160405280600185600001516147f691906159fa565b8152602001614809856020015185900390565b90529392505050565b60008061482a61482484808403615ba9565b60010190565b905082846020015161483c9190615ba9565b8451820217949350505050565b60006001815b6008811015610f2557838202600203820291508061486c8161592f565b91505061484f565b60008181526001830160205260408120546148bb5750815460018181018455600084815260208082209093018490558454848252828601909352604090209190915561081e565b50600061081e565b6040516001600160a01b038316602482015260448101829052610d8190849063a9059cbb60e01b906064015b60408051601f198184030181529190526020810180516001600160e01b03166001600160e01b031990931692909217909152614faa565b600054610100900460ff1661494d5760405162461bcd60e51b815260040161087490615bcb565b61495561507c565b6136556150a3565b600054610100900460ff166149845760405162461bcd60e51b815260040161087490615bcb565b613655615108565b600054610100900460ff166149b35760405162461bcd60e51b815260040161087490615bcb565b613655615136565b600054610100900460ff166149e25760405162461bcd60e51b815260040161087490615bcb565b61015f80546001600160a01b038086166001600160a01b0319928316179092556101608054858416908316179055610161805492841692909116919091179055614a5a7fdf8c9529ea4b244b569bac557a549516f317e7b5cf82dc5e0d8b6d874930a3f5600080516020615d2c83398151915261516a565b614a80600080516020615cec833981519152600080516020615d2c83398151915261516a565b610169805460ff19166001179055614a996107d061373f565b610d8169d3c21bcecceda1000000612b7c565b801580614abd5750614abd84613af5565b613c8157613c816001600160a01b0385168484846151b5565b614b016040518060800160405280600081526020016000815260200160008152602001600081525090565b600083614b54576040518060400160405280866001600160a01b031681526020017f00000000000000000000000000000000000000000000000000000000000000006001600160a01b0316815250614b9c565b60405180604001604052807f00000000000000000000000000000000000000000000000000000000000000006001600160a01b03168152602001866001600160a01b03168152505b905060008360400151614c5a57614bb286613812565b825160208085015187519188015160608901516040516337cb0ead60e21b8152600481018e90526001600160a01b03958616602482015292851660448401526064830193909352608482015290151560a482015291169063df2c3ab49060c4016060604051808303816000875af1158015614c31573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190614c559190615c93565b614d06565b614c6386613812565b8251602080850151875191880151606089015160405163d1aebfc760e01b8152600481018e90526001600160a01b03958616602482015292851660448401526064830193909352608482015290151560a482015291169063d1aebfc79060c4016060604051808303816000875af1158015614ce2573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190614d069190615c93565b905084614d9f5761015f54604082015160208301516001600160a01b0390921691637c8f622d918991614d3991906159fa565b6040516001600160e01b031960e085901b1681526001600160a01b039092166004830152602482015260016044820152606401600060405180830381600087803b158015614d8657600080fd5b505af1158015614d9a573d6000803e3d6000fd5b505050505b60405180608001604052808560400151614dba578251614dbd565b85515b81526020018560400151614dd2578551614dd5565b82515b815260200182602001518152602001826040015181525092505050949350505050565b614e236040518060800160405280600081526020016000815260200160008152602001600081525090565b614e4e6040518060800160405280600081526020016000815260200160008152602001600081525090565b826040015115614ef8576000836000015190506000846020015190506000614ea788886000015160006040518060800160405280888152602001600181526020016001151581526020018b606001511515815250614ad6565b90506000614ee989896020015160016040518060800160405280876020015181526020018881526020016001151581526020018c606001511515815250614ad6565b919550909350614f9392505050565b6000836000015190506000846020015190506000614f488888602001516001604051806080016040528088815260200160001981526020016000151581526020018b606001511515815250614ad6565b90506000614f8a89896000015160006040518060800160405280876000015181526020018881526020016000151581526020018c606001511515815250614ad6565b95509093505050505b935093915050565b60006000198284099392505050565b6000614fff826040518060400160405280602081526020017f5361666545524332303a206c6f772d6c6576656c2063616c6c206661696c6564815250856001600160a01b03166151d69092919063ffffffff16565b805190915015610d81578080602001905181019061501d919061596e565b610d815760405162461bcd60e51b815260206004820152602a60248201527f5361666545524332303a204552433230206f7065726174696f6e20646964206e6044820152691bdd081cdd58d8d9595960b21b6064820152608401610874565b600054610100900460ff166136555760405162461bcd60e51b815260040161087490615bcb565b600054610100900460ff166150ca5760405162461bcd60e51b815260040161087490615bcb565b60c9805461ffff191660011790556150f0600080516020615d2c8339815191528061516a565b613655600080516020615d2c833981519152336151e5565b600054610100900460ff1661512f5760405162461bcd60e51b815260040161087490615bcb565b600160fb55565b600054610100900460ff1661515d5760405162461bcd60e51b815260040161087490615bcb565b61012d805460ff19169055565b600082815260656020526040808220600101805490849055905190918391839186917fbd79b86ffe0ab8e8776151514217cd7cacd52c909f66475c3af44e129f0b00ff9190a4505050565b613c81846323b872dd60e01b8585856040516024016148ef93929190615811565b60606131df84846000856151ef565b610bb28282612f84565b6060824710156152505760405162461bcd60e51b815260206004820152602660248201527f416464726573733a20696e73756666696369656e742062616c616e636520666f6044820152651c8818d85b1b60d21b6064820152608401610874565b6001600160a01b0385163b6152a75760405162461bcd60e51b815260206004820152601d60248201527f416464726573733a2063616c6c20746f206e6f6e2d636f6e74726163740000006044820152606401610874565b600080866001600160a01b031685876040516152c39190615ccf565b60006040518083038185875af1925050503d8060008114615300576040519150601f19603f3d011682016040523d82523d6000602084013e615305565b606091505b5091509150615315828286615320565b979650505050505050565b6060831561532f5750816117f9565b82511561533f5782518084602001fd5b8160405162461bcd60e51b81526004016108749190615b60565b60006020828403121561536b57600080fd5b81356001600160e01b0319811681146117f957600080fd5b6001600160a01b038116811461084557600080fd5b6000602082840312156153aa57600080fd5b81356117f981615383565b6000602082840312156153c757600080fd5b5035919050565b801515811461084557600080fd5b6000602082840312156153ee57600080fd5b81356117f9816153ce565b6000806040838503121561540c57600080fd5b82359150602083013561541e81615383565b809150509250929050565b6000806040838503121561543c57600080fd5b823561544781615383565b946020939093013593505050565b6020808252825182820181905260009190848201906040850190845b818110156154965783516001600160a01b031683529284019291840191600101615471565b50909695505050505050565b600080600080600060a086880312156154ba57600080fd5b85356154c581615383565b945060208601356154d581615383565b94979496505050506040830135926060810135926080909101359150565b60008060006040848603121561550857600080fd5b833567ffffffffffffffff8082111561552057600080fd5b818601915086601f83011261553457600080fd5b81358181111561554357600080fd5b8760208260051b850101111561555857600080fd5b6020928301955093505084013561556e81615383565b809150509250925092565b60008060008060008060c0878903121561559257600080fd5b863561559d81615383565b955060208701356155ad81615383565b945060408701359350606087013592506080870135915060a08701356155d281615383565b809150509295509295509295565b63ffffffff8116811461084557600080fd5b60006020828403121561560457600080fd5b81356117f9816155e0565b60008083601f84011261562157600080fd5b50813567ffffffffffffffff81111561563957600080fd5b60208301915083602082850101111561565157600080fd5b9250929050565b6000806020838503121561566b57600080fd5b823567ffffffffffffffff81111561568257600080fd5b61568e8582860161560f565b90969095509350505050565b600080604083850312156156ad57600080fd5b50508035926020909101359150565b6000806000806000608086880312156156d457600080fd5b85356156df81615383565b94506020860135935060408601356156f681615383565b9250606086013567ffffffffffffffff81111561571257600080fd5b61571e8882890161560f565b969995985093965092949392505050565b60008060006060848603121561574457600080fd5b833561574f81615383565b9250602084013561575f81615383565b929592945050506040919091013590565b60008060006060848603121561578557600080fd5b833561579081615383565b925060208401356157a081615383565b9150604084013561556e81615383565b60208082526010908201526f14185d5cd8589b194e881c185d5cd95960821b604082015260600190565b6020808252601f908201527f5265656e7472616e637947756172643a207265656e7472616e742063616c6c00604082015260600190565b6001600160a01b039384168152919092166020820152604081019190915260600190565b60006020828403121561584757600080fd5b5051919050565b60006020828403121561586057600080fd5b815161ffff811681146117f957600080fd5b634e487b7160e01b600052604160045260246000fd5b6040516060810167ffffffffffffffff811182821017156158b957634e487b7160e01b600052604160045260246000fd5b60405290565b6000606082840312156158d157600080fd5b6158d9615888565b82516158e481615383565b8152602083810151908201526040928301519281019290925250919050565b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052601160045260246000fd5b60006001820161594157615941615919565b5060010190565b600061ffff80831681851680830382111561596557615965615919565b01949350505050565b60006020828403121561598057600080fd5b81516117f9816153ce565b80516fffffffffffffffffffffffffffffffff811681146159ab57600080fd5b919050565b6000606082840312156159c257600080fd5b6159ca615888565b6159d38361598b565b81526159e16020840161598b565b6020820152604083015160408201528091505092915050565b600082821015615a0c57615a0c615919565b500390565b600060208284031215615a2357600080fd5b81516117f9816155e0565b6001600160a01b03878116825286166020820152604081018590526060810184905260a06080820181905281018290526000828460c0840137600060c0848401015260c0601f19601f8501168301019050979650505050505050565b60008219821115615a9d57615a9d615919565b500190565b600060208284031215615ab457600080fd5b81516117f981615383565b60005b83811015615ada578181015183820152602001615ac2565b83811115613c815750506000910152565b7f416363657373436f6e74726f6c3a206163636f756e7420000000000000000000815260008351615b23816017850160208801615abf565b7001034b99036b4b9b9b4b733903937b6329607d1b6017918401918201528351615b54816028840160208801615abf565b01602801949350505050565b6020815260008251806020840152615b7f816040850160208701615abf565b601f01601f19169190910160400192915050565b634e487b7160e01b600052601260045260246000fd5b600082615bc657634e487b7160e01b600052601260045260246000fd5b500490565b6020808252602b908201527f496e697469616c697a61626c653a20636f6e7472616374206973206e6f74206960408201526a6e697469616c697a696e6760a81b606082015260800190565b634e487b7160e01b600052603160045260246000fd5b6000816000190483118215151615615c4657615c46615919565b500290565b600081615c5a57615c5a615919565b506000190190565b95865260208601949094526040850192909252606084015260808301526001600160a01b031660a082015260c00190565b600060608284031215615ca557600080fd5b615cad615888565b8251815260208301516020820152604083015160408201528091505092915050565b60008251615ce1818460208701615abf565b919091019291505056fef28f409b8cbe6b50c7ca45afe893f01f69626f8a4e33cb480bc1bc2d618c084589ce14d20697a788f57260f7690044299bde7ea88cfb7e43d120a0c031f1ffc12172861495e7b85edac73e3cd5fbb42dd675baadf627720e687bcfdaca025096a164736f6c634300080d000a000000000000000000000000a489c2b5b36835a327851ab917a80562b5afc2440000000000000000000000000887ae1251e180d7d453aedebee26e1639f2011300000000000000000000000083e1814ba31f7ea95d216204bb45fe75ce09b14f000000000000000000000000649765821d9f64198c905ec0b2b037a4a52bc373000000000000000000000000fd31662b3d54edde9b6bdd32c9c27c8e292cad57000000000000000000000000ab05cf7c6c3a288cd36326e4f7b8600e7268e34400000000000000000000000041eeba3355d7d6ff628b7982f3f9d055c39488cb000000000000000000000000d06146d292f9651c1d7cf54a3162791dfc2bef46

Deployed Bytecode

0x6080604052600436106102765760003560e01c80635c975abb1161014f578063a8bf9046116100c1578063d0d145811161007a578063d0d1458114610758578063d3a4acd31461076b578063d547741f1461077e578063d6efd7c31461079e578063d895feee146107b3578063e6aac07e146107c657600080fd5b8063a8bf9046146106a5578063adf51de1146106c5578063b3db428b146106e5578063c0c53b8b146106f8578063c109ba1314610718578063ca15c8731461073857600080fd5b80638ffcca07116101135780638ffcca07146105bd5780639010d07c146105dd57806391d148541461061557806393867fb5146106355780639bca0e7014610656578063a217fddf1461069057600080fd5b80635c975abb1461054057806371f43f9a146105595780637bf6a425146105725780638456cb59146105885780638cd2403d1461059d57600080fd5b806336568abe116101e857806341f435b3116101ac57806341f435b31461049d57806342659964146104be57806345d6602c146104de57806347e7ef24146104f1578063533007721461050457806354fd4d501461052457600080fd5b806336568abe146104125780633982b5311461043257806339fadf98146104485780633d1c24e71461046a5780633efcfda41461047d57600080fd5b8063248a9ca31161023a578063248a9ca31461034257806326e6b697146103725780632d944b80146103925780632e1a7d4d146103b25780632f2ff15d146103d2578063357a0333146103f257600080fd5b806301ffc9a714610282578063046f7da2146102b7578063079767de146102ce5780631329db29146102f1578063230df83a1461032257600080fd5b3661027d57005b600080fd5b34801561028e57600080fd5b506102a261029d366004615359565b6107f9565b60405190151581526020015b60405180910390f35b3480156102c357600080fd5b506102cc610824565b005b3480156102da57600080fd5b506102e3610848565b6040519081526020016102ae565b3480156102fd57600080fd5b5061016954610100900463ffffffff1660405163ffffffff90911681526020016102ae565b34801561032e57600080fd5b506102cc61033d366004615398565b6109a5565b34801561034e57600080fd5b506102e361035d3660046153b5565b60009081526065602052604090206001015490565b34801561037e57600080fd5b506102cc61038d3660046153dc565b610b4a565b34801561039e57600080fd5b506102cc6103ad3660046153b5565b610b87565b3480156103be57600080fd5b506102e36103cd3660046153b5565b610bb6565b3480156103de57600080fd5b506102cc6103ed3660046153f9565b610d5b565b3480156103fe57600080fd5b506102e361040d366004615429565b610d86565b34801561041e57600080fd5b506102cc61042d3660046153f9565b610e00565b34801561043e57600080fd5b5061016a546102e3565b34801561045457600080fd5b5061045d610e7a565b6040516102ae9190615455565b6102cc6104783660046154a2565b610f2c565b34801561048957600080fd5b506102e36104983660046153b5565b6110ce565b3480156104a957600080fd5b50600080516020615cec8339815191526102e3565b3480156104ca57600080fd5b506102cc6104d93660046154f3565b6111a2565b6102e36104ec366004615579565b61126f565b6102e36104ff366004615429565b6112e1565b34801561051057600080fd5b506102cc61051f3660046155f2565b611356565b34801561053057600080fd5b50604051600a81526020016102ae565b34801561054c57600080fd5b5061012d5460ff166102a2565b34801561056557600080fd5b506101695460ff166102a2565b34801561057e57600080fd5b50610168546102e3565b34801561059457600080fd5b506102cc611381565b3480156105a957600080fd5b506102cc6105b8366004615658565b6113a2565b3480156105c957600080fd5b506102e36105d8366004615398565b6113f3565b3480156105e957600080fd5b506105fd6105f836600461569a565b6117e1565b6040516001600160a01b0390911681526020016102ae565b34801561062157600080fd5b506102a26106303660046153f9565b611800565b34801561064157600080fd5b50600080516020615d2c8339815191526102e3565b34801561066257600080fd5b506105fd610671366004615398565b6001600160a01b03908116600090815261016760205260409020541690565b34801561069c57600080fd5b506102e3600081565b3480156106b157600080fd5b506102cc6106c0366004615398565b61182b565b3480156106d157600080fd5b506102cc6106e03660046156bc565b611a42565b6102e36106f336600461572f565b611fc6565b34801561070457600080fd5b506102cc610713366004615770565b612045565b34801561072457600080fd5b506102cc6107333660046154f3565b61212d565b34801561074457600080fd5b506102e36107533660046153b5565b6122d7565b6102e3610766366004615579565b6122ee565b6102e3610779366004615579565b61235f565b34801561078a57600080fd5b506102cc6107993660046153f9565b6123c1565b3480156107aa57600080fd5b5061045d6123e7565b6102e36107c1366004615579565b612492565b3480156107d257600080fd5b507fdf8c9529ea4b244b569bac557a549516f317e7b5cf82dc5e0d8b6d874930a3f56102e3565b60006001600160e01b03198216635a05180f60e01b148061081e575061081e826124f7565b92915050565b600080516020615cec83398151915261083d813361252c565b610845612553565b50565b600061085761012d5460ff1690565b1561087d5760405162461bcd60e51b8152600401610874906157b0565b60405180910390fd5b600260fb540361089f5760405162461bcd60e51b8152600401610874906157da565b600260fb556101685461016a548110156108bd57600091505061099d565b600061016855604051631c20fadd60e01b81526001600160a01b037f000000000000000000000000649765821d9f64198c905ec0b2b037a4a52bc3731690631c20fadd90610933907f0000000000000000000000001f573d6fb3f13d689ff844b4ce37794d79a7ff1c9081908690600401615811565b600060405180830381600087803b15801561094d57600080fd5b505af1158015610961573d6000803e3d6000fd5b50506040518381523392507f032863b8ce7ba939f971bf78a7ee035ae1044bef5dadf789c7cd09d26c0c40f4915060200160405180910390a290505b600160fb5590565b806109af816125e8565b6109c7600080516020615d2c8339815191523361252c565b600260fb54036109e95760405162461bcd60e51b8152600401610874906157da565b600260fb81905550816001600160a01b031663f525cb686040518163ffffffff1660e01b8152600401602060405180830381865afa158015610a2f573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610a539190615835565b15610a71576040516332e7879360e01b815260040160405180910390fd5b610a7d6101628361260f565b610a9a5760405163b0ce759160e01b815260040160405180910390fd5b610aa5826000612624565b816001600160a01b0316826001600160a01b031663b1dd61b66040518163ffffffff1660e01b8152600401602060405180830381865afa158015610aed573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610b11919061584e565b61ffff167fa0c1e3924f995e5ba38f53b4effb6d4b3eeb84176a2951c589115140f638ac0960405160405180910390a35050600160fb55565b610b62600080516020615d2c8339815191523361252c565b6101695460ff1615158115151461084557610169805482151560ff1990911617905550565b610b9f600080516020615d2c8339815191523361252c565b80610ba981612b5b565b610bb282612b7c565b5050565b6000610bc561012d5460ff1690565b15610be25760405162461bcd60e51b8152600401610874906157b0565b600260fb5403610c045760405162461bcd60e51b8152600401610874906157da565b600260fb55336000610c6784836000814260405160609290921b6001600160601b031916602083015260e01b6001600160e01b03191660348201526038810184905260580160405160208183030381529060405280519060200120905092915050565b6101605460405163158591ab60e11b8152600481018390526001600160a01b0385811660248301526044820188905292935060009290911690632b0b2356906064016060604051808303816000875af1158015610cc8573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610cec91906158bf565b90507f000000000000000000000000ab05cf7c6c3a288cd36326e4f7b8600e7268e3446001600160a01b031681600001516001600160a01b031603610d4057610d36828483612bcf565b9350505050610d51565b610d4b828483612d89565b93505050505b600160fb55919050565b600082815260656020526040902060010154610d778133612f20565b610d818383612f84565b505050565b600082610d92816125e8565b82610d9c81612b5b565b61012d5460ff1615610dc05760405162461bcd60e51b8152600401610874906157b0565b600260fb5403610de25760405162461bcd60e51b8152600401610874906157da565b600260fb55610df2338686612fa6565b600160fb5595945050505050565b6001600160a01b0381163314610e705760405162461bcd60e51b815260206004820152602f60248201527f416363657373436f6e74726f6c3a2063616e206f6e6c792072656e6f756e636560448201526e103937b632b9903337b91039b2b63360891b6064820152608401610874565b610bb282826131e7565b60606000610e89610162613209565b905060008167ffffffffffffffff811115610ea657610ea6615872565b604051908082528060200260200182016040528015610ecf578160200160208202803683370190505b50905060005b82811015610f2557610ee961016282613213565b828281518110610efb57610efb615903565b6001600160a01b039092166020928302919091019091015280610f1d8161592f565b915050610ed5565b5092915050565b61012d5460ff1615610f505760405162461bcd60e51b8152600401610874906157b0565b7fdf8c9529ea4b244b569bac557a549516f317e7b5cf82dc5e0d8b6d874930a3f5610f7b813361252c565b600260fb5403610f9d5760405162461bcd60e51b8152600401610874906157da565b600260fb55604080516001600160601b031933606090811b82166020808501919091526001600160e01b03194260e01b1660348501528a821b8316603885015289821b909216604c84015282018790526080820186905260a08083018690528351808403909101815260c090920190925280519101206001600160a01b038088167f0000000000000000000000001f573d6fb3f13d689ff844b4ce37794d79a7ff1c919091160361105d576110578187873360018861321f565b5061106d565b61106b818789883389613366565b505b60408051868152602081018690529081018490526001600160a01b03808816919089169083907f102bce4e43a6a8cf0306fde6154221c1f5460f64ba63b92b156bce998ef0db569060600160405180910390a45050600160fb555050505050565b60006110dd61012d5460ff1690565b156110fa5760405162461bcd60e51b8152600401610874906157b0565b600260fb540361111c5760405162461bcd60e51b8152600401610874906157da565b600260fb5561016054604051635f23b6c560e11b8152336004820152602481018490526001600160a01b039091169063be476d8a906044016020604051808303816000875af1158015611173573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906111979190615835565b600160fb5592915050565b806111ac816125e8565b6111c4600080516020615d2c8339815191523361252c565b600260fb54036111e65760405162461bcd60e51b8152600401610874906157da565b600260fb556111f7610162836133c6565b6112145760405163b0ce759160e01b815260040160405180910390fd5b8260005b818110156112625761125086868381811061123557611235615903565b905060200201602081019061124a9190615398565b856133e8565b8061125a8161592f565b915050611218565b5050600160fb5550505050565b600061127e61012d5460ff1690565b1561129b5760405162461bcd60e51b8152600401610874906157b0565b600260fb54036112bd5760405162461bcd60e51b8152600401610874906157da565b600260fb556112d187878787878733613559565b600160fb55979650505050505050565b60006112eb613631565b826112f5816125e8565b826112ff81612b5b565b61012d5460ff16156113235760405162461bcd60e51b8152600401610874906157b0565b600260fb54036113455760405162461bcd60e51b8152600401610874906157da565b600260fb55610df233868682613657565b61136e600080516020615d2c8339815191523361252c565b8061137881613715565b610bb28261373f565b600080516020615cec83398151915261139a813361252c565b6108456137b8565b60c9546000906113b79061ffff166001615948565b905061ffff8116600a146113dd5760405162dc149f60e41b815260040160405180910390fd5b60c9805461ffff191661ffff8316179055505050565b600061140261012d5460ff1690565b1561141f5760405162461bcd60e51b8152600401610874906157b0565b600260fb54036114415760405162461bcd60e51b8152600401610874906157da565b600260fb5560405163ce53e72960e01b81526001600160a01b0383811660048301527f00000000000000000000000083e1814ba31f7ea95d216204bb45fe75ce09b14f169063ce53e72990602401602060405180830381865afa1580156114ac573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906114d0919061596e565b6114ed576040516307d7f4eb60e21b815260040160405180910390fd5b60006114f883613812565b9050600061152f6001600160a01b0385167f000000000000000000000000649765821d9f64198c905ec0b2b037a4a52bc37361384e565b60405163a135ef1760e01b81526001600160a01b03868116600483015291925060009184169063a135ef1790602401606060405180830381865afa15801561157b573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061159f91906159b0565b60408101519091508281106115c7576040516341e43e3960e01b815260040160405180910390fd5b6040516387a7db0f60e01b81526001600160a01b0387811660048301528516906387a7db0f90602401600060405180830381600087803b15801561160a57600080fd5b505af115801561161e573d6000803e3d6000fd5b505050506000818461163091906159fa565b61016954909150600090611654908390610100900463ffffffff16620f42406138dc565b90506001600160a01b037f000000000000000000000000649765821d9f64198c905ec0b2b037a4a52bc37316631c20fadd897f000000000000000000000000d06146d292f9651c1d7cf54a3162791dfc2bef466116b185876159fa565b6040518463ffffffff1660e01b81526004016116cf93929190615811565b600060405180830381600087803b1580156116e957600080fd5b505af11580156116fd573d6000803e3d6000fd5b5050604051631c20fadd60e01b81526001600160a01b037f000000000000000000000000649765821d9f64198c905ec0b2b037a4a52bc373169250631c20fadd9150611751908b9033908690600401615811565b600060405180830381600087803b15801561176b57600080fd5b505af115801561177f573d6000803e3d6000fd5b5050506001600160a01b0389169050337f5ad7a2184454b6259cd118e4041a953dc9d6498302bbe528e4f967bed91971296117ba84866159fa565b60408051918252602082018690520160405180910390a350600160fb559695505050505050565b60008281526097602052604081206117f99083613213565b9392505050565b60009182526065602090815260408084206001600160a01b0393909316845291905290205460ff1690565b80611835816125e8565b61184d600080516020615d2c8339815191523361252c565b600260fb540361186f5760405162461bcd60e51b8152600401610874906157da565b600260fb819055506000826001600160a01b031663b1dd61b66040518163ffffffff1660e01b8152600401602060405180830381865afa1580156118b7573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906118db919061584e565b90506000836001600160a01b03166354fd4d506040518163ffffffff1660e01b8152600401602060405180830381865afa15801561191d573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611941919061584e565b9050600061194f83836139a8565b90506001600160a01b038116151580611971575061196f61016286613ae0565b155b1561198f5760405163119b4fd360e11b815260040160405180910390fd5b61199a856001612624565b846001600160a01b0316856001600160a01b031663b1dd61b66040518163ffffffff1660e01b8152600401602060405180830381865afa1580156119e2573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611a06919061584e565b61ffff167f5ae87719d73cb0fabb219f0e4b6e0a614ed7506f8a08bdb20bebf313573151b760405160405180910390a35050600160fb55505050565b84611a4c816125e8565b84611a5681612b5b565b84611a60816125e8565b61012d5460ff1615611a845760405162461bcd60e51b8152600401610874906157b0565b600260fb5403611aa65760405162461bcd60e51b8152600401610874906157da565b600260fb557f0000000000000000000000001f573d6fb3f13d689ff844b4ce37794d79a7ff1c6001600160a01b0390811690891614158015611b6f575060405163b5af090f60e01b81526001600160a01b0389811660048301527f00000000000000000000000083e1814ba31f7ea95d216204bb45fe75ce09b14f169063b5af090f90602401602060405180830381865afa158015611b49573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611b6d919061596e565b155b15611b8d57604051630b094f2760e31b815260040160405180910390fd5b60006001600160a01b037f00000000000000000000000041eeba3355d7d6ff628b7982f3f9d055c39488cb163303611bc757506000611c69565b604051637c36afad60e01b81526001600160a01b038a81166004830152611c66918a917f00000000000000000000000083e1814ba31f7ea95d216204bb45fe75ce09b14f1690637c36afad90602401602060405180830381865afa158015611c33573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611c579190615a11565b63ffffffff16620f42406138dc565b90505b6000611c7e6001600160a01b038b163061384e565b604051631c20fadd60e01b81529091506001600160a01b037f000000000000000000000000649765821d9f64198c905ec0b2b037a4a52bc3731690631c20fadd90611cd1908d908c908e90600401615811565b600060405180830381600087803b158015611ceb57600080fd5b505af1158015611cff573d6000803e3d6000fd5b50505050876001600160a01b03166323e30c8b33611d238d6001600160a01b031690565b8c868c8c6040518763ffffffff1660e01b8152600401611d4896959493929190615a2e565b600060405180830381600087803b158015611d6257600080fd5b505af1158015611d76573d6000803e3d6000fd5b50505050600081611d99308d6001600160a01b031661384e90919063ffffffff16565b611da391906159fa565b9050611daf838b615a8a565b811015611dcf5760405163b7ed78bf60e01b815260040160405180910390fd5b611de18b6001600160a01b0316613af5565b15611e1e57611e196001600160a01b037f000000000000000000000000649765821d9f64198c905ec0b2b037a4a52bc3731682613b17565b611e52565b611e526001600160a01b038c167f000000000000000000000000649765821d9f64198c905ec0b2b037a4a52bc37383613c30565b6001600160a01b037f0000000000000000000000001f573d6fb3f13d689ff844b4ce37794d79a7ff1c8116908c1603611efb5761015f54604051637c8f622d60e01b81526001600160a01b038d811660048301526024820186905260006044830152909116908190637c8f622d90606401600060405180830381600087803b158015611edd57600080fd5b505af1158015611ef1573d6000803e3d6000fd5b5050505050611f6e565b6000611f068c613812565b604051631510748b60e01b81526001600160a01b038e811660048301526024820187905291925090821690631510748b90604401600060405180830381600087803b158015611f5457600080fd5b505af1158015611f68573d6000803e3d6000fd5b50505050505b604080518b81526020810185905233916001600160a01b038e16917f0da3485ef1bb570df7bb888887eae5aa01d81b83cd8ccc80c0ea0922a677ecef910160405180910390a35050600160fb55505050505050505050565b6000611fd0613631565b83611fda816125e8565b83611fe4816125e8565b83611fee81612b5b565b61012d5460ff16156120125760405162461bcd60e51b8152600401610874906157b0565b600260fb54036120345760405162461bcd60e51b8152600401610874906157da565b600260fb556112d187878733613657565b8261204f816125e8565b82612059816125e8565b82612063816125e8565b600054610100900460ff1661207e5760005460ff1615612082565b303b155b6120e55760405162461bcd60e51b815260206004820152602e60248201527f496e697469616c697a61626c653a20636f6e747261637420697320616c72656160448201526d191e481a5b9a5d1a585b1a5e995960921b6064820152608401610874565b600054610100900460ff16158015612107576000805461ffff19166101011790555b612112878787613c9b565b8015612124576000805461ff00191690555b50505050505050565b600260fb540361214f5760405162461bcd60e51b8152600401610874906157da565b600260fb55612160610162826133c6565b61217d5760405163b0ce759160e01b815260040160405180910390fd5b8160005b818110156122cb57600085858381811061219d5761219d615903565b90506020020160208101906121b29190615398565b6101615460405163772b7e9760e01b81526001600160a01b038084166004830152878116602483015292935091169063772b7e9790604401600060405180830381600087803b15801561220457600080fd5b505af1158015612218573d6000803e3d6000fd5b5050506001600160a01b038083166000818152610167602052604080822080548a86166001600160a01b031982161790915590519316935083927f987eb3c2f78454541205f72f34839b434c306c9eaf4922efd7c0c3060fdb2e4c9190a3846001600160a01b0316826001600160a01b03167f95f865c2808f8b2a85eea2611db7843150ee7835ef1403f9755918a97d76933c60405160405180910390a3505080806122c39061592f565b915050612181565b5050600160fb55505050565b600081815260976020526040812061081e90613209565b60006122fd61012d5460ff1690565b1561231a5760405162461bcd60e51b8152600401610874906157b0565b7f00000000000000000000000041eeba3355d7d6ff628b7982f3f9d055c39488cb61234481613ce5565b61235388888888888833613559565b98975050505050505050565b600061236e61012d5460ff1690565b1561238b5760405162461bcd60e51b8152600401610874906157b0565b600260fb54036123ad5760405162461bcd60e51b8152600401610874906157da565b600260fb556112d187878787878733613d0e565b6000828152606560205260409020600101546123dd8133612f20565b610d8183836131e7565b606060006123f6610165613209565b905060008167ffffffffffffffff81111561241357612413615872565b60405190808252806020026020018201604052801561243c578160200160208202803683370190505b50905060005b82811015610f255761245661016582613213565b82828151811061246857612468615903565b6001600160a01b03909216602092830291909101909101528061248a8161592f565b915050612442565b60006124a161012d5460ff1690565b156124be5760405162461bcd60e51b8152600401610874906157b0565b7f00000000000000000000000041eeba3355d7d6ff628b7982f3f9d055c39488cb6124e881613ce5565b61235388888888888833613d0e565b60006001600160e01b03198216637965db0b60e01b148061081e57506301ffc9a760e01b6001600160e01b031983161461081e565b6125368282611800565b610bb257604051634ca8886760e01b815260040160405180910390fd5b61012d5460ff1661259d5760405162461bcd60e51b815260206004820152601460248201527314185d5cd8589b194e881b9bdd081c185d5cd95960621b6044820152606401610874565b61012d805460ff191690557f5db9ee0a495bf2e6ff9c91a7834c1ba4fdd244a5e8aa4e537bd38aeae4b073aa335b6040516001600160a01b03909116815260200160405180910390a1565b6001600160a01b0381166108455760405163e6c4247b60e01b815260040160405180910390fd5b60006117f9836001600160a01b038416613dd9565b8181156128d85761015f54604051632f2ff15d60e01b81527f4cbb5676e6e25e1a3b8a36de10472bcac96f97bd8dd87af6f330881b84739eb860048201526001600160a01b03838116602483015290911690632f2ff15d90604401600060405180830381600087803b15801561269957600080fd5b505af11580156126ad573d6000803e3d6000fd5b505061015f54604051632f2ff15d60e01b81527f0d0d17bf5382c809d9a3899d6a94e57386dfb2036f0401b94ef3cf6c1a9ab73f60048201526001600160a01b0385811660248301529091169250632f2ff15d9150604401600060405180830381600087803b15801561271f57600080fd5b505af1158015612733573d6000803e3d6000fd5b505061015f54604051632f2ff15d60e01b81527fca51b9188e78415f30da725e0d94567b4d65bc6777d4e5d573191e9f55b88a3260048201526001600160a01b0385811660248301529091169250632f2ff15d9150604401600060405180830381600087803b1580156127a557600080fd5b505af11580156127b9573d6000803e3d6000fd5b5050604051632f2ff15d60e01b8152600080516020615d0c83398151915260048201526001600160a01b0384811660248301527f000000000000000000000000649765821d9f64198c905ec0b2b037a4a52bc373169250632f2ff15d9150604401600060405180830381600087803b15801561283457600080fd5b505af1158015612848573d6000803e3d6000fd5b5050604051632f2ff15d60e01b8152600080516020615d0c83398151915260048201526001600160a01b0384811660248301527f000000000000000000000000fd31662b3d54edde9b6bdd32c9c27c8e292cad57169250632f2ff15d91506044015b600060405180830381600087803b1580156128c457600080fd5b505af1158015612124573d6000803e3d6000fd5b61015f5460405163d547741f60e01b81527f4cbb5676e6e25e1a3b8a36de10472bcac96f97bd8dd87af6f330881b84739eb860048201526001600160a01b0383811660248301529091169063d547741f90604401600060405180830381600087803b15801561294657600080fd5b505af115801561295a573d6000803e3d6000fd5b505061015f5460405163d547741f60e01b81527f0d0d17bf5382c809d9a3899d6a94e57386dfb2036f0401b94ef3cf6c1a9ab73f60048201526001600160a01b038581166024830152909116925063d547741f9150604401600060405180830381600087803b1580156129cc57600080fd5b505af11580156129e0573d6000803e3d6000fd5b505061015f5460405163d547741f60e01b81527fca51b9188e78415f30da725e0d94567b4d65bc6777d4e5d573191e9f55b88a3260048201526001600160a01b038581166024830152909116925063d547741f9150604401600060405180830381600087803b158015612a5257600080fd5b505af1158015612a66573d6000803e3d6000fd5b505060405163d547741f60e01b8152600080516020615d0c83398151915260048201526001600160a01b0384811660248301527f000000000000000000000000649765821d9f64198c905ec0b2b037a4a52bc37316925063d547741f9150604401600060405180830381600087803b158015612ae157600080fd5b505af1158015612af5573d6000803e3d6000fd5b505060405163d547741f60e01b8152600080516020615d0c83398151915260048201526001600160a01b0384811660248301527f000000000000000000000000fd31662b3d54edde9b6bdd32c9c27c8e292cad5716925063d547741f91506044016128aa565b8060000361084557604051637c946ed760e01b815260040160405180910390fd5b61016a54818103612b8b575050565b61016a82905560408051828152602081018490527f7cf7d95d939472232a091a8af32b247f54067369068b83e2add6f34dafac377591015b60405180910390a15050565b61015f5481516101605460208401516040516323b872dd60e01b81526000946001600160a01b03908116948116936323b872dd93612c169391909216918691600401615811565b6020604051808303816000875af1158015612c35573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190612c59919061596e565b5060208301516040516323b872dd60e01b81526001600160a01b037f00000000000000000000000048fb253446873234f2febbf9bdeaa72d9d387f9416916323b872dd91612cae918891869190600401615811565b6020604051808303816000875af1158015612ccd573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190612cf1919061596e565b50602083015160408085015190516372026c6760e11b8152600481018890526001600160a01b038781166024830152604482019390935260648101919091529082169063e404d8ce906084016020604051808303816000875af1158015612d5c573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190612d809190615835565b95945050505050565b60008082600001516001600160a01b031663f4325d676040518163ffffffff1660e01b8152600401602060405180830381865afa158015612dce573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190612df29190615aa2565b90506000612dff82613812565b84516101605460208701516040516323b872dd60e01b81529394506001600160a01b03928316936323b872dd93612e3c9316918691600401615811565b6020604051808303816000875af1158015612e5b573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190612e7f919061596e565b50602084015160408086015190516356aca36f60e01b8152600481018990526001600160a01b038881166024830152858116604483015260648201939093526084810191909152908216906356aca36f9060a4016020604051808303816000875af1158015612ef2573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190612f169190615835565b9695505050505050565b612f2a8282611800565b610bb257612f42816001600160a01b03166014613ecc565b612f4d836020613ecc565b604051602001612f5e929190615aeb565b60408051601f198184030181529082905262461bcd60e51b825261087491600401615b60565b612f8e8282614068565b6000828152609760205260409020610d819082613ae0565b60007f000000000000000000000000ab05cf7c6c3a288cd36326e4f7b8600e7268e3446001600160a01b0316836001600160a01b0316146130ee576000836001600160a01b031663f4325d676040518163ffffffff1660e01b8152600401602060405180830381865afa158015613021573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906130459190615aa2565b9050836001600160a01b031661305a82613812565b604051635768adcf60e01b81526001600160a01b0384811660048301529190911690635768adcf90602401602060405180830381865afa1580156130a2573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906130c69190615aa2565b6001600160a01b0316146130ec5760405162820f3560e61b815260040160405180910390fd5b505b610160546040516323b872dd60e01b81526001600160a01b03808616926323b872dd9261312392899216908790600401615811565b6020604051808303816000875af1158015613142573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190613166919061596e565b50610160546040516313e7e7d160e11b81526001600160a01b03909116906327cfcfa29061319c90879087908790600401615811565b6020604051808303816000875af11580156131bb573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906131df9190615835565b949350505050565b6131f182826140ee565b6000828152609760205260409020610d81908261260f565b600061081e825490565b60006117f98383614155565b60003415613240576040516342f7487960e11b815260040160405180910390fd5b61015f546040516323b872dd60e01b81526001600160a01b03918216917f0000000000000000000000001f573d6fb3f13d689ff844b4ce37794d79a7ff1c16906323b872dd9061329890889085908b90600401615811565b6020604051808303816000875af11580156132b7573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906132db919061596e565b5060405163e06bf20d60e01b8152600481018990526001600160a01b0388811660248301526044820188905285151560648301526084820185905282169063e06bf20d9060a4015b6020604051808303816000875af1158015613342573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906123539190615835565b600061337385848461417f565b600061337e86613812565b604051639f5c734b60e01b8152600481018a90526001600160a01b03898116602483015288811660448301526064820188905291925090821690639f5c734b90608401613323565b6001600160a01b038116600090815260018301602052604081205415156117f9565b6133f1826125e8565b6001600160a01b037f0000000000000000000000001f573d6fb3f13d689ff844b4ce37794d79a7ff1c81169083160361343d5760405163c1ab6dc160e01b815260040160405180910390fd5b61344961016583613ae0565b6134665760405163119b4fd360e11b815260040160405180910390fd5b604051634824fce960e11b81526001600160a01b038381166004830152821690639049f9d290602401600060405180830381600087803b1580156134a957600080fd5b505af11580156134bd573d6000803e3d6000fd5b505050506001600160a01b038281166000818152610167602052604080822080546001600160a01b0319169486169485179055517f4f2ce4e40f623ca765fc0167a25cb7842ceaafb8d82d3dec26ca0d0e0d2d48969190a3806001600160a01b0316826001600160a01b03167f95f865c2808f8b2a85eea2611db7843150ee7835ef1403f9755918a97d76933c60405160405180910390a35050565b60006135688888888888614263565b60007f00000000000000000000000041eeba3355d7d6ff628b7982f3f9d055c39488cb6001600160a01b0316836001600160a01b0316036135a7575060015b61362460405180604001604052808b6001600160a01b031681526020018a6001600160a01b031681525060405180608001604052808a81526020018981526020016000151581526020018415158152506040518060400160405280876001600160a01b03168152602001886001600160a01b0316815250886142e7565b9998505050505050505050565b6101695460ff16613655576040516303a5be3f60e31b815260040160405180910390fd5b565b604080516001600160601b0319606084811b82166020808501919091526001600160e01b03194260e01b16603485015288821b8316603885015287821b909216604c84015280830186905283518084039091018152608090920190925280519101206000907f0000000000000000000000001f573d6fb3f13d689ff844b4ce37794d79a7ff1c6001600160a01b0390811690861603613707576136ff8187868660008061321f565b9150506131df565b612f16818787878789613366565b620f424063ffffffff82161115610845576040516358d620b360e01b815260040160405180910390fd5b6101695463ffffffff6101009091048116908216810361375d575050565b610169805464ffffffff00191661010063ffffffff8581169182029290921790925560408051918416825260208201929092527fa159b13d7eac36d9a65034b4fd6ace1d9cb070d063dc950c564a266f4d0918029101612bc3565b61012d5460ff16156137dc5760405162461bcd60e51b8152600401610874906157b0565b61012d805460ff191660011790557f62e78cea01bee320cd4e420270b5ea74000d11b0c9f74754ebdbfc544b05a2586125cb3390565b6001600160a01b03808216600090815261016760205260408120549091168061081e5760405163c1ab6dc160e01b815260040160405180910390fd5b600061385983613af5565b1561386f57506001600160a01b0381163161081e565b826040516370a0823160e01b81526001600160a01b03848116600483015291909116906370a0823190602401602060405180830381865afa1580156138b8573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906117f99190615835565b6000806138e985856146eb565b805190915060000361390d578281602001516139059190615ba9565b9150506117f9565b8051831161392e57604051631a93c68960e11b815260040160405180910390fd5b600061393b868686614772565b90506000613949838361478d565b805190915060000361396f578481602001516139659190615ba9565b93505050506117f9565b60008581038616906139818383614812565b90506000613997613992848a615ba9565b614849565b919091029998505050505050505050565b6000806139b6610162613209565b905060005b81811015613ad55760006139d161016283613213565b90508561ffff16816001600160a01b031663b1dd61b66040518163ffffffff1660e01b8152600401602060405180830381865afa158015613a16573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190613a3a919061584e565b61ffff16148015613ab357508461ffff16816001600160a01b03166354fd4d506040518163ffffffff1660e01b8152600401602060405180830381865afa158015613a89573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190613aad919061584e565b61ffff16145b15613ac257925061081e915050565b5080613acd8161592f565b9150506139bb565b506000949350505050565b60006117f9836001600160a01b038416614874565b6001600160a01b031673eeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeee1490565b80471015613b675760405162461bcd60e51b815260206004820152601d60248201527f416464726573733a20696e73756666696369656e742062616c616e63650000006044820152606401610874565b6000826001600160a01b03168260405160006040518083038185875af1925050503d8060008114613bb4576040519150601f19603f3d011682016040523d82523d6000602084013e613bb9565b606091505b5050905080610d815760405162461bcd60e51b815260206004820152603a60248201527f416464726573733a20756e61626c6520746f2073656e642076616c75652c207260448201527f6563697069656e74206d617920686176652072657665727465640000000000006064820152608401610874565b80600003613c3d57505050565b613c4683613af5565b15613c87576040516001600160a01b0383169082156108fc029083906000818181858888f19350505050158015613c81573d6000803e3d6000fd5b50505050565b610d816001600160a01b03841683836148c3565b600054610100900460ff16613cc25760405162461bcd60e51b815260040161087490615bcb565b613cca614926565b613cd261495d565b613cda61498c565b610d818383836149bb565b336001600160a01b0382161461084557604051634ca8886760e01b815260040160405180910390fd5b6000613d1d8888888888614263565b60007f00000000000000000000000041eeba3355d7d6ff628b7982f3f9d055c39488cb6001600160a01b0316836001600160a01b031603613d5c575060015b61362460405180604001604052808b6001600160a01b031681526020018a6001600160a01b031681525060405180608001604052808a81526020018981526020016001151581526020018415158152506040518060400160405280876001600160a01b03168152602001886001600160a01b0316815250886142e7565b60008181526001830160205260408120548015613ec2576000613dfd6001836159fa565b8554909150600090613e11906001906159fa565b9050818114613e76576000866000018281548110613e3157613e31615903565b9060005260206000200154905080876000018481548110613e5457613e54615903565b6000918252602080832090910192909255918252600188019052604090208390555b8554869080613e8757613e87615c16565b60019003818190600052602060002001600090559055856001016000868152602001908152602001600020600090556001935050505061081e565b600091505061081e565b60606000613edb836002615c2c565b613ee6906002615a8a565b67ffffffffffffffff811115613efe57613efe615872565b6040519080825280601f01601f191660200182016040528015613f28576020820181803683370190505b509050600360fc1b81600081518110613f4357613f43615903565b60200101906001600160f81b031916908160001a905350600f60fb1b81600181518110613f7257613f72615903565b60200101906001600160f81b031916908160001a9053506000613f96846002615c2c565b613fa1906001615a8a565b90505b6001811115614019576f181899199a1a9b1b9c1cb0b131b232b360811b85600f1660108110613fd557613fd5615903565b1a60f81b828281518110613feb57613feb615903565b60200101906001600160f81b031916908160001a90535060049490941c9361401281615c4b565b9050613fa4565b5083156117f95760405162461bcd60e51b815260206004820181905260248201527f537472696e67733a20686578206c656e67746820696e73756666696369656e746044820152606401610874565b6140728282611800565b610bb25760008281526065602090815260408083206001600160a01b03851684529091529020805460ff191660011790556140aa3390565b6001600160a01b0316816001600160a01b0316837f2f8788117e7eff1d82e926ec794901d17c78024a50270940304540a733656f0d60405160405180910390a45050565b6140f88282611800565b15610bb25760008281526065602090815260408083206001600160a01b0385168085529252808320805460ff1916905551339285917ff6391f5c32d9c69d2a47ea670b442974b53935d1edc7fd64eb21e047a839171b9190a45050565b600082600001828154811061416c5761416c615903565b9060005260206000200154905092915050565b614191836001600160a01b0316613af5565b1561420f57803410156141b7576040516342f7487960e11b815260040160405180910390fd5b6141ea6001600160a01b037f000000000000000000000000649765821d9f64198c905ec0b2b037a4a52bc3731682613b17565b80341115610d8157610d816141ff82346159fa565b6001600160a01b03841690613b17565b341561422e576040516342f7487960e11b815260040160405180910390fd5b610d816001600160a01b038416837f000000000000000000000000649765821d9f64198c905ec0b2b037a4a52bc37384614aac565b61426c856125e8565b614275846125e8565b836001600160a01b0316856001600160a01b0316036142a75760405163c1ab6dc160e01b815260040160405180910390fd5b6142b083612b5b565b6142b982612b5b565b4263ffffffff168110156142e057604051631ab7da6b60e01b815260040160405180910390fd5b5050505050565b60208201516000906001600160a01b031661430d5782516001600160a01b031660208401525b825185516020808801518751888301516040808b0151858b015182516001600160601b031960609a8b1b8116828a01526001600160e01b03194260e01b166034830152988a1b8916603882015295891b8816604c87015288860194909452608080860193909352151560f81b60a085015260a1840189905291861b90941660c1830152805160b581840301815260d5830180835281519185019190912061015584018352600080835260f5850181905261011585018190526101359094018490528251958601835283865293850183905290840182905293830152919087516000907f0000000000000000000000001f573d6fb3f13d689ff844b4ce37794d79a7ff1c6001600160a01b039081169116036144b757614433848a6020015160018b614ad6565b91508192508160600151905088602001516001600160a01b031689600001516001600160a01b0316857f5c02c2bb2d1d082317eb23916ca27b3e7c294398b60061a2ad54f1c3c018c318856000015186602001518760000151886040015160008f600001516040516144aa96959493929190615c62565b60405180910390a4614616565b60208901516001600160a01b037f0000000000000000000000001f573d6fb3f13d689ff844b4ce37794d79a7ff1c8116911603614579576144ff848a6000015160008b614ad6565b91508192508160600151905088602001516001600160a01b031689600001516001600160a01b0316857f5c02c2bb2d1d082317eb23916ca27b3e7c294398b60061a2ad54f1c3c018c318856000015186602001518760200151886040015189604001518f600001516040516144aa96959493929190615c62565b614584848a8a614df8565b6060808201519083015192955090935061459d91615a8a565b905088602001516001600160a01b031689600001516001600160a01b0316857f5c02c2bb2d1d082317eb23916ca27b3e7c294398b60061a2ad54f1c3c018c31886600001518660200151886020015188604001518a604001518f6000015160405161460d96959493929190615c62565b60405180910390a45b88518751845161462792919061417f565b6020808a01518882015191840151604051631c20fadd60e01b81526001600160a01b037f000000000000000000000000649765821d9f64198c905ec0b2b037a4a52bc3731693631c20fadd93614681939092600401615811565b600060405180830381600087803b15801561469b57600080fd5b505af11580156146af573d6000803e3d6000fd5b505050508061016860008282546146c69190615a8a565b909155505060408801516146db578251613624565b5060200151979650505050505050565b6040805180820190915260008082526020820152600061470b8484614f9b565b9050838302808210614740576040518060400160405280828461472e91906159fa565b8152602001828152509250505061081e565b604051806040016040528060016147578585900390565b61476191906159fa565b815260200191909152949350505050565b6000818061478257614782615b93565b838509949350505050565b6040805180820190915260008082526020820152818360200151106147da576040518060400160405280846000015181526020018385602001516147d191906159fa565b9052905061081e565b6040518060400160405280600185600001516147f691906159fa565b8152602001614809856020015185900390565b90529392505050565b60008061482a61482484808403615ba9565b60010190565b905082846020015161483c9190615ba9565b8451820217949350505050565b60006001815b6008811015610f2557838202600203820291508061486c8161592f565b91505061484f565b60008181526001830160205260408120546148bb5750815460018181018455600084815260208082209093018490558454848252828601909352604090209190915561081e565b50600061081e565b6040516001600160a01b038316602482015260448101829052610d8190849063a9059cbb60e01b906064015b60408051601f198184030181529190526020810180516001600160e01b03166001600160e01b031990931692909217909152614faa565b600054610100900460ff1661494d5760405162461bcd60e51b815260040161087490615bcb565b61495561507c565b6136556150a3565b600054610100900460ff166149845760405162461bcd60e51b815260040161087490615bcb565b613655615108565b600054610100900460ff166149b35760405162461bcd60e51b815260040161087490615bcb565b613655615136565b600054610100900460ff166149e25760405162461bcd60e51b815260040161087490615bcb565b61015f80546001600160a01b038086166001600160a01b0319928316179092556101608054858416908316179055610161805492841692909116919091179055614a5a7fdf8c9529ea4b244b569bac557a549516f317e7b5cf82dc5e0d8b6d874930a3f5600080516020615d2c83398151915261516a565b614a80600080516020615cec833981519152600080516020615d2c83398151915261516a565b610169805460ff19166001179055614a996107d061373f565b610d8169d3c21bcecceda1000000612b7c565b801580614abd5750614abd84613af5565b613c8157613c816001600160a01b0385168484846151b5565b614b016040518060800160405280600081526020016000815260200160008152602001600081525090565b600083614b54576040518060400160405280866001600160a01b031681526020017f0000000000000000000000001f573d6fb3f13d689ff844b4ce37794d79a7ff1c6001600160a01b0316815250614b9c565b60405180604001604052807f0000000000000000000000001f573d6fb3f13d689ff844b4ce37794d79a7ff1c6001600160a01b03168152602001866001600160a01b03168152505b905060008360400151614c5a57614bb286613812565b825160208085015187519188015160608901516040516337cb0ead60e21b8152600481018e90526001600160a01b03958616602482015292851660448401526064830193909352608482015290151560a482015291169063df2c3ab49060c4016060604051808303816000875af1158015614c31573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190614c559190615c93565b614d06565b614c6386613812565b8251602080850151875191880151606089015160405163d1aebfc760e01b8152600481018e90526001600160a01b03958616602482015292851660448401526064830193909352608482015290151560a482015291169063d1aebfc79060c4016060604051808303816000875af1158015614ce2573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190614d069190615c93565b905084614d9f5761015f54604082015160208301516001600160a01b0390921691637c8f622d918991614d3991906159fa565b6040516001600160e01b031960e085901b1681526001600160a01b039092166004830152602482015260016044820152606401600060405180830381600087803b158015614d8657600080fd5b505af1158015614d9a573d6000803e3d6000fd5b505050505b60405180608001604052808560400151614dba578251614dbd565b85515b81526020018560400151614dd2578551614dd5565b82515b815260200182602001518152602001826040015181525092505050949350505050565b614e236040518060800160405280600081526020016000815260200160008152602001600081525090565b614e4e6040518060800160405280600081526020016000815260200160008152602001600081525090565b826040015115614ef8576000836000015190506000846020015190506000614ea788886000015160006040518060800160405280888152602001600181526020016001151581526020018b606001511515815250614ad6565b90506000614ee989896020015160016040518060800160405280876020015181526020018881526020016001151581526020018c606001511515815250614ad6565b919550909350614f9392505050565b6000836000015190506000846020015190506000614f488888602001516001604051806080016040528088815260200160001981526020016000151581526020018b606001511515815250614ad6565b90506000614f8a89896000015160006040518060800160405280876000015181526020018881526020016000151581526020018c606001511515815250614ad6565b95509093505050505b935093915050565b60006000198284099392505050565b6000614fff826040518060400160405280602081526020017f5361666545524332303a206c6f772d6c6576656c2063616c6c206661696c6564815250856001600160a01b03166151d69092919063ffffffff16565b805190915015610d81578080602001905181019061501d919061596e565b610d815760405162461bcd60e51b815260206004820152602a60248201527f5361666545524332303a204552433230206f7065726174696f6e20646964206e6044820152691bdd081cdd58d8d9595960b21b6064820152608401610874565b600054610100900460ff166136555760405162461bcd60e51b815260040161087490615bcb565b600054610100900460ff166150ca5760405162461bcd60e51b815260040161087490615bcb565b60c9805461ffff191660011790556150f0600080516020615d2c8339815191528061516a565b613655600080516020615d2c833981519152336151e5565b600054610100900460ff1661512f5760405162461bcd60e51b815260040161087490615bcb565b600160fb55565b600054610100900460ff1661515d5760405162461bcd60e51b815260040161087490615bcb565b61012d805460ff19169055565b600082815260656020526040808220600101805490849055905190918391839186917fbd79b86ffe0ab8e8776151514217cd7cacd52c909f66475c3af44e129f0b00ff9190a4505050565b613c81846323b872dd60e01b8585856040516024016148ef93929190615811565b60606131df84846000856151ef565b610bb28282612f84565b6060824710156152505760405162461bcd60e51b815260206004820152602660248201527f416464726573733a20696e73756666696369656e742062616c616e636520666f6044820152651c8818d85b1b60d21b6064820152608401610874565b6001600160a01b0385163b6152a75760405162461bcd60e51b815260206004820152601d60248201527f416464726573733a2063616c6c20746f206e6f6e2d636f6e74726163740000006044820152606401610874565b600080866001600160a01b031685876040516152c39190615ccf565b60006040518083038185875af1925050503d8060008114615300576040519150601f19603f3d011682016040523d82523d6000602084013e615305565b606091505b5091509150615315828286615320565b979650505050505050565b6060831561532f5750816117f9565b82511561533f5782518084602001fd5b8160405162461bcd60e51b81526004016108749190615b60565b60006020828403121561536b57600080fd5b81356001600160e01b0319811681146117f957600080fd5b6001600160a01b038116811461084557600080fd5b6000602082840312156153aa57600080fd5b81356117f981615383565b6000602082840312156153c757600080fd5b5035919050565b801515811461084557600080fd5b6000602082840312156153ee57600080fd5b81356117f9816153ce565b6000806040838503121561540c57600080fd5b82359150602083013561541e81615383565b809150509250929050565b6000806040838503121561543c57600080fd5b823561544781615383565b946020939093013593505050565b6020808252825182820181905260009190848201906040850190845b818110156154965783516001600160a01b031683529284019291840191600101615471565b50909695505050505050565b600080600080600060a086880312156154ba57600080fd5b85356154c581615383565b945060208601356154d581615383565b94979496505050506040830135926060810135926080909101359150565b60008060006040848603121561550857600080fd5b833567ffffffffffffffff8082111561552057600080fd5b818601915086601f83011261553457600080fd5b81358181111561554357600080fd5b8760208260051b850101111561555857600080fd5b6020928301955093505084013561556e81615383565b809150509250925092565b60008060008060008060c0878903121561559257600080fd5b863561559d81615383565b955060208701356155ad81615383565b945060408701359350606087013592506080870135915060a08701356155d281615383565b809150509295509295509295565b63ffffffff8116811461084557600080fd5b60006020828403121561560457600080fd5b81356117f9816155e0565b60008083601f84011261562157600080fd5b50813567ffffffffffffffff81111561563957600080fd5b60208301915083602082850101111561565157600080fd5b9250929050565b6000806020838503121561566b57600080fd5b823567ffffffffffffffff81111561568257600080fd5b61568e8582860161560f565b90969095509350505050565b600080604083850312156156ad57600080fd5b50508035926020909101359150565b6000806000806000608086880312156156d457600080fd5b85356156df81615383565b94506020860135935060408601356156f681615383565b9250606086013567ffffffffffffffff81111561571257600080fd5b61571e8882890161560f565b969995985093965092949392505050565b60008060006060848603121561574457600080fd5b833561574f81615383565b9250602084013561575f81615383565b929592945050506040919091013590565b60008060006060848603121561578557600080fd5b833561579081615383565b925060208401356157a081615383565b9150604084013561556e81615383565b60208082526010908201526f14185d5cd8589b194e881c185d5cd95960821b604082015260600190565b6020808252601f908201527f5265656e7472616e637947756172643a207265656e7472616e742063616c6c00604082015260600190565b6001600160a01b039384168152919092166020820152604081019190915260600190565b60006020828403121561584757600080fd5b5051919050565b60006020828403121561586057600080fd5b815161ffff811681146117f957600080fd5b634e487b7160e01b600052604160045260246000fd5b6040516060810167ffffffffffffffff811182821017156158b957634e487b7160e01b600052604160045260246000fd5b60405290565b6000606082840312156158d157600080fd5b6158d9615888565b82516158e481615383565b8152602083810151908201526040928301519281019290925250919050565b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052601160045260246000fd5b60006001820161594157615941615919565b5060010190565b600061ffff80831681851680830382111561596557615965615919565b01949350505050565b60006020828403121561598057600080fd5b81516117f9816153ce565b80516fffffffffffffffffffffffffffffffff811681146159ab57600080fd5b919050565b6000606082840312156159c257600080fd5b6159ca615888565b6159d38361598b565b81526159e16020840161598b565b6020820152604083015160408201528091505092915050565b600082821015615a0c57615a0c615919565b500390565b600060208284031215615a2357600080fd5b81516117f9816155e0565b6001600160a01b03878116825286166020820152604081018590526060810184905260a06080820181905281018290526000828460c0840137600060c0848401015260c0601f19601f8501168301019050979650505050505050565b60008219821115615a9d57615a9d615919565b500190565b600060208284031215615ab457600080fd5b81516117f981615383565b60005b83811015615ada578181015183820152602001615ac2565b83811115613c815750506000910152565b7f416363657373436f6e74726f6c3a206163636f756e7420000000000000000000815260008351615b23816017850160208801615abf565b7001034b99036b4b9b9b4b733903937b6329607d1b6017918401918201528351615b54816028840160208801615abf565b01602801949350505050565b6020815260008251806020840152615b7f816040850160208701615abf565b601f01601f19169190910160400192915050565b634e487b7160e01b600052601260045260246000fd5b600082615bc657634e487b7160e01b600052601260045260246000fd5b500490565b6020808252602b908201527f496e697469616c697a61626c653a20636f6e7472616374206973206e6f74206960408201526a6e697469616c697a696e6760a81b606082015260800190565b634e487b7160e01b600052603160045260246000fd5b6000816000190483118215151615615c4657615c46615919565b500290565b600081615c5a57615c5a615919565b506000190190565b95865260208601949094526040850192909252606084015260808301526001600160a01b031660a082015260c00190565b600060608284031215615ca557600080fd5b615cad615888565b8251815260208301516020820152604083015160408201528091505092915050565b60008251615ce1818460208701615abf565b919091019291505056fef28f409b8cbe6b50c7ca45afe893f01f69626f8a4e33cb480bc1bc2d618c084589ce14d20697a788f57260f7690044299bde7ea88cfb7e43d120a0c031f1ffc12172861495e7b85edac73e3cd5fbb42dd675baadf627720e687bcfdaca025096a164736f6c634300080d000a

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

000000000000000000000000a489c2b5b36835a327851ab917a80562b5afc2440000000000000000000000000887ae1251e180d7d453aedebee26e1639f2011300000000000000000000000083e1814ba31f7ea95d216204bb45fe75ce09b14f000000000000000000000000649765821d9f64198c905ec0b2b037a4a52bc373000000000000000000000000fd31662b3d54edde9b6bdd32c9c27c8e292cad57000000000000000000000000ab05cf7c6c3a288cd36326e4f7b8600e7268e34400000000000000000000000041eeba3355d7d6ff628b7982f3f9d055c39488cb000000000000000000000000d06146d292f9651c1d7cf54a3162791dfc2bef46

-----Decoded View---------------
Arg [0] : initBNTGovernance (address): 0xa489C2b5b36835A327851Ab917A80562B5AFC244
Arg [1] : initVBNTGovernance (address): 0x0887ae1251E180d7D453aeDEBee26e1639f20113
Arg [2] : initNetworkSettings (address): 0x83E1814ba31F7ea95D216204BB45FE75Ce09b14F
Arg [3] : initMasterVault (address): 0x649765821D9f64198c905eC0B2B037a4a52Bc373
Arg [4] : initExternalProtectionVault (address): 0xFd31662b3d54eddE9B6Bdd32c9c27C8E292cAD57
Arg [5] : initBNTPoolToken (address): 0xAB05Cf7C6c3a288cd36326e4f7b8600e7268E344
Arg [6] : bancorArbitrage (address): 0x41Eeba3355d7D6FF628B7982F3F9D055c39488cB
Arg [7] : carbonPOL (address): 0xD06146D292F9651C1D7cf54A3162791DFc2bEf46

-----Encoded View---------------
8 Constructor Arguments found :
Arg [0] : 000000000000000000000000a489c2b5b36835a327851ab917a80562b5afc244
Arg [1] : 0000000000000000000000000887ae1251e180d7d453aedebee26e1639f20113
Arg [2] : 00000000000000000000000083e1814ba31f7ea95d216204bb45fe75ce09b14f
Arg [3] : 000000000000000000000000649765821d9f64198c905ec0b2b037a4a52bc373
Arg [4] : 000000000000000000000000fd31662b3d54edde9b6bdd32c9c27c8e292cad57
Arg [5] : 000000000000000000000000ab05cf7c6c3a288cd36326e4f7b8600e7268e344
Arg [6] : 00000000000000000000000041eeba3355d7d6ff628b7982f3f9d055c39488cb
Arg [7] : 000000000000000000000000d06146d292f9651c1d7cf54a3162791dfc2bef46


Block Transaction Difficulty Gas Used Reward
View All Blocks Produced

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
Loading...
Loading
[ Download: CSV Export  ]

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