ETH Price: $3,520.79 (+5.23%)

Token

Proof Of Gains (ETH2.0)
 

Overview

Max Total Supply

100,000,000,000 ETH2.0

Holders

23

Market

Onchain Market Cap

$0.00

Circulating Supply Market Cap

-

Other Info

Token Contract (WITH 18 Decimals)

Balance
1,600,212,517.478111127531341395 ETH2.0

Value
$0.00
0x094b62692fe8a27161f51ac5686897a4a136ba6f
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:
ProofOfGains

Compiler Version
v0.8.15+commit.e14f2714

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

/**
 *Submitted for verification at Etherscan.io on 2022-09-19
*/

/*

BUY (TOTAL TAX)

6% USDC RELFLECTIONS
1% LIQUIDITY

SELL (TOTAL TAX)

8% USDC REFLECTIONS
2% LIQUIDITY

*FIRST 24 HOURS* (Check out telegram pinned)

18% USDC REFLECTIONS
2% LIQUIDITY

Telegram Community : https://t.me/ProofOfGainsPortal

*/

// SPDX-License-Identifier: MIT  

pragma solidity 0.8.15;

abstract contract Context {
    function _msgSender() internal view virtual returns (address) {
        return msg.sender;
    }

    function _msgData() internal view virtual returns (bytes calldata) {
        this; // silence state mutability warning without generating bytecode - see https://github.com/ethereum/solidity/issues/2691
        return msg.data;
    }
}

interface IUniswapV2Factory {
    function createPair(address tokenA, address tokenB) external returns (address pair);
}

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

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

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

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

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

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

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

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

interface IERC20Metadata is IERC20 {
    /**
     * @dev Returns the name of the token.
     */
    function name() external view returns (string memory);

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

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


contract ERC20 is Context, IERC20, IERC20Metadata {
    mapping(address => uint256) private _balances;

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

    uint256 private _totalSupply;

    string private _name;
    string private _symbol;

    constructor(string memory name_, string memory symbol_) {
        _name = name_;
        _symbol = symbol_;
    }

    function name() public view virtual override returns (string memory) {
        return _name;
    }

    function symbol() public view virtual override returns (string memory) {
        return _symbol;
    }

    function decimals() public view virtual override returns (uint8) {
        return 18;
    }

    function totalSupply() public view virtual override returns (uint256) {
        return _totalSupply;
    }

    function balanceOf(address account) public view virtual override returns (uint256) {
        return _balances[account];
    }

    function transfer(address recipient, uint256 amount) public virtual override returns (bool) {
        _transfer(_msgSender(), recipient, amount);
        return true;
    }

    function allowance(address owner, address spender) public view virtual override returns (uint256) {
        return _allowances[owner][spender];
    }

    function approve(address spender, uint256 amount) public virtual override returns (bool) {
        _approve(_msgSender(), spender, amount);
        return true;
    }

    function transferFrom(
        address sender,
        address recipient,
        uint256 amount
    ) public virtual override returns (bool) {
        _transfer(sender, recipient, amount);

        uint256 currentAllowance = _allowances[sender][_msgSender()];
        require(currentAllowance >= amount, "ERC20: transfer amount exceeds allowance");
        unchecked {
            _approve(sender, _msgSender(), currentAllowance - amount);
        }

        return true;
    }

    function increaseAllowance(address spender, uint256 addedValue) public virtual returns (bool) {
        _approve(_msgSender(), spender, _allowances[_msgSender()][spender] + addedValue);
        return true;
    }

    function decreaseAllowance(address spender, uint256 subtractedValue) public virtual returns (bool) {
        uint256 currentAllowance = _allowances[_msgSender()][spender];
        require(currentAllowance >= subtractedValue, "ERC20: decreased allowance below zero");
        unchecked {
            _approve(_msgSender(), spender, currentAllowance - subtractedValue);
        }

        return true;
    }

    function _transfer(
        address sender,
        address recipient,
        uint256 amount
    ) internal virtual {
        require(sender != address(0), "ERC20: transfer from the zero address");
        require(recipient != address(0), "ERC20: transfer to the zero address");

        uint256 senderBalance = _balances[sender];
        require(senderBalance >= amount, "ERC20: transfer amount exceeds balance");
        unchecked {
            _balances[sender] = senderBalance - amount;
        }
        _balances[recipient] += amount;

        emit Transfer(sender, recipient, amount);
    }

    function _createInitialSupply(address account, uint256 amount) internal virtual {
        require(account != address(0), "ERC20: mint to the zero address");
        _totalSupply += amount;
        _balances[account] += amount;
        emit Transfer(address(0), account, amount);
    }

    function _approve(
        address owner,
        address spender,
        uint256 amount
    ) internal virtual {
        require(owner != address(0), "ERC20: approve from the zero address");
        require(spender != address(0), "ERC20: approve to the zero address");

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

interface DividendPayingTokenOptionalInterface {
  /// @notice View the amount of dividend in wei that an address can withdraw.
  /// @param _owner The address of a token holder.
  /// @return The amount of dividend in wei that `_owner` can withdraw.
  function withdrawableDividendOf(address _owner, address _rewardToken) external view returns(uint256);

  /// @notice View the amount of dividend in wei that an address has withdrawn.
  /// @param _owner The address of a token holder.
  /// @return The amount of dividend in wei that `_owner` has withdrawn.
  function withdrawnDividendOf(address _owner, address _rewardToken) external view returns(uint256);

  /// @notice View the amount of dividend in wei that an address has earned in total.
  /// @dev accumulativeDividendOf(_owner) = withdrawableDividendOf(_owner) + withdrawnDividendOf(_owner)
  /// @param _owner The address of a token holder.
  /// @return The amount of dividend in wei that `_owner` has earned in total.
  function accumulativeDividendOf(address _owner, address _rewardToken) external view returns(uint256);
}

interface DividendPayingTokenInterface {
  /// @notice View the amount of dividend in wei that an address can withdraw.
  /// @param _owner The address of a token holder.
  /// @return The amount of dividend in wei that `_owner` can withdraw.
  function dividendOf(address _owner, address _rewardToken) external view returns(uint256);

  /// @notice Distributes ether to token holders as dividends.
  /// @dev SHOULD distribute the paid ether to token holders as dividends.
  ///  SHOULD NOT directly transfer ether to token holders in this function.
  ///  MUST emit a `DividendsDistributed` event when the amount of distributed ether is greater than 0.
  function distributeDividends() external payable;

  /// @notice Withdraws the ether distributed to the sender.
  /// @dev SHOULD transfer `dividendOf(msg.sender)` wei to `msg.sender`, and `dividendOf(msg.sender)` SHOULD be 0 after the transfer.
  ///  MUST emit a `DividendWithdrawn` event if the amount of ether transferred is greater than 0.
  function withdrawDividend(address _rewardToken) external;

  /// @dev This event MUST emit when ether is distributed to token holders.
  /// @param from The address which sends ether to this contract.
  /// @param weiAmount The amount of distributed ether in wei.
  event DividendsDistributed(
    address indexed from,
    uint256 weiAmount
  );

  /// @dev This event MUST emit when an address withdraws their dividend.
  /// @param to The address which withdraws ether from this contract.
  /// @param weiAmount The amount of withdrawn ether in wei.
  event DividendWithdrawn(
    address indexed to,
    uint256 weiAmount
  );
}

library SafeMath {
    /**
     * @dev Returns the addition of two unsigned integers, reverting on
     * overflow.
     *
     * Counterpart to Solidity's `+` operator.
     *
     * Requirements:
     *
     * - Addition cannot overflow.
     */
    function add(uint256 a, uint256 b) internal pure returns (uint256) {
        uint256 c = a + b;
        require(c >= a, "SafeMath: addition overflow");

        return c;
    }

    /**
     * @dev Returns the subtraction of two unsigned integers, reverting on
     * overflow (when the result is negative).
     *
     * Counterpart to Solidity's `-` operator.
     *
     * Requirements:
     *
     * - Subtraction cannot overflow.
     */
    function sub(uint256 a, uint256 b) internal pure returns (uint256) {
        return sub(a, b, "SafeMath: subtraction overflow");
    }

    /**
     * @dev Returns the subtraction of two unsigned integers, reverting with custom message on
     * overflow (when the result is negative).
     *
     * Counterpart to Solidity's `-` operator.
     *
     * Requirements:
     *
     * - Subtraction cannot overflow.
     */
    function sub(uint256 a, uint256 b, string memory errorMessage) internal pure returns (uint256) {
        require(b <= a, errorMessage);
        uint256 c = a - b;

        return c;
    }

    /**
     * @dev Returns the multiplication of two unsigned integers, reverting on
     * overflow.
     *
     * Counterpart to Solidity's `*` operator.
     *
     * Requirements:
     *
     * - Multiplication cannot overflow.
     */
    function mul(uint256 a, uint256 b) internal pure returns (uint256) {
        // Gas optimization: this is cheaper than requiring 'a' not being zero, but the
        // benefit is lost if 'b' is also tested.
        // See: https://github.com/OpenZeppelin/openzeppelin-contracts/pull/522
        if (a == 0) {
            return 0;
        }

        uint256 c = a * b;
        require(c / a == b, "SafeMath: multiplication overflow");

        return c;
    }

    /**
     * @dev Returns the integer division of two unsigned integers. Reverts on
     * division by zero. The result is rounded towards zero.
     *
     * Counterpart to Solidity's `/` operator. Note: this function uses a
     * `revert` opcode (which leaves remaining gas untouched) while Solidity
     * uses an invalid opcode to revert (consuming all remaining gas).
     *
     * Requirements:
     *
     * - The divisor cannot be zero.
     */
    function div(uint256 a, uint256 b) internal pure returns (uint256) {
        return div(a, b, "SafeMath: division by zero");
    }

    /**
     * @dev Returns the integer division of two unsigned integers. Reverts with custom message on
     * division by zero. The result is rounded towards zero.
     *
     * Counterpart to Solidity's `/` operator. Note: this function uses a
     * `revert` opcode (which leaves remaining gas untouched) while Solidity
     * uses an invalid opcode to revert (consuming all remaining gas).
     *
     * Requirements:
     *
     * - The divisor cannot be zero.
     */
    function div(uint256 a, uint256 b, string memory errorMessage) internal pure returns (uint256) {
        require(b > 0, errorMessage);
        uint256 c = a / b;
        // assert(a == b * c + a % b); // There is no case in which this doesn't hold

        return c;
    }

    /**
     * @dev Returns the remainder of dividing two unsigned integers. (unsigned integer modulo),
     * Reverts when dividing by zero.
     *
     * Counterpart to Solidity's `%` operator. This function uses a `revert`
     * opcode (which leaves remaining gas untouched) while Solidity uses an
     * invalid opcode to revert (consuming all remaining gas).
     *
     * Requirements:
     *
     * - The divisor cannot be zero.
     */
    function mod(uint256 a, uint256 b) internal pure returns (uint256) {
        return mod(a, b, "SafeMath: modulo by zero");
    }

    /**
     * @dev Returns the remainder of dividing two unsigned integers. (unsigned integer modulo),
     * Reverts with custom message when dividing by zero.
     *
     * Counterpart to Solidity's `%` operator. This function uses a `revert`
     * opcode (which leaves remaining gas untouched) while Solidity uses an
     * invalid opcode to revert (consuming all remaining gas).
     *
     * Requirements:
     *
     * - The divisor cannot be zero.
     */
    function mod(uint256 a, uint256 b, string memory errorMessage) internal pure returns (uint256) {
        require(b != 0, errorMessage);
        return a % b;
    }
}

contract Ownable is Context {
    address private _owner;

    event OwnershipTransferred(address indexed previousOwner, address indexed newOwner);
    
    /**
     * @dev Initializes the contract setting the deployer as the initial owner.
     */
    constructor () {
        address msgSender = _msgSender();
        _owner = msgSender;
        emit OwnershipTransferred(address(0), msgSender);
    }

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

    /**
     * @dev Throws if called by any account other than the owner.
     */
    modifier onlyOwner() {
        require(_owner == _msgSender(), "Ownable: caller is not the owner");
        _;
    }

    /**
     * @dev Leaves the contract without owner. It will not be possible to call
     * `onlyOwner` functions anymore. Can only be called by the current owner.
     *
     * NOTE: Renouncing ownership will leave the contract without an owner,
     * thereby removing any functionality that is only available to the owner.
     */
    function renounceOwnership() public virtual onlyOwner {
        emit OwnershipTransferred(_owner, address(0));
        _owner = address(0);
    }

    /**
     * @dev Transfers ownership of the contract to a new account (`newOwner`).
     * Can only be called by the current owner.
     */
    function transferOwnership(address newOwner) public virtual onlyOwner {
        require(newOwner != address(0), "Ownable: new owner is the zero address");
        emit OwnershipTransferred(_owner, newOwner);
        _owner = newOwner;
    }
}



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;
    }


    function toUint256Safe(int256 a) internal pure returns (uint256) {
        require(a >= 0);
        return uint256(a);
    }
}

library SafeMathUint {
  function toInt256Safe(uint256 a) internal pure returns (int256) {
    int256 b = int256(a);
    require(b >= 0);
    return b;
  }
}


interface IUniswapV2Router01 {
    function factory() external pure returns (address);
    function WETH() external pure returns (address);

    function addLiquidity(
        address tokenA,
        address tokenB,
        uint amountADesired,
        uint amountBDesired,
        uint amountAMin,
        uint amountBMin,
        address to,
        uint deadline
    ) external returns (uint amountA, uint amountB, uint liquidity);
    function addLiquidityETH(
        address token,
        uint amountTokenDesired,
        uint amountTokenMin,
        uint amountETHMin,
        address to,
        uint deadline
    ) external payable returns (uint amountToken, uint amountETH, uint liquidity);
    function removeLiquidity(
        address tokenA,
        address tokenB,
        uint liquidity,
        uint amountAMin,
        uint amountBMin,
        address to,
        uint deadline
    ) external returns (uint amountA, uint amountB);
    function removeLiquidityETH(
        address token,
        uint liquidity,
        uint amountTokenMin,
        uint amountETHMin,
        address to,
        uint deadline
    ) external returns (uint amountToken, uint amountETH);
    function removeLiquidityWithPermit(
        address tokenA,
        address tokenB,
        uint liquidity,
        uint amountAMin,
        uint amountBMin,
        address to,
        uint deadline,
        bool approveMax, uint8 v, bytes32 r, bytes32 s
    ) external returns (uint amountA, uint amountB);
    function removeLiquidityETHWithPermit(
        address token,
        uint liquidity,
        uint amountTokenMin,
        uint amountETHMin,
        address to,
        uint deadline,
        bool approveMax, uint8 v, bytes32 r, bytes32 s
    ) external returns (uint amountToken, uint amountETH);
    function swapExactTokensForTokens(
        uint amountIn,
        uint amountOutMin,
        address[] calldata path,
        address to,
        uint deadline
    ) external returns (uint[] memory amounts);
    function swapTokensForExactTokens(
        uint amountOut,
        uint amountInMax,
        address[] calldata path,
        address to,
        uint deadline
    ) external returns (uint[] memory amounts);
    function swapExactETHForTokens(uint amountOutMin, address[] calldata path, address to, uint deadline)
        external
        payable
        returns (uint[] memory amounts);
    function swapTokensForExactETH(uint amountOut, uint amountInMax, address[] calldata path, address to, uint deadline)
        external
        returns (uint[] memory amounts);
    function swapExactTokensForETH(uint amountIn, uint amountOutMin, address[] calldata path, address to, uint deadline)
        external
        returns (uint[] memory amounts);
    function swapETHForExactTokens(uint amountOut, address[] calldata path, address to, uint deadline)
        external
        payable
        returns (uint[] memory amounts);

    function quote(uint amountA, uint reserveA, uint reserveB) external pure returns (uint amountB);
    function getAmountOut(uint amountIn, uint reserveIn, uint reserveOut) external pure returns (uint amountOut);
    function getAmountIn(uint amountOut, uint reserveIn, uint reserveOut) external pure returns (uint amountIn);
    function getAmountsOut(uint amountIn, address[] calldata path) external view returns (uint[] memory amounts);
    function getAmountsIn(uint amountOut, address[] calldata path) external view returns (uint[] memory amounts);
}

interface IUniswapV2Router02 is IUniswapV2Router01 {
    function removeLiquidityETHSupportingFeeOnTransferTokens(
        address token,
        uint liquidity,
        uint amountTokenMin,
        uint amountETHMin,
        address to,
        uint deadline
    ) external returns (uint amountETH);
    function removeLiquidityETHWithPermitSupportingFeeOnTransferTokens(
        address token,
        uint liquidity,
        uint amountTokenMin,
        uint amountETHMin,
        address to,
        uint deadline,
        bool approveMax, uint8 v, bytes32 r, bytes32 s
    ) external returns (uint amountETH);

