ETH Price: $3,325.65 (-2.73%)

Token

ORACLEBASE (OB)
 

Overview

Max Total Supply

965,000 OB

Holders

37

Market

Onchain Market Cap

$0.00

Circulating Supply Market Cap

-

Other Info

Token Contract (WITH 9 Decimals)

Balance
434.838531611 OB

Value
$0.00
0xd14c254902724d6c8d43a9e72b307b78c0a32c1f
Loading...
Loading
Loading...
Loading
Loading...
Loading

Click here to update the token information / general information
# Exchange Pair Price  24H Volume % Volume

Contract Source Code Verified (Exact Match)

Contract Name:
Orchestrator

Compiler Version
v0.4.24+commit.e67f0147

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

/**
 *Submitted for verification at Etherscan.io on 2021-02-25
*/

pragma solidity 0.4.24;

/**
 * @title SafeMathInt
 * @dev Math operations for int256 with overflow safety checks.
 */
library SafeMathInt {
    int256 private constant MIN_INT256 = int256(1) << 255;
    int256 private constant MAX_INT256 = ~(int256(1) << 255);

    /**
     * @dev Multiplies two int256 variables and fails on overflow.
     */
    function mul(int256 a, int256 b)
        internal
        pure
        returns (int256)
    {
        int256 c = a * b;

        // Detect overflow when multiplying MIN_INT256 with -1
        require(c != MIN_INT256 || (a & MIN_INT256) != (b & MIN_INT256));
        require((b == 0) || (c / b == a));
        return c;
    }

    /**
     * @dev Division of two int256 variables and fails on overflow.
     */
    function div(int256 a, int256 b)
        internal
        pure
        returns (int256)
        
    {
        // Prevent overflow when dividing MIN_INT256 by -1
        require(b != -1 || a != MIN_INT256);

        // Solidity already throws when dividing by 0.
        return a / b;
    }

    /**
     * @dev Subtracts two int256 variables and fails on overflow.
     */
    function sub(int256 a, int256 b)
        internal
        pure
        returns (int256)
    {
        int256 c = a - b;
        require((b >= 0 && c <= a) || (b < 0 && c > a));
        return c;
    }

    /**
     * @dev Adds two int256 variables and fails on overflow.
     */
    function add(int256 a, int256 b)
        internal
        pure
        returns (int256)
    {
        int256 c = a + b;
        require((b >= 0 && c >= a) || (b < 0 && c < a));
        return c;
    }

    /**
     * @dev Converts to absolute value, and fails on overflow.
     */
    function abs(int256 a)
        internal
        pure
        returns (int256)
    {
        require(a != MIN_INT256);
        return a < 0 ? -a : a;
    }
}

pragma solidity 0.4.24;


/**
 * @title Various utilities useful for uint256.
 */
library UInt256Lib {

    uint256 private constant MAX_INT256 = ~(uint256(1) << 255);

    /**
     * @dev Safely converts a uint256 to an int256.
     */
    function toInt256Safe(uint256 a)
        internal
        pure
        returns (int256)
    {
        require(a <= MAX_INT256);
        return int256(a);
    }
}

pragma solidity >=0.4.24 <0.7.0;

/**
 * @title Initializable
 *
 * @dev Helper contract to support initializer functions. To use it, replace
 * the constructor with a function that has the `initializer` modifier.
 * WARNING: Unlike constructors, initializer functions must be manually
 * invoked. This applies both to deploying an Initializable contract, as well
 * as extending an Initializable contract via inheritance.
 * WARNING: When used with inheritance, manual care must be taken to not invoke
 * a parent initializer twice, or ensure that all initializers are idempotent,
 * because this is not dealt with automatically as with constructors.
 */
contract Initializable {
    bool private initialized;
    bool private initializing;

    modifier initializer() {
        require(initializing || isConstructor() || !initialized, "Contract already initialized");

        bool isTopLevelCall = !initializing;
        if (isTopLevelCall) {
            initializing = true;
            initialized = true;
        }

        _   ;

        if (isTopLevelCall) {
            initializing = false;
        }
    }

  /// @dev Returns true if and only if the function is running in the constructor
    function isConstructor() private view returns (bool) {
    // extcodesize checks the size of the code stored in an address, and
    // address returns the current address. Since the code is still not
    // deployed when running a constructor, any checks on its code size will
    // yield zero, making it an effective way to detect if a contract is
    // under construction or not.
        address self = address(this);
        uint256 cs;
        assembly { cs := extcodesize(self) }
        return cs == 0;
    }

  // Reserved storage space to allow for layout changes in the future.
    uint256[50] private ______gap;
}

/**
 * @title Ownable
 * @dev The Ownable contract has an owner address, and provides basic authorization control
 * functions, this simplifies the implementation of "user permissions".
 */
contract Ownable is Initializable {
    address private _owner;


    event OwnershipRenounced(address indexed previousOwner);
    event OwnershipTransferred(
    address indexed previousOwner,
    address indexed newOwner
    );


  /**
   * @dev The Ownable constructor sets the original `owner` of the contract to the sender
   * account.
   */
    function initialize(address sender) public initializer {
        _owner = sender;
    }

  /**
   * @return the address of the owner.
   */
    function owner() public view returns(address) {
        return _owner;
    }

  /**
   * @dev Throws if called by any account other than the owner.
   */
    modifier onlyOwner() {
        require(isOwner());
        _;
    }

  /**
   * @return true if `msg.sender` is the owner of the contract.
   */
    function isOwner() public view returns(bool) {
        return msg.sender == _owner;
    }  

  /**
   * @dev Allows the current owner to relinquish control of the contract.
   * @notice Renouncing to ownership will leave the contract without an owner.
   * It will not be possible to call the functions with the `onlyOwner`
   * modifier anymore.
   */
    function renounceOwnership() public onlyOwner {
        emit OwnershipRenounced(_owner);
        _owner = address(0);
    } 

  /**
   * @dev Allows the current owner to transfer control of the contract to a newOwner.
   * @param newOwner The address to transfer ownership to.
   */
    function transferOwnership(address newOwner) public onlyOwner {
        _transferOwnership(newOwner);
    }

  /**
   * @dev Transfers control of the contract to a newOwner.
   * @param newOwner The address to transfer ownership to.
   */
    function _transferOwnership(address newOwner) internal {
        require(newOwner != address(0));
        emit OwnershipTransferred(_owner, newOwner);
        _owner = newOwner;
    }

    uint256[50] private ______gap;
}

pragma solidity ^0.4.24;


/**
 * @title SafeMath
 * @dev Math operations with safety checks that throw on error
 */
library SafeMath {

  /**
  * @dev Multiplies two numbers, throws on overflow.
  */
    function mul(uint256 _a, uint256 _b) internal pure returns (uint256 c) {
    // Gas optimization: this is cheaper than asserting 'a' not being zero, but the
    // benefit is lost if 'b' is also tested.
    // See: https://github.com/OpenZeppelin/openzeppelin-solidity/pull/522
        if (_a == 0) {
            return 0;
        }

        c = _a * _b;
        assert(c / _a == _b);
        return c;
    }

  /**
  * @dev Integer division of two numbers, truncating the quotient.
  */
    function div(uint256 _a, uint256 _b) internal pure returns (uint256) {
    // assert(_b > 0); // Solidity automatically throws when dividing by 0
    // uint256 c = _a / _b;
    // assert(_a == _b * c + _a % _b); // There is no case in which this doesn't hold
        return _a / _b;
    }

  /**
  * @dev Subtracts two numbers, throws on overflow (i.e. if subtrahend is greater than minuend).
  */
    function sub(uint256 _a, uint256 _b) internal pure returns (uint256) {
        assert(_b <= _a);
        return _a - _b;
    }

  /**
  * @dev Adds two numbers, throws on overflow.
  */
    function add(uint256 _a, uint256 _b) internal pure returns (uint256 c) {
        c = _a + _b;
        assert(c >= _a);
        return c;
    }

    // function mod(uint256 a, uint256 b) internal pure returns (uint256) {
    //     return mod(a, b);
    // }
    
    function mod(uint256 a, uint256 b) internal pure returns (uint256) {
        require(b != 0);
        return a % b;
    }

}

pragma solidity ^0.4.24;

/**
 * @title ERC20 interface
 * @dev see https://github.com/ethereum/EIPs/issues/20
 */
interface IERC20 {
    function totalSupply() external view returns (uint256);

    function balanceOf(address who) external view returns (uint256);

    function allowance(address owner, address spender)
    external view returns (uint256);

    function transfer(address to, uint256 value) external returns (bool);

    function approve(address spender, uint256 value)
    external returns (bool);

    function transferFrom(address from, address to, uint256 value)
    external returns (bool);

    event Transfer(
    address indexed from,
    address indexed to,
    uint256 value

    );

    event Approval(
    address indexed owner,
    address indexed spender,
    uint256 value
    );
}

pragma solidity ^0.4.24;

/**
 * @title ERC20Detailed token
 * @dev The decimals are only for visualization purposes.
 * All the operations are done using the smallest and indivisible token unit,
 * just as on Ethereum all the operations are done in wei.
 */
contract ERC20Detailed is Initializable, IERC20 {
  string private _name;
  string private _symbol;
  uint8 private _decimals;

  function initialize(string name, string symbol, uint8 decimals) public initializer {
    _name = name;
    _symbol = symbol;
    _decimals = decimals;
  }

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

  /**
   * @return the symbol of the token.
   */
  function symbol() public view returns(string) {
    return _symbol;
  }

  /**
   * @return the number of decimals of the token.
   */
  function decimals() public view returns(uint8) {
    return _decimals;
  }

  uint256[50] private ______gap;
}

interface ISync {
    function sync() external;
}

/**
 * @title OracleBase ERC20 token
 * @dev This is part of an implementation of the OracleBase Ideal Money protocol.
 *      OracleBase is a normal ERC20 token, but its supply can be adjusted by splitting and
 *      combining tokens proportionally across all wallets.
 *
 *      OracleBase balances are internally represented with a hidden denomination, 'gons'.
 *      We support splitting the currency in expansion and combining the currency on contraction by
 *      changing the exchange rate between the hidden 'gons' and the public 'fragments'.
 */
