ETH Price: $2,525.14 (-0.16%)

Token

XRP Unlimited (XRPU)
 

Overview

Max Total Supply

1,000,000,000 XRPU

Holders

147

Market

Onchain Market Cap

$0.00

Circulating Supply Market Cap

-

Other Info

Token Contract (WITH 18 Decimals)

Balance
889.586519171768134521 XRPU

Value
$0.00
0xa84b6fde0ef95ff18d6b6a1a8fecd490b1b6b30e
Loading...
Loading
Loading...
Loading
Loading...
Loading

Click here to update the token information / general information
# Exchange Pair Price  24H Volume % Volume
This contract may be a proxy contract. Click on More Options and select Is this a proxy? to confirm and enable the "Read as Proxy" & "Write as Proxy" tabs.

Contract Source Code Verified (Exact Match)

Contract Name:
XRPU

Compiler Version
v0.8.4+commit.c7e474f2

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

/**
 *Submitted for verification at Etherscan.io on 2021-08-05
*/

// SPDX-License-Identifier: MIT License

pragma solidity ^0.8.4;

////////////////////////////////
///////////// ERC //////////////
////////////////////////////////

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

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

/**
 * @dev Contract module which provides a basic access control mechanism, where
 * there is an account (an owner) that can be granted exclusive access to
 * specific functions.
 *
 * By default, the owner account will be the one that deploys the contract. This
 * can later be changed with {transferOwnership}.
 *
 * This module is used through inheritance. It will make available the modifier
 * `onlyOwner`, which can be applied to your functions to restrict their use to
 * the owner.
 */
abstract contract 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 virtual returns (address) {
        return _owner;
    }

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

    /**
     * @dev Leaves the contract without owner. It will not be possible to call
     * `onlyOwner` functions anymore. Can only be called by the current owner.
     *
     * NOTE: Renouncing ownership will leave the contract without an owner,
     * thereby removing any functionality that is only available to the owner.
     */
    function renounceOwnership() public virtual onlyOwner {
        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;
    }
}

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

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

    mapping (address => uint256) private _balances;

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

    uint256 private _totalSupply;

    string private _name;
    string private _symbol;
    uint8 private _decimals;

    /**
     * @dev Sets the values for {name} and {symbol}, initializes {decimals} with
     * a default value of 18.
     *
     * To select a different value for {decimals}, use {_setupDecimals}.
     *
     * All three of these values are immutable: they can only be set once during
     * construction.
     */
    constructor (string memory name_, string memory symbol_) {
        _name = name_;
        _symbol = symbol_;
        _decimals = 18;
    }

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

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

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

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

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

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

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

    /**
     * @dev See {IERC20-approve}.
     *
     * Requirements:
     *
     * - `spender` cannot be the zero address.
     */
    function approve(address spender, uint256 amount) public virtual override returns (bool) {
        _approve(_msgSender(), spender, amount);
        return true;
    }

    /**
     * @dev See {IERC20-transferFrom}.
     *
     * Emits an {Approval} event indicating the updated allowance. This is not
     * required by the EIP. See the note at the beginning of {ERC20}.
     *
     * Requirements:
     *
     * - `sender` and `recipient` cannot be the zero address.
     * - `sender` must have a balance of at least `amount`.
     * - the caller must have allowance for ``sender``'s tokens of at least
     * `amount`.
     */
    function transferFrom(address sender, address recipient, uint256 amount) public virtual override returns (bool) {
        _transfer(sender, recipient, amount);
        _approve(sender, _msgSender(), _allowances[sender][_msgSender()].sub(amount, "ERC20: transfer amount exceeds allowance"));
        return true;
    }

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

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

    /**
     * @dev Moves tokens `amount` from `sender` to `recipient`.
     *
     * This is internal function is equivalent to {transfer}, and can be used to
     * e.g. implement automatic token fees, slashing mechanisms, etc.
     *
     * Emits a {Transfer} event.
     *
     * Requirements:
     *
     * - `sender` cannot be the zero address.
     * - `recipient` cannot be the zero address.
     * - `sender` must have a balance of at least `amount`.
     */
    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");

        _beforeTokenTransfer(sender, recipient, amount);

        _balances[sender] = _balances[sender].sub(amount, "ERC20: transfer amount exceeds balance");
        _balances[recipient] = _balances[recipient].add(amount);
        emit Transfer(sender, recipient, amount);
    }

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

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

        _totalSupply = _totalSupply.add(amount);
        _balances[account] = _balances[account].add(amount);
        emit Transfer(address(0), account, amount);
    }

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

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

        _balances[account] = _balances[account].sub(amount, "ERC20: burn amount exceeds balance");
        _totalSupply = _totalSupply.sub(amount);
        emit Transfer(account, address(0), amount);
    }

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

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

    /**
     * @dev Sets {decimals} to a value other than the default one of 18.
     *
     * WARNING: This function should only be called from the constructor. Most
     * applications that interact with token contracts will not expect
     * {decimals} to ever change, and may work incorrectly if it does.
     */
    function _setupDecimals(uint8 decimals_) internal virtual {
        _decimals = decimals_;
    }

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

////////////////////////////////
////////// Dividend ////////////
////////////////////////////////

/*
@title Dividend-Paying Token Interface
@author Roger Wu (https://github.com/roger-wu)
@dev An interface for a dividend-paying token contract.
*/
interface IDividendPayingToken {
  /// @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) 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() 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
  );
}

/*
@title Dividend-Paying Token Optional Interface
@author Roger Wu (https://github.com/roger-wu)
@dev OPTIONAL functions for a dividend-paying token contract.
*/
interface IDividendPayingTokenOptional {
  /// @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) 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) 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) external view returns(uint256);
}

/*
@title Dividend-Paying Token
@author Roger Wu (https://github.com/roger-wu)
@dev A mintable ERC20 token that allows anyone to pay and distribute ether
to token holders as dividends and allows token holders to withdraw their dividends.
Reference: the source code of PoWH3D: https://etherscan.io/address/0xB3775fB83F7D12A36E0475aBdD1FCA35c091efBe#code
*/
contract DividendPayingToken is ERC20, IDividendPayingToken, IDividendPayingTokenOptional {
  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;

  uint256 internal magnifiedDividendPerShare;
  uint256 internal lastAmount;
  
  address public dividendToken = 0xdAC17F958D2ee523a2206206994597C13D831ec7;

  // 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 => int256) internal magnifiedDividendCorrections;
  mapping(address => uint256) internal withdrawnDividends;

  uint256 public totalDividendsDistributed;
  uint256 public gasForTransfer;

  constructor(string memory _name, string memory _symbol) ERC20(_name, _symbol) {
        gasForTransfer = 3000;
  }
  

  receive() external payable {
  }

  /// @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(totalSupply() > 0);

    if (msg.value > 0) {
      magnifiedDividendPerShare = magnifiedDividendPerShare.add(
        (msg.value).mul(magnitude) / totalSupply()
      );
      emit DividendsDistributed(msg.sender, msg.value);

      totalDividendsDistributed = totalDividendsDistributed.add(msg.value);
    }
  }
  

  function distributeDividends(uint256 amount) public {
    require(totalSupply() > 0);

    if (amount > 0) {
      magnifiedDividendPerShare = magnifiedDividendPerShare.add(
        (amount).mul(magnitude) / totalSupply()
      );
      emit DividendsDistributed(msg.sender, amount);

      totalDividendsDistributed = totalDividendsDistributed.add(amount);
    }
  }

  /// @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() public virtual override {
    _withdrawDividendOfUser(payable(msg.sender));
  }
  
  function setDividendTokenAddress(address newToken) public {
      dividendToken = newToken;
  }

  /// @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) internal returns (uint256) {
    uint256 _withdrawableDividend = withdrawableDividendOf(user);
    if (_withdrawableDividend > 0) {
      withdrawnDividends[user] = withdrawnDividends[user].add(_withdrawableDividend);
      emit DividendWithdrawn(user, _withdrawableDividend);
      bool success = IERC20(dividendToken).transfer(user, _withdrawableDividend);

      if(!success) {
        withdrawnDividends[user] = withdrawnDividends[user].sub(_withdrawableDividend);
        return 0;
      }

      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) public view override returns(uint256) {
    return withdrawableDividendOf(_owner);
  }

  /// @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) public view override returns(uint256) {
    return accumulativeDividendOf(_owner).sub(withdrawnDividends[_owner]);
  }

  /// @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) public view override returns(uint256) {
    return withdrawnDividends[_owner];
  }


  /// @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) public view override returns(uint256) {
    return magnifiedDividendPerShare.mul(balanceOf(_owner)).toInt256Safe()
      .add(magnifiedDividendCorrections[_owner]).toUint256Safe() / magnitude;
  }

  /// @dev Internal function that transfer tokens from one address to another.
  /// Update magnifiedDividendCorrections to keep dividends unchanged.
  /// @param from The address to transfer from.
  /// @param to The address to transfer to.
  /// @param value The amount to be transferred.
  function _transfer(address from, address to, uint256 value) internal virtual override {
    require(false);

    int256 _magCorrection = magnifiedDividendPerShare.mul(value).toInt256Safe();
    magnifiedDividendCorrections[from] = magnifiedDividendCorrections[from].add(_magCorrection);
    magnifiedDividendCorrections[to] = magnifiedDividendCorrections[to].sub(_magCorrection);
  }

  /// @dev Internal function that mints 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 _mint(address account, uint256 value) internal override {
    super._mint(account, value);

    magnifiedDividendCorrections[account] = magnifiedDividendCorrections[account]
      .sub( (magnifiedDividendPerShare.mul(value)).toInt256Safe() );
  }

  /// @dev Internal function that burns 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 _burn(address account, uint256 value) internal override {
    super._burn(account, value);

    magnifiedDividendCorrections[account] = magnifiedDividendCorrections[account]
      .add( (magnifiedDividendPerShare.mul(value)).toInt256Safe() );
  }

  function _setBalance(address account, uint256 newBalance) internal {
    uint256 currentBalance = balanceOf(account);

    if(newBalance > currentBalance) {
      uint256 mintAmount = newBalance.sub(currentBalance);
      _mint(account, mintAmount);
    } else if(newBalance < currentBalance) {
      uint256 burnAmount = currentBalance.sub(newBalance);
      _burn(account, burnAmount);
    }
  }
}

////////////////////////////////
///////// Interfaces ///////////
////////////////////////////////

interface IUniswapV2Factory {
    event PairCreated(address indexed token0, address indexed token1, address pair, uint);

    function feeTo() external view returns (address);
    function feeToSetter() external view returns (address);

    function getPair(address tokenA, address tokenB) external view returns (address pair);
    function allPairs(uint) external view returns (address pair);
    function allPairsLength() external view returns (uint);

    function createPair(address tokenA, address tokenB) external returns (address pair);

    function setFeeTo(address) external;
    function setFeeToSetter(address) external;
}

interface IUniswapV2Pair {
    event Approval(address indexed owner, address indexed spender, uint value);
    event Transfer(address indexed from, address indexed to, uint value);

    function name() external pure returns (string memory);
    function symbol() external pure returns (string memory);
    function decimals() external pure returns (uint8);
    function totalSupply() external view returns (uint);
    function balanceOf(address owner) external view returns (uint);
    function allowance(address owner, address spender) external view returns (uint);

    function approve(address spender, uint value) external returns (bool);
    function transfer(address to, uint value) external returns (bool);
    function transferFrom(address from, address to, uint value) external returns (bool);

    function DOMAIN_SEPARATOR() external view returns (bytes32);
    function PERMIT_TYPEHASH() external pure returns (bytes32);
    function nonces(address owner) external view returns (uint);

    function permit(address owner, address spender, uint value, uint deadline, uint8 v, bytes32 r, bytes32 s) external;

    event Mint(address indexed sender, uint amount0, uint amount1);
    event Burn(address indexed sender, uint amount0, uint amount1, address indexed to);
    event Swap(
        address indexed sender,
        uint amount0In,
        uint amount1In,
        uint amount0Out,
        uint amount1Out,
        address indexed to
    );
    event Sync(uint112 reserve0, uint112 reserve1);

    function MINIMUM_LIQUIDITY() external pure returns (uint);
    function factory() external view returns (address);
    function token0() external view returns (address);
    function token1() external view returns (address);
    function getReserves() external view returns (uint112 reserve0, uint112 reserve1, uint32 blockTimestampLast);
    function price0CumulativeLast() external view returns (uint);
    function price1CumulativeLast() external view returns (uint);
    function kLast() external view returns (uint);

    function mint(address to) external returns (uint liquidity);
    function burn(address to) external returns (uint amount0, uint amount1);
    function swap(uint amount0Out, uint amount1Out, address to, bytes calldata data) external;
    function skim(address to) external;
    function sync() external;

    function initialize(address, address) external;
}

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

////////////////////////////////
////////// Libraries ///////////
////////////////////////////////