    function swapExactTokensForTokensSupportingFeeOnTransferTokens(
        uint amountIn,
        uint amountOutMin,
        address[] calldata path,
        address to,
        uint deadline
    ) external;
    function swapExactETHForTokensSupportingFeeOnTransferTokens(
        uint amountOutMin,
        address[] calldata path,
        address to,
        uint deadline
    ) external payable;
    function swapExactTokensForETHSupportingFeeOnTransferTokens(
        uint amountIn,
        uint amountOutMin,
        address[] calldata path,
        address to,
        uint deadline
    ) external;


     
}

contract DividendPayingToken is DividendPayingTokenInterface, DividendPayingTokenOptionalInterface, Ownable {
  using SafeMath for uint256;
  using SafeMathUint for uint256;
  using SafeMathInt for int256;

  // With `magnitude`, we can properly distribute dividends even if the amount of received ether is small.
  // For more discussion about choosing the value of `magnitude`,
  //  see https://github.com/ethereum/EIPs/issues/1726#issuecomment-472352728
  uint256 constant internal magnitude = 2**128;

  mapping(address => uint256) internal magnifiedDividendPerShare;
  address[] public rewardTokens;
  address public nextRewardToken;
  uint256 public rewardTokenCounter;
  
  IUniswapV2Router02 public immutable uniswapV2Router;
  
  
  // About dividendCorrection:
  // If the token balance of a `_user` is never changed, the dividend of `_user` can be computed with:
  //   `dividendOf(_user) = dividendPerShare * balanceOf(_user)`.
  // When `balanceOf(_user)` is changed (via minting/burning/transferring tokens),
  //   `dividendOf(_user)` should not be changed,
  //   but the computed value of `dividendPerShare * balanceOf(_user)` is changed.
  // To keep the `dividendOf(_user)` unchanged, we add a correction term:
  //   `dividendOf(_user) = dividendPerShare * balanceOf(_user) + dividendCorrectionOf(_user)`,
  //   where `dividendCorrectionOf(_user)` is updated whenever `balanceOf(_user)` is changed:
  //   `dividendCorrectionOf(_user) = dividendPerShare * (old balanceOf(_user)) - (new balanceOf(_user))`.
  // So now `dividendOf(_user)` returns the same value before and after `balanceOf(_user)` is changed.
  mapping(address => mapping(address => int256)) internal magnifiedDividendCorrections;
  mapping(address => mapping(address => uint256)) internal withdrawnDividends;
  
  mapping (address => uint256) public holderBalance;
  uint256 public totalBalance;

  mapping(address => uint256) public totalDividendsDistributed;
  
  constructor(){
      IUniswapV2Router02 _uniswapV2Router = IUniswapV2Router02(0x7a250d5630B4cF539739dF2C5dAcb4c659F2488D); // router 0x7a250d5630B4cF539739dF2C5dAcb4c659F2488D
      uniswapV2Router = _uniswapV2Router; 
      
      // Mainnet

      rewardTokens.push(address(0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48)); // USDC - 0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48
      
      nextRewardToken = rewardTokens[0];
  }

  

  /// @dev Distributes dividends whenever ether is paid to this contract.
  receive() external payable {
    distributeDividends();
  }

  /// @notice Distributes ether to token holders as dividends.
  /// @dev It reverts if the total supply of tokens is 0.
  /// It emits the `DividendsDistributed` event if the amount of received ether is greater than 0.
  /// About undistributed ether:
  ///   In each distribution, there is a small amount of ether not distributed,
  ///     the magnified amount of which is
  ///     `(msg.value * magnitude) % totalSupply()`.
  ///   With a well-chosen `magnitude`, the amount of undistributed ether
  ///     (de-magnified) in a distribution can be less than 1 wei.
  ///   We can actually keep track of the undistributed ether in a distribution
  ///     and try to distribute it in the next distribution,
  ///     but keeping track of such data on-chain costs much more than
  ///     the saved ether, so we don't do that.
    
  function distributeDividends() public override payable { 
    require(totalBalance > 0);
    uint256 initialBalance = IERC20(nextRewardToken).balanceOf(address(this));
    buyTokens(msg.value, nextRewardToken);
    uint256 newBalance = IERC20(nextRewardToken).balanceOf(address(this)).sub(initialBalance);
    if (newBalance > 0) {
      magnifiedDividendPerShare[nextRewardToken] = magnifiedDividendPerShare[nextRewardToken].add(
        (newBalance).mul(magnitude) / totalBalance
      );
      emit DividendsDistributed(msg.sender, newBalance);

      totalDividendsDistributed[nextRewardToken] = totalDividendsDistributed[nextRewardToken].add(newBalance);
    }
    rewardTokenCounter = rewardTokenCounter == rewardTokens.length - 1 ? 0 : rewardTokenCounter + 1;
    nextRewardToken = rewardTokens[rewardTokenCounter];
  }
  
  // useful for buybacks or to reclaim any BNB on the contract in a way that helps holders.
    function buyTokens(uint256 bnbAmountInWei, address rewardToken) internal {
        // generate the uniswap pair path of weth -> eth
        address[] memory path = new address[](2);
        path[0] = uniswapV2Router.WETH();
        path[1] = rewardToken;

        // make the swap
        uniswapV2Router.swapExactETHForTokensSupportingFeeOnTransferTokens{value: bnbAmountInWei}(
            0, // accept any amount of Ethereum
            path,
            address(this),
            block.timestamp
        );
    }
  
  /// @notice Withdraws the ether distributed to the sender.
  /// @dev It emits a `DividendWithdrawn` event if the amount of withdrawn ether is greater than 0.
  function withdrawDividend(address _rewardToken) external virtual override {
    _withdrawDividendOfUser(payable(msg.sender), _rewardToken);
  }

  /// @notice Withdraws the ether distributed to the sender.
  /// @dev It emits a `DividendWithdrawn` event if the amount of withdrawn ether is greater than 0.
  function _withdrawDividendOfUser(address payable user, address _rewardToken) internal returns (uint256) {
    uint256 _withdrawableDividend = withdrawableDividendOf(user, _rewardToken);
    if (_withdrawableDividend > 0) {
      withdrawnDividends[user][_rewardToken] = withdrawnDividends[user][_rewardToken].add(_withdrawableDividend);
      emit DividendWithdrawn(user, _withdrawableDividend);
      IERC20(_rewardToken).transfer(user, _withdrawableDividend);
      return _withdrawableDividend;
    }

    return 0;
  }


  /// @notice View the amount of dividend in wei that an address can withdraw.
  /// @param _owner The address of a token holder.
  /// @return The amount of dividend in wei that `_owner` can withdraw.
  function dividendOf(address _owner, address _rewardToken) external view override returns(uint256) {
    return withdrawableDividendOf(_owner, _rewardToken);
  }

  /// @notice View the amount of dividend in wei that an address can withdraw.
  /// @param _owner The address of a token holder.
  /// @return The amount of dividend in wei that `_owner` can withdraw.
  function withdrawableDividendOf(address _owner, address _rewardToken) public view override returns(uint256) {
    return accumulativeDividendOf(_owner,_rewardToken).sub(withdrawnDividends[_owner][_rewardToken]);
  }

  /// @notice View the amount of dividend in wei that an address has withdrawn.
  /// @param _owner The address of a token holder.
  /// @return The amount of dividend in wei that `_owner` has withdrawn.
  function withdrawnDividendOf(address _owner, address _rewardToken) external view override returns(uint256) {
    return withdrawnDividends[_owner][_rewardToken];
  }


  /// @notice View the amount of dividend in wei that an address has earned in total.
  /// @dev accumulativeDividendOf(_owner) = withdrawableDividendOf(_owner) + withdrawnDividendOf(_owner)
  /// = (magnifiedDividendPerShare * balanceOf(_owner) + magnifiedDividendCorrections[_owner]) / magnitude
  /// @param _owner The address of a token holder.
  /// @return The amount of dividend in wei that `_owner` has earned in total.
  function accumulativeDividendOf(address _owner, address _rewardToken) public view override returns(uint256) {
    return magnifiedDividendPerShare[_rewardToken].mul(holderBalance[_owner]).toInt256Safe()
      .add(magnifiedDividendCorrections[_rewardToken][_owner]).toUint256Safe() / magnitude;
  }

  /// @dev Internal function that increases tokens to an account.
  /// Update magnifiedDividendCorrections to keep dividends unchanged.
  /// @param account The account that will receive the created tokens.
  /// @param value The amount that will be created.
  function _increase(address account, uint256 value) internal {
    for (uint256 i; i < rewardTokens.length; i++){
        magnifiedDividendCorrections[rewardTokens[i]][account] = magnifiedDividendCorrections[rewardTokens[i]][account]
          .sub((magnifiedDividendPerShare[rewardTokens[i]].mul(value)).toInt256Safe());
    }
  }

  /// @dev Internal function that reduces an amount of the token of a given account.
  /// Update magnifiedDividendCorrections to keep dividends unchanged.
  /// @param account The account whose tokens will be burnt.
  /// @param value The amount that will be burnt.
  function _reduce(address account, uint256 value) internal {
      for (uint256 i; i < rewardTokens.length; i++){
        magnifiedDividendCorrections[rewardTokens[i]][account] = magnifiedDividendCorrections[rewardTokens[i]][account]
          .add( (magnifiedDividendPerShare[rewardTokens[i]].mul(value)).toInt256Safe() );
      }
  }

  function _setBalance(address account, uint256 newBalance) internal {
    uint256 currentBalance = holderBalance[account];
    holderBalance[account] = newBalance;
    if(newBalance > currentBalance) {
      uint256 increaseAmount = newBalance.sub(currentBalance);
      _increase(account, increaseAmount);
      totalBalance += increaseAmount;
    } else if(newBalance < currentBalance) {
      uint256 reduceAmount = currentBalance.sub(newBalance);
      _reduce(account, reduceAmount);
      totalBalance -= reduceAmount;
    }
  }
}

contract DividendTracker is DividendPayingToken {
    using SafeMath for uint256;
    using SafeMathInt for int256;

    struct Map {
        address[] keys;
        mapping(address => uint) values;
        mapping(address => uint) indexOf;
        mapping(address => bool) inserted;
    }

    function get(address key) private view returns (uint) {
        return tokenHoldersMap.values[key];
    }

    function getIndexOfKey(address key) private view returns (int) {
        if(!tokenHoldersMap.inserted[key]) {
            return -1;
        }
        return int(tokenHoldersMap.indexOf[key]);
    }

    function getKeyAtIndex(uint index) private view returns (address) {
        return tokenHoldersMap.keys[index];
    }

    function size() private view returns (uint) {
        return tokenHoldersMap.keys.length;
    }

    function set(address key, uint val) private {
        if (tokenHoldersMap.inserted[key]) {
            tokenHoldersMap.values[key] = val;
        } else {
            tokenHoldersMap.inserted[key] = true;
            tokenHoldersMap.values[key] = val;
            tokenHoldersMap.indexOf[key] = tokenHoldersMap.keys.length;
            tokenHoldersMap.keys.push(key);
        }
    }

    function remove(address key) private {
        if (!tokenHoldersMap.inserted[key]) {
            return;
        }

        delete tokenHoldersMap.inserted[key];
        delete tokenHoldersMap.values[key];

        uint index = tokenHoldersMap.indexOf[key];
        uint lastIndex = tokenHoldersMap.keys.length - 1;
        address lastKey = tokenHoldersMap.keys[lastIndex];

        tokenHoldersMap.indexOf[lastKey] = index;
        delete tokenHoldersMap.indexOf[key];

        tokenHoldersMap.keys[index] = lastKey;
        tokenHoldersMap.keys.pop();
    }

    Map private tokenHoldersMap;
    uint256 public lastProcessedIndex;

    mapping (address => bool) public excludedFromDividends;

    mapping (address => uint256) public lastClaimTimes;

    uint256 public claimWait;
    uint256 public immutable minimumTokenBalanceForDividends;

    event ExcludeFromDividends(address indexed account);
    event IncludeInDividends(address indexed account);
    event ClaimWaitUpdated(uint256 indexed newValue, uint256 indexed oldValue);

    event Claim(address indexed account, uint256 amount, bool indexed automatic);

    constructor() {
    	claimWait = 1800;
        minimumTokenBalanceForDividends = 1000 * (10**18);
    }

    function excludeFromDividends(address account) external onlyOwner {
    	excludedFromDividends[account] = true;

    	_setBalance(account, 0);
    	remove(account);

    	emit ExcludeFromDividends(account);
    }
    
    function includeInDividends(address account) external onlyOwner {
    	require(excludedFromDividends[account]);
    	excludedFromDividends[account] = false;

    	emit IncludeInDividends(account);
    }

    function updateClaimWait(uint256 newClaimWait) external onlyOwner {
        require(newClaimWait >= 1200 && newClaimWait <= 86400, "Dividend_Tracker: claimWait must be updated to between 1 and 24 hours");
        require(newClaimWait != claimWait, "Dividend_Tracker: Cannot update claimWait to same value");
        emit ClaimWaitUpdated(newClaimWait, claimWait);
        claimWait = newClaimWait;
    }

    function getLastProcessedIndex() external view returns(uint256) {
    	return lastProcessedIndex;
    }

    function getNumberOfTokenHolders() external view returns(uint256) {
        return tokenHoldersMap.keys.length;
    }

    function canAutoClaim(uint256 lastClaimTime) private view returns (bool) {
    	if(lastClaimTime > block.timestamp)  {
    		return false;
    	}

    	return block.timestamp.sub(lastClaimTime) >= claimWait;
    }

    function setBalance(address payable account, uint256 newBalance) external onlyOwner {
    	if(excludedFromDividends[account]) {
    		return;
    	}

    	if(newBalance >= minimumTokenBalanceForDividends) {
            _setBalance(account, newBalance);
    		set(account, newBalance);
    	}
    	else {
            _setBalance(account, 0);
    		remove(account);
    	}

    	processAccount(account, true);
    }
    
    function process(uint256 gas) external returns (uint256, uint256, uint256) {
    	uint256 numberOfTokenHolders = tokenHoldersMap.keys.length;

    	if(numberOfTokenHolders == 0) {
    		return (0, 0, lastProcessedIndex);
    	}

    	uint256 _lastProcessedIndex = lastProcessedIndex;

    	uint256 gasUsed = 0;

    	uint256 gasLeft = gasleft();

    	uint256 iterations = 0;
    	uint256 claims = 0;

    	while(gasUsed < gas && iterations < numberOfTokenHolders) {
    		_lastProcessedIndex++;

    		if(_lastProcessedIndex >= tokenHoldersMap.keys.length) {
    			_lastProcessedIndex = 0;
    		}

    		address account = tokenHoldersMap.keys[_lastProcessedIndex];

    		if(canAutoClaim(lastClaimTimes[account])) {
    			if(processAccount(payable(account), true)) {
    				claims++;
    			}
    		}

    		iterations++;

    		uint256 newGasLeft = gasleft();

    		if(gasLeft > newGasLeft) {
    			gasUsed = gasUsed.add(gasLeft.sub(newGasLeft));
    		}
    		gasLeft = newGasLeft;
    	}

    	lastProcessedIndex = _lastProcessedIndex;

    	return (iterations, claims, lastProcessedIndex);
    }

    function processAccount(address payable account, bool automatic) public onlyOwner returns (bool) {
        uint256 amount;
        bool paid;
        for (uint256 i; i < rewardTokens.length; i++){
            amount = _withdrawDividendOfUser(account, rewardTokens[i]);
            if(amount > 0) {
        		lastClaimTimes[account] = block.timestamp;
                emit Claim(account, amount, automatic);
                paid = true;
    	    }
        }
        return paid;
    }
}

contract ProofOfGains is ERC20, Ownable {
    using SafeMath for uint256;

    IUniswapV2Router02 public immutable uniswapV2Router;
    address public immutable uniswapV2Pair;

    bool private swapping;

    DividendTracker public dividendTracker;
    
    uint256 public maxTransactionAmount;
    uint256 public swapTokensAtAmount;
    uint256 public maxWallet;
    
    uint256 public liquidityActiveBlock = 0; // 0 means liquidity is not active yet
    uint256 public tradingActiveBlock = 0; // 0 means trading is not active
    
    bool public limitsInEffect = true;
    bool public tradingActive = false;
    bool public swapEnabled = false;
    
    uint256 public constant feeDivisor = 1000;

    uint256 public totalSellFees;
    uint256 public rewardsSellFee;
    uint256 public liquiditySellFee;
    
    uint256 public totalBuyFees;
    uint256 public rewardsBuyFee;
    uint256 public liquidityBuyFee;
    
    uint256 public tokensForRewards;
    uint256 public tokensForLiquidity;
    
    uint256 public gasForProcessing = 0;

    uint256 public lpWithdrawRequestTimestamp;
    uint256 public lpWithdrawRequestDuration = 3 days;
    bool public lpWithdrawRequestPending;
    uint256 public lpPercToWithDraw;

    // exlcude from fees and max transaction amount
    mapping (address => bool) private _isExcludedFromFees;

    mapping (address => bool) public _isExcludedMaxTransactionAmount;

    // store addresses that an automatic market maker pairs. Any transfer *to* these addresses
    // could be subject to a maximum transfer amount
    mapping (address => bool) public automatedMarketMakerPairs;

    event ExcludeFromFees(address indexed account, bool isExcluded);
    event ExcludedMaxTransactionAmount(address indexed account, bool isExcluded);

    event SetAutomatedMarketMakerPair(address indexed pair, bool indexed value);

    event DevWalletUpdated(address indexed newWallet, address indexed oldWallet);

    event GasForProcessingUpdated(uint256 indexed newValue, uint256 indexed oldValue);
    
    event SwapAndLiquify(
        uint256 tokensSwapped,
        uint256 ethReceived,
        uint256 tokensIntoLiqudity
    );

    event SendDividends(
    	uint256 tokensSwapped,
    	uint256 amount
    );

    event ProcessedDividendTracker(
    	uint256 iterations,
    	uint256 claims,
        uint256 lastProcessedIndex,
    	bool indexed automatic,
    	uint256 gas,
    	address indexed processor
    );

    event RequestedLPWithdraw();
    
    event WithdrewLPForMigration();

    event CanceledLpWithdrawRequest();

    constructor() ERC20("Proof Of Gains", "ETH2.0") {

        uint256 totalSupply = 100 * 1e9 * 1e18;
        
        maxTransactionAmount = totalSupply * 20 / 1000;
        swapTokensAtAmount = totalSupply * 5 / 10000;
        maxWallet = totalSupply * 20 / 1000;

        rewardsBuyFee = 60;
        liquidityBuyFee = 10;
        totalBuyFees = rewardsBuyFee + liquidityBuyFee;
        
        rewardsSellFee = 180;
        liquiditySellFee = 20;
        totalSellFees = rewardsSellFee + liquiditySellFee;

    	dividendTracker = new DividendTracker();

    	IUniswapV2Router02 _uniswapV2Router = IUniswapV2Router02(0x7a250d5630B4cF539739dF2C5dAcb4c659F2488D);
    	
         // Create a uniswap pair for this new token
        address _uniswapV2Pair = IUniswapV2Factory(_uniswapV2Router.factory())
            .createPair(address(this), _uniswapV2Router.WETH());

        uniswapV2Router = _uniswapV2Router;
        uniswapV2Pair = _uniswapV2Pair;

        _setAutomatedMarketMakerPair(_uniswapV2Pair, true);

        // exclude from receiving dividends
        dividendTracker.excludeFromDividends(address(dividendTracker));
        dividendTracker.excludeFromDividends(address(this));
        dividendTracker.excludeFromDividends(owner());
        dividendTracker.excludeFromDividends(address(_uniswapV2Router));
        dividendTracker.excludeFromDividends(address(0xdead));
        
        // exclude from paying fees or having max transaction amount
        excludeFromFees(owner(), true);
        excludeFromFees(address(this), true);
        excludeFromFees(address(0xdead), true);
        excludeFromMaxTransaction(owner(), true);
        excludeFromMaxTransaction(address(this), true);
        excludeFromMaxTransaction(address(dividendTracker), true);
        excludeFromMaxTransaction(address(_uniswapV2Router), true);
        excludeFromMaxTransaction(address(0xdead), true);

        _createInitialSupply(address(owner()), totalSupply);
    }

    receive() external payable {

  	}

    // excludes wallets and contracts from dividends (such as CEX hotwallets, etc.)
    function excludeFromDividends(address account) external onlyOwner {
        dividendTracker.excludeFromDividends(account);
    }

    // removes exclusion on wallets and contracts from dividends (such as CEX hotwallets, etc.)
    function includeInDividends(address account) external onlyOwner {
        dividendTracker.includeInDividends(account);
    }
    
    // once enabled, can never be turned off
    function enableTrading() external onlyOwner {
        require(!tradingActive, "Cannot re-enable trading");
        tradingActive = true;
        swapEnabled = true;
        tradingActiveBlock = block.number;
    }
    
    // only use to disable contract sales if absolutely necessary (emergency use only)
    function updateSwapEnabled(bool enabled) external onlyOwner(){
        swapEnabled = enabled;
    }

    function updateMaxTxnAmount(uint256 newNum) external onlyOwner {
        require(newNum > (totalSupply() * 1 / 1000)/1e18, "Cannot set maxTransactionAmount lower than 0.1%");
        maxTransactionAmount = newNum * (10**18);
    }
    
    function updateMaxWalletAmount(uint256 newNum) external onlyOwner {
        require(newNum > (totalSupply() * 1 / 100)/1e18, "Cannot set maxWallet lower than 1%");
        maxWallet = newNum * (10**18);
    }
    
    function updateBuyFees(uint256 _rewardsFee, uint256 _liquidityFee) external onlyOwner {
        rewardsBuyFee = _rewardsFee;
        liquidityBuyFee = _liquidityFee;
        totalBuyFees = rewardsBuyFee + liquidityBuyFee;
        require(totalBuyFees <= totalSupply() / 1e8, "Must keep fees at 10% or less");
    }
    
    function updateSellFees(uint256 _rewardsFee, uint256 _liquidityFee) external onlyOwner {
        rewardsSellFee = _rewardsFee;
        liquiditySellFee = _liquidityFee;
        totalSellFees = rewardsSellFee + liquiditySellFee;
        require(totalSellFees <= totalSupply() / 1e8, "Must keep fees at 10% or less");
    }

    function excludeFromMaxTransaction(address updAds, bool isEx) public onlyOwner {
        _isExcludedMaxTransactionAmount[updAds] = isEx;
        emit ExcludedMaxTransactionAmount(updAds, isEx);
    }

    function excludeFromFees(address account, bool excluded) public onlyOwner {
        _isExcludedFromFees[account] = excluded;

        emit ExcludeFromFees(account, excluded);
    }

    function setAutomatedMarketMakerPair(address pair, bool value) external onlyOwner {
        require(pair != uniswapV2Pair, "The PancakeSwap pair cannot be removed from automatedMarketMakerPairs");

        _setAutomatedMarketMakerPair(pair, value);
    }

    function _setAutomatedMarketMakerPair(address pair, bool value) private {
        automatedMarketMakerPairs[pair] = value;

        excludeFromMaxTransaction(pair, value);
        
        if(value) {
            dividendTracker.excludeFromDividends(pair);
        }

        emit SetAutomatedMarketMakerPair(pair, value);
    }

    function updateGasForProcessing(uint256 newValue) external onlyOwner {
        require(newValue >= 200000 && newValue <= 500000, " gasForProcessing must be between 200,000 and 500,000");
        require(newValue != gasForProcessing, "Cannot update gasForProcessing to same value");
        emit GasForProcessingUpdated(newValue, gasForProcessing);
        gasForProcessing = newValue;
    }

    function updateClaimWait(uint256 claimWait) external onlyOwner {
        dividendTracker.updateClaimWait(claimWait);
    }

    function getClaimWait() external view returns(uint256) {
        return dividendTracker.claimWait();
    }

    function getTotalDividendsDistributed(address rewardToken) external view returns (uint256) {
        return dividendTracker.totalDividendsDistributed(rewardToken);
    }

    function isExcludedFromFees(address account) external view returns(bool) {
        return _isExcludedFromFees[account];
    }

    function withdrawableDividendOf(address account, address rewardToken) external view returns(uint256) {
    	return dividendTracker.withdrawableDividendOf(account, rewardToken);
  	}

	function dividendTokenBalanceOf(address account) external view returns (uint256) {
		return dividendTracker.holderBalance(account);
	}

 /*

	function getAccountDividendsInfoAtIndex(uint256 index, address rewardToken)
        external view returns (
            address,
            int256,
            int256,
            uint256,
            uint256,
            uint256,
            uint256,
            uint256) {
    	return dividendTracker.getAccountAtIndex(index, rewardToken);
    }

    */

	function processDividendTracker(uint256 gas) external {
		(uint256 iterations, uint256 claims, uint256 lastProcessedIndex) = dividendTracker.process(gas);
		emit ProcessedDividendTracker(iterations, claims, lastProcessedIndex, false, gas, tx.origin);
    }

    function claim() external {
		dividendTracker.processAccount(payable(msg.sender), false);
    }

    function getLastProcessedIndex() external view returns(uint256) {
    	return dividendTracker.getLastProcessedIndex();
    }

    function getNumberOfDividendTokenHolders() external view returns(uint256) {
        return dividendTracker.getNumberOfTokenHolders();
    }
    
    function getNumberOfDividends() external view returns(uint256) {
        return dividendTracker.totalBalance();
    }
    
    function removeLimits() external onlyOwner returns (bool){
        limitsInEffect = false;
        return true;
    }
    
    function _transfer(
        address from,
        address to,
        uint256 amount
    ) internal override {
        require(from != address(0), "ERC20: transfer from the zero address");
        require(to != address(0), "ERC20: transfer to the zero address");
        
         if(amount == 0) {
            super._transfer(from, to, 0);
            return;
        }
        
        if(!tradingActive){
            require(_isExcludedFromFees[from] || _isExcludedFromFees[to], "Trading is not active yet.");
        }
        
        if(limitsInEffect){
            if (
                from != owner() &&
                to != owner() &&
                to != address(0) &&
                to != address(0xdead) &&
                !swapping
            ){
                
                //when buy
                if (automatedMarketMakerPairs[from] && !_isExcludedMaxTransactionAmount[to]) {
                    require(amount <= maxTransactionAmount, "Buy transfer amount exceeds the maxTransactionAmount.");
                    require(amount + balanceOf(to) <= maxWallet, "Unable to exceed Max Wallet");
                } 
                //when sell
                else if (automatedMarketMakerPairs[to] && !_isExcludedMaxTransactionAmount[from]) {
                    require(amount <= maxTransactionAmount, "Sell transfer amount exceeds the maxTransactionAmount.");
                }
                else if(!_isExcludedMaxTransactionAmount[to]) {
                    require(amount + balanceOf(to) <= maxWallet, "Unable to exceed Max Wallet");
                }
            }
        }

		uint256 contractTokenBalance = balanceOf(address(this));
        
        bool canSwap = contractTokenBalance >= swapTokensAtAmount;

        if( 
            canSwap &&
            swapEnabled &&
            !swapping &&
            !automatedMarketMakerPairs[from] &&
            !_isExcludedFromFees[from] &&
            !_isExcludedFromFees[to]
        ) {
            swapping = true;
            swapBack();
            swapping = false;
        }

        bool takeFee = !swapping;

        // if any account belongs to _isExcludedFromFee account then remove the fee
        if(_isExcludedFromFees[from] || _isExcludedFromFees[to]) {
            takeFee = false;
        }
        
        uint256 fees = 0;
        
        // no taxes on transfers (non buys/sells)
        if(takeFee){
            

            // on sell
            if (automatedMarketMakerPairs[to] && totalSellFees > 0){
                fees = amount.mul(totalSellFees).div(feeDivisor);
                tokensForRewards += fees * rewardsSellFee / totalSellFees;
                tokensForLiquidity += fees * liquiditySellFee / totalSellFees;
            }
            
            // on buy
            else if(automatedMarketMakerPairs[from] && totalBuyFees > 0) {
        	    fees = amount.mul(totalBuyFees).div(feeDivisor);
        	    tokensForRewards += fees * rewardsBuyFee / totalBuyFees;
                tokensForLiquidity += fees * liquidityBuyFee / totalBuyFees;
            }

            if(fees > 0){    
                super._transfer(from, address(this), fees);
            }
        	
        	amount -= fees;
        }

        super._transfer(from, to, amount);

        dividendTracker.setBalance(payable(from), balanceOf(from));
        dividendTracker.setBalance(payable(to), balanceOf(to));

        if(!swapping && gasForProcessing > 0) {
	    	uint256 gas = gasForProcessing;

	    	try dividendTracker.process(gas) returns (uint256 iterations, uint256 claims, uint256 lastProcessedIndex) {
	    		emit ProcessedDividendTracker(iterations, claims, lastProcessedIndex, true, gas, tx.origin);
	    	}
	    	catch {}
        }
    }
    
    function swapTokensForEth(uint256 tokenAmount) private {

        // generate the uniswap pair path of token -> weth
        address[] memory path = new address[](2);
        path[0] = address(this);
        path[1] = uniswapV2Router.WETH();

        _approve(address(this), address(uniswapV2Router), tokenAmount);

        // make the swap
        uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(
            tokenAmount,
            0, // accept any amount of ETH
            path,
            address(this),
            block.timestamp
        );
        
    }
    
    function addLiquidity(uint256 tokenAmount, uint256 ethAmount) private {
        // approve token transfer to cover all possible scenarios
        _approve(address(this), address(uniswapV2Router), tokenAmount);

        // add the liquidity
        uniswapV2Router.addLiquidityETH{value: ethAmount}(
            address(this),
            tokenAmount,
            0, // slippage is unavoidable
            0, // slippage is unavoidable
            address(0xdead),
            block.timestamp
        );

    }
    
    function swapBack() private {
        uint256 contractBalance = balanceOf(address(this));
        uint256 totalTokensToSwap = tokensForLiquidity + tokensForRewards;
        
        if(contractBalance == 0 || totalTokensToSwap == 0) {return;}
        
        // Halve the amount of liquidity tokens
        uint256 liquidityTokens = contractBalance * tokensForLiquidity / totalTokensToSwap / 2;
        uint256 amountToSwapForETH = contractBalance.sub(liquidityTokens);
        
        uint256 initialETHBalance = address(this).balance;

        swapTokensForEth(amountToSwapForETH); 
        
        uint256 ethBalance = address(this).balance.sub(initialETHBalance);
        
        uint256 ethForRewards = ethBalance.mul(tokensForRewards).div(totalTokensToSwap - (tokensForLiquidity/2));
        
        uint256 ethForLiquidity = ethBalance - ethForRewards;
        
        tokensForLiquidity = 0;
        tokensForRewards = 0;
        
        
        
        if(liquidityTokens > 0 && ethForLiquidity > 0){
            addLiquidity(liquidityTokens, ethForLiquidity);
            emit SwapAndLiquify(amountToSwapForETH, ethForLiquidity, tokensForLiquidity);
        }
        
        (bool success,) = address(dividendTracker).call{value: ethForRewards}("");
    }

    function withdrawStuckEth() external onlyOwner {
        (bool success,) = address(msg.sender).call{value: address(this).balance}("");
        require(success, "failed to withdraw");
    }

  

    function nextAvailableLpWithdrawDate() public view returns (uint256){
        if(lpWithdrawRequestPending){
            return lpWithdrawRequestTimestamp + lpWithdrawRequestDuration;
        }
        else {
            return 0;  // 0 means no open requests
        }
    }

    function withdrawRequestedLP() external onlyOwner {
        require(block.timestamp >= nextAvailableLpWithdrawDate() && nextAvailableLpWithdrawDate() > 0, "Must request and wait.");
        lpWithdrawRequestTimestamp = 0;
        lpWithdrawRequestPending = false;

        uint256 amtToWithdraw = IERC20(address(uniswapV2Pair)).balanceOf(address(this)) * lpPercToWithDraw / 100;
        
        lpPercToWithDraw = 0;

        IERC20(uniswapV2Pair).transfer(msg.sender, amtToWithdraw);
    }

   
}

Contract Security Audit

Contract ABI

[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"spender","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[],"name":"CanceledLpWithdrawRequest","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"newWallet","type":"address"},{"indexed":true,"internalType":"address","name":"oldWallet","type":"address"}],"name":"DevWalletUpdated","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"account","type":"address"},{"indexed":false,"internalType":"bool","name":"isExcluded","type":"bool"}],"name":"ExcludeFromFees","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"account","type":"address"},{"indexed":false,"internalType":"bool","name":"isExcluded","type":"bool"}],"name":"ExcludedMaxTransactionAmount","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"uint256","name":"newValue","type":"uint256"},{"indexed":true,"internalType":"uint256","name":"oldValue","type":"uint256"}],"name":"GasForProcessingUpdated","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"iterations","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"claims","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"lastProcessedIndex","type":"uint256"},{"indexed":true,"internalType":"bool","name":"automatic","type":"bool"},{"indexed":false,"internalType":"uint256","name":"gas","type":"uint256"},{"indexed":true,"internalType":"address","name":"processor","type":"address"}],"name":"ProcessedDividendTracker","type":"event"},{"anonymous":false,"inputs":[],"name":"RequestedLPWithdraw","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"tokensSwapped","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"amount","type":"uint256"}],"name":"SendDividends","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"pair","type":"address"},{"indexed":true,"internalType":"bool","name":"value","type":"bool"}],"name":"SetAutomatedMarketMakerPair","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"tokensSwapped","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"ethReceived","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"tokensIntoLiqudity","type":"uint256"}],"name":"SwapAndLiquify","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Transfer","type":"event"},{"anonymous":false,"inputs":[],"name":"WithdrewLPForMigration","type":"event"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"_isExcludedMaxTransactionAmount","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"spender","type":"address"}],"name":"allowance","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"approve","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"automatedMarketMakerPairs","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"claim","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"decimals","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"subtractedValue","type":"uint256"}],"name":"decreaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"dividendTokenBalanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"dividendTracker","outputs":[{"internalType":"contract DividendTracker","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"enableTrading","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"excludeFromDividends","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"},{"internalType":"bool","name":"excluded","type":"bool"}],"name":"excludeFromFees","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"updAds","type":"address"},{"internalType":"bool","name":"isEx","type":"bool"}],"name":"excludeFromMaxTransaction","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"feeDivisor","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"gasForProcessing","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"getClaimWait","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"getLastProcessedIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"getNumberOfDividendTokenHolders","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"getNumberOfDividends","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"rewardToken","type":"address"}],"name":"getTotalDividendsDistributed","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"includeInDividends","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"addedValue","type":"uint256"}],"name":"increaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"isExcludedFromFees","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"limitsInEffect","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"liquidityActiveBlock","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"liquidityBuyFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"liquiditySellFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"lpPercToWithDraw","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"lpWithdrawRequestDuration","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"lpWithdrawRequestPending","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"lpWithdrawRequestTimestamp","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxTransactionAmount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxWallet","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"nextAvailableLpWithdrawDate","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"gas","type":"uint256"}],"name":"processDividendTracker","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"removeLimits","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"rewardsBuyFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"rewardsSellFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"pair","type":"address"},{"internalType":"bool","name":"value","type":"bool"}],"name":"setAutomatedMarketMakerPair","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"swapEnabled","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"swapTokensAtAmount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"tokensForLiquidity","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"tokensForRewards","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalBuyFees","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSellFees","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"tradingActive","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"tradingActiveBlock","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"recipient","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transfer","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"sender","type":"address"},{"internalType":"address","name":"recipient","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transferFrom","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"uniswapV2Pair","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"uniswapV2Router","outputs":[{"internalType":"contract IUniswapV2Router02","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_rewardsFee","type":"uint256"},{"internalType":"uint256","name":"_liquidityFee","type":"uint256"}],"name":"updateBuyFees","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"claimWait","type":"uint256"}],"name":"updateClaimWait","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"newValue","type":"uint256"}],"name":"updateGasForProcessing","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"newNum","type":"uint256"}],"name":"updateMaxTxnAmount","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"newNum","type":"uint256"}],"name":"updateMaxWalletAmount","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_rewardsFee","type":"uint256"},{"internalType":"uint256","name":"_liquidityFee","type":"uint256"}],"name":"updateSellFees","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"enabled","type":"bool"}],"name":"updateSwapEnabled","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"withdrawRequestedLP","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"withdrawStuckEth","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"},{"internalType":"address","name":"rewardToken","type":"address"}],"name":"withdrawableDividendOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"stateMutability":"payable","type":"receive"}]