contract OracleBase is ERC20Detailed, Ownable {
    // PLEASE READ BEFORE CHANGING ANY ACCOUNTING OR MATH
    // Anytime there is division, there is a risk of numerical instability from rounding errors. In
    // order to minimize this risk, we adhere to the following guidelines:
    // 1) The conversion rate adopted is the number of gons that equals 1 fragment.
    //    The inverse rate must not be used--TOTAL_GONS is always the numerator and _totalSupply is
    //    always the denominator. (i.e. If you want to convert gons to fragments instead of
    //    multiplying by the inverse rate, you should divide by the normal rate)
    // 2) Gon balances converted into Fragments are always rounded down (truncated).
    //
    // We make the following guarantees:
    // - If address 'A' transfers x Fragments to address 'B'. A's resulting external balance will
    //   be decreased by precisely x Fragments, and B's external balance will be precisely
    //   increased by x Fragments.
    //
    // We do not guarantee that the sum of all balances equals the result of calling totalSupply().
    // This is because, for any conversion function 'f()' that has non-zero rounding error,
    // f(x0) + f(x1) + ... + f(xn) is not always equal to f(x0 + x1 + ... xn).
    using SafeMath for uint256;
    using SafeMathInt for int256;

    event LogRebase(uint256 indexed epoch, uint256 totalSupply);
    event LogMonetaryPolicyUpdated(address monetaryPolicy);
    event LogOBEthPairAdded(address OBEthUniswapPair);

    bool private rebasePausedDeprecated;
    bool private tokenPausedDeprecated;

    modifier validRecipient(address to) {
        require(to != address(0x0));
        require(to != address(this));
        _;
    }

    uint256 private constant DECIMALS = 9;
    uint256 private constant MAX_UINT256 = ~uint256(0);
    uint256 private constant INITIAL_FRAGMENTS_SUPPLY = 965 * 10**3 * 10**DECIMALS;     // Initial Supply 596_000 
   

    // TOTAL_GONS is a multiple of INITIAL_FRAGMENTS_SUPPLY so that _gonsPerFragment is an integer.
    // Use the highest value that fits in a uint256 for max granularity.
    uint256 private constant TOTAL_GONS = MAX_UINT256 - (MAX_UINT256 % INITIAL_FRAGMENTS_SUPPLY);

    // MAX_SUPPLY = maximum integer < (sqrt(4*TOTAL_GONS + 1) - 1) / 2
    uint256 private constant MAX_SUPPLY = ~uint128(0);  // (2^128) - 1

    uint256 private _totalSupply;
    uint256 private _gonsPerFragment;

    //Uniswap pair contract
    address public _OBEthUniswapPair;

    mapping(address => uint256) private _gonBalances;

    // This is denominated in Fragments, because the gons-fragments conversion might change before
    // it's fully paid.
    mapping (address => mapping (address => uint256)) private _allowedFragments;

    /**
     * @param OBEthUniswapPair_ The address of the uniswap pair(OracleBase~eth) contract to sync liquiity.
     */
    function setOBEthPairAddress(address OBEthUniswapPair_)
        external
        onlyOwner
    {
        _OBEthUniswapPair = OBEthUniswapPair_;
        emit LogOBEthPairAdded(_OBEthUniswapPair);
    }

    /**
     * @dev Notifies Fragments contract about a new rebase cycle.
     * @param supplyDelta The number of new fragment tokens to add into circulation via expansion.
     * @return The total number of fragments after the supply adjustment.
     */
    function rebase(uint256 epoch, int256 supplyDelta)
        internal
        returns (uint256)
    {
        if (supplyDelta == 0) {
            emit LogRebase(epoch, _totalSupply);
            return _totalSupply;
        }

        if (supplyDelta < 0) {
            _totalSupply = _totalSupply.sub(uint256(supplyDelta.abs()));
        } else {
            _totalSupply = _totalSupply.add(uint256(supplyDelta));
        }

        if (_totalSupply > MAX_SUPPLY) {
            _totalSupply = MAX_SUPPLY;
        }

        _gonsPerFragment = TOTAL_GONS.div(_totalSupply);

        // From this point forward, _gonsPerFragment is taken as the source of truth.
        // We recalculate a new _totalSupply to be in agreement with the _gonsPerFragment
        // conversion rate.
        // This means our applied supplyDelta can deviate from the requested supplyDelta,
        // but this deviation is guaranteed to be < (_totalSupply^2)/(TOTAL_GONS - _totalSupply).
        //
        // In the case of _totalSupply <= MAX_UINT128 (our current supply cap), this
        // deviation is guaranteed to be < 1, so we can omit this step. If the supply cap is
        // ever increased, it must be re-included.
        // _totalSupply = TOTAL_GONS.div(_gonsPerFragment)

        emit LogRebase(epoch, _totalSupply);
        
        //
        ISync(_OBEthUniswapPair).sync();   // Uniswap ETH-OB Pair

        return _totalSupply;
    }

    function tokenInitialize(address owner_)
        internal
    {
        ERC20Detailed.initialize("ORACLEBASE", "OB", uint8(DECIMALS));
        Ownable.initialize(owner_);

        rebasePausedDeprecated = false;
        tokenPausedDeprecated = false;

        _totalSupply = INITIAL_FRAGMENTS_SUPPLY;
        _gonBalances[owner_] = TOTAL_GONS;
        _gonsPerFragment = TOTAL_GONS.div(_totalSupply);

        emit Transfer(address(0x0), owner_, _totalSupply);
    }

    /**
     * @return The total number of fragments.
     */
    function totalSupply()
        public
        view
        returns (uint256)
    {
        return _totalSupply;
    }

    /**
     * @param who The address to query.
     * @return The balance of the specified address.
     */
    function balanceOf(address who)
        public
        view
        returns (uint256)
    {
        return _gonBalances[who].div(_gonsPerFragment);
    }

    /**
     * @dev Transfer tokens to a specified address.
     * @param to The address to transfer to.
     * @param value The amount to be transferred.
     * @return True on success, false otherwise.
     */
    function transfer(address to, uint256 value)
        external
        validRecipient(to)
        returns (bool)
    {
        uint256 gonValue = value.mul(_gonsPerFragment);
        _gonBalances[msg.sender] = _gonBalances[msg.sender].sub(gonValue);
        _gonBalances[to] = _gonBalances[to].add(gonValue);
        emit Transfer(msg.sender, to, value);
        return true;
    }

    /**
     * @dev Function to check the amount of tokens that an owner has allowed to a spender.
     * @param owner_ The address which owns the funds.
     * @param spender The address which will spend the funds.
     * @return The number of tokens still available for the spender.
     */
    function allowance(address owner_, address spender)
        public
        view
        returns (uint256)
    {
        return _allowedFragments[owner_][spender];
    }

    /**
     * @dev Transfer tokens from one address to another.
     * @param from The address you want to send tokens from.
     * @param to The address you want to transfer to.
     * @param value The amount of tokens to be transferred.
     */
    function transferFrom(address from, address to, uint256 value)
        external
        validRecipient(to)
        returns (bool)
    {
        _allowedFragments[from][msg.sender] = _allowedFragments[from][msg.sender].sub(value);

        uint256 gonValue = value.mul(_gonsPerFragment);
        _gonBalances[from] = _gonBalances[from].sub(gonValue);
        _gonBalances[to] = _gonBalances[to].add(gonValue);
        emit Transfer(from, to, value);

        return true;
    }

    /**
     * @dev Approve the passed address to spend the specified amount of tokens on behalf of
     * msg.sender. This method is included for ERC20 compatibility.
     * increaseAllowance and decreaseAllowance should be used instead.
     * Changing an allowance with this method brings the risk that someone may transfer both
     * the old and the new allowance - if they are both greater than zero - if a transfer
     * transaction is mined before the later approve() call is mined.
     *
     * @param spender The address which will spend the funds.
     * @param value The amount of tokens to be spent.
     */
    function approve(address spender, uint256 value)
        external
        returns (bool)
    {
        _allowedFragments[msg.sender][spender] = value;
        emit Approval(msg.sender, spender, value);
        return true;
    }

    /**
     * @dev Increase the amount of tokens that an owner has allowed to a spender.
     * This method should be used instead of approve() to avoid the double approval vulnerability
     * described above.
     * @param spender The address which will spend the funds.
     * @param addedValue The amount of tokens to increase the allowance by.
     */
    function increaseAllowance(address spender, uint256 addedValue)
        external
        returns (bool)
    {
        _allowedFragments[msg.sender][spender] =
            _allowedFragments[msg.sender][spender].add(addedValue);
        emit Approval(msg.sender, spender, _allowedFragments[msg.sender][spender]);
        return true;
    }

    /**
     * @dev Decrease the amount of tokens that an owner has allowed to a spender.
     *
     * @param spender The address which will spend the funds.
     * @param subtractedValue The amount of tokens to decrease the allowance by.
     */
    function decreaseAllowance(address spender, uint256 subtractedValue)
        external
        returns (bool)
    {
        uint256 oldValue = _allowedFragments[msg.sender][spender];
        if (subtractedValue >= oldValue) {
            _allowedFragments[msg.sender][spender] = 0;
        } else {
            _allowedFragments[msg.sender][spender] = oldValue.sub(subtractedValue);
        }
        emit Approval(msg.sender, spender, _allowedFragments[msg.sender][spender]);
        return true;
    }
}

pragma solidity ^0.4.24;

/**
 * @title Median Oracle
 *
 * @notice Provides a value onchain that's aggregated from a whitelisted set of
 *         providers.
 */
contract TargetPriceOracle is Ownable {
    
    uint256 public currentMarketPrice;
    /**
     * @notice Pushes a targetPrice
     * @param currentMarketPrice_ is expected to be 18 decimal fixed point number in WEI
     */
    function pushTargetReport(uint256 currentMarketPrice_) external onlyOwner
    {
        //
        currentMarketPrice = currentMarketPrice_;
    }

    /**
    * @return AggregatedValue: return the reported values.
    *         valid: Boolean indicating an aggregated value was computed successfully.
    */
    function getData()
        public
        view
        returns (uint256, bool)
    {
        
        return (currentMarketPrice, true);
    }

}

pragma solidity ^0.4.24;

/**
 * @title Median Oracle
 *
 * @notice Provides a value onchain that's aggregated from a whitelisted set of
 *         providers.
 */
contract MarketPriceOracle is Ownable {
    
    uint256 public currentMarketPrice;
    /**
     * @notice Pushes a targetPrice
     * @param currentMarketPrice_ is expected to be 18 decimal fixed point number in WEI
     */
    function pushMarketReport(uint256 currentMarketPrice_) external onlyOwner
    {
        //
        currentMarketPrice = currentMarketPrice_;
    }

    /**
    * @return AggregatedValue: return the reported values.
    *         valid: Boolean indicating an aggregated value was computed successfully.
    */
    function getData()
        public
        view
        returns (uint256, bool)
    {
        return (currentMarketPrice, true);
    }

}

/**
 * @title uFragments Monetary Supply Policy
 * @dev This is an implementation of the uFragments Ideal Money protocol.
 *      uFragments operates symmetrically on expansion and contraction. It will both split and
 *      combine coins to maintain a stable unit price.
 *
 *      This component regulates the token supply of the uFragments ERC20 token in response to
 *      market oracles.
 */
contract UFragmentsPolicy is Ownable, TargetPriceOracle, MarketPriceOracle, OracleBase {
    using SafeMath for uint256;
    using SafeMathInt for int256;
    using UInt256Lib for uint256;

    event LogRebase(
        uint256 indexed epoch,
        uint256 exchangeRate,
        uint256 cpi,
        int256 requestedSupplyAdjustment,
        uint256 timestampSec
    );

    // If the current exchange rate is within this fractional distance from the target, no supply
    // update is performed. Fixed point number--same format as the rate.
    // (ie) abs(rate - targetRate) / targetRate < deviationThreshold, then no supply change.
    // DECIMALS Fixed point number.
    uint256 public deviationThreshold;
    
    // The rebase lag parameter, used to dampen the applied supply adjustment by 1 / rebaseLag
    // Check setRebaseLag comments for more details.
    // Natural number, no decimal places.
    uint256 public rebaseLag;

    // More than this much time must pass between rebase operations.
    uint256 public minRebaseTimeIntervalSec;

    // Block timestamp of last rebase operation
    uint256 public lastRebaseTimestampSec;

    // The rebase window begins this many seconds into the minRebaseTimeInterval period.
    // For example if minRebaseTimeInterval is 24hrs, it represents the time of day in seconds.
    uint256 public rebaseWindowOffsetSec;

    // The length of the time window where a rebase operation is allowed to execute, in seconds.
    uint256 public rebaseWindowLengthSec;

    // The number of rebase cycles since inception
    uint256 public epoch;

    uint256 private constant DECIMALS = 18;

    // Due to the expression in computeSupplyDelta(), MAX_RATE * MAX_SUPPLY must fit into an int256.
    // Both are 18 decimals fixed point numbers.
    uint256 private constant MAX_RATE = 10**6 * 10**DECIMALS;
    // MAX_SUPPLY = MAX_INT256 / MAX_RATE
    uint256 private constant MAX_SUPPLY = ~(uint256(1) << 255) / MAX_RATE;
    
    /**
     * @notice Initiates a new rebase operation, provided the minimum time period has elapsed.
     *
     * @dev The supply adjustment equals (_totalSupply * DeviationFromTargetRate) / rebaseLag
     *      Where DeviationFromTargetRate is (MarketOracleRate - targetRate) / targetRate
     *      and targetRate is TargetPriceOracleRate / baseCpi
     */
     
    // uint256 public supplyDelta;
    // uint256 public exchangeRate;
    // int256 public targetRate ;
    uint256 public priceChange ;
    
    int256 public supplyDeltaNew;

    function policyRebase() internal  {
        require(inRebaseWindow());

        // This comparison also ensures there is no reentrancy.
        require(lastRebaseTimestampSec.add(minRebaseTimeIntervalSec) < now);

        // Snap the rebase time to the start of this window.
        lastRebaseTimestampSec = now.sub(
             now.mod(minRebaseTimeIntervalSec)).add(rebaseWindowOffsetSec);

        epoch = epoch.add(1);

        uint256 targetRate;
        bool targetRateValid;
        (targetRate, targetRateValid) = TargetPriceOracle.getData();
        require(targetRateValid);
        
        uint256 exchangeRate;
        bool rateValid;
        
        (exchangeRate, rateValid) = MarketPriceOracle.getData();                     // fetch exchange rate in ETH
        require(rateValid);

        if (exchangeRate > MAX_RATE) {
            exchangeRate = MAX_RATE;
        }
        
        //
        int256 supplyDelta = computeSupplyDelta(exchangeRate, targetRate);

        // Apply the Dampening factor.
        supplyDelta = supplyDelta.div(rebaseLag.toInt256Safe());

        if (supplyDelta > 0 && OracleBase.totalSupply().add(uint256(supplyDelta)) > MAX_SUPPLY) {
            supplyDelta = (MAX_SUPPLY.sub(OracleBase.totalSupply())).toInt256Safe();
        }

        uint256 supplyAfterRebase = OracleBase.rebase(epoch, supplyDelta);
        assert(supplyAfterRebase <= MAX_SUPPLY);
        emit LogRebase(epoch, exchangeRate, targetRate, supplyDelta, now);
    }

    /**
     * @notice Sets the deviation threshold fraction. If the exchange rate given by the market
     *         oracle is within this fractional distance from the targetRate, then no supply
     *         modifications are made. DECIMALS fixed point number.
     * @param deviationThreshold_ The new exchange rate threshold fraction.
     */
    function setDeviationThreshold(uint256 deviationThreshold_)
        external
        onlyOwner
    {
        deviationThreshold = deviationThreshold_;
    }

    /**
     * @notice Sets the rebase lag parameter.
               It is used to dampen the applied supply adjustment by 1 / rebaseLag
               If the rebase lag R, equals 1, the smallest value for R, then the full supply
               correction is applied on each rebase cycle.
               If it is greater than 1, then a correction of 1/R of is applied on each rebase.
     * @param rebaseLag_ The new rebase lag parameter.
     */
    function setRebaseLag(uint256 rebaseLag_)
        external
        onlyOwner
    {
        require(rebaseLag_ > 0);
        rebaseLag = rebaseLag_;
    }

    /**
     * @notice Sets the parameters which control the timing and frequency of
     *         rebase operations.
     *         a) the minimum time period that must elapse between rebase cycles.
     *         b) the rebase window offset parameter.
     *         c) the rebase window length parameter.
     * @param minRebaseTimeIntervalSec_ More than this much time must pass between rebase
     *        operations, in seconds.
     * @param rebaseWindowOffsetSec_ The number of seconds from the beginning of
              the rebase interval, where the rebase window begins.
     * @param rebaseWindowLengthSec_ The length of the rebase window in seconds.
     */
    function setRebaseTimingParameters(
        uint256 minRebaseTimeIntervalSec_,
        uint256 rebaseWindowOffsetSec_,
        uint256 rebaseWindowLengthSec_)
        external
        onlyOwner
    {
        require(minRebaseTimeIntervalSec_ > 0);
        require(rebaseWindowOffsetSec_ < minRebaseTimeIntervalSec_);

        minRebaseTimeIntervalSec = minRebaseTimeIntervalSec_;
        rebaseWindowOffsetSec = rebaseWindowOffsetSec_;
        rebaseWindowLengthSec = rebaseWindowLengthSec_;
    }

    /**
     * @dev ZOS upgradable contract initialization method.
     *      It is called at the time of contract creation to invoke parent class initializers and
     *      initialize the contract's state variables.
     */
    function policyInitialize(address _owner)
        internal
    {
        // deviationThreshold       =   0.05e18 = 5e16
        deviationThreshold          =   25 * 10 ** (DECIMALS-3);        // 50000000000000000
        rebaseLag                   =   10;
        minRebaseTimeIntervalSec    =   1 days;
        rebaseWindowOffsetSec       =   72000;                          // 8PM UTC
        rebaseWindowLengthSec       =   15 minutes;
        lastRebaseTimestampSec      =   0;
        epoch = 0;
        OracleBase.tokenInitialize(_owner);
    }

    /**
     * @return If the latest block timestamp is within the rebase time window it, returns true.
     *         Otherwise, returns false.
     */
    function inRebaseWindow() public view returns (bool) {
        return (
            now.mod(minRebaseTimeIntervalSec) >= rebaseWindowOffsetSec &&
            now.mod(minRebaseTimeIntervalSec) < (rebaseWindowOffsetSec.add(rebaseWindowLengthSec))
        );
    }

    /**
     * @return Computes the total supply adjustment in response to the exchange rate
     *         and the targetRate.
     */
    function computeSupplyDelta(uint256 rate, uint256 targetRate)
        private
        view
        returns (int256)
    {
        if (withinDeviationThreshold(rate, targetRate)) {
            return 0;
        }

        // supplyDelta = totalSupply * (rate - targetRate) / targetRate
        int256 targetRateSigned = targetRate.toInt256Safe();
        return OracleBase.totalSupply().toInt256Safe()
            .mul(rate.toInt256Safe().sub(targetRateSigned))
            .div(targetRateSigned);
    }

    /**
     * @param rate The current exchange rate, an 18 decimal fixed point number.
     * @param targetRate The target exchange rate, an 18 decimal fixed point number.
     * @return If the rate is within the deviation threshold from the target rate, returns true.
     *         Otherwise, returns false.
     */
    function withinDeviationThreshold(uint256 rate, uint256 targetRate)
        private
        view
        returns (bool)
    {
        uint256 absoluteDeviationThreshold = targetRate.mul(deviationThreshold)
            .div(10 ** DECIMALS);

        return (rate >= targetRate && rate.sub(targetRate) < absoluteDeviationThreshold)
            || (rate < targetRate && targetRate.sub(rate) < absoluteDeviationThreshold);
    }
    
}