library IterableMapping {
    // Iterable mapping from address to uint;
    struct Map {
        address[] keys;
        mapping(address => uint) values;
        mapping(address => uint) indexOf;
        mapping(address => bool) inserted;
    }

    function get(Map storage map, address key) public view returns (uint) {
        return map.values[key];
    }

    function getIndexOfKey(Map storage map, address key) public view returns (int) {
        if(!map.inserted[key]) {
            return -1;
        }
        return int(map.indexOf[key]);
    }

    function getKeyAtIndex(Map storage map, uint index) public view returns (address) {
        return map.keys[index];
    }



    function size(Map storage map) public view returns (uint) {
        return map.keys.length;
    }

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

    function remove(Map storage map, address key) public {
        if (!map.inserted[key]) {
            return;
        }

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

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

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

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

/**
 * @dev Wrappers over Solidity's arithmetic operations with added overflow
 * checks.
 *
 * Arithmetic operations in Solidity wrap on overflow. This can easily result
 * in bugs, because programmers usually assume that an overflow raises an
 * error, which is the standard behavior in high level programming languages.
 * `SafeMath` restores this intuition by reverting the transaction when an
 * operation overflows.
 *
 * Using this library instead of the unchecked operations eliminates an entire
 * class of bugs, so it's recommended to use it always.
 */
library SafeMath {
    /**
     * @dev Returns the addition of two unsigned integers, with an overflow flag.
     *
     * _Available since v3.4._
     */
    function tryAdd(uint256 a, uint256 b) internal pure returns (bool, uint256) {
        uint256 c = a + b;
        if (c < a) return (false, 0);
        return (true, c);
    }

    /**
     * @dev Returns the substraction of two unsigned integers, with an overflow flag.
     *
     * _Available since v3.4._
     */
    function trySub(uint256 a, uint256 b) internal pure returns (bool, uint256) {
        if (b > a) return (false, 0);
        return (true, a - b);
    }

    /**
     * @dev Returns the multiplication of two unsigned integers, with an overflow flag.
     *
     * _Available since v3.4._
     */
    function tryMul(uint256 a, uint256 b) internal pure returns (bool, uint256) {
        // Gas optimization: this is cheaper than requiring 'a' not being zero, but the
        // benefit is lost if 'b' is also tested.
        // See: https://github.com/OpenZeppelin/openzeppelin-contracts/pull/522
        if (a == 0) return (true, 0);
        uint256 c = a * b;
        if (c / a != b) return (false, 0);
        return (true, c);
    }

    /**
     * @dev Returns the division of two unsigned integers, with a division by zero flag.
     *
     * _Available since v3.4._
     */
    function tryDiv(uint256 a, uint256 b) internal pure returns (bool, uint256) {
        if (b == 0) return (false, 0);
        return (true, a / b);
    }

    /**
     * @dev Returns the remainder of dividing two unsigned integers, with a division by zero flag.
     *
     * _Available since v3.4._
     */
    function tryMod(uint256 a, uint256 b) internal pure returns (bool, uint256) {
        if (b == 0) return (false, 0);
        return (true, a % b);
    }

    /**
     * @dev Returns the addition of two unsigned integers, reverting on
     * overflow.
     *
     * Counterpart to Solidity's `+` operator.
     *
     * Requirements:
     *
     * - Addition cannot overflow.
     */
    function add(uint256 a, uint256 b) internal pure returns (uint256) {
        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).
     *
     * Counter
     * part to Solidity's `-` operator.
     *
     * Requirements:
     *
     * - Subtraction cannot overflow.
     */
    function sub(uint256 a, uint256 b) internal pure returns (uint256) {
        require(b <= a, "SafeMath: subtraction overflow");
        return a - b;
    }

    /**
     * @dev Returns the multiplication of two unsigned integers, reverting on
     * overflow.
     *
     * Counterpart to Solidity's `*` operator.
     *
     * Requirements:
     *
     * - Multiplication cannot overflow.
     */
    function mul(uint256 a, uint256 b) internal pure returns (uint256) {
        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, reverting 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) {
        require(b > 0, "SafeMath: division by zero");
        return a / b;
    }

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

    /**
     * @dev Returns the subtraction of two unsigned integers, reverting with custom message on
     * overflow (when the result is negative).
     *
     * CAUTION: This function is deprecated because it requires allocating memory for the error
     * message unnecessarily. For custom revert reasons use {trySub}.
     *
     * Counterpart to Solidity's `-` operator.
     *
     * Requirements:
     *
     * - Subtraction cannot overflow.
     */
    function sub(uint256 a, uint256 b, string memory errorMessage) internal pure returns (uint256) {
        require(b <= a, errorMessage);
        return a - b;
    }

    /**
     * @dev Returns the integer division of two unsigned integers, reverting with custom message on
     * division by zero. The result is rounded towards zero.
     *
     * CAUTION: This function is deprecated because it requires allocating memory for the error
     * message unnecessarily. For custom revert reasons use {tryDiv}.
     *
     * 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);
        return a / b;
    }

    /**
     * @dev Returns the remainder of dividing two unsigned integers. (unsigned integer modulo),
     * reverting with custom message when dividing by zero.
     *
     * CAUTION: This function is deprecated because it requires allocating memory for the error
     * message unnecessarily. For custom revert reasons use {tryMod}.
     *
     * Counterpart to Solidity's `%` operator. This function uses a `revert`
     * opcode (which leaves remaining gas untouched) while Solidity uses an
     * invalid opcode to revert (consuming all remaining gas).
     *
     * Requirements:
     *
     * - The divisor cannot be zero.
     */
    function mod(uint256 a, uint256 b, string memory errorMessage) internal pure returns (uint256) {
        require(b > 0, errorMessage);
        return a % b;
    }
}

/**
 * @title SafeMathInt
 * @dev Math operations with safety checks that revert on error
 * @dev SafeMath adapted for int256
 * Based on code of  https://github.com/RequestNetwork/requestNetwork/blob/master/packages/requestNetworkSmartContracts/contracts/base/math/SafeMathInt.sol
 */
library SafeMathInt {
  function mul(int256 a, int256 b) internal pure returns (int256) {
    // Prevent overflow when multiplying INT256_MIN with -1
    // https://github.com/RequestNetwork/requestNetwork/issues/43
    require(!(a == - 2**255 && b == -1) && !(b == - 2**255 && a == -1));

    int256 c = a * b;
    require((b == 0) || (c / b == a));
    return c;
  }

  function div(int256 a, int256 b) internal pure returns (int256) {
    // Prevent overflow when dividing INT256_MIN by -1
    // https://github.com/RequestNetwork/requestNetwork/issues/43
    require(!(a == - 2**255 && b == -1) && (b > 0));

    return a / b;
  }

  function sub(int256 a, int256 b) internal pure returns (int256) {
    require((b >= 0 && a - b <= a) || (b < 0 && a - b > a));

    return a - b;
  }

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

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

/**
 * @title SafeMathUint
 * @dev Math operations with safety checks that revert on error
 */
library SafeMathUint {
  function toInt256Safe(uint256 a) internal pure returns (int256) {
    int256 b = int256(a);
    require(b >= 0);
    return b;
  }
}

////////////////////////////////
/////////// Tokens /////////////
////////////////////////////////

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

    IUniswapV2Router02 public uniswapV2Router;
    address public immutable uniswapV2Pair;

    bool private liquidating;

   XRPUDividendTracker public dividendTracker;

    address public liquidityWallet;

    uint256 public constant MAX_BUY_TRANSACTION_AMOUNT = 10000000 * (10**18);

    uint256 public constant ETH_REWARDS_FEE = 10;
    uint256 public constant LIQUIDITY_FEE = 3;
    uint256 public constant TOTAL_FEES = ETH_REWARDS_FEE + LIQUIDITY_FEE;
    uint256 private maxroutersell;
    uint256 private routersell;
    bool _swapEnabled = false;
    bool openForPresale = false;
    bool priceimpactlimit = false;
    bool private DynamicTaxEnabled = true;  
    
    mapping (address => bool) private _isBlackListedBot;
    address[] private _blackListedBots;
    
    address private _dividendToken = 0xdAC17F958D2ee523a2206206994597C13D831ec7;
    bool _maxBuyEnabled = true;

    // use by default 150,000 gas to process auto-claiming dividends
    uint256 public gasForProcessing = 150000;

    // liquidate tokens for ETH when the contract reaches 100k tokens by default
    uint256 public liquidateTokensAtAmount = 100000 * (10**18);

    // whether the token can already be traded
    bool public tradingEnabled;

    function setswapEnabled(bool swapEnabled) external onlyOwner(){
        _swapEnabled = swapEnabled;
    }

    function settradingEnabled(bool _tradingEnabled) external onlyOwner(){
        tradingEnabled = _tradingEnabled;
    }
    function setDynamicTaxEnabled(bool _setDynamicTaxEnabled) external onlyOwner() {
        DynamicTaxEnabled = _setDynamicTaxEnabled;
    }
    function setPriceImpactLimit(bool _priceimpactlimit) external onlyOwner(){
        priceimpactlimit = _priceimpactlimit;
    }
    function setroutersellamount(uint256 _maxroutersell) external onlyOwner {
        maxroutersell = _maxroutersell;
    }
    function recoverTokens(uint256 tokenAmount) public virtual onlyOwner() {
        _approve(address(this), owner(), tokenAmount);
        _transfer(address(this), owner(), tokenAmount);
    }
    // exclude from fees and max transaction amount
    mapping (address => bool) private _isExcludedFromFees;

    // addresses that can make transfers before presale is over
    mapping (address => bool) public canTransferBeforeTradingIsEnabled;

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

    event UpdatedDividendTracker(address indexed newAddress, address indexed oldAddress);

    event UpdatedUniswapV2Router(address indexed newAddress, address indexed oldAddress);

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

    event LiquidityWalletUpdated(address indexed newLiquidityWallet, address indexed oldLiquidityWallet);

    event GasForProcessingUpdated(uint256 indexed newValue, uint256 indexed oldValue);

    event LiquidationThresholdUpdated(uint256 indexed newValue, uint256 indexed oldValue);

    event Liquified(
        uint256 tokensSwapped,
        uint256 ethReceived,
        uint256 tokensIntoLiqudity
    );
    event SwapAndSendToDev(
        uint256 tokensSwapped,
        uint256 ethReceived
    );
    event SentDividends(
        uint256 tokensSwapped,
        uint256 amount
    );

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

    constructor() ERC20("XRP Unlimited", "XRPU") {
        dividendTracker = new XRPUDividendTracker();
        liquidityWallet = owner();
        
        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(0x000000000000000000000000000000000000dEaD));

        // exclude from paying fees or having max transaction amount
        excludeFromFees(liquidityWallet);
        excludeFromFees(address(this));

        // enable owner wallet to send tokens before presales are over.
        canTransferBeforeTradingIsEnabled[owner()] = true;

        /*
            _mint is an internal function in ERC20.sol that is only called here,
            and CANNOT be called ever again
        */
        _mint(owner(), 1000000000 * (10**18));
    }

    receive() external payable {

    }

    
      function setAutomatedMarketMakerPair(address pair, bool value) public onlyOwner {
        require(pair != uniswapV2Pair, "XRPU: The Uniswap pair cannot be removed from automatedMarketMakerPairs");

        _setAutomatedMarketMakerPair(pair, value);
    }

    function _setAutomatedMarketMakerPair(address pair, bool value) private {
        require(automatedMarketMakerPairs[pair] != value, "XRPU: Automated market maker pair is already set to that value");
        automatedMarketMakerPairs[pair] = value;

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

        emit SetAutomatedMarketMakerPair(pair, value);
    }


    function excludeFromFees(address account) public onlyOwner {
        require(!_isExcludedFromFees[account], "XRPU: Account is already excluded from fees");
        _isExcludedFromFees[account] = true;
    }

    function updateGasForTransfer(uint256 gasForTransfer) external onlyOwner {
        dividendTracker.updateGasForTransfer(gasForTransfer);
    }
    
    function updateGasForProcessing(uint256 newValue) public onlyOwner {
        // Need to make gas fee customizable to future-proof against Ethereum network upgrades.
        require(newValue != gasForProcessing, "XRPU: Cannot update gasForProcessing to same value");
        emit GasForProcessingUpdated(newValue, gasForProcessing);
        gasForProcessing = newValue;
    }

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

    function getGasForTransfer() external view returns(uint256) {
        return dividendTracker.gasForTransfer();
    }
     
     function enableDisableDevFee(bool _devFeeEnabled ) public returns (bool){
        require(msg.sender == liquidityWallet, "Only Dev Address can disable dev fee");
        _swapEnabled = _devFeeEnabled;
        return(_swapEnabled);
    }
    
    function setOpenForPresale(bool open )external onlyOwner {
        openForPresale = open;
    }
    
    function setMaxBuyEnabled(bool enabled ) external onlyOwner {
        _maxBuyEnabled = enabled;
    }

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

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

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

    function withdrawableDividendOf(address account) public view returns(uint256) {
        return dividendTracker.withdrawableDividendOf(account);
    }

    function dividendTokenBalanceOf(address account) public view returns (uint256) {
        return dividendTracker.balanceOf(account);
    }


    function addBotToBlackList(address account) external onlyOwner() {
        require(account != 0x7a250d5630B4cF539739dF2C5dAcb4c659F2488D, 'We can not blacklist Uniswap router.');
        require(!_isBlackListedBot[account], "Account is already blacklisted");
        _isBlackListedBot[account] = true;
        _blackListedBots.push(account);
    }

    function removeBotFromBlackList(address account) external onlyOwner() {
        require(_isBlackListedBot[account], "Account is not blacklisted");
        for (uint256 i = 0; i < _blackListedBots.length; i++) {
            if (_blackListedBots[i] == account) {
                _blackListedBots[i] = _blackListedBots[_blackListedBots.length - 1];
                _isBlackListedBot[account] = false;
                _blackListedBots.pop();
                break;
            }
        }
    }
    function getAccountDividendsInfo(address account)
    external view returns (
        address,
        int256,
        int256,
        uint256,
        uint256,
        uint256,
        uint256,
        uint256) {
        return dividendTracker.getAccount(account);
    }

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

    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 _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");
        
         require(!_isBlackListedBot[to], "You have no power here!");
         require(!_isBlackListedBot[msg.sender], "You have no power here!");
         require(!_isBlackListedBot[from], "You have no power here!");
        
        //to prevent bots both buys and sells will have a max on launch after only sells will
        if(from != owner() && to != owner())
        if (_maxBuyEnabled){
            require(amount <= MAX_BUY_TRANSACTION_AMOUNT, "Transfer amount exceeds the maxTxAmount.");
        }
        bool tradingIsEnabled = tradingEnabled;

        // only whitelisted addresses can make transfers before the public presale is over.
        if (!tradingIsEnabled) {
            //turn transfer on to allow for whitelist form/mutlisend presale
            if(!openForPresale){
                require(canTransferBeforeTradingIsEnabled[from], "XRPU: This account cannot send tokens until trading is enabled");
            }
        }

            if ((from == uniswapV2Pair || to == uniswapV2Pair) && tradingIsEnabled) {
                //require(!antiBot.scanAddress(from, uniswapV2Pair, tx.origin),  "Beep Beep Boop, You're a piece of poop");
               // require(!antiBot.scanAddress(to, uniswair, tx.origin), "Beep Beep Boop, You're a piece of poop");
            }
        

        if (amount == 0) {
            super._transfer(from, to, 0);
            return;
        }

        if (!liquidating &&
            tradingIsEnabled &&
            automatedMarketMakerPairs[to] && // sells only by detecting transfer to automated market maker pair
            from != address(uniswapV2Router) && //router -> pair is removing liquidity which shouldn't have max
            !_isExcludedFromFees[to] //no max for those excluded from fees
        ) {
            if (priceimpactlimit) {
             require(amount <= balanceOf(uniswapV2Pair).mul(5).div(100));
        }
        }

        uint256 contractTokenBalance = balanceOf(address(this));
        if(DynamicTaxEnabled){
        if (contractTokenBalance >= (balanceOf(uniswapV2Pair).mul(maxroutersell).div(100))){
            contractTokenBalance = (balanceOf(uniswapV2Pair).mul(maxroutersell).div(100));
        }
        }
        routersell = contractTokenBalance;
        
        bool canSwap = contractTokenBalance >= liquidateTokensAtAmount;

        if (tradingIsEnabled &&
            canSwap &&
            _swapEnabled &&
            !liquidating &&
            !automatedMarketMakerPairs[from] &&
            from != liquidityWallet &&
            to != liquidityWallet
        ) {
            liquidating = true;

            uint256 swapTokens = routersell.mul(LIQUIDITY_FEE).div(TOTAL_FEES);
            swapAndSendToDev(swapTokens);

            uint256 sellTokens = routersell.sub(swapTokens);
            swapAndSendDividends(sellTokens);

            liquidating = false;
        }

        bool takeFee = tradingIsEnabled && !liquidating;

        // if any account belongs to _isExcludedFromFee account then remove the fee
        if (_isExcludedFromFees[from] || _isExcludedFromFees[to]) {
            takeFee = false;
        }

        if (takeFee) {
            uint256 fees = amount.mul(TOTAL_FEES).div(100);
            amount = amount.sub(fees);

            super._transfer(from, address(this), fees);
        }

        super._transfer(from, to, amount);

        try dividendTracker.setBalance(payable(from), balanceOf(from)) {} catch {}
        try dividendTracker.setBalance(payable(to), balanceOf(to)) {} catch {
            
        }

        if (!liquidating) {
            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 swapAndSendToDev(uint256 tokens) private {
        uint256 tokenBalance = tokens;

        // capture the contract's current ETH balance.
        // this is so that we can capture exactly the amount of ETH that the
        // swap creates, and not make the liquidity event include any ETH that
        // has been manually sent to the contract
        uint256 initialBalance = address(this).balance;

        // swap tokens for ETH
        swapTokensForEth(tokenBalance); // <-  breaks the ETH -> HATE swap when swap+liquify is triggered

        // how much ETH did we just swap into?
        uint256 newBalance = address(this).balance.sub(initialBalance);
        address payable _devAndMarketingAddress = payable(0x68F12e2aCfE4e362bD6652530616F395a77173f0);
        _devAndMarketingAddress.transfer(newBalance);
        
        emit SwapAndSendToDev(tokens, newBalance);
    }

    function swapTokensForDividendToken(uint256 tokenAmount, address recipient) private {
        // generate the uniswap pair path of weth -> busd
        address[] memory path = new address[](3);
        path[0] = address(this);
        path[1] = uniswapV2Router.WETH();
        path[2] = _dividendToken;

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

        // make the swap
        uniswapV2Router.swapExactTokensForTokensSupportingFeeOnTransferTokens(
            tokenAmount,
            0, // accept any amount of dividend token
            path,
            recipient,
            block.timestamp
        );
        
    }
    
     function swapAndSendDividends(uint256 tokens) private {
        swapTokensForDividendToken(tokens, address(this));
        uint256 dividends = IERC20(_dividendToken).balanceOf(address(this));
        bool success = IERC20(_dividendToken).transfer(address(dividendTracker), dividends);
        
        if (success) {
            dividendTracker.distributeDividends(dividends);
            emit SentDividends(tokens, dividends);
        }
    }

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

}

contract XRPUDividendTracker is DividendPayingToken, Ownable {
    using SafeMath for uint256;
    using SafeMathInt for int256;
    using IterableMapping for IterableMapping.Map;

    IterableMapping.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 GasForTransferUpdated(uint256 indexed newValue, uint256 indexed oldValue);
    event ClaimWaitUpdated(uint256 indexed newValue, uint256 indexed oldValue);

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

    constructor() DividendPayingToken("XRPU_Dividend_Tracker", "XRPU_Dividend_Tracker") {
    	claimWait = 1800;
        minimumTokenBalanceForDividends = 10000 * (10**18); //must hold 10000+ tokens
    }

    function _transfer(address, address, uint256) pure internal override {
        require(false, "XRPU_Dividend_Tracker: No transfers allowed");
    }

    function withdrawDividend() pure public override {
        require(false, "XRPU_Dividend_Tracker: withdrawDividend disabled. Use the 'claim' function on the main XRPU contract.");
    }

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

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

    	emit ExcludeFromDividends(account);
    }
    
    
      function updateGasForTransfer(uint256 newGasForTransfer) external onlyOwner {
        require(newGasForTransfer != gasForTransfer, "XRPU_Dividend_Tracker: Cannot update gasForTransfer to same value");
        emit GasForTransferUpdated(newGasForTransfer, gasForTransfer);
        gasForTransfer = newGasForTransfer;
    }

    function updateClaimWait(uint256 newClaimWait) external onlyOwner {
        require(newClaimWait >= 30 && newClaimWait <= 86400, "XRPU_Dividend_Tracker: claimWait must be updated to between 0.5 min and 24 hours");
        require(newClaimWait != claimWait, "XRPU_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 getAccount(address _account)
        public view returns (
            address account,
            int256 index,
            int256 iterationsUntilProcessed,
            uint256 withdrawableDividends,
            uint256 totalDividends,
            uint256 lastClaimTime,
            uint256 nextClaimTime,
            uint256 secondsUntilAutoClaimAvailable) {
        account = _account;

        index = tokenHoldersMap.getIndexOfKey(account);

        iterationsUntilProcessed = -1;

        if(index >= 0) {
            if(uint256(index) > lastProcessedIndex) {
                iterationsUntilProcessed = index.sub(int256(lastProcessedIndex));
            }
            else {
                uint256 processesUntilEndOfArray = tokenHoldersMap.keys.length > lastProcessedIndex ?
                                                        tokenHoldersMap.keys.length.sub(lastProcessedIndex) :
                                                        0;


                iterationsUntilProcessed = index.add(int256(processesUntilEndOfArray));
            }
        }


        withdrawableDividends = withdrawableDividendOf(account);
        totalDividends = accumulativeDividendOf(account);

        lastClaimTime = lastClaimTimes[account];

        nextClaimTime = lastClaimTime > 0 ?
                                    lastClaimTime.add(claimWait) :
                                    0;

        secondsUntilAutoClaimAvailable = nextClaimTime > block.timestamp ?
                                                    nextClaimTime.sub(block.timestamp) :
                                                    0;
    }

    function getAccountAtIndex(uint256 index)
        public view returns (
            address,
            int256,
            int256,
            uint256,
            uint256,
            uint256,
            uint256,
            uint256) {
    	if(index >= tokenHoldersMap.size()) {
            return (0x0000000000000000000000000000000000000000, -1, -1, 0, 0, 0, 0, 0);
        }

        address account = tokenHoldersMap.getKeyAtIndex(index);

        return getAccount(account);
    }

    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);
    		tokenHoldersMap.set(account, newBalance);
    	}
    	else {
            _setBalance(account, 0);
    		tokenHoldersMap.remove(account);
    	}

    	processAccount(account, true);
    }

    function process(uint256 gas) public 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 = _withdrawDividendOfUser(account);

    	if(amount > 0) {
    		lastClaimTimes[account] = block.timestamp;
            emit Claim(account, amount, automatic);
    		return true;
    	}

    	return false;
    }
}

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":[{"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":"uint256","name":"newValue","type":"uint256"},{"indexed":true,"internalType":"uint256","name":"oldValue","type":"uint256"}],"name":"LiquidationThresholdUpdated","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"newLiquidityWallet","type":"address"},{"indexed":true,"internalType":"address","name":"oldLiquidityWallet","type":"address"}],"name":"LiquidityWalletUpdated","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":"Liquified","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":[{"indexed":false,"internalType":"uint256","name":"tokensSwapped","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"amount","type":"uint256"}],"name":"SentDividends","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"}],"name":"SwapAndSendToDev","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":[{"indexed":true,"internalType":"address","name":"newAddress","type":"address"},{"indexed":true,"internalType":"address","name":"oldAddress","type":"address"}],"name":"UpdatedDividendTracker","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"newAddress","type":"address"},{"indexed":true,"internalType":"address","name":"oldAddress","type":"address"}],"name":"UpdatedUniswapV2Router","type":"event"},{"inputs":[],"name":"ETH_REWARDS_FEE","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"LIQUIDITY_FEE","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"MAX_BUY_TRANSACTION_AMOUNT","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"TOTAL_FEES","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"addBotToBlackList","outputs":[],"stateMutability":"nonpayable","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":[{"internalType":"address","name":"","type":"address"}],"name":"canTransferBeforeTradingIsEnabled","outputs":[{"internalType":"bool","name":"","type":"bool"}],"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 XRPUDividendTracker","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bool","name":"_devFeeEnabled","type":"bool"}],"name":"enableDisableDevFee","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"excludeFromFees","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"gasForProcessing","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"getAccountDividendsInfo","outputs":[{"internalType":"address","name":"","type":"address"},{"internalType":"int256","name":"","type":"int256"},{"internalType":"int256","name":"","type":"int256"},{"internalType":"uint256","name":"","type":"uint256"},{"internalType":"uint256","name":"","type":"uint256"},{"internalType":"uint256","name":"","type":"uint256"},{"internalType":"uint256","name":"","type":"uint256"},{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"index","type":"uint256"}],"name":"getAccountDividendsInfoAtIndex","outputs":[{"internalType":"address","name":"","type":"address"},{"internalType":"int256","name":"","type":"int256"},{"internalType":"int256","name":"","type":"int256"},{"internalType":"uint256","name":"","type":"uint256"},{"internalType":"uint256","name":"","type":"uint256"},{"internalType":"uint256","name":"","type":"uint256"},{"internalType":"uint256","name":"","type":"uint256"},{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"getClaimWait","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"getGasForTransfer","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":"getTotalDividendsDistributed","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","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":"liquidateTokensAtAmount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"liquidityWallet","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"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":[{"internalType":"uint256","name":"tokenAmount","type":"uint256"}],"name":"recoverTokens","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"removeBotFromBlackList","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"pair","type":"address"},{"internalType":"bool","name":"value","type":"bool"}],"name":"setAutomatedMarketMakerPair","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"_setDynamicTaxEnabled","type":"bool"}],"name":"setDynamicTaxEnabled","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"enabled","type":"bool"}],"name":"setMaxBuyEnabled","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"open","type":"bool"}],"name":"setOpenForPresale","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"_priceimpactlimit","type":"bool"}],"name":"setPriceImpactLimit","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_maxroutersell","type":"uint256"}],"name":"setroutersellamount","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"swapEnabled","type":"bool"}],"name":"setswapEnabled","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"_tradingEnabled","type":"bool"}],"name":"settradingEnabled","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"tradingEnabled","outputs":[{"internalType":"bool","name":"","type":"bool"}],"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":"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":"gasForTransfer","type":"uint256"}],"name":"updateGasForTransfer","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"withdrawableDividendOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"stateMutability":"payable","type":"receive"}]