60c06040526000600a819055600b819055600c805462ffffff191660011790556015556203f4806017553480156200003657600080fd5b506040518060400160405280600e81526020016d50726f6f66204f66204761696e7360901b815250604051806040016040528060068152602001650455448322e360d41b81525081600390816200008e919062000a14565b5060046200009d828262000a14565b5050506000620000b26200064160201b60201c565b600580546001600160a01b0319166001600160a01b038316908117909155604051919250906000907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0908290a3506c01431e0fae6d7217caa00000006103e86200011e82601462000af6565b6200012a919062000b18565b6007556127106200013d82600562000af6565b62000149919062000b18565b6008556103e86200015c82601462000af6565b62000168919062000b18565b600955603c6011819055600a6012819055620001849162000b3b565b60105560b4600e8190556014600f819055620001a09162000b3b565b600d55604051620001b19062000961565b604051809103906000f080158015620001ce573d6000803e3d6000fd5b50600660006101000a8154816001600160a01b0302191690836001600160a01b031602179055506000737a250d5630b4cf539739df2c5dacb4c659f2488d90506000816001600160a01b031663c45a01556040518163ffffffff1660e01b8152600401602060405180830381865afa1580156200024f573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019062000275919062000b56565b6001600160a01b031663c9c6539630846001600160a01b031663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa158015620002c3573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190620002e9919062000b56565b6040516001600160e01b031960e085901b1681526001600160a01b039283166004820152911660248201526044016020604051808303816000875af115801562000337573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906200035d919062000b56565b6001600160a01b03808416608052811660a05290506200037f81600162000645565b60065460405163031e79db60e41b81526001600160a01b0390911660048201819052906331e79db090602401600060405180830381600087803b158015620003c657600080fd5b505af1158015620003db573d6000803e3d6000fd5b505060065460405163031e79db60e41b81523060048201526001600160a01b0390911692506331e79db09150602401600060405180830381600087803b1580156200042557600080fd5b505af11580156200043a573d6000803e3d6000fd5b50506006546001600160a01b031691506331e79db09050620004646005546001600160a01b031690565b6040516001600160e01b031960e084901b1681526001600160a01b039091166004820152602401600060405180830381600087803b158015620004a657600080fd5b505af1158015620004bb573d6000803e3d6000fd5b505060065460405163031e79db60e41b81526001600160a01b03868116600483015290911692506331e79db09150602401600060405180830381600087803b1580156200050757600080fd5b505af11580156200051c573d6000803e3d6000fd5b505060065460405163031e79db60e41b815261dead60048201526001600160a01b0390911692506331e79db09150602401600060405180830381600087803b1580156200056857600080fd5b505af11580156200057d573d6000803e3d6000fd5b505050506200059d620005956200071a60201b60201c565b600162000729565b620005aa30600162000729565b620005b961dead600162000729565b620005d8620005d06005546001600160a01b031690565b6001620007d8565b620005e5306001620007d8565b600654620005fe906001600160a01b03166001620007d8565b6200060b826001620007d8565b6200061a61dead6001620007d8565b62000638620006316005546001600160a01b031690565b846200087c565b50505062000b88565b3390565b6001600160a01b0382166000908152601c60205260409020805460ff1916821515179055620006758282620007d8565b8015620006de5760065460405163031e79db60e41b81526001600160a01b038481166004830152909116906331e79db090602401600060405180830381600087803b158015620006c457600080fd5b505af1158015620006d9573d6000803e3d6000fd5b505050505b604051811515906001600160a01b038416907fffa9187bf1f18bf477bd0ea1bcbb64e93b6a98132473929edfce215cd9b16fab90600090a35050565b6005546001600160a01b031690565b6005546001600160a01b03163314620007785760405162461bcd60e51b8152602060048201819052602482015260008051602062005edb83398151915260448201526064015b60405180910390fd5b6001600160a01b0382166000818152601a6020908152604091829020805460ff191685151590811790915591519182527f9d8f7706ea1113d1a167b526eca956215946dd36cc7df39eb16180222d8b5df791015b60405180910390a25050565b6005546001600160a01b03163314620008235760405162461bcd60e51b8152602060048201819052602482015260008051602062005edb83398151915260448201526064016200076f565b6001600160a01b0382166000818152601b6020908152604091829020805460ff191685151590811790915591519182527f575f9d01836c9206322151b9e9ec3f2b77b87e71176933b9b44d2d732f768d959101620007cc565b6001600160a01b038216620008d45760405162461bcd60e51b815260206004820152601f60248201527f45524332303a206d696e7420746f20746865207a65726f20616464726573730060448201526064016200076f565b8060026000828254620008e8919062000b3b565b90915550506001600160a01b038216600090815260208190526040812080548392906200091790849062000b3b565b90915550506040518181526001600160a01b038316906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9060200160405180910390a35050565b611e62806200407983390190565b634e487b7160e01b600052604160045260246000fd5b600181811c908216806200099a57607f821691505b602082108103620009bb57634e487b7160e01b600052602260045260246000fd5b50919050565b601f82111562000a0f57600081815260208120601f850160051c81016020861015620009ea5750805b601f850160051c820191505b8181101562000a0b57828155600101620009f6565b5050505b505050565b81516001600160401b0381111562000a305762000a306200096f565b62000a488162000a41845462000985565b84620009c1565b602080601f83116001811462000a80576000841562000a675750858301515b600019600386901b1c1916600185901b17855562000a0b565b600085815260208120601f198616915b8281101562000ab15788860151825594840194600190910190840162000a90565b508582101562000ad05787850151600019600388901b60f8161c191681555b5050505050600190811b01905550565b634e487b7160e01b600052601160045260246000fd5b600081600019048311821515161562000b135762000b1362000ae0565b500290565b60008262000b3657634e487b7160e01b600052601260045260246000fd5b500490565b6000821982111562000b515762000b5162000ae0565b500190565b60006020828403121562000b6957600080fd5b81516001600160a01b038116811462000b8157600080fd5b9392505050565b60805160a05161349362000be66000396000818161065d015281816115a50152818161165001526119d901526000818161050a01528181612d6c01528181612e2501528181612e6101528181612edb0152612f3801526134936000f3fe6080604052600436106103f35760003560e01c8063763cef4911610208578063c024666811610118578063e2f45605116100ab578063ee44b44e1161007a578063ee44b44e14610b73578063f2fde38b14610b89578063f54afa7814610ba9578063f8b45b0514610bbf578063fd361d0e14610bd557600080fd5b8063e2f4560514610b12578063e7841ec014610b28578063e98030c714610b3d578063ee40166e14610b5d57600080fd5b8063ccb61358116100e7578063ccb6135814610a8a578063ccd146b214610aa0578063d0a3981414610ab6578063dd62ed3e14610acc57600080fd5b8063c024666814610a14578063c0f306ef14610a34578063c18bc19514610a54578063c8c8ebe414610a7457600080fd5b80639a36f9321161019b578063a457c2d71161016a578063a457c2d71461096f578063a9059cbb1461098f578063b62496f5146109af578063b9e93700146109df578063bbc0c742146109f557600080fd5b80639a36f9321461090e5780639a7a23d6146109245780639c1b8af514610944578063a26579ad1461095a57600080fd5b80638a8c523c116101d75780638a8c523c146108a65780638da5cb5b146108bb578063924de9b7146108d957806395d89b41146108f957600080fd5b8063763cef4914610846578063783102eb1461085b5780637fa787ba14610871578063871c128d1461088657600080fd5b806349bd5a5e116103035780636843cd8411610296578063712c298511610265578063712c2985146107d2578063715018a6146107e757806371778e7d146107fc578063751039fc146108115780637571336a1461082657600080fd5b80636843cd84146107525780636ddd171314610772578063700bb1911461079257806370a08231146107b257600080fd5b80634fbee193116102d25780634fbee193146106c45780635645cd86146106fd57806364b0f6531461071d57806366ca9b831461073257600080fd5b806349bd5a5e1461064b5780634a62bb651461067f5780634af6f7ee146106995780634e71d92d146106af57600080fd5b806318160ddd1161038657806323b872dd1161035557806323b872dd146105af5780632c1f5216146105cf578063313ce567146105ef57806331e79db01461060b578063395093511461062b57600080fd5b806318160ddd146105445780631a8145bb14610559578063203e727e1461056f578063204f11a81461058f57600080fd5b8063099d0d30116103c2578063099d0d301461049c5780630f4432e3146104b257806310d5de53146104c85780631694505e146104f857600080fd5b806302dbd8f8146103ff578063058054c91461042157806306fdde031461044a578063095ea7b31461046c57600080fd5b366103fa57005b600080fd5b34801561040b57600080fd5b5061041f61041a366004613017565b610bef565b005b34801561042d57600080fd5b5061043760165481565b6040519081526020015b60405180910390f35b34801561045657600080fd5b5061045f610ca6565b6040516104419190613039565b34801561047857600080fd5b5061048c6104873660046130a3565b610d38565b6040519015158152602001610441565b3480156104a857600080fd5b50610437600f5481565b3480156104be57600080fd5b50610437600a5481565b3480156104d457600080fd5b5061048c6104e33660046130cf565b601b6020526000908152604090205460ff1681565b34801561050457600080fd5b5061052c7f000000000000000000000000000000000000000000000000000000000000000081565b6040516001600160a01b039091168152602001610441565b34801561055057600080fd5b50600254610437565b34801561056557600080fd5b5061043760145481565b34801561057b57600080fd5b5061041f61058a3660046130ec565b610d4f565b34801561059b57600080fd5b506104376105aa366004613105565b610e2b565b3480156105bb57600080fd5b5061048c6105ca36600461313e565b610ea9565b3480156105db57600080fd5b5060065461052c906001600160a01b031681565b3480156105fb57600080fd5b5060405160128152602001610441565b34801561061757600080fd5b5061041f6106263660046130cf565b610f53565b34801561063757600080fd5b5061048c6106463660046130a3565b610fe0565b34801561065757600080fd5b5061052c7f000000000000000000000000000000000000000000000000000000000000000081565b34801561068b57600080fd5b50600c5461048c9060ff1681565b3480156106a557600080fd5b5061043760115481565b3480156106bb57600080fd5b5061041f61101c565b3480156106d057600080fd5b5061048c6106df3660046130cf565b6001600160a01b03166000908152601a602052604090205460ff1690565b34801561070957600080fd5b506104376107183660046130cf565b611094565b34801561072957600080fd5b50610437611104565b34801561073e57600080fd5b5061041f61074d366004613017565b611177565b34801561075e57600080fd5b5061043761076d3660046130cf565b611221565b34801561077e57600080fd5b50600c5461048c9062010000900460ff1681565b34801561079e57600080fd5b5061041f6107ad3660046130ec565b611254565b3480156107be57600080fd5b506104376107cd3660046130cf565b611327565b3480156107de57600080fd5b50610437611342565b3480156107f357600080fd5b5061041f611366565b34801561080857600080fd5b506104376113da565b34801561081d57600080fd5b5061048c611424565b34801561083257600080fd5b5061041f61084136600461318d565b611461565b34801561085257600080fd5b5061041f6114eb565b34801561086757600080fd5b5061043760195481565b34801561087d57600080fd5b5061041f6116c5565b34801561089257600080fd5b5061041f6108a13660046130ec565b61177c565b3480156108b257600080fd5b5061041f6118bf565b3480156108c757600080fd5b506005546001600160a01b031661052c565b3480156108e557600080fd5b5061041f6108f43660046131bb565b611958565b34801561090557600080fd5b5061045f61199e565b34801561091a57600080fd5b506104376103e881565b34801561093057600080fd5b5061041f61093f36600461318d565b6119ad565b34801561095057600080fd5b5061043760155481565b34801561096657600080fd5b50610437611a96565b34801561097b57600080fd5b5061048c61098a3660046130a3565b611ae0565b34801561099b57600080fd5b5061048c6109aa3660046130a3565b611b79565b3480156109bb57600080fd5b5061048c6109ca3660046130cf565b601c6020526000908152604090205460ff1681565b3480156109eb57600080fd5b5061043760105481565b348015610a0157600080fd5b50600c5461048c90610100900460ff1681565b348015610a2057600080fd5b5061041f610a2f36600461318d565b611b86565b348015610a4057600080fd5b5061041f610a4f3660046130cf565b611c08565b348015610a6057600080fd5b5061041f610a6f3660046130ec565b611c64565b348015610a8057600080fd5b5061043760075481565b348015610a9657600080fd5b5061043760125481565b348015610aac57600080fd5b50610437600e5481565b348015610ac257600080fd5b50610437600d5481565b348015610ad857600080fd5b50610437610ae7366004613105565b6001600160a01b03918216600090815260016020908152604080832093909416825291909152205490565b348015610b1e57600080fd5b5061043760085481565b348015610b3457600080fd5b50610437611d32565b348015610b4957600080fd5b5061041f610b583660046130ec565b611d7c565b348015610b6957600080fd5b50610437600b5481565b348015610b7f57600080fd5b5061043760175481565b348015610b9557600080fd5b5061041f610ba43660046130cf565b611dd7565b348015610bb557600080fd5b5061043760135481565b348015610bcb57600080fd5b5061043760095481565b348015610be157600080fd5b5060185461048c9060ff1681565b6005546001600160a01b03163314610c225760405162461bcd60e51b8152600401610c19906131d8565b60405180910390fd5b600e829055600f819055610c368183613223565b600d556305f5e100610c4760025490565b610c51919061323b565b600d541115610ca25760405162461bcd60e51b815260206004820152601d60248201527f4d757374206b656570206665657320617420313025206f72206c6573730000006044820152606401610c19565b5050565b606060038054610cb59061325d565b80601f0160208091040260200160405190810160405280929190818152602001828054610ce19061325d565b8015610d2e5780601f10610d0357610100808354040283529160200191610d2e565b820191906000526020600020905b815481529060010190602001808311610d1157829003601f168201915b5050505050905090565b6000610d45338484611ec2565b5060015b92915050565b6005546001600160a01b03163314610d795760405162461bcd60e51b8152600401610c19906131d8565b670de0b6b3a76400006103e8610d8e60025490565b610d99906001613297565b610da3919061323b565b610dad919061323b565b8111610e135760405162461bcd60e51b815260206004820152602f60248201527f43616e6e6f7420736574206d61785472616e73616374696f6e416d6f756e742060448201526e6c6f776572207468616e20302e312560881b6064820152608401610c19565b610e2581670de0b6b3a7640000613297565b60075550565b600654604051630409e23560e31b81526001600160a01b0384811660048301528381166024830152600092169063204f11a890604401602060405180830381865afa158015610e7e573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610ea291906132b6565b9392505050565b6000610eb6848484611fe6565b6001600160a01b038416600090815260016020908152604080832033845290915290205482811015610f3b5760405162461bcd60e51b815260206004820152602860248201527f45524332303a207472616e7366657220616d6f756e74206578636565647320616044820152676c6c6f77616e636560c01b6064820152608401610c19565b610f488533858403611ec2565b506001949350505050565b6005546001600160a01b03163314610f7d5760405162461bcd60e51b8152600401610c19906131d8565b60065460405163031e79db60e41b81526001600160a01b038381166004830152909116906331e79db0906024015b600060405180830381600087803b158015610fc557600080fd5b505af1158015610fd9573d6000803e3d6000fd5b5050505050565b3360008181526001602090815260408083206001600160a01b03871684529091528120549091610d45918590611017908690613223565b611ec2565b60065460405163bc4c4b3760e01b8152336004820152600060248201526001600160a01b039091169063bc4c4b37906044016020604051808303816000875af115801561106d573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061109191906132cf565b50565b6006546040516326b72f0160e11b81526001600160a01b0383811660048301526000921690634d6e5e02906024015b602060405180830381865afa1580156110e0573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610d4991906132b6565b600654604080516304ddf6ef60e11b815290516000926001600160a01b0316916309bbedde9160048083019260209291908290030181865afa15801561114e573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061117291906132b6565b905090565b6005546001600160a01b031633146111a15760405162461bcd60e51b8152600401610c19906131d8565b601182905560128190556111b58183613223565b6010556305f5e1006111c660025490565b6111d0919061323b565b6010541115610ca25760405162461bcd60e51b815260206004820152601d60248201527f4d757374206b656570206665657320617420313025206f72206c6573730000006044820152606401610c19565b60065460405163156dbbf560e31b81526001600160a01b038381166004830152600092169063ab6ddfa8906024016110c3565b6006546040516001624d3b8760e01b0319815260048101839052600091829182916001600160a01b03169063ffb2c479906024016060604051808303816000875af11580156112a7573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906112cb91906132ec565b604080518481526020810184905290810182905260608101889052929550909350915032906000907fc864333d6121033635ab41b29ae52f10a22cf4438c3e4f1c4c68518feb2f8a98906080015b60405180910390a350505050565b6001600160a01b031660009081526020819052604090205490565b60185460009060ff1615611360576017546016546111729190613223565b50600090565b6005546001600160a01b031633146113905760405162461bcd60e51b8152600401610c19906131d8565b6005546040516000916001600160a01b0316907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0908390a3600580546001600160a01b0319169055565b6006546040805163ad7a672f60e01b815290516000926001600160a01b03169163ad7a672f9160048083019260209291908290030181865afa15801561114e573d6000803e3d6000fd5b6005546000906001600160a01b031633146114515760405162461bcd60e51b8152600401610c19906131d8565b50600c805460ff19169055600190565b6005546001600160a01b0316331461148b5760405162461bcd60e51b8152600401610c19906131d8565b6001600160a01b0382166000818152601b6020908152604091829020805460ff191685151590811790915591519182527f575f9d01836c9206322151b9e9ec3f2b77b87e71176933b9b44d2d732f768d9591015b60405180910390a25050565b6005546001600160a01b031633146115155760405162461bcd60e51b8152600401610c19906131d8565b61151d611342565b421015801561153357506000611531611342565b115b6115785760405162461bcd60e51b815260206004820152601660248201527526bab9ba103932b8bab2b9ba1030b732103bb0b4ba1760511b6044820152606401610c19565b600060168190556018805460ff191690556019546040516370a0823160e01b8152306004820152606491907f00000000000000000000000000000000000000000000000000000000000000006001600160a01b0316906370a0823190602401602060405180830381865afa1580156115f4573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061161891906132b6565b6116229190613297565b61162c919061323b565b600060195560405163a9059cbb60e01b8152336004820152602481018290529091507f00000000000000000000000000000000000000000000000000000000000000006001600160a01b03169063a9059cbb906044016020604051808303816000875af11580156116a1573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610ca291906132cf565b6005546001600160a01b031633146116ef5760405162461bcd60e51b8152600401610c19906131d8565b604051600090339047908381818185875af1925050503d8060008114611731576040519150601f19603f3d011682016040523d82523d6000602084013e611736565b606091505b50509050806110915760405162461bcd60e51b81526020600482015260126024820152716661696c656420746f20776974686472617760701b6044820152606401610c19565b6005546001600160a01b031633146117a65760405162461bcd60e51b8152600401610c19906131d8565b62030d4081101580156117bc57506207a1208111155b6118265760405162461bcd60e51b815260206004820152603560248201527f20676173466f7250726f63657373696e67206d7573742062652062657477656560448201527406e203230302c30303020616e64203530302c30303605c1b6064820152608401610c19565b601554810361188c5760405162461bcd60e51b815260206004820152602c60248201527f43616e6e6f742075706461746520676173466f7250726f63657373696e67207460448201526b6f2073616d652076616c756560a01b6064820152608401610c19565b60155460405182907f40d7e40e79af4e8e5a9b3c57030d8ea93f13d669c06d448c4d631d4ae7d23db790600090a3601555565b6005546001600160a01b031633146118e95760405162461bcd60e51b8152600401610c19906131d8565b600c54610100900460ff16156119415760405162461bcd60e51b815260206004820152601860248201527f43616e6e6f742072652d656e61626c652074726164696e6700000000000000006044820152606401610c19565b600c805462ffff0019166201010017905543600b55565b6005546001600160a01b031633146119825760405162461bcd60e51b8152600401610c19906131d8565b600c8054911515620100000262ff000019909216919091179055565b606060048054610cb59061325d565b6005546001600160a01b031633146119d75760405162461bcd60e51b8152600401610c19906131d8565b7f00000000000000000000000000000000000000000000000000000000000000006001600160a01b0316826001600160a01b031603611a8c5760405162461bcd60e51b815260206004820152604560248201527f5468652050616e63616b655377617020706169722063616e6e6f74206265207260448201527f656d6f7665642066726f6d206175746f6d617465644d61726b65744d616b6572606482015264506169727360d81b608482015260a401610c19565b610ca2828261286c565b60065460408051631bc9e27b60e21b815290516000926001600160a01b031691636f2789ec9160048083019260209291908290030181865afa15801561114e573d6000803e3d6000fd5b3360009081526001602090815260408083206001600160a01b038616845290915281205482811015611b625760405162461bcd60e51b815260206004820152602560248201527f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f77604482015264207a65726f60d81b6064820152608401610c19565b611b6f3385858403611ec2565b5060019392505050565b6000610d45338484611fe6565b6005546001600160a01b03163314611bb05760405162461bcd60e51b8152600401610c19906131d8565b6001600160a01b0382166000818152601a6020908152604091829020805460ff191685151590811790915591519182527f9d8f7706ea1113d1a167b526eca956215946dd36cc7df39eb16180222d8b5df791016114df565b6005546001600160a01b03163314611c325760405162461bcd60e51b8152600401610c19906131d8565b60065460405163c0f306ef60e01b81526001600160a01b0383811660048301529091169063c0f306ef90602401610fab565b6005546001600160a01b03163314611c8e5760405162461bcd60e51b8152600401610c19906131d8565b670de0b6b3a76400006064611ca260025490565b611cad906001613297565b611cb7919061323b565b611cc1919061323b565b8111611d1a5760405162461bcd60e51b815260206004820152602260248201527f43616e6e6f7420736574206d617857616c6c6574206c6f776572207468616e20604482015261312560f01b6064820152608401610c19565b611d2c81670de0b6b3a7640000613297565b60095550565b6006546040805163039e107b60e61b815290516000926001600160a01b03169163e7841ec09160048083019260209291908290030181865afa15801561114e573d6000803e3d6000fd5b6005546001600160a01b03163314611da65760405162461bcd60e51b8152600401610c19906131d8565b60065460405163e98030c760e01b8152600481018390526001600160a01b039091169063e98030c790602401610fab565b6005546001600160a01b03163314611e015760405162461bcd60e51b8152600401610c19906131d8565b6001600160a01b038116611e665760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610c19565b6005546040516001600160a01b038084169216907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a3600580546001600160a01b0319166001600160a01b0392909216919091179055565b6001600160a01b038316611f245760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646044820152637265737360e01b6064820152608401610c19565b6001600160a01b038216611f855760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604482015261737360f01b6064820152608401610c19565b6001600160a01b0383811660008181526001602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925910160405180910390a3505050565b6001600160a01b03831661200c5760405162461bcd60e51b8152600401610c199061331a565b6001600160a01b0382166120325760405162461bcd60e51b8152600401610c199061335f565b8060000361204b576120468383600061293c565b505050565b600c54610100900460ff166120e5576001600160a01b0383166000908152601a602052604090205460ff168061209957506001600160a01b0382166000908152601a602052604090205460ff165b6120e55760405162461bcd60e51b815260206004820152601a60248201527f54726164696e67206973206e6f7420616374697665207965742e0000000000006044820152606401610c19565b600c5460ff16156123bc576005546001600160a01b0384811691161480159061211c57506005546001600160a01b03838116911614155b801561213057506001600160a01b03821615155b801561214757506001600160a01b03821661dead14155b801561215d5750600554600160a01b900460ff16155b156123bc576001600160a01b0383166000908152601c602052604090205460ff1680156121a357506001600160a01b0382166000908152601b602052604090205460ff16155b15612281576007548111156122185760405162461bcd60e51b815260206004820152603560248201527f427579207472616e7366657220616d6f756e742065786365656473207468652060448201527436b0bc2a3930b739b0b1ba34b7b720b6b7bab73a1760591b6064820152608401610c19565b60095461222483611327565b61222e9083613223565b111561227c5760405162461bcd60e51b815260206004820152601b60248201527f556e61626c6520746f20657863656564204d61782057616c6c657400000000006044820152606401610c19565b6123bc565b6001600160a01b0382166000908152601c602052604090205460ff1680156122c257506001600160a01b0383166000908152601b602052604090205460ff16155b156123385760075481111561227c5760405162461bcd60e51b815260206004820152603660248201527f53656c6c207472616e7366657220616d6f756e742065786365656473207468656044820152751036b0bc2a3930b739b0b1ba34b7b720b6b7bab73a1760511b6064820152608401610c19565b6001600160a01b0382166000908152601b602052604090205460ff166123bc5760095461236483611327565b61236e9083613223565b11156123bc5760405162461bcd60e51b815260206004820152601b60248201527f556e61626c6520746f20657863656564204d61782057616c6c657400000000006044820152606401610c19565b60006123c730611327565b600854909150811080159081906123e65750600c5462010000900460ff165b80156123fc5750600554600160a01b900460ff16155b801561242157506001600160a01b0385166000908152601c602052604090205460ff16155b801561244657506001600160a01b0385166000908152601a602052604090205460ff16155b801561246b57506001600160a01b0384166000908152601a602052604090205460ff16155b15612499576005805460ff60a01b1916600160a01b17905561248b612a83565b6005805460ff60a01b191690555b6005546001600160a01b0386166000908152601a602052604090205460ff600160a01b9092048216159116806124e757506001600160a01b0385166000908152601a602052604090205460ff165b156124f0575060005b6000811561267d576001600160a01b0386166000908152601c602052604090205460ff16801561252257506000600d54115b156125b1576125486103e8612542600d5488612c0f90919063ffffffff16565b90612c91565b9050600d54600e548261255b9190613297565b612565919061323b565b601360008282546125769190613223565b9091555050600d54600f5461258b9083613297565b612595919061323b565b601460008282546125a69190613223565b9091555061265f9050565b6001600160a01b0387166000908152601c602052604090205460ff1680156125db57506000601054115b1561265f576125fb6103e861254260105488612c0f90919063ffffffff16565b90506010546011548261260e9190613297565b612618919061323b565b601360008282546126299190613223565b909155505060105460125461263e9083613297565b612648919061323b565b601460008282546126599190613223565b90915550505b80156126705761267087308361293c565b61267a81866133a2565b94505b61268887878761293c565b6006546001600160a01b031663e30443bc886126a381611327565b6040516001600160e01b031960e085901b1681526001600160a01b0390921660048301526024820152604401600060405180830381600087803b1580156126e957600080fd5b505af11580156126fd573d6000803e3d6000fd5b50506006546001600160a01b0316915063e30443bc90508761271e81611327565b6040516001600160e01b031960e085901b1681526001600160a01b0390921660048301526024820152604401600060405180830381600087803b15801561276457600080fd5b505af1158015612778573d6000803e3d6000fd5b5050600554600160a01b900460ff1615915050801561279957506000601554115b15612863576015546006546040516001624d3b8760e01b03198152600481018390526001600160a01b039091169063ffb2c479906024016060604051808303816000875af192505050801561280b575060408051601f3d908101601f19168201909252612808918101906132ec565b60015b156128615760408051848152602081018490529081018290526060810185905232906001907fc864333d6121033635ab41b29ae52f10a22cf4438c3e4f1c4c68518feb2f8a989060800160405180910390a35050505b505b50505050505050565b6001600160a01b0382166000908152601c60205260409020805460ff191682151517905561289a8282611461565b80156129005760065460405163031e79db60e41b81526001600160a01b038481166004830152909116906331e79db090602401600060405180830381600087803b1580156128e757600080fd5b505af11580156128fb573d6000803e3d6000fd5b505050505b604051811515906001600160a01b038416907fffa9187bf1f18bf477bd0ea1bcbb64e93b6a98132473929edfce215cd9b16fab90600090a35050565b6001600160a01b0383166129625760405162461bcd60e51b8152600401610c199061331a565b6001600160a01b0382166129885760405162461bcd60e51b8152600401610c199061335f565b6001600160a01b03831660009081526020819052604090205481811015612a005760405162461bcd60e51b815260206004820152602660248201527f45524332303a207472616e7366657220616d6f756e7420657863656564732062604482015265616c616e636560d01b6064820152608401610c19565b6001600160a01b03808516600090815260208190526040808220858503905591851681529081208054849290612a37908490613223565b92505081905550826001600160a01b0316846001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8460405161131991815260200190565b6000612a8e30611327565b90506000601354601454612aa29190613223565b9050811580612aaf575080155b15612ab8575050565b600060028260145485612acb9190613297565b612ad5919061323b565b612adf919061323b565b90506000612aed8483612cd3565b905047612af982612d15565b6000612b054783612cd3565b90506000612b336002601454612b1b919061323b565b612b2590886133a2565b601354612542908590612c0f565b90506000612b4182846133a2565b6000601481905560135590508515801590612b5c5750600081115b15612baf57612b6b8682612ed5565b601454604080518781526020810184905280820192909252517f17bbfb9a6069321b6ded73bd96327c9e6b7212a5cd51ff219cd61370acafb5619181900360600190a15b6006546040516000916001600160a01b03169084908381818185875af1925050503d8060008114612bfc576040519150601f19603f3d011682016040523d82523d6000602084013e612c01565b606091505b505050505050505050505050565b600082600003612c2157506000610d49565b6000612c2d8385613297565b905082612c3a858361323b565b14610ea25760405162461bcd60e51b815260206004820152602160248201527f536166654d6174683a206d756c7469706c69636174696f6e206f766572666c6f6044820152607760f81b6064820152608401610c19565b6000610ea283836040518060400160405280601a81526020017f536166654d6174683a206469766973696f6e206279207a65726f000000000000815250612faf565b6000610ea283836040518060400160405280601e81526020017f536166654d6174683a207375627472616374696f6e206f766572666c6f770000815250612fe6565b6040805160028082526060820183526000926020830190803683370190505090503081600081518110612d4a57612d4a6133b9565b60200260200101906001600160a01b031690816001600160a01b0316815250507f00000000000000000000000000000000000000000000000000000000000000006001600160a01b031663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa158015612dc8573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190612dec91906133cf565b81600181518110612dff57612dff6133b9565b60200260200101906001600160a01b031690816001600160a01b031681525050612e4a307f000000000000000000000000000000000000000000000000000000000000000084611ec2565b60405163791ac94760e01b81526001600160a01b037f0000000000000000000000000000000000000000000000000000000000000000169063791ac94790612e9f9085906000908690309042906004016133ec565b600060405180830381600087803b158015612eb957600080fd5b505af1158015612ecd573d6000803e3d6000fd5b505050505050565b612f00307f000000000000000000000000000000000000000000000000000000000000000084611ec2565b60405163f305d71960e01b815230600482015260248101839052600060448201819052606482015261dead60848201524260a48201527f00000000000000000000000000000000000000000000000000000000000000006001600160a01b03169063f305d71990839060c40160606040518083038185885af1158015612f8a573d6000803e3d6000fd5b50505050506040513d601f19601f82011682018060405250810190610fd991906132ec565b60008183612fd05760405162461bcd60e51b8152600401610c199190613039565b506000612fdd848661323b565b95945050505050565b6000818484111561300a5760405162461bcd60e51b8152600401610c199190613039565b506000612fdd84866133a2565b6000806040838503121561302a57600080fd5b50508035926020909101359150565b600060208083528351808285015260005b818110156130665785810183015185820160400152820161304a565b81811115613078576000604083870101525b50601f01601f1916929092016040019392505050565b6001600160a01b038116811461109157600080fd5b600080604083850312156130b657600080fd5b82356130c18161308e565b946020939093013593505050565b6000602082840312156130e157600080fd5b8135610ea28161308e565b6000602082840312156130fe57600080fd5b5035919050565b6000806040838503121561311857600080fd5b82356131238161308e565b915060208301356131338161308e565b809150509250929050565b60008060006060848603121561315357600080fd5b833561315e8161308e565b9250602084013561316e8161308e565b929592945050506040919091013590565b801515811461109157600080fd5b600080604083850312156131a057600080fd5b82356131ab8161308e565b915060208301356131338161317f565b6000602082840312156131cd57600080fd5b8135610ea28161317f565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b634e487b7160e01b600052601160045260246000fd5b600082198211156132365761323661320d565b500190565b60008261325857634e487b7160e01b600052601260045260246000fd5b500490565b600181811c9082168061327157607f821691505b60208210810361329157634e487b7160e01b600052602260045260246000fd5b50919050565b60008160001904831182151516156132b1576132b161320d565b500290565b6000602082840312156132c857600080fd5b5051919050565b6000602082840312156132e157600080fd5b8151610ea28161317f565b60008060006060848603121561330157600080fd5b8351925060208401519150604084015190509250925092565b60208082526025908201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604082015264647265737360d81b606082015260800190565b60208082526023908201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260408201526265737360e81b606082015260800190565b6000828210156133b4576133b461320d565b500390565b634e487b7160e01b600052603260045260246000fd5b6000602082840312156133e157600080fd5b8151610ea28161308e565b600060a082018783526020878185015260a0604085015281875180845260c086019150828901935060005b8181101561343c5784516001600160a01b031683529383019391830191600101613417565b50506001600160a01b0396909616606085015250505060800152939250505056fea2646970667358221220b954e92147e8a98337cfa126ffe88999c4a2693bbdc426158c86b2e809142d2864736f6c634300080f003360c060405234801561001057600080fd5b50600080546001600160a01b031916339081178255604051909182917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0908290a350737a250d5630b4cf539739df2c5dacb4c659f2488d60808190526002805460018101825560008281527f405787fa12a823e0f2b7631cc41b3ba8828b3321ca811111fa75cd3aa3bb5ace90910180546001600160a01b03191673a0b86991c6218b36c1d19d4a2e9eb0ce3606eb4817905581546100d1576100d1610115565b600091825260209091200154600380546001600160a01b0319166001600160a01b0390921691909117905550610708601155683635c9adc5dea0000060a05261012b565b634e487b7160e01b600052603260045260246000fd5b60805160a051611cfd610165600039600081816104560152610c2e01526000818161021801528181611023015261110f0152611cfd6000f3fe6080604052600436106101c65760003560e01c80639c53c0ca116100f7578063cc5489df11610095578063e7f4d2c311610064578063e7f4d2c314610553578063e98030c714610573578063f2fde38b14610593578063ffb2c479146105b357600080fd5b8063cc5489df146104b8578063e30443bc146104d8578063e6f083f4146104f8578063e7841ec01461053e57600080fd5b8063bc4c4b37116100d1578063bc4c4b3714610424578063be10b61414610444578063c0f306ef14610478578063cb83bcd61461049857600080fd5b80639c53c0ca146103c1578063ab6ddfa8146103e1578063ad7a672f1461040e57600080fd5b80634d6e5e0211610164578063715018a61161013e578063715018a6146103585780637bb7bed11461036d5780638da5cb5b1461038d57806393fcfe61146103ab57600080fd5b80634d6e5e02146102d55780634e7b827f146103025780636f2789ec1461034257600080fd5b8063204f11a8116101a0578063204f11a814610252578063226cfa3d146102725780633009a6091461029f57806331e79db0146102b557600080fd5b806303c83302146101da57806309bbedde146101e25780631694505e1461020657600080fd5b366101d5576101d36105ee565b005b600080fd5b6101d36105ee565b3480156101ee57600080fd5b50600a545b6040519081526020015b60405180910390f35b34801561021257600080fd5b5061023a7f000000000000000000000000000000000000000000000000000000000000000081565b6040516001600160a01b0390911681526020016101fd565b34801561025e57600080fd5b506101f361026d36600461195e565b610850565b34801561027e57600080fd5b506101f361028d366004611997565b60106020526000908152604090205481565b3480156102ab57600080fd5b506101f3600e5481565b3480156102c157600080fd5b506101d36102d0366004611997565b61088f565b3480156102e157600080fd5b506101f36102f0366004611997565b60096020526000908152604090205481565b34801561030e57600080fd5b5061033261031d366004611997565b600f6020526000908152604090205460ff1681565b60405190151581526020016101fd565b34801561034e57600080fd5b506101f360115481565b34801561036457600080fd5b506101d3610930565b34801561037957600080fd5b5061023a6103883660046119b4565b6109a4565b34801561039957600080fd5b506000546001600160a01b031661023a565b3480156103b757600080fd5b506101f360045481565b3480156103cd57600080fd5b506101d36103dc366004611997565b6109ce565b3480156103ed57600080fd5b506101f36103fc366004611997565b60076020526000908152604090205481565b34801561041a57600080fd5b506101f360085481565b34801561043057600080fd5b5061033261043f3660046119db565b6109dc565b34801561045057600080fd5b506101f37f000000000000000000000000000000000000000000000000000000000000000081565b34801561048457600080fd5b506101d3610493366004611997565b610aca565b3480156104a457600080fd5b506101f36104b336600461195e565b610b62565b3480156104c457600080fd5b506101f36104d336600461195e565b610b6e565b3480156104e457600080fd5b506101d36104f3366004611a09565b610be2565b34801561050457600080fd5b506101f361051336600461195e565b6001600160a01b03918216600090815260066020908152604080832093909416825291909152205490565b34801561054a57600080fd5b50600e546101f3565b34801561055f57600080fd5b5060035461023a906001600160a01b031681565b34801561057f57600080fd5b506101d361058e3660046119b4565b610c90565b34801561059f57600080fd5b506101d36105ae366004611997565b610df9565b3480156105bf57600080fd5b506105d36105ce3660046119b4565b610ee3565b604080519384526020840192909252908201526060016101fd565b6000600854116105fd57600080fd5b6003546040516370a0823160e01b81523060048201526000916001600160a01b0316906370a0823190602401602060405180830381865afa158015610646573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061066a9190611a35565b6003549091506106849034906001600160a01b0316611000565b6003546040516370a0823160e01b81523060048201526000916106fd9184916001600160a01b0316906370a0823190602401602060405180830381865afa1580156106d3573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906106f79190611a35565b90611186565b905080156107d9576008546107459061071a83600160801b6111c8565b6107249190611a64565b6003546001600160a01b03166000908152600160205260409020549061124a565b6003546001600160a01b0316600090815260016020908152604091829020929092555182815233917fa493a9229478c3fcd73f66d2cdeb7f94fd0f341da924d1054236d78454116511910160405180910390a26003546001600160a01b03166000908152600960205260409020546107bd908261124a565b6003546001600160a01b03166000908152600960205260409020555b6002546107e890600190611a86565b60045414610803576004546107fe906001611a9d565b610806565b60005b60048190555060026004548154811061082157610821611ab5565b600091825260209091200154600380546001600160a01b0319166001600160a01b039092169190911790555050565b6001600160a01b038083166000908152600660209081526040808320938516835292905290812054610886906106f78585610b6e565b90505b92915050565b6000546001600160a01b031633146108c25760405162461bcd60e51b81526004016108b990611acb565b60405180910390fd5b6001600160a01b0381166000908152600f60205260408120805460ff191660011790556108f09082906112a9565b6108f981611342565b6040516001600160a01b038216907fa878b31040b2e6d0a9a3d3361209db3908ba62014b0dca52adbaee451d128b2590600090a250565b6000546001600160a01b0316331461095a5760405162461bcd60e51b81526004016108b990611acb565b600080546040516001600160a01b03909116907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0908390a3600080546001600160a01b0319169055565b600281815481106109b457600080fd5b6000918252602090912001546001600160a01b0316905081565b6109d83382611475565b5050565b600080546001600160a01b03163314610a075760405162461bcd60e51b81526004016108b990611acb565b60008060005b600254811015610ac157610a488660028381548110610a2e57610a2e611ab5565b6000918252602090912001546001600160a01b0316611475565b92508215610aaf576001600160a01b038616600081815260106020526040908190204290555186151591907fa2c38e2d2fb7e3e1912d937fd1ca11ed6d51864dee4cfa7a7bf02becd7acf09290610aa29087815260200190565b60405180910390a3600191505b80610ab981611b00565b915050610a0d565b50949350505050565b6000546001600160a01b03163314610af45760405162461bcd60e51b81526004016108b990611acb565b6001600160a01b0381166000908152600f602052604090205460ff16610b1957600080fd5b6001600160a01b0381166000818152600f6020526040808220805460ff19169055517f40a78dcf8526b72f2eaf598af1c7e49c8d5fc577f6c8f1bed887f3e4dfa289329190a250565b60006108868383610850565b6001600160a01b03808216600081815260056020908152604080832094871683529381528382205460078252848320549383526001909152928120549092600160801b92610bd892610bd39291610bcd91610bc8916111c8565b6115a2565b906115b2565b6115f0565b6108869190611a64565b6000546001600160a01b03163314610c0c5760405162461bcd60e51b81526004016108b990611acb565b6001600160a01b0382166000908152600f602052604090205460ff166109d8577f00000000000000000000000000000000000000000000000000000000000000008110610c6c57610c5d82826112a9565b610c678282611603565b610c80565b610c778260006112a9565b610c8082611342565b610c8b8260016109dc565b505050565b6000546001600160a01b03163314610cba5760405162461bcd60e51b81526004016108b990611acb565b6104b08110158015610ccf5750620151808111155b610d4f5760405162461bcd60e51b815260206004820152604560248201527f4469766964656e645f547261636b65723a20636c61696d57616974206d75737460448201527f206265207570646174656420746f206265747765656e203120616e6420323420606482015264686f75727360d81b608482015260a4016108b9565b6011548103610dc65760405162461bcd60e51b815260206004820152603760248201527f4469766964656e645f547261636b65723a2043616e6e6f74207570646174652060448201527f636c61696d5761697420746f2073616d652076616c756500000000000000000060648201526084016108b9565b60115460405182907f474ea64804364a1e29a4487ddb63c3342a2dd826ccd8acf48825e680a0e6f20f90600090a3601155565b6000546001600160a01b03163314610e235760405162461bcd60e51b81526004016108b990611acb565b6001600160a01b038116610e885760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b60648201526084016108b9565b600080546040516001600160a01b03808516939216917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e091a3600080546001600160a01b0319166001600160a01b0392909216919091179055565b600a5460009081908190808203610f05575050600e5460009250829150610ff9565b600e546000805a90506000805b8984108015610f2057508582105b15610fe85784610f2f81611b00565b600a5490965086109050610f4257600094505b6000600a6000018681548110610f5a57610f5a611ab5565b60009182526020808320909101546001600160a01b03168083526010909152604090912054909150610f8b906116c1565b15610fae57610f9b8160016109dc565b15610fae5781610faa81611b00565b9250505b82610fb881611b00565b93505060005a905080851115610fdf57610fdc610fd58683611186565b879061124a565b95505b9350610f129050565b600e85905590975095509193505050505b9193909250565b6040805160028082526060820183526000926020830190803683370190505090507f00000000000000000000000000000000000000000000000000000000000000006001600160a01b031663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa15801561107f573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906110a39190611b19565b816000815181106110b6576110b6611ab5565b60200260200101906001600160a01b031690816001600160a01b03168152505081816001815181106110ea576110ea611ab5565b6001600160a01b03928316602091820292909201015260405163b6f9de9560e01b81527f00000000000000000000000000000000000000000000000000000000000000009091169063b6f9de9590859061114f90600090869030904290600401611b36565b6000604051808303818588803b15801561116857600080fd5b505af115801561117c573d6000803e3d6000fd5b5050505050505050565b600061088683836040518060400160405280601e81526020017f536166654d6174683a207375627472616374696f6e206f766572666c6f7700008152506116e8565b6000826000036111da57506000610889565b60006111e68385611ba0565b9050826111f38583611a64565b146108865760405162461bcd60e51b815260206004820152602160248201527f536166654d6174683a206d756c7469706c69636174696f6e206f766572666c6f6044820152607760f81b60648201526084016108b9565b6000806112578385611a9d565b9050838110156108865760405162461bcd60e51b815260206004820152601b60248201527f536166654d6174683a206164646974696f6e206f766572666c6f77000000000060448201526064016108b9565b6001600160a01b0382166000908152600760205260409020805490829055808211156113055760006112db8383611186565b90506112e78482611722565b80600860008282546112f99190611a9d565b90915550610c8b915050565b80821015610c8b5760006113198284611186565b9050611325848261182b565b80600860008282546113379190611a86565b909155505050505050565b6001600160a01b0381166000908152600d602052604090205460ff166113655750565b6001600160a01b0381166000908152600d60209081526040808320805460ff19169055600b8252808320839055600c909152812054600a549091906113ac90600190611a86565b90506000600a60000182815481106113c6576113c6611ab5565b60009182526020808320909101546001600160a01b03908116808452600c90925260408084208790559087168352822091909155600a805491925082918590811061141357611413611ab5565b600091825260209091200180546001600160a01b0319166001600160a01b0392909216919091179055600a80548061144d5761144d611bbf565b600082815260209020810160001990810180546001600160a01b031916905501905550505050565b6000806114828484610850565b90508015611598576001600160a01b038085166000908152600660209081526040808320938716835292905220546114ba908261124a565b6001600160a01b038086166000818152600660209081526040808320948916835293905282902092909255517fee503bee2bb6a87e57bc57db795f98137327401a0e7b7ce42e37926cc1a9ca4d906115159084815260200190565b60405180910390a260405163a9059cbb60e01b81526001600160a01b0385811660048301526024820183905284169063a9059cbb906044016020604051808303816000875af115801561156c573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906115909190611bd5565b509050610889565b5060009392505050565b6000818181121561088957600080fd5b6000806115bf8385611bf2565b9050600083121580156115d25750838112155b806115e757506000831280156115e757508381125b61088657600080fd5b6000808212156115ff57600080fd5b5090565b6001600160a01b0382166000908152600d602052604090205460ff1615611641576001600160a01b03919091166000908152600b6020526040902055565b6001600160a01b0382166000818152600d60209081526040808320805460ff19166001908117909155600b8352818420869055600a8054600c909452918420839055820181559091527fc65a7bb8d6351c1cf70c95a316cc6a92839c986682d98bc35f958f4883f9d2a80180546001600160a01b03191690911790555050565b6000428211156116d357506000919050565b6011546116e04284611186565b101592915050565b6000818484111561170c5760405162461bcd60e51b81526004016108b99190611c33565b5060006117198486611a86565b95945050505050565b60005b600254811015610c8b576117cd61177b610bc884600160006002878154811061175057611750611ab5565b60009182526020808320909101546001600160a01b03168352820192909252604001902054906111c8565b600560006002858154811061179257611792611ab5565b60009182526020808320909101546001600160a01b039081168452838201949094526040928301822093891682529290925290205490611909565b60056000600284815481106117e4576117e4611ab5565b60009182526020808320909101546001600160a01b03908116845283820194909452604092830182209388168252929092529020558061182381611b00565b915050611725565b60005b600254811015610c8b576118ab611859610bc884600160006002878154811061175057611750611ab5565b600560006002858154811061187057611870611ab5565b60009182526020808320909101546001600160a01b0390811684528382019490945260409283018220938916825292909252902054906115b2565b60056000600284815481106118c2576118c2611ab5565b60009182526020808320909101546001600160a01b03908116845283820194909452604092830182209388168252929092529020558061190181611b00565b91505061182e565b6000806119168385611c88565b9050600083121580156119295750838113155b806115e757506000831280156115e7575083811361088657600080fd5b6001600160a01b038116811461195b57600080fd5b50565b6000806040838503121561197157600080fd5b823561197c81611946565b9150602083013561198c81611946565b809150509250929050565b6000602082840312156119a957600080fd5b813561088681611946565b6000602082840312156119c657600080fd5b5035919050565b801515811461195b57600080fd5b600080604083850312156119ee57600080fd5b82356119f981611946565b9150602083013561198c816119cd565b60008060408385031215611a1c57600080fd5b8235611a2781611946565b946020939093013593505050565b600060208284031215611a4757600080fd5b5051919050565b634e487b7160e01b600052601160045260246000fd5b600082611a8157634e487b7160e01b600052601260045260246000fd5b500490565b600082821015611a9857611a98611a4e565b500390565b60008219821115611ab057611ab0611a4e565b500190565b634e487b7160e01b600052603260045260246000fd5b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b600060018201611b1257611b12611a4e565b5060010190565b600060208284031215611b2b57600080fd5b815161088681611946565b600060808201868352602060808185015281875180845260a086019150828901935060005b81811015611b805784516001600160a01b031683529383019391830191600101611b5b565b50506001600160a01b039690961660408501525050506060015292915050565b6000816000190483118215151615611bba57611bba611a4e565b500290565b634e487b7160e01b600052603160045260246000fd5b600060208284031215611be757600080fd5b8151610886816119cd565b600080821280156001600160ff1b0384900385131615611c1457611c14611a4e565b600160ff1b8390038412811615611c2d57611c2d611a4e565b50500190565b600060208083528351808285015260005b81811015611c6057858101830151858201604001528201611c44565b81811115611c72576000604083870101525b50601f01601f1916929092016040019392505050565b60008083128015600160ff1b850184121615611ca657611ca6611a4e565b6001600160ff1b0384018313811615611cc157611cc1611a4e565b5050039056fea26469706673582212206c908faf020b9ac2d7dc259a1b7e25d1ce821c7d68d09a7d9911152291059f8164736f6c634300080f00334f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572