/**
 * @title Orchestrator
 * @notice The orchestrator is the main entry point for rebase operations. It coordinates the policy
 * actions with external consumers.
 */
contract Orchestrator is Ownable, UFragmentsPolicy {

    struct Transaction {
        bool enabled;
        address destination;
        bytes data;
    }

    event TransactionFailed(address indexed destination, uint index, bytes data);

    // Stable ordering is not guaranteed.
    Transaction[] public transactions;

    constructor() public {
        Ownable.initialize(msg.sender);
        UFragmentsPolicy.policyInitialize(msg.sender);
    }

    /**
     * @notice Main entry point to initiate a rebase operation.
     *         The Orchestrator calls rebase on the policy and notifies downstream applications.
     *         Contracts are guarded from calling, to avoid flash loan attacks on liquidity
     *         providers.
     *         If a transaction in the transaction list reverts, it is swallowed and the remaining
     *         transactions are executed.
     */
    function rebase()
        external
    {
        require(msg.sender == tx.origin);  // solhint-disable-line avoid-tx-origin

        UFragmentsPolicy.policyRebase();

        for (uint i = 0; i < transactions.length; i++) {
            Transaction storage t = transactions[i];
            if (t.enabled) {
                bool result =
                    externalCall(t.destination, t.data);
                if (!result) {
                    emit TransactionFailed(t.destination, i, t.data);
                    revert("Transaction Failed");
                }
            }
        }
    }

    /**
     * @notice Adds a transaction that gets called for a downstream receiver of rebases
     * @param destination Address of contract destination
     * @param data Transaction data payload
     */
    function addTransaction(address destination, bytes data)
        external
        onlyOwner
    {
        transactions.push(Transaction({
            enabled: true,
            destination: destination,
            data: data
        }));
    }

    /**
     * @param index Index of transaction to remove.
     *              Transaction ordering may have changed since adding.
     */
    function removeTransaction(uint index)
        external
        onlyOwner
    {
        require(index < transactions.length, "index out of bounds");

        if (index < transactions.length - 1) {
            transactions[index] = transactions[transactions.length - 1];
        }

        transactions.length--;
    }

    /**
     * @param index Index of transaction. Transaction ordering may have changed since adding.
     * @param enabled True for enabled, false for disabled.
     */
    function setTransactionEnabled(uint index, bool enabled)
        external
        onlyOwner
    {
        require(index < transactions.length, "index must be in range of stored tx list");
        transactions[index].enabled = enabled;
    }

    /**
     * @return Number of transactions, both enabled and disabled, in transactions list.
     */
    function transactionsSize()
        external
        view
        returns (uint256)
    {
        return transactions.length;
    }

    /**
     * @dev wrapper to call the encoded transactions on downstream consumers.
     * @param destination Address of destination contract.
     * @param data The encoded data payload.
     * @return True on success
     */
    function externalCall(address destination, bytes data)
        internal
        returns (bool)
    {
        bool result;
        assembly {  // solhint-disable-line no-inline-assembly
            // "Allocate" memory for output
            // (0x40 is where "free memory" pointer is stored by convention)
            let outputAddress := mload(0x40)

            // First 32 bytes are the padded length of data, so exclude that
            let dataAddress := add(data, 32)

            result := call(
                // 34710 is the value that solidity is currently emitting
                // It includes callGas (700) + callVeryLow (3, to pay for SUB)
                // + callValueTransferGas (9000) + callNewAccountGas
                // (25000, in case the destination address does not exist and needs creating)
                sub(gas, 34710),


                destination,
                0, // transfer value in wei
                dataAddress,
                mload(data),  // Size of the input, in bytes. Stored in position 0 of the array.
                outputAddress,
                0  // Output is ignored, therefore the output size is zero
            )
        }
        return result;
    }
}

Contract Security Audit

Contract ABI

[{"constant":true,"inputs":[],"name":"minRebaseTimeIntervalSec","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"name","outputs":[{"name":"","type":"string"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"name":"spender","type":"address"},{"name":"value","type":"uint256"}],"name":"approve","outputs":[{"name":"","type":"bool"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[],"name":"currentMarketPrice","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"inRebaseWindow","outputs":[{"name":"","type":"bool"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"name":"destination","type":"address"},{"name":"data","type":"bytes"}],"name":"addTransaction","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"name":"name","type":"string"},{"name":"symbol","type":"string"},{"name":"decimals","type":"uint8"}],"name":"initialize","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"name":"minRebaseTimeIntervalSec_","type":"uint256"},{"name":"rebaseWindowOffsetSec_","type":"uint256"},{"name":"rebaseWindowLengthSec_","type":"uint256"}],"name":"setRebaseTimingParameters","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"name":"currentMarketPrice_","type":"uint256"}],"name":"pushTargetReport","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[],"name":"totalSupply","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"name":"rebaseLag_","type":"uint256"}],"name":"setRebaseLag","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"name":"from","type":"address"},{"name":"to","type":"address"},{"name":"value","type":"uint256"}],"name":"transferFrom","outputs":[{"name":"","type":"bool"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[],"name":"decimals","outputs":[{"name":"","type":"uint8"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"name":"spender","type":"address"},{"name":"addedValue","type":"uint256"}],"name":"increaseAllowance","outputs":[{"name":"","type":"bool"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[],"name":"lastRebaseTimestampSec","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"getData","outputs":[{"name":"","type":"uint256"},{"name":"","type":"bool"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"name":"currentMarketPrice_","type":"uint256"}],"name":"pushMarketReport","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"name":"index","type":"uint256"}],"name":"removeTransaction","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"name":"deviationThreshold_","type":"uint256"}],"name":"setDeviationThreshold","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[],"name":"rebaseLag","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"name":"index","type":"uint256"},{"name":"enabled","type":"bool"}],"name":"setTransactionEnabled","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[],"name":"rebaseWindowOffsetSec","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[{"name":"who","type":"address"}],"name":"balanceOf","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[],"name":"renounceOwnership","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[],"name":"priceChange","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"owner","outputs":[{"name":"","type":"address"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"isOwner","outputs":[{"name":"","type":"bool"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"epoch","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"transactionsSize","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"supplyDeltaNew","outputs":[{"name":"","type":"int256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"rebaseWindowLengthSec","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"symbol","outputs":[{"name":"","type":"string"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"name":"OBEthUniswapPair_","type":"address"}],"name":"setOBEthPairAddress","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[{"name":"","type":"uint256"}],"name":"transactions","outputs":[{"name":"enabled","type":"bool"},{"name":"destination","type":"address"},{"name":"data","type":"bytes"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"name":"spender","type":"address"},{"name":"subtractedValue","type":"uint256"}],"name":"decreaseAllowance","outputs":[{"name":"","type":"bool"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"name":"to","type":"address"},{"name":"value","type":"uint256"}],"name":"transfer","outputs":[{"name":"","type":"bool"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[],"name":"rebase","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"name":"sender","type":"address"}],"name":"initialize","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[],"name":"deviationThreshold","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[{"name":"owner_","type":"address"},{"name":"spender","type":"address"}],"name":"allowance","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"_OBEthUniswapPair","outputs":[{"name":"","type":"address"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"inputs":[],"payable":false,"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"name":"destination","type":"address"},{"indexed":false,"name":"index","type":"uint256"},{"indexed":false,"name":"data","type":"bytes"}],"name":"TransactionFailed","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"name":"epoch","type":"uint256"},{"indexed":false,"name":"exchangeRate","type":"uint256"},{"indexed":false,"name":"cpi","type":"uint256"},{"indexed":false,"name":"requestedSupplyAdjustment","type":"int256"},{"indexed":false,"name":"timestampSec","type":"uint256"}],"name":"LogRebase","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"name":"epoch","type":"uint256"},{"indexed":false,"name":"totalSupply","type":"uint256"}],"name":"LogRebase","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"name":"monetaryPolicy","type":"address"}],"name":"LogMonetaryPolicyUpdated","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"name":"OBEthUniswapPair","type":"address"}],"name":"LogOBEthPairAdded","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"name":"previousOwner","type":"address"}],"name":"OwnershipRenounced","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"name":"previousOwner","type":"address"},{"indexed":true,"name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"name":"from","type":"address"},{"indexed":true,"name":"to","type":"address"},{"indexed":false,"name":"value","type":"uint256"}],"name":"Transfer","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"name":"owner","type":"address"},{"indexed":true,"name":"spender","type":"address"},{"indexed":false,"name":"value","type":"uint256"}],"name":"Approval","type":"event"}]