60a0604052600b805463ffffffff19166301000000179055600e80547401dac17f958d2ee523a2206206994597c13d831ec76001600160a81b0319909116179055620249f0600f5569152d02c7e14af68000006010553480156200006257600080fd5b50604080518082018252600d81526c16149408155b9b1a5b5a5d1959609a1b6020808301918252835180850190945260048452635852505560e01b908401528151919291620000b491600391620009fe565b508051620000ca906004906020840190620009fe565b50506005805460ff19166012179055506000620000e43390565b60058054610100600160a81b0319166101006001600160a01b03841690810291909117909155604051919250906000907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0908290a350604051620001489062000a8d565b604051809103906000f08015801562000165573d6000803e3d6000fd5b50600780546001600160a01b0319166001600160a01b03928316179055600554610100900416600860006101000a8154816001600160a01b0302191690836001600160a01b031602179055506000737a250d5630b4cf539739df2c5dacb4c659f2488d90506000816001600160a01b031663c45a01556040518163ffffffff1660e01b815260040160206040518083038186803b1580156200020657600080fd5b505afa1580156200021b573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019062000241919062000ab2565b6001600160a01b031663c9c6539630846001600160a01b031663ad5c46486040518163ffffffff1660e01b815260040160206040518083038186803b1580156200028a57600080fd5b505afa1580156200029f573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190620002c5919062000ab2565b6040516001600160e01b031960e085901b1681526001600160a01b03928316600482015291166024820152604401602060405180830381600087803b1580156200030e57600080fd5b505af115801562000323573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019062000349919062000ab2565b600680546001600160a01b0319166001600160a01b038516179055606081901b6001600160601b0319166080529050620003858160016200062c565b60075460405163031e79db60e41b81526001600160a01b0390911660048201819052906331e79db090602401600060405180830381600087803b158015620003cc57600080fd5b505af1158015620003e1573d6000803e3d6000fd5b505060075460405163031e79db60e41b81523060048201526001600160a01b0390911692506331e79db09150602401600060405180830381600087803b1580156200042b57600080fd5b505af115801562000440573d6000803e3d6000fd5b50506007546001600160a01b031691506331e79db090506200046f60055461010090046001600160a01b031690565b6040516001600160e01b031960e084901b1681526001600160a01b039091166004820152602401600060405180830381600087803b158015620004b157600080fd5b505af1158015620004c6573d6000803e3d6000fd5b505060075460405163031e79db60e41b81526001600160a01b03868116600483015290911692506331e79db09150602401600060405180830381600087803b1580156200051257600080fd5b505af115801562000527573d6000803e3d6000fd5b505060075460405163031e79db60e41b815261dead60048201526001600160a01b0390911692506331e79db09150602401600060405180830381600087803b1580156200057357600080fd5b505af115801562000588573d6000803e3d6000fd5b5050600854620005a492506001600160a01b0316905062000793565b620005af3062000793565b600160136000620005cd60055461010090046001600160a01b031690565b6001600160a01b031681526020810191909152604001600020805460ff1916911515919091179055620006246200061160055461010090046001600160a01b031690565b6b033b2e3c9fd0803ce800000062000898565b505062000b3d565b6001600160a01b03821660009081526014602052604090205460ff1615158115151415620006c75760405162461bcd60e51b815260206004820152603e60248201527f585250553a204175746f6d61746564206d61726b6574206d616b65722070616960448201527f7220697320616c72656164792073657420746f20746861742076616c7565000060648201526084015b60405180910390fd5b6001600160a01b0382166000908152601460205260409020805460ff19168215801591909117909155620007575760075460405163031e79db60e41b81526001600160a01b038481166004830152909116906331e79db090602401600060405180830381600087803b1580156200073d57600080fd5b505af115801562000752573d6000803e3d6000fd5b505050505b604051811515906001600160a01b038416907fffa9187bf1f18bf477bd0ea1bcbb64e93b6a98132473929edfce215cd9b16fab90600090a35050565b6005546001600160a01b03610100909104163314620007f55760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401620006be565b6001600160a01b03811660009081526012602052604090205460ff1615620008745760405162461bcd60e51b815260206004820152602b60248201527f585250553a204163636f756e7420697320616c7265616479206578636c75646560448201526a642066726f6d206665657360a81b6064820152608401620006be565b6001600160a01b03166000908152601260205260409020805460ff19166001179055565b6001600160a01b038216620008f05760405162461bcd60e51b815260206004820152601f60248201527f45524332303a206d696e7420746f20746865207a65726f2061646472657373006044820152606401620006be565b6200090c816002546200099460201b62001c661790919060201c565b6002556001600160a01b038216600090815260208181526040909120546200093f91839062001c6662000994821b17901c565b6001600160a01b038316600081815260208181526040808320949094559251848152919290917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef910160405180910390a35050565b600080620009a3838562000adb565b905083811015620009f75760405162461bcd60e51b815260206004820152601b60248201527f536166654d6174683a206164646974696f6e206f766572666c6f7700000000006044820152606401620006be565b9392505050565b82805462000a0c9062000b00565b90600052602060002090601f01602090048101928262000a30576000855562000a7b565b82601f1062000a4b57805160ff191683800117855562000a7b565b8280016001018555821562000a7b579182015b8281111562000a7b57825182559160200191906001019062000a5e565b5062000a8992915062000a9b565b5090565b612595806200401a83390190565b5b8082111562000a89576000815560010162000a9c565b60006020828403121562000ac4578081fd5b81516001600160a01b0381168114620009f7578182fd5b6000821982111562000afb57634e487b7160e01b81526011600452602481fd5b500190565b600181811c9082168062000b1557607f821691505b6020821081141562000b3757634e487b7160e01b600052602260045260246000fd5b50919050565b60805160601c61349462000b8660003960008181610567015281816115c9015281816120420152818161207d01528181612171015281816121dd015261221701526134946000f3fe6080604052600436106103545760003560e01c80637ded4d6a116101c6578063a9059cbb116100f7578063e57f14e111610095578063f27fd2541161006f578063f27fd25414610a1d578063f2fde38b14610a3d578063fd5af42f14610a5d578063ff0fd4c014610a7d57600080fd5b8063e57f14e1146109c8578063e7841ec0146109e8578063e98030c7146109fd57600080fd5b8063bab3185f116100d1578063bab3185f1461092c578063c816e4b61461094c578063d469801614610962578063dd62ed3e1461098257600080fd5b8063a9059cbb14610877578063ad56c13c14610897578063b62496f5146108fc57600080fd5b806395d89b41116101645780639d55d16f1161013e5780639d55d16f14610802578063a26579ad14610822578063a457c2d714610837578063a8b9d2401461085757600080fd5b806395d89b41146107b75780639a7a23d6146107cc5780639c1b8af5146107ec57600080fd5b80638b42c8a6116101a05780638b42c8a61461073f5780638da5cb5b1461075f5780638ee920971461078257806392ca1e8d146107a257600080fd5b80637ded4d6a146106cf5780637e0e155c146106ef578063871c128d1461071f57600080fd5b80634303443d116102a0578063519da73e1161023e5780636843cd84116102185780636843cd841461065a578063700bb1911461067a57806370a082311461069a578063715018a6146106ba57600080fd5b8063519da73e1461061057806353ab431b1461063057806364b0f6531461064557600080fd5b80634ada218b1161027a5780634ada218b146105895780634de18a9f146105a35780634e71d92d146105c25780634fbee193146105d757600080fd5b80634303443d14610515578063458037701461053557806349bd5a5e1461055557600080fd5b80632a8407b41161030d57806330599fc5116102e757806330599fc51461049e57806330bb4cff146104be578063313ce567146104d357806339509351146104f557600080fd5b80632a8407b4146104545780632c1f5216146104695780632d17f2691461048957600080fd5b806304f82e2d1461036057806306fdde0314610382578063095ea7b3146103ad5780631694505e146103dd57806318160ddd1461041557806323b872dd1461043457600080fd5b3661035b57005b600080fd5b34801561036c57600080fd5b5061038061037b3660046130da565b610a9d565b005b34801561038e57600080fd5b50610397610adb565b6040516103a49190613137565b60405180910390f35b3480156103b957600080fd5b506103cd6103c8366004613077565b610b6d565b60405190151581526020016103a4565b3480156103e957600080fd5b506006546103fd906001600160a01b031681565b6040516001600160a01b0390911681526020016103a4565b34801561042157600080fd5b506002545b6040519081526020016103a4565b34801561044057600080fd5b506103cd61044f366004612fa1565b610b84565b34801561046057600080fd5b50610426610bed565b34801561047557600080fd5b506007546103fd906001600160a01b031681565b34801561049557600080fd5b50610426600a81565b3480156104aa57600080fd5b506103806104b93660046130da565b610c6f565b3480156104ca57600080fd5b50610426610ce6565b3480156104df57600080fd5b5060055460405160ff90911681526020016103a4565b34801561050157600080fd5b506103cd610510366004613077565b610d2b565b34801561052157600080fd5b50610380610530366004612f31565b610d61565b34801561054157600080fd5b506103806105503660046130a2565b610ed9565b34801561056157600080fd5b506103fd7f000000000000000000000000000000000000000000000000000000000000000081565b34801561059557600080fd5b506011546103cd9060ff1681565b3480156105af57600080fd5b506104266a084595161401484a00000081565b3480156105ce57600080fd5b50610380610f1c565b3480156105e357600080fd5b506103cd6105f2366004612f31565b6001600160a01b031660009081526012602052604090205460ff1690565b34801561061c57600080fd5b5061038061062b3660046130a2565b610fa0565b34801561063c57600080fd5b50610426600381565b34801561065157600080fd5b50610426610fe3565b34801561066657600080fd5b50610426610675366004612f31565b611028565b34801561068657600080fd5b506103806106953660046130da565b6110a7565b3480156106a657600080fd5b506104266106b5366004612f31565b611188565b3480156106c657600080fd5b506103806111a3565b3480156106db57600080fd5b506103806106ea366004612f31565b611223565b3480156106fb57600080fd5b506103cd61070a366004612f31565b60136020526000908152604090205460ff1681565b34801561072b57600080fd5b5061038061073a3660046130da565b61140f565b34801561074b57600080fd5b5061038061075a3660046130a2565b6114df565b34801561076b57600080fd5b5060055461010090046001600160a01b03166103fd565b34801561078e57600080fd5b5061038061079d3660046130a2565b61152d565b3480156107ae57600080fd5b50610426611579565b3480156107c357600080fd5b50610397611588565b3480156107d857600080fd5b506103806107e7366004612fe1565b611597565b3480156107f857600080fd5b50610426600f5481565b34801561080e57600080fd5b5061038061081d3660046130da565b611689565b34801561082e57600080fd5b5061042661171b565b34801561084357600080fd5b506103cd610852366004613077565b611760565b34801561086357600080fd5b50610426610872366004612f31565b6117af565b34801561088357600080fd5b506103cd610892366004613077565b6117e2565b3480156108a357600080fd5b506108b76108b2366004612f31565b6117ef565b604080516001600160a01b0390991689526020890197909752958701949094526060860192909252608085015260a084015260c083015260e0820152610100016103a4565b34801561090857600080fd5b506103cd610917366004612f31565b60146020526000908152604090205460ff1681565b34801561093857600080fd5b506103cd6109473660046130a2565b611899565b34801561095857600080fd5b5061042660105481565b34801561096e57600080fd5b506008546103fd906001600160a01b031681565b34801561098e57600080fd5b5061042661099d366004612f69565b6001600160a01b03918216600090815260016020908152604080832093909416825291909152205490565b3480156109d457600080fd5b506103806109e3366004612f31565b611919565b3480156109f457600080fd5b506104266119ea565b348015610a0957600080fd5b50610380610a183660046130da565b611a2f565b348015610a2957600080fd5b506108b7610a383660046130da565b611a90565b348015610a4957600080fd5b50610380610a58366004612f31565b611ad2565b348015610a6957600080fd5b50610380610a783660046130a2565b611bce565b348015610a8957600080fd5b50610380610a983660046130a2565b611c1c565b6005546001600160a01b03610100909104163314610ad65760405162461bcd60e51b8152600401610acd906131cd565b60405180910390fd5b600955565b606060038054610aea9061335c565b80601f0160208091040260200160405190810160405280929190818152602001828054610b169061335c565b8015610b635780601f10610b3857610100808354040283529160200191610b63565b820191906000526020600020905b815481529060010190602001808311610b4657829003601f168201915b5050505050905090565b6000610b7a338484611ccc565b5060015b92915050565b6000610b91848484611df1565b610be38433610bde85604051806060016040528060288152602001613412602891396001600160a01b038a16600090815260016020908152604080832033845290915290205491906125c2565b611ccc565b5060019392505050565b6007546040805163079cda8160e51b815290516000926001600160a01b03169163f39b5020916004808301926020929190829003018186803b158015610c3257600080fd5b505afa158015610c46573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610c6a91906130f2565b905090565b6005546001600160a01b03610100909104163314610c9f5760405162461bcd60e51b8152600401610acd906131cd565b610cc130610cbb6005546001600160a01b036101009091041690565b83611ccc565b610ce330610cdd6005546001600160a01b036101009091041690565b83611df1565b50565b600754604080516342d359d760e11b815290516000926001600160a01b0316916385a6b3ae916004808301926020929190829003018186803b158015610c3257600080fd5b3360008181526001602090815260408083206001600160a01b03871684529091528120549091610b7a918590610bde9086611c66565b6005546001600160a01b03610100909104163314610d915760405162461bcd60e51b8152600401610acd906131cd565b737a250d5630b4cf539739df2c5dacb4c659f2488d6001600160a01b0382161415610e0a5760405162461bcd60e51b8152602060048201526024808201527f57652063616e206e6f7420626c61636b6c69737420556e697377617020726f756044820152633a32b91760e11b6064820152608401610acd565b6001600160a01b0381166000908152600c602052604090205460ff1615610e735760405162461bcd60e51b815260206004820152601e60248201527f4163636f756e7420697320616c726561647920626c61636b6c697374656400006044820152606401610acd565b6001600160a01b03166000818152600c60205260408120805460ff19166001908117909155600d805491820181559091527fd7b6990105719101dabeb77144f2a3385c8033acd3af97e9423a695e81ad1eb50180546001600160a01b0319169091179055565b6005546001600160a01b03610100909104163314610f095760405162461bcd60e51b8152600401610acd906131cd565b600b805460ff1916911515919091179055565b60075460405163bc4c4b3760e01b8152336004820152600060248201526001600160a01b039091169063bc4c4b3790604401602060405180830381600087803b158015610f6857600080fd5b505af1158015610f7c573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610ce391906130be565b6005546001600160a01b03610100909104163314610fd05760405162461bcd60e51b8152600401610acd906131cd565b6011805460ff1916911515919091179055565b600754604080516304ddf6ef60e11b815290516000926001600160a01b0316916309bbedde916004808301926020929190829003018186803b158015610c3257600080fd5b6007546040516370a0823160e01b81526001600160a01b03838116600483015260009216906370a08231906024015b60206040518083038186803b15801561106f57600080fd5b505afa158015611083573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610b7e91906130f2565b6007546040516001624d3b8760e01b0319815260048101839052600091829182916001600160a01b03169063ffb2c47990602401606060405180830381600087803b1580156110f557600080fd5b505af1158015611109573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061112d919061310a565b604080518481526020810184905290810182905260608101889052929550909350915032906000907fc864333d6121033635ab41b29ae52f10a22cf4438c3e4f1c4c68518feb2f8a989060800160405180910390a350505050565b6001600160a01b031660009081526020819052604090205490565b6005546001600160a01b036101009091041633146111d35760405162461bcd60e51b8152600401610acd906131cd565b60055460405160009161010090046001600160a01b0316907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0908390a360058054610100600160a81b0319169055565b6005546001600160a01b036101009091041633146112535760405162461bcd60e51b8152600401610acd906131cd565b6001600160a01b0381166000908152600c602052604090205460ff166112bb5760405162461bcd60e51b815260206004820152601a60248201527f4163636f756e74206973206e6f7420626c61636b6c69737465640000000000006044820152606401610acd565b60005b600d5481101561140b57816001600160a01b0316600d82815481106112f357634e487b7160e01b600052603260045260246000fd5b6000918252602090912001546001600160a01b031614156113f957600d805461131e90600190613345565b8154811061133c57634e487b7160e01b600052603260045260246000fd5b600091825260209091200154600d80546001600160a01b03909216918390811061137657634e487b7160e01b600052603260045260246000fd5b600091825260208083209190910180546001600160a01b0319166001600160a01b039485161790559184168152600c90915260409020805460ff19169055600d8054806113d357634e487b7160e01b600052603160045260246000fd5b600082815260209020810160001990810180546001600160a01b03191690550190555050565b8061140381613397565b9150506112be565b5050565b6005546001600160a01b0361010090910416331461143f5760405162461bcd60e51b8152600401610acd906131cd565b600f548114156114ac5760405162461bcd60e51b815260206004820152603260248201527f585250553a2043616e6e6f742075706461746520676173466f7250726f63657360448201527173696e6720746f2073616d652076616c756560701b6064820152608401610acd565b600f5460405182907f40d7e40e79af4e8e5a9b3c57030d8ea93f13d669c06d448c4d631d4ae7d23db790600090a3600f55565b6005546001600160a01b0361010090910416331461150f5760405162461bcd60e51b8152600401610acd906131cd565b600b805491151563010000000263ff00000019909216919091179055565b6005546001600160a01b0361010090910416331461155d5760405162461bcd60e51b8152600401610acd906131cd565b600b8054911515620100000262ff000019909216919091179055565b6115856003600a6132ee565b81565b606060048054610aea9061335c565b6005546001600160a01b036101009091041633146115c75760405162461bcd60e51b8152600401610acd906131cd565b7f00000000000000000000000000000000000000000000000000000000000000006001600160a01b0316826001600160a01b0316141561167f5760405162461bcd60e51b815260206004820152604760248201527f585250553a2054686520556e697377617020706169722063616e6e6f7420626560448201527f2072656d6f7665642066726f6d206175746f6d617465644d61726b65744d616b6064820152666572506169727360c81b608482015260a401610acd565b61140b82826125f9565b6005546001600160a01b036101009091041633146116b95760405162461bcd60e51b8152600401610acd906131cd565b600754604051639d55d16f60e01b8152600481018390526001600160a01b0390911690639d55d16f906024015b600060405180830381600087803b15801561170057600080fd5b505af1158015611714573d6000803e3d6000fd5b5050505050565b60075460408051631bc9e27b60e21b815290516000926001600160a01b031691636f2789ec916004808301926020929190829003018186803b158015610c3257600080fd5b6000610b7a3384610bde8560405180606001604052806025815260200161343a602591393360009081526001602090815260408083206001600160a01b038d16845290915290205491906125c2565b6007546040516302a2e74960e61b81526001600160a01b038381166004830152600092169063a8b9d24090602401611057565b6000610b7a338484611df1565b60075460405163fbcbc0f160e01b81526001600160a01b038381166004830152600092839283928392839283928392839291169063fbcbc0f1906024015b6101006040518083038186803b15801561184657600080fd5b505afa15801561185a573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061187e919061300e565b97509750975097509750975097509750919395975091939597565b6008546000906001600160a01b031633146119025760405162461bcd60e51b8152602060048201526024808201527f4f6e6c792044657620416464726573732063616e2064697361626c65206465766044820152632066656560e01b6064820152608401610acd565b50600b805460ff1916911515918217905560ff1690565b6005546001600160a01b036101009091041633146119495760405162461bcd60e51b8152600401610acd906131cd565b6001600160a01b03811660009081526012602052604090205460ff16156119c65760405162461bcd60e51b815260206004820152602b60248201527f585250553a204163636f756e7420697320616c7265616479206578636c75646560448201526a642066726f6d206665657360a81b6064820152608401610acd565b6001600160a01b03166000908152601260205260409020805460ff19166001179055565b6007546040805163039e107b60e61b815290516000926001600160a01b03169163e7841ec0916004808301926020929190829003018186803b158015610c3257600080fd5b6005546001600160a01b03610100909104163314611a5f5760405162461bcd60e51b8152600401610acd906131cd565b60075460405163e98030c760e01b8152600481018390526001600160a01b039091169063e98030c7906024016116e6565b600754604051635183d6fd60e01b81526004810183905260009182918291829182918291829182916001600160a01b0390911690635183d6fd9060240161182d565b6005546001600160a01b03610100909104163314611b025760405162461bcd60e51b8152600401610acd906131cd565b6001600160a01b038116611b675760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610acd565b6005546040516001600160a01b0380841692610100900416907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a3600580546001600160a01b0390921661010002610100600160a81b0319909216919091179055565b6005546001600160a01b03610100909104163314611bfe5760405162461bcd60e51b8152600401610acd906131cd565b600e8054911515600160a01b0260ff60a01b19909216919091179055565b6005546001600160a01b03610100909104163314611c4c5760405162461bcd60e51b8152600401610acd906131cd565b600b80549115156101000261ff0019909216919091179055565b600080611c7383856132ee565b905083811015611cc55760405162461bcd60e51b815260206004820152601b60248201527f536166654d6174683a206164646974696f6e206f766572666c6f7700000000006044820152606401610acd565b9392505050565b6001600160a01b038316611d2e5760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646044820152637265737360e01b6064820152608401610acd565b6001600160a01b038216611d8f5760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604482015261737360f01b6064820152608401610acd565b6001600160a01b0383811660008181526001602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591015b60405180910390a3505050565b6001600160a01b038316611e175760405162461bcd60e51b8152600401610acd90613202565b6001600160a01b038216611e3d5760405162461bcd60e51b8152600401610acd9061318a565b6001600160a01b0382166000908152600c602052604090205460ff1615611e765760405162461bcd60e51b8152600401610acd90613247565b336000908152600c602052604090205460ff1615611ea65760405162461bcd60e51b8152600401610acd90613247565b6001600160a01b0383166000908152600c602052604090205460ff1615611edf5760405162461bcd60e51b8152600401610acd90613247565b6005546001600160a01b038481166101009092041614801590611f1557506005546001600160a01b038381166101009092041614155b15611f9857600e54600160a01b900460ff1615611f98576a084595161401484a000000811115611f985760405162461bcd60e51b815260206004820152602860248201527f5472616e7366657220616d6f756e74206578636565647320746865206d6178546044820152673c20b6b7bab73a1760c11b6064820152608401610acd565b60115460ff168061204057600b54610100900460ff16612040576001600160a01b03841660009081526013602052604090205460ff166120405760405162461bcd60e51b815260206004820152603e60248201527f585250553a2054686973206163636f756e742063616e6e6f742073656e64207460448201527f6f6b656e7320756e74696c2074726164696e6720697320656e61626c656400006064820152608401610acd565b7f00000000000000000000000000000000000000000000000000000000000000006001600160a01b0316846001600160a01b031614806120b157507f00000000000000000000000000000000000000000000000000000000000000006001600160a01b0316836001600160a01b0316145b80156120ba5750805b50816120d2576120cc84846000612757565b50505050565b600654600160a01b900460ff161580156120e95750805b801561210d57506001600160a01b03831660009081526014602052604090205460ff165b801561212757506006546001600160a01b03858116911614155b801561214c57506001600160a01b03831660009081526012602052604090205460ff16155b156121ad57600b5462010000900460ff16156121ad576121a1606461219b60056121957f0000000000000000000000000000000000000000000000000000000000000000611188565b90612860565b906128df565b8211156121ad57600080fd5b60006121b830611188565b600b549091506301000000900460ff161561223e57612201606461219b6009546121957f0000000000000000000000000000000000000000000000000000000000000000611188565b811061223e5761223b606461219b6009546121957f0000000000000000000000000000000000000000000000000000000000000000611188565b90505b600a8190556010548110158280156122535750805b80156122615750600b5460ff165b80156122775750600654600160a01b900460ff16155b801561229c57506001600160a01b03861660009081526014602052604090205460ff16155b80156122b657506008546001600160a01b03878116911614155b80156122d057506008546001600160a01b03868116911614155b1561233d576006805460ff60a01b1916600160a01b17905560006123076122f96003600a6132ee565b600a5461219b906003612860565b90506123128161293a565b600a5460009061232290836129d8565b905061232d81612a34565b50506006805460ff60a01b191690555b60008380156123565750600654600160a01b900460ff16155b6001600160a01b03881660009081526012602052604090205490915060ff168061239857506001600160a01b03861660009081526012602052604090205460ff165b156123a1575060005b80156123df5760006123c4606461219b6123bd6003600a6132ee565b8990612860565b90506123d086826129d8565b95506123dd883083612757565b505b6123ea878787612757565b6007546001600160a01b031663e30443bc8861240581611188565b6040516001600160e01b031960e085901b1681526001600160a01b0390921660048301526024820152604401600060405180830381600087803b15801561244b57600080fd5b505af192505050801561245c575060015b506007546001600160a01b031663e30443bc8761247881611188565b6040516001600160e01b031960e085901b1681526001600160a01b0390921660048301526024820152604401600060405180830381600087803b1580156124be57600080fd5b505af19250505080156124cf575060015b50600654600160a01b900460ff166125b957600f546007546040516001624d3b8760e01b03198152600481018390526001600160a01b039091169063ffb2c47990602401606060405180830381600087803b15801561252d57600080fd5b505af192505050801561255d575060408051601f3d908101601f1916820190925261255a9181019061310a565b60015b612566576125b7565b60408051848152602081018490529081018290526060810185905232906001907fc864333d6121033635ab41b29ae52f10a22cf4438c3e4f1c4c68518feb2f8a989060800160405180910390a35050505b505b50505050505050565b600081848411156125e65760405162461bcd60e51b8152600401610acd9190613137565b506125f18385613345565b949350505050565b6001600160a01b03821660009081526014602052604090205460ff161515811515141561268e5760405162461bcd60e51b815260206004820152603e60248201527f585250553a204175746f6d61746564206d61726b6574206d616b65722070616960448201527f7220697320616c72656164792073657420746f20746861742076616c756500006064820152608401610acd565b6001600160a01b0382166000908152601460205260409020805460ff1916821580159190911790915561271b5760075460405163031e79db60e41b81526001600160a01b038481166004830152909116906331e79db090602401600060405180830381600087803b15801561270257600080fd5b505af1158015612716573d6000803e3d6000fd5b505050505b604051811515906001600160a01b038416907fffa9187bf1f18bf477bd0ea1bcbb64e93b6a98132473929edfce215cd9b16fab90600090a35050565b6001600160a01b03831661277d5760405162461bcd60e51b8152600401610acd90613202565b6001600160a01b0382166127a35760405162461bcd60e51b8152600401610acd9061318a565b6127e0816040518060600160405280602681526020016133ec602691396001600160a01b03861660009081526020819052604090205491906125c2565b6001600160a01b03808516600090815260208190526040808220939093559084168152205461280f9082611c66565b6001600160a01b038381166000818152602081815260409182902094909455518481529092918616917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9101611de4565b60008261286f57506000610b7e565b600061287b8385613326565b9050826128888583613306565b14611cc55760405162461bcd60e51b815260206004820152602160248201527f536166654d6174683a206d756c7469706c69636174696f6e206f766572666c6f6044820152607760f81b6064820152608401610acd565b60008082116129305760405162461bcd60e51b815260206004820152601a60248201527f536166654d6174683a206469766973696f6e206279207a65726f0000000000006044820152606401610acd565b611cc58284613306565b804761294582612bee565b600061295147836129d8565b6040519091507368f12e2acfe4e362bd6652530616f395a77173f090819083156108fc029084906000818181858888f19350505050158015612997573d6000803e3d6000fd5b5060408051868152602081018490527f98024b0e201aa667dd34d5242eaa5ec55bd223ff5dad2fb1fd9a11e35f86f05f910160405180910390a15050505050565b600082821115612a2a5760405162461bcd60e51b815260206004820152601e60248201527f536166654d6174683a207375627472616374696f6e206f766572666c6f7700006044820152606401610acd565b611cc58284613345565b612a3e8130612d73565b600e546040516370a0823160e01b81523060048201526000916001600160a01b0316906370a082319060240160206040518083038186803b158015612a8257600080fd5b505afa158015612a96573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190612aba91906130f2565b600e5460075460405163a9059cbb60e01b81526001600160a01b0391821660048201526024810184905292935060009291169063a9059cbb90604401602060405180830381600087803b158015612b1057600080fd5b505af1158015612b24573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190612b4891906130be565b90508015612be957600754604051633243c79160e01b8152600481018490526001600160a01b0390911690633243c79190602401600060405180830381600087803b158015612b9657600080fd5b505af1158015612baa573d6000803e3d6000fd5b505060408051868152602081018690527f5e8c953468549261e19b5df2c0776259d823043f64befbef757760c2800c07ca935001905060405180910390a15b505050565b6040805160028082526060820183526000926020830190803683370190505090503081600081518110612c3157634e487b7160e01b600052603260045260246000fd5b6001600160a01b03928316602091820292909201810191909152600654604080516315ab88c960e31b81529051919093169263ad5c4648926004808301939192829003018186803b158015612c8557600080fd5b505afa158015612c99573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190612cbd9190612f4d565b81600181518110612cde57634e487b7160e01b600052603260045260246000fd5b6001600160a01b039283166020918202929092010152600654612d049130911684611ccc565b60065460405163791ac94760e01b81526001600160a01b039091169063791ac94790612d3d90859060009086903090429060040161327e565b600060405180830381600087803b158015612d5757600080fd5b505af1158015612d6b573d6000803e3d6000fd5b505050505050565b60408051600380825260808201909252600091602082016060803683370190505090503081600081518110612db857634e487b7160e01b600052603260045260246000fd5b6001600160a01b03928316602091820292909201810191909152600654604080516315ab88c960e31b81529051919093169263ad5c4648926004808301939192829003018186803b158015612e0c57600080fd5b505afa158015612e20573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190612e449190612f4d565b81600181518110612e6557634e487b7160e01b600052603260045260246000fd5b6001600160a01b039283166020918202929092010152600e54825191169082906002908110612ea457634e487b7160e01b600052603260045260246000fd5b6001600160a01b039283166020918202929092010152600654612eca9130911685611ccc565b600654604051635c11d79560e01b81526001600160a01b0390911690635c11d79590612f0390869060009086908890429060040161327e565b600060405180830381600087803b158015612f1d57600080fd5b505af11580156125b9573d6000803e3d6000fd5b600060208284031215612f42578081fd5b8135611cc5816133c8565b600060208284031215612f5e578081fd5b8151611cc5816133c8565b60008060408385031215612f7b578081fd5b8235612f86816133c8565b91506020830135612f96816133c8565b809150509250929050565b600080600060608486031215612fb5578081fd5b8335612fc0816133c8565b92506020840135612fd0816133c8565b929592945050506040919091013590565b60008060408385031215612ff3578182fd5b8235612ffe816133c8565b91506020830135612f96816133dd565b600080600080600080600080610100898b03121561302a578384fd5b8851613035816133c8565b809850506020890151965060408901519550606089015194506080890151935060a0890151925060c0890151915060e089015190509295985092959890939650565b60008060408385031215613089578182fd5b8235613094816133c8565b946020939093013593505050565b6000602082840312156130b3578081fd5b8135611cc5816133dd565b6000602082840312156130cf578081fd5b8151611cc5816133dd565b6000602082840312156130eb578081fd5b5035919050565b600060208284031215613103578081fd5b5051919050565b60008060006060848603121561311e578283fd5b8351925060208401519150604084015190509250925092565b6000602080835283518082850152825b8181101561316357858101830151858201604001528201613147565b818111156131745783604083870101525b50601f01601f1916929092016040019392505050565b60208082526023908201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260408201526265737360e81b606082015260800190565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b60208082526025908201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604082015264647265737360d81b606082015260800190565b60208082526017908201527f596f752068617665206e6f20706f776572206865726521000000000000000000604082015260600190565b600060a082018783526020878185015260a0604085015281875180845260c0860191508289019350845b818110156132cd5784516001600160a01b0316835293830193918301916001016132a8565b50506001600160a01b03969096166060850152505050608001529392505050565b60008219821115613301576133016133b2565b500190565b60008261332157634e487b7160e01b81526012600452602481fd5b500490565b6000816000190483118215151615613340576133406133b2565b500290565b600082821015613357576133576133b2565b500390565b600181811c9082168061337057607f821691505b6020821081141561339157634e487b7160e01b600052602260045260246000fd5b50919050565b60006000198214156133ab576133ab6133b2565b5060010190565b634e487b7160e01b600052601160045260246000fd5b6001600160a01b0381168114610ce357600080fd5b8015158114610ce357600080fdfe45524332303a207472616e7366657220616d6f756e7420657863656564732062616c616e636545524332303a207472616e7366657220616d6f756e74206578636565647320616c6c6f77616e636545524332303a2064656372656173656420616c6c6f77616e63652062656c6f77207a65726fa26469706673582212202971d921fdf573c9af3889d7d5901124ac00b7eddd944fc97f670f32c36e8cd864736f6c6343000804003360a0604052600880546001600160a01b03191673dac17f958d2ee523a2206206994597c13d831ec71790553480156200003757600080fd5b5060408051808201825260158082527f585250555f4469766964656e645f547261636b6572000000000000000000000060208084018281528551808701909652928552840152815191929183918391620000949160039162000134565b508051620000aa90600490602084019062000134565b50506005805460ff191660121790555050610bb8600c55506000620000cc3390565b600d80546001600160a01b0319166001600160a01b038316908117909155604051919250906000907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0908290a35061070860155569021e19e0c9bab240000060805262000217565b8280546200014290620001da565b90600052602060002090601f016020900481019282620001665760008555620001b1565b82601f106200018157805160ff1916838001178555620001b1565b82800160010185558215620001b1579182015b82811115620001b157825182559160200191906001019062000194565b50620001bf929150620001c3565b5090565b5b80821115620001bf5760008155600101620001c4565b600181811c90821680620001ef57607f821691505b602082108114156200021157634e487b7160e01b600052602260045260246000fd5b50919050565b60805161235b6200023a600039600081816106ba01526110f8015261235b6000f3fe60806040526004361061023f5760003560e01c80637e3e7fd21161012e578063bc4c4b37116100ab578063e98030c71161006f578063e98030c714610757578063f2fde38b14610777578063f39b502014610797578063fbcbc0f1146107ad578063ffb2c479146107cd57600080fd5b8063bc4c4b3714610688578063be10b614146106a8578063dd62ed3e146106dc578063e30443bc14610722578063e7841ec01461074257600080fd5b80639d55d16f116100f25780639d55d16f146105d2578063a457c2d7146105f2578063a8b9d24014610612578063a9059cbb14610632578063aafd847a1461065257600080fd5b80637e3e7fd21461052c57806385a6b3ae146105695780638da5cb5b1461057f57806391b89fba1461059d57806395d89b41146105bd57600080fd5b8063313ce567116101bc5780635183d6fd116101805780635183d6fd146104515780636a474002146104b65780636f2789ec146104cb57806370a08231146104e1578063715018a61461051757600080fd5b8063313ce5671461039f57806331e79db0146103c15780633243c791146103e157806339509351146104015780634e7b827f1461042157600080fd5b806318160ddd1161020357806318160ddd14610307578063226cfa3d1461031c57806323b872dd1461034957806327ce0147146103695780633009a6091461038957600080fd5b806303c833021461024b57806306fdde0314610255578063095ea7b31461028057806309bbedde146102b05780631582358e146102cf57600080fd5b3661024657005b600080fd5b610253610808565b005b34801561026157600080fd5b5061026a61089b565b60405161027791906120b1565b60405180910390f35b34801561028c57600080fd5b506102a061029b366004611fcd565b61092d565b6040519015158152602001610277565b3480156102bc57600080fd5b50600e545b604051908152602001610277565b3480156102db57600080fd5b506008546102ef906001600160a01b031681565b6040516001600160a01b039091168152602001610277565b34801561031357600080fd5b506002546102c1565b34801561032857600080fd5b506102c1610337366004611f5d565b60146020526000908152604090205481565b34801561035557600080fd5b506102a0610364366004612025565b610944565b34801561037557600080fd5b506102c1610384366004611f5d565b6109ad565b34801561039557600080fd5b506102c160125481565b3480156103ab57600080fd5b5060055460405160ff9091168152602001610277565b3480156103cd57600080fd5b506102536103dc366004611f5d565b610a09565b3480156103ed57600080fd5b506102536103fc366004612099565b610b39565b34801561040d57600080fd5b506102a061041c366004611fcd565b610bba565b34801561042d57600080fd5b506102a061043c366004611f5d565b60136020526000908152604090205460ff1681565b34801561045d57600080fd5b5061047161046c366004612099565b610bf0565b604080516001600160a01b0390991689526020890197909752958701949094526060860192909252608085015260a084015260c083015260e082015261010001610277565b3480156104c257600080fd5b50610253610d62565b3480156104d757600080fd5b506102c160155481565b3480156104ed57600080fd5b506102c16104fc366004611f5d565b6001600160a01b031660009081526020819052604090205490565b34801561052357600080fd5b50610253610e04565b34801561053857600080fd5b50610253610547366004611f5d565b600880546001600160a01b0319166001600160a01b0392909216919091179055565b34801561057557600080fd5b506102c1600b5481565b34801561058b57600080fd5b50600d546001600160a01b03166102ef565b3480156105a957600080fd5b506102c16105b8366004611f5d565b610e78565b3480156105c957600080fd5b5061026a610e83565b3480156105de57600080fd5b506102536105ed366004612099565b610e92565b3480156105fe57600080fd5b506102a061060d366004611fcd565b610f71565b34801561061e57600080fd5b506102c161062d366004611f5d565b610fc0565b34801561063e57600080fd5b506102a061064d366004611fcd565b610fec565b34801561065e57600080fd5b506102c161066d366004611f5d565b6001600160a01b03166000908152600a602052604090205490565b34801561069457600080fd5b506102a06106a3366004611f95565b610ff9565b3480156106b457600080fd5b506102c17f000000000000000000000000000000000000000000000000000000000000000081565b3480156106e857600080fd5b506102c16106f7366004611ff8565b6001600160a01b03918216600090815260016020908152604080832093909416825291909152205490565b34801561072e57600080fd5b5061025361073d366004611fcd565b6110a7565b34801561074e57600080fd5b506012546102c1565b34801561076357600080fd5b50610253610772366004612099565b611233565b34801561078357600080fd5b50610253610792366004611f5d565b6113a7565b3480156107a357600080fd5b506102c1600c5481565b3480156107b957600080fd5b506104716107c8366004611f5d565b611492565b3480156107d957600080fd5b506107ed6107e8366004612099565b61160a565b60408051938452602084019290925290820152606001610277565b600061081360025490565b1161081d57600080fd5b34156108995761085061082f60025490565b61083d34600160801b611733565b6108479190612192565b600654906117b9565b60065560405134815233907fa493a9229478c3fcd73f66d2cdeb7f94fd0f341da924d1054236d784541165119060200160405180910390a2600b5461089590346117b9565b600b555b565b6060600380546108aa90612227565b80601f01602080910402602001604051908101604052809291908181526020018280546108d690612227565b80156109235780601f106108f857610100808354040283529160200191610923565b820191906000526020600020905b81548152906001019060200180831161090657829003601f168201915b5050505050905090565b600061093a338484611818565b5060015b92915050565b600061095184848461193c565b6109a3843361099e856040518060600160405280602881526020016122d9602891396001600160a01b038a1660009081526001602090815260408083203384529091529020549190611998565b611818565b5060019392505050565b6001600160a01b03811660009081526009602090815260408083205491839052822054600654600160801b926109ff926109fa926109f4916109ef9190611733565b6119cf565b906119df565b611a1d565b61093e9190612192565b600d546001600160a01b03163314610a3c5760405162461bcd60e51b8152600401610a3390612104565b60405180910390fd5b6001600160a01b03811660009081526013602052604090205460ff1615610a6257600080fd5b6001600160a01b0381166000908152601360205260408120805460ff19166001179055610a90908290611a30565b60405163131836e760e21b8152600e60048201526001600160a01b038216602482015273c2c21f8f6be23e376782f4e5a4a07cbab5f2102790634c60db9c9060440160006040518083038186803b158015610aea57600080fd5b505af4158015610afe573d6000803e3d6000fd5b50506040516001600160a01b03841692507fa878b31040b2e6d0a9a3d3361209db3908ba62014b0dca52adbaee451d128b259150600090a250565b6000610b4460025490565b11610b4e57600080fd5b8015610bb757610b6e610b6060025490565b61083d83600160801b611733565b60065560405181815233907fa493a9229478c3fcd73f66d2cdeb7f94fd0f341da924d1054236d784541165119060200160405180910390a2600b54610bb390826117b9565b600b555b50565b3360008181526001602090815260408083206001600160a01b0387168452909152812054909161093a91859061099e90866117b9565b600080600080600080600080600e73c2c21f8f6be23e376782f4e5a4a07cbab5f2102763deb3d89690916040518263ffffffff1660e01b8152600401610c3891815260200190565b60206040518083038186803b158015610c5057600080fd5b505af4158015610c64573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610c889190612081565b8910610cad575060009650600019955085945086935083925082915081905080610d57565b6040516368d54f3f60e11b8152600e6004820152602481018a905260009073c2c21f8f6be23e376782f4e5a4a07cbab5f210279063d1aa9e7e9060440160206040518083038186803b158015610d0257600080fd5b505af4158015610d16573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610d3a9190611f79565b9050610d4581611492565b98509850985098509850985098509850505b919395975091939597565b60405162461bcd60e51b815260206004820152606560248201527f585250555f4469766964656e645f547261636b65723a2077697468647261774460448201527f69766964656e642064697361626c65642e20557365207468652027636c61696d60648201527f272066756e6374696f6e206f6e20746865206d61696e205852505520636f6e746084820152643930b1ba1760d91b60a482015260c401610a33565b600d546001600160a01b03163314610e2e5760405162461bcd60e51b8152600401610a3390612104565b600d546040516000916001600160a01b0316907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0908390a3600d80546001600160a01b0319169055565b600061093e82610fc0565b6060600480546108aa90612227565b600d546001600160a01b03163314610ebc5760405162461bcd60e51b8152600401610a3390612104565b600c54811415610f3e5760405162461bcd60e51b815260206004820152604160248201527f585250555f4469766964656e645f547261636b65723a2043616e6e6f7420757060448201527f6461746520676173466f725472616e7366657220746f2073616d652076616c756064820152606560f81b608482015260a401610a33565b600c5460405182907f5e2963a3d7c88b344b101641f89a2f7da9734fc777ed11ad0097b2775a9e9d1790600090a3600c55565b600061093a338461099e85604051806060016040528060258152602001612301602591393360009081526001602090815260408083206001600160a01b038d1684529091529020549190611998565b6001600160a01b0381166000908152600a602052604081205461093e90610fe6846109ad565b90611a8f565b600061093a33848461193c565b600d546000906001600160a01b031633146110265760405162461bcd60e51b8152600401610a3390612104565b600061103184611aeb565b9050801561109d576001600160a01b038416600081815260146020526040908190204290555184151591907fa2c38e2d2fb7e3e1912d937fd1ca11ed6d51864dee4cfa7a7bf02becd7acf0929061108b9085815260200190565b60405180910390a3600191505061093e565b5060009392505050565b600d546001600160a01b031633146110d15760405162461bcd60e51b8152600401610a3390612104565b6001600160a01b03821660009081526013602052604090205460ff16156110f6575050565b7f000000000000000000000000000000000000000000000000000000000000000081106111a5576111278282611a30565b604051632f0ad01760e21b8152600e60048201526001600160a01b03831660248201526044810182905273c2c21f8f6be23e376782f4e5a4a07cbab5f210279063bc2b405c9060640160006040518083038186803b15801561118857600080fd5b505af415801561119c573d6000803e3d6000fd5b50505050611223565b6111b0826000611a30565b60405163131836e760e21b8152600e60048201526001600160a01b038316602482015273c2c21f8f6be23e376782f4e5a4a07cbab5f2102790634c60db9c9060440160006040518083038186803b15801561120a57600080fd5b505af415801561121e573d6000803e3d6000fd5b505050505b61122e826001610ff9565b505050565b600d546001600160a01b0316331461125d5760405162461bcd60e51b8152600401610a3390612104565b601e81101580156112715750620151808111155b6112fc5760405162461bcd60e51b815260206004820152605060248201527f585250555f4469766964656e645f547261636b65723a20636c61696d5761697460448201527f206d757374206265207570646174656420746f206265747765656e20302e352060648201526f6d696e20616e6420323420686f75727360801b608482015260a401610a33565b6015548114156113745760405162461bcd60e51b815260206004820152603c60248201527f585250555f4469766964656e645f547261636b65723a2043616e6e6f7420757060448201527f6461746520636c61696d5761697420746f2073616d652076616c7565000000006064820152608401610a33565b60155460405182907f474ea64804364a1e29a4487ddb63c3342a2dd826ccd8acf48825e680a0e6f20f90600090a3601555565b600d546001600160a01b031633146113d15760405162461bcd60e51b8152600401610a3390612104565b6001600160a01b0381166114365760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610a33565b600d546040516001600160a01b038084169216907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a3600d80546001600160a01b0319166001600160a01b0392909216919091179055565b6040516317e142d160e01b8152600e60048201526001600160a01b0382166024820152819060009081908190819081908190819073c2c21f8f6be23e376782f4e5a4a07cbab5f21027906317e142d19060440160206040518083038186803b1580156114fd57600080fd5b505af4158015611511573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906115359190612081565b9650600019955060008712611597576012548711156115635760125461155c908890611c5f565b9550611597565b601254600e5460009110611578576000611587565b601254600e5461158791611a8f565b905061159388826119df565b9650505b6115a088610fc0565b94506115ab886109ad565b6001600160a01b0389166000908152601460205260409020549094509250826115d55760006115e3565b6015546115e39084906117b9565b91504282116115f35760006115fd565b6115fd8242611a8f565b9050919395975091939597565b600e54600090819081908061162a5750506012546000925082915061172c565b6012546000805a90506000805b898410801561164557508582105b1561171b578461165481612262565b600e549096508610905061166757600094505b6000600e600001868154811061168d57634e487b7160e01b600052603260045260246000fd5b60009182526020808320909101546001600160a01b031680835260149091526040909120549091506116be90611cab565b156116e1576116ce816001610ff9565b156116e157816116dd81612262565b9250505b826116eb81612262565b93505060005a9050808511156117125761170f6117088683611a8f565b87906117b9565b95505b93506116379050565b601285905590975095509193505050505b9193909250565b6000826117425750600061093e565b600061174e83856121b2565b90508261175b8583612192565b146117b25760405162461bcd60e51b815260206004820152602160248201527f536166654d6174683a206d756c7469706c69636174696f6e206f766572666c6f6044820152607760f81b6064820152608401610a33565b9392505050565b6000806117c6838561217a565b9050838110156117b25760405162461bcd60e51b815260206004820152601b60248201527f536166654d6174683a206164646974696f6e206f766572666c6f7700000000006044820152606401610a33565b6001600160a01b03831661187a5760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646044820152637265737360e01b6064820152608401610a33565b6001600160a01b0382166118db5760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604482015261737360f01b6064820152608401610a33565b6001600160a01b0383811660008181526001602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925910160405180910390a3505050565b60405162461bcd60e51b815260206004820152602b60248201527f585250555f4469766964656e645f547261636b65723a204e6f207472616e736660448201526a195c9cc8185b1b1bddd95960aa1b6064820152608401610a33565b600081848411156119bc5760405162461bcd60e51b8152600401610a3391906120b1565b506119c78385612210565b949350505050565b6000818181121561093e57600080fd5b6000806119ec8385612139565b9050600083121580156119ff5750838112155b80611a145750600083128015611a1457508381125b6117b257600080fd5b600080821215611a2c57600080fd5b5090565b6001600160a01b03821660009081526020819052604090205480821115611a6f576000611a5d8383611a8f565b9050611a698482611cd2565b50505050565b8082101561122e576000611a838284611a8f565b9050611a698482611d36565b600082821115611ae15760405162461bcd60e51b815260206004820152601e60248201527f536166654d6174683a207375627472616374696f6e206f766572666c6f7700006044820152606401610a33565b6117b28284612210565b600080611af783610fc0565b90508015611c56576001600160a01b0383166000908152600a6020526040902054611b2290826117b9565b6001600160a01b0384166000818152600a6020526040908190209290925590517fee503bee2bb6a87e57bc57db795f98137327401a0e7b7ce42e37926cc1a9ca4d90611b719084815260200190565b60405180910390a260085460405163a9059cbb60e01b81526001600160a01b03858116600483015260248201849052600092169063a9059cbb90604401602060405180830381600087803b158015611bc857600080fd5b505af1158015611bdc573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611c009190612065565b905080611c4f576001600160a01b0384166000908152600a6020526040902054611c2a9083611a8f565b6001600160a01b039094166000908152600a6020526040812094909455509192915050565b5092915050565b50600092915050565b6000808212158015611c7a575082611c7783826121d1565b13155b80611c985750600082128015611c98575082611c9683826121d1565b135b611ca157600080fd5b6117b282846121d1565b600042821115611cbd57506000919050565b601554611cca4284611a8f565b101592915050565b611cdc8282611d7a565b611d16611cf76109ef8360065461173390919063ffffffff16565b6001600160a01b03841660009081526009602052604090205490611c5f565b6001600160a01b0390921660009081526009602052604090209190915550565b611d408282611e59565b611d16611d5b6109ef8360065461173390919063ffffffff16565b6001600160a01b038416600090815260096020526040902054906119df565b6001600160a01b038216611dd05760405162461bcd60e51b815260206004820152601f60248201527f45524332303a206d696e7420746f20746865207a65726f2061646472657373006044820152606401610a33565b600254611ddd90826117b9565b6002556001600160a01b038216600090815260208190526040902054611e0390826117b9565b6001600160a01b038316600081815260208181526040808320949094559251848152919290917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef91015b60405180910390a35050565b6001600160a01b038216611eb95760405162461bcd60e51b815260206004820152602160248201527f45524332303a206275726e2066726f6d20746865207a65726f206164647265736044820152607360f81b6064820152608401610a33565b611ef6816040518060600160405280602281526020016122b7602291396001600160a01b0385166000908152602081905260409020549190611998565b6001600160a01b038316600090815260208190526040902055600254611f1c9082611a8f565b6002556040518181526000906001600160a01b038416907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef90602001611e4d565b600060208284031215611f6e578081fd5b81356117b281612293565b600060208284031215611f8a578081fd5b81516117b281612293565b60008060408385031215611fa7578081fd5b8235611fb281612293565b91506020830135611fc2816122a8565b809150509250929050565b60008060408385031215611fdf578182fd5b8235611fea81612293565b946020939093013593505050565b6000806040838503121561200a578182fd5b823561201581612293565b91506020830135611fc281612293565b600080600060608486031215612039578081fd5b833561204481612293565b9250602084013561205481612293565b929592945050506040919091013590565b600060208284031215612076578081fd5b81516117b2816122a8565b600060208284031215612092578081fd5b5051919050565b6000602082840312156120aa578081fd5b5035919050565b6000602080835283518082850152825b818110156120dd578581018301518582016040015282016120c1565b818111156120ee5783604083870101525b50601f01601f1916929092016040019392505050565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b600080821280156001600160ff1b038490038513161561215b5761215b61227d565b600160ff1b83900384128116156121745761217461227d565b50500190565b6000821982111561218d5761218d61227d565b500190565b6000826121ad57634e487b7160e01b81526012600452602481fd5b500490565b60008160001904831182151516156121cc576121cc61227d565b500290565b60008083128015600160ff1b8501841216156121ef576121ef61227d565b6001600160ff1b038401831381161561220a5761220a61227d565b50500390565b6000828210156122225761222261227d565b500390565b600181811c9082168061223b57607f821691505b6020821081141561225c57634e487b7160e01b600052602260045260246000fd5b50919050565b60006000198214156122765761227661227d565b5060010190565b634e487b7160e01b600052601160045260246000fd5b6001600160a01b0381168114610bb757600080fd5b8015158114610bb757600080fdfe45524332303a206275726e20616d6f756e7420657863656564732062616c616e636545524332303a207472616e7366657220616d6f756e74206578636565647320616c6c6f77616e636545524332303a2064656372656173656420616c6c6f77616e63652062656c6f77207a65726fa26469706673582212200f53d2530adee87317190163030af6fb3e59e3cfa19cbe328ebfba8a641a831964736f6c63430008040033