Deployed Bytecode

0x6080604052600436106103f35760003560e01c8063763cef4911610208578063c024666811610118578063e2f45605116100ab578063ee44b44e1161007a578063ee44b44e14610b73578063f2fde38b14610b89578063f54afa7814610ba9578063f8b45b0514610bbf578063fd361d0e14610bd557600080fd5b8063e2f4560514610b12578063e7841ec014610b28578063e98030c714610b3d578063ee40166e14610b5d57600080fd5b8063ccb61358116100e7578063ccb6135814610a8a578063ccd146b214610aa0578063d0a3981414610ab6578063dd62ed3e14610acc57600080fd5b8063c024666814610a14578063c0f306ef14610a34578063c18bc19514610a54578063c8c8ebe414610a7457600080fd5b80639a36f9321161019b578063a457c2d71161016a578063a457c2d71461096f578063a9059cbb1461098f578063b62496f5146109af578063b9e93700146109df578063bbc0c742146109f557600080fd5b80639a36f9321461090e5780639a7a23d6146109245780639c1b8af514610944578063a26579ad1461095a57600080fd5b80638a8c523c116101d75780638a8c523c146108a65780638da5cb5b146108bb578063924de9b7146108d957806395d89b41146108f957600080fd5b8063763cef4914610846578063783102eb1461085b5780637fa787ba14610871578063871c128d1461088657600080fd5b806349bd5a5e116103035780636843cd8411610296578063712c298511610265578063712c2985146107d2578063715018a6146107e757806371778e7d146107fc578063751039fc146108115780637571336a1461082657600080fd5b80636843cd84146107525780636ddd171314610772578063700bb1911461079257806370a08231146107b257600080fd5b80634fbee193116102d25780634fbee193146106c45780635645cd86146106fd57806364b0f6531461071d57806366ca9b831461073257600080fd5b806349bd5a5e1461064b5780634a62bb651461067f5780634af6f7ee146106995780634e71d92d146106af57600080fd5b806318160ddd1161038657806323b872dd1161035557806323b872dd146105af5780632c1f5216146105cf578063313ce567146105ef57806331e79db01461060b578063395093511461062b57600080fd5b806318160ddd146105445780631a8145bb14610559578063203e727e1461056f578063204f11a81461058f57600080fd5b8063099d0d30116103c2578063099d0d301461049c5780630f4432e3146104b257806310d5de53146104c85780631694505e146104f857600080fd5b806302dbd8f8146103ff578063058054c91461042157806306fdde031461044a578063095ea7b31461046c57600080fd5b366103fa57005b600080fd5b34801561040b57600080fd5b5061041f61041a366004613017565b610bef565b005b34801561042d57600080fd5b5061043760165481565b6040519081526020015b60405180910390f35b34801561045657600080fd5b5061045f610ca6565b6040516104419190613039565b34801561047857600080fd5b5061048c6104873660046130a3565b610d38565b6040519015158152602001610441565b3480156104a857600080fd5b50610437600f5481565b3480156104be57600080fd5b50610437600a5481565b3480156104d457600080fd5b5061048c6104e33660046130cf565b601b6020526000908152604090205460ff1681565b34801561050457600080fd5b5061052c7f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d81565b6040516001600160a01b039091168152602001610441565b34801561055057600080fd5b50600254610437565b34801561056557600080fd5b5061043760145481565b34801561057b57600080fd5b5061041f61058a3660046130ec565b610d4f565b34801561059b57600080fd5b506104376105aa366004613105565b610e2b565b3480156105bb57600080fd5b5061048c6105ca36600461313e565b610ea9565b3480156105db57600080fd5b5060065461052c906001600160a01b031681565b3480156105fb57600080fd5b5060405160128152602001610441565b34801561061757600080fd5b5061041f6106263660046130cf565b610f53565b34801561063757600080fd5b5061048c6106463660046130a3565b610fe0565b34801561065757600080fd5b5061052c7f000000000000000000000000bcd430dd0ff5420fb0ec134f2a2bb6718790da8181565b34801561068b57600080fd5b50600c5461048c9060ff1681565b3480156106a557600080fd5b5061043760115481565b3480156106bb57600080fd5b5061041f61101c565b3480156106d057600080fd5b5061048c6106df3660046130cf565b6001600160a01b03166000908152601a602052604090205460ff1690565b34801561070957600080fd5b506104376107183660046130cf565b611094565b34801561072957600080fd5b50610437611104565b34801561073e57600080fd5b5061041f61074d366004613017565b611177565b34801561075e57600080fd5b5061043761076d3660046130cf565b611221565b34801561077e57600080fd5b50600c5461048c9062010000900460ff1681565b34801561079e57600080fd5b5061041f6107ad3660046130ec565b611254565b3480156107be57600080fd5b506104376107cd3660046130cf565b611327565b3480156107de57600080fd5b50610437611342565b3480156107f357600080fd5b5061041f611366565b34801561080857600080fd5b506104376113da565b34801561081d57600080fd5b5061048c611424565b34801561083257600080fd5b5061041f61084136600461318d565b611461565b34801561085257600080fd5b5061041f6114eb565b34801561086757600080fd5b5061043760195481565b34801561087d57600080fd5b5061041f6116c5565b34801561089257600080fd5b5061041f6108a13660046130ec565b61177c565b3480156108b257600080fd5b5061041f6118bf565b3480156108c757600080fd5b506005546001600160a01b031661052c565b3480156108e557600080fd5b5061041f6108f43660046131bb565b611958565b34801561090557600080fd5b5061045f61199e565b34801561091a57600080fd5b506104376103e881565b34801561093057600080fd5b5061041f61093f36600461318d565b6119ad565b34801561095057600080fd5b5061043760155481565b34801561096657600080fd5b50610437611a96565b34801561097b57600080fd5b5061048c61098a3660046130a3565b611ae0565b34801561099b57600080fd5b5061048c6109aa3660046130a3565b611b79565b3480156109bb57600080fd5b5061048c6109ca3660046130cf565b601c6020526000908152604090205460ff1681565b3480156109eb57600080fd5b5061043760105481565b348015610a0157600080fd5b50600c5461048c90610100900460ff1681565b348015610a2057600080fd5b5061041f610a2f36600461318d565b611b86565b348015610a4057600080fd5b5061041f610a4f3660046130cf565b611c08565b348015610a6057600080fd5b5061041f610a6f3660046130ec565b611c64565b348015610a8057600080fd5b5061043760075481565b348015610a9657600080fd5b5061043760125481565b348015610aac57600080fd5b50610437600e5481565b348015610ac257600080fd5b50610437600d5481565b348015610ad857600080fd5b50610437610ae7366004613105565b6001600160a01b03918216600090815260016020908152604080832093909416825291909152205490565b348015610b1e57600080fd5b5061043760085481565b348015610b3457600080fd5b50610437611d32565b348015610b4957600080fd5b5061041f610b583660046130ec565b611d7c565b348015610b6957600080fd5b50610437600b5481565b348015610b7f57600080fd5b5061043760175481565b348015610b9557600080fd5b5061041f610ba43660046130cf565b611dd7565b348015610bb557600080fd5b5061043760135481565b348015610bcb57600080fd5b5061043760095481565b348015610be157600080fd5b5060185461048c9060ff1681565b6005546001600160a01b03163314610c225760405162461bcd60e51b8152600401610c19906131d8565b60405180910390fd5b600e829055600f819055610c368183613223565b600d556305f5e100610c4760025490565b610c51919061323b565b600d541115610ca25760405162461bcd60e51b815260206004820152601d60248201527f4d757374206b656570206665657320617420313025206f72206c6573730000006044820152606401610c19565b5050565b606060038054610cb59061325d565b80601f0160208091040260200160405190810160405280929190818152602001828054610ce19061325d565b8015610d2e5780601f10610d0357610100808354040283529160200191610d2e565b820191906000526020600020905b815481529060010190602001808311610d1157829003601f168201915b5050505050905090565b6000610d45338484611ec2565b5060015b92915050565b6005546001600160a01b03163314610d795760405162461bcd60e51b8152600401610c19906131d8565b670de0b6b3a76400006103e8610d8e60025490565b610d99906001613297565b610da3919061323b565b610dad919061323b565b8111610e135760405162461bcd60e51b815260206004820152602f60248201527f43616e6e6f7420736574206d61785472616e73616374696f6e416d6f756e742060448201526e6c6f776572207468616e20302e312560881b6064820152608401610c19565b610e2581670de0b6b3a7640000613297565b60075550565b600654604051630409e23560e31b81526001600160a01b0384811660048301528381166024830152600092169063204f11a890604401602060405180830381865afa158015610e7e573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610ea291906132b6565b9392505050565b6000610eb6848484611fe6565b6001600160a01b038416600090815260016020908152604080832033845290915290205482811015610f3b5760405162461bcd60e51b815260206004820152602860248201527f45524332303a207472616e7366657220616d6f756e74206578636565647320616044820152676c6c6f77616e636560c01b6064820152608401610c19565b610f488533858403611ec2565b506001949350505050565b6005546001600160a01b03163314610f7d5760405162461bcd60e51b8152600401610c19906131d8565b60065460405163031e79db60e41b81526001600160a01b038381166004830152909116906331e79db0906024015b600060405180830381600087803b158015610fc557600080fd5b505af1158015610fd9573d6000803e3d6000fd5b5050505050565b3360008181526001602090815260408083206001600160a01b03871684529091528120549091610d45918590611017908690613223565b611ec2565b60065460405163bc4c4b3760e01b8152336004820152600060248201526001600160a01b039091169063bc4c4b37906044016020604051808303816000875af115801561106d573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061109191906132cf565b50565b6006546040516326b72f0160e11b81526001600160a01b0383811660048301526000921690634d6e5e02906024015b602060405180830381865afa1580156110e0573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610d4991906132b6565b600654604080516304ddf6ef60e11b815290516000926001600160a01b0316916309bbedde9160048083019260209291908290030181865afa15801561114e573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061117291906132b6565b905090565b6005546001600160a01b031633146111a15760405162461bcd60e51b8152600401610c19906131d8565b601182905560128190556111b58183613223565b6010556305f5e1006111c660025490565b6111d0919061323b565b6010541115610ca25760405162461bcd60e51b815260206004820152601d60248201527f4d757374206b656570206665657320617420313025206f72206c6573730000006044820152606401610c19565b60065460405163156dbbf560e31b81526001600160a01b038381166004830152600092169063ab6ddfa8906024016110c3565b6006546040516001624d3b8760e01b0319815260048101839052600091829182916001600160a01b03169063ffb2c479906024016060604051808303816000875af11580156112a7573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906112cb91906132ec565b604080518481526020810184905290810182905260608101889052929550909350915032906000907fc864333d6121033635ab41b29ae52f10a22cf4438c3e4f1c4c68518feb2f8a98906080015b60405180910390a350505050565b6001600160a01b031660009081526020819052604090205490565b60185460009060ff1615611360576017546016546111729190613223565b50600090565b6005546001600160a01b031633146113905760405162461bcd60e51b8152600401610c19906131d8565b6005546040516000916001600160a01b0316907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0908390a3600580546001600160a01b0319169055565b6006546040805163ad7a672f60e01b815290516000926001600160a01b03169163ad7a672f9160048083019260209291908290030181865afa15801561114e573d6000803e3d6000fd5b6005546000906001600160a01b031633146114515760405162461bcd60e51b8152600401610c19906131d8565b50600c805460ff19169055600190565b6005546001600160a01b0316331461148b5760405162461bcd60e51b8152600401610c19906131d8565b6001600160a01b0382166000818152601b6020908152604091829020805460ff191685151590811790915591519182527f575f9d01836c9206322151b9e9ec3f2b77b87e71176933b9b44d2d732f768d9591015b60405180910390a25050565b6005546001600160a01b031633146115155760405162461bcd60e51b8152600401610c19906131d8565b61151d611342565b421015801561153357506000611531611342565b115b6115785760405162461bcd60e51b815260206004820152601660248201527526bab9ba103932b8bab2b9ba1030b732103bb0b4ba1760511b6044820152606401610c19565b600060168190556018805460ff191690556019546040516370a0823160e01b8152306004820152606491907f000000000000000000000000bcd430dd0ff5420fb0ec134f2a2bb6718790da816001600160a01b0316906370a0823190602401602060405180830381865afa1580156115f4573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061161891906132b6565b6116229190613297565b61162c919061323b565b600060195560405163a9059cbb60e01b8152336004820152602481018290529091507f000000000000000000000000bcd430dd0ff5420fb0ec134f2a2bb6718790da816001600160a01b03169063a9059cbb906044016020604051808303816000875af11580156116a1573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610ca291906132cf565b6005546001600160a01b031633146116ef5760405162461bcd60e51b8152600401610c19906131d8565b604051600090339047908381818185875af1925050503d8060008114611731576040519150601f19603f3d011682016040523d82523d6000602084013e611736565b606091505b50509050806110915760405162461bcd60e51b81526020600482015260126024820152716661696c656420746f20776974686472617760701b6044820152606401610c19565b6005546001600160a01b031633146117a65760405162461bcd60e51b8152600401610c19906131d8565b62030d4081101580156117bc57506207a1208111155b6118265760405162461bcd60e51b815260206004820152603560248201527f20676173466f7250726f63657373696e67206d7573742062652062657477656560448201527406e203230302c30303020616e64203530302c30303605c1b6064820152608401610c19565b601554810361188c5760405162461bcd60e51b815260206004820152602c60248201527f43616e6e6f742075706461746520676173466f7250726f63657373696e67207460448201526b6f2073616d652076616c756560a01b6064820152608401610c19565b60155460405182907f40d7e40e79af4e8e5a9b3c57030d8ea93f13d669c06d448c4d631d4ae7d23db790600090a3601555565b6005546001600160a01b031633146118e95760405162461bcd60e51b8152600401610c19906131d8565b600c54610100900460ff16156119415760405162461bcd60e51b815260206004820152601860248201527f43616e6e6f742072652d656e61626c652074726164696e6700000000000000006044820152606401610c19565b600c805462ffff0019166201010017905543600b55565b6005546001600160a01b031633146119825760405162461bcd60e51b8152600401610c19906131d8565b600c8054911515620100000262ff000019909216919091179055565b606060048054610cb59061325d565b6005546001600160a01b031633146119d75760405162461bcd60e51b8152600401610c19906131d8565b7f000000000000000000000000bcd430dd0ff5420fb0ec134f2a2bb6718790da816001600160a01b0316826001600160a01b031603611a8c5760405162461bcd60e51b815260206004820152604560248201527f5468652050616e63616b655377617020706169722063616e6e6f74206265207260448201527f656d6f7665642066726f6d206175746f6d617465644d61726b65744d616b6572606482015264506169727360d81b608482015260a401610c19565b610ca2828261286c565b60065460408051631bc9e27b60e21b815290516000926001600160a01b031691636f2789ec9160048083019260209291908290030181865afa15801561114e573d6000803e3d6000fd5b3360009081526001602090815260408083206001600160a01b038616845290915281205482811015611b625760405162461bcd60e51b815260206004820152602560248201527f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f77604482015264207a65726f60d81b6064820152608401610c19565b611b6f3385858403611ec2565b5060019392505050565b6000610d45338484611fe6565b6005546001600160a01b03163314611bb05760405162461bcd60e51b8152600401610c19906131d8565b6001600160a01b0382166000818152601a6020908152604091829020805460ff191685151590811790915591519182527f9d8f7706ea1113d1a167b526eca956215946dd36cc7df39eb16180222d8b5df791016114df565b6005546001600160a01b03163314611c325760405162461bcd60e51b8152600401610c19906131d8565b60065460405163c0f306ef60e01b81526001600160a01b0383811660048301529091169063c0f306ef90602401610fab565b6005546001600160a01b03163314611c8e5760405162461bcd60e51b8152600401610c19906131d8565b670de0b6b3a76400006064611ca260025490565b611cad906001613297565b611cb7919061323b565b611cc1919061323b565b8111611d1a5760405162461bcd60e51b815260206004820152602260248201527f43616e6e6f7420736574206d617857616c6c6574206c6f776572207468616e20604482015261312560f01b6064820152608401610c19565b611d2c81670de0b6b3a7640000613297565b60095550565b6006546040805163039e107b60e61b815290516000926001600160a01b03169163e7841ec09160048083019260209291908290030181865afa15801561114e573d6000803e3d6000fd5b6005546001600160a01b03163314611da65760405162461bcd60e51b8152600401610c19906131d8565b60065460405163e98030c760e01b8152600481018390526001600160a01b039091169063e98030c790602401610fab565b6005546001600160a01b03163314611e015760405162461bcd60e51b8152600401610c19906131d8565b6001600160a01b038116611e665760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610c19565b6005546040516001600160a01b038084169216907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a3600580546001600160a01b0319166001600160a01b0392909216919091179055565b6001600160a01b038316611f245760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646044820152637265737360e01b6064820152608401610c19565b6001600160a01b038216611f855760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604482015261737360f01b6064820152608401610c19565b6001600160a01b0383811660008181526001602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925910160405180910390a3505050565b6001600160a01b03831661200c5760405162461bcd60e51b8152600401610c199061331a565b6001600160a01b0382166120325760405162461bcd60e51b8152600401610c199061335f565b8060000361204b576120468383600061293c565b505050565b600c54610100900460ff166120e5576001600160a01b0383166000908152601a602052604090205460ff168061209957506001600160a01b0382166000908152601a602052604090205460ff165b6120e55760405162461bcd60e51b815260206004820152601a60248201527f54726164696e67206973206e6f7420616374697665207965742e0000000000006044820152606401610c19565b600c5460ff16156123bc576005546001600160a01b0384811691161480159061211c57506005546001600160a01b03838116911614155b801561213057506001600160a01b03821615155b801561214757506001600160a01b03821661dead14155b801561215d5750600554600160a01b900460ff16155b156123bc576001600160a01b0383166000908152601c602052604090205460ff1680156121a357506001600160a01b0382166000908152601b602052604090205460ff16155b15612281576007548111156122185760405162461bcd60e51b815260206004820152603560248201527f427579207472616e7366657220616d6f756e742065786365656473207468652060448201527436b0bc2a3930b739b0b1ba34b7b720b6b7bab73a1760591b6064820152608401610c19565b60095461222483611327565b61222e9083613223565b111561227c5760405162461bcd60e51b815260206004820152601b60248201527f556e61626c6520746f20657863656564204d61782057616c6c657400000000006044820152606401610c19565b6123bc565b6001600160a01b0382166000908152601c602052604090205460ff1680156122c257506001600160a01b0383166000908152601b602052604090205460ff16155b156123385760075481111561227c5760405162461bcd60e51b815260206004820152603660248201527f53656c6c207472616e7366657220616d6f756e742065786365656473207468656044820152751036b0bc2a3930b739b0b1ba34b7b720b6b7bab73a1760511b6064820152608401610c19565b6001600160a01b0382166000908152601b602052604090205460ff166123bc5760095461236483611327565b61236e9083613223565b11156123bc5760405162461bcd60e51b815260206004820152601b60248201527f556e61626c6520746f20657863656564204d61782057616c6c657400000000006044820152606401610c19565b60006123c730611327565b600854909150811080159081906123e65750600c5462010000900460ff165b80156123fc5750600554600160a01b900460ff16155b801561242157506001600160a01b0385166000908152601c602052604090205460ff16155b801561244657506001600160a01b0385166000908152601a602052604090205460ff16155b801561246b57506001600160a01b0384166000908152601a602052604090205460ff16155b15612499576005805460ff60a01b1916600160a01b17905561248b612a83565b6005805460ff60a01b191690555b6005546001600160a01b0386166000908152601a602052604090205460ff600160a01b9092048216159116806124e757506001600160a01b0385166000908152601a602052604090205460ff165b156124f0575060005b6000811561267d576001600160a01b0386166000908152601c602052604090205460ff16801561252257506000600d54115b156125b1576125486103e8612542600d5488612c0f90919063ffffffff16565b90612c91565b9050600d54600e548261255b9190613297565b612565919061323b565b601360008282546125769190613223565b9091555050600d54600f5461258b9083613297565b612595919061323b565b601460008282546125a69190613223565b9091555061265f9050565b6001600160a01b0387166000908152601c602052604090205460ff1680156125db57506000601054115b1561265f576125fb6103e861254260105488612c0f90919063ffffffff16565b90506010546011548261260e9190613297565b612618919061323b565b601360008282546126299190613223565b909155505060105460125461263e9083613297565b612648919061323b565b601460008282546126599190613223565b90915550505b80156126705761267087308361293c565b61267a81866133a2565b94505b61268887878761293c565b6006546001600160a01b031663e30443bc886126a381611327565b6040516001600160e01b031960e085901b1681526001600160a01b0390921660048301526024820152604401600060405180830381600087803b1580156126e957600080fd5b505af11580156126fd573d6000803e3d6000fd5b50506006546001600160a01b0316915063e30443bc90508761271e81611327565b6040516001600160e01b031960e085901b1681526001600160a01b0390921660048301526024820152604401600060405180830381600087803b15801561276457600080fd5b505af1158015612778573d6000803e3d6000fd5b5050600554600160a01b900460ff1615915050801561279957506000601554115b15612863576015546006546040516001624d3b8760e01b03198152600481018390526001600160a01b039091169063ffb2c479906024016060604051808303816000875af192505050801561280b575060408051601f3d908101601f19168201909252612808918101906132ec565b60015b156128615760408051848152602081018490529081018290526060810185905232906001907fc864333d6121033635ab41b29ae52f10a22cf4438c3e4f1c4c68518feb2f8a989060800160405180910390a35050505b505b50505050505050565b6001600160a01b0382166000908152601c60205260409020805460ff191682151517905561289a8282611461565b80156129005760065460405163031e79db60e41b81526001600160a01b038481166004830152909116906331e79db090602401600060405180830381600087803b1580156128e757600080fd5b505af11580156128fb573d6000803e3d6000fd5b505050505b604051811515906001600160a01b038416907fffa9187bf1f18bf477bd0ea1bcbb64e93b6a98132473929edfce215cd9b16fab90600090a35050565b6001600160a01b0383166129625760405162461bcd60e51b8152600401610c199061331a565b6001600160a01b0382166129885760405162461bcd60e51b8152600401610c199061335f565b6001600160a01b03831660009081526020819052604090205481811015612a005760405162461bcd60e51b815260206004820152602660248201527f45524332303a207472616e7366657220616d6f756e7420657863656564732062604482015265616c616e636560d01b6064820152608401610c19565b6001600160a01b03808516600090815260208190526040808220858503905591851681529081208054849290612a37908490613223565b92505081905550826001600160a01b0316846001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8460405161131991815260200190565b6000612a8e30611327565b90506000601354601454612aa29190613223565b9050811580612aaf575080155b15612ab8575050565b600060028260145485612acb9190613297565b612ad5919061323b565b612adf919061323b565b90506000612aed8483612cd3565b905047612af982612d15565b6000612b054783612cd3565b90506000612b336002601454612b1b919061323b565b612b2590886133a2565b601354612542908590612c0f565b90506000612b4182846133a2565b6000601481905560135590508515801590612b5c5750600081115b15612baf57612b6b8682612ed5565b601454604080518781526020810184905280820192909252517f17bbfb9a6069321b6ded73bd96327c9e6b7212a5cd51ff219cd61370acafb5619181900360600190a15b6006546040516000916001600160a01b03169084908381818185875af1925050503d8060008114612bfc576040519150601f19603f3d011682016040523d82523d6000602084013e612c01565b606091505b505050505050505050505050565b600082600003612c2157506000610d49565b6000612c2d8385613297565b905082612c3a858361323b565b14610ea25760405162461bcd60e51b815260206004820152602160248201527f536166654d6174683a206d756c7469706c69636174696f6e206f766572666c6f6044820152607760f81b6064820152608401610c19565b6000610ea283836040518060400160405280601a81526020017f536166654d6174683a206469766973696f6e206279207a65726f000000000000815250612faf565b6000610ea283836040518060400160405280601e81526020017f536166654d6174683a207375627472616374696f6e206f766572666c6f770000815250612fe6565b6040805160028082526060820183526000926020830190803683370190505090503081600081518110612d4a57612d4a6133b9565b60200260200101906001600160a01b031690816001600160a01b0316815250507f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d6001600160a01b031663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa158015612dc8573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190612dec91906133cf565b81600181518110612dff57612dff6133b9565b60200260200101906001600160a01b031690816001600160a01b031681525050612e4a307f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d84611ec2565b60405163791ac94760e01b81526001600160a01b037f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d169063791ac94790612e9f9085906000908690309042906004016133ec565b600060405180830381600087803b158015612eb957600080fd5b505af1158015612ecd573d6000803e3d6000fd5b505050505050565b612f00307f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d84611ec2565b60405163f305d71960e01b815230600482015260248101839052600060448201819052606482015261dead60848201524260a48201527f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d6001600160a01b03169063f305d71990839060c40160606040518083038185885af1158015612f8a573d6000803e3d6000fd5b50505050506040513d601f19601f82011682018060405250810190610fd991906132ec565b60008183612fd05760405162461bcd60e51b8152600401610c199190613039565b506000612fdd848661323b565b95945050505050565b6000818484111561300a5760405162461bcd60e51b8152600401610c199190613039565b506000612fdd84866133a2565b6000806040838503121561302a57600080fd5b50508035926020909101359150565b600060208083528351808285015260005b818110156130665785810183015185820160400152820161304a565b81811115613078576000604083870101525b50601f01601f1916929092016040019392505050565b6001600160a01b038116811461109157600080fd5b600080604083850312156130b657600080fd5b82356130c18161308e565b946020939093013593505050565b6000602082840312156130e157600080fd5b8135610ea28161308e565b6000602082840312156130fe57600080fd5b5035919050565b6000806040838503121561311857600080fd5b82356131238161308e565b915060208301356131338161308e565b809150509250929050565b60008060006060848603121561315357600080fd5b833561315e8161308e565b9250602084013561316e8161308e565b929592945050506040919091013590565b801515811461109157600080fd5b600080604083850312156131a057600080fd5b82356131ab8161308e565b915060208301356131338161317f565b6000602082840312156131cd57600080fd5b8135610ea28161317f565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b634e487b7160e01b600052601160045260246000fd5b600082198211156132365761323661320d565b500190565b60008261325857634e487b7160e01b600052601260045260246000fd5b500490565b600181811c9082168061327157607f821691505b60208210810361329157634e487b7160e01b600052602260045260246000fd5b50919050565b60008160001904831182151516156132b1576132b161320d565b500290565b6000602082840312156132c857600080fd5b5051919050565b6000602082840312156132e157600080fd5b8151610ea28161317f565b60008060006060848603121561330157600080fd5b8351925060208401519150604084015190509250925092565b60208082526025908201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604082015264647265737360d81b606082015260800190565b60208082526023908201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260408201526265737360e81b606082015260800190565b6000828210156133b4576133b461320d565b500390565b634e487b7160e01b600052603260045260246000fd5b6000602082840312156133e157600080fd5b8151610ea28161308e565b600060a082018783526020878185015260a0604085015281875180845260c086019150828901935060005b8181101561343c5784516001600160a01b031683529383019391830191600101613417565b50506001600160a01b0396909616606085015250505060800152939250505056fea2646970667358221220b954e92147e8a98337cfa126ffe88999c4a2693bbdc426158c86b2e809142d2864736f6c634300080f0033