60806040523480156200001157600080fd5b506200003133620000566401000000000262002738176401000000009004565b6200005033620001cc6401000000000262003471176401000000009004565b62000696565b60008060019054906101000a900460ff16806200008857506200008762000234640100000000026401000000009004565b5b80620000a057506000809054906101000a900460ff16155b151562000115576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252601c8152602001807f436f6e747261637420616c726561647920696e697469616c697a65640000000081525060200191505060405180910390fd5b600060019054906101000a900460ff16159050801562000165576001600060016101000a81548160ff02191690831515021790555060016000806101000a81548160ff0219169083151502179055505b81606860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508015620001c85760008060016101000a81548160ff0219169083151502179055505b5050565b6003601203600a0a60190260a381905550600a60a4819055506201518060a5819055506201194060a78190555061038460a881905550600060a681905550600060a98190555062000231816200024b64010000000002620034c3176401000000009004565b50565b6000806000309150813b9050600081149250505090565b620002d76040805190810160405280600a81526020017f4f5241434c4542415345000000000000000000000000000000000000000000008152506040805190810160405280600281526020017f4f4200000000000000000000000000000000000000000000000000000000000081525060096200044c64010000000002620010fd176401000000009004565b620002f681620000566401000000000262002738176401000000009004565b6000609d60006101000a81548160ff0219169083151502179055506000609d60016101000a81548160ff0219169083151502179055506009600a0a620eb98802609e819055506009600a0a620eb988026000198115156200035357fe5b066000190360a160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550620003db609e546009600a0a620eb98802600019811515620003b957fe5b0660001903620005d06401000000000262002a13179091906401000000009004565b609f819055508073ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef609e546040518082815260200191505060405180910390a350565b60008060019054906101000a900460ff16806200047e57506200047d62000234640100000000026401000000009004565b5b806200049657506000809054906101000a900460ff16155b15156200050b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252601c8152602001807f436f6e747261637420616c726561647920696e697469616c697a65640000000081525060200191505060405180910390fd5b600060019054906101000a900460ff1615905080156200055b576001600060016101000a81548160ff02191690831515021790555060016000806101000a81548160ff0219169083151502179055505b836033908051906020019062000573929190620005e7565b5082603490805190602001906200058c929190620005e7565b5081603560006101000a81548160ff021916908360ff1602179055508015620005ca5760008060016101000a81548160ff0219169083151502179055505b50505050565b60008183811515620005de57fe5b04905092915050565b828054600181600116156101000203166002900490600052602060002090601f016020900481019282601f106200062a57805160ff19168380011785556200065b565b828001600101855582156200065b579182015b828111156200065a5782518255916020019190600101906200063d565b5b5090506200066a91906200066e565b5090565b6200069391905b808211156200068f57600081600090555060010162000675565b5090565b90565b6136b280620006a66000396000f300608060405260043610610204576000357c0100000000000000000000000000000000000000000000000000000000900463ffffffff168063021018991461020957806306fdde0314610234578063095ea7b3146102c4578063098956ee14610329578063111d049814610354578063126e19be146103835780631624f6c6146103de57806316250fd41461049a57806316becdf8146104db57806318160ddd1461050857806320ce83891461053357806323b872dd14610560578063313ce567146105e557806339509351146106165780633a93069b1461067b5780633bc5de30146106a65780633da3b3e0146106dc57806346c3bd1f1461070957806353a15edc1461073657806363f6d4c8146107635780636e9dde991461078e5780637052b902146107c757806370a08231146107f2578063715018a61461084957806371d9ffce146108605780638da5cb5b1461088b5780638f32d59b146108e2578063900cf0cf1461091157806391d4ec181461093c57806391de3da0146109675780639466120f1461099257806395d89b41146109bd57806397b937c214610a4d5780639ace38c214610a90578063a457c2d714610b74578063a9059cbb14610bd9578063af14052c14610c3e578063c4d66de814610c55578063d94ad83714610c98578063dd62ed3e14610cc3578063e68e2c9414610d3a578063f2fde38b14610d91575b600080fd5b34801561021557600080fd5b5061021e610dd4565b6040518082815260200191505060405180910390f35b34801561024057600080fd5b50610249610dda565b6040518080602001828103825283818151815260200191508051906020019080838360005b8381101561028957808201518184015260208101905061026e565b50505050905090810190601f1680156102b65780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b3480156102d057600080fd5b5061030f600480360381019080803573ffffffffffffffffffffffffffffffffffffffff16906020019092919080359060200190929190505050610e7c565b604051808215151515815260200191505060405180910390f35b34801561033557600080fd5b5061033e610f6e565b6040518082815260200191505060405180910390f35b34801561036057600080fd5b50610369610f74565b604051808215151515815260200191505060405180910390f35b34801561038f57600080fd5b506103dc600480360381019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190803590602001908201803590602001919091929391929390505050610fca565b005b3480156103ea57600080fd5b50610498600480360381019080803590602001908201803590602001908080601f0160208091040260200160405190810160405280939291908181526020018383808284378201915050505050509192919290803590602001908201803590602001908080601f0160208091040260200160405190810160405280939291908181526020018383808284378201915050505050509192919290803560ff1690602001909291905050506110fd565b005b3480156104a657600080fd5b506104d9600480360381019080803590602001909291908035906020019092919080359060200190929190505050611267565b005b3480156104e757600080fd5b50610506600480360381019080803590602001909291905050506112b1565b005b34801561051457600080fd5b5061051d6112ce565b6040518082815260200191505060405180910390f35b34801561053f57600080fd5b5061055e600480360381019080803590602001909291905050506112d8565b005b34801561056c57600080fd5b506105cb600480360381019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190803573ffffffffffffffffffffffffffffffffffffffff16906020019092919080359060200190929190505050611304565b604051808215151515815260200191505060405180910390f35b3480156105f157600080fd5b506105fa611641565b604051808260ff1660ff16815260200191505060405180910390f35b34801561062257600080fd5b50610661600480360381019080803573ffffffffffffffffffffffffffffffffffffffff16906020019092919080359060200190929190505050611658565b604051808215151515815260200191505060405180910390f35b34801561068757600080fd5b50610690611854565b6040518082815260200191505060405180910390f35b3480156106b257600080fd5b506106bb61185a565b60405180838152602001821515151581526020019250505060405180910390f35b3480156106e857600080fd5b506107076004803603810190808035906020019092919050505061186a565b005b34801561071557600080fd5b5061073460048036038101908080359060200190929190505050611887565b005b34801561074257600080fd5b5061076160048036038101908080359060200190929190505050611a41565b005b34801561076f57600080fd5b50610778611a5e565b6040518082815260200191505060405180910390f35b34801561079a57600080fd5b506107c560048036038101908080359060200190929190803515159060200190929190505050611a64565b005b3480156107d357600080fd5b506107dc611b55565b6040518082815260200191505060405180910390f35b3480156107fe57600080fd5b50610833600480360381019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190505050611b5b565b6040518082815260200191505060405180910390f35b34801561085557600080fd5b5061085e611bb8565b005b34801561086c57600080fd5b50610875611c74565b6040518082815260200191505060405180910390f35b34801561089757600080fd5b506108a0611c7a565b604051808273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200191505060405180910390f35b3480156108ee57600080fd5b506108f7611ca4565b604051808215151515815260200191505060405180910390f35b34801561091d57600080fd5b50610926611cfc565b6040518082815260200191505060405180910390f35b34801561094857600080fd5b50610951611d02565b6040518082815260200191505060405180910390f35b34801561097357600080fd5b5061097c611d0f565b6040518082815260200191505060405180910390f35b34801561099e57600080fd5b506109a7611d15565b6040518082815260200191505060405180910390f35b3480156109c957600080fd5b506109d2611d1b565b6040518080602001828103825283818151815260200191508051906020019080838360005b83811015610a125780820151818401526020810190506109f7565b50505050905090810190601f168015610a3f5780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b348015610a5957600080fd5b50610a8e600480360381019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190505050611dbd565b005b348015610a9c57600080fd5b50610abb60048036038101908080359060200190929190505050611e99565b60405180841515151581526020018373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200180602001828103825283818151815260200191508051906020019080838360005b83811015610b37578082015181840152602081019050610b1c565b50505050905090810190601f168015610b645780820380516001836020036101000a031916815260200191505b5094505050505060405180910390f35b348015610b8057600080fd5b50610bbf600480360381019080803573ffffffffffffffffffffffffffffffffffffffff16906020019092919080359060200190929190505050611f97565b604051808215151515815260200191505060405180910390f35b348015610be557600080fd5b50610c24600480360381019080803573ffffffffffffffffffffffffffffffffffffffff16906020019092919080359060200190929190505050612229565b604051808215151515815260200191505060405180910390f35b348015610c4a57600080fd5b50610c53612456565b005b348015610c6157600080fd5b50610c96600480360381019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190505050612738565b005b348015610ca457600080fd5b50610cad612898565b6040518082815260200191505060405180910390f35b348015610ccf57600080fd5b50610d24600480360381019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190803573ffffffffffffffffffffffffffffffffffffffff16906020019092919050505061289e565b6040518082815260200191505060405180910390f35b348015610d4657600080fd5b50610d4f612925565b604051808273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200191505060405180910390f35b348015610d9d57600080fd5b50610dd2600480360381019080803573ffffffffffffffffffffffffffffffffffffffff16906020019092919050505061294b565b005b60a55481565b606060338054600181600116156101000203166002900480601f016020809104026020016040519081016040528092919081815260200182805460018160011615610100020316600290048015610e725780601f10610e4757610100808354040283529160200191610e72565b820191906000526020600020905b815481529060010190602001808311610e5557829003601f168201915b5050505050905090565b60008160a260003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508273ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925846040518082815260200191505060405180910390a36001905092915050565b609c5481565b600060a754610f8e60a5544261296a90919063ffffffff16565b10158015610fc55750610fae60a85460a75461298f90919063ffffffff16565b610fc360a5544261296a90919063ffffffff16565b105b905090565b610fd2611ca4565b1515610fdd57600080fd5b60ac6060604051908101604052806001151581526020018573ffffffffffffffffffffffffffffffffffffffff16815260200184848080601f0160208091040260200160405190810160405280939291908181526020018383808284378201915050505050508152509080600181540180825580915050906001820390600052602060002090600202016000909192909190915060008201518160000160006101000a81548160ff02191690831515021790555060208201518160000160016101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555060408201518160010190805190602001906110f49291906131e1565b50505050505050565b60008060019054906101000a900460ff168061111d575061111c6129ab565b5b8061113457506000809054906101000a900460ff16155b15156111a8576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252601c8152602001807f436f6e747261637420616c726561647920696e697469616c697a65640000000081525060200191505060405180910390fd5b600060019054906101000a900460ff1615905080156111f7576001600060016101000a81548160ff02191690831515021790555060016000806101000a81548160ff0219169083151502179055505b836033908051906020019061120d929190613261565b508260349080519060200190611224929190613261565b5081603560006101000a81548160ff021916908360ff16021790555080156112615760008060016101000a81548160ff0219169083151502179055505b50505050565b61126f611ca4565b151561127a57600080fd5b60008311151561128957600080fd5b828210151561129757600080fd5b8260a5819055508160a7819055508060a881905550505050565b6112b9611ca4565b15156112c457600080fd5b80609b8190555050565b6000609e54905090565b6112e0611ca4565b15156112eb57600080fd5b6000811115156112fa57600080fd5b8060a48190555050565b60008083600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415151561134457600080fd5b3073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415151561137f57600080fd5b61140e8460a260008973ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546129c290919063ffffffff16565b60a260008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055506114a3609f54856129db90919063ffffffff16565b91506114f78260a160008973ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546129c290919063ffffffff16565b60a160008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555061158c8260a160008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205461298f90919063ffffffff16565b60a160008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508473ffffffffffffffffffffffffffffffffffffffff168673ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef866040518082815260200191505060405180910390a36001925050509392505050565b6000603560009054906101000a900460ff16905090565b60006116e98260a260003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205461298f90919063ffffffff16565b60a260003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508273ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560a260003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546040518082815260200191505060405180910390a36001905092915050565b60a65481565b600080609c546001915091509091565b611872611ca4565b151561187d57600080fd5b80609c8190555050565b61188f611ca4565b151561189a57600080fd5b60ac8054905081101515611916576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260138152602001807f696e646578206f7574206f6620626f756e64730000000000000000000000000081525060200191505060405180910390fd5b600160ac8054905003811015611a285760ac600160ac805490500381548110151561193d57fe5b906000526020600020906002020160ac8281548110151561195a57fe5b90600052602060002090600202016000820160009054906101000a900460ff168160000160006101000a81548160ff0219169083151502179055506000820160019054906101000a900473ffffffffffffffffffffffffffffffffffffffff168160000160016101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555060018201816001019080546001816001161561010002031660029004611a239291906132e1565b509050505b60ac805480919060019003611a3d9190613368565b5050565b611a49611ca4565b1515611a5457600080fd5b8060a38190555050565b60a45481565b611a6c611ca4565b1515611a7757600080fd5b60ac8054905082101515611b19576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260288152602001807f696e646578206d75737420626520696e2072616e6765206f662073746f72656481526020017f207478206c69737400000000000000000000000000000000000000000000000081525060400191505060405180910390fd5b8060ac83815481101515611b2957fe5b906000526020600020906002020160000160006101000a81548160ff0219169083151502179055505050565b60a75481565b6000611bb1609f5460a160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054612a1390919063ffffffff16565b9050919050565b611bc0611ca4565b1515611bcb57600080fd5b606860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff167ff8df31144d9c2f0f6b59d69b8b98abd5459d07f2742c4df920b25aae33c6482060405160405180910390a26000606860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550565b60aa5481565b6000606860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b6000606860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff1614905090565b60a95481565b600060ac80549050905090565b60ab5481565b60a85481565b606060348054600181600116156101000203166002900480601f016020809104026020016040519081016040528092919081815260200182805460018160011615610100020316600290048015611db35780601f10611d8857610100808354040283529160200191611db3565b820191906000526020600020905b815481529060010190602001808311611d9657829003601f168201915b5050505050905090565b611dc5611ca4565b1515611dd057600080fd5b8060a060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055507fb79dc7804ae87ece27b988fcf64ed6d8b4e4a86e6576eaf3ecff034306bd810f60a060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16604051808273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200191505060405180910390a150565b60ac81815481101515611ea857fe5b90600052602060002090600202016000915090508060000160009054906101000a900460ff16908060000160019054906101000a900473ffffffffffffffffffffffffffffffffffffffff1690806001018054600181600116156101000203166002900480601f016020809104026020016040519081016040528092919081815260200182805460018160011615610100020316600290048015611f8d5780601f10611f6257610100808354040283529160200191611f8d565b820191906000526020600020905b815481529060010190602001808311611f7057829003601f168201915b5050505050905083565b60008060a260003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905080831015156120a957600060a260003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555061213d565b6120bc83826129c290919063ffffffff16565b60a260003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055505b8373ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560a260003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546040518082815260200191505060405180910390a3600191505092915050565b60008083600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415151561226957600080fd5b3073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16141515156122a457600080fd5b6122b9609f54856129db90919063ffffffff16565b915061230d8260a160003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546129c290919063ffffffff16565b60a160003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055506123a28260a160008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205461298f90919063ffffffff16565b60a160008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508473ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef866040518082815260200191505060405180910390a360019250505092915050565b60008060003273ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff1614151561249557600080fd5b61249d612a29565b600092505b60ac805490508310156127335760ac838154811015156124be57fe5b906000526020600020906002020191508160000160009054906101000a900460ff1615612726576125af8260000160019054906101000a900473ffffffffffffffffffffffffffffffffffffffff16836001018054600181600116156101000203166002900480601f0160208091040260200160405190810160405280929190818152602001828054600181600116156101000203166002900480156125a55780601f1061257a576101008083540402835291602001916125a5565b820191906000526020600020905b81548152906001019060200180831161258857829003601f168201915b5050505050612c64565b9050801515612725578160000160019054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff167f8091ecaaa54ebb82e02d36c2c336528e0fcb9b3430fc1291ac88295032b9c263848460010160405180838152602001806020018281038252838181546001816001161561010002031660029004815260200191508054600181600116156101000203166002900480156126a85780601f1061267d576101008083540402835291602001916126a8565b820191906000526020600020905b81548152906001019060200180831161268b57829003601f168201915b5050935050505060405180910390a26040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260128152602001807f5472616e73616374696f6e204661696c6564000000000000000000000000000081525060200191505060405180910390fd5b5b82806001019350506124a2565b505050565b60008060019054906101000a900460ff168061275857506127576129ab565b5b8061276f57506000809054906101000a900460ff16155b15156127e3576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252601c8152602001807f436f6e747261637420616c726561647920696e697469616c697a65640000000081525060200191505060405180910390fd5b600060019054906101000a900460ff161590508015612832576001600060016101000a81548160ff02191690831515021790555060016000806101000a81548160ff0219169083151502179055505b81606860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555080156128945760008060016101000a81548160ff0219169083151502179055505b5050565b60a35481565b600060a260008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b60a060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b612953611ca4565b151561295e57600080fd5b61296781612c8b565b50565b600080821415151561297b57600080fd5b818381151561298657fe5b06905092915050565b600081830190508281101515156129a257fe5b80905092915050565b6000806000309150813b9050600081149250505090565b60008282111515156129d057fe5b818303905092915050565b6000808314156129ee5760009050612a0d565b81830290508183828115156129ff57fe5b04141515612a0957fe5b8090505b92915050565b60008183811515612a2057fe5b04905092915050565b600080600080600080612a3a610f74565b1515612a4557600080fd5b42612a5d60a55460a65461298f90919063ffffffff16565b101515612a6957600080fd5b612aa460a754612a96612a8760a5544261296a90919063ffffffff16565b426129c290919063ffffffff16565b61298f90919063ffffffff16565b60a681905550612ac0600160a95461298f90919063ffffffff16565b60a981905550612ace612d87565b8096508197505050841515612ae257600080fd5b612aea61185a565b8094508195505050821515612afe57600080fd5b6012600a0a620f424002841115612b1c576012600a0a620f42400293505b612b268487612d97565b9150612b45612b3660a454612e15565b83612e3790919063ffffffff16565b9150600082138015612b8c57506012600a0a620f42400260ff60019060020a0219811515612b6f57fe5b04612b8a83612b7c6112ce565b61298f90919063ffffffff16565b115b15612bd357612bd0612bcb612b9f6112ce565b6012600a0a620f42400260ff60019060020a0219811515612bbc57fe5b046129c290919063ffffffff16565b612e15565b91505b612bdf60a95483612e8f565b90506012600a0a620f42400260ff60019060020a0219811515612bfe57fe5b048111151515612c0a57fe5b60a9547f41d948a7f29cc695f5d4b3ec147f766bffa165ddd317470fbe05c86d0a9c3e04858885426040518085815260200184815260200183815260200182815260200194505050505060405180910390a2505050505050565b6000806040516020840160008286518360008a6187965a03f1925050508091505092915050565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614151515612cc757600080fd5b8073ffffffffffffffffffffffffffffffffffffffff16606860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a380606860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b600080609b546001915091509091565b600080612da4848461307d565b15612db25760009150612e0e565b612dbb83612e15565b9050612e0b81612dfd612ddf84612dd189612e15565b6130fe90919063ffffffff16565b612def612dea6112ce565b612e15565b61314290919063ffffffff16565b612e3790919063ffffffff16565b91505b5092915050565b600060ff60019060020a02198211151515612e2f57600080fd5b819050919050565b60007fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82141580612e70575060ff60019060020a028314155b1515612e7b57600080fd5b8183811515612e8657fe5b05905092915050565b600080821415612edd57827f72725a3b1e5bd622d6bcd1339bb31279c351abe8f541ac7fd320f24e1b1641f2609e546040518082815260200191505060405180910390a2609e549050613077565b6000821215612f0e57612f03612ef2836131ae565b609e546129c290919063ffffffff16565b609e81905550612f2a565b612f2382609e5461298f90919063ffffffff16565b609e819055505b6000196fffffffffffffffffffffffffffffffff16609e541115612f64576000196fffffffffffffffffffffffffffffffff16609e819055505b612f93609e546009600a0a620eb98802600019811515612f8057fe5b0660001903612a1390919063ffffffff16565b609f81905550827f72725a3b1e5bd622d6bcd1339bb31279c351abe8f541ac7fd320f24e1b1641f2609e546040518082815260200191505060405180910390a260a060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663fff6cae96040518163ffffffff167c0100000000000000000000000000000000000000000000000000000000028152600401600060405180830381600087803b15801561305957600080fd5b505af115801561306d573d6000803e3d6000fd5b50505050609e5490505b92915050565b6000806130ab6012600a0a61309d60a354866129db90919063ffffffff16565b612a1390919063ffffffff16565b90508284101580156130ce5750806130cc84866129c290919063ffffffff16565b105b806130f5575082841080156130f45750806130f285856129c290919063ffffffff16565b105b5b91505092915050565b6000808284039050600083121580156131175750838113155b8061312d575060008312801561312c57508381135b5b151561313857600080fd5b8091505092915050565b600080828402905060ff60019060020a0281141580613175575060ff60019060020a02831660ff60019060020a02851614155b151561318057600080fd5b6000831480613199575083838281151561319657fe5b05145b15156131a457600080fd5b8091505092915050565b600060ff60019060020a0282141515156131c757600080fd5b600082126131d557816131da565b816000035b9050919050565b828054600181600116156101000203166002900490600052602060002090601f016020900481019282601f1061322257805160ff1916838001178555613250565b82800160010185558215613250579182015b8281111561324f578251825591602001919060010190613234565b5b50905061325d919061339a565b5090565b828054600181600116156101000203166002900490600052602060002090601f016020900481019282601f106132a257805160ff19168380011785556132d0565b828001600101855582156132d0579182015b828111156132cf5782518255916020019190600101906132b4565b5b5090506132dd919061339a565b5090565b828054600181600116156101000203166002900490600052602060002090601f016020900481019282601f1061331a5780548555613357565b8280016001018555821561335757600052602060002091601f016020900482015b8281111561335657825482559160010191906001019061333b565b5b509050613364919061339a565b5090565b8154818355818111156133955760020281600202836000526020600020918201910161339491906133bf565b5b505050565b6133bc91905b808211156133b85760008160009055506001016133a0565b5090565b90565b61342691905b8082111561342257600080820160006101000a81549060ff02191690556000820160016101000a81549073ffffffffffffffffffffffffffffffffffffffff02191690556001820160006134199190613429565b506002016133c5565b5090565b90565b50805460018160011615610100020316600290046000825580601f1061344f575061346e565b601f01602090049060005260206000209081019061346d919061339a565b5b50565b6003601203600a0a60190260a381905550600a60a4819055506201518060a5819055506201194060a78190555061038460a881905550600060a681905550600060a9819055506134c0816134c3565b50565b6135396040805190810160405280600a81526020017f4f5241434c4542415345000000000000000000000000000000000000000000008152506040805190810160405280600281526020017f4f4200000000000000000000000000000000000000000000000000000000000081525060096110fd565b61354281612738565b6000609d60006101000a81548160ff0219169083151502179055506000609d60016101000a81548160ff0219169083151502179055506009600a0a620eb98802609e819055506009600a0a620eb9880260001981151561359e57fe5b066000190360a160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550613615609e546009600a0a620eb9880260001981151561360257fe5b0660001903612a1390919063ffffffff16565b609f819055508073ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef609e546040518082815260200191505060405180910390a3505600a165627a7a723058205201df1773cd7e8bfe940b57deebd98559780a64523257cd3888aed7a8f8884e0029