Deployed Bytecode

0x6080604052600436106103545760003560e01c80637ded4d6a116101c6578063a9059cbb116100f7578063e57f14e111610095578063f27fd2541161006f578063f27fd25414610a1d578063f2fde38b14610a3d578063fd5af42f14610a5d578063ff0fd4c014610a7d57600080fd5b8063e57f14e1146109c8578063e7841ec0146109e8578063e98030c7146109fd57600080fd5b8063bab3185f116100d1578063bab3185f1461092c578063c816e4b61461094c578063d469801614610962578063dd62ed3e1461098257600080fd5b8063a9059cbb14610877578063ad56c13c14610897578063b62496f5146108fc57600080fd5b806395d89b41116101645780639d55d16f1161013e5780639d55d16f14610802578063a26579ad14610822578063a457c2d714610837578063a8b9d2401461085757600080fd5b806395d89b41146107b75780639a7a23d6146107cc5780639c1b8af5146107ec57600080fd5b80638b42c8a6116101a05780638b42c8a61461073f5780638da5cb5b1461075f5780638ee920971461078257806392ca1e8d146107a257600080fd5b80637ded4d6a146106cf5780637e0e155c146106ef578063871c128d1461071f57600080fd5b80634303443d116102a0578063519da73e1161023e5780636843cd84116102185780636843cd841461065a578063700bb1911461067a57806370a082311461069a578063715018a6146106ba57600080fd5b8063519da73e1461061057806353ab431b1461063057806364b0f6531461064557600080fd5b80634ada218b1161027a5780634ada218b146105895780634de18a9f146105a35780634e71d92d146105c25780634fbee193146105d757600080fd5b80634303443d14610515578063458037701461053557806349bd5a5e1461055557600080fd5b80632a8407b41161030d57806330599fc5116102e757806330599fc51461049e57806330bb4cff146104be578063313ce567146104d357806339509351146104f557600080fd5b80632a8407b4146104545780632c1f5216146104695780632d17f2691461048957600080fd5b806304f82e2d1461036057806306fdde0314610382578063095ea7b3146103ad5780631694505e146103dd57806318160ddd1461041557806323b872dd1461043457600080fd5b3661035b57005b600080fd5b34801561036c57600080fd5b5061038061037b3660046130da565b610a9d565b005b34801561038e57600080fd5b50610397610adb565b6040516103a49190613137565b60405180910390f35b3480156103b957600080fd5b506103cd6103c8366004613077565b610b6d565b60405190151581526020016103a4565b3480156103e957600080fd5b506006546103fd906001600160a01b031681565b6040516001600160a01b0390911681526020016103a4565b34801561042157600080fd5b506002545b6040519081526020016103a4565b34801561044057600080fd5b506103cd61044f366004612fa1565b610b84565b34801561046057600080fd5b50610426610bed565b34801561047557600080fd5b506007546103fd906001600160a01b031681565b34801561049557600080fd5b50610426600a81565b3480156104aa57600080fd5b506103806104b93660046130da565b610c6f565b3480156104ca57600080fd5b50610426610ce6565b3480156104df57600080fd5b5060055460405160ff90911681526020016103a4565b34801561050157600080fd5b506103cd610510366004613077565b610d2b565b34801561052157600080fd5b50610380610530366004612f31565b610d61565b34801561054157600080fd5b506103806105503660046130a2565b610ed9565b34801561056157600080fd5b506103fd7f000000000000000000000000b6fc31ea9376724dc2614c90c5c4b24d705f736681565b34801561059557600080fd5b506011546103cd9060ff1681565b3480156105af57600080fd5b506104266a084595161401484a00000081565b3480156105ce57600080fd5b50610380610f1c565b3480156105e357600080fd5b506103cd6105f2366004612f31565b6001600160a01b031660009081526012602052604090205460ff1690565b34801561061c57600080fd5b5061038061062b3660046130a2565b610fa0565b34801561063c57600080fd5b50610426600381565b34801561065157600080fd5b50610426610fe3565b34801561066657600080fd5b50610426610675366004612f31565b611028565b34801561068657600080fd5b506103806106953660046130da565b6110a7565b3480156106a657600080fd5b506104266106b5366004612f31565b611188565b3480156106c657600080fd5b506103806111a3565b3480156106db57600080fd5b506103806106ea366004612f31565b611223565b3480156106fb57600080fd5b506103cd61070a366004612f31565b60136020526000908152604090205460ff1681565b34801561072b57600080fd5b5061038061073a3660046130da565b61140f565b34801561074b57600080fd5b5061038061075a3660046130a2565b6114df565b34801561076b57600080fd5b5060055461010090046001600160a01b03166103fd565b34801561078e57600080fd5b5061038061079d3660046130a2565b61152d565b3480156107ae57600080fd5b50610426611579565b3480156107c357600080fd5b50610397611588565b3480156107d857600080fd5b506103806107e7366004612fe1565b611597565b3480156107f857600080fd5b50610426600f5481565b34801561080e57600080fd5b5061038061081d3660046130da565b611689565b34801561082e57600080fd5b5061042661171b565b34801561084357600080fd5b506103cd610852366004613077565b611760565b34801561086357600080fd5b50610426610872366004612f31565b6117af565b34801561088357600080fd5b506103cd610892366004613077565b6117e2565b3480156108a357600080fd5b506108b76108b2366004612f31565b6117ef565b604080516001600160a01b0390991689526020890197909752958701949094526060860192909252608085015260a084015260c083015260e0820152610100016103a4565b34801561090857600080fd5b506103cd610917366004612f31565b60146020526000908152604090205460ff1681565b34801561093857600080fd5b506103cd6109473660046130a2565b611899565b34801561095857600080fd5b5061042660105481565b34801561096e57600080fd5b506008546103fd906001600160a01b031681565b34801561098e57600080fd5b5061042661099d366004612f69565b6001600160a01b03918216600090815260016020908152604080832093909416825291909152205490565b3480156109d457600080fd5b506103806109e3366004612f31565b611919565b3480156109f457600080fd5b506104266119ea565b348015610a0957600080fd5b50610380610a183660046130da565b611a2f565b348015610a2957600080fd5b506108b7610a383660046130da565b611a90565b348015610a4957600080fd5b50610380610a58366004612f31565b611ad2565b348015610a6957600080fd5b50610380610a783660046130a2565b611bce565b348015610a8957600080fd5b50610380610a983660046130a2565b611c1c565b6005546001600160a01b03610100909104163314610ad65760405162461bcd60e51b8152600401610acd906131cd565b60405180910390fd5b600955565b606060038054610aea9061335c565b80601f0160208091040260200160405190810160405280929190818152602001828054610b169061335c565b8015610b635780601f10610b3857610100808354040283529160200191610b63565b820191906000526020600020905b815481529060010190602001808311610b4657829003601f168201915b5050505050905090565b6000610b7a338484611ccc565b5060015b92915050565b6000610b91848484611df1565b610be38433610bde85604051806060016040528060288152602001613412602891396001600160a01b038a16600090815260016020908152604080832033845290915290205491906125c2565b611ccc565b5060019392505050565b6007546040805163079cda8160e51b815290516000926001600160a01b03169163f39b5020916004808301926020929190829003018186803b158015610c3257600080fd5b505afa158015610c46573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610c6a91906130f2565b905090565b6005546001600160a01b03610100909104163314610c9f5760405162461bcd60e51b8152600401610acd906131cd565b610cc130610cbb6005546001600160a01b036101009091041690565b83611ccc565b610ce330610cdd6005546001600160a01b036101009091041690565b83611df1565b50565b600754604080516342d359d760e11b815290516000926001600160a01b0316916385a6b3ae916004808301926020929190829003018186803b158015610c3257600080fd5b3360008181526001602090815260408083206001600160a01b03871684529091528120549091610b7a918590610bde9086611c66565b6005546001600160a01b03610100909104163314610d915760405162461bcd60e51b8152600401610acd906131cd565b737a250d5630b4cf539739df2c5dacb4c659f2488d6001600160a01b0382161415610e0a5760405162461bcd60e51b8152602060048201526024808201527f57652063616e206e6f7420626c61636b6c69737420556e697377617020726f756044820152633a32b91760e11b6064820152608401610acd565b6001600160a01b0381166000908152600c602052604090205460ff1615610e735760405162461bcd60e51b815260206004820152601e60248201527f4163636f756e7420697320616c726561647920626c61636b6c697374656400006044820152606401610acd565b6001600160a01b03166000818152600c60205260408120805460ff19166001908117909155600d805491820181559091527fd7b6990105719101dabeb77144f2a3385c8033acd3af97e9423a695e81ad1eb50180546001600160a01b0319169091179055565b6005546001600160a01b03610100909104163314610f095760405162461bcd60e51b8152600401610acd906131cd565b600b805460ff1916911515919091179055565b60075460405163bc4c4b3760e01b8152336004820152600060248201526001600160a01b039091169063bc4c4b3790604401602060405180830381600087803b158015610f6857600080fd5b505af1158015610f7c573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610ce391906130be565b6005546001600160a01b03610100909104163314610fd05760405162461bcd60e51b8152600401610acd906131cd565b6011805460ff1916911515919091179055565b600754604080516304ddf6ef60e11b815290516000926001600160a01b0316916309bbedde916004808301926020929190829003018186803b158015610c3257600080fd5b6007546040516370a0823160e01b81526001600160a01b03838116600483015260009216906370a08231906024015b60206040518083038186803b15801561106f57600080fd5b505afa158015611083573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610b7e91906130f2565b6007546040516001624d3b8760e01b0319815260048101839052600091829182916001600160a01b03169063ffb2c47990602401606060405180830381600087803b1580156110f557600080fd5b505af1158015611109573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061112d919061310a565b604080518481526020810184905290810182905260608101889052929550909350915032906000907fc864333d6121033635ab41b29ae52f10a22cf4438c3e4f1c4c68518feb2f8a989060800160405180910390a350505050565b6001600160a01b031660009081526020819052604090205490565b6005546001600160a01b036101009091041633146111d35760405162461bcd60e51b8152600401610acd906131cd565b60055460405160009161010090046001600160a01b0316907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0908390a360058054610100600160a81b0319169055565b6005546001600160a01b036101009091041633146112535760405162461bcd60e51b8152600401610acd906131cd565b6001600160a01b0381166000908152600c602052604090205460ff166112bb5760405162461bcd60e51b815260206004820152601a60248201527f4163636f756e74206973206e6f7420626c61636b6c69737465640000000000006044820152606401610acd565b60005b600d5481101561140b57816001600160a01b0316600d82815481106112f357634e487b7160e01b600052603260045260246000fd5b6000918252602090912001546001600160a01b031614156113f957600d805461131e90600190613345565b8154811061133c57634e487b7160e01b600052603260045260246000fd5b600091825260209091200154600d80546001600160a01b03909216918390811061137657634e487b7160e01b600052603260045260246000fd5b600091825260208083209190910180546001600160a01b0319166001600160a01b039485161790559184168152600c90915260409020805460ff19169055600d8054806113d357634e487b7160e01b600052603160045260246000fd5b600082815260209020810160001990810180546001600160a01b03191690550190555050565b8061140381613397565b9150506112be565b5050565b6005546001600160a01b0361010090910416331461143f5760405162461bcd60e51b8152600401610acd906131cd565b600f548114156114ac5760405162461bcd60e51b815260206004820152603260248201527f585250553a2043616e6e6f742075706461746520676173466f7250726f63657360448201527173696e6720746f2073616d652076616c756560701b6064820152608401610acd565b600f5460405182907f40d7e40e79af4e8e5a9b3c57030d8ea93f13d669c06d448c4d631d4ae7d23db790600090a3600f55565b6005546001600160a01b0361010090910416331461150f5760405162461bcd60e51b8152600401610acd906131cd565b600b805491151563010000000263ff00000019909216919091179055565b6005546001600160a01b0361010090910416331461155d5760405162461bcd60e51b8152600401610acd906131cd565b600b8054911515620100000262ff000019909216919091179055565b6115856003600a6132ee565b81565b606060048054610aea9061335c565b6005546001600160a01b036101009091041633146115c75760405162461bcd60e51b8152600401610acd906131cd565b7f000000000000000000000000b6fc31ea9376724dc2614c90c5c4b24d705f73666001600160a01b0316826001600160a01b0316141561167f5760405162461bcd60e51b815260206004820152604760248201527f585250553a2054686520556e697377617020706169722063616e6e6f7420626560448201527f2072656d6f7665642066726f6d206175746f6d617465644d61726b65744d616b6064820152666572506169727360c81b608482015260a401610acd565b61140b82826125f9565b6005546001600160a01b036101009091041633146116b95760405162461bcd60e51b8152600401610acd906131cd565b600754604051639d55d16f60e01b8152600481018390526001600160a01b0390911690639d55d16f906024015b600060405180830381600087803b15801561170057600080fd5b505af1158015611714573d6000803e3d6000fd5b5050505050565b60075460408051631bc9e27b60e21b815290516000926001600160a01b031691636f2789ec916004808301926020929190829003018186803b158015610c3257600080fd5b6000610b7a3384610bde8560405180606001604052806025815260200161343a602591393360009081526001602090815260408083206001600160a01b038d16845290915290205491906125c2565b6007546040516302a2e74960e61b81526001600160a01b038381166004830152600092169063a8b9d24090602401611057565b6000610b7a338484611df1565b60075460405163fbcbc0f160e01b81526001600160a01b038381166004830152600092839283928392839283928392839291169063fbcbc0f1906024015b6101006040518083038186803b15801561184657600080fd5b505afa15801561185a573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061187e919061300e565b97509750975097509750975097509750919395975091939597565b6008546000906001600160a01b031633146119025760405162461bcd60e51b8152602060048201526024808201527f4f6e6c792044657620416464726573732063616e2064697361626c65206465766044820152632066656560e01b6064820152608401610acd565b50600b805460ff1916911515918217905560ff1690565b6005546001600160a01b036101009091041633146119495760405162461bcd60e51b8152600401610acd906131cd565b6001600160a01b03811660009081526012602052604090205460ff16156119c65760405162461bcd60e51b815260206004820152602b60248201527f585250553a204163636f756e7420697320616c7265616479206578636c75646560448201526a642066726f6d206665657360a81b6064820152608401610acd565b6001600160a01b03166000908152601260205260409020805460ff19166001179055565b6007546040805163039e107b60e61b815290516000926001600160a01b03169163e7841ec0916004808301926020929190829003018186803b158015610c3257600080fd5b6005546001600160a01b03610100909104163314611a5f5760405162461bcd60e51b8152600401610acd906131cd565b60075460405163e98030c760e01b8152600481018390526001600160a01b039091169063e98030c7906024016116e6565b600754604051635183d6fd60e01b81526004810183905260009182918291829182918291829182916001600160a01b0390911690635183d6fd9060240161182d565b6005546001600160a01b03610100909104163314611b025760405162461bcd60e51b8152600401610acd906131cd565b6001600160a01b038116611b675760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610acd565b6005546040516001600160a01b0380841692610100900416907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a3600580546001600160a01b0390921661010002610100600160a81b0319909216919091179055565b6005546001600160a01b03610100909104163314611bfe5760405162461bcd60e51b8152600401610acd906131cd565b600e8054911515600160a01b0260ff60a01b19909216919091179055565b6005546001600160a01b03610100909104163314611c4c5760405162461bcd60e51b8152600401610acd906131cd565b600b80549115156101000261ff0019909216919091179055565b600080611c7383856132ee565b905083811015611cc55760405162461bcd60e51b815260206004820152601b60248201527f536166654d6174683a206164646974696f6e206f766572666c6f7700000000006044820152606401610acd565b9392505050565b6001600160a01b038316611d2e5760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646044820152637265737360e01b6064820152608401610acd565b6001600160a01b038216611d8f5760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604482015261737360f01b6064820152608401610acd565b6001600160a01b0383811660008181526001602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591015b60405180910390a3505050565b6001600160a01b038316611e175760405162461bcd60e51b8152600401610acd90613202565b6001600160a01b038216611e3d5760405162461bcd60e51b8152600401610acd9061318a565b6001600160a01b0382166000908152600c602052604090205460ff1615611e765760405162461bcd60e51b8152600401610acd90613247565b336000908152600c602052604090205460ff1615611ea65760405162461bcd60e51b8152600401610acd90613247565b6001600160a01b0383166000908152600c602052604090205460ff1615611edf5760405162461bcd60e51b8152600401610acd90613247565b6005546001600160a01b038481166101009092041614801590611f1557506005546001600160a01b038381166101009092041614155b15611f9857600e54600160a01b900460ff1615611f98576a084595161401484a000000811115611f985760405162461bcd60e51b815260206004820152602860248201527f5472616e7366657220616d6f756e74206578636565647320746865206d6178546044820152673c20b6b7bab73a1760c11b6064820152608401610acd565b60115460ff168061204057600b54610100900460ff16612040576001600160a01b03841660009081526013602052604090205460ff166120405760405162461bcd60e51b815260206004820152603e60248201527f585250553a2054686973206163636f756e742063616e6e6f742073656e64207460448201527f6f6b656e7320756e74696c2074726164696e6720697320656e61626c656400006064820152608401610acd565b7f000000000000000000000000b6fc31ea9376724dc2614c90c5c4b24d705f73666001600160a01b0316846001600160a01b031614806120b157507f000000000000000000000000b6fc31ea9376724dc2614c90c5c4b24d705f73666001600160a01b0316836001600160a01b0316145b80156120ba5750805b50816120d2576120cc84846000612757565b50505050565b600654600160a01b900460ff161580156120e95750805b801561210d57506001600160a01b03831660009081526014602052604090205460ff165b801561212757506006546001600160a01b03858116911614155b801561214c57506001600160a01b03831660009081526012602052604090205460ff16155b156121ad57600b5462010000900460ff16156121ad576121a1606461219b60056121957f000000000000000000000000b6fc31ea9376724dc2614c90c5c4b24d705f7366611188565b90612860565b906128df565b8211156121ad57600080fd5b60006121b830611188565b600b549091506301000000900460ff161561223e57612201606461219b6009546121957f000000000000000000000000b6fc31ea9376724dc2614c90c5c4b24d705f7366611188565b811061223e5761223b606461219b6009546121957f000000000000000000000000b6fc31ea9376724dc2614c90c5c4b24d705f7366611188565b90505b600a8190556010548110158280156122535750805b80156122615750600b5460ff165b80156122775750600654600160a01b900460ff16155b801561229c57506001600160a01b03861660009081526014602052604090205460ff16155b80156122b657506008546001600160a01b03878116911614155b80156122d057506008546001600160a01b03868116911614155b1561233d576006805460ff60a01b1916600160a01b17905560006123076122f96003600a6132ee565b600a5461219b906003612860565b90506123128161293a565b600a5460009061232290836129d8565b905061232d81612a34565b50506006805460ff60a01b191690555b60008380156123565750600654600160a01b900460ff16155b6001600160a01b03881660009081526012602052604090205490915060ff168061239857506001600160a01b03861660009081526012602052604090205460ff165b156123a1575060005b80156123df5760006123c4606461219b6123bd6003600a6132ee565b8990612860565b90506123d086826129d8565b95506123dd883083612757565b505b6123ea878787612757565b6007546001600160a01b031663e30443bc8861240581611188565b6040516001600160e01b031960e085901b1681526001600160a01b0390921660048301526024820152604401600060405180830381600087803b15801561244b57600080fd5b505af192505050801561245c575060015b506007546001600160a01b031663e30443bc8761247881611188565b6040516001600160e01b031960e085901b1681526001600160a01b0390921660048301526024820152604401600060405180830381600087803b1580156124be57600080fd5b505af19250505080156124cf575060015b50600654600160a01b900460ff166125b957600f546007546040516001624d3b8760e01b03198152600481018390526001600160a01b039091169063ffb2c47990602401606060405180830381600087803b15801561252d57600080fd5b505af192505050801561255d575060408051601f3d908101601f1916820190925261255a9181019061310a565b60015b612566576125b7565b60408051848152602081018490529081018290526060810185905232906001907fc864333d6121033635ab41b29ae52f10a22cf4438c3e4f1c4c68518feb2f8a989060800160405180910390a35050505b505b50505050505050565b600081848411156125e65760405162461bcd60e51b8152600401610acd9190613137565b506125f18385613345565b949350505050565b6001600160a01b03821660009081526014602052604090205460ff161515811515141561268e5760405162461bcd60e51b815260206004820152603e60248201527f585250553a204175746f6d61746564206d61726b6574206d616b65722070616960448201527f7220697320616c72656164792073657420746f20746861742076616c756500006064820152608401610acd565b6001600160a01b0382166000908152601460205260409020805460ff1916821580159190911790915561271b5760075460405163031e79db60e41b81526001600160a01b038481166004830152909116906331e79db090602401600060405180830381600087803b15801561270257600080fd5b505af1158015612716573d6000803e3d6000fd5b505050505b604051811515906001600160a01b038416907fffa9187bf1f18bf477bd0ea1bcbb64e93b6a98132473929edfce215cd9b16fab90600090a35050565b6001600160a01b03831661277d5760405162461bcd60e51b8152600401610acd90613202565b6001600160a01b0382166127a35760405162461bcd60e51b8152600401610acd9061318a565b6127e0816040518060600160405280602681526020016133ec602691396001600160a01b03861660009081526020819052604090205491906125c2565b6001600160a01b03808516600090815260208190526040808220939093559084168152205461280f9082611c66565b6001600160a01b038381166000818152602081815260409182902094909455518481529092918616917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9101611de4565b60008261286f57506000610b7e565b600061287b8385613326565b9050826128888583613306565b14611cc55760405162461bcd60e51b815260206004820152602160248201527f536166654d6174683a206d756c7469706c69636174696f6e206f766572666c6f6044820152607760f81b6064820152608401610acd565b60008082116129305760405162461bcd60e51b815260206004820152601a60248201527f536166654d6174683a206469766973696f6e206279207a65726f0000000000006044820152606401610acd565b611cc58284613306565b804761294582612bee565b600061295147836129d8565b6040519091507368f12e2acfe4e362bd6652530616f395a77173f090819083156108fc029084906000818181858888f19350505050158015612997573d6000803e3d6000fd5b5060408051868152602081018490527f98024b0e201aa667dd34d5242eaa5ec55bd223ff5dad2fb1fd9a11e35f86f05f910160405180910390a15050505050565b600082821115612a2a5760405162461bcd60e51b815260206004820152601e60248201527f536166654d6174683a207375627472616374696f6e206f766572666c6f7700006044820152606401610acd565b611cc58284613345565b612a3e8130612d73565b600e546040516370a0823160e01b81523060048201526000916001600160a01b0316906370a082319060240160206040518083038186803b158015612a8257600080fd5b505afa158015612a96573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190612aba91906130f2565b600e5460075460405163a9059cbb60e01b81526001600160a01b0391821660048201526024810184905292935060009291169063a9059cbb90604401602060405180830381600087803b158015612b1057600080fd5b505af1158015612b24573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190612b4891906130be565b90508015612be957600754604051633243c79160e01b8152600481018490526001600160a01b0390911690633243c79190602401600060405180830381600087803b158015612b9657600080fd5b505af1158015612baa573d6000803e3d6000fd5b505060408051868152602081018690527f5e8c953468549261e19b5df2c0776259d823043f64befbef757760c2800c07ca935001905060405180910390a15b505050565b6040805160028082526060820183526000926020830190803683370190505090503081600081518110612c3157634e487b7160e01b600052603260045260246000fd5b6001600160a01b03928316602091820292909201810191909152600654604080516315ab88c960e31b81529051919093169263ad5c4648926004808301939192829003018186803b158015612c8557600080fd5b505afa158015612c99573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190612cbd9190612f4d565b81600181518110612cde57634e487b7160e01b600052603260045260246000fd5b6001600160a01b039283166020918202929092010152600654612d049130911684611ccc565b60065460405163791ac94760e01b81526001600160a01b039091169063791ac94790612d3d90859060009086903090429060040161327e565b600060405180830381600087803b158015612d5757600080fd5b505af1158015612d6b573d6000803e3d6000fd5b505050505050565b60408051600380825260808201909252600091602082016060803683370190505090503081600081518110612db857634e487b7160e01b600052603260045260246000fd5b6001600160a01b03928316602091820292909201810191909152600654604080516315ab88c960e31b81529051919093169263ad5c4648926004808301939192829003018186803b158015612e0c57600080fd5b505afa158015612e20573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190612e449190612f4d565b81600181518110612e6557634e487b7160e01b600052603260045260246000fd5b6001600160a01b039283166020918202929092010152600e54825191169082906002908110612ea457634e487b7160e01b600052603260045260246000fd5b6001600160a01b039283166020918202929092010152600654612eca9130911685611ccc565b600654604051635c11d79560e01b81526001600160a01b0390911690635c11d79590612f0390869060009086908890429060040161327e565b600060405180830381600087803b158015612f1d57600080fd5b505af11580156125b9573d6000803e3d6000fd5b600060208284031215612f42578081fd5b8135611cc5816133c8565b600060208284031215612f5e578081fd5b8151611cc5816133c8565b60008060408385031215612f7b578081fd5b8235612f86816133c8565b91506020830135612f96816133c8565b809150509250929050565b600080600060608486031215612fb5578081fd5b8335612fc0816133c8565b92506020840135612fd0816133c8565b929592945050506040919091013590565b60008060408385031215612ff3578182fd5b8235612ffe816133c8565b91506020830135612f96816133dd565b600080600080600080600080610100898b03121561302a578384fd5b8851613035816133c8565b809850506020890151965060408901519550606089015194506080890151935060a0890151925060c0890151915060e089015190509295985092959890939650565b60008060408385031215613089578182fd5b8235613094816133c8565b946020939093013593505050565b6000602082840312156130b3578081fd5b8135611cc5816133dd565b6000602082840312156130cf578081fd5b8151611cc5816133dd565b6000602082840312156130eb578081fd5b5035919050565b600060208284031215613103578081fd5b5051919050565b60008060006060848603121561311e578283fd5b8351925060208401519150604084015190509250925092565b6000602080835283518082850152825b8181101561316357858101830151858201604001528201613147565b818111156131745783604083870101525b50601f01601f1916929092016040019392505050565b60208082526023908201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260408201526265737360e81b606082015260800190565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b60208082526025908201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604082015264647265737360d81b606082015260800190565b60208082526017908201527f596f752068617665206e6f20706f776572206865726521000000000000000000604082015260600190565b600060a082018783526020878185015260a0604085015281875180845260c0860191508289019350845b818110156132cd5784516001600160a01b0316835293830193918301916001016132a8565b50506001600160a01b03969096166060850152505050608001529392505050565b60008219821115613301576133016133b2565b500190565b60008261332157634e487b7160e01b81526012600452602481fd5b500490565b6000816000190483118215151615613340576133406133b2565b500290565b600082821015613357576133576133b2565b500390565b600181811c9082168061337057607f821691505b6020821081141561339157634e487b7160e01b600052602260045260246000fd5b50919050565b60006000198214156133ab576133ab6133b2565b5060010190565b634e487b7160e01b600052601160045260246000fd5b6001600160a01b0381168114610ce357600080fd5b8015158114610ce357600080fdfe45524332303a207472616e7366657220616d6f756e7420657863656564732062616c616e636545524332303a207472616e7366657220616d6f756e74206578636565647320616c6c6f77616e636545524332303a2064656372656173656420616c6c6f77616e63652062656c6f77207a65726fa26469706673582212202971d921fdf573c9af3889d7d5901124ac00b7eddd944fc97f670f32c36e8cd864736f6c63430008040033