Deployed Bytecode Sourcemap

39508:17708:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;45944:326;;;;;;;;;;-1:-1:-1;45944:326:0;;;;;:::i;:::-;;:::i;:::-;;40592:41;;;;;;;;;;;;;;;;;;;413:25:1;;;401:2;386:18;40592:41:0;;;;;;;;4344:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;5258:169::-;;;;;;;;;;-1:-1:-1;5258:169:0;;;;;:::i;:::-;;:::i;:::-;;;1672:14:1;;1665:22;1647:41;;1635:2;1620:18;5258:169:0;1507:187:1;40308:31:0;;;;;;;;;;;;;;;;39895:39;;;;;;;;;;;;;;;;40894:64;;;;;;;;;;-1:-1:-1;40894:64:0;;;;;:::i;:::-;;;;;;;;;;;;;;;;39590:51;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;2142:32:1;;;2124:51;;2112:2;2097:18;39590:51:0;1951:230:1;4665:108:0;;;;;;;;;;-1:-1:-1;4753:12:0;;4665:108;;40502:33;;;;;;;;;;;;;;;;45145:233;;;;;;;;;;-1:-1:-1;45145:233:0;;;;;:::i;:::-;;:::i;48257:183::-;;;;;;;;;;-1:-1:-1;48257:183:0;;;;;:::i;:::-;;:::i;5435:492::-;;;;;;;;;;-1:-1:-1;5435:492:0;;;;;:::i;:::-;;:::i;39725:38::-;;;;;;;;;;-1:-1:-1;39725:38:0;;;;-1:-1:-1;;;;;39725:38:0;;;4564:93;;;;;;;;;;-1:-1:-1;4564:93:0;;4647:2;3607:36:1;;3595:2;3580:18;4564:93:0;3465:184:1;44299:130:0;;;;;;;;;;-1:-1:-1;44299:130:0;;;;;:::i;:::-;;:::i;5935:215::-;;;;;;;;;;-1:-1:-1;5935:215:0;;;;;:::i;:::-;;:::i;39648:38::-;;;;;;;;;;;;;;;40063:33;;;;;;;;;;-1:-1:-1;40063:33:0;;;;;;;;40386:28;;;;;;;;;;;;;;;;49234:97;;;;;;;;;;;;;:::i;48122:127::-;;;;;;;;;;-1:-1:-1;48122:127:0;;;;;:::i;:::-;-1:-1:-1;;;;;48213:28:0;48189:4;48213:28;;;:19;:28;;;;;;;;;48122:127;47943:171;;;;;;;;;;-1:-1:-1;47943:171:0;;;;;:::i;:::-;;:::i;49473:141::-;;;;;;;;;;;;;:::i;45613:319::-;;;;;;;;;;-1:-1:-1;45613:319:0;;;;;:::i;:::-;;:::i;48445:136::-;;;;;;;;;;-1:-1:-1;48445:136:0;;;;;:::i;:::-;;:::i;40143:31::-;;;;;;;;;;-1:-1:-1;40143:31:0;;;;;;;;;;;48967:259;;;;;;;;;;-1:-1:-1;48967:259:0;;;;;:::i;:::-;;:::i;4781:127::-;;;;;;;;;;-1:-1:-1;4781:127:0;;;;;:::i;:::-;;:::i;56416:281::-;;;;;;;;;;;;;:::i;16525:148::-;;;;;;;;;;;;;:::i;49626:119::-;;;;;;;;;;;;;:::i;49757:120::-;;;;;;;;;;;;;:::i;46278:202::-;;;;;;;;;;-1:-1:-1;46278:202:0;;;;;:::i;:::-;;:::i;56705:501::-;;;;;;;;;;;;;:::i;40739:31::-;;;;;;;;;;;;;;;;56211:191;;;;;;;;;;;;;:::i;47292:395::-;;;;;;;;;;-1:-1:-1;47292:395:0;;;;;:::i;:::-;;:::i;44718:218::-;;;;;;;;;;;;;:::i;15883:79::-;;;;;;;;;;-1:-1:-1;15948:6:0;;-1:-1:-1;;;;;15948:6:0;15883:79;;45036:101;;;;;;;;;;-1:-1:-1;45036:101:0;;;;;:::i;:::-;;:::i;4452:104::-;;;;;;;;;;;;;:::i;40187:41::-;;;;;;;;;;;;40224:4;40187:41;;46680:258;;;;;;;;;;-1:-1:-1;46680:258:0;;;;;:::i;:::-;;:::i;40548:35::-;;;;;;;;;;;;;;;;47827:108;;;;;;;;;;;;;:::i;6158:413::-;;;;;;;;;;-1:-1:-1;6158:413:0;;;;;:::i;:::-;;:::i;4916:175::-;;;;;;;;;;-1:-1:-1;4916:175:0;;;;;:::i;:::-;;:::i;41117:58::-;;;;;;;;;;-1:-1:-1;41117:58:0;;;;;:::i;:::-;;;;;;;;;;;;;;;;40352:27;;;;;;;;;;;;;;;;40103:33;;;;;;;;;;-1:-1:-1;40103:33:0;;;;;;;;;;;46488:184;;;;;;;;;;-1:-1:-1;46488:184:0;;;;;:::i;:::-;;:::i;44534:126::-;;;;;;;;;;-1:-1:-1;44534:126:0;;;;;:::i;:::-;;:::i;45390:211::-;;;;;;;;;;-1:-1:-1;45390:211:0;;;;;:::i;:::-;;:::i;39776:35::-;;;;;;;;;;;;;;;;40421:30;;;;;;;;;;;;;;;;40272:29;;;;;;;;;;;;;;;;40237:28;;;;;;;;;;;;;;;;5099:151;;;;;;;;;;-1:-1:-1;5099:151:0;;;;;:::i;:::-;-1:-1:-1;;;;;5215:18:0;;;5188:7;5215:18;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;5099:151;39818:33;;;;;;;;;;;;;;;;49339:126;;;;;;;;;;;;;:::i;47695:124::-;;;;;;;;;;-1:-1:-1;47695:124:0;;;;;:::i;:::-;;:::i;39980:37::-;;;;;;;;;;;;;;;;40640:49;;;;;;;;;;;;;;;;16828:244;;;;;;;;;;-1:-1:-1;16828:244:0;;;;;:::i;:::-;;:::i;40464:31::-;;;;;;;;;;;;;;;;39858:24;;;;;;;;;;;;;;;;40696:36;;;;;;;;;;-1:-1:-1;40696:36:0;;;;;;;;45944:326;16095:6;;-1:-1:-1;;;;;16095:6:0;445:10;16095:22;16087:67;;;;-1:-1:-1;;;16087:67:0;;;;;;;:::i;:::-;;;;;;;;;46042:14:::1;:28:::0;;;46081:16:::1;:32:::0;;;46140:33:::1;46100:13:::0;46059:11;46140:33:::1;:::i;:::-;46124:13;:49:::0;46225:3:::1;46209:13;4753:12:::0;;;4665:108;46209:13:::1;:19;;;;:::i;:::-;46192:13;;:36;;46184:78;;;::::0;-1:-1:-1;;;46184:78:0;;5668:2:1;46184:78:0::1;::::0;::::1;5650:21:1::0;5707:2;5687:18;;;5680:30;5746:31;5726:18;;;5719:59;5795:18;;46184:78:0::1;5466:353:1::0;46184:78:0::1;45944:326:::0;;:::o;4344:100::-;4398:13;4431:5;4424:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;4344:100;:::o;5258:169::-;5341:4;5358:39;445:10;5381:7;5390:6;5358:8;:39::i;:::-;-1:-1:-1;5415:4:0;5258:169;;;;;:::o;45145:233::-;16095:6;;-1:-1:-1;;;;;16095:6:0;445:10;16095:22;16087:67;;;;-1:-1:-1;;;16087:67:0;;;;;;;:::i;:::-;45263:4:::1;45257;45237:13;4753:12:::0;;;4665:108;45237:13:::1;:17;::::0;45253:1:::1;45237:17;:::i;:::-;:24;;;;:::i;:::-;45236:31;;;;:::i;:::-;45227:6;:40;45219:100;;;::::0;-1:-1:-1;;;45219:100:0;;6584:2:1;45219:100:0::1;::::0;::::1;6566:21:1::0;6623:2;6603:18;;;6596:30;6662:34;6642:18;;;6635:62;-1:-1:-1;;;6713:18:1;;;6706:45;6768:19;;45219:100:0::1;6382:411:1::0;45219:100:0::1;45353:17;:6:::0;45363::::1;45353:17;:::i;:::-;45330:20;:40:::0;-1:-1:-1;45145:233:0:o;48257:183::-;48373:15;;:60;;-1:-1:-1;;;48373:60:0;;-1:-1:-1;;;;;7028:15:1;;;48373:60:0;;;7010:34:1;7080:15;;;7060:18;;;7053:43;48349:7:0;;48373:15;;:38;;6945:18:1;;48373:60:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;48366:67;48257:183;-1:-1:-1;;;48257:183:0:o;5435:492::-;5575:4;5592:36;5602:6;5610:9;5621:6;5592:9;:36::i;:::-;-1:-1:-1;;;;;5668:19:0;;5641:24;5668:19;;;:11;:19;;;;;;;;445:10;5668:33;;;;;;;;5720:26;;;;5712:79;;;;-1:-1:-1;;;5712:79:0;;7498:2:1;5712:79:0;;;7480:21:1;7537:2;7517:18;;;7510:30;7576:34;7556:18;;;7549:62;-1:-1:-1;;;7627:18:1;;;7620:38;7675:19;;5712:79:0;7296:404:1;5712:79:0;5827:57;5836:6;445:10;5877:6;5858:16;:25;5827:8;:57::i;:::-;-1:-1:-1;5915:4:0;;5435:492;-1:-1:-1;;;;5435:492:0:o;44299:130::-;16095:6;;-1:-1:-1;;;;;16095:6:0;445:10;16095:22;16087:67;;;;-1:-1:-1;;;16087:67:0;;;;;;;:::i;:::-;44376:15:::1;::::0;:45:::1;::::0;-1:-1:-1;;;44376:45:0;;-1:-1:-1;;;;;2142:32:1;;;44376:45:0::1;::::0;::::1;2124:51:1::0;44376:15:0;;::::1;::::0;:36:::1;::::0;2097:18:1;;44376:45:0::1;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;::::0;::::1;;;;;;;;;44299:130:::0;:::o;5935:215::-;445:10;6023:4;6072:25;;;:11;:25;;;;;;;;-1:-1:-1;;;;;6072:34:0;;;;;;;;;;6023:4;;6040:80;;6063:7;;6072:47;;6109:10;;6072:47;:::i;:::-;6040:8;:80::i;49234:97::-;49265:15;;:58;;-1:-1:-1;;;49265:58:0;;49304:10;49265:58;;;7889:51:1;49265:15:0;7956:18:1;;;7949:50;-1:-1:-1;;;;;49265:15:0;;;;:30;;7862:18:1;;49265:58:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;49234:97::o;47943:171::-;48052:15;;:54;;-1:-1:-1;;;48052:54:0;;-1:-1:-1;;;;;2142:32:1;;;48052:54:0;;;2124:51:1;48025:7:0;;48052:15;;:41;;2097:18:1;;48052:54:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;49473:141::-;49565:15;;:41;;;-1:-1:-1;;;49565:41:0;;;;49538:7;;-1:-1:-1;;;;;49565:15:0;;:39;;:41;;;;;;;;;;;;;;:15;:41;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;49558:48;;49473:141;:::o;45613:319::-;16095:6;;-1:-1:-1;;;;;16095:6:0;445:10;16095:22;16087:67;;;;-1:-1:-1;;;16087:67:0;;;;;;;:::i;:::-;45710:13:::1;:27:::0;;;45748:15:::1;:31:::0;;;45805::::1;45766:13:::0;45726:11;45805:31:::1;:::i;:::-;45790:12;:46:::0;45887:3:::1;45871:13;4753:12:::0;;;4665:108;45871:13:::1;:19;;;;:::i;:::-;45855:12;;:35;;45847:77;;;::::0;-1:-1:-1;;;45847:77:0;;5668:2:1;45847:77:0::1;::::0;::::1;5650:21:1::0;5707:2;5687:18;;;5680:30;5746:31;5726:18;;;5719:59;5795:18;;45847:77:0::1;5466:353:1::0;48445:136:0;48538:15;;:38;;-1:-1:-1;;;48538:38:0;;-1:-1:-1;;;;;2142:32:1;;;48538:38:0;;;2124:51:1;48517:7:0;;48538:15;;:29;;2097:18:1;;48538:38:0;1951:230:1;48967:259:0;49093:15;;:28;;-1:-1:-1;;;;;;49093:28:0;;;;;413:25:1;;;49027:18:0;;;;;;-1:-1:-1;;;;;49093:15:0;;:23;;386:18:1;;49093:28:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;49131:87;;;8802:25:1;;;8858:2;8843:18;;8836:34;;;8886:18;;;8879:34;;;8944:2;8929:18;;8922:34;;;49026:95:0;;-1:-1:-1;49026:95:0;;-1:-1:-1;49026:95:0;-1:-1:-1;49208:9:0;;49196:5;;49131:87;;8789:3:1;8774:19;49131:87:0;;;;;;;;49021:205;;;48967:259;:::o;4781:127::-;-1:-1:-1;;;;;4882:18:0;4855:7;4882:18;;;;;;;;;;;;4781:127::o;56416:281::-;56498:24;;56476:7;;56498:24;;56495:195;;;56574:25;;56545:26;;:54;;;;:::i;56495:195::-;-1:-1:-1;56648:1:0;;56416:281::o;16525:148::-;16095:6;;-1:-1:-1;;;;;16095:6:0;445:10;16095:22;16087:67;;;;-1:-1:-1;;;16087:67:0;;;;;;;:::i;:::-;16616:6:::1;::::0;16595:40:::1;::::0;16632:1:::1;::::0;-1:-1:-1;;;;;16616:6:0::1;::::0;16595:40:::1;::::0;16632:1;;16595:40:::1;16646:6;:19:::0;;-1:-1:-1;;;;;;16646:19:0::1;::::0;;16525:148::o;49626:119::-;49707:15;;:30;;;-1:-1:-1;;;49707:30:0;;;;49680:7;;-1:-1:-1;;;;;49707:15:0;;:28;;:30;;;;;;;;;;;;;;:15;:30;;;;;;;;;;;;;;49757:120;16095:6;;49809:4;;-1:-1:-1;;;;;16095:6:0;445:10;16095:22;16087:67;;;;-1:-1:-1;;;16087:67:0;;;;;;;:::i;:::-;-1:-1:-1;49825:14:0::1;:22:::0;;-1:-1:-1;;49825:22:0::1;::::0;;;49757:120;:::o;46278:202::-;16095:6;;-1:-1:-1;;;;;16095:6:0;445:10;16095:22;16087:67;;;;-1:-1:-1;;;16087:67:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;46368:39:0;::::1;;::::0;;;:31:::1;:39;::::0;;;;;;;;:46;;-1:-1:-1;;46368:46:0::1;::::0;::::1;;::::0;;::::1;::::0;;;46430:42;;1647:41:1;;;46430:42:0::1;::::0;1620:18:1;46430:42:0::1;;;;;;;;46278:202:::0;;:::o;56705:501::-;16095:6;;-1:-1:-1;;;;;16095:6:0;445:10;16095:22;16087:67;;;;-1:-1:-1;;;16087:67:0;;;;;;;:::i;:::-;56793:29:::1;:27;:29::i;:::-;56774:15;:48;;:85;;;;;56858:1;56826:29;:27;:29::i;:::-;:33;56774:85;56766:120;;;::::0;-1:-1:-1;;;56766:120:0;;9169:2:1;56766:120:0::1;::::0;::::1;9151:21:1::0;9208:2;9188:18;;;9181:30;-1:-1:-1;;;9227:18:1;;;9220:52;9289:18;;56766:120:0::1;8967:346:1::0;56766:120:0::1;56926:1;56897:26;:30:::0;;;56938:24:::1;:32:::0;;-1:-1:-1;;56938:32:0::1;::::0;;57065:16:::1;::::0;57007:55:::1;::::0;-1:-1:-1;;;57007:55:0;;57056:4:::1;57007:55;::::0;::::1;2124:51:1::0;57084:3:0::1;::::0;57065:16;57022:13:::1;-1:-1:-1::0;;;;;57007:40:0::1;::::0;::::1;::::0;2097:18:1;;57007:55:0::1;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;:74;;;;:::i;:::-;:80;;;;:::i;:::-;57127:1;57108:16;:20:::0;57141:57:::1;::::0;-1:-1:-1;;;57141:57:0;;57172:10:::1;57141:57;::::0;::::1;9492:51:1::0;9559:18;;;9552:34;;;56983:104:0;;-1:-1:-1;57148:13:0::1;-1:-1:-1::0;;;;;57141:30:0::1;::::0;::::1;::::0;9465:18:1;;57141:57:0::1;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;56211:191::-:0;16095:6;;-1:-1:-1;;;;;16095:6:0;445:10;16095:22;16087:67;;;;-1:-1:-1;;;16087:67:0;;;;;;;:::i;:::-;56287:58:::1;::::0;56270:12:::1;::::0;56295:10:::1;::::0;56319:21:::1;::::0;56270:12;56287:58;56270:12;56287:58;56319:21;56295:10;56287:58:::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;56269:76;;;56364:7;56356:38;;;::::0;-1:-1:-1;;;56356:38:0;;10009:2:1;56356:38:0::1;::::0;::::1;9991:21:1::0;10048:2;10028:18;;;10021:30;-1:-1:-1;;;10067:18:1;;;10060:48;10125:18;;56356:38:0::1;9807:342:1::0;47292:395:0;16095:6;;-1:-1:-1;;;;;16095:6:0;445:10;16095:22;16087:67;;;;-1:-1:-1;;;16087:67:0;;;;;;;:::i;:::-;47392:6:::1;47380:8;:18;;:40;;;;;47414:6;47402:8;:18;;47380:40;47372:106;;;::::0;-1:-1:-1;;;47372:106:0;;10356:2:1;47372:106:0::1;::::0;::::1;10338:21:1::0;10395:2;10375:18;;;10368:30;10434:34;10414:18;;;10407:62;-1:-1:-1;;;10485:18:1;;;10478:51;10546:19;;47372:106:0::1;10154:417:1::0;47372:106:0::1;47509:16;;47497:8;:28:::0;47489:85:::1;;;::::0;-1:-1:-1;;;47489:85:0;;10778:2:1;47489:85:0::1;::::0;::::1;10760:21:1::0;10817:2;10797:18;;;10790:30;10856:34;10836:18;;;10829:62;-1:-1:-1;;;10907:18:1;;;10900:42;10959:19;;47489:85:0::1;10576:408:1::0;47489:85:0::1;47624:16;::::0;47590:51:::1;::::0;47614:8;;47590:51:::1;::::0;;;::::1;47652:16;:27:::0;47292:395::o;44718:218::-;16095:6;;-1:-1:-1;;;;;16095:6:0;445:10;16095:22;16087:67;;;;-1:-1:-1;;;16087:67:0;;;;;;;:::i;:::-;44782:13:::1;::::0;::::1;::::0;::::1;;;44781:14;44773:51;;;::::0;-1:-1:-1;;;44773:51:0;;11191:2:1;44773:51:0::1;::::0;::::1;11173:21:1::0;11230:2;11210:18;;;11203:30;11269:26;11249:18;;;11242:54;11313:18;;44773:51:0::1;10989:348:1::0;44773:51:0::1;44835:13;:20:::0;;-1:-1:-1;;44866:18:0;;;;;44916:12:::1;44895:18;:33:::0;44718:218::o;45036:101::-;16095:6;;-1:-1:-1;;;;;16095:6:0;445:10;16095:22;16087:67;;;;-1:-1:-1;;;16087:67:0;;;;;;;:::i;:::-;45108:11:::1;:21:::0;;;::::1;;::::0;::::1;-1:-1:-1::0;;45108:21:0;;::::1;::::0;;;::::1;::::0;;45036:101::o;4452:104::-;4508:13;4541:7;4534:14;;;;;:::i;46680:258::-;16095:6;;-1:-1:-1;;;;;16095:6:0;445:10;16095:22;16087:67;;;;-1:-1:-1;;;16087:67:0;;;;;;;:::i;:::-;46789:13:::1;-1:-1:-1::0;;;;;46781:21:0::1;:4;-1:-1:-1::0;;;;;46781:21:0::1;::::0;46773:103:::1;;;::::0;-1:-1:-1;;;46773:103:0;;11544:2:1;46773:103:0::1;::::0;::::1;11526:21:1::0;11583:2;11563:18;;;11556:30;11622:34;11602:18;;;11595:62;11693:34;11673:18;;;11666:62;-1:-1:-1;;;11744:19:1;;;11737:36;11790:19;;46773:103:0::1;11342:473:1::0;46773:103:0::1;46889:41;46918:4;46924:5;46889:28;:41::i;47827:108::-:0;47900:15;;:27;;;-1:-1:-1;;;47900:27:0;;;;47873:7;;-1:-1:-1;;;;;47900:15:0;;:25;;:27;;;;;;;;;;;;;;:15;:27;;;;;;;;;;;;;;6158:413;445:10;6251:4;6295:25;;;:11;:25;;;;;;;;-1:-1:-1;;;;;6295:34:0;;;;;;;;;;6348:35;;;;6340:85;;;;-1:-1:-1;;;6340:85:0;;12022:2:1;6340:85:0;;;12004:21:1;12061:2;12041:18;;;12034:30;12100:34;12080:18;;;12073:62;-1:-1:-1;;;12151:18:1;;;12144:35;12196:19;;6340:85:0;11820:401:1;6340:85:0;6461:67;445:10;6484:7;6512:15;6493:16;:34;6461:8;:67::i;:::-;-1:-1:-1;6559:4:0;;6158:413;-1:-1:-1;;;6158:413:0:o;4916:175::-;5002:4;5019:42;445:10;5043:9;5054:6;5019:9;:42::i;46488:184::-;16095:6;;-1:-1:-1;;;;;16095:6:0;445:10;16095:22;16087:67;;;;-1:-1:-1;;;16087:67:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;46573:28:0;::::1;;::::0;;;:19:::1;:28;::::0;;;;;;;;:39;;-1:-1:-1;;46573:39:0::1;::::0;::::1;;::::0;;::::1;::::0;;;46630:34;;1647:41:1;;;46630:34:0::1;::::0;1620:18:1;46630:34:0::1;1507:187:1::0;44534:126:0;16095:6;;-1:-1:-1;;;;;16095:6:0;445:10;16095:22;16087:67;;;;-1:-1:-1;;;16087:67:0;;;;;;;:::i;:::-;44609:15:::1;::::0;:43:::1;::::0;-1:-1:-1;;;44609:43:0;;-1:-1:-1;;;;;2142:32:1;;;44609:43:0::1;::::0;::::1;2124:51:1::0;44609:15:0;;::::1;::::0;:34:::1;::::0;2097:18:1;;44609:43:0::1;1951:230:1::0;45390:211:0;16095:6;;-1:-1:-1;;;;;16095:6:0;445:10;16095:22;16087:67;;;;-1:-1:-1;;;16087:67:0;;;;;;;:::i;:::-;45510:4:::1;45505:3;45485:13;4753:12:::0;;;4665:108;45485:13:::1;:17;::::0;45501:1:::1;45485:17;:::i;:::-;:23;;;;:::i;:::-;45484:30;;;;:::i;:::-;45475:6;:39;45467:86;;;::::0;-1:-1:-1;;;45467:86:0;;12428:2:1;45467:86:0::1;::::0;::::1;12410:21:1::0;12467:2;12447:18;;;12440:30;12506:34;12486:18;;;12479:62;-1:-1:-1;;;12557:18:1;;;12550:32;12599:19;;45467:86:0::1;12226:398:1::0;45467:86:0::1;45576:17;:6:::0;45586::::1;45576:17;:::i;:::-;45564:9;:29:::0;-1:-1:-1;45390:211:0:o;49339:126::-;49418:15;;:39;;;-1:-1:-1;;;49418:39:0;;;;49394:7;;-1:-1:-1;;;;;49418:15:0;;:37;;:39;;;;;;;;;;;;;;:15;:39;;;;;;;;;;;;;;47695:124;16095:6;;-1:-1:-1;;;;;16095:6:0;445:10;16095:22;16087:67;;;;-1:-1:-1;;;16087:67:0;;;;;;;:::i;:::-;47769:15:::1;::::0;:42:::1;::::0;-1:-1:-1;;;47769:42:0;;::::1;::::0;::::1;413:25:1::0;;;-1:-1:-1;;;;;47769:15:0;;::::1;::::0;:31:::1;::::0;386:18:1;;47769:42:0::1;267:177:1::0;16828:244:0;16095:6;;-1:-1:-1;;;;;16095:6:0;445:10;16095:22;16087:67;;;;-1:-1:-1;;;16087:67:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;16917:22:0;::::1;16909:73;;;::::0;-1:-1:-1;;;16909:73:0;;12831:2:1;16909:73:0::1;::::0;::::1;12813:21:1::0;12870:2;12850:18;;;12843:30;12909:34;12889:18;;;12882:62;-1:-1:-1;;;12960:18:1;;;12953:36;13006:19;;16909:73:0::1;12629:402:1::0;16909:73:0::1;17019:6;::::0;16998:38:::1;::::0;-1:-1:-1;;;;;16998:38:0;;::::1;::::0;17019:6:::1;::::0;16998:38:::1;::::0;17019:6:::1;::::0;16998:38:::1;17047:6;:17:::0;;-1:-1:-1;;;;;;17047:17:0::1;-1:-1:-1::0;;;;;17047:17:0;;;::::1;::::0;;;::::1;::::0;;16828:244::o;7498:380::-;-1:-1:-1;;;;;7634:19:0;;7626:68;;;;-1:-1:-1;;;7626:68:0;;13238:2:1;7626:68:0;;;13220:21:1;13277:2;13257:18;;;13250:30;13316:34;13296:18;;;13289:62;-1:-1:-1;;;13367:18:1;;;13360:34;13411:19;;7626:68:0;13036:400:1;7626:68:0;-1:-1:-1;;;;;7713:21:0;;7705:68;;;;-1:-1:-1;;;7705:68:0;;13643:2:1;7705:68:0;;;13625:21:1;13682:2;13662:18;;;13655:30;13721:34;13701:18;;;13694:62;-1:-1:-1;;;13772:18:1;;;13765:32;13814:19;;7705:68:0;13441:398:1;7705:68:0;-1:-1:-1;;;;;7786:18:0;;;;;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;:36;;;7838:32;;413:25:1;;;7838:32:0;;386:18:1;7838:32:0;;;;;;;7498:380;;;:::o;49889:3847::-;-1:-1:-1;;;;;50021:18:0;;50013:68;;;;-1:-1:-1;;;50013:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;50100:16:0;;50092:64;;;;-1:-1:-1;;;50092:64:0;;;;;;;:::i;:::-;50181:6;50191:1;50181:11;50178:92;;50209:28;50225:4;50231:2;50235:1;50209:15;:28::i;:::-;49889:3847;;;:::o;50178:92::-;50294:13;;;;;;;50290:136;;-1:-1:-1;;;;;50331:25:0;;;;;;:19;:25;;;;;;;;;:52;;-1:-1:-1;;;;;;50360:23:0;;;;;;:19;:23;;;;;;;;50331:52;50323:91;;;;-1:-1:-1;;;50323:91:0;;14856:2:1;50323:91:0;;;14838:21:1;14895:2;14875:18;;;14868:30;14934:28;14914:18;;;14907:56;14980:18;;50323:91:0;14654:350:1;50323:91:0;50449:14;;;;50446:1085;;;15948:6;;-1:-1:-1;;;;;50501:15:0;;;15948:6;;50501:15;;;;:49;;-1:-1:-1;15948:6:0;;-1:-1:-1;;;;;50537:13:0;;;15948:6;;50537:13;;50501:49;:86;;;;-1:-1:-1;;;;;;50571:16:0;;;;50501:86;:128;;;;-1:-1:-1;;;;;;50608:21:0;;50622:6;50608:21;;50501:128;:158;;;;-1:-1:-1;50651:8:0;;-1:-1:-1;;;50651:8:0;;;;50650:9;50501:158;50479:1041;;;-1:-1:-1;;;;;50743:31:0;;;;;;:25;:31;;;;;;;;:71;;;;-1:-1:-1;;;;;;50779:35:0;;;;;;:31;:35;;;;;;;;50778:36;50743:71;50739:766;;;50857:20;;50847:6;:30;;50839:96;;;;-1:-1:-1;;;50839:96:0;;15211:2:1;50839:96:0;;;15193:21:1;15250:2;15230:18;;;15223:30;15289:34;15269:18;;;15262:62;-1:-1:-1;;;15340:18:1;;;15333:51;15401:19;;50839:96:0;15009:417:1;50839:96:0;50992:9;;50975:13;50985:2;50975:9;:13::i;:::-;50966:22;;:6;:22;:::i;:::-;:35;;50958:75;;;;-1:-1:-1;;;50958:75:0;;15633:2:1;50958:75:0;;;15615:21:1;15672:2;15652:18;;;15645:30;15711:29;15691:18;;;15684:57;15758:18;;50958:75:0;15431:351:1;50958:75:0;50739:766;;;-1:-1:-1;;;;;51110:29:0;;;;;;:25;:29;;;;;;;;:71;;;;-1:-1:-1;;;;;;51144:37:0;;;;;;:31;:37;;;;;;;;51143:38;51110:71;51106:399;;;51224:20;;51214:6;:30;;51206:97;;;;-1:-1:-1;;;51206:97:0;;15989:2:1;51206:97:0;;;15971:21:1;16028:2;16008:18;;;16001:30;16067:34;16047:18;;;16040:62;-1:-1:-1;;;16118:18:1;;;16111:52;16180:19;;51206:97:0;15787:418:1;51106:399:0;-1:-1:-1;;;;;51350:35:0;;;;;;:31;:35;;;;;;;;51346:159;;51444:9;;51427:13;51437:2;51427:9;:13::i;:::-;51418:22;;:6;:22;:::i;:::-;:35;;51410:75;;;;-1:-1:-1;;;51410:75:0;;15633:2:1;51410:75:0;;;15615:21:1;15672:2;15652:18;;;15645:30;15711:29;15691:18;;;15684:57;15758:18;;51410:75:0;15431:351:1;51410:75:0;51537:28;51568:24;51586:4;51568:9;:24::i;:::-;51652:18;;51537:55;;-1:-1:-1;51628:42:0;;;;;;;51701:35;;-1:-1:-1;51725:11:0;;;;;;;51701:35;:61;;;;-1:-1:-1;51754:8:0;;-1:-1:-1;;;51754:8:0;;;;51753:9;51701:61;:110;;;;-1:-1:-1;;;;;;51780:31:0;;;;;;:25;:31;;;;;;;;51779:32;51701:110;:153;;;;-1:-1:-1;;;;;;51829:25:0;;;;;;:19;:25;;;;;;;;51828:26;51701:153;:194;;;;-1:-1:-1;;;;;;51872:23:0;;;;;;:19;:23;;;;;;;;51871:24;51701:194;51683:322;;;51922:8;:15;;-1:-1:-1;;;;51922:15:0;-1:-1:-1;;;51922:15:0;;;51952:10;:8;:10::i;:::-;51977:8;:16;;-1:-1:-1;;;;51977:16:0;;;51683:322;52033:8;;-1:-1:-1;;;;;52142:25:0;;52017:12;52142:25;;;:19;:25;;;;;;52033:8;-1:-1:-1;;;52033:8:0;;;;;52032:9;;52142:25;;:52;;-1:-1:-1;;;;;;52171:23:0;;;;;;:19;:23;;;;;;;;52142:52;52139:99;;;-1:-1:-1;52221:5:0;52139:99;52258:12;52349:7;52346:857;;;-1:-1:-1;;;;;52416:29:0;;;;;;:25;:29;;;;;;;;:50;;;;;52465:1;52449:13;;:17;52416:50;52412:634;;;52493:41;40224:4;52493:25;52504:13;;52493:6;:10;;:25;;;;:::i;:::-;:29;;:41::i;:::-;52486:48;;52597:13;;52580:14;;52573:4;:21;;;;:::i;:::-;:37;;;;:::i;:::-;52553:16;;:57;;;;;;;:::i;:::-;;;;-1:-1:-1;;52677:13:0;;52658:16;;52651:23;;:4;:23;:::i;:::-;:39;;;;:::i;:::-;52629:18;;:61;;;;;;;:::i;:::-;;;;-1:-1:-1;52412:634:0;;-1:-1:-1;52412:634:0;;-1:-1:-1;;;;;52765:31:0;;;;;;:25;:31;;;;;;;;:51;;;;;52815:1;52800:12;;:16;52765:51;52762:284;;;52841:40;40224:4;52841:24;52852:12;;52841:6;:10;;:24;;;;:::i;:40::-;52834:47;;52940:12;;52924:13;;52917:4;:20;;;;:::i;:::-;:35;;;;:::i;:::-;52897:16;;:55;;;;;;;:::i;:::-;;;;-1:-1:-1;;53018:12:0;;53000:15;;52993:22;;:4;:22;:::i;:::-;:37;;;;:::i;:::-;52971:18;;:59;;;;;;;:::i;:::-;;;;-1:-1:-1;;52762:284:0;53065:8;;53062:93;;53097:42;53113:4;53127;53134;53097:15;:42::i;:::-;53177:14;53187:4;53177:14;;:::i;:::-;;;52346:857;53215:33;53231:4;53237:2;53241:6;53215:15;:33::i;:::-;53261:15;;-1:-1:-1;;;;;53261:15:0;:26;53296:4;53303:15;53296:4;53303:9;:15::i;:::-;53261:58;;-1:-1:-1;;;;;;53261:58:0;;;;;;;-1:-1:-1;;;;;9510:32:1;;;53261:58:0;;;9492:51:1;9559:18;;;9552:34;9465:18;;53261:58:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;53330:15:0;;-1:-1:-1;;;;;53330:15:0;;-1:-1:-1;53330:26:0;;-1:-1:-1;53365:2:0;53370:13;53365:2;53370:9;:13::i;:::-;53330:54;;-1:-1:-1;;;;;;53330:54:0;;;;;;;-1:-1:-1;;;;;9510:32:1;;;53330:54:0;;;9492:51:1;9559:18;;;9552:34;9465:18;;53330:54:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;53401:8:0;;-1:-1:-1;;;53401:8:0;;;;53400:9;;-1:-1:-1;;53400:33:0;;;;;53432:1;53413:16;;:20;53400:33;53397:332;;;53458:16;;53489:15;;:28;;-1:-1:-1;;;;;;53489:28:0;;;;;413:25:1;;;-1:-1:-1;;;;;53489:15:0;;;;:23;;386:18:1;;53489:28:0;;;;;;;;;;;;;;;;;;;-1:-1:-1;53489:28:0;;;;;;;;-1:-1:-1;;53489:28:0;;;;;;;;;;;;:::i;:::-;;;53485:233;;;53606:86;;;8802:25:1;;;8858:2;8843:18;;8836:34;;;8886:18;;;8879:34;;;8944:2;8929:18;;8922:34;;;53682:9:0;;53671:4;;53606:86;;8789:3:1;8774:19;53606:86:0;;;;;;;53518:184;;;53485:233;53435:294;53397:332;50002:3734;;;;49889:3847;;;:::o;46946:338::-;-1:-1:-1;;;;;47029:31:0;;;;;;:25;:31;;;;;:39;;-1:-1:-1;;47029:39:0;;;;;;;47081:38;47029:31;:39;47081:25;:38::i;:::-;47143:5;47140:79;;;47165:15;;:42;;-1:-1:-1;;;47165:42:0;;-1:-1:-1;;;;;2142:32:1;;;47165:42:0;;;2124:51:1;47165:15:0;;;;:36;;2097:18:1;;47165:42:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;47140:79;47236:40;;;;;;-1:-1:-1;;;;;47236:40:0;;;;;;;;46946:338;;:::o;6579:614::-;-1:-1:-1;;;;;6719:20:0;;6711:70;;;;-1:-1:-1;;;6711:70:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;6800:23:0;;6792:71;;;;-1:-1:-1;;;6792:71:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;6900:17:0;;6876:21;6900:17;;;;;;;;;;;6936:23;;;;6928:74;;;;-1:-1:-1;;;6928:74:0;;16837:2:1;6928:74:0;;;16819:21:1;16876:2;16856:18;;;16849:30;16915:34;16895:18;;;16888:62;-1:-1:-1;;;16966:18:1;;;16959:36;17012:19;;6928:74:0;16635:402:1;6928:74:0;-1:-1:-1;;;;;7038:17:0;;;:9;:17;;;;;;;;;;;7058:22;;;7038:42;;7102:20;;;;;;;;:30;;7074:6;;7038:9;7102:30;;7074:6;;7102:30;:::i;:::-;;;;;;;;7167:9;-1:-1:-1;;;;;7150:35:0;7159:6;-1:-1:-1;;;;;7150:35:0;;7178:6;7150:35;;;;413:25:1;;401:2;386:18;;267:177;54896:1307:0;54935:23;54961:24;54979:4;54961:9;:24::i;:::-;54935:50;;54996:25;55045:16;;55024:18;;:37;;;;:::i;:::-;54996:65;-1:-1:-1;55085:20:0;;;:46;;-1:-1:-1;55109:22:0;;55085:46;55082:60;;;55134:7;;54896:1307::o;55082:60::-;55211:23;55296:1;55276:17;55255:18;;55237:15;:36;;;;:::i;:::-;:56;;;;:::i;:::-;:60;;;;:::i;:::-;55211:86;-1:-1:-1;55308:26:0;55337:36;:15;55211:86;55337:19;:36::i;:::-;55308:65;-1:-1:-1;55422:21:0;55456:36;55308:65;55456:16;:36::i;:::-;55514:18;55535:44;:21;55561:17;55535:25;:44::i;:::-;55514:65;;55600:21;55624:80;55701:1;55682:18;;:20;;;;:::i;:::-;55661:42;;:17;:42;:::i;:::-;55639:16;;55624:32;;:10;;:14;:32::i;:80::-;55600:104;-1:-1:-1;55725:23:0;55751:26;55600:104;55751:10;:26;:::i;:::-;55819:1;55798:18;:22;;;55831:16;:20;55725:52;-1:-1:-1;55895:19:0;;;;;:42;;;55936:1;55918:15;:19;55895:42;55892:210;;;55953:46;55966:15;55983;55953:12;:46::i;:::-;56071:18;;56019:71;;;17244:25:1;;;17300:2;17285:18;;17278:34;;;17328:18;;;17321:34;;;;56019:71:0;;;;;;17232:2:1;56019:71:0;;;55892:210;56148:15;;56140:55;;56123:12;;-1:-1:-1;;;;;56148:15:0;;56177:13;;56123:12;56140:55;56123:12;56140:55;56177:13;56148:15;56140:55;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;;54896:1307:0:o;12281:471::-;12339:7;12584:1;12589;12584:6;12580:47;;-1:-1:-1;12614:1:0;12607:8;;12580:47;12639:9;12651:5;12655:1;12651;:5;:::i;:::-;12639:17;-1:-1:-1;12684:1:0;12675:5;12679:1;12639:17;12675:5;:::i;:::-;:10;12667:56;;;;-1:-1:-1;;;12667:56:0;;17568:2:1;12667:56:0;;;17550:21:1;17607:2;17587:18;;;17580:30;17646:34;17626:18;;;17619:62;-1:-1:-1;;;17697:18:1;;;17690:31;17738:19;;12667:56:0;17366:397:1;13228:132:0;13286:7;13313:39;13317:1;13320;13313:39;;;;;;;;;;;;;;;;;:3;:39::i;11391:136::-;11449:7;11476:43;11480:1;11483;11476:43;;;;;;;;;;;;;;;;;:3;:43::i;53748:601::-;53900:16;;;53914:1;53900:16;;;;;;;;53876:21;;53900:16;;;;;;;;;;-1:-1:-1;53900:16:0;53876:40;;53945:4;53927;53932:1;53927:7;;;;;;;;:::i;:::-;;;;;;:23;-1:-1:-1;;;;;53927:23:0;;;-1:-1:-1;;;;;53927:23:0;;;;;53971:15;-1:-1:-1;;;;;53971:20:0;;:22;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;53961:4;53966:1;53961:7;;;;;;;;:::i;:::-;;;;;;:32;-1:-1:-1;;;;;53961:32:0;;;-1:-1:-1;;;;;53961:32:0;;;;;54006:62;54023:4;54038:15;54056:11;54006:8;:62::i;:::-;54107:224;;-1:-1:-1;;;54107:224:0;;-1:-1:-1;;;;;54107:15:0;:66;;;;:224;;54188:11;;54214:1;;54258:4;;54285;;54305:15;;54107:224;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;53803:546;53748:601;:::o;54361:523::-;54509:62;54526:4;54541:15;54559:11;54509:8;:62::i;:::-;54614:260;;-1:-1:-1;;;54614:260:0;;54686:4;54614:260;;;19614:34:1;19664:18;;;19657:34;;;54732:1:0;19707:18:1;;;19700:34;;;19750:18;;;19743:34;54826:6:0;19793:19:1;;;19786:44;54848:15:0;19846:19:1;;;19839:35;54614:15:0;-1:-1:-1;;;;;54614:31:0;;;;54653:9;;19548:19:1;;54614:260:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;13856:278::-;13942:7;13977:12;13970:5;13962:28;;;;-1:-1:-1;;;13962:28:0;;;;;;;;:::i;:::-;-1:-1:-1;14001:9:0;14013:5;14017:1;14013;:5;:::i;:::-;14001:17;13856:278;-1:-1:-1;;;;;13856:278:0:o;11830:192::-;11916:7;11952:12;11944:6;;;;11936:29;;;;-1:-1:-1;;;11936:29:0;;;;;;;;:::i;:::-;-1:-1:-1;11976:9:0;11988:5;11992:1;11988;:5;:::i;14:248:1:-;82:6;90;143:2;131:9;122:7;118:23;114:32;111:52;;;159:1;156;149:12;111:52;-1:-1:-1;;182:23:1;;;252:2;237:18;;;224:32;;-1:-1:-1;14:248:1:o;449:597::-;561:4;590:2;619;608:9;601:21;651:6;645:13;694:6;689:2;678:9;674:18;667:34;719:1;729:140;743:6;740:1;737:13;729:140;;;838:14;;;834:23;;828:30;804:17;;;823:2;800:26;793:66;758:10;;729:140;;;887:6;884:1;881:13;878:91;;;957:1;952:2;943:6;932:9;928:22;924:31;917:42;878:91;-1:-1:-1;1030:2:1;1009:15;-1:-1:-1;;1005:29:1;990:45;;;;1037:2;986:54;;449:597;-1:-1:-1;;;449:597:1:o;1051:131::-;-1:-1:-1;;;;;1126:31:1;;1116:42;;1106:70;;1172:1;1169;1162:12;1187:315;1255:6;1263;1316:2;1304:9;1295:7;1291:23;1287:32;1284:52;;;1332:1;1329;1322:12;1284:52;1371:9;1358:23;1390:31;1415:5;1390:31;:::i;:::-;1440:5;1492:2;1477:18;;;;1464:32;;-1:-1:-1;;;1187:315:1:o;1699:247::-;1758:6;1811:2;1799:9;1790:7;1786:23;1782:32;1779:52;;;1827:1;1824;1817:12;1779:52;1866:9;1853:23;1885:31;1910:5;1885:31;:::i;2186:180::-;2245:6;2298:2;2286:9;2277:7;2273:23;2269:32;2266:52;;;2314:1;2311;2304:12;2266:52;-1:-1:-1;2337:23:1;;2186:180;-1:-1:-1;2186:180:1:o;2371:388::-;2439:6;2447;2500:2;2488:9;2479:7;2475:23;2471:32;2468:52;;;2516:1;2513;2506:12;2468:52;2555:9;2542:23;2574:31;2599:5;2574:31;:::i;:::-;2624:5;-1:-1:-1;2681:2:1;2666:18;;2653:32;2694:33;2653:32;2694:33;:::i;:::-;2746:7;2736:17;;;2371:388;;;;;:::o;2764:456::-;2841:6;2849;2857;2910:2;2898:9;2889:7;2885:23;2881:32;2878:52;;;2926:1;2923;2916:12;2878:52;2965:9;2952:23;2984:31;3009:5;2984:31;:::i;:::-;3034:5;-1:-1:-1;3091:2:1;3076:18;;3063:32;3104:33;3063:32;3104:33;:::i;:::-;2764:456;;3156:7;;-1:-1:-1;;;3210:2:1;3195:18;;;;3182:32;;2764:456::o;3862:118::-;3948:5;3941:13;3934:21;3927:5;3924:32;3914:60;;3970:1;3967;3960:12;3985:382;4050:6;4058;4111:2;4099:9;4090:7;4086:23;4082:32;4079:52;;;4127:1;4124;4117:12;4079:52;4166:9;4153:23;4185:31;4210:5;4185:31;:::i;:::-;4235:5;-1:-1:-1;4292:2:1;4277:18;;4264:32;4305:30;4264:32;4305:30;:::i;4372:241::-;4428:6;4481:2;4469:9;4460:7;4456:23;4452:32;4449:52;;;4497:1;4494;4487:12;4449:52;4536:9;4523:23;4555:28;4577:5;4555:28;:::i;4618:356::-;4820:2;4802:21;;;4839:18;;;4832:30;4898:34;4893:2;4878:18;;4871:62;4965:2;4950:18;;4618:356::o;4979:127::-;5040:10;5035:3;5031:20;5028:1;5021:31;5071:4;5068:1;5061:15;5095:4;5092:1;5085:15;5111:128;5151:3;5182:1;5178:6;5175:1;5172:13;5169:39;;;5188:18;;:::i;:::-;-1:-1:-1;5224:9:1;;5111:128::o;5244:217::-;5284:1;5310;5300:132;;5354:10;5349:3;5345:20;5342:1;5335:31;5389:4;5386:1;5379:15;5417:4;5414:1;5407:15;5300:132;-1:-1:-1;5446:9:1;;5244:217::o;5824:380::-;5903:1;5899:12;;;;5946;;;5967:61;;6021:4;6013:6;6009:17;5999:27;;5967:61;6074:2;6066:6;6063:14;6043:18;6040:38;6037:161;;6120:10;6115:3;6111:20;6108:1;6101:31;6155:4;6152:1;6145:15;6183:4;6180:1;6173:15;6037:161;;5824:380;;;:::o;6209:168::-;6249:7;6315:1;6311;6307:6;6303:14;6300:1;6297:21;6292:1;6285:9;6278:17;6274:45;6271:71;;;6322:18;;:::i;:::-;-1:-1:-1;6362:9:1;;6209:168::o;7107:184::-;7177:6;7230:2;7218:9;7209:7;7205:23;7201:32;7198:52;;;7246:1;7243;7236:12;7198:52;-1:-1:-1;7269:16:1;;7107:184;-1:-1:-1;7107:184:1:o;8010:245::-;8077:6;8130:2;8118:9;8109:7;8105:23;8101:32;8098:52;;;8146:1;8143;8136:12;8098:52;8178:9;8172:16;8197:28;8219:5;8197:28;:::i;8260:306::-;8348:6;8356;8364;8417:2;8405:9;8396:7;8392:23;8388:32;8385:52;;;8433:1;8430;8423:12;8385:52;8462:9;8456:16;8446:26;;8512:2;8501:9;8497:18;8491:25;8481:35;;8556:2;8545:9;8541:18;8535:25;8525:35;;8260:306;;;;;:::o;13844:401::-;14046:2;14028:21;;;14085:2;14065:18;;;14058:30;14124:34;14119:2;14104:18;;14097:62;-1:-1:-1;;;14190:2:1;14175:18;;14168:35;14235:3;14220:19;;13844:401::o;14250:399::-;14452:2;14434:21;;;14491:2;14471:18;;;14464:30;14530:34;14525:2;14510:18;;14503:62;-1:-1:-1;;;14596:2:1;14581:18;;14574:33;14639:3;14624:19;;14250:399::o;16210:125::-;16250:4;16278:1;16275;16272:8;16269:34;;;16283:18;;:::i;:::-;-1:-1:-1;16320:9:1;;16210:125::o;17900:127::-;17961:10;17956:3;17952:20;17949:1;17942:31;17992:4;17989:1;17982:15;18016:4;18013:1;18006:15;18032:251;18102:6;18155:2;18143:9;18134:7;18130:23;18126:32;18123:52;;;18171:1;18168;18161:12;18123:52;18203:9;18197:16;18222:31;18247:5;18222:31;:::i;18288:980::-;18550:4;18598:3;18587:9;18583:19;18629:6;18618:9;18611:25;18655:2;18693:6;18688:2;18677:9;18673:18;18666:34;18736:3;18731:2;18720:9;18716:18;18709:31;18760:6;18795;18789:13;18826:6;18818;18811:22;18864:3;18853:9;18849:19;18842:26;;18903:2;18895:6;18891:15;18877:29;;18924:1;18934:195;18948:6;18945:1;18942:13;18934:195;;;19013:13;;-1:-1:-1;;;;;19009:39:1;18997:52;;19104:15;;;;19069:12;;;;19045:1;18963:9;18934:195;;;-1:-1:-1;;;;;;;19185:32:1;;;;19180:2;19165:18;;19158:60;-1:-1:-1;;;19249:3:1;19234:19;19227:35;19146:3;18288:980;-1:-1:-1;;;18288:980:1:o

Swarm Source

ipfs://6c908faf020b9ac2d7dc259a1b7e25d1ce821c7d68d09a7d9911152291059f81
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.