Deployed Bytecode

0x608060405260043610610204576000357c0100000000000000000000000000000000000000000000000000000000900463ffffffff168063021018991461020957806306fdde0314610234578063095ea7b3146102c4578063098956ee14610329578063111d049814610354578063126e19be146103835780631624f6c6146103de57806316250fd41461049a57806316becdf8146104db57806318160ddd1461050857806320ce83891461053357806323b872dd14610560578063313ce567146105e557806339509351146106165780633a93069b1461067b5780633bc5de30146106a65780633da3b3e0146106dc57806346c3bd1f1461070957806353a15edc1461073657806363f6d4c8146107635780636e9dde991461078e5780637052b902146107c757806370a08231146107f2578063715018a61461084957806371d9ffce146108605780638da5cb5b1461088b5780638f32d59b146108e2578063900cf0cf1461091157806391d4ec181461093c57806391de3da0146109675780639466120f1461099257806395d89b41146109bd57806397b937c214610a4d5780639ace38c214610a90578063a457c2d714610b74578063a9059cbb14610bd9578063af14052c14610c3e578063c4d66de814610c55578063d94ad83714610c98578063dd62ed3e14610cc3578063e68e2c9414610d3a578063f2fde38b14610d91575b600080fd5b34801561021557600080fd5b5061021e610dd4565b6040518082815260200191505060405180910390f35b34801561024057600080fd5b50610249610dda565b6040518080602001828103825283818151815260200191508051906020019080838360005b8381101561028957808201518184015260208101905061026e565b50505050905090810190601f1680156102b65780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b3480156102d057600080fd5b5061030f600480360381019080803573ffffffffffffffffffffffffffffffffffffffff16906020019092919080359060200190929190505050610e7c565b604051808215151515815260200191505060405180910390f35b34801561033557600080fd5b5061033e610f6e565b6040518082815260200191505060405180910390f35b34801561036057600080fd5b50610369610f74565b604051808215151515815260200191505060405180910390f35b34801561038f57600080fd5b506103dc600480360381019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190803590602001908201803590602001919091929391929390505050610fca565b005b3480156103ea57600080fd5b50610498600480360381019080803590602001908201803590602001908080601f0160208091040260200160405190810160405280939291908181526020018383808284378201915050505050509192919290803590602001908201803590602001908080601f0160208091040260200160405190810160405280939291908181526020018383808284378201915050505050509192919290803560ff1690602001909291905050506110fd565b005b3480156104a657600080fd5b506104d9600480360381019080803590602001909291908035906020019092919080359060200190929190505050611267565b005b3480156104e757600080fd5b50610506600480360381019080803590602001909291905050506112b1565b005b34801561051457600080fd5b5061051d6112ce565b6040518082815260200191505060405180910390f35b34801561053f57600080fd5b5061055e600480360381019080803590602001909291905050506112d8565b005b34801561056c57600080fd5b506105cb600480360381019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190803573ffffffffffffffffffffffffffffffffffffffff16906020019092919080359060200190929190505050611304565b604051808215151515815260200191505060405180910390f35b3480156105f157600080fd5b506105fa611641565b604051808260ff1660ff16815260200191505060405180910390f35b34801561062257600080fd5b50610661600480360381019080803573ffffffffffffffffffffffffffffffffffffffff16906020019092919080359060200190929190505050611658565b604051808215151515815260200191505060405180910390f35b34801561068757600080fd5b50610690611854565b6040518082815260200191505060405180910390f35b3480156106b257600080fd5b506106bb61185a565b60405180838152602001821515151581526020019250505060405180910390f35b3480156106e857600080fd5b506107076004803603810190808035906020019092919050505061186a565b005b34801561071557600080fd5b5061073460048036038101908080359060200190929190505050611887565b005b34801561074257600080fd5b5061076160048036038101908080359060200190929190505050611a41565b005b34801561076f57600080fd5b50610778611a5e565b6040518082815260200191505060405180910390f35b34801561079a57600080fd5b506107c560048036038101908080359060200190929190803515159060200190929190505050611a64565b005b3480156107d357600080fd5b506107dc611b55565b6040518082815260200191505060405180910390f35b3480156107fe57600080fd5b50610833600480360381019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190505050611b5b565b6040518082815260200191505060405180910390f35b34801561085557600080fd5b5061085e611bb8565b005b34801561086c57600080fd5b50610875611c74565b6040518082815260200191505060405180910390f35b34801561089757600080fd5b506108a0611c7a565b604051808273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200191505060405180910390f35b3480156108ee57600080fd5b506108f7611ca4565b604051808215151515815260200191505060405180910390f35b34801561091d57600080fd5b50610926611cfc565b6040518082815260200191505060405180910390f35b34801561094857600080fd5b50610951611d02565b6040518082815260200191505060405180910390f35b34801561097357600080fd5b5061097c611d0f565b6040518082815260200191505060405180910390f35b34801561099e57600080fd5b506109a7611d15565b6040518082815260200191505060405180910390f35b3480156109c957600080fd5b506109d2611d1b565b6040518080602001828103825283818151815260200191508051906020019080838360005b83811015610a125780820151818401526020810190506109f7565b50505050905090810190601f168015610a3f5780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b348015610a5957600080fd5b50610a8e600480360381019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190505050611dbd565b005b348015610a9c57600080fd5b50610abb60048036038101908080359060200190929190505050611e99565b60405180841515151581526020018373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200180602001828103825283818151815260200191508051906020019080838360005b83811015610b37578082015181840152602081019050610b1c565b50505050905090810190601f168015610b645780820380516001836020036101000a031916815260200191505b5094505050505060405180910390f35b348015610b8057600080fd5b50610bbf600480360381019080803573ffffffffffffffffffffffffffffffffffffffff16906020019092919080359060200190929190505050611f97565b604051808215151515815260200191505060405180910390f35b348015610be557600080fd5b50610c24600480360381019080803573ffffffffffffffffffffffffffffffffffffffff16906020019092919080359060200190929190505050612229565b604051808215151515815260200191505060405180910390f35b348015610c4a57600080fd5b50610c53612456565b005b348015610c6157600080fd5b50610c96600480360381019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190505050612738565b005b348015610ca457600080fd5b50610cad612898565b6040518082815260200191505060405180910390f35b348015610ccf57600080fd5b50610d24600480360381019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190803573ffffffffffffffffffffffffffffffffffffffff16906020019092919050505061289e565b6040518082815260200191505060405180910390f35b348015610d4657600080fd5b50610d4f612925565b604051808273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200191505060405180910390f35b348015610d9d57600080fd5b50610dd2600480360381019080803573ffffffffffffffffffffffffffffffffffffffff16906020019092919050505061294b565b005b60a55481565b606060338054600181600116156101000203166002900480601f016020809104026020016040519081016040528092919081815260200182805460018160011615610100020316600290048015610e725780601f10610e4757610100808354040283529160200191610e72565b820191906000526020600020905b815481529060010190602001808311610e5557829003601f168201915b5050505050905090565b60008160a260003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508273ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925846040518082815260200191505060405180910390a36001905092915050565b609c5481565b600060a754610f8e60a5544261296a90919063ffffffff16565b10158015610fc55750610fae60a85460a75461298f90919063ffffffff16565b610fc360a5544261296a90919063ffffffff16565b105b905090565b610fd2611ca4565b1515610fdd57600080fd5b60ac6060604051908101604052806001151581526020018573ffffffffffffffffffffffffffffffffffffffff16815260200184848080601f0160208091040260200160405190810160405280939291908181526020018383808284378201915050505050508152509080600181540180825580915050906001820390600052602060002090600202016000909192909190915060008201518160000160006101000a81548160ff02191690831515021790555060208201518160000160016101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555060408201518160010190805190602001906110f49291906131e1565b50505050505050565b60008060019054906101000a900460ff168061111d575061111c6129ab565b5b8061113457506000809054906101000a900460ff16155b15156111a8576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252601c8152602001807f436f6e747261637420616c726561647920696e697469616c697a65640000000081525060200191505060405180910390fd5b600060019054906101000a900460ff1615905080156111f7576001600060016101000a81548160ff02191690831515021790555060016000806101000a81548160ff0219169083151502179055505b836033908051906020019061120d929190613261565b508260349080519060200190611224929190613261565b5081603560006101000a81548160ff021916908360ff16021790555080156112615760008060016101000a81548160ff0219169083151502179055505b50505050565b61126f611ca4565b151561127a57600080fd5b60008311151561128957600080fd5b828210151561129757600080fd5b8260a5819055508160a7819055508060a881905550505050565b6112b9611ca4565b15156112c457600080fd5b80609b8190555050565b6000609e54905090565b6112e0611ca4565b15156112eb57600080fd5b6000811115156112fa57600080fd5b8060a48190555050565b60008083600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415151561134457600080fd5b3073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415151561137f57600080fd5b61140e8460a260008973ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546129c290919063ffffffff16565b60a260008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055506114a3609f54856129db90919063ffffffff16565b91506114f78260a160008973ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546129c290919063ffffffff16565b60a160008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555061158c8260a160008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205461298f90919063ffffffff16565b60a160008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508473ffffffffffffffffffffffffffffffffffffffff168673ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef866040518082815260200191505060405180910390a36001925050509392505050565b6000603560009054906101000a900460ff16905090565b60006116e98260a260003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205461298f90919063ffffffff16565b60a260003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508273ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560a260003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546040518082815260200191505060405180910390a36001905092915050565b60a65481565b600080609c546001915091509091565b611872611ca4565b151561187d57600080fd5b80609c8190555050565b61188f611ca4565b151561189a57600080fd5b60ac8054905081101515611916576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260138152602001807f696e646578206f7574206f6620626f756e64730000000000000000000000000081525060200191505060405180910390fd5b600160ac8054905003811015611a285760ac600160ac805490500381548110151561193d57fe5b906000526020600020906002020160ac8281548110151561195a57fe5b90600052602060002090600202016000820160009054906101000a900460ff168160000160006101000a81548160ff0219169083151502179055506000820160019054906101000a900473ffffffffffffffffffffffffffffffffffffffff168160000160016101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555060018201816001019080546001816001161561010002031660029004611a239291906132e1565b509050505b60ac805480919060019003611a3d9190613368565b5050565b611a49611ca4565b1515611a5457600080fd5b8060a38190555050565b60a45481565b611a6c611ca4565b1515611a7757600080fd5b60ac8054905082101515611b19576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260288152602001807f696e646578206d75737420626520696e2072616e6765206f662073746f72656481526020017f207478206c69737400000000000000000000000000000000000000000000000081525060400191505060405180910390fd5b8060ac83815481101515611b2957fe5b906000526020600020906002020160000160006101000a81548160ff0219169083151502179055505050565b60a75481565b6000611bb1609f5460a160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054612a1390919063ffffffff16565b9050919050565b611bc0611ca4565b1515611bcb57600080fd5b606860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff167ff8df31144d9c2f0f6b59d69b8b98abd5459d07f2742c4df920b25aae33c6482060405160405180910390a26000606860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550565b60aa5481565b6000606860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b6000606860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff1614905090565b60a95481565b600060ac80549050905090565b60ab5481565b60a85481565b606060348054600181600116156101000203166002900480601f016020809104026020016040519081016040528092919081815260200182805460018160011615610100020316600290048015611db35780601f10611d8857610100808354040283529160200191611db3565b820191906000526020600020905b815481529060010190602001808311611d9657829003601f168201915b5050505050905090565b611dc5611ca4565b1515611dd057600080fd5b8060a060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055507fb79dc7804ae87ece27b988fcf64ed6d8b4e4a86e6576eaf3ecff034306bd810f60a060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16604051808273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200191505060405180910390a150565b60ac81815481101515611ea857fe5b90600052602060002090600202016000915090508060000160009054906101000a900460ff16908060000160019054906101000a900473ffffffffffffffffffffffffffffffffffffffff1690806001018054600181600116156101000203166002900480601f016020809104026020016040519081016040528092919081815260200182805460018160011615610100020316600290048015611f8d5780601f10611f6257610100808354040283529160200191611f8d565b820191906000526020600020905b815481529060010190602001808311611f7057829003601f168201915b5050505050905083565b60008060a260003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905080831015156120a957600060a260003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555061213d565b6120bc83826129c290919063ffffffff16565b60a260003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055505b8373ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560a260003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546040518082815260200191505060405180910390a3600191505092915050565b60008083600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415151561226957600080fd5b3073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16141515156122a457600080fd5b6122b9609f54856129db90919063ffffffff16565b915061230d8260a160003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546129c290919063ffffffff16565b60a160003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055506123a28260a160008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205461298f90919063ffffffff16565b60a160008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508473ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef866040518082815260200191505060405180910390a360019250505092915050565b60008060003273ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff1614151561249557600080fd5b61249d612a29565b600092505b60ac805490508310156127335760ac838154811015156124be57fe5b906000526020600020906002020191508160000160009054906101000a900460ff1615612726576125af8260000160019054906101000a900473ffffffffffffffffffffffffffffffffffffffff16836001018054600181600116156101000203166002900480601f0160208091040260200160405190810160405280929190818152602001828054600181600116156101000203166002900480156125a55780601f1061257a576101008083540402835291602001916125a5565b820191906000526020600020905b81548152906001019060200180831161258857829003601f168201915b5050505050612c64565b9050801515612725578160000160019054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff167f8091ecaaa54ebb82e02d36c2c336528e0fcb9b3430fc1291ac88295032b9c263848460010160405180838152602001806020018281038252838181546001816001161561010002031660029004815260200191508054600181600116156101000203166002900480156126a85780601f1061267d576101008083540402835291602001916126a8565b820191906000526020600020905b81548152906001019060200180831161268b57829003601f168201915b5050935050505060405180910390a26040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260128152602001807f5472616e73616374696f6e204661696c6564000000000000000000000000000081525060200191505060405180910390fd5b5b82806001019350506124a2565b505050565b60008060019054906101000a900460ff168061275857506127576129ab565b5b8061276f57506000809054906101000a900460ff16155b15156127e3576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252601c8152602001807f436f6e747261637420616c726561647920696e697469616c697a65640000000081525060200191505060405180910390fd5b600060019054906101000a900460ff161590508015612832576001600060016101000a81548160ff02191690831515021790555060016000806101000a81548160ff0219169083151502179055505b81606860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555080156128945760008060016101000a81548160ff0219169083151502179055505b5050565b60a35481565b600060a260008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b60a060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b612953611ca4565b151561295e57600080fd5b61296781612c8b565b50565b600080821415151561297b57600080fd5b818381151561298657fe5b06905092915050565b600081830190508281101515156129a257fe5b80905092915050565b6000806000309150813b9050600081149250505090565b60008282111515156129d057fe5b818303905092915050565b6000808314156129ee5760009050612a0d565b81830290508183828115156129ff57fe5b04141515612a0957fe5b8090505b92915050565b60008183811515612a2057fe5b04905092915050565b600080600080600080612a3a610f74565b1515612a4557600080fd5b42612a5d60a55460a65461298f90919063ffffffff16565b101515612a6957600080fd5b612aa460a754612a96612a8760a5544261296a90919063ffffffff16565b426129c290919063ffffffff16565b61298f90919063ffffffff16565b60a681905550612ac0600160a95461298f90919063ffffffff16565b60a981905550612ace612d87565b8096508197505050841515612ae257600080fd5b612aea61185a565b8094508195505050821515612afe57600080fd5b6012600a0a620f424002841115612b1c576012600a0a620f42400293505b612b268487612d97565b9150612b45612b3660a454612e15565b83612e3790919063ffffffff16565b9150600082138015612b8c57506012600a0a620f42400260ff60019060020a0219811515612b6f57fe5b04612b8a83612b7c6112ce565b61298f90919063ffffffff16565b115b15612bd357612bd0612bcb612b9f6112ce565b6012600a0a620f42400260ff60019060020a0219811515612bbc57fe5b046129c290919063ffffffff16565b612e15565b91505b612bdf60a95483612e8f565b90506012600a0a620f42400260ff60019060020a0219811515612bfe57fe5b048111151515612c0a57fe5b60a9547f41d948a7f29cc695f5d4b3ec147f766bffa165ddd317470fbe05c86d0a9c3e04858885426040518085815260200184815260200183815260200182815260200194505050505060405180910390a2505050505050565b6000806040516020840160008286518360008a6187965a03f1925050508091505092915050565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614151515612cc757600080fd5b8073ffffffffffffffffffffffffffffffffffffffff16606860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a380606860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b600080609b546001915091509091565b600080612da4848461307d565b15612db25760009150612e0e565b612dbb83612e15565b9050612e0b81612dfd612ddf84612dd189612e15565b6130fe90919063ffffffff16565b612def612dea6112ce565b612e15565b61314290919063ffffffff16565b612e3790919063ffffffff16565b91505b5092915050565b600060ff60019060020a02198211151515612e2f57600080fd5b819050919050565b60007fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82141580612e70575060ff60019060020a028314155b1515612e7b57600080fd5b8183811515612e8657fe5b05905092915050565b600080821415612edd57827f72725a3b1e5bd622d6bcd1339bb31279c351abe8f541ac7fd320f24e1b1641f2609e546040518082815260200191505060405180910390a2609e549050613077565b6000821215612f0e57612f03612ef2836131ae565b609e546129c290919063ffffffff16565b609e81905550612f2a565b612f2382609e5461298f90919063ffffffff16565b609e819055505b6000196fffffffffffffffffffffffffffffffff16609e541115612f64576000196fffffffffffffffffffffffffffffffff16609e819055505b612f93609e546009600a0a620eb98802600019811515612f8057fe5b0660001903612a1390919063ffffffff16565b609f81905550827f72725a3b1e5bd622d6bcd1339bb31279c351abe8f541ac7fd320f24e1b1641f2609e546040518082815260200191505060405180910390a260a060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663fff6cae96040518163ffffffff167c0100000000000000000000000000000000000000000000000000000000028152600401600060405180830381600087803b15801561305957600080fd5b505af115801561306d573d6000803e3d6000fd5b50505050609e5490505b92915050565b6000806130ab6012600a0a61309d60a354866129db90919063ffffffff16565b612a1390919063ffffffff16565b90508284101580156130ce5750806130cc84866129c290919063ffffffff16565b105b806130f5575082841080156130f45750806130f285856129c290919063ffffffff16565b105b5b91505092915050565b6000808284039050600083121580156131175750838113155b8061312d575060008312801561312c57508381135b5b151561313857600080fd5b8091505092915050565b600080828402905060ff60019060020a0281141580613175575060ff60019060020a02831660ff60019060020a02851614155b151561318057600080fd5b6000831480613199575083838281151561319657fe5b05145b15156131a457600080fd5b8091505092915050565b600060ff60019060020a0282141515156131c757600080fd5b600082126131d557816131da565b816000035b9050919050565b828054600181600116156101000203166002900490600052602060002090601f016020900481019282601f1061322257805160ff1916838001178555613250565b82800160010185558215613250579182015b8281111561324f578251825591602001919060010190613234565b5b50905061325d919061339a565b5090565b828054600181600116156101000203166002900490600052602060002090601f016020900481019282601f106132a257805160ff19168380011785556132d0565b828001600101855582156132d0579182015b828111156132cf5782518255916020019190600101906132b4565b5b5090506132dd919061339a565b5090565b828054600181600116156101000203166002900490600052602060002090601f016020900481019282601f1061331a5780548555613357565b8280016001018555821561335757600052602060002091601f016020900482015b8281111561335657825482559160010191906001019061333b565b5b509050613364919061339a565b5090565b8154818355818111156133955760020281600202836000526020600020918201910161339491906133bf565b5b505050565b6133bc91905b808211156133b85760008160009055506001016133a0565b5090565b90565b61342691905b8082111561342257600080820160006101000a81549060ff02191690556000820160016101000a81549073ffffffffffffffffffffffffffffffffffffffff02191690556001820160006134199190613429565b506002016133c5565b5090565b90565b50805460018160011615610100020316600290046000825580601f1061344f575061346e565b601f01602090049060005260206000209081019061346d919061339a565b5b50565b6003601203600a0a60190260a381905550600a60a4819055506201518060a5819055506201194060a78190555061038460a881905550600060a681905550600060a9819055506134c0816134c3565b50565b6135396040805190810160405280600a81526020017f4f5241434c4542415345000000000000000000000000000000000000000000008152506040805190810160405280600281526020017f4f4200000000000000000000000000000000000000000000000000000000000081525060096110fd565b61354281612738565b6000609d60006101000a81548160ff0219169083151502179055506000609d60016101000a81548160ff0219169083151502179055506009600a0a620eb98802609e819055506009600a0a620eb9880260001981151561359e57fe5b066000190360a160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550613615609e546009600a0a620eb9880260001981151561360257fe5b0660001903612a1390919063ffffffff16565b609f819055508073ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef609e546040518082815260200191505060405180910390a3505600a165627a7a723058205201df1773cd7e8bfe940b57deebd98559780a64523257cd3888aed7a8f8884e0029