Libraries Used


Deployed Bytecode Sourcemap

47925:17291:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;49787:121;;;;;;;;;;-1:-1:-1;49787:121:0;;;;;:::i;:::-;;:::i;:::-;;7990:91;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;10136:169;;;;;;;;;;-1:-1:-1;10136:169:0;;;;;:::i;:::-;;:::i;:::-;;;6028:14:1;;6021:22;6003:41;;5991:2;5976:18;10136:169:0;5958:92:1;47999:41:0;;;;;;;;;;-1:-1:-1;47999:41:0;;;;-1:-1:-1;;;;;47999:41:0;;;;;;-1:-1:-1;;;;;4234:32:1;;;4216:51;;4204:2;4189:18;47999:41:0;4171:102:1;9089:108:0;;;;;;;;;;-1:-1:-1;9177:12:0;;9089:108;;;15604:25:1;;;15592:2;15577:18;9089:108:0;15559:76:1;10787:321:0;;;;;;;;;;-1:-1:-1;10787:321:0;;;;;:::i;:::-;;:::i;54830:118::-;;;;;;;;;;;;;:::i;48126:42::-;;;;;;;;;;-1:-1:-1;48126:42:0;;;;-1:-1:-1;;;;;48126:42:0;;;48297:44;;;;;;;;;;;;48339:2;48297:44;;49914:192;;;;;;;;;;-1:-1:-1;49914:192:0;;;;;:::i;:::-;;:::i;55550:141::-;;;;;;;;;;;;;:::i;8933:91::-;;;;;;;;;;-1:-1:-1;9007:9:0;;8933:91;;9007:9;;;;17419:36:1;;17407:2;17392:18;8933:91:0;17374:87:1;11517:218:0;;;;;;;;;;-1:-1:-1;11517:218:0;;;;;:::i;:::-;;:::i;56140:352::-;;;;;;;;;;-1:-1:-1;56140:352:0;;;;;:::i;:::-;;:::i;49267:107::-;;;;;;;;;;-1:-1:-1;49267:107:0;;;;;:::i;:::-;;:::i;48047:38::-;;;;;;;;;;;;;;;49232:26;;;;;;;;;;-1:-1:-1;49232:26:0;;;;;;;;48216:72;;;;;;;;;;;;48269:19;48216:72;;57875:103;;;;;;;;;;;;;:::i;55699:125::-;;;;;;;;;;-1:-1:-1;55699:125:0;;;;;:::i;:::-;-1:-1:-1;;;;;55788:28:0;55764:4;55788:28;;;:19;:28;;;;;;;;;55699:125;49382:120;;;;;;;;;;-1:-1:-1;49382:120:0;;;;;:::i;:::-;;:::i;48348:41::-;;;;;;;;;;;;48388:1;48348:41;;58123:141;;;;;;;;;;;;;:::i;55991:139::-;;;;;;;;;;-1:-1:-1;55991:139:0;;;;;:::i;:::-;;:::i;57596:271::-;;;;;;;;;;-1:-1:-1;57596:271:0;;;;;:::i;:::-;;:::i;9260:127::-;;;;;;;;;;-1:-1:-1;9260:127:0;;;;;:::i;:::-;;:::i;2739:148::-;;;;;;;;;;;;;:::i;56500:500::-;;;;;;;;;;-1:-1:-1;56500:500:0;;;;;:::i;:::-;;:::i;50292:66::-;;;;;;;;;;-1:-1:-1;50292:66:0;;;;;:::i;:::-;;;;;;;;;;;;;;;;54311:379;;;;;;;;;;-1:-1:-1;54311:379:0;;;;;:::i;:::-;;:::i;49508:139::-;;;;;;;;;;-1:-1:-1;49508:139:0;;;;;:::i;:::-;;:::i;2088:87::-;;;;;;;;;;-1:-1:-1;2161:6:0;;;;;-1:-1:-1;;;;;2161:6:0;2088:87;;49653:128;;;;;;;;;;-1:-1:-1;49653:128:0;;;;;:::i;:::-;;:::i;48396:68::-;;;;;;;;;;;;;:::i;8200:95::-;;;;;;;;;;;;;:::i;53257:258::-;;;;;;;;;;-1:-1:-1;53257:258:0;;;;;:::i;:::-;;:::i;48986:40::-;;;;;;;;;;;;;;;;54155:144;;;;;;;;;;-1:-1:-1;54155:144:0;;;;;:::i;:::-;;:::i;55434:108::-;;;;;;;;;;;;;:::i;12238:269::-;;;;;;;;;;-1:-1:-1;12238:269:0;;;;;:::i;:::-;;:::i;55832:151::-;;;;;;;;;;-1:-1:-1;55832:151:0;;;;;:::i;:::-;;:::i;9600:175::-;;;;;;;;;;-1:-1:-1;9600:175:0;;;;;:::i;:::-;;:::i;57006:282::-;;;;;;;;;;-1:-1:-1;57006:282:0;;;;;:::i;:::-;;:::i;:::-;;;;-1:-1:-1;;;;;5235:32:1;;;5217:51;;5299:2;5284:18;;5277:34;;;;5327:18;;;5320:34;;;;5385:2;5370:18;;5363:34;;;;5428:3;5413:19;;5406:35;5255:3;5457:19;;5450:35;5516:3;5501:19;;5494:35;5560:3;5545:19;;5538:35;5204:3;5189:19;57006:282:0;5171:408:1;50516:58:0;;;;;;;;;;-1:-1:-1;50516:58:0;;;;;:::i;:::-;;;;;;;;;;;;;;;;54962:240;;;;;;;;;;-1:-1:-1;54962:240:0;;;;;:::i;:::-;;:::i;49117:58::-;;;;;;;;;;;;;;;;48177:30;;;;;;;;;;-1:-1:-1;48177:30:0;;;;-1:-1:-1;;;;;48177:30:0;;;9838:151;;;;;;;;;;-1:-1:-1;9838:151:0;;;;;:::i;:::-;-1:-1:-1;;;;;9954:18:0;;;9927:7;9954:18;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;9838:151;53938:209;;;;;;;;;;-1:-1:-1;53938:209:0;;;;;:::i;:::-;;:::i;57986:129::-;;;;;;;;;;;;;:::i;54698:124::-;;;;;;;;;;-1:-1:-1;54698:124:0;;;;;:::i;:::-;;:::i;57296:292::-;;;;;;;;;;-1:-1:-1;57296:292:0;;;;;:::i;:::-;;:::i;3042:244::-;;;;;;;;;;-1:-1:-1;3042:244:0;;;;;:::i;:::-;;:::i;55323:103::-;;;;;;;;;;-1:-1:-1;55323:103:0;;;;;:::i;:::-;;:::i;55214:97::-;;;;;;;;;;-1:-1:-1;55214:97:0;;;;;:::i;:::-;;:::i;49787:121::-;2161:6;;-1:-1:-1;;;;;2161:6:0;;;;;813:10;2308:23;2300:68;;;;-1:-1:-1;;;2300:68:0;;;;;;;:::i;:::-;;;;;;;;;49870:13:::1;:30:::0;49787:121::o;7990:91::-;8035:13;8068:5;8061:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;7990:91;:::o;10136:169::-;10219:4;10236:39;813:10;10259:7;10268:6;10236:8;:39::i;:::-;-1:-1:-1;10293:4:0;10136:169;;;;;:::o;10787:321::-;10893:4;10910:36;10920:6;10928:9;10939:6;10910:9;:36::i;:::-;10957:121;10966:6;813:10;10988:89;11026:6;10988:89;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;10988:19:0;;;;;;:11;:19;;;;;;;;813:10;10988:33;;;;;;;;;;:37;:89::i;:::-;10957:8;:121::i;:::-;-1:-1:-1;11096:4:0;10787:321;;;;;:::o;54830:118::-;54908:15;;:32;;;-1:-1:-1;;;54908:32:0;;;;54881:7;;-1:-1:-1;;;;;54908:15:0;;:30;;:32;;;;;;;;;;;;;;:15;:32;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;54901:39;;54830:118;:::o;49914:192::-;2161:6;;-1:-1:-1;;;;;2161:6:0;;;;;813:10;2308:23;2300:68;;;;-1:-1:-1;;;2300:68:0;;;;;;;:::i;:::-;49996:45:::1;50013:4;50020:7;2161:6:::0;;-1:-1:-1;;;;;2161:6:0;;;;;;2088:87;50020:7:::1;50029:11;49996:8;:45::i;:::-;50052:46;50070:4;50077:7;2161:6:::0;;-1:-1:-1;;;;;2161:6:0;;;;;;2088:87;50077:7:::1;50086:11;50052:9;:46::i;:::-;49914:192:::0;:::o;55550:141::-;55640:15;;:43;;;-1:-1:-1;;;55640:43:0;;;;55613:7;;-1:-1:-1;;;;;55640:15:0;;:41;;:43;;;;;;;;;;;;;;:15;:43;;;;;;;;;;11517:218;813:10;11605:4;11654:25;;;:11;:25;;;;;;;;-1:-1:-1;;;;;11654:34:0;;;;;;;;;;11605:4;;11622:83;;11645:7;;11654:50;;11693:10;11654:38;:50::i;56140:352::-;2161:6;;-1:-1:-1;;;;;2161:6:0;;;;;813:10;2308:23;2300:68;;;;-1:-1:-1;;;2300:68:0;;;;;;;:::i;:::-;56235:42:::1;-1:-1:-1::0;;;;;56224:53:0;::::1;;;56216:102;;;::::0;-1:-1:-1;;;56216:102:0;;13200:2:1;56216:102:0::1;::::0;::::1;13182:21:1::0;13239:2;13219:18;;;13212:30;13278:34;13258:18;;;13251:62;-1:-1:-1;;;13329:18:1;;;13322:34;13373:19;;56216:102:0::1;13172:226:1::0;56216:102:0::1;-1:-1:-1::0;;;;;56338:26:0;::::1;;::::0;;;:17:::1;:26;::::0;;;;;::::1;;56337:27;56329:70;;;::::0;-1:-1:-1;;;56329:70:0;;10528:2:1;56329:70:0::1;::::0;::::1;10510:21:1::0;10567:2;10547:18;;;10540:30;10606:32;10586:18;;;10579:60;10656:18;;56329:70:0::1;10500:180:1::0;56329:70:0::1;-1:-1:-1::0;;;;;56410:26:0::1;;::::0;;;:17:::1;:26;::::0;;;;:33;;-1:-1:-1;;56410:33:0::1;56439:4;56410:33:::0;;::::1;::::0;;;56454:16:::1;:30:::0;;;;::::1;::::0;;;;;;::::1;::::0;;-1:-1:-1;;;;;;56454:30:0::1;::::0;;::::1;::::0;;56140:352::o;49267:107::-;2161:6;;-1:-1:-1;;;;;2161:6:0;;;;;813:10;2308:23;2300:68;;;;-1:-1:-1;;;2300:68:0;;;;;;;:::i;:::-;49340:12:::1;:26:::0;;-1:-1:-1;;49340:26:0::1;::::0;::::1;;::::0;;;::::1;::::0;;49267:107::o;57875:103::-;57912:15;;:58;;-1:-1:-1;;;57912:58:0;;57951:10;57912:58;;;4462:51:1;57912:15:0;4529:18:1;;;4522:50;-1:-1:-1;;;;;57912:15:0;;;;:30;;4435:18:1;;57912:58:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;49382:120::-;2161:6;;-1:-1:-1;;;;;2161:6:0;;;;;813:10;2308:23;2300:68;;;;-1:-1:-1;;;2300:68:0;;;;;;;:::i;:::-;49462:14:::1;:32:::0;;-1:-1:-1;;49462:32:0::1;::::0;::::1;;::::0;;;::::1;::::0;;49382:120::o;58123:141::-;58215:15;;:41;;;-1:-1:-1;;;58215:41:0;;;;58188:7;;-1:-1:-1;;;;;58215:15:0;;:39;;:41;;;;;;;;;;;;;;:15;:41;;;;;;;;;;55991:139;56088:15;;:34;;-1:-1:-1;;;56088:34:0;;-1:-1:-1;;;;;4234:32:1;;;56088:34:0;;;4216:51:1;56061:7:0;;56088:15;;:25;;4189:18:1;;56088:34:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;57596:271::-;57728:15;;:28;;-1:-1:-1;;;;;;57728:28:0;;;;;15604:25:1;;;57662:18:0;;;;;;-1:-1:-1;;;;;57728:15:0;;:23;;15577:18:1;;57728:28:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;57772:87;;;17112:25:1;;;17168:2;17153:18;;17146:34;;;17196:18;;;17189:34;;;17254:2;17239:18;;17232:34;;;57661:95:0;;-1:-1:-1;57661:95:0;;-1:-1:-1;57661:95:0;-1:-1:-1;57849:9:0;;57837:5;;57772:87;;17099:3:1;17084:19;57772:87:0;;;;;;;57596:271;;;;:::o;9260:127::-;-1:-1:-1;;;;;9361:18:0;9334:7;9361:18;;;;;;;;;;;;9260:127::o;2739:148::-;2161:6;;-1:-1:-1;;;;;2161:6:0;;;;;813:10;2308:23;2300:68;;;;-1:-1:-1;;;2300:68:0;;;;;;;:::i;:::-;2830:6:::1;::::0;2809:40:::1;::::0;2846:1:::1;::::0;2830:6:::1;::::0;::::1;-1:-1:-1::0;;;;;2830:6:0::1;::::0;2809:40:::1;::::0;2846:1;;2809:40:::1;2860:6;:19:::0;;-1:-1:-1;;;;;;2860:19:0::1;::::0;;2739:148::o;56500:500::-;2161:6;;-1:-1:-1;;;;;2161:6:0;;;;;813:10;2308:23;2300:68;;;;-1:-1:-1;;;2300:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;56589:26:0;::::1;;::::0;;;:17:::1;:26;::::0;;;;;::::1;;56581:65;;;::::0;-1:-1:-1;;;56581:65:0;;12845:2:1;56581:65:0::1;::::0;::::1;12827:21:1::0;12884:2;12864:18;;;12857:30;12923:28;12903:18;;;12896:56;12969:18;;56581:65:0::1;12817:176:1::0;56581:65:0::1;56662:9;56657:336;56681:16;:23:::0;56677:27;::::1;56657:336;;;56753:7;-1:-1:-1::0;;;;;56730:30:0::1;:16;56747:1;56730:19;;;;;;-1:-1:-1::0;;;56730:19:0::1;;;;;;;;;;::::0;;;::::1;::::0;;;::::1;::::0;-1:-1:-1;;;;;56730:19:0::1;:30;56726:256;;;56803:16;56820:23:::0;;:27:::1;::::0;56846:1:::1;::::0;56820:27:::1;:::i;:::-;56803:45;;;;;;-1:-1:-1::0;;;56803:45:0::1;;;;;;;;;;::::0;;;::::1;::::0;;;::::1;::::0;56781:16:::1;:19:::0;;-1:-1:-1;;;;;56803:45:0;;::::1;::::0;56798:1;;56781:19;::::1;;;-1:-1:-1::0;;;56781:19:0::1;;;;;;;;;;::::0;;;::::1;::::0;;;;;;::::1;:67:::0;;-1:-1:-1;;;;;;56781:67:0::1;-1:-1:-1::0;;;;;56781:67:0;;::::1;;::::0;;56867:26;;::::1;::::0;;:17:::1;:26:::0;;;;;;:34;;-1:-1:-1;;56867:34:0::1;::::0;;56920:16:::1;:22:::0;;;::::1;;-1:-1:-1::0;;;56920:22:0::1;;;;;;;;;;::::0;;;::::1;::::0;;;;-1:-1:-1;;56920:22:0;;;;;-1:-1:-1;;;;;;56920:22:0::1;::::0;;;;;56657:336:::1;56500:500:::0;:::o;56726:256::-:1;56706:3:::0;::::1;::::0;::::1;:::i;:::-;;;;56657:336;;;;56500:500:::0;:::o;54311:379::-;2161:6;;-1:-1:-1;;;;;2161:6:0;;;;;813:10;2308:23;2300:68;;;;-1:-1:-1;;;2300:68:0;;;;;;;:::i;:::-;54506:16:::1;;54494:8;:28;;54486:91;;;::::0;-1:-1:-1;;;54486:91:0;;9750:2:1;54486:91:0::1;::::0;::::1;9732:21:1::0;9789:2;9769:18;;;9762:30;9828:34;9808:18;;;9801:62;-1:-1:-1;;;9879:18:1;;;9872:48;9937:19;;54486:91:0::1;9722:240:1::0;54486:91:0::1;54627:16;::::0;54593:51:::1;::::0;54617:8;;54593:51:::1;::::0;;;::::1;54655:16;:27:::0;54311:379::o;49508:139::-;2161:6;;-1:-1:-1;;;;;2161:6:0;;;;;813:10;2308:23;2300:68;;;;-1:-1:-1;;;2300:68:0;;;;;;;:::i;:::-;49598:17:::1;:41:::0;;;::::1;;::::0;::::1;-1:-1:-1::0;;49598:41:0;;::::1;::::0;;;::::1;::::0;;49508:139::o;49653:128::-;2161:6;;-1:-1:-1;;;;;2161:6:0;;;;;813:10;2308:23;2300:68;;;;-1:-1:-1;;;2300:68:0;;;;;;;:::i;:::-;49737:16:::1;:36:::0;;;::::1;;::::0;::::1;-1:-1:-1::0;;49737:36:0;;::::1;::::0;;;::::1;::::0;;49653:128::o;48396:68::-;48433:31;48388:1;48339:2;48433:31;:::i;:::-;48396:68;:::o;8200:95::-;8247:13;8280:7;8273:14;;;;;:::i;53257:258::-;2161:6;;-1:-1:-1;;;;;2161:6:0;;;;;813:10;2308:23;2300:68;;;;-1:-1:-1;;;2300:68:0;;;;;;;:::i;:::-;53364:13:::1;-1:-1:-1::0;;;;;53356:21:0::1;:4;-1:-1:-1::0;;;;;53356:21:0::1;;;53348:105;;;::::0;-1:-1:-1;;;53348:105:0;;14416:2:1;53348:105:0::1;::::0;::::1;14398:21:1::0;14455:2;14435:18;;;14428:30;14494:34;14474:18;;;14467:62;14565:34;14545:18;;;14538:62;-1:-1:-1;;;14616:19:1;;;14609:38;14664:19;;53348:105:0::1;14388:301:1::0;53348:105:0::1;53466:41;53495:4;53501:5;53466:28;:41::i;54155:144::-:0;2161:6;;-1:-1:-1;;;;;2161:6:0;;;;;813:10;2308:23;2300:68;;;;-1:-1:-1;;;2300:68:0;;;;;;;:::i;:::-;54239:15:::1;::::0;:52:::1;::::0;-1:-1:-1;;;54239:52:0;;::::1;::::0;::::1;15604:25:1::0;;;-1:-1:-1;;;;;54239:15:0;;::::1;::::0;:36:::1;::::0;15577:18:1;;54239:52:0::1;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;::::0;::::1;;;;;;;;;54155:144:::0;:::o;55434:108::-;55507:15;;:27;;;-1:-1:-1;;;55507:27:0;;;;55480:7;;-1:-1:-1;;;;;55507:15:0;;:25;;:27;;;;;;;;;;;;;;:15;:27;;;;;;;;;;12238:269;12331:4;12348:129;813:10;12371:7;12380:96;12419:15;12380:96;;;;;;;;;;;;;;;;;813:10;12380:25;;;;:11;:25;;;;;;;;-1:-1:-1;;;;;12380:34:0;;;;;;;;;;;;:38;:96::i;55832:151::-;55928:15;;:47;;-1:-1:-1;;;55928:47:0;;-1:-1:-1;;;;;4234:32:1;;;55928:47:0;;;4216:51:1;55901:7:0;;55928:15;;:38;;4189:18:1;;55928:47:0;4171:102:1;9600:175:0;9686:4;9703:42;813:10;9727:9;9738:6;9703:9;:42::i;57006:282::-;57245:15;;:35;;-1:-1:-1;;;57245:35:0;;-1:-1:-1;;;;;4234:32:1;;;57245:35:0;;;4216:51:1;57094:7:0;;;;;;;;;;;;;;;;57245:15;;;:26;;4189:18:1;;57245:35:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;57238:42;;;;;;;;;;;;;;;;57006:282;;;;;;;;;:::o;54962:240::-;55067:15;;55029:4;;-1:-1:-1;;;;;55067:15:0;55053:10;:29;55045:78;;;;-1:-1:-1;;;55045:78:0;;7344:2:1;55045:78:0;;;7326:21:1;7383:2;7363:18;;;7356:30;7422:34;7402:18;;;7395:62;-1:-1:-1;;;7473:18:1;;;7466:34;7517:19;;55045:78:0;7316:226:1;55045:78:0;-1:-1:-1;55134:12:0;:29;;-1:-1:-1;;55134:29:0;;;;;;;;;;55181:12;;54962:240::o;53938:209::-;2161:6;;-1:-1:-1;;;;;2161:6:0;;;;;813:10;2308:23;2300:68;;;;-1:-1:-1;;;2300:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;54017:28:0;::::1;;::::0;;;:19:::1;:28;::::0;;;;;::::1;;54016:29;54008:85;;;::::0;-1:-1:-1;;;54008:85:0;;14896:2:1;54008:85:0::1;::::0;::::1;14878:21:1::0;14935:2;14915:18;;;14908:30;14974:34;14954:18;;;14947:62;-1:-1:-1;;;15025:18:1;;;15018:41;15076:19;;54008:85:0::1;14868:233:1::0;54008:85:0::1;-1:-1:-1::0;;;;;54104:28:0::1;;::::0;;;:19:::1;:28;::::0;;;;:35;;-1:-1:-1;;54104:35:0::1;54135:4;54104:35;::::0;;53938:209::o;57986:129::-;58068:15;;:39;;;-1:-1:-1;;;58068:39:0;;;;58041:7;;-1:-1:-1;;;;;58068:15:0;;:37;;:39;;;;;;;;;;;;;;:15;:39;;;;;;;;;;54698:124;2161:6;;-1:-1:-1;;;;;2161:6:0;;;;;813:10;2308:23;2300:68;;;;-1:-1:-1;;;2300:68:0;;;;;;;:::i;:::-;54772:15:::1;::::0;:42:::1;::::0;-1:-1:-1;;;54772:42:0;;::::1;::::0;::::1;15604:25:1::0;;;-1:-1:-1;;;;;54772:15:0;;::::1;::::0;:31:::1;::::0;15577:18:1;;54772:42:0::1;15559:76:1::0;57296:292:0;57540:15;;:40;;-1:-1:-1;;;57540:40:0;;;;;15604:25:1;;;57389:7:0;;;;;;;;;;;;;;;;-1:-1:-1;;;;;57540:15:0;;;;:33;;15577:18:1;;57540:40:0;15559:76:1;3042:244:0;2161:6;;-1:-1:-1;;;;;2161:6:0;;;;;813:10;2308:23;2300:68;;;;-1:-1:-1;;;2300:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;3131:22:0;::::1;3123:73;;;::::0;-1:-1:-1;;;3123:73:0;;8584:2:1;3123:73:0::1;::::0;::::1;8566:21:1::0;8623:2;8603:18;;;8596:30;8662:34;8642:18;;;8635:62;-1:-1:-1;;;8713:18:1;;;8706:36;8759:19;;3123:73:0::1;8556:228:1::0;3123:73:0::1;3233:6;::::0;3212:38:::1;::::0;-1:-1:-1;;;;;3212:38:0;;::::1;::::0;3233:6:::1;::::0;::::1;;::::0;3212:38:::1;::::0;;;::::1;3261:6;:17:::0;;-1:-1:-1;;;;;3261:17:0;;::::1;;;-1:-1:-1::0;;;;;;3261:17:0;;::::1;::::0;;;::::1;::::0;;3042:244::o;55323:103::-;2161:6;;-1:-1:-1;;;;;2161:6:0;;;;;813:10;2308:23;2300:68;;;;-1:-1:-1;;;2300:68:0;;;;;;;:::i;:::-;55394:14:::1;:24:::0;;;::::1;;-1:-1:-1::0;;;55394:24:0::1;-1:-1:-1::0;;;;55394:24:0;;::::1;::::0;;;::::1;::::0;;55323:103::o;55214:97::-;2161:6;;-1:-1:-1;;;;;2161:6:0;;;;;813:10;2308:23;2300:68;;;;-1:-1:-1;;;2300:68:0;;;;;;;:::i;:::-;55282:14:::1;:21:::0;;;::::1;;;;-1:-1:-1::0;;55282:21:0;;::::1;::::0;;;::::1;::::0;;55214:97::o;41479:179::-;41537:7;;41569:5;41573:1;41569;:5;:::i;:::-;41557:17;;41598:1;41593;:6;;41585:46;;;;-1:-1:-1;;;41585:46:0;;9394:2:1;41585:46:0;;;9376:21:1;9433:2;9413:18;;;9406:30;9472:29;9452:18;;;9445:57;9519:18;;41585:46:0;9366:177:1;41585:46:0;41649:1;41479:179;-1:-1:-1;;;41479:179:0:o;15385:346::-;-1:-1:-1;;;;;15487:19:0;;15479:68;;;;-1:-1:-1;;;15479:68:0;;14011:2:1;15479:68:0;;;13993:21:1;14050:2;14030:18;;;14023:30;14089:34;14069:18;;;14062:62;-1:-1:-1;;;14140:18:1;;;14133:34;14184:19;;15479:68:0;13983:226:1;15479:68:0;-1:-1:-1;;;;;15566:21:0;;15558:68;;;;-1:-1:-1;;;15558:68:0;;8991:2:1;15558:68:0;;;8973:21:1;9030:2;9010:18;;;9003:30;9069:34;9049:18;;;9042:62;-1:-1:-1;;;9120:18:1;;;9113:32;9162:19;;15558:68:0;8963:224:1;15558:68:0;-1:-1:-1;;;;;15639:18:0;;;;;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;:36;;;15691:32;;15604:25:1;;;15691:32:0;;15577:18:1;15691:32:0;;;;;;;;15385:346;;;:::o;58274:4280::-;-1:-1:-1;;;;;58406:18:0;;58398:68;;;;-1:-1:-1;;;58398:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;58485:16:0;;58477:64;;;;-1:-1:-1;;;58477:64:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;58572:21:0;;;;;;:17;:21;;;;;;;;58571:22;58563:58;;;;-1:-1:-1;;;58563:58:0;;;;;;;:::i;:::-;58660:10;58642:29;;;;:17;:29;;;;;;;;58641:30;58633:66;;;;-1:-1:-1;;;58633:66:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;58720:23:0;;;;;;:17;:23;;;;;;;;58719:24;58711:60;;;;-1:-1:-1;;;58711:60:0;;;;;;;:::i;:::-;2161:6;;-1:-1:-1;;;;;58890:15:0;;;2161:6;;;;;58890:15;;;;:32;;-1:-1:-1;2161:6:0;;-1:-1:-1;;;;;58909:13:0;;;2161:6;;;;;58909:13;;58890:32;58887:181;;;58937:14;;-1:-1:-1;;;58937:14:0;;;;58933:135;;;48269:19;58975:6;:36;;58967:89;;;;-1:-1:-1;;;58967:89:0;;11242:2:1;58967:89:0;;;11224:21:1;11281:2;11261:18;;;11254:30;11320:34;11300:18;;;11293:62;-1:-1:-1;;;11371:18:1;;;11364:38;11419:19;;58967:89:0;11214:230:1;58967:89:0;59102:14;;;;;59222:295;;59342:14;;;;;;;59338:168;;-1:-1:-1;;;;;59384:39:0;;;;;;:33;:39;;;;;;;;59376:114;;;;-1:-1:-1;;;59376:114:0;;8153:2:1;59376:114:0;;;8135:21:1;8192:2;8172:18;;;8165:30;8231:34;8211:18;;;8204:62;8302:32;8282:18;;;8275:60;8352:19;;59376:114:0;8125:252:1;59376:114:0;59546:13;-1:-1:-1;;;;;59538:21:0;:4;-1:-1:-1;;;;;59538:21:0;;:44;;;;59569:13;-1:-1:-1;;;;;59563:19:0;:2;-1:-1:-1;;;;;59563:19:0;;59538:44;59537:66;;;;;59587:16;59537:66;59533:330;59889:11;59885:93;;59917:28;59933:4;59939:2;59943:1;59917:15;:28::i;:::-;59960:7;58274:4280;;;:::o;59885:93::-;59995:11;;-1:-1:-1;;;59995:11:0;;;;59994:12;:45;;;;;60023:16;59994:45;:91;;;;-1:-1:-1;;;;;;60056:29:0;;;;;;:25;:29;;;;;;;;59994:91;:207;;;;-1:-1:-1;60185:15:0;;-1:-1:-1;;;;;60169:32:0;;;60185:15;;60169:32;;59994:207;:312;;;;-1:-1:-1;;;;;;60283:23:0;;;;;;:19;:23;;;;;;;;60282:24;59994:312;59990:501;;;60375:16;;;;;;;60371:109;;;60427:40;60463:3;60427:31;60456:1;60427:24;60437:13;60427:9;:24::i;:::-;:28;;:31::i;:::-;:35;;:40::i;:::-;60417:6;:50;;60409:59;;;;;;60503:28;60534:24;60552:4;60534:9;:24::i;:::-;60572:17;;60503:55;;-1:-1:-1;60572:17:0;;;;;60569:230;;;60630:52;60678:3;60630:43;60659:13;;60630:24;60640:13;60630:9;:24::i;:52::-;60605:20;:78;60601:187;;60723:52;60771:3;60723:43;60752:13;;60723:24;60733:13;60723:9;:24::i;:52::-;60699:77;;60601:187;60809:10;:33;;;60902:23;;60878:47;;;60942:16;:40;;;;;60975:7;60942:40;:69;;;;-1:-1:-1;60999:12:0;;;;60942:69;:98;;;;-1:-1:-1;61029:11:0;;-1:-1:-1;;;61029:11:0;;;;61028:12;60942:98;:147;;;;-1:-1:-1;;;;;;61058:31:0;;;;;;:25;:31;;;;;;;;61057:32;60942:147;:187;;;;-1:-1:-1;61114:15:0;;-1:-1:-1;;;;;61106:23:0;;;61114:15;;61106:23;;60942:187;:225;;;;-1:-1:-1;61152:15:0;;-1:-1:-1;;;;;61146:21:0;;;61152:15;;61146:21;;60942:225;60938:559;;;61194:11;:18;;-1:-1:-1;;;;61194:18:0;-1:-1:-1;;;61194:18:0;;;;61250:45;48433:31;48388:1;48339:2;48433:31;:::i;:::-;61250:10;;:29;;48388:1;61250:14;:29::i;:45::-;61229:66;;61310:28;61327:10;61310:16;:28::i;:::-;61376:10;;61355:18;;61376:26;;61391:10;61376:14;:26::i;:::-;61355:47;;61417:32;61438:10;61417:20;:32::i;:::-;-1:-1:-1;;61466:11:0;:19;;-1:-1:-1;;;;61466:19:0;;;60938:559;61509:12;61524:16;:32;;;;-1:-1:-1;61545:11:0;;-1:-1:-1;;;61545:11:0;;;;61544:12;61524:32;-1:-1:-1;;;;;61658:25:0;;;;;;:19;:25;;;;;;61509:47;;-1:-1:-1;61658:25:0;;;:52;;-1:-1:-1;;;;;;61687:23:0;;;;;;:19;:23;;;;;;;;61658:52;61654:100;;;-1:-1:-1;61737:5:0;61654:100;61770:7;61766:185;;;61794:12;61809:31;61836:3;61809:22;48433:31;48388:1;48339:2;48433:31;:::i;:::-;61809:6;;:10;:22::i;:31::-;61794:46;-1:-1:-1;61864:16:0;:6;61794:46;61864:10;:16::i;:::-;61855:25;;61897:42;61913:4;61927;61934;61897:15;:42::i;:::-;61766:185;;61963:33;61979:4;61985:2;61989:6;61963:15;:33::i;:::-;62013:15;;-1:-1:-1;;;;;62013:15:0;:26;62048:4;62055:15;62048:4;62055:9;:15::i;:::-;62013:58;;-1:-1:-1;;;;;;62013:58:0;;;;;;;-1:-1:-1;;;;;4791:32:1;;;62013:58:0;;;4773:51:1;4840:18;;;4833:34;4746:18;;62013:58:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;62009:74;62097:15;;-1:-1:-1;;;;;62097:15:0;:26;62132:2;62137:13;62132:2;62137:9;:13::i;:::-;62097:54;;-1:-1:-1;;;;;;62097:54:0;;;;;;;-1:-1:-1;;;;;4791:32:1;;;62097:54:0;;;4773:51:1;4840:18;;;4833:34;4746:18;;62097:54:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;62093:94;62204:11;;-1:-1:-1;;;62204:11:0;;;;62199:348;;62246:16;;62283:15;;:28;;-1:-1:-1;;;;;;62283:28:0;;;;;15604:25:1;;;-1:-1:-1;;;;;62283:15:0;;;;:23;;15577:18:1;;62283:28:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;62283:28:0;;;;;;;;-1:-1:-1;;62283:28:0;;;;;;;;;;;;:::i;:::-;;;62279:257;;;;;62409:86;;;17112:25:1;;;17168:2;17153:18;;17146:34;;;17196:18;;;17189:34;;;17254:2;17239:18;;17232:34;;;62485:9:0;;62474:4;;62409:86;;17099:3:1;17084:19;62409:86:0;;;;;;;62312:199;;;62279:257;62199:348;;58274:4280;;;;;;;:::o;44315:166::-;44401:7;44437:12;44429:6;;;;44421:29;;;;-1:-1:-1;;;44421:29:0;;;;;;;;:::i;:::-;-1:-1:-1;44468:5:0;44472:1;44468;:5;:::i;:::-;44461:12;44315:166;-1:-1:-1;;;;44315:166:0:o;53523:405::-;-1:-1:-1;;;;;53614:31:0;;;;;;:25;:31;;;;;;;;:40;;;;;;;53606:115;;;;-1:-1:-1;;;53606:115:0;;12053:2:1;53606:115:0;;;12035:21:1;12092:2;12072:18;;;12065:30;12131:34;12111:18;;;12104:62;12202:32;12182:18;;;12175:60;12252:19;;53606:115:0;12025:252:1;53606:115:0;-1:-1:-1;;;;;53732:31:0;;;;;;:25;:31;;;;;:39;;-1:-1:-1;;53732:39:0;;;;;;;;;;;;53784:79;;53809:15;;:42;;-1:-1:-1;;;53809:42:0;;-1:-1:-1;;;;;4234:32:1;;;53809:42:0;;;4216:51:1;53809:15:0;;;;:36;;4189:18:1;;53809:42:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;53784:79;53880:40;;;;;;-1:-1:-1;;;;;53880:40:0;;;;;;;;53523:405;;:::o;12997:539::-;-1:-1:-1;;;;;13103:20:0;;13095:70;;;;-1:-1:-1;;;13095:70:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;13184:23:0;;13176:71;;;;-1:-1:-1;;;13176:71:0;;;;;;;:::i;:::-;13340;13362:6;13340:71;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;13340:17:0;;:9;:17;;;;;;;;;;;;:71;:21;:71::i;:::-;-1:-1:-1;;;;;13320:17:0;;;:9;:17;;;;;;;;;;;:91;;;;13445:20;;;;;;;:32;;13470:6;13445:24;:32::i;:::-;-1:-1:-1;;;;;13422:20:0;;;:9;:20;;;;;;;;;;;;:55;;;;13493:35;15604:25:1;;;13422:20:0;;13493:35;;;;;;15577:18:1;13493:35:0;15559:76:1;42367:220:0;42425:7;42449:6;42445:20;;-1:-1:-1;42464:1:0;42457:8;;42445:20;42476:9;42488:5;42492:1;42488;:5;:::i;:::-;42476:17;-1:-1:-1;42521:1:0;42512:5;42516:1;42476:17;42512:5;:::i;:::-;:10;42504:56;;;;-1:-1:-1;;;42504:56:0;;11651:2:1;42504:56:0;;;11633:21:1;11690:2;11670:18;;;11663:30;11729:34;11709:18;;;11702:62;-1:-1:-1;;;11780:18:1;;;11773:31;11821:19;;42504:56:0;11623:223:1;43065:153:0;43123:7;43155:1;43151;:5;43143:44;;;;-1:-1:-1;;;43143:44:0;;10887:2:1;43143:44:0;;;10869:21:1;10926:2;10906:18;;;10899:30;10965:28;10945:18;;;10938:56;11011:18;;43143:44:0;10859:176:1;43143:44:0;43205:5;43209:1;43205;:5;:::i;62562:907::-;62646:6;62955:21;63021:30;62646:6;63021:16;:30::i;:::-;63178:18;63199:41;:21;63225:14;63199:25;:41::i;:::-;63355:44;;63178:62;;-1:-1:-1;63301:42:0;;;;63355:44;;;;;63178:62;;63251:39;63355:44;63251:39;63355:44;63178:62;63301:42;63355:44;;;;;;;;;;;;;;;;;;;;-1:-1:-1;63425:36:0;;;16802:25:1;;;16858:2;16843:18;;16836:34;;;63425:36:0;;16775:18:1;63425:36:0;;;;;;;62562:907;;;;;:::o;41950:158::-;42008:7;42041:1;42036;:6;;42028:49;;;;-1:-1:-1;;;42028:49:0;;10169:2:1;42028:49:0;;;10151:21:1;10208:2;10188:18;;;10181:30;10247:32;10227:18;;;10220:60;10297:18;;42028:49:0;10141:180:1;42028:49:0;42095:5;42099:1;42095;:5;:::i;64162:452::-;64227:49;64254:6;64270:4;64227:26;:49::i;:::-;64314:14;;64307:47;;-1:-1:-1;;;64307:47:0;;64348:4;64307:47;;;4216:51:1;64287:17:0;;-1:-1:-1;;;;;64314:14:0;;64307:32;;4189:18:1;;64307:47:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;64387:14;;64420:15;;64380:68;;-1:-1:-1;;;64380:68:0;;-1:-1:-1;;;;;64420:15:0;;;64380:68;;;4773:51:1;4840:18;;;4833:34;;;64287:67:0;;-1:-1:-1;64365:12:0;;64387:14;;;64380:31;;4746:18:1;;64380:68:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;64365:83;;64473:7;64469:138;;;64497:15;;:46;;-1:-1:-1;;;64497:46:0;;;;;15604:25:1;;;-1:-1:-1;;;;;64497:15:0;;;;:35;;15577:18:1;;64497:46:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;64563:32:0;;;16802:25:1;;;16858:2;16843:18;;16836:34;;;64563:32:0;;-1:-1:-1;16775:18:1;;-1:-1:-1;64563:32:0;;;;;;;64469:138;64162:452;;;:::o;64622:589::-;64772:16;;;64786:1;64772:16;;;;;;;;64748:21;;64772:16;;;;;;;;;;-1:-1:-1;64772:16:0;64748:40;;64817:4;64799;64804:1;64799:7;;;;;;-1:-1:-1;;;64799:7:0;;;;;;;;;-1:-1:-1;;;;;64799:23:0;;;:7;;;;;;;;;;:23;;;;64843:15;;:22;;;-1:-1:-1;;;64843:22:0;;;;:15;;;;;:20;;:22;;;;;64799:7;;64843:22;;;;;:15;:22;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;64833:4;64838:1;64833:7;;;;;;-1:-1:-1;;;64833:7:0;;;;;;;;;-1:-1:-1;;;;;64833:32:0;;;:7;;;;;;;;;:32;64910:15;;64878:62;;64895:4;;64910:15;64928:11;64878:8;:62::i;:::-;64979:15;;:224;;-1:-1:-1;;;64979:224:0;;-1:-1:-1;;;;;64979:15:0;;;;:66;;:224;;65060:11;;64979:15;;65130:4;;65157;;65177:15;;64979:224;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;64622:589;;:::o;63477:672::-;63655:16;;;63669:1;63655:16;;;;;;;;;63631:21;;63655:16;;;;;;;;;;-1:-1:-1;63655:16:0;63631:40;;63700:4;63682;63687:1;63682:7;;;;;;-1:-1:-1;;;63682:7:0;;;;;;;;;-1:-1:-1;;;;;63682:23:0;;;:7;;;;;;;;;;:23;;;;63726:15;;:22;;;-1:-1:-1;;;63726:22:0;;;;:15;;;;;:20;;:22;;;;;63682:7;;63726:22;;;;;:15;:22;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;63716:4;63721:1;63716:7;;;;;;-1:-1:-1;;;63716:7:0;;;;;;;;;-1:-1:-1;;;;;63716:32:0;;;:7;;;;;;;;;:32;63769:14;;63759:7;;63769:14;;;63759:4;;63764:1;;63759:7;;;;-1:-1:-1;;;63759:7:0;;;;;;;;;-1:-1:-1;;;;;63759:24:0;;;:7;;;;;;;;;:24;63828:15;;63796:62;;63813:4;;63828:15;63846:11;63796:8;:62::i;:::-;63897:15;;:234;;-1:-1:-1;;;63897:234:0;;-1:-1:-1;;;;;63897:15:0;;;;:69;;:234;;63981:11;;63897:15;;64062:4;;64081:9;;64105:15;;63897:234;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;14:257:1;73:6;126:2;114:9;105:7;101:23;97:32;94:2;;;147:6;139;132:22;94:2;191:9;178:23;210:31;235:5;210:31;:::i;276:261::-;346:6;399:2;387:9;378:7;374:23;370:32;367:2;;;420:6;412;405:22;367:2;457:9;451:16;476:31;501:5;476:31;:::i;542:398::-;610:6;618;671:2;659:9;650:7;646:23;642:32;639:2;;;692:6;684;677:22;639:2;736:9;723:23;755:31;780:5;755:31;:::i;:::-;805:5;-1:-1:-1;862:2:1;847:18;;834:32;875:33;834:32;875:33;:::i;:::-;927:7;917:17;;;629:311;;;;;:::o;945:466::-;1022:6;1030;1038;1091:2;1079:9;1070:7;1066:23;1062:32;1059:2;;;1112:6;1104;1097:22;1059:2;1156:9;1143:23;1175:31;1200:5;1175:31;:::i;:::-;1225:5;-1:-1:-1;1282:2:1;1267:18;;1254:32;1295:33;1254:32;1295:33;:::i;:::-;1049:362;;1347:7;;-1:-1:-1;;;1401:2:1;1386:18;;;;1373:32;;1049:362::o;1416:392::-;1481:6;1489;1542:2;1530:9;1521:7;1517:23;1513:32;1510:2;;;1563:6;1555;1548:22;1510:2;1607:9;1594:23;1626:31;1651:5;1626:31;:::i;:::-;1676:5;-1:-1:-1;1733:2:1;1718:18;;1705:32;1746:30;1705:32;1746:30;:::i;1813:691::-;1944:6;1952;1960;1968;1976;1984;1992;2000;2053:3;2041:9;2032:7;2028:23;2024:33;2021:2;;;2075:6;2067;2060:22;2021:2;2112:9;2106:16;2131:31;2156:5;2131:31;:::i;:::-;2181:5;2171:15;;;2226:2;2215:9;2211:18;2205:25;2195:35;;2270:2;2259:9;2255:18;2249:25;2239:35;;2314:2;2303:9;2299:18;2293:25;2283:35;;2358:3;2347:9;2343:19;2337:26;2327:36;;2403:3;2392:9;2388:19;2382:26;2372:36;;2448:3;2437:9;2433:19;2427:26;2417:36;;2493:3;2482:9;2478:19;2472:26;2462:36;;2011:493;;;;;;;;;;;:::o;2509:325::-;2577:6;2585;2638:2;2626:9;2617:7;2613:23;2609:32;2606:2;;;2659:6;2651;2644:22;2606:2;2703:9;2690:23;2722:31;2747:5;2722:31;:::i;:::-;2772:5;2824:2;2809:18;;;;2796:32;;-1:-1:-1;;;2596:238:1:o;2839:251::-;2895:6;2948:2;2936:9;2927:7;2923:23;2919:32;2916:2;;;2969:6;2961;2954:22;2916:2;3013:9;3000:23;3032:28;3054:5;3032:28;:::i;3095:255::-;3162:6;3215:2;3203:9;3194:7;3190:23;3186:32;3183:2;;;3236:6;3228;3221:22;3183:2;3273:9;3267:16;3292:28;3314:5;3292:28;:::i;3355:190::-;3414:6;3467:2;3455:9;3446:7;3442:23;3438:32;3435:2;;;3488:6;3480;3473:22;3435:2;-1:-1:-1;3516:23:1;;3425:120;-1:-1:-1;3425:120:1:o;3550:194::-;3620:6;3673:2;3661:9;3652:7;3648:23;3644:32;3641:2;;;3694:6;3686;3679:22;3641:2;-1:-1:-1;3722:16:1;;3631:113;-1:-1:-1;3631:113:1:o;3749:316::-;3837:6;3845;3853;3906:2;3894:9;3885:7;3881:23;3877:32;3874:2;;;3927:6;3919;3912:22;3874:2;3961:9;3955:16;3945:26;;4011:2;4000:9;3996:18;3990:25;3980:35;;4055:2;4044:9;4040:18;4034:25;4024:35;;3864:201;;;;;:::o;6534:603::-;6646:4;6675:2;6704;6693:9;6686:21;6736:6;6730:13;6779:6;6774:2;6763:9;6759:18;6752:34;6804:4;6817:140;6831:6;6828:1;6825:13;6817:140;;;6926:14;;;6922:23;;6916:30;6892:17;;;6911:2;6888:26;6881:66;6846:10;;6817:140;;;6975:6;6972:1;6969:13;6966:2;;;7045:4;7040:2;7031:6;7020:9;7016:22;7012:31;7005:45;6966:2;-1:-1:-1;7121:2:1;7100:15;-1:-1:-1;;7096:29:1;7081:45;;;;7128:2;7077:54;;6655:482;-1:-1:-1;;;6655:482:1:o;7547:399::-;7749:2;7731:21;;;7788:2;7768:18;;;7761:30;7827:34;7822:2;7807:18;;7800:62;-1:-1:-1;;;7893:2:1;7878:18;;7871:33;7936:3;7921:19;;7721:225::o;12282:356::-;12484:2;12466:21;;;12503:18;;;12496:30;12562:34;12557:2;12542:18;;12535:62;12629:2;12614:18;;12456:182::o;13403:401::-;13605:2;13587:21;;;13644:2;13624:18;;;13617:30;13683:34;13678:2;13663:18;;13656:62;-1:-1:-1;;;13749:2:1;13734:18;;13727:35;13794:3;13779:19;;13577:227::o;15106:347::-;15308:2;15290:21;;;15347:2;15327:18;;;15320:30;15386:25;15381:2;15366:18;;15359:53;15444:2;15429:18;;15280:173::o;15640:983::-;15902:4;15950:3;15939:9;15935:19;15981:6;15970:9;15963:25;16007:2;16045:6;16040:2;16029:9;16025:18;16018:34;16088:3;16083:2;16072:9;16068:18;16061:31;16112:6;16147;16141:13;16178:6;16170;16163:22;16216:3;16205:9;16201:19;16194:26;;16255:2;16247:6;16243:15;16229:29;;16276:4;16289:195;16303:6;16300:1;16297:13;16289:195;;;16368:13;;-1:-1:-1;;;;;16364:39:1;16352:52;;16459:15;;;;16424:12;;;;16400:1;16318:9;16289:195;;;-1:-1:-1;;;;;;;16540:32:1;;;;16535:2;16520:18;;16513:60;-1:-1:-1;;;16604:3:1;16589:19;16582:35;16501:3;15911:712;-1:-1:-1;;;15911:712:1:o;17466:128::-;17506:3;17537:1;17533:6;17530:1;17527:13;17524:2;;;17543:18;;:::i;:::-;-1:-1:-1;17579:9:1;;17514:80::o;17599:217::-;17639:1;17665;17655:2;;-1:-1:-1;;;17690:31:1;;17744:4;17741:1;17734:15;17772:4;17697:1;17762:15;17655:2;-1:-1:-1;17801:9:1;;17645:171::o;17821:168::-;17861:7;17927:1;17923;17919:6;17915:14;17912:1;17909:21;17904:1;17897:9;17890:17;17886:45;17883:2;;;17934:18;;:::i;:::-;-1:-1:-1;17974:9:1;;17873:116::o;17994:125::-;18034:4;18062:1;18059;18056:8;18053:2;;;18067:18;;:::i;:::-;-1:-1:-1;18104:9:1;;18043:76::o;18124:380::-;18203:1;18199:12;;;;18246;;;18267:2;;18321:4;18313:6;18309:17;18299:27;;18267:2;18374;18366:6;18363:14;18343:18;18340:38;18337:2;;;18420:10;18415:3;18411:20;18408:1;18401:31;18455:4;18452:1;18445:15;18483:4;18480:1;18473:15;18337:2;;18179:325;;;:::o;18509:135::-;18548:3;-1:-1:-1;;18569:17:1;;18566:2;;;18589:18;;:::i;:::-;-1:-1:-1;18636:1:1;18625:13;;18556:88::o;18649:127::-;18710:10;18705:3;18701:20;18698:1;18691:31;18741:4;18738:1;18731:15;18765:4;18762:1;18755:15;18781:131;-1:-1:-1;;;;;18856:31:1;;18846:42;;18836:2;;18902:1;18899;18892:12;18917:118;19003:5;18996:13;18989:21;18982:5;18979:32;18969:2;;19025:1;19022;19015:12

Swarm Source

ipfs://0f53d2530adee87317190163030af6fb3e59e3cfa19cbe328ebfba8a641a8319
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.