Deployed Bytecode Sourcemap

32244:4645:0:-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;23967:39;;8:9:-1;5:2;;;30:1;27;20:12;5:2;23967:39:0;;;;;;;;;;;;;;;;;;;;;;;9652:69;;8:9:-1;5:2;;;30:1;27;20:12;5:2;9652:69:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;23:1:-1;8:100;33:3;30:1;27:10;8:100;;;99:1;94:3;90:11;84:18;80:1;75:3;71:11;64:39;52:2;49:1;45:10;40:15;;8:100;;;12:14;9652:69:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;19023:235;;8:9:-1;5:2;;;30:1;27;20:12;5:2;19023:235:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;21869:33;;8:9:-1;5:2;;;30:1;27;20:12;5:2;21869:33:0;;;;;;;;;;;;;;;;;;;;;;;30361:266;;8:9:-1;5:2;;;30:1;27;20:12;5:2;30361:266:0;;;;;;;;;;;;;;;;;;;;;;;;;;;33989:253;;8:9:-1;5:2;;;30:1;27;20:12;5:2;33989:253:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;9437:158;;8:9:-1;5:2;;;30:1;27;20:12;5:2;9437:158:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;28882:510;;8:9:-1;5:2;;;30:1;27;20:12;5:2;28882:510:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;21166:150;;8:9:-1;5:2;;;30:1;27;20:12;5:2;21166:150:0;;;;;;;;;;;;;;;;;;;;;;;;;;16130:123;;8:9:-1;5:2;;;30:1;27;20:12;5:2;16130:123:0;;;;;;;;;;;;;;;;;;;;;;;28029:159;;8:9:-1;5:2;;;30:1;27;20:12;5:2;28029:159:0;;;;;;;;;;;;;;;;;;;;;;;;;;17892:489;;8:9:-1;5:2;;;30:1;27;20:12;5:2;17892:489:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;9924:76;;8:9:-1;5:2;;;30:1;27;20:12;5:2;9924:76:0;;;;;;;;;;;;;;;;;;;;;;;;;;;19631:345;;8:9:-1;5:2;;;30:1;27;20:12;5:2;19631:345:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;24064:37;;8:9:-1;5:2;;;30:1;27;20:12;5:2;24064:37:0;;;;;;;;;;;;;;;;;;;;;;;22377:139;;8:9:-1;5:2;;;30:1;27;20:12;5:2;22377:139:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;22054:150;;8:9:-1;5:2;;;30:1;27;20:12;5:2;22054:150:0;;;;;;;;;;;;;;;;;;;;;;;;;;34394:328;;8:9:-1;5:2;;;30:1;27;20:12;5:2;34394:328:0;;;;;;;;;;;;;;;;;;;;;;;;;;27405:161;;8:9:-1;5:2;;;30:1;27;20:12;5:2;27405:161:0;;;;;;;;;;;;;;;;;;;;;;;;;;23864:24;;8:9:-1;5:2;;;30:1;27;20:12;5:2;23864:24:0;;;;;;;;;;;;;;;;;;;;;;;34904:246;;8:9:-1;5:2;;;30:1;27;20:12;5:2;34904:246:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;24297:36;;8:9:-1;5:2;;;30:1;27;20:12;5:2;24297:36:0;;;;;;;;;;;;;;;;;;;;;;;16374:159;;8:9:-1;5:2;;;30:1;27;20:12;5:2;16374:159:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;5660:126;;8:9:-1;5:2;;;30:1;27;20:12;5:2;5660:126:0;;;;;;25439:26;;8:9:-1;5:2;;;30:1;27;20:12;5:2;25439:26:0;;;;;;;;;;;;;;;;;;;;;;;4971:78;;8:9:-1;5:2;;;30:1;27;20:12;5:2;4971:78:0;;;;;;;;;;;;;;;;;;;;;;;;;;;5293:91;;8:9:-1;5:2;;;30:1;27;20:12;5:2;5293:91:0;;;;;;;;;;;;;;;;;;;;;;;;;;;24537:20;;8:9:-1;5:2;;;30:1;27;20:12;5:2;24537:20:0;;;;;;;;;;;;;;;;;;;;;;;35265:137;;8:9:-1;5:2;;;30:1;27;20:12;5:2;35265:137:0;;;;;;;;;;;;;;;;;;;;;;;25479:28;;8:9:-1;5:2;;;30:1;27;20:12;5:2;25479:28:0;;;;;;;;;;;;;;;;;;;;;;;24440:36;;8:9:-1;5:2;;;30:1;27;20:12;5:2;24440:36:0;;;;;;;;;;;;;;;;;;;;;;;9780:73;;8:9:-1;5:2;;;30:1;27;20:12;5:2;9780:73:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;23:1:-1;8:100;33:3;30:1;27:10;8:100;;;99:1;94:3;90:11;84:18;80:1;75:3;71:11;64:39;52:2;49:1;45:10;40:15;;8:100;;;12:14;9780:73:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;13626:206;;8:9:-1;5:2;;;30:1;27;20:12;5:2;13626:206:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;32541:33;;8:9:-1;5:2;;;30:1;27;20:12;5:2;32541:33:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;23:1:-1;8:100;33:3;30:1;27:10;8:100;;;99:1;94:3;90:11;84:18;80:1;75:3;71:11;64:39;52:2;49:1;45:10;40:15;;8:100;;;12:14;32541:33:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;20238:514;;8:9:-1;5:2;;;30:1;27;20:12;5:2;20238:514:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;16759:390;;8:9:-1;5:2;;;30:1;27;20:12;5:2;16759:390:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;33161:609;;8:9:-1;5:2;;;30:1;27;20:12;5:2;33161:609:0;;;;;;4820:89;;8:9:-1;5:2;;;30:1;27;20:12;5:2;4820:89:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;23625:33;;8:9:-1;5:2;;;30:1;27;20:12;5:2;23625:33:0;;;;;;;;;;;;;;;;;;;;;;;17456:174;;8:9:-1;5:2;;;30:1;27;20:12;5:2;17456:174:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;13193:32;;8:9:-1;5:2;;;30:1;27;20:12;5:2;13193:32:0;;;;;;;;;;;;;;;;;;;;;;;;;;;5956:109;;8:9:-1;5:2;;;30:1;27;20:12;5:2;5956:109:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;23967:39;;;;:::o;9652:69::-;9688:6;9710:5;9703:12;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;9652:69;:::o;19023:235::-;19108:4;19171:5;19130:17;:29;19148:10;19130:29;;;;;;;;;;;;;;;:38;19160:7;19130:38;;;;;;;;;;;;;;;:46;;;;19213:7;19192:36;;19201:10;19192:36;;;19222:5;19192:36;;;;;;;;;;;;;;;;;;19246:4;19239:11;;19023:235;;;;:::o;21869:33::-;;;;:::o;30361:266::-;30408:4;30484:21;;30447:33;30455:24;;30447:3;:7;;:33;;;;:::i;:::-;:58;;:161;;;;;30559:48;30585:21;;30559;;:25;;:48;;;;:::i;:::-;30522:33;30530:24;;30522:3;:7;;:33;;;;:::i;:::-;:86;30447:161;30425:194;;30361:266;:::o;33989:253::-;5176:9;:7;:9::i;:::-;5168:18;;;;;;;;34099:12;34117:116;;;;;;;;;34153:4;34117:116;;;;;;34185:11;34117:116;;;;;;34217:4;;34117:116;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;34099:135;;39:1:-1;33:3;27:10;23:18;57:10;52:3;45:23;79:10;72:17;;0:93;34099:135:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;33989:253;;;:::o;9437:158::-;3276:19;3183:12;;;;;;;;;;;:31;;;;3199:15;:13;:15::i;:::-;3183:31;:47;;;;3219:11;;;;;;;;;;;3218:12;3183:47;3175:88;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3299:12;;;;;;;;;;;3298:13;3276:35;;3326:14;3322:99;;;3372:4;3357:12;;:19;;;;;;;;;;;;;;;;;;3405:4;3391:11;;:18;;;;;;;;;;;;;;;;;;3322:99;9535:4;9527:5;:12;;;;;;;;;;;;:::i;:::-;;9556:6;9546:7;:16;;;;;;;;;;;;:::i;:::-;;9581:8;9569:9;;:20;;;;;;;;;;;;;;;;;;3454:14;3450:67;;;3500:5;3485:12;;:20;;;;;;;;;;;;;;;;;;3450:67;9437:158;;;;:::o;28882:510::-;5176:9;:7;:9::i;:::-;5168:18;;;;;;;;29133:1;29105:25;:29;29097:38;;;;;;;;29179:25;29154:22;:50;29146:59;;;;;;;;29245:25;29218:24;:52;;;;29305:22;29281:21;:46;;;;29362:22;29338:21;:46;;;;28882:510;;;:::o;21166:150::-;5176:9;:7;:9::i;:::-;5168:18;;;;;;;;21289:19;21268:18;:40;;;;21166:150;:::o;16130:123::-;16201:7;16233:12;;16226:19;;16130:123;:::o;28029:159::-;5176:9;:7;:9::i;:::-;5168:18;;;;;;;;28145:1;28132:10;:14;28124:23;;;;;;;;28170:10;28158:9;:22;;;;28029:159;:::o;17892:489::-;18019:4;18138:16;17997:2;12370:3;12356:18;;:2;:18;;;;12348:27;;;;;;;;12408:4;12394:19;;:2;:19;;;;12386:28;;;;;;;;18079:46;18119:5;18079:17;:23;18097:4;18079:23;;;;;;;;;;;;;;;:35;18103:10;18079:35;;;;;;;;;;;;;;;;:39;;:46;;;;:::i;:::-;18041:17;:23;18059:4;18041:23;;;;;;;;;;;;;;;:35;18065:10;18041:35;;;;;;;;;;;;;;;:84;;;;18157:27;18167:16;;18157:5;:9;;:27;;;;:::i;:::-;18138:46;;18216:32;18239:8;18216:12;:18;18229:4;18216:18;;;;;;;;;;;;;;;;:22;;:32;;;;:::i;:::-;18195:12;:18;18208:4;18195:18;;;;;;;;;;;;;;;:53;;;;18278:30;18299:8;18278:12;:16;18291:2;18278:16;;;;;;;;;;;;;;;;:20;;:30;;;;:::i;:::-;18259:12;:16;18272:2;18259:16;;;;;;;;;;;;;;;:49;;;;18339:2;18324:25;;18333:4;18324:25;;;18343:5;18324:25;;;;;;;;;;;;;;;;;;18369:4;18362:11;;17892:489;;;;;;;:::o;9924:76::-;9964:5;9985:9;;;;;;;;;;;9978:16;;9924:76;:::o;19631:345::-;19731:4;19807:54;19850:10;19807:17;:29;19825:10;19807:29;;;;;;;;;;;;;;;:38;19837:7;19807:38;;;;;;;;;;;;;;;;:42;;:54;;;;:::i;:::-;19753:17;:29;19771:10;19753:29;;;;;;;;;;;;;;;:38;19783:7;19753:38;;;;;;;;;;;;;;;:108;;;;19898:7;19877:69;;19886:10;19877:69;;;19907:17;:29;19925:10;19907:29;;;;;;;;;;;;;;;:38;19937:7;19907:38;;;;;;;;;;;;;;;;19877:69;;;;;;;;;;;;;;;;;;19964:4;19957:11;;19631:345;;;;:::o;24064:37::-;;;;:::o;22377:139::-;22444:7;22453:4;22483:18;;22503:4;22475:33;;;;22377:139;;:::o;22054:150::-;5176:9;:7;:9::i;:::-;5168:18;;;;;;;;22177:19;22156:18;:40;;;;22054:150;:::o;34394:328::-;5176:9;:7;:9::i;:::-;5168:18;;;;;;;;34502:12;:19;;;;34494:5;:27;34486:59;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;34592:1;34570:12;:19;;;;:23;34562:5;:31;34558:123;;;34632:12;34667:1;34645:12;:19;;;;:23;34632:37;;;;;;;;;;;;;;;;;;;;34610:12;34623:5;34610:19;;;;;;;;;;;;;;;;;;;;:59;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;34558:123;34693:12;:21;;;;;;;;;;;;:::i;:::-;;34394:328;:::o;27405:161::-;5176:9;:7;:9::i;:::-;5168:18;;;;;;;;27539:19;27518:18;:40;;;;27405:161;:::o;23864:24::-;;;;:::o;34904:246::-;5176:9;:7;:9::i;:::-;5168:18;;;;;;;;35030:12;:19;;;;35022:5;:27;35014:80;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;35135:7;35105:12;35118:5;35105:19;;;;;;;;;;;;;;;;;;;;:27;;;:37;;;;;;;;;;;;;;;;;;34904:246;;:::o;24297:36::-;;;;:::o;16374:159::-;16454:7;16486:39;16508:16;;16486:12;:17;16499:3;16486:17;;;;;;;;;;;;;;;;:21;;:39;;;;:::i;:::-;16479:46;;16374:159;;;:::o;5660:126::-;5176:9;:7;:9::i;:::-;5168:18;;;;;;;;5741:6;;;;;;;;;;;5722:26;;;;;;;;;;;;5776:1;5759:6;;:19;;;;;;;;;;;;;;;;;;5660:126::o;25439:26::-;;;;:::o;4971:78::-;5008:7;5035:6;;;;;;;;;;;5028:13;;4971:78;:::o;5293:91::-;5332:4;5370:6;;;;;;;;;;;5356:20;;:10;:20;;;5349:27;;5293:91;:::o;24537:20::-;;;;:::o;35265:137::-;35343:7;35375:12;:19;;;;35368:26;;35265:137;:::o;25479:28::-;;;;:::o;24440:36::-;;;;:::o;9780:73::-;9818:6;9840:7;9833:14;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;9780:73;:::o;13626:206::-;5176:9;:7;:9::i;:::-;5168:18;;;;;;;;13755:17;13735;;:37;;;;;;;;;;;;;;;;;;13788:36;13806:17;;;;;;;;;;;13788:36;;;;;;;;;;;;;;;;;;;;;;13626:206;:::o;32541:33::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;20238:514::-;20343:4;20365:16;20384:17;:29;20402:10;20384:29;;;;;;;;;;;;;;;:38;20414:7;20384:38;;;;;;;;;;;;;;;;20365:57;;20456:8;20437:15;:27;;20433:205;;;20522:1;20481:17;:29;20499:10;20481:29;;;;;;;;;;;;;;;:38;20511:7;20481:38;;;;;;;;;;;;;;;:42;;;;20433:205;;;20597:29;20610:15;20597:8;:12;;:29;;;;:::i;:::-;20556:17;:29;20574:10;20556:29;;;;;;;;;;;;;;;:38;20586:7;20556:38;;;;;;;;;;;;;;;:70;;;;20433:205;20674:7;20653:69;;20662:10;20653:69;;;20683:17;:29;20701:10;20683:29;;;;;;;;;;;;;;;:38;20713:7;20683:38;;;;;;;;;;;;;;;;20653:69;;;;;;;;;;;;;;;;;;20740:4;20733:11;;20238:514;;;;;:::o;16759:390::-;16868:4;16890:16;16846:2;12370:3;12356:18;;:2;:18;;;;12348:27;;;;;;;;12408:4;12394:19;;:2;:19;;;;12386:28;;;;;;;;16909:27;16919:16;;16909:5;:9;;:27;;;;:::i;:::-;16890:46;;16974:38;17003:8;16974:12;:24;16987:10;16974:24;;;;;;;;;;;;;;;;:28;;:38;;;;:::i;:::-;16947:12;:24;16960:10;16947:24;;;;;;;;;;;;;;;:65;;;;17042:30;17063:8;17042:12;:16;17055:2;17042:16;;;;;;;;;;;;;;;;:20;;:30;;;;:::i;:::-;17023:12;:16;17036:2;17023:16;;;;;;;;;;;;;;;:49;;;;17109:2;17088:31;;17097:10;17088:31;;;17113:5;17088:31;;;;;;;;;;;;;;;;;;17137:4;17130:11;;16759:390;;;;;;:::o;33161:609::-;33348:6;33405:21;33493:11;33235:9;33221:23;;:10;:23;;;33213:32;;;;;;;;33299:31;:29;:31::i;:::-;33357:1;33348:10;;33343:420;33364:12;:19;;;;33360:1;:23;33343:420;;;33429:12;33442:1;33429:15;;;;;;;;;;;;;;;;;;;;33405:39;;33463:1;:9;;;;;;;;;;;;33459:293;;;33528:35;33541:1;:13;;;;;;;;;;;;33556:1;:6;;33528:35;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:12;:35::i;:::-;33493:70;;33587:6;33586:7;33582:155;;;33641:1;:13;;;;;;;;;;;;33623:43;;;33656:1;33659;:6;;33623:43;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;33689:28;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;33582:155;33459:293;33385:3;;;;;;;33343:420;;;33161:609;;;:::o;4820:89::-;3276:19;3183:12;;;;;;;;;;;:31;;;;3199:15;:13;:15::i;:::-;3183:31;:47;;;;3219:11;;;;;;;;;;;3218:12;3183:47;3175:88;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3299:12;;;;;;;;;;;3298:13;3276:35;;3326:14;3322:99;;;3372:4;3357:12;;:19;;;;;;;;;;;;;;;;;;3405:4;3391:11;;:18;;;;;;;;;;;;;;;;;;3322:99;4895:6;4886;;:15;;;;;;;;;;;;;;;;;;3454:14;3450:67;;;3500:5;3485:12;;:20;;;;;;;;;;;;;;;;;;3450:67;4820:89;;:::o;23625:33::-;;;;:::o;17456:174::-;17556:7;17588:17;:25;17606:6;17588:25;;;;;;;;;;;;;;;:34;17614:7;17588:34;;;;;;;;;;;;;;;;17581:41;;17456:174;;;;:::o;13193:32::-;;;;;;;;;;;;;:::o;5956:109::-;5176:9;:7;:9::i;:::-;5168:18;;;;;;;;6029:28;6048:8;6029:18;:28::i;:::-;5956:109;:::o;8052:124::-;8110:7;8143:1;8138;:6;;8130:15;;;;;;;;8167:1;8163;:5;;;;;;;;8156:12;;8052:124;;;;:::o;7775:146::-;7835:9;7866:2;7861;:7;7857:11;;7891:2;7886:1;:7;;7879:15;;;;;;7912:1;7905:8;;7775:146;;;;:::o;3615:526::-;3662:4;4013:12;4052:10;4036:4;4013:28;;4102:4;4090:17;4084:23;;4132:1;4126:2;:7;4119:14;;3615:526;;;:::o;7577:129::-;7637:7;7670:2;7664;:8;;7657:16;;;;;;7696:2;7691;:7;7684:14;;7577:129;;;;:::o;6656:419::-;6716:9;6956:1;6950:2;:7;6946:48;;;6981:1;6974:8;;;;6946:48;7015:2;7010;:7;7006:11;;7045:2;7039;7035:1;:6;;;;;;;;:12;7028:20;;;;;;7066:1;7059:8;;6656:419;;;;;:::o;7164:294::-;7224:7;7448:2;7443;:7;;;;;;;;7436:14;;7164:294;;;;:::o;25516:1527::-;25961:18;25990:20;26136;26167:14;26460:18;26844:25;25569:16;:14;:16::i;:::-;25561:25;;;;;;;;25727:3;25672:52;25699:24;;25672:22;;:26;;:52;;;;:::i;:::-;:58;25664:67;;;;;;;;25831:84;25893:21;;25831:57;25854:33;25862:24;;25854:3;:7;;:33;;;;:::i;:::-;25831:3;:7;;:57;;;;:::i;:::-;:61;;:84;;;;:::i;:::-;25806:22;:109;;;;25936:12;25946:1;25936:5;;:9;;:12;;;;:::i;:::-;25928:5;:20;;;;26053:27;:25;:27::i;:::-;26021:59;;;;;;;;26099:15;26091:24;;;;;;;;26230:27;:25;:27::i;:::-;26202:55;;;;;;;;26326:9;26318:18;;;;;;;;24602:2;24809;:12;24801:5;:20;26353:12;:23;26349:79;;;24602:2;24809;:12;24801:5;:20;26393:23;;26349:79;26481:44;26500:12;26514:10;26481:18;:44::i;:::-;26460:65;;26592:41;26608:24;:9;;:22;:24::i;:::-;26592:11;:15;;:41;;;;:::i;:::-;26578:55;;26664:1;26650:11;:15;:82;;;;;24602:2;24809;:12;24801:5;:20;24925:3;24919:1;24911:17;;;;24909:20;:31;;;;;;;;26669:50;26706:11;26669:24;:22;:24::i;:::-;:28;;:50;;;;:::i;:::-;:63;26650:82;26646:186;;;26763:57;26764:40;26779:24;:22;:24::i;:::-;24602:2;24809;:12;24801:5;:20;24925:3;24919:1;24911:17;;;;24909:20;:31;;;;;;;;26764:14;;:40;;;;:::i;:::-;26763:55;:57::i;:::-;26749:71;;26646:186;26872:37;26890:5;;26897:11;26872:17;:37::i;:::-;26844:65;;24602:2;24809;:12;24801:5;:20;24925:3;24919:1;24911:17;;;;24909:20;:31;;;;;;;;26927:17;:31;;26920:39;;;;;;26985:5;;26975:60;26992:12;27006:10;27018:11;27031:3;26975:60;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;25516:1527;;;;;;:::o;35645:1241::-;35736:4;35758:11;35998:4;35992:11;36126:2;36120:4;36116:13;36771:1;36739:13;36647:4;36641:11;36611;36566:1;36536:11;36507:5;36502:3;36498:15;36155:689;36145:699;;35789:1066;;36872:6;36865:13;;35645:1241;;;;;:::o;6207:187::-;6301:1;6281:22;;:8;:22;;;;6273:31;;;;;;;;6349:8;6320:38;;6341:6;;;;;;;;;;;6320:38;;;;;;;;;;;;6378:8;6369:6;;:17;;;;;;;;;;;;;;;;;;6207:187;:::o;21489:149::-;21556:7;21565:4;21605:18;;21625:4;21597:33;;;;21489:149;;:::o;30775:516::-;30886:6;31078:23;30914:42;30939:4;30945:10;30914:24;:42::i;:::-;30910:83;;;30980:1;30973:8;;;;30910:83;31104:25;:10;:23;:25::i;:::-;31078:51;;31147:136;31266:16;31147:100;31205:41;31229:16;31205:19;:4;:17;:19::i;:::-;:23;;:41;;;;:::i;:::-;31147:39;:24;:22;:24::i;:::-;:37;:39::i;:::-;:57;;:100;;;;:::i;:::-;:118;;:136;;;;:::i;:::-;31140:143;;30775:516;;;;;;:::o;2203:166::-;2286:6;2119:3;2113:1;2105:17;;;;2103:20;2318:1;:15;;2310:24;;;;;;;;2359:1;2345:16;;2203:166;;;:::o;793:301::-;876:6;983:2;978:1;:7;;:26;;;;202:3;196:1;189:16;;;;989:1;:15;;978:26;970:35;;;;;;;;1085:1;1081;:5;;;;;;;;1074:12;;793:301;;;;:::o;14100:1469::-;14187:7;14231:1;14216:11;:16;14212:118;;;14264:5;14254:30;14271:12;;14254:30;;;;;;;;;;;;;;;;;;14306:12;;14299:19;;;;14212:118;14360:1;14346:11;:15;14342:193;;;14393:44;14418:17;:11;:15;:17::i;:::-;14393:12;;:16;;:44;;;;:::i;:::-;14378:12;:59;;;;14342:193;;;14485:38;14510:11;14485:12;;:16;;:38;;;;:::i;:::-;14470:12;:53;;;;14342:193;13061:1;13052:11;14566:10;;14551:12;;:25;14547:83;;;13061:1;13052:11;14608:10;;14593:12;:25;;;;14547:83;14661:28;14676:12;;12478:1;12609:2;:12;12595:11;:26;12534:1;12525:11;12894:38;;;;;;;;12534:1;12525:11;12879:54;14661:14;;:28;;;;:::i;:::-;14642:16;:47;;;;15420:5;15410:30;15427:12;;15410:30;;;;;;;;;;;;;;;;;;15479:17;;;;;;;;;;;15473:29;;;:31;;;;;;;;;;;;;;;;;;;;;;;8:9:-1;5:2;;;30:1;27;20:12;5:2;15473:31:0;;;;8:9:-1;5:2;;;45:16;42:1;39;24:38;77:16;74:1;67:27;5:2;15473:31:0;;;;15549:12;;15542:19;;14100:1469;;;;;:::o;31624:434::-;31741:4;31763:34;31800:68;24602:2;31853;:14;31800:34;31815:18;;31800:10;:14;;:34;;;;:::i;:::-;:52;;:68;;;;:::i;:::-;31763:105;;31897:10;31889:4;:18;;:71;;;;;31934:26;31911:20;31920:10;31911:4;:8;;:20;;;;:::i;:::-;:49;31889:71;31888:162;;;;31986:10;31979:4;:17;:70;;;;;32023:26;32000:20;32015:4;32000:10;:14;;:20;;;;:::i;:::-;:49;31979:70;31888:162;31881:169;;31624:434;;;;;:::o;1187:208::-;1270:6;1294:8;1309:1;1305;:5;1294:16;;1335:1;1330;:6;;:16;;;;;1345:1;1340;:6;;1330:16;1329:38;;;;1356:1;1352;:5;:14;;;;;1365:1;1361;:5;1352:14;1329:38;1321:47;;;;;;;;1386:1;1379:8;;1187:208;;;;;:::o;363:335::-;446:6;470:8;485:1;481;:5;470:16;;202:3;196:1;189:16;;;;571:1;:15;;:55;;;;202:3;196:1;189:16;;;;611:1;:14;202:3;196:1;189:16;;;;591:1;:14;590:36;;571:55;563:64;;;;;;;;652:1;647;:6;646:24;;;;668:1;663;659;:5;;;;;;;;:10;646:24;638:33;;;;;;;;689:1;682:8;;363:335;;;;;:::o;1781:161::-;1854:6;202:3;196:1;189:16;;;;1886:1;:15;;1878:24;;;;;;;;1924:1;1920;:5;:14;;1933:1;1920:14;;;1929:1;1928:2;;1920:14;1913:21;;1781:161;;;:::o;32244:4645::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;:::o;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;:::o;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;29633:563::-;29818:1;24602:2;29809:10;29802:2;:18;29797:2;:23;29765:18;:55;;;;29891:2;29859:9;:34;;;;29936:6;29904:24;:38;;;;29985:5;29953:21;:37;;;;30069:10;30037:21;:42;;;;30122:1;30090:22;:33;;;;30142:1;30134:5;:9;;;;30154:34;30181:6;30154:26;:34::i;:::-;29633:563;:::o;15577:480::-;15652:61;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;12478:1;15652:24;:61::i;:::-;15724:26;15743:6;15724:18;:26::i;:::-;15788:5;15763:22;;:30;;;;;;;;;;;;;;;;;;15828:5;15804:21;;:29;;;;;;;;;;;;;;;;;;12478:1;12609:2;:12;12595:11;:26;15846:12;:39;;;;12478:1;12609:2;:12;12595:11;:26;12534:1;12525:11;12894:38;;;;;;;;12534:1;12525:11;12879:54;15896:12;:20;15909:6;15896:20;;;;;;;;;;;;;;;:33;;;;15959:28;15974:12;;12478:1;12609:2;:12;12595:11;:26;12534:1;12525:11;12894:38;;;;;;;;12534:1;12525:11;12879:54;15959:14;;:28;;;;:::i;:::-;15940:16;:47;;;;16028:6;16005:44;;16022:3;16005:44;;;16036:12;;16005:44;;;;;;;;;;;;;;;;;;15577:480;:::o

Swarm Source

bzzr://5201df1773cd7e8bfe940b57deebd98559780a64523257cd3888aed7a8f8884e
Loading...
Loading
Loading...
Loading
[ Download: CSV Export  ]
[ Download: CSV Export  ]

A token is a representation of an on-chain or off-chain asset. The token page shows information such as price, total supply, holders, transfers and social links. Learn more about this page in our Knowledge Base.