ETH Price: $3,194.15 (+2.04%)
 

Overview

Max Total Supply

1,000,000,000 XRPU

Holders

91

Market

Onchain Market Cap

$0.00

Circulating Supply Market Cap

-

Other Info

Token Contract (WITH 18 Decimals)

Balance
1,174,500 XRPU

Value
$0.00
0x9aa8520e13061a84b93faef8f6dbacb151b2f801
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: Unlicensed

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 = 0x2260FAC5E5542a773Aa44fBCfeDf7C193bc2C599;

  // 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).
     *
     * Counterpart 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_SELL_TRANSACTION_AMOUNT = 10000000 * (10**18);

    uint256 public constant ETH_REWARDS_FEE = 8;
    uint256 public constant LIQUIDITY_FEE = 6;
    uint256 public constant TOTAL_FEES = ETH_REWARDS_FEE + LIQUIDITY_FEE;
    bool _swapEnabled = false;
    bool openForPresale = false;
    
    mapping (address => bool) private _isBlackListedBot;
    address[] private _blackListedBots;
    
    address private _dividendToken = 0x2260FAC5E5542a773Aa44fBCfeDf7C193bc2C599;
    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 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() && _maxBuyEnabled)
            require(amount <= MAX_SELL_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
        ) {
            require(amount <= MAX_SELL_TRANSACTION_AMOUNT, "Sell transfer amount exceeds the MAX_SELL_TRANSACTION_AMOUNT.");
        }

        uint256 contractTokenBalance = balanceOf(address(this));

        bool canSwap = contractTokenBalance >= liquidateTokensAtAmount;

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

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

            uint256 sellTokens = balanceOf(address(this));
            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 = 3600;
        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 >= 1800 && newClaimWait <= 86400, "XRPU_Dividend_Tracker: claimWait must be updated to between 1 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_SELL_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":"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":"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"}]

60a06040526008805461ffff60a01b19169055600b80546001600160a81b03191674012260fac5e5542a773aa44fbcfedf7c193bc2c599179055620249f0600c5569152d02c7e14af6800000600d553480156200005b57600080fd5b50604080518082018252600d81526c16149408155b9b1a5b5a5d1959609a1b6020808301918252835180850190945260048452635852505560e01b908401528151919291620000ad91600391620009f7565b508051620000c3906004906020840190620009f7565b50506005805460ff19166012179055506000620000dd3390565b60058054610100600160a81b0319166101006001600160a01b03841690810291909117909155604051919250906000907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0908290a350604051620001419062000a86565b604051809103906000f0801580156200015e573d6000803e3d6000fd5b50600780546001600160a01b0319166001600160a01b03928316179055600554610100900416600860006101000a8154816001600160a01b0302191690836001600160a01b031602179055506000737a250d5630b4cf539739df2c5dacb4c659f2488d90506000816001600160a01b031663c45a01556040518163ffffffff1660e01b815260040160206040518083038186803b158015620001ff57600080fd5b505afa15801562000214573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906200023a919062000aab565b6001600160a01b031663c9c6539630846001600160a01b031663ad5c46486040518163ffffffff1660e01b815260040160206040518083038186803b1580156200028357600080fd5b505afa15801562000298573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190620002be919062000aab565b6040516001600160e01b031960e085901b1681526001600160a01b03928316600482015291166024820152604401602060405180830381600087803b1580156200030757600080fd5b505af11580156200031c573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019062000342919062000aab565b600680546001600160a01b0319166001600160a01b038516179055606081901b6001600160601b03191660805290506200037e81600162000625565b60075460405163031e79db60e41b81526001600160a01b0390911660048201819052906331e79db090602401600060405180830381600087803b158015620003c557600080fd5b505af1158015620003da573d6000803e3d6000fd5b505060075460405163031e79db60e41b81523060048201526001600160a01b0390911692506331e79db09150602401600060405180830381600087803b1580156200042457600080fd5b505af115801562000439573d6000803e3d6000fd5b50506007546001600160a01b031691506331e79db090506200046860055461010090046001600160a01b031690565b6040516001600160e01b031960e084901b1681526001600160a01b039091166004820152602401600060405180830381600087803b158015620004aa57600080fd5b505af1158015620004bf573d6000803e3d6000fd5b505060075460405163031e79db60e41b81526001600160a01b03868116600483015290911692506331e79db09150602401600060405180830381600087803b1580156200050b57600080fd5b505af115801562000520573d6000803e3d6000fd5b505060075460405163031e79db60e41b815261dead60048201526001600160a01b0390911692506331e79db09150602401600060405180830381600087803b1580156200056c57600080fd5b505af115801562000581573d6000803e3d6000fd5b50506008546200059d92506001600160a01b031690506200078c565b620005a8306200078c565b600160106000620005c660055461010090046001600160a01b031690565b6001600160a01b031681526020810191909152604001600020805460ff19169115159190911790556200061d6200060a60055461010090046001600160a01b031690565b6b033b2e3c9fd0803ce800000062000891565b505062000b36565b6001600160a01b03821660009081526011602052604090205460ff1615158115151415620006c05760405162461bcd60e51b815260206004820152603e60248201527f585250553a204175746f6d61746564206d61726b6574206d616b65722070616960448201527f7220697320616c72656164792073657420746f20746861742076616c7565000060648201526084015b60405180910390fd5b6001600160a01b0382166000908152601160205260409020805460ff19168215801591909117909155620007505760075460405163031e79db60e41b81526001600160a01b038481166004830152909116906331e79db090602401600060405180830381600087803b1580156200073657600080fd5b505af11580156200074b573d6000803e3d6000fd5b505050505b604051811515906001600160a01b038416907fffa9187bf1f18bf477bd0ea1bcbb64e93b6a98132473929edfce215cd9b16fab90600090a35050565b6005546001600160a01b03610100909104163314620007ee5760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401620006b7565b6001600160a01b0381166000908152600f602052604090205460ff16156200086d5760405162461bcd60e51b815260206004820152602b60248201527f585250553a204163636f756e7420697320616c7265616479206578636c75646560448201526a642066726f6d206665657360a81b6064820152608401620006b7565b6001600160a01b03166000908152600f60205260409020805460ff19166001179055565b6001600160a01b038216620008e95760405162461bcd60e51b815260206004820152601f60248201527f45524332303a206d696e7420746f20746865207a65726f2061646472657373006044820152606401620006b7565b62000905816002546200098d60201b62001afd1790919060201c565b6002556001600160a01b038216600090815260208181526040909120546200093891839062001afd6200098d821b17901c565b6001600160a01b038316600081815260208181526040808320949094559251848152919290917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef910160405180910390a35050565b6000806200099c838562000ad4565b905083811015620009f05760405162461bcd60e51b815260206004820152601b60248201527f536166654d6174683a206164646974696f6e206f766572666c6f7700000000006044820152606401620006b7565b9392505050565b82805462000a059062000af9565b90600052602060002090601f01602090048101928262000a29576000855562000a74565b82601f1062000a4457805160ff191683800117855562000a74565b8280016001018555821562000a74579182015b8281111562000a7457825182559160200191906001019062000a57565b5062000a8292915062000a94565b5090565b6125908062003e6e83390190565b5b8082111562000a82576000815560010162000a95565b60006020828403121562000abd578081fd5b81516001600160a01b0381168114620009f0578182fd5b6000821982111562000af457634e487b7160e01b81526011600452602481fd5b500190565b600181811c9082168062000b0e57607f821691505b6020821081141562000b3057634e487b7160e01b600052602260045260246000fd5b50919050565b60805160601c61330462000b6a600039600081816104f60152818161144f01528181611ede0152611f1901526133046000f3fe6080604052600436106103035760003560e01c80637e0e155c11610190578063b62496f5116100dc578063e7841ec011610095578063f2fde38b1161006f578063f2fde38b14610983578063fd5af42f146109a3578063fd5db2af146109c3578063ff0fd4c0146109e257600080fd5b8063e7841ec01461092e578063e98030c714610943578063f27fd2541461096357600080fd5b8063b62496f514610842578063bab3185f14610872578063c816e4b614610892578063d4698016146108a8578063dd62ed3e146108c8578063e57f14e11461090e57600080fd5b80639c1b8af511610149578063a457c2d711610123578063a457c2d71461077d578063a8b9d2401461079d578063a9059cbb146107bd578063ad56c13c146107dd57600080fd5b80639c1b8af5146107325780639d55d16f14610748578063a26579ad1461076857600080fd5b80637e0e155c14610675578063871c128d146106a55780638da5cb5b146106c557806392ca1e8d146106e857806395d89b41146106fd5780639a7a23d61461071257600080fd5b8063458037701161024f57806353ab431b11610208578063700bb191116101e2578063700bb191146105ea57806370a082311461060a578063715018a6146106405780637ded4d6a1461065557600080fd5b806353ab431b146105a057806364b0f653146105b55780636843cd84146105ca57600080fd5b806345803770146104c457806349bd5a5e146104e45780634ada218b146105185780634e71d92d146105325780634fbee19314610547578063519da73e1461058057600080fd5b80632c1f5216116102bc57806330bb4cff1161029657806330bb4cff1461044d578063313ce5671461046257806339509351146104845780634303443d146104a457600080fd5b80632c1f5216146103f65780632d17f2691461041657806330599fc51461042b57600080fd5b806306fdde031461030f578063095ea7b31461033a5780631694505e1461036a57806318160ddd146103a257806323b872dd146103c15780632a8407b4146103e157600080fd5b3661030a57005b600080fd5b34801561031b57600080fd5b50610324610a02565b6040516103319190612fa7565b60405180910390f35b34801561034657600080fd5b5061035a610355366004612ee7565b610a94565b6040519015158152602001610331565b34801561037657600080fd5b5060065461038a906001600160a01b031681565b6040516001600160a01b039091168152602001610331565b3480156103ae57600080fd5b506002545b604051908152602001610331565b3480156103cd57600080fd5b5061035a6103dc366004612e11565b610aab565b3480156103ed57600080fd5b506103b3610b14565b34801561040257600080fd5b5060075461038a906001600160a01b031681565b34801561042257600080fd5b506103b3600881565b34801561043757600080fd5b5061044b610446366004612f4a565b610b96565b005b34801561045957600080fd5b506103b3610c16565b34801561046e57600080fd5b5060055460405160ff9091168152602001610331565b34801561049057600080fd5b5061035a61049f366004612ee7565b610c5b565b3480156104b057600080fd5b5061044b6104bf366004612da1565b610c91565b3480156104d057600080fd5b5061044b6104df366004612f12565b610e09565b3480156104f057600080fd5b5061038a7f000000000000000000000000000000000000000000000000000000000000000081565b34801561052457600080fd5b50600e5461035a9060ff1681565b34801561053e57600080fd5b5061044b610e57565b34801561055357600080fd5b5061035a610562366004612da1565b6001600160a01b03166000908152600f602052604090205460ff1690565b34801561058c57600080fd5b5061044b61059b366004612f12565b610edb565b3480156105ac57600080fd5b506103b3600681565b3480156105c157600080fd5b506103b3610f1e565b3480156105d657600080fd5b506103b36105e5366004612da1565b610f63565b3480156105f657600080fd5b5061044b610605366004612f4a565b610fe2565b34801561061657600080fd5b506103b3610625366004612da1565b6001600160a01b031660009081526020819052604090205490565b34801561064c57600080fd5b5061044b6110c3565b34801561066157600080fd5b5061044b610670366004612da1565b611143565b34801561068157600080fd5b5061035a610690366004612da1565b60106020526000908152604090205460ff1681565b3480156106b157600080fd5b5061044b6106c0366004612f4a565b61132f565b3480156106d157600080fd5b5060055461010090046001600160a01b031661038a565b3480156106f457600080fd5b506103b36113ff565b34801561070957600080fd5b5061032461140e565b34801561071e57600080fd5b5061044b61072d366004612e51565b61141d565b34801561073e57600080fd5b506103b3600c5481565b34801561075457600080fd5b5061044b610763366004612f4a565b61150f565b34801561077457600080fd5b506103b36115a1565b34801561078957600080fd5b5061035a610798366004612ee7565b6115e6565b3480156107a957600080fd5b506103b36107b8366004612da1565b611635565b3480156107c957600080fd5b5061035a6107d8366004612ee7565b611668565b3480156107e957600080fd5b506107fd6107f8366004612da1565b611675565b604080516001600160a01b0390991689526020890197909752958701949094526060860192909252608085015260a084015260c083015260e082015261010001610331565b34801561084e57600080fd5b5061035a61085d366004612da1565b60116020526000908152604090205460ff1681565b34801561087e57600080fd5b5061035a61088d366004612f12565b61171f565b34801561089e57600080fd5b506103b3600d5481565b3480156108b457600080fd5b5060085461038a906001600160a01b031681565b3480156108d457600080fd5b506103b36108e3366004612dd9565b6001600160a01b03918216600090815260016020908152604080832093909416825291909152205490565b34801561091a57600080fd5b5061044b610929366004612da1565b6117ac565b34801561093a57600080fd5b506103b361187d565b34801561094f57600080fd5b5061044b61095e366004612f4a565b6118c2565b34801561096f57600080fd5b506107fd61097e366004612f4a565b611923565b34801561098f57600080fd5b5061044b61099e366004612da1565b611965565b3480156109af57600080fd5b5061044b6109be366004612f12565b611a61565b3480156109cf57600080fd5b506103b36a084595161401484a00000081565b3480156109ee57600080fd5b5061044b6109fd366004612f12565b611aaf565b606060038054610a11906131cc565b80601f0160208091040260200160405190810160405280929190818152602001828054610a3d906131cc565b8015610a8a5780601f10610a5f57610100808354040283529160200191610a8a565b820191906000526020600020905b815481529060010190602001808311610a6d57829003601f168201915b5050505050905090565b6000610aa1338484611b63565b5060015b92915050565b6000610ab8848484611c88565b610b0a8433610b0585604051806060016040528060288152602001613282602891396001600160a01b038a1660009081526001602090815260408083203384529091529020549190612432565b611b63565b5060019392505050565b6007546040805163079cda8160e51b815290516000926001600160a01b03169163f39b5020916004808301926020929190829003018186803b158015610b5957600080fd5b505afa158015610b6d573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610b919190612f62565b905090565b6005546001600160a01b03610100909104163314610bcf5760405162461bcd60e51b8152600401610bc69061303d565b60405180910390fd5b610bf130610beb6005546001600160a01b036101009091041690565b83611b63565b610c1330610c0d6005546001600160a01b036101009091041690565b83611c88565b50565b600754604080516342d359d760e11b815290516000926001600160a01b0316916385a6b3ae916004808301926020929190829003018186803b158015610b5957600080fd5b3360008181526001602090815260408083206001600160a01b03871684529091528120549091610aa1918590610b059086611afd565b6005546001600160a01b03610100909104163314610cc15760405162461bcd60e51b8152600401610bc69061303d565b737a250d5630b4cf539739df2c5dacb4c659f2488d6001600160a01b0382161415610d3a5760405162461bcd60e51b8152602060048201526024808201527f57652063616e206e6f7420626c61636b6c69737420556e697377617020726f756044820152633a32b91760e11b6064820152608401610bc6565b6001600160a01b03811660009081526009602052604090205460ff1615610da35760405162461bcd60e51b815260206004820152601e60248201527f4163636f756e7420697320616c726561647920626c61636b6c697374656400006044820152606401610bc6565b6001600160a01b03166000818152600960205260408120805460ff19166001908117909155600a805491820181559091527fc65a7bb8d6351c1cf70c95a316cc6a92839c986682d98bc35f958f4883f9d2a80180546001600160a01b0319169091179055565b6005546001600160a01b03610100909104163314610e395760405162461bcd60e51b8152600401610bc69061303d565b60088054911515600160a01b0260ff60a01b19909216919091179055565b60075460405163bc4c4b3760e01b8152336004820152600060248201526001600160a01b039091169063bc4c4b3790604401602060405180830381600087803b158015610ea357600080fd5b505af1158015610eb7573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610c139190612f2e565b6005546001600160a01b03610100909104163314610f0b5760405162461bcd60e51b8152600401610bc69061303d565b600e805460ff1916911515919091179055565b600754604080516304ddf6ef60e11b815290516000926001600160a01b0316916309bbedde916004808301926020929190829003018186803b158015610b5957600080fd5b6007546040516370a0823160e01b81526001600160a01b03838116600483015260009216906370a08231906024015b60206040518083038186803b158015610faa57600080fd5b505afa158015610fbe573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610aa59190612f62565b6007546040516001624d3b8760e01b0319815260048101839052600091829182916001600160a01b03169063ffb2c47990602401606060405180830381600087803b15801561103057600080fd5b505af1158015611044573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906110689190612f7a565b604080518481526020810184905290810182905260608101889052929550909350915032906000907fc864333d6121033635ab41b29ae52f10a22cf4438c3e4f1c4c68518feb2f8a989060800160405180910390a350505050565b6005546001600160a01b036101009091041633146110f35760405162461bcd60e51b8152600401610bc69061303d565b60055460405160009161010090046001600160a01b0316907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0908390a360058054610100600160a81b0319169055565b6005546001600160a01b036101009091041633146111735760405162461bcd60e51b8152600401610bc69061303d565b6001600160a01b03811660009081526009602052604090205460ff166111db5760405162461bcd60e51b815260206004820152601a60248201527f4163636f756e74206973206e6f7420626c61636b6c69737465640000000000006044820152606401610bc6565b60005b600a5481101561132b57816001600160a01b0316600a828154811061121357634e487b7160e01b600052603260045260246000fd5b6000918252602090912001546001600160a01b0316141561131957600a805461123e906001906131b5565b8154811061125c57634e487b7160e01b600052603260045260246000fd5b600091825260209091200154600a80546001600160a01b03909216918390811061129657634e487b7160e01b600052603260045260246000fd5b600091825260208083209190910180546001600160a01b0319166001600160a01b039485161790559184168152600990915260409020805460ff19169055600a8054806112f357634e487b7160e01b600052603160045260246000fd5b600082815260209020810160001990810180546001600160a01b03191690550190555050565b8061132381613207565b9150506111de565b5050565b6005546001600160a01b0361010090910416331461135f5760405162461bcd60e51b8152600401610bc69061303d565b600c548114156113cc5760405162461bcd60e51b815260206004820152603260248201527f585250553a2043616e6e6f742075706461746520676173466f7250726f63657360448201527173696e6720746f2073616d652076616c756560701b6064820152608401610bc6565b600c5460405182907f40d7e40e79af4e8e5a9b3c57030d8ea93f13d669c06d448c4d631d4ae7d23db790600090a3600c55565b61140b6006600861315e565b81565b606060048054610a11906131cc565b6005546001600160a01b0361010090910416331461144d5760405162461bcd60e51b8152600401610bc69061303d565b7f00000000000000000000000000000000000000000000000000000000000000006001600160a01b0316826001600160a01b031614156115055760405162461bcd60e51b815260206004820152604760248201527f585250553a2054686520556e697377617020706169722063616e6e6f7420626560448201527f2072656d6f7665642066726f6d206175746f6d617465644d61726b65744d616b6064820152666572506169727360c81b608482015260a401610bc6565b61132b8282612469565b6005546001600160a01b0361010090910416331461153f5760405162461bcd60e51b8152600401610bc69061303d565b600754604051639d55d16f60e01b8152600481018390526001600160a01b0390911690639d55d16f906024015b600060405180830381600087803b15801561158657600080fd5b505af115801561159a573d6000803e3d6000fd5b5050505050565b60075460408051631bc9e27b60e21b815290516000926001600160a01b031691636f2789ec916004808301926020929190829003018186803b158015610b5957600080fd5b6000610aa13384610b05856040518060600160405280602581526020016132aa602591393360009081526001602090815260408083206001600160a01b038d1684529091529020549190612432565b6007546040516302a2e74960e61b81526001600160a01b038381166004830152600092169063a8b9d24090602401610f92565b6000610aa1338484611c88565b60075460405163fbcbc0f160e01b81526001600160a01b038381166004830152600092839283928392839283928392839291169063fbcbc0f1906024015b6101006040518083038186803b1580156116cc57600080fd5b505afa1580156116e0573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906117049190612e7e565b97509750975097509750975097509750919395975091939597565b6008546000906001600160a01b031633146117885760405162461bcd60e51b8152602060048201526024808201527f4f6e6c792044657620416464726573732063616e2064697361626c65206465766044820152632066656560e01b6064820152608401610bc6565b506008805460ff60a01b1916600160a01b9215158302179081905560ff9190041690565b6005546001600160a01b036101009091041633146117dc5760405162461bcd60e51b8152600401610bc69061303d565b6001600160a01b0381166000908152600f602052604090205460ff16156118595760405162461bcd60e51b815260206004820152602b60248201527f585250553a204163636f756e7420697320616c7265616479206578636c75646560448201526a642066726f6d206665657360a81b6064820152608401610bc6565b6001600160a01b03166000908152600f60205260409020805460ff19166001179055565b6007546040805163039e107b60e61b815290516000926001600160a01b03169163e7841ec0916004808301926020929190829003018186803b158015610b5957600080fd5b6005546001600160a01b036101009091041633146118f25760405162461bcd60e51b8152600401610bc69061303d565b60075460405163e98030c760e01b8152600481018390526001600160a01b039091169063e98030c79060240161156c565b600754604051635183d6fd60e01b81526004810183905260009182918291829182918291829182916001600160a01b0390911690635183d6fd906024016116b3565b6005546001600160a01b036101009091041633146119955760405162461bcd60e51b8152600401610bc69061303d565b6001600160a01b0381166119fa5760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610bc6565b6005546040516001600160a01b0380841692610100900416907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a3600580546001600160a01b0390921661010002610100600160a81b0319909216919091179055565b6005546001600160a01b03610100909104163314611a915760405162461bcd60e51b8152600401610bc69061303d565b600b8054911515600160a01b0260ff60a01b19909216919091179055565b6005546001600160a01b03610100909104163314611adf5760405162461bcd60e51b8152600401610bc69061303d565b60088054911515600160a81b0260ff60a81b19909216919091179055565b600080611b0a838561315e565b905083811015611b5c5760405162461bcd60e51b815260206004820152601b60248201527f536166654d6174683a206164646974696f6e206f766572666c6f7700000000006044820152606401610bc6565b9392505050565b6001600160a01b038316611bc55760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646044820152637265737360e01b6064820152608401610bc6565b6001600160a01b038216611c265760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604482015261737360f01b6064820152608401610bc6565b6001600160a01b0383811660008181526001602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591015b60405180910390a3505050565b6001600160a01b038316611cae5760405162461bcd60e51b8152600401610bc690613072565b6001600160a01b038216611cd45760405162461bcd60e51b8152600401610bc690612ffa565b6001600160a01b03821660009081526009602052604090205460ff1615611d0d5760405162461bcd60e51b8152600401610bc6906130b7565b3360009081526009602052604090205460ff1615611d3d5760405162461bcd60e51b8152600401610bc6906130b7565b6001600160a01b03831660009081526009602052604090205460ff1615611d765760405162461bcd60e51b8152600401610bc6906130b7565b6005546001600160a01b038481166101009092041614801590611dac57506005546001600160a01b038381166101009092041614155b8015611dc15750600b54600160a01b900460ff165b15611e32576a084595161401484a000000811115611e325760405162461bcd60e51b815260206004820152602860248201527f5472616e7366657220616d6f756e74206578636565647320746865206d6178546044820152673c20b6b7bab73a1760c11b6064820152608401610bc6565b600e5460ff1680611edc57600854600160a81b900460ff16611edc576001600160a01b03841660009081526010602052604090205460ff16611edc5760405162461bcd60e51b815260206004820152603e60248201527f585250553a2054686973206163636f756e742063616e6e6f742073656e64207460448201527f6f6b656e7320756e74696c2074726164696e6720697320656e61626c656400006064820152608401610bc6565b7f00000000000000000000000000000000000000000000000000000000000000006001600160a01b0316846001600160a01b03161480611f4d57507f00000000000000000000000000000000000000000000000000000000000000006001600160a01b0316836001600160a01b0316145b8015611f565750805b5081611f6e57611f68848460006125c7565b50505050565b600654600160a01b900460ff16158015611f855750805b8015611fa957506001600160a01b03831660009081526011602052604090205460ff165b8015611fc357506006546001600160a01b03858116911614155b8015611fe857506001600160a01b0383166000908152600f602052604090205460ff16155b1561206e576a084595161401484a00000082111561206e5760405162461bcd60e51b815260206004820152603d60248201527f53656c6c207472616e7366657220616d6f756e7420657863656564732074686560448201527f204d41585f53454c4c5f5452414e53414354494f4e5f414d4f554e542e0000006064820152608401610bc6565b30600090815260208190526040902054600d5481101582801561208e5750805b80156120a35750600854600160a01b900460ff165b80156120b95750600654600160a01b900460ff16155b80156120de57506001600160a01b03861660009081526011602052604090205460ff16155b80156120f857506008546001600160a01b03878116911614155b801561211257506008546001600160a01b03868116911614155b15612181576006805460ff60a01b1916600160a01b17815560009061214d9061213c90600861315e565b6121478560066126d0565b9061274f565b9050612158816127aa565b3060009081526020819052604090205461217181612848565b50506006805460ff60a01b191690555b600083801561219a5750600654600160a01b900460ff16155b6001600160a01b0388166000908152600f602052604090205490915060ff16806121dc57506001600160a01b0386166000908152600f602052604090205460ff165b156121e5575060005b801561222357600061220860646121476122016006600861315e565b89906126d0565b90506122148682612a02565b95506122218830836125c7565b505b61222e8787876125c7565b6007546001600160a01b031663e30443bc8861225f816001600160a01b031660009081526020819052604090205490565b6040516001600160e01b031960e085901b1681526001600160a01b0390921660048301526024820152604401600060405180830381600087803b1580156122a557600080fd5b505af19250505080156122b6575060015b506007546001600160a01b031663e30443bc876122e8816001600160a01b031660009081526020819052604090205490565b6040516001600160e01b031960e085901b1681526001600160a01b0390921660048301526024820152604401600060405180830381600087803b15801561232e57600080fd5b505af192505050801561233f575060015b50600654600160a01b900460ff1661242957600c546007546040516001624d3b8760e01b03198152600481018390526001600160a01b039091169063ffb2c47990602401606060405180830381600087803b15801561239d57600080fd5b505af19250505080156123cd575060408051601f3d908101601f191682019092526123ca91810190612f7a565b60015b6123d657612427565b60408051848152602081018490529081018290526060810185905232906001907fc864333d6121033635ab41b29ae52f10a22cf4438c3e4f1c4c68518feb2f8a989060800160405180910390a35050505b505b50505050505050565b600081848411156124565760405162461bcd60e51b8152600401610bc69190612fa7565b5061246183856131b5565b949350505050565b6001600160a01b03821660009081526011602052604090205460ff16151581151514156124fe5760405162461bcd60e51b815260206004820152603e60248201527f585250553a204175746f6d61746564206d61726b6574206d616b65722070616960448201527f7220697320616c72656164792073657420746f20746861742076616c756500006064820152608401610bc6565b6001600160a01b0382166000908152601160205260409020805460ff1916821580159190911790915561258b5760075460405163031e79db60e41b81526001600160a01b038481166004830152909116906331e79db090602401600060405180830381600087803b15801561257257600080fd5b505af1158015612586573d6000803e3d6000fd5b505050505b604051811515906001600160a01b038416907fffa9187bf1f18bf477bd0ea1bcbb64e93b6a98132473929edfce215cd9b16fab90600090a35050565b6001600160a01b0383166125ed5760405162461bcd60e51b8152600401610bc690613072565b6001600160a01b0382166126135760405162461bcd60e51b8152600401610bc690612ffa565b6126508160405180606001604052806026815260200161325c602691396001600160a01b0386166000908152602081905260409020549190612432565b6001600160a01b03808516600090815260208190526040808220939093559084168152205461267f9082611afd565b6001600160a01b038381166000818152602081815260409182902094909455518481529092918616917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9101611c7b565b6000826126df57506000610aa5565b60006126eb8385613196565b9050826126f88583613176565b14611b5c5760405162461bcd60e51b815260206004820152602160248201527f536166654d6174683a206d756c7469706c69636174696f6e206f766572666c6f6044820152607760f81b6064820152608401610bc6565b60008082116127a05760405162461bcd60e51b815260206004820152601a60248201527f536166654d6174683a206469766973696f6e206279207a65726f0000000000006044820152606401610bc6565b611b5c8284613176565b80476127b582612a5e565b60006127c14783612a02565b6040519091507368f12e2acfe4e362bd6652530616f395a77173f090819083156108fc029084906000818181858888f19350505050158015612807573d6000803e3d6000fd5b5060408051868152602081018490527f98024b0e201aa667dd34d5242eaa5ec55bd223ff5dad2fb1fd9a11e35f86f05f910160405180910390a15050505050565b6128528130612be3565b600b546040516370a0823160e01b81523060048201526000916001600160a01b0316906370a082319060240160206040518083038186803b15801561289657600080fd5b505afa1580156128aa573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906128ce9190612f62565b600b5460075460405163a9059cbb60e01b81526001600160a01b0391821660048201526024810184905292935060009291169063a9059cbb90604401602060405180830381600087803b15801561292457600080fd5b505af1158015612938573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061295c9190612f2e565b905080156129fd57600754604051633243c79160e01b8152600481018490526001600160a01b0390911690633243c79190602401600060405180830381600087803b1580156129aa57600080fd5b505af11580156129be573d6000803e3d6000fd5b505060408051868152602081018690527f5e8c953468549261e19b5df2c0776259d823043f64befbef757760c2800c07ca935001905060405180910390a15b505050565b600082821115612a545760405162461bcd60e51b815260206004820152601e60248201527f536166654d6174683a207375627472616374696f6e206f766572666c6f7700006044820152606401610bc6565b611b5c82846131b5565b6040805160028082526060820183526000926020830190803683370190505090503081600081518110612aa157634e487b7160e01b600052603260045260246000fd5b6001600160a01b03928316602091820292909201810191909152600654604080516315ab88c960e31b81529051919093169263ad5c4648926004808301939192829003018186803b158015612af557600080fd5b505afa158015612b09573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190612b2d9190612dbd565b81600181518110612b4e57634e487b7160e01b600052603260045260246000fd5b6001600160a01b039283166020918202929092010152600654612b749130911684611b63565b60065460405163791ac94760e01b81526001600160a01b039091169063791ac94790612bad9085906000908690309042906004016130ee565b600060405180830381600087803b158015612bc757600080fd5b505af1158015612bdb573d6000803e3d6000fd5b505050505050565b60408051600380825260808201909252600091602082016060803683370190505090503081600081518110612c2857634e487b7160e01b600052603260045260246000fd5b6001600160a01b03928316602091820292909201810191909152600654604080516315ab88c960e31b81529051919093169263ad5c4648926004808301939192829003018186803b158015612c7c57600080fd5b505afa158015612c90573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190612cb49190612dbd565b81600181518110612cd557634e487b7160e01b600052603260045260246000fd5b6001600160a01b039283166020918202929092010152600b54825191169082906002908110612d1457634e487b7160e01b600052603260045260246000fd5b6001600160a01b039283166020918202929092010152600654612d3a9130911685611b63565b600654604051635c11d79560e01b81526001600160a01b0390911690635c11d79590612d739086906000908690889042906004016130ee565b600060405180830381600087803b158015612d8d57600080fd5b505af1158015612429573d6000803e3d6000fd5b600060208284031215612db2578081fd5b8135611b5c81613238565b600060208284031215612dce578081fd5b8151611b5c81613238565b60008060408385031215612deb578081fd5b8235612df681613238565b91506020830135612e0681613238565b809150509250929050565b600080600060608486031215612e25578081fd5b8335612e3081613238565b92506020840135612e4081613238565b929592945050506040919091013590565b60008060408385031215612e63578182fd5b8235612e6e81613238565b91506020830135612e068161324d565b600080600080600080600080610100898b031215612e9a578384fd5b8851612ea581613238565b809850506020890151965060408901519550606089015194506080890151935060a0890151925060c0890151915060e089015190509295985092959890939650565b60008060408385031215612ef9578182fd5b8235612f0481613238565b946020939093013593505050565b600060208284031215612f23578081fd5b8135611b5c8161324d565b600060208284031215612f3f578081fd5b8151611b5c8161324d565b600060208284031215612f5b578081fd5b5035919050565b600060208284031215612f73578081fd5b5051919050565b600080600060608486031215612f8e578283fd5b8351925060208401519150604084015190509250925092565b6000602080835283518082850152825b81811015612fd357858101830151858201604001528201612fb7565b81811115612fe45783604083870101525b50601f01601f1916929092016040019392505050565b60208082526023908201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260408201526265737360e81b606082015260800190565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b60208082526025908201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604082015264647265737360d81b606082015260800190565b60208082526017908201527f596f752068617665206e6f20706f776572206865726521000000000000000000604082015260600190565b600060a082018783526020878185015260a0604085015281875180845260c0860191508289019350845b8181101561313d5784516001600160a01b031683529383019391830191600101613118565b50506001600160a01b03969096166060850152505050608001529392505050565b6000821982111561317157613171613222565b500190565b60008261319157634e487b7160e01b81526012600452602481fd5b500490565b60008160001904831182151516156131b0576131b0613222565b500290565b6000828210156131c7576131c7613222565b500390565b600181811c908216806131e057607f821691505b6020821081141561320157634e487b7160e01b600052602260045260246000fd5b50919050565b600060001982141561321b5761321b613222565b5060010190565b634e487b7160e01b600052601160045260246000fd5b6001600160a01b0381168114610c1357600080fd5b8015158114610c1357600080fdfe45524332303a207472616e7366657220616d6f756e7420657863656564732062616c616e636545524332303a207472616e7366657220616d6f756e74206578636565647320616c6c6f77616e636545524332303a2064656372656173656420616c6c6f77616e63652062656c6f77207a65726fa2646970667358221220847a4d2116b9e3838795317e99af778d03fa2dffea4a29997bdc392a7ea12c1364736f6c6343000804003360a0604052600880546001600160a01b031916732260fac5e5542a773aa44fbcfedf7c193bc2c5991790553480156200003757600080fd5b5060408051808201825260158082527f585250555f4469766964656e645f547261636b6572000000000000000000000060208084018281528551808701909652928552840152815191929183918391620000949160039162000134565b508051620000aa90600490602084019062000134565b50506005805460ff191660121790555050610bb8600c55506000620000cc3390565b600d80546001600160a01b0319166001600160a01b038316908117909155604051919250906000907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0908290a350610e1060155569021e19e0c9bab240000060805262000217565b8280546200014290620001da565b90600052602060002090601f016020900481019282620001665760008555620001b1565b82601f106200018157805160ff1916838001178555620001b1565b82800160010185558215620001b1579182015b82811115620001b157825182559160200191906001019062000194565b50620001bf929150620001c3565b5090565b5b80821115620001bf5760008155600101620001c4565b600181811c90821680620001ef57607f821691505b602082108114156200021157634e487b7160e01b600052602260045260246000fd5b50919050565b6080516123566200023a600039600081816106ba01526110f801526123566000f3fe60806040526004361061023f5760003560e01c80637e3e7fd21161012e578063bc4c4b37116100ab578063e98030c71161006f578063e98030c714610757578063f2fde38b14610777578063f39b502014610797578063fbcbc0f1146107ad578063ffb2c479146107cd57600080fd5b8063bc4c4b3714610688578063be10b614146106a8578063dd62ed3e146106dc578063e30443bc14610722578063e7841ec01461074257600080fd5b80639d55d16f116100f25780639d55d16f146105d2578063a457c2d7146105f2578063a8b9d24014610612578063a9059cbb14610632578063aafd847a1461065257600080fd5b80637e3e7fd21461052c57806385a6b3ae146105695780638da5cb5b1461057f57806391b89fba1461059d57806395d89b41146105bd57600080fd5b8063313ce567116101bc5780635183d6fd116101805780635183d6fd146104515780636a474002146104b65780636f2789ec146104cb57806370a08231146104e1578063715018a61461051757600080fd5b8063313ce5671461039f57806331e79db0146103c15780633243c791146103e157806339509351146104015780634e7b827f1461042157600080fd5b806318160ddd1161020357806318160ddd14610307578063226cfa3d1461031c57806323b872dd1461034957806327ce0147146103695780633009a6091461038957600080fd5b806303c833021461024b57806306fdde0314610255578063095ea7b31461028057806309bbedde146102b05780631582358e146102cf57600080fd5b3661024657005b600080fd5b610253610808565b005b34801561026157600080fd5b5061026a61089b565b60405161027791906120ac565b60405180910390f35b34801561028c57600080fd5b506102a061029b366004611fc8565b61092d565b6040519015158152602001610277565b3480156102bc57600080fd5b50600e545b604051908152602001610277565b3480156102db57600080fd5b506008546102ef906001600160a01b031681565b6040516001600160a01b039091168152602001610277565b34801561031357600080fd5b506002546102c1565b34801561032857600080fd5b506102c1610337366004611f58565b60146020526000908152604090205481565b34801561035557600080fd5b506102a0610364366004612020565b610944565b34801561037557600080fd5b506102c1610384366004611f58565b6109ad565b34801561039557600080fd5b506102c160125481565b3480156103ab57600080fd5b5060055460405160ff9091168152602001610277565b3480156103cd57600080fd5b506102536103dc366004611f58565b610a09565b3480156103ed57600080fd5b506102536103fc366004612094565b610b39565b34801561040d57600080fd5b506102a061041c366004611fc8565b610bba565b34801561042d57600080fd5b506102a061043c366004611f58565b60136020526000908152604090205460ff1681565b34801561045d57600080fd5b5061047161046c366004612094565b610bf0565b604080516001600160a01b0390991689526020890197909752958701949094526060860192909252608085015260a084015260c083015260e082015261010001610277565b3480156104c257600080fd5b50610253610d62565b3480156104d757600080fd5b506102c160155481565b3480156104ed57600080fd5b506102c16104fc366004611f58565b6001600160a01b031660009081526020819052604090205490565b34801561052357600080fd5b50610253610e04565b34801561053857600080fd5b50610253610547366004611f58565b600880546001600160a01b0319166001600160a01b0392909216919091179055565b34801561057557600080fd5b506102c1600b5481565b34801561058b57600080fd5b50600d546001600160a01b03166102ef565b3480156105a957600080fd5b506102c16105b8366004611f58565b610e78565b3480156105c957600080fd5b5061026a610e83565b3480156105de57600080fd5b506102536105ed366004612094565b610e92565b3480156105fe57600080fd5b506102a061060d366004611fc8565b610f71565b34801561061e57600080fd5b506102c161062d366004611f58565b610fc0565b34801561063e57600080fd5b506102a061064d366004611fc8565b610fec565b34801561065e57600080fd5b506102c161066d366004611f58565b6001600160a01b03166000908152600a602052604090205490565b34801561069457600080fd5b506102a06106a3366004611f90565b610ff9565b3480156106b457600080fd5b506102c17f000000000000000000000000000000000000000000000000000000000000000081565b3480156106e857600080fd5b506102c16106f7366004611ff3565b6001600160a01b03918216600090815260016020908152604080832093909416825291909152205490565b34801561072e57600080fd5b5061025361073d366004611fc8565b6110a7565b34801561074e57600080fd5b506012546102c1565b34801561076357600080fd5b50610253610772366004612094565b611233565b34801561078357600080fd5b50610253610792366004611f58565b6113a2565b3480156107a357600080fd5b506102c1600c5481565b3480156107b957600080fd5b506104716107c8366004611f58565b61148d565b3480156107d957600080fd5b506107ed6107e8366004612094565b611605565b60408051938452602084019290925290820152606001610277565b600061081360025490565b1161081d57600080fd5b34156108995761085061082f60025490565b61083d34600160801b61172e565b610847919061218d565b600654906117b4565b60065560405134815233907fa493a9229478c3fcd73f66d2cdeb7f94fd0f341da924d1054236d784541165119060200160405180910390a2600b5461089590346117b4565b600b555b565b6060600380546108aa90612222565b80601f01602080910402602001604051908101604052809291908181526020018280546108d690612222565b80156109235780601f106108f857610100808354040283529160200191610923565b820191906000526020600020905b81548152906001019060200180831161090657829003601f168201915b5050505050905090565b600061093a338484611813565b5060015b92915050565b6000610951848484611937565b6109a3843361099e856040518060600160405280602881526020016122d4602891396001600160a01b038a1660009081526001602090815260408083203384529091529020549190611993565b611813565b5060019392505050565b6001600160a01b03811660009081526009602090815260408083205491839052822054600654600160801b926109ff926109fa926109f4916109ef919061172e565b6119ca565b906119da565b611a18565b61093e919061218d565b600d546001600160a01b03163314610a3c5760405162461bcd60e51b8152600401610a33906120ff565b60405180910390fd5b6001600160a01b03811660009081526013602052604090205460ff1615610a6257600080fd5b6001600160a01b0381166000908152601360205260408120805460ff19166001179055610a90908290611a2b565b60405163131836e760e21b8152600e60048201526001600160a01b038216602482015273b089c8a62fe5881d63f9b4108fab7d105c996c6b90634c60db9c9060440160006040518083038186803b158015610aea57600080fd5b505af4158015610afe573d6000803e3d6000fd5b50506040516001600160a01b03841692507fa878b31040b2e6d0a9a3d3361209db3908ba62014b0dca52adbaee451d128b259150600090a250565b6000610b4460025490565b11610b4e57600080fd5b8015610bb757610b6e610b6060025490565b61083d83600160801b61172e565b60065560405181815233907fa493a9229478c3fcd73f66d2cdeb7f94fd0f341da924d1054236d784541165119060200160405180910390a2600b54610bb390826117b4565b600b555b50565b3360008181526001602090815260408083206001600160a01b0387168452909152812054909161093a91859061099e90866117b4565b600080600080600080600080600e73b089c8a62fe5881d63f9b4108fab7d105c996c6b63deb3d89690916040518263ffffffff1660e01b8152600401610c3891815260200190565b60206040518083038186803b158015610c5057600080fd5b505af4158015610c64573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610c88919061207c565b8910610cad575060009650600019955085945086935083925082915081905080610d57565b6040516368d54f3f60e11b8152600e6004820152602481018a905260009073b089c8a62fe5881d63f9b4108fab7d105c996c6b9063d1aa9e7e9060440160206040518083038186803b158015610d0257600080fd5b505af4158015610d16573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610d3a9190611f74565b9050610d458161148d565b98509850985098509850985098509850505b919395975091939597565b60405162461bcd60e51b815260206004820152606560248201527f585250555f4469766964656e645f547261636b65723a2077697468647261774460448201527f69766964656e642064697361626c65642e20557365207468652027636c61696d60648201527f272066756e6374696f6e206f6e20746865206d61696e205852505520636f6e746084820152643930b1ba1760d91b60a482015260c401610a33565b600d546001600160a01b03163314610e2e5760405162461bcd60e51b8152600401610a33906120ff565b600d546040516000916001600160a01b0316907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0908390a3600d80546001600160a01b0319169055565b600061093e82610fc0565b6060600480546108aa90612222565b600d546001600160a01b03163314610ebc5760405162461bcd60e51b8152600401610a33906120ff565b600c54811415610f3e5760405162461bcd60e51b815260206004820152604160248201527f585250555f4469766964656e645f547261636b65723a2043616e6e6f7420757060448201527f6461746520676173466f725472616e7366657220746f2073616d652076616c756064820152606560f81b608482015260a401610a33565b600c5460405182907f5e2963a3d7c88b344b101641f89a2f7da9734fc777ed11ad0097b2775a9e9d1790600090a3600c55565b600061093a338461099e856040518060600160405280602581526020016122fc602591393360009081526001602090815260408083206001600160a01b038d1684529091529020549190611993565b6001600160a01b0381166000908152600a602052604081205461093e90610fe6846109ad565b90611a8a565b600061093a338484611937565b600d546000906001600160a01b031633146110265760405162461bcd60e51b8152600401610a33906120ff565b600061103184611ae6565b9050801561109d576001600160a01b038416600081815260146020526040908190204290555184151591907fa2c38e2d2fb7e3e1912d937fd1ca11ed6d51864dee4cfa7a7bf02becd7acf0929061108b9085815260200190565b60405180910390a3600191505061093e565b5060009392505050565b600d546001600160a01b031633146110d15760405162461bcd60e51b8152600401610a33906120ff565b6001600160a01b03821660009081526013602052604090205460ff16156110f6575050565b7f000000000000000000000000000000000000000000000000000000000000000081106111a5576111278282611a2b565b604051632f0ad01760e21b8152600e60048201526001600160a01b03831660248201526044810182905273b089c8a62fe5881d63f9b4108fab7d105c996c6b9063bc2b405c9060640160006040518083038186803b15801561118857600080fd5b505af415801561119c573d6000803e3d6000fd5b50505050611223565b6111b0826000611a2b565b60405163131836e760e21b8152600e60048201526001600160a01b038316602482015273b089c8a62fe5881d63f9b4108fab7d105c996c6b90634c60db9c9060440160006040518083038186803b15801561120a57600080fd5b505af415801561121e573d6000803e3d6000fd5b505050505b61122e826001610ff9565b505050565b600d546001600160a01b0316331461125d5760405162461bcd60e51b8152600401610a33906120ff565b61070881101580156112725750620151808111155b6112f75760405162461bcd60e51b815260206004820152604a60248201527f585250555f4469766964656e645f547261636b65723a20636c61696d5761697460448201527f206d757374206265207570646174656420746f206265747765656e203120616e6064820152696420323420686f75727360b01b608482015260a401610a33565b60155481141561136f5760405162461bcd60e51b815260206004820152603c60248201527f585250555f4469766964656e645f547261636b65723a2043616e6e6f7420757060448201527f6461746520636c61696d5761697420746f2073616d652076616c7565000000006064820152608401610a33565b60155460405182907f474ea64804364a1e29a4487ddb63c3342a2dd826ccd8acf48825e680a0e6f20f90600090a3601555565b600d546001600160a01b031633146113cc5760405162461bcd60e51b8152600401610a33906120ff565b6001600160a01b0381166114315760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610a33565b600d546040516001600160a01b038084169216907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a3600d80546001600160a01b0319166001600160a01b0392909216919091179055565b6040516317e142d160e01b8152600e60048201526001600160a01b0382166024820152819060009081908190819081908190819073b089c8a62fe5881d63f9b4108fab7d105c996c6b906317e142d19060440160206040518083038186803b1580156114f857600080fd5b505af415801561150c573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611530919061207c565b96506000199550600087126115925760125487111561155e57601254611557908890611c5a565b9550611592565b601254600e5460009110611573576000611582565b601254600e5461158291611a8a565b905061158e88826119da565b9650505b61159b88610fc0565b94506115a6886109ad565b6001600160a01b0389166000908152601460205260409020549094509250826115d05760006115de565b6015546115de9084906117b4565b91504282116115ee5760006115f8565b6115f88242611a8a565b9050919395975091939597565b600e54600090819081908061162557505060125460009250829150611727565b6012546000805a90506000805b898410801561164057508582105b15611716578461164f8161225d565b600e549096508610905061166257600094505b6000600e600001868154811061168857634e487b7160e01b600052603260045260246000fd5b60009182526020808320909101546001600160a01b031680835260149091526040909120549091506116b990611ca6565b156116dc576116c9816001610ff9565b156116dc57816116d88161225d565b9250505b826116e68161225d565b93505060005a90508085111561170d5761170a6117038683611a8a565b87906117b4565b95505b93506116329050565b601285905590975095509193505050505b9193909250565b60008261173d5750600061093e565b600061174983856121ad565b905082611756858361218d565b146117ad5760405162461bcd60e51b815260206004820152602160248201527f536166654d6174683a206d756c7469706c69636174696f6e206f766572666c6f6044820152607760f81b6064820152608401610a33565b9392505050565b6000806117c18385612175565b9050838110156117ad5760405162461bcd60e51b815260206004820152601b60248201527f536166654d6174683a206164646974696f6e206f766572666c6f7700000000006044820152606401610a33565b6001600160a01b0383166118755760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646044820152637265737360e01b6064820152608401610a33565b6001600160a01b0382166118d65760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604482015261737360f01b6064820152608401610a33565b6001600160a01b0383811660008181526001602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925910160405180910390a3505050565b60405162461bcd60e51b815260206004820152602b60248201527f585250555f4469766964656e645f547261636b65723a204e6f207472616e736660448201526a195c9cc8185b1b1bddd95960aa1b6064820152608401610a33565b600081848411156119b75760405162461bcd60e51b8152600401610a3391906120ac565b506119c2838561220b565b949350505050565b6000818181121561093e57600080fd5b6000806119e78385612134565b9050600083121580156119fa5750838112155b80611a0f5750600083128015611a0f57508381125b6117ad57600080fd5b600080821215611a2757600080fd5b5090565b6001600160a01b03821660009081526020819052604090205480821115611a6a576000611a588383611a8a565b9050611a648482611ccd565b50505050565b8082101561122e576000611a7e8284611a8a565b9050611a648482611d31565b600082821115611adc5760405162461bcd60e51b815260206004820152601e60248201527f536166654d6174683a207375627472616374696f6e206f766572666c6f7700006044820152606401610a33565b6117ad828461220b565b600080611af283610fc0565b90508015611c51576001600160a01b0383166000908152600a6020526040902054611b1d90826117b4565b6001600160a01b0384166000818152600a6020526040908190209290925590517fee503bee2bb6a87e57bc57db795f98137327401a0e7b7ce42e37926cc1a9ca4d90611b6c9084815260200190565b60405180910390a260085460405163a9059cbb60e01b81526001600160a01b03858116600483015260248201849052600092169063a9059cbb90604401602060405180830381600087803b158015611bc357600080fd5b505af1158015611bd7573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611bfb9190612060565b905080611c4a576001600160a01b0384166000908152600a6020526040902054611c259083611a8a565b6001600160a01b039094166000908152600a6020526040812094909455509192915050565b5092915050565b50600092915050565b6000808212158015611c75575082611c7283826121cc565b13155b80611c935750600082128015611c93575082611c9183826121cc565b135b611c9c57600080fd5b6117ad82846121cc565b600042821115611cb857506000919050565b601554611cc54284611a8a565b101592915050565b611cd78282611d75565b611d11611cf26109ef8360065461172e90919063ffffffff16565b6001600160a01b03841660009081526009602052604090205490611c5a565b6001600160a01b0390921660009081526009602052604090209190915550565b611d3b8282611e54565b611d11611d566109ef8360065461172e90919063ffffffff16565b6001600160a01b038416600090815260096020526040902054906119da565b6001600160a01b038216611dcb5760405162461bcd60e51b815260206004820152601f60248201527f45524332303a206d696e7420746f20746865207a65726f2061646472657373006044820152606401610a33565b600254611dd890826117b4565b6002556001600160a01b038216600090815260208190526040902054611dfe90826117b4565b6001600160a01b038316600081815260208181526040808320949094559251848152919290917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef91015b60405180910390a35050565b6001600160a01b038216611eb45760405162461bcd60e51b815260206004820152602160248201527f45524332303a206275726e2066726f6d20746865207a65726f206164647265736044820152607360f81b6064820152608401610a33565b611ef1816040518060600160405280602281526020016122b2602291396001600160a01b0385166000908152602081905260409020549190611993565b6001600160a01b038316600090815260208190526040902055600254611f179082611a8a565b6002556040518181526000906001600160a01b038416907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef90602001611e48565b600060208284031215611f69578081fd5b81356117ad8161228e565b600060208284031215611f85578081fd5b81516117ad8161228e565b60008060408385031215611fa2578081fd5b8235611fad8161228e565b91506020830135611fbd816122a3565b809150509250929050565b60008060408385031215611fda578182fd5b8235611fe58161228e565b946020939093013593505050565b60008060408385031215612005578182fd5b82356120108161228e565b91506020830135611fbd8161228e565b600080600060608486031215612034578081fd5b833561203f8161228e565b9250602084013561204f8161228e565b929592945050506040919091013590565b600060208284031215612071578081fd5b81516117ad816122a3565b60006020828403121561208d578081fd5b5051919050565b6000602082840312156120a5578081fd5b5035919050565b6000602080835283518082850152825b818110156120d8578581018301518582016040015282016120bc565b818111156120e95783604083870101525b50601f01601f1916929092016040019392505050565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b600080821280156001600160ff1b038490038513161561215657612156612278565b600160ff1b839003841281161561216f5761216f612278565b50500190565b6000821982111561218857612188612278565b500190565b6000826121a857634e487b7160e01b81526012600452602481fd5b500490565b60008160001904831182151516156121c7576121c7612278565b500290565b60008083128015600160ff1b8501841216156121ea576121ea612278565b6001600160ff1b038401831381161561220557612205612278565b50500390565b60008282101561221d5761221d612278565b500390565b600181811c9082168061223657607f821691505b6020821081141561225757634e487b7160e01b600052602260045260246000fd5b50919050565b600060001982141561227157612271612278565b5060010190565b634e487b7160e01b600052601160045260246000fd5b6001600160a01b0381168114610bb757600080fd5b8015158114610bb757600080fdfe45524332303a206275726e20616d6f756e7420657863656564732062616c616e636545524332303a207472616e7366657220616d6f756e74206578636565647320616c6c6f77616e636545524332303a2064656372656173656420616c6c6f77616e63652062656c6f77207a65726fa2646970667358221220a24c0c301b481abdddf122d4fe88ca2c34d886eb6b05392db3ae15a21bc35d2b64736f6c63430008040033

Deployed Bytecode

0x6080604052600436106103035760003560e01c80637e0e155c11610190578063b62496f5116100dc578063e7841ec011610095578063f2fde38b1161006f578063f2fde38b14610983578063fd5af42f146109a3578063fd5db2af146109c3578063ff0fd4c0146109e257600080fd5b8063e7841ec01461092e578063e98030c714610943578063f27fd2541461096357600080fd5b8063b62496f514610842578063bab3185f14610872578063c816e4b614610892578063d4698016146108a8578063dd62ed3e146108c8578063e57f14e11461090e57600080fd5b80639c1b8af511610149578063a457c2d711610123578063a457c2d71461077d578063a8b9d2401461079d578063a9059cbb146107bd578063ad56c13c146107dd57600080fd5b80639c1b8af5146107325780639d55d16f14610748578063a26579ad1461076857600080fd5b80637e0e155c14610675578063871c128d146106a55780638da5cb5b146106c557806392ca1e8d146106e857806395d89b41146106fd5780639a7a23d61461071257600080fd5b8063458037701161024f57806353ab431b11610208578063700bb191116101e2578063700bb191146105ea57806370a082311461060a578063715018a6146106405780637ded4d6a1461065557600080fd5b806353ab431b146105a057806364b0f653146105b55780636843cd84146105ca57600080fd5b806345803770146104c457806349bd5a5e146104e45780634ada218b146105185780634e71d92d146105325780634fbee19314610547578063519da73e1461058057600080fd5b80632c1f5216116102bc57806330bb4cff1161029657806330bb4cff1461044d578063313ce5671461046257806339509351146104845780634303443d146104a457600080fd5b80632c1f5216146103f65780632d17f2691461041657806330599fc51461042b57600080fd5b806306fdde031461030f578063095ea7b31461033a5780631694505e1461036a57806318160ddd146103a257806323b872dd146103c15780632a8407b4146103e157600080fd5b3661030a57005b600080fd5b34801561031b57600080fd5b50610324610a02565b6040516103319190612fa7565b60405180910390f35b34801561034657600080fd5b5061035a610355366004612ee7565b610a94565b6040519015158152602001610331565b34801561037657600080fd5b5060065461038a906001600160a01b031681565b6040516001600160a01b039091168152602001610331565b3480156103ae57600080fd5b506002545b604051908152602001610331565b3480156103cd57600080fd5b5061035a6103dc366004612e11565b610aab565b3480156103ed57600080fd5b506103b3610b14565b34801561040257600080fd5b5060075461038a906001600160a01b031681565b34801561042257600080fd5b506103b3600881565b34801561043757600080fd5b5061044b610446366004612f4a565b610b96565b005b34801561045957600080fd5b506103b3610c16565b34801561046e57600080fd5b5060055460405160ff9091168152602001610331565b34801561049057600080fd5b5061035a61049f366004612ee7565b610c5b565b3480156104b057600080fd5b5061044b6104bf366004612da1565b610c91565b3480156104d057600080fd5b5061044b6104df366004612f12565b610e09565b3480156104f057600080fd5b5061038a7f000000000000000000000000e041e9ba36c29829d87d483e1109603bb1d0d61281565b34801561052457600080fd5b50600e5461035a9060ff1681565b34801561053e57600080fd5b5061044b610e57565b34801561055357600080fd5b5061035a610562366004612da1565b6001600160a01b03166000908152600f602052604090205460ff1690565b34801561058c57600080fd5b5061044b61059b366004612f12565b610edb565b3480156105ac57600080fd5b506103b3600681565b3480156105c157600080fd5b506103b3610f1e565b3480156105d657600080fd5b506103b36105e5366004612da1565b610f63565b3480156105f657600080fd5b5061044b610605366004612f4a565b610fe2565b34801561061657600080fd5b506103b3610625366004612da1565b6001600160a01b031660009081526020819052604090205490565b34801561064c57600080fd5b5061044b6110c3565b34801561066157600080fd5b5061044b610670366004612da1565b611143565b34801561068157600080fd5b5061035a610690366004612da1565b60106020526000908152604090205460ff1681565b3480156106b157600080fd5b5061044b6106c0366004612f4a565b61132f565b3480156106d157600080fd5b5060055461010090046001600160a01b031661038a565b3480156106f457600080fd5b506103b36113ff565b34801561070957600080fd5b5061032461140e565b34801561071e57600080fd5b5061044b61072d366004612e51565b61141d565b34801561073e57600080fd5b506103b3600c5481565b34801561075457600080fd5b5061044b610763366004612f4a565b61150f565b34801561077457600080fd5b506103b36115a1565b34801561078957600080fd5b5061035a610798366004612ee7565b6115e6565b3480156107a957600080fd5b506103b36107b8366004612da1565b611635565b3480156107c957600080fd5b5061035a6107d8366004612ee7565b611668565b3480156107e957600080fd5b506107fd6107f8366004612da1565b611675565b604080516001600160a01b0390991689526020890197909752958701949094526060860192909252608085015260a084015260c083015260e082015261010001610331565b34801561084e57600080fd5b5061035a61085d366004612da1565b60116020526000908152604090205460ff1681565b34801561087e57600080fd5b5061035a61088d366004612f12565b61171f565b34801561089e57600080fd5b506103b3600d5481565b3480156108b457600080fd5b5060085461038a906001600160a01b031681565b3480156108d457600080fd5b506103b36108e3366004612dd9565b6001600160a01b03918216600090815260016020908152604080832093909416825291909152205490565b34801561091a57600080fd5b5061044b610929366004612da1565b6117ac565b34801561093a57600080fd5b506103b361187d565b34801561094f57600080fd5b5061044b61095e366004612f4a565b6118c2565b34801561096f57600080fd5b506107fd61097e366004612f4a565b611923565b34801561098f57600080fd5b5061044b61099e366004612da1565b611965565b3480156109af57600080fd5b5061044b6109be366004612f12565b611a61565b3480156109cf57600080fd5b506103b36a084595161401484a00000081565b3480156109ee57600080fd5b5061044b6109fd366004612f12565b611aaf565b606060038054610a11906131cc565b80601f0160208091040260200160405190810160405280929190818152602001828054610a3d906131cc565b8015610a8a5780601f10610a5f57610100808354040283529160200191610a8a565b820191906000526020600020905b815481529060010190602001808311610a6d57829003601f168201915b5050505050905090565b6000610aa1338484611b63565b5060015b92915050565b6000610ab8848484611c88565b610b0a8433610b0585604051806060016040528060288152602001613282602891396001600160a01b038a1660009081526001602090815260408083203384529091529020549190612432565b611b63565b5060019392505050565b6007546040805163079cda8160e51b815290516000926001600160a01b03169163f39b5020916004808301926020929190829003018186803b158015610b5957600080fd5b505afa158015610b6d573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610b919190612f62565b905090565b6005546001600160a01b03610100909104163314610bcf5760405162461bcd60e51b8152600401610bc69061303d565b60405180910390fd5b610bf130610beb6005546001600160a01b036101009091041690565b83611b63565b610c1330610c0d6005546001600160a01b036101009091041690565b83611c88565b50565b600754604080516342d359d760e11b815290516000926001600160a01b0316916385a6b3ae916004808301926020929190829003018186803b158015610b5957600080fd5b3360008181526001602090815260408083206001600160a01b03871684529091528120549091610aa1918590610b059086611afd565b6005546001600160a01b03610100909104163314610cc15760405162461bcd60e51b8152600401610bc69061303d565b737a250d5630b4cf539739df2c5dacb4c659f2488d6001600160a01b0382161415610d3a5760405162461bcd60e51b8152602060048201526024808201527f57652063616e206e6f7420626c61636b6c69737420556e697377617020726f756044820152633a32b91760e11b6064820152608401610bc6565b6001600160a01b03811660009081526009602052604090205460ff1615610da35760405162461bcd60e51b815260206004820152601e60248201527f4163636f756e7420697320616c726561647920626c61636b6c697374656400006044820152606401610bc6565b6001600160a01b03166000818152600960205260408120805460ff19166001908117909155600a805491820181559091527fc65a7bb8d6351c1cf70c95a316cc6a92839c986682d98bc35f958f4883f9d2a80180546001600160a01b0319169091179055565b6005546001600160a01b03610100909104163314610e395760405162461bcd60e51b8152600401610bc69061303d565b60088054911515600160a01b0260ff60a01b19909216919091179055565b60075460405163bc4c4b3760e01b8152336004820152600060248201526001600160a01b039091169063bc4c4b3790604401602060405180830381600087803b158015610ea357600080fd5b505af1158015610eb7573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610c139190612f2e565b6005546001600160a01b03610100909104163314610f0b5760405162461bcd60e51b8152600401610bc69061303d565b600e805460ff1916911515919091179055565b600754604080516304ddf6ef60e11b815290516000926001600160a01b0316916309bbedde916004808301926020929190829003018186803b158015610b5957600080fd5b6007546040516370a0823160e01b81526001600160a01b03838116600483015260009216906370a08231906024015b60206040518083038186803b158015610faa57600080fd5b505afa158015610fbe573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610aa59190612f62565b6007546040516001624d3b8760e01b0319815260048101839052600091829182916001600160a01b03169063ffb2c47990602401606060405180830381600087803b15801561103057600080fd5b505af1158015611044573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906110689190612f7a565b604080518481526020810184905290810182905260608101889052929550909350915032906000907fc864333d6121033635ab41b29ae52f10a22cf4438c3e4f1c4c68518feb2f8a989060800160405180910390a350505050565b6005546001600160a01b036101009091041633146110f35760405162461bcd60e51b8152600401610bc69061303d565b60055460405160009161010090046001600160a01b0316907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0908390a360058054610100600160a81b0319169055565b6005546001600160a01b036101009091041633146111735760405162461bcd60e51b8152600401610bc69061303d565b6001600160a01b03811660009081526009602052604090205460ff166111db5760405162461bcd60e51b815260206004820152601a60248201527f4163636f756e74206973206e6f7420626c61636b6c69737465640000000000006044820152606401610bc6565b60005b600a5481101561132b57816001600160a01b0316600a828154811061121357634e487b7160e01b600052603260045260246000fd5b6000918252602090912001546001600160a01b0316141561131957600a805461123e906001906131b5565b8154811061125c57634e487b7160e01b600052603260045260246000fd5b600091825260209091200154600a80546001600160a01b03909216918390811061129657634e487b7160e01b600052603260045260246000fd5b600091825260208083209190910180546001600160a01b0319166001600160a01b039485161790559184168152600990915260409020805460ff19169055600a8054806112f357634e487b7160e01b600052603160045260246000fd5b600082815260209020810160001990810180546001600160a01b03191690550190555050565b8061132381613207565b9150506111de565b5050565b6005546001600160a01b0361010090910416331461135f5760405162461bcd60e51b8152600401610bc69061303d565b600c548114156113cc5760405162461bcd60e51b815260206004820152603260248201527f585250553a2043616e6e6f742075706461746520676173466f7250726f63657360448201527173696e6720746f2073616d652076616c756560701b6064820152608401610bc6565b600c5460405182907f40d7e40e79af4e8e5a9b3c57030d8ea93f13d669c06d448c4d631d4ae7d23db790600090a3600c55565b61140b6006600861315e565b81565b606060048054610a11906131cc565b6005546001600160a01b0361010090910416331461144d5760405162461bcd60e51b8152600401610bc69061303d565b7f000000000000000000000000e041e9ba36c29829d87d483e1109603bb1d0d6126001600160a01b0316826001600160a01b031614156115055760405162461bcd60e51b815260206004820152604760248201527f585250553a2054686520556e697377617020706169722063616e6e6f7420626560448201527f2072656d6f7665642066726f6d206175746f6d617465644d61726b65744d616b6064820152666572506169727360c81b608482015260a401610bc6565b61132b8282612469565b6005546001600160a01b0361010090910416331461153f5760405162461bcd60e51b8152600401610bc69061303d565b600754604051639d55d16f60e01b8152600481018390526001600160a01b0390911690639d55d16f906024015b600060405180830381600087803b15801561158657600080fd5b505af115801561159a573d6000803e3d6000fd5b5050505050565b60075460408051631bc9e27b60e21b815290516000926001600160a01b031691636f2789ec916004808301926020929190829003018186803b158015610b5957600080fd5b6000610aa13384610b05856040518060600160405280602581526020016132aa602591393360009081526001602090815260408083206001600160a01b038d1684529091529020549190612432565b6007546040516302a2e74960e61b81526001600160a01b038381166004830152600092169063a8b9d24090602401610f92565b6000610aa1338484611c88565b60075460405163fbcbc0f160e01b81526001600160a01b038381166004830152600092839283928392839283928392839291169063fbcbc0f1906024015b6101006040518083038186803b1580156116cc57600080fd5b505afa1580156116e0573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906117049190612e7e565b97509750975097509750975097509750919395975091939597565b6008546000906001600160a01b031633146117885760405162461bcd60e51b8152602060048201526024808201527f4f6e6c792044657620416464726573732063616e2064697361626c65206465766044820152632066656560e01b6064820152608401610bc6565b506008805460ff60a01b1916600160a01b9215158302179081905560ff9190041690565b6005546001600160a01b036101009091041633146117dc5760405162461bcd60e51b8152600401610bc69061303d565b6001600160a01b0381166000908152600f602052604090205460ff16156118595760405162461bcd60e51b815260206004820152602b60248201527f585250553a204163636f756e7420697320616c7265616479206578636c75646560448201526a642066726f6d206665657360a81b6064820152608401610bc6565b6001600160a01b03166000908152600f60205260409020805460ff19166001179055565b6007546040805163039e107b60e61b815290516000926001600160a01b03169163e7841ec0916004808301926020929190829003018186803b158015610b5957600080fd5b6005546001600160a01b036101009091041633146118f25760405162461bcd60e51b8152600401610bc69061303d565b60075460405163e98030c760e01b8152600481018390526001600160a01b039091169063e98030c79060240161156c565b600754604051635183d6fd60e01b81526004810183905260009182918291829182918291829182916001600160a01b0390911690635183d6fd906024016116b3565b6005546001600160a01b036101009091041633146119955760405162461bcd60e51b8152600401610bc69061303d565b6001600160a01b0381166119fa5760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610bc6565b6005546040516001600160a01b0380841692610100900416907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a3600580546001600160a01b0390921661010002610100600160a81b0319909216919091179055565b6005546001600160a01b03610100909104163314611a915760405162461bcd60e51b8152600401610bc69061303d565b600b8054911515600160a01b0260ff60a01b19909216919091179055565b6005546001600160a01b03610100909104163314611adf5760405162461bcd60e51b8152600401610bc69061303d565b60088054911515600160a81b0260ff60a81b19909216919091179055565b600080611b0a838561315e565b905083811015611b5c5760405162461bcd60e51b815260206004820152601b60248201527f536166654d6174683a206164646974696f6e206f766572666c6f7700000000006044820152606401610bc6565b9392505050565b6001600160a01b038316611bc55760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646044820152637265737360e01b6064820152608401610bc6565b6001600160a01b038216611c265760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604482015261737360f01b6064820152608401610bc6565b6001600160a01b0383811660008181526001602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591015b60405180910390a3505050565b6001600160a01b038316611cae5760405162461bcd60e51b8152600401610bc690613072565b6001600160a01b038216611cd45760405162461bcd60e51b8152600401610bc690612ffa565b6001600160a01b03821660009081526009602052604090205460ff1615611d0d5760405162461bcd60e51b8152600401610bc6906130b7565b3360009081526009602052604090205460ff1615611d3d5760405162461bcd60e51b8152600401610bc6906130b7565b6001600160a01b03831660009081526009602052604090205460ff1615611d765760405162461bcd60e51b8152600401610bc6906130b7565b6005546001600160a01b038481166101009092041614801590611dac57506005546001600160a01b038381166101009092041614155b8015611dc15750600b54600160a01b900460ff165b15611e32576a084595161401484a000000811115611e325760405162461bcd60e51b815260206004820152602860248201527f5472616e7366657220616d6f756e74206578636565647320746865206d6178546044820152673c20b6b7bab73a1760c11b6064820152608401610bc6565b600e5460ff1680611edc57600854600160a81b900460ff16611edc576001600160a01b03841660009081526010602052604090205460ff16611edc5760405162461bcd60e51b815260206004820152603e60248201527f585250553a2054686973206163636f756e742063616e6e6f742073656e64207460448201527f6f6b656e7320756e74696c2074726164696e6720697320656e61626c656400006064820152608401610bc6565b7f000000000000000000000000e041e9ba36c29829d87d483e1109603bb1d0d6126001600160a01b0316846001600160a01b03161480611f4d57507f000000000000000000000000e041e9ba36c29829d87d483e1109603bb1d0d6126001600160a01b0316836001600160a01b0316145b8015611f565750805b5081611f6e57611f68848460006125c7565b50505050565b600654600160a01b900460ff16158015611f855750805b8015611fa957506001600160a01b03831660009081526011602052604090205460ff165b8015611fc357506006546001600160a01b03858116911614155b8015611fe857506001600160a01b0383166000908152600f602052604090205460ff16155b1561206e576a084595161401484a00000082111561206e5760405162461bcd60e51b815260206004820152603d60248201527f53656c6c207472616e7366657220616d6f756e7420657863656564732074686560448201527f204d41585f53454c4c5f5452414e53414354494f4e5f414d4f554e542e0000006064820152608401610bc6565b30600090815260208190526040902054600d5481101582801561208e5750805b80156120a35750600854600160a01b900460ff165b80156120b95750600654600160a01b900460ff16155b80156120de57506001600160a01b03861660009081526011602052604090205460ff16155b80156120f857506008546001600160a01b03878116911614155b801561211257506008546001600160a01b03868116911614155b15612181576006805460ff60a01b1916600160a01b17815560009061214d9061213c90600861315e565b6121478560066126d0565b9061274f565b9050612158816127aa565b3060009081526020819052604090205461217181612848565b50506006805460ff60a01b191690555b600083801561219a5750600654600160a01b900460ff16155b6001600160a01b0388166000908152600f602052604090205490915060ff16806121dc57506001600160a01b0386166000908152600f602052604090205460ff165b156121e5575060005b801561222357600061220860646121476122016006600861315e565b89906126d0565b90506122148682612a02565b95506122218830836125c7565b505b61222e8787876125c7565b6007546001600160a01b031663e30443bc8861225f816001600160a01b031660009081526020819052604090205490565b6040516001600160e01b031960e085901b1681526001600160a01b0390921660048301526024820152604401600060405180830381600087803b1580156122a557600080fd5b505af19250505080156122b6575060015b506007546001600160a01b031663e30443bc876122e8816001600160a01b031660009081526020819052604090205490565b6040516001600160e01b031960e085901b1681526001600160a01b0390921660048301526024820152604401600060405180830381600087803b15801561232e57600080fd5b505af192505050801561233f575060015b50600654600160a01b900460ff1661242957600c546007546040516001624d3b8760e01b03198152600481018390526001600160a01b039091169063ffb2c47990602401606060405180830381600087803b15801561239d57600080fd5b505af19250505080156123cd575060408051601f3d908101601f191682019092526123ca91810190612f7a565b60015b6123d657612427565b60408051848152602081018490529081018290526060810185905232906001907fc864333d6121033635ab41b29ae52f10a22cf4438c3e4f1c4c68518feb2f8a989060800160405180910390a35050505b505b50505050505050565b600081848411156124565760405162461bcd60e51b8152600401610bc69190612fa7565b5061246183856131b5565b949350505050565b6001600160a01b03821660009081526011602052604090205460ff16151581151514156124fe5760405162461bcd60e51b815260206004820152603e60248201527f585250553a204175746f6d61746564206d61726b6574206d616b65722070616960448201527f7220697320616c72656164792073657420746f20746861742076616c756500006064820152608401610bc6565b6001600160a01b0382166000908152601160205260409020805460ff1916821580159190911790915561258b5760075460405163031e79db60e41b81526001600160a01b038481166004830152909116906331e79db090602401600060405180830381600087803b15801561257257600080fd5b505af1158015612586573d6000803e3d6000fd5b505050505b604051811515906001600160a01b038416907fffa9187bf1f18bf477bd0ea1bcbb64e93b6a98132473929edfce215cd9b16fab90600090a35050565b6001600160a01b0383166125ed5760405162461bcd60e51b8152600401610bc690613072565b6001600160a01b0382166126135760405162461bcd60e51b8152600401610bc690612ffa565b6126508160405180606001604052806026815260200161325c602691396001600160a01b0386166000908152602081905260409020549190612432565b6001600160a01b03808516600090815260208190526040808220939093559084168152205461267f9082611afd565b6001600160a01b038381166000818152602081815260409182902094909455518481529092918616917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9101611c7b565b6000826126df57506000610aa5565b60006126eb8385613196565b9050826126f88583613176565b14611b5c5760405162461bcd60e51b815260206004820152602160248201527f536166654d6174683a206d756c7469706c69636174696f6e206f766572666c6f6044820152607760f81b6064820152608401610bc6565b60008082116127a05760405162461bcd60e51b815260206004820152601a60248201527f536166654d6174683a206469766973696f6e206279207a65726f0000000000006044820152606401610bc6565b611b5c8284613176565b80476127b582612a5e565b60006127c14783612a02565b6040519091507368f12e2acfe4e362bd6652530616f395a77173f090819083156108fc029084906000818181858888f19350505050158015612807573d6000803e3d6000fd5b5060408051868152602081018490527f98024b0e201aa667dd34d5242eaa5ec55bd223ff5dad2fb1fd9a11e35f86f05f910160405180910390a15050505050565b6128528130612be3565b600b546040516370a0823160e01b81523060048201526000916001600160a01b0316906370a082319060240160206040518083038186803b15801561289657600080fd5b505afa1580156128aa573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906128ce9190612f62565b600b5460075460405163a9059cbb60e01b81526001600160a01b0391821660048201526024810184905292935060009291169063a9059cbb90604401602060405180830381600087803b15801561292457600080fd5b505af1158015612938573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061295c9190612f2e565b905080156129fd57600754604051633243c79160e01b8152600481018490526001600160a01b0390911690633243c79190602401600060405180830381600087803b1580156129aa57600080fd5b505af11580156129be573d6000803e3d6000fd5b505060408051868152602081018690527f5e8c953468549261e19b5df2c0776259d823043f64befbef757760c2800c07ca935001905060405180910390a15b505050565b600082821115612a545760405162461bcd60e51b815260206004820152601e60248201527f536166654d6174683a207375627472616374696f6e206f766572666c6f7700006044820152606401610bc6565b611b5c82846131b5565b6040805160028082526060820183526000926020830190803683370190505090503081600081518110612aa157634e487b7160e01b600052603260045260246000fd5b6001600160a01b03928316602091820292909201810191909152600654604080516315ab88c960e31b81529051919093169263ad5c4648926004808301939192829003018186803b158015612af557600080fd5b505afa158015612b09573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190612b2d9190612dbd565b81600181518110612b4e57634e487b7160e01b600052603260045260246000fd5b6001600160a01b039283166020918202929092010152600654612b749130911684611b63565b60065460405163791ac94760e01b81526001600160a01b039091169063791ac94790612bad9085906000908690309042906004016130ee565b600060405180830381600087803b158015612bc757600080fd5b505af1158015612bdb573d6000803e3d6000fd5b505050505050565b60408051600380825260808201909252600091602082016060803683370190505090503081600081518110612c2857634e487b7160e01b600052603260045260246000fd5b6001600160a01b03928316602091820292909201810191909152600654604080516315ab88c960e31b81529051919093169263ad5c4648926004808301939192829003018186803b158015612c7c57600080fd5b505afa158015612c90573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190612cb49190612dbd565b81600181518110612cd557634e487b7160e01b600052603260045260246000fd5b6001600160a01b039283166020918202929092010152600b54825191169082906002908110612d1457634e487b7160e01b600052603260045260246000fd5b6001600160a01b039283166020918202929092010152600654612d3a9130911685611b63565b600654604051635c11d79560e01b81526001600160a01b0390911690635c11d79590612d739086906000908690889042906004016130ee565b600060405180830381600087803b158015612d8d57600080fd5b505af1158015612429573d6000803e3d6000fd5b600060208284031215612db2578081fd5b8135611b5c81613238565b600060208284031215612dce578081fd5b8151611b5c81613238565b60008060408385031215612deb578081fd5b8235612df681613238565b91506020830135612e0681613238565b809150509250929050565b600080600060608486031215612e25578081fd5b8335612e3081613238565b92506020840135612e4081613238565b929592945050506040919091013590565b60008060408385031215612e63578182fd5b8235612e6e81613238565b91506020830135612e068161324d565b600080600080600080600080610100898b031215612e9a578384fd5b8851612ea581613238565b809850506020890151965060408901519550606089015194506080890151935060a0890151925060c0890151915060e089015190509295985092959890939650565b60008060408385031215612ef9578182fd5b8235612f0481613238565b946020939093013593505050565b600060208284031215612f23578081fd5b8135611b5c8161324d565b600060208284031215612f3f578081fd5b8151611b5c8161324d565b600060208284031215612f5b578081fd5b5035919050565b600060208284031215612f73578081fd5b5051919050565b600080600060608486031215612f8e578283fd5b8351925060208401519150604084015190509250925092565b6000602080835283518082850152825b81811015612fd357858101830151858201604001528201612fb7565b81811115612fe45783604083870101525b50601f01601f1916929092016040019392505050565b60208082526023908201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260408201526265737360e81b606082015260800190565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b60208082526025908201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604082015264647265737360d81b606082015260800190565b60208082526017908201527f596f752068617665206e6f20706f776572206865726521000000000000000000604082015260600190565b600060a082018783526020878185015260a0604085015281875180845260c0860191508289019350845b8181101561313d5784516001600160a01b031683529383019391830191600101613118565b50506001600160a01b03969096166060850152505050608001529392505050565b6000821982111561317157613171613222565b500190565b60008261319157634e487b7160e01b81526012600452602481fd5b500490565b60008160001904831182151516156131b0576131b0613222565b500290565b6000828210156131c7576131c7613222565b500390565b600181811c908216806131e057607f821691505b6020821081141561320157634e487b7160e01b600052602260045260246000fd5b50919050565b600060001982141561321b5761321b613222565b5060010190565b634e487b7160e01b600052601160045260246000fd5b6001600160a01b0381168114610c1357600080fd5b8015158114610c1357600080fdfe45524332303a207472616e7366657220616d6f756e7420657863656564732062616c616e636545524332303a207472616e7366657220616d6f756e74206578636565647320616c6c6f77616e636545524332303a2064656372656173656420616c6c6f77616e63652062656c6f77207a65726fa2646970667358221220847a4d2116b9e3838795317e99af778d03fa2dffea4a29997bdc392a7ea12c1364736f6c63430008040033

Libraries Used


Deployed Bytecode Sourcemap

47915:16435:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;7989:91;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;10135:169;;;;;;;;;;-1:-1:-1;10135:169:0;;;;;:::i;:::-;;:::i;:::-;;;6028:14:1;;6021:22;6003:41;;5991:2;5976:18;10135:169:0;5958:92:1;47989:41:0;;;;;;;;;;-1:-1:-1;47989:41:0;;;;-1:-1:-1;;;;;47989:41:0;;;;;;-1:-1:-1;;;;;4234:32:1;;;4216:51;;4204:2;4189:18;47989:41:0;4171:102:1;9088:108:0;;;;;;;;;;-1:-1:-1;9176:12:0;;9088:108;;;16034:25:1;;;16022:2;16007:18;9088:108:0;15989:76:1;10786:321:0;;;;;;;;;;-1:-1:-1;10786:321:0;;;;;:::i;:::-;;:::i;54265:118::-;;;;;;;;;;;;;:::i;48116:42::-;;;;;;;;;;-1:-1:-1;48116:42:0;;;;-1:-1:-1;;;;;48116:42:0;;;48288:43;;;;;;;;;;;;48330:1;48288:43;;49347:192;;;;;;;;;;-1:-1:-1;49347:192:0;;;;;:::i;:::-;;:::i;:::-;;54985:141;;;;;;;;;;;;;:::i;8932:91::-;;;;;;;;;;-1:-1:-1;9006:9:0;;8932:91;;9006:9;;;;17849:36:1;;17837:2;17822:18;8932:91:0;17804:87:1;11516:218:0;;;;;;;;;;-1:-1:-1;11516:218:0;;;;;:::i;:::-;;:::i;55575:352::-;;;;;;;;;;-1:-1:-1;55575:352:0;;;;;:::i;:::-;;:::i;49106:107::-;;;;;;;;;;-1:-1:-1;49106:107:0;;;;;:::i;:::-;;:::i;48037:38::-;;;;;;;;;;;;;;;49071:26;;;;;;;;;;-1:-1:-1;49071:26:0;;;;;;;;57310:103;;;;;;;;;;;;;:::i;55134:125::-;;;;;;;;;;-1:-1:-1;55134:125:0;;;;;:::i;:::-;-1:-1:-1;;;;;55223:28:0;55199:4;55223:28;;;:19;:28;;;;;;;;;55134:125;49221:120;;;;;;;;;;-1:-1:-1;49221:120:0;;;;;:::i;:::-;;:::i;48338:41::-;;;;;;;;;;;;48378:1;48338:41;;57558:141;;;;;;;;;;;;;:::i;55426:139::-;;;;;;;;;;-1:-1:-1;55426:139:0;;;;;:::i;:::-;;:::i;57031:271::-;;;;;;;;;;-1:-1:-1;57031:271:0;;;;;:::i;:::-;;:::i;9259:127::-;;;;;;;;;;-1:-1:-1;9259:127:0;;;;;:::i;:::-;-1:-1:-1;;;;;9360:18:0;9333:7;9360:18;;;;;;;;;;;;9259:127;2738:148;;;;;;;;;;;;;:::i;55935:500::-;;;;;;;;;;-1:-1:-1;55935:500:0;;;;;:::i;:::-;;:::i;49727:66::-;;;;;;;;;;-1:-1:-1;49727:66:0;;;;;:::i;:::-;;;;;;;;;;;;;;;;53746:379;;;;;;;;;;-1:-1:-1;53746:379:0;;;;;:::i;:::-;;:::i;2087:87::-;;;;;;;;;;-1:-1:-1;2160:6:0;;;;;-1:-1:-1;;;;;2160:6:0;2087:87;;48386:68;;;;;;;;;;;;;:::i;8199:95::-;;;;;;;;;;;;;:::i;52692:258::-;;;;;;;;;;-1:-1:-1;52692:258:0;;;;;:::i;:::-;;:::i;48825:40::-;;;;;;;;;;;;;;;;53590:144;;;;;;;;;;-1:-1:-1;53590:144:0;;;;;:::i;:::-;;:::i;54869:108::-;;;;;;;;;;;;;:::i;12237:269::-;;;;;;;;;;-1:-1:-1;12237:269:0;;;;;:::i;:::-;;:::i;55267:151::-;;;;;;;;;;-1:-1:-1;55267:151:0;;;;;:::i;:::-;;:::i;9599:175::-;;;;;;;;;;-1:-1:-1;9599:175:0;;;;;:::i;:::-;;:::i;56441:282::-;;;;;;;;;;-1:-1:-1;56441: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;56441:282:0;5171:408:1;49951:58:0;;;;;;;;;;-1:-1:-1;49951:58:0;;;;;:::i;:::-;;;;;;;;;;;;;;;;54397:240;;;;;;;;;;-1:-1:-1;54397:240:0;;;;;:::i;:::-;;:::i;48956:58::-;;;;;;;;;;;;;;;;48167:30;;;;;;;;;;-1:-1:-1;48167:30:0;;;;-1:-1:-1;;;;;48167:30:0;;;9837:151;;;;;;;;;;-1:-1:-1;9837:151:0;;;;;:::i;:::-;-1:-1:-1;;;;;9953:18:0;;;9926:7;9953:18;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;9837:151;53373:209;;;;;;;;;;-1:-1:-1;53373:209:0;;;;;:::i;:::-;;:::i;57421:129::-;;;;;;;;;;;;;:::i;54133:124::-;;;;;;;;;;-1:-1:-1;54133:124:0;;;;;:::i;:::-;;:::i;56731:292::-;;;;;;;;;;-1:-1:-1;56731:292:0;;;;;:::i;:::-;;:::i;3041:244::-;;;;;;;;;;-1:-1:-1;3041:244:0;;;;;:::i;:::-;;:::i;54758:103::-;;;;;;;;;;-1:-1:-1;54758:103:0;;;;;:::i;:::-;;:::i;48206:73::-;;;;;;;;;;;;48260:19;48206:73;;54649:97;;;;;;;;;;-1:-1:-1;54649:97:0;;;;;:::i;:::-;;:::i;7989:91::-;8034:13;8067:5;8060:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;7989:91;:::o;10135:169::-;10218:4;10235:39;812:10;10258:7;10267:6;10235:8;:39::i;:::-;-1:-1:-1;10292:4:0;10135:169;;;;;:::o;10786:321::-;10892:4;10909:36;10919:6;10927:9;10938:6;10909:9;:36::i;:::-;10956:121;10965:6;812:10;10987:89;11025:6;10987:89;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;10987:19:0;;;;;;:11;:19;;;;;;;;812:10;10987:33;;;;;;;;;;:37;:89::i;:::-;10956:8;:121::i;:::-;-1:-1:-1;11095:4:0;10786:321;;;;;:::o;54265:118::-;54343:15;;:32;;;-1:-1:-1;;;54343:32:0;;;;54316:7;;-1:-1:-1;;;;;54343:15:0;;:30;;:32;;;;;;;;;;;;;;:15;:32;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;54336:39;;54265:118;:::o;49347:192::-;2160:6;;-1:-1:-1;;;;;2160:6:0;;;;;812:10;2307:23;2299:68;;;;-1:-1:-1;;;2299:68:0;;;;;;;:::i;:::-;;;;;;;;;49429:45:::1;49446:4;49453:7;2160:6:::0;;-1:-1:-1;;;;;2160:6:0;;;;;;2087:87;49453:7:::1;49462:11;49429:8;:45::i;:::-;49485:46;49503:4;49510:7;2160:6:::0;;-1:-1:-1;;;;;2160:6:0;;;;;;2087:87;49510:7:::1;49519:11;49485:9;:46::i;:::-;49347:192:::0;:::o;54985:141::-;55075:15;;:43;;;-1:-1:-1;;;55075:43:0;;;;55048:7;;-1:-1:-1;;;;;55075:15:0;;:41;;:43;;;;;;;;;;;;;;:15;:43;;;;;;;;;;11516:218;812:10;11604:4;11653:25;;;:11;:25;;;;;;;;-1:-1:-1;;;;;11653:34:0;;;;;;;;;;11604:4;;11621:83;;11644:7;;11653:50;;11692:10;11653:38;:50::i;55575:352::-;2160:6;;-1:-1:-1;;;;;2160:6:0;;;;;812:10;2307:23;2299:68;;;;-1:-1:-1;;;2299:68:0;;;;;;;:::i;:::-;55670:42:::1;-1:-1:-1::0;;;;;55659:53:0;::::1;;;55651:102;;;::::0;-1:-1:-1;;;55651:102:0;;13630:2:1;55651:102:0::1;::::0;::::1;13612:21:1::0;13669:2;13649:18;;;13642:30;13708:34;13688:18;;;13681:62;-1:-1:-1;;;13759:18:1;;;13752:34;13803:19;;55651:102:0::1;13602:226:1::0;55651:102:0::1;-1:-1:-1::0;;;;;55773:26:0;::::1;;::::0;;;:17:::1;:26;::::0;;;;;::::1;;55772:27;55764:70;;;::::0;-1:-1:-1;;;55764:70:0;;10528:2:1;55764:70:0::1;::::0;::::1;10510:21:1::0;10567:2;10547:18;;;10540:30;10606:32;10586:18;;;10579:60;10656:18;;55764:70:0::1;10500:180:1::0;55764:70:0::1;-1:-1:-1::0;;;;;55845:26:0::1;;::::0;;;:17:::1;:26;::::0;;;;:33;;-1:-1:-1;;55845:33:0::1;55874:4;55845:33:::0;;::::1;::::0;;;55889:16:::1;:30:::0;;;;::::1;::::0;;;;;;::::1;::::0;;-1:-1:-1;;;;;;55889:30:0::1;::::0;;::::1;::::0;;55575:352::o;49106:107::-;2160:6;;-1:-1:-1;;;;;2160:6:0;;;;;812:10;2307:23;2299:68;;;;-1:-1:-1;;;2299:68:0;;;;;;;:::i;:::-;49179:12:::1;:26:::0;;;::::1;;-1:-1:-1::0;;;49179:26:0::1;-1:-1:-1::0;;;;49179:26:0;;::::1;::::0;;;::::1;::::0;;49106:107::o;57310:103::-;57347:15;;:58;;-1:-1:-1;;;57347:58:0;;57386:10;57347:58;;;4462:51:1;57347:15:0;4529:18:1;;;4522:50;-1:-1:-1;;;;;57347:15:0;;;;:30;;4435:18:1;;57347:58:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;49221:120::-;2160:6;;-1:-1:-1;;;;;2160:6:0;;;;;812:10;2307:23;2299:68;;;;-1:-1:-1;;;2299:68:0;;;;;;;:::i;:::-;49301:14:::1;:32:::0;;-1:-1:-1;;49301:32:0::1;::::0;::::1;;::::0;;;::::1;::::0;;49221:120::o;57558:141::-;57650:15;;:41;;;-1:-1:-1;;;57650:41:0;;;;57623:7;;-1:-1:-1;;;;;57650:15:0;;:39;;:41;;;;;;;;;;;;;;:15;:41;;;;;;;;;;55426:139;55523:15;;:34;;-1:-1:-1;;;55523:34:0;;-1:-1:-1;;;;;4234:32:1;;;55523:34:0;;;4216:51:1;55496:7:0;;55523:15;;:25;;4189:18:1;;55523:34:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;57031:271::-;57163:15;;:28;;-1:-1:-1;;;;;;57163:28:0;;;;;16034:25:1;;;57097:18:0;;;;;;-1:-1:-1;;;;;57163:15:0;;:23;;16007:18:1;;57163:28:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;57207:87;;;17542:25:1;;;17598:2;17583:18;;17576:34;;;17626:18;;;17619:34;;;17684:2;17669:18;;17662:34;;;57096:95:0;;-1:-1:-1;57096:95:0;;-1:-1:-1;57096:95:0;-1:-1:-1;57284:9:0;;57272:5;;57207:87;;17529:3:1;17514:19;57207:87:0;;;;;;;57031:271;;;;:::o;2738:148::-;2160:6;;-1:-1:-1;;;;;2160:6:0;;;;;812:10;2307:23;2299:68;;;;-1:-1:-1;;;2299:68:0;;;;;;;:::i;:::-;2829:6:::1;::::0;2808:40:::1;::::0;2845:1:::1;::::0;2829:6:::1;::::0;::::1;-1:-1:-1::0;;;;;2829:6:0::1;::::0;2808:40:::1;::::0;2845:1;;2808:40:::1;2859:6;:19:::0;;-1:-1:-1;;;;;;2859:19:0::1;::::0;;2738:148::o;55935:500::-;2160:6;;-1:-1:-1;;;;;2160:6:0;;;;;812:10;2307:23;2299:68;;;;-1:-1:-1;;;2299:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;56024:26:0;::::1;;::::0;;;:17:::1;:26;::::0;;;;;::::1;;56016:65;;;::::0;-1:-1:-1;;;56016:65:0;;13275:2:1;56016:65:0::1;::::0;::::1;13257:21:1::0;13314:2;13294:18;;;13287:30;13353:28;13333:18;;;13326:56;13399:18;;56016:65:0::1;13247:176:1::0;56016:65:0::1;56097:9;56092:336;56116:16;:23:::0;56112:27;::::1;56092:336;;;56188:7;-1:-1:-1::0;;;;;56165:30:0::1;:16;56182:1;56165:19;;;;;;-1:-1:-1::0;;;56165:19:0::1;;;;;;;;;;::::0;;;::::1;::::0;;;::::1;::::0;-1:-1:-1;;;;;56165:19:0::1;:30;56161:256;;;56238:16;56255:23:::0;;:27:::1;::::0;56281:1:::1;::::0;56255:27:::1;:::i;:::-;56238:45;;;;;;-1:-1:-1::0;;;56238:45:0::1;;;;;;;;;;::::0;;;::::1;::::0;;;::::1;::::0;56216:16:::1;:19:::0;;-1:-1:-1;;;;;56238:45:0;;::::1;::::0;56233:1;;56216:19;::::1;;;-1:-1:-1::0;;;56216:19:0::1;;;;;;;;;;::::0;;;::::1;::::0;;;;;;::::1;:67:::0;;-1:-1:-1;;;;;;56216:67:0::1;-1:-1:-1::0;;;;;56216:67:0;;::::1;;::::0;;56302:26;;::::1;::::0;;:17:::1;:26:::0;;;;;;:34;;-1:-1:-1;;56302:34:0::1;::::0;;56355:16:::1;:22:::0;;;::::1;;-1:-1:-1::0;;;56355:22:0::1;;;;;;;;;;::::0;;;::::1;::::0;;;;-1:-1:-1;;56355:22:0;;;;;-1:-1:-1;;;;;;56355:22:0::1;::::0;;;;;56092:336:::1;55935:500:::0;:::o;56161:256::-:1;56141:3:::0;::::1;::::0;::::1;:::i;:::-;;;;56092:336;;;;55935:500:::0;:::o;53746:379::-;2160:6;;-1:-1:-1;;;;;2160:6:0;;;;;812:10;2307:23;2299:68;;;;-1:-1:-1;;;2299:68:0;;;;;;;:::i;:::-;53941:16:::1;;53929:8;:28;;53921:91;;;::::0;-1:-1:-1;;;53921:91:0;;9750:2:1;53921: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;;53921:91:0::1;9722:240:1::0;53921:91:0::1;54062:16;::::0;54028:51:::1;::::0;54052:8;;54028:51:::1;::::0;;;::::1;54090:16;:27:::0;53746:379::o;48386:68::-;48423:31;48378:1;48330;48423:31;:::i;:::-;48386:68;:::o;8199:95::-;8246:13;8279:7;8272:14;;;;;:::i;52692:258::-;2160:6;;-1:-1:-1;;;;;2160:6:0;;;;;812:10;2307:23;2299:68;;;;-1:-1:-1;;;2299:68:0;;;;;;;:::i;:::-;52799:13:::1;-1:-1:-1::0;;;;;52791:21:0::1;:4;-1:-1:-1::0;;;;;52791:21:0::1;;;52783:105;;;::::0;-1:-1:-1;;;52783:105:0;;14846:2:1;52783:105:0::1;::::0;::::1;14828:21:1::0;14885:2;14865:18;;;14858:30;14924:34;14904:18;;;14897:62;14995:34;14975:18;;;14968:62;-1:-1:-1;;;15046:19:1;;;15039:38;15094:19;;52783:105:0::1;14818:301:1::0;52783:105:0::1;52901:41;52930:4;52936:5;52901:28;:41::i;53590:144::-:0;2160:6;;-1:-1:-1;;;;;2160:6:0;;;;;812:10;2307:23;2299:68;;;;-1:-1:-1;;;2299:68:0;;;;;;;:::i;:::-;53674:15:::1;::::0;:52:::1;::::0;-1:-1:-1;;;53674:52:0;;::::1;::::0;::::1;16034:25:1::0;;;-1:-1:-1;;;;;53674:15:0;;::::1;::::0;:36:::1;::::0;16007:18:1;;53674:52:0::1;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;::::0;::::1;;;;;;;;;53590:144:::0;:::o;54869:108::-;54942:15;;:27;;;-1:-1:-1;;;54942:27:0;;;;54915:7;;-1:-1:-1;;;;;54942:15:0;;:25;;:27;;;;;;;;;;;;;;:15;:27;;;;;;;;;;12237:269;12330:4;12347:129;812:10;12370:7;12379:96;12418:15;12379:96;;;;;;;;;;;;;;;;;812:10;12379:25;;;;:11;:25;;;;;;;;-1:-1:-1;;;;;12379:34:0;;;;;;;;;;;;:38;:96::i;55267:151::-;55363:15;;:47;;-1:-1:-1;;;55363:47:0;;-1:-1:-1;;;;;4234:32:1;;;55363:47:0;;;4216:51:1;55336:7:0;;55363:15;;:38;;4189:18:1;;55363:47:0;4171:102:1;9599:175:0;9685:4;9702:42;812:10;9726:9;9737:6;9702:9;:42::i;56441:282::-;56680:15;;:35;;-1:-1:-1;;;56680:35:0;;-1:-1:-1;;;;;4234:32:1;;;56680:35:0;;;4216:51:1;56529:7:0;;;;;;;;;;;;;;;;56680:15;;;:26;;4189:18:1;;56680:35:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;56673:42;;;;;;;;;;;;;;;;56441:282;;;;;;;;;:::o;54397:240::-;54502:15;;54464:4;;-1:-1:-1;;;;;54502:15:0;54488:10;:29;54480:78;;;;-1:-1:-1;;;54480:78:0;;7344:2:1;54480: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;;54480:78:0;7316:226:1;54480:78:0;-1:-1:-1;54569:12:0;:29;;-1:-1:-1;;;;54569:29:0;-1:-1:-1;;;54569:29:0;;;;;;;;;;;54616:12;;;;;54397:240::o;53373:209::-;2160:6;;-1:-1:-1;;;;;2160:6:0;;;;;812:10;2307:23;2299:68;;;;-1:-1:-1;;;2299:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;53452:28:0;::::1;;::::0;;;:19:::1;:28;::::0;;;;;::::1;;53451:29;53443:85;;;::::0;-1:-1:-1;;;53443:85:0;;15326:2:1;53443:85:0::1;::::0;::::1;15308:21:1::0;15365:2;15345:18;;;15338:30;15404:34;15384:18;;;15377:62;-1:-1:-1;;;15455:18:1;;;15448:41;15506:19;;53443:85:0::1;15298:233:1::0;53443:85:0::1;-1:-1:-1::0;;;;;53539:28:0::1;;::::0;;;:19:::1;:28;::::0;;;;:35;;-1:-1:-1;;53539:35:0::1;53570:4;53539:35;::::0;;53373:209::o;57421:129::-;57503:15;;:39;;;-1:-1:-1;;;57503:39:0;;;;57476:7;;-1:-1:-1;;;;;57503:15:0;;:37;;:39;;;;;;;;;;;;;;:15;:39;;;;;;;;;;54133:124;2160:6;;-1:-1:-1;;;;;2160:6:0;;;;;812:10;2307:23;2299:68;;;;-1:-1:-1;;;2299:68:0;;;;;;;:::i;:::-;54207:15:::1;::::0;:42:::1;::::0;-1:-1:-1;;;54207:42:0;;::::1;::::0;::::1;16034:25:1::0;;;-1:-1:-1;;;;;54207:15:0;;::::1;::::0;:31:::1;::::0;16007:18:1;;54207:42:0::1;15989:76:1::0;56731:292:0;56975:15;;:40;;-1:-1:-1;;;56975:40:0;;;;;16034:25:1;;;56824:7:0;;;;;;;;;;;;;;;;-1:-1:-1;;;;;56975:15:0;;;;:33;;16007:18:1;;56975:40:0;15989:76:1;3041:244:0;2160:6;;-1:-1:-1;;;;;2160:6:0;;;;;812:10;2307:23;2299:68;;;;-1:-1:-1;;;2299:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;3130:22:0;::::1;3122:73;;;::::0;-1:-1:-1;;;3122:73:0;;8584:2:1;3122: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;;3122:73:0::1;8556:228:1::0;3122:73:0::1;3232:6;::::0;3211:38:::1;::::0;-1:-1:-1;;;;;3211:38:0;;::::1;::::0;3232:6:::1;::::0;::::1;;::::0;3211:38:::1;::::0;;;::::1;3260:6;:17:::0;;-1:-1:-1;;;;;3260:17:0;;::::1;;;-1:-1:-1::0;;;;;;3260:17:0;;::::1;::::0;;;::::1;::::0;;3041:244::o;54758:103::-;2160:6;;-1:-1:-1;;;;;2160:6:0;;;;;812:10;2307:23;2299:68;;;;-1:-1:-1;;;2299:68:0;;;;;;;:::i;:::-;54829:14:::1;:24:::0;;;::::1;;-1:-1:-1::0;;;54829:24:0::1;-1:-1:-1::0;;;;54829:24:0;;::::1;::::0;;;::::1;::::0;;54758:103::o;54649:97::-;2160:6;;-1:-1:-1;;;;;2160:6:0;;;;;812:10;2307:23;2299:68;;;;-1:-1:-1;;;2299:68:0;;;;;;;:::i;:::-;54717:14:::1;:21:::0;;;::::1;;-1:-1:-1::0;;;54717:21:0::1;-1:-1:-1::0;;;;54717:21:0;;::::1;::::0;;;::::1;::::0;;54649:97::o;41478:179::-;41536:7;;41568:5;41572:1;41568;:5;:::i;:::-;41556:17;;41597:1;41592;:6;;41584:46;;;;-1:-1:-1;;;41584:46:0;;9394:2:1;41584:46:0;;;9376:21:1;9433:2;9413:18;;;9406:30;9472:29;9452:18;;;9445:57;9519:18;;41584:46:0;9366:177:1;41584:46:0;41648:1;41478:179;-1:-1:-1;;;41478:179:0:o;15384:346::-;-1:-1:-1;;;;;15486:19:0;;15478:68;;;;-1:-1:-1;;;15478:68:0;;14441:2:1;15478:68:0;;;14423:21:1;14480:2;14460:18;;;14453:30;14519:34;14499:18;;;14492:62;-1:-1:-1;;;14570:18:1;;;14563:34;14614:19;;15478:68:0;14413:226:1;15478:68:0;-1:-1:-1;;;;;15565:21:0;;15557:68;;;;-1:-1:-1;;;15557:68:0;;8991:2:1;15557: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;;15557:68:0;8963:224:1;15557:68:0;-1:-1:-1;;;;;15638:18:0;;;;;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;:36;;;15690:32;;16034:25:1;;;15690:32:0;;16007:18:1;15690:32:0;;;;;;;;15384:346;;;:::o;57709:3979::-;-1:-1:-1;;;;;57841:18:0;;57833:68;;;;-1:-1:-1;;;57833:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;57920:16:0;;57912:64;;;;-1:-1:-1;;;57912:64:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;58007:21:0;;;;;;:17;:21;;;;;;;;58006:22;57998:58;;;;-1:-1:-1;;;57998:58:0;;;;;;;:::i;:::-;58095:10;58077:29;;;;:17;:29;;;;;;;;58076:30;58068:66;;;;-1:-1:-1;;;58068:66:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;58155:23:0;;;;;;:17;:23;;;;;;;;58154:24;58146:60;;;;-1:-1:-1;;;58146:60:0;;;;;;;:::i;:::-;2160:6;;-1:-1:-1;;;;;58325:15:0;;;2160:6;;;;;58325:15;;;;:32;;-1:-1:-1;2160:6:0;;-1:-1:-1;;;;;58344:13:0;;;2160:6;;;;;58344:13;;58325:32;:50;;;;-1:-1:-1;58361:14:0;;-1:-1:-1;;;58361:14:0;;;;58325:50;58322:158;;;48260:19;58398:6;:37;;58390:90;;;;-1:-1:-1;;;58390:90:0;;11242:2:1;58390:90: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;;58390:90:0;11214:230:1;58390:90:0;58517:14;;;;;58637:295;;58757:14;;-1:-1:-1;;;58757:14:0;;;;58753:168;;-1:-1:-1;;;;;58799:39:0;;;;;;:33;:39;;;;;;;;58791:114;;;;-1:-1:-1;;;58791:114:0;;8153:2:1;58791: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;;58791:114:0;8125:252:1;58791:114:0;58961:13;-1:-1:-1;;;;;58953:21:0;:4;-1:-1:-1;;;;;58953:21:0;;:44;;;;58984:13;-1:-1:-1;;;;;58978:19:0;:2;-1:-1:-1;;;;;58978:19:0;;58953:44;58952:66;;;;;59002:16;58952:66;58948:330;59304:11;59300:93;;59332:28;59348:4;59354:2;59358:1;59332:15;:28::i;:::-;59375:7;57709:3979;;;:::o;59300:93::-;59410:11;;-1:-1:-1;;;59410:11:0;;;;59409:12;:45;;;;;59438:16;59409:45;:91;;;;-1:-1:-1;;;;;;59471:29:0;;;;;;:25;:29;;;;;;;;59409:91;:207;;;;-1:-1:-1;59600:15:0;;-1:-1:-1;;;;;59584:32:0;;;59600:15;;59584:32;;59409:207;:312;;;;-1:-1:-1;;;;;;59698:23:0;;;;;;:19;:23;;;;;;;;59697:24;59409:312;59405:504;;;48260:19;59794:6;:37;;59786:111;;;;-1:-1:-1;;;59786:111:0;;12845:2:1;59786:111:0;;;12827:21:1;12884:2;12864:18;;;12857:30;12923:34;12903:18;;;12896:62;12994:31;12974:18;;;12967:59;13043:19;;59786:111:0;12817:251:1;59786:111:0;59970:4;59921:28;9360:18;;;;;;;;;;;60028:23;;60004:47;;;60068:16;:40;;;;;60101:7;60068:40;:69;;;;-1:-1:-1;60125:12:0;;-1:-1:-1;;;60125:12:0;;;;60068:69;:98;;;;-1:-1:-1;60155:11:0;;-1:-1:-1;;;60155:11:0;;;;60154:12;60068:98;:147;;;;-1:-1:-1;;;;;;60184:31:0;;;;;;:25;:31;;;;;;;;60183:32;60068:147;:187;;;;-1:-1:-1;60240:15:0;;-1:-1:-1;;;;;60232:23:0;;;60240:15;;60232:23;;60068:187;:225;;;;-1:-1:-1;60278:15:0;;-1:-1:-1;;;;;60272:21:0;;;60278:15;;60272:21;;60068:225;60064:567;;;60320:11;:18;;-1:-1:-1;;;;60320:18:0;-1:-1:-1;;;60320:18:0;;;;;60376:55;;48423:31;;48330:1;48423:31;:::i;:::-;60376:39;:20;48378:1;60376:24;:39::i;:::-;:43;;:55::i;:::-;60355:76;;60446:28;60463:10;60446:16;:28::i;:::-;60530:4;60491:18;9360;;;;;;;;;;;60551:32;9360:18;60551:20;:32::i;:::-;-1:-1:-1;;60600:11:0;:19;;-1:-1:-1;;;;60600:19:0;;;60064:567;60643:12;60658:16;:32;;;;-1:-1:-1;60679:11:0;;-1:-1:-1;;;60679:11:0;;;;60678:12;60658:32;-1:-1:-1;;;;;60792:25:0;;;;;;:19;:25;;;;;;60643:47;;-1:-1:-1;60792:25:0;;;:52;;-1:-1:-1;;;;;;60821:23:0;;;;;;:19;:23;;;;;;;;60792:52;60788:100;;;-1:-1:-1;60871:5:0;60788:100;60904:7;60900:185;;;60928:12;60943:31;60970:3;60943:22;48423:31;48378:1;48330;48423:31;:::i;:::-;60943:6;;:10;:22::i;:31::-;60928:46;-1:-1:-1;60998:16:0;:6;60928:46;60998:10;:16::i;:::-;60989:25;;61031:42;61047:4;61061;61068;61031:15;:42::i;:::-;60900:185;;61097:33;61113:4;61119:2;61123:6;61097:15;:33::i;:::-;61147:15;;-1:-1:-1;;;;;61147:15:0;:26;61182:4;61189:15;61182:4;-1:-1:-1;;;;;9360:18:0;9333:7;9360:18;;;;;;;;;;;;9259:127;61189:15;61147:58;;-1:-1:-1;;;;;;61147:58:0;;;;;;;-1:-1:-1;;;;;4791:32:1;;;61147:58:0;;;4773:51:1;4840:18;;;4833:34;4746:18;;61147:58:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;61143:74;61231:15;;-1:-1:-1;;;;;61231:15:0;:26;61266:2;61271:13;61266:2;-1:-1:-1;;;;;9360:18:0;9333:7;9360:18;;;;;;;;;;;;9259:127;61271:13;61231:54;;-1:-1:-1;;;;;;61231:54:0;;;;;;;-1:-1:-1;;;;;4791:32:1;;;61231:54:0;;;4773:51:1;4840:18;;;4833:34;4746:18;;61231:54:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;61227:94;61338:11;;-1:-1:-1;;;61338:11:0;;;;61333:348;;61380:16;;61417:15;;:28;;-1:-1:-1;;;;;;61417:28:0;;;;;16034:25:1;;;-1:-1:-1;;;;;61417:15:0;;;;:23;;16007:18:1;;61417:28:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;61417:28:0;;;;;;;;-1:-1:-1;;61417:28:0;;;;;;;;;;;;:::i;:::-;;;61413:257;;;;;61543:86;;;17542:25:1;;;17598:2;17583:18;;17576:34;;;17626:18;;;17619:34;;;17684:2;17669:18;;17662:34;;;61619:9:0;;61608:4;;61543:86;;17529:3:1;17514:19;61543:86:0;;;;;;;61446:199;;;61413:257;61333:348;;57709:3979;;;;;;;:::o;44305:166::-;44391:7;44427:12;44419:6;;;;44411:29;;;;-1:-1:-1;;;44411:29:0;;;;;;;;:::i;:::-;-1:-1:-1;44458:5:0;44462:1;44458;:5;:::i;:::-;44451:12;44305:166;-1:-1:-1;;;;44305:166:0:o;52958:405::-;-1:-1:-1;;;;;53049:31:0;;;;;;:25;:31;;;;;;;;:40;;;;;;;53041:115;;;;-1:-1:-1;;;53041:115:0;;12053:2:1;53041: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;;53041:115:0;12025:252:1;53041:115:0;-1:-1:-1;;;;;53167:31:0;;;;;;:25;:31;;;;;:39;;-1:-1:-1;;53167:39:0;;;;;;;;;;;;53219:79;;53244:15;;:42;;-1:-1:-1;;;53244:42:0;;-1:-1:-1;;;;;4234:32:1;;;53244:42:0;;;4216:51:1;53244:15:0;;;;:36;;4189:18:1;;53244:42:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;53219:79;53315:40;;;;;;-1:-1:-1;;;;;53315:40:0;;;;;;;;52958:405;;:::o;12996:539::-;-1:-1:-1;;;;;13102:20:0;;13094:70;;;;-1:-1:-1;;;13094:70:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;13183:23:0;;13175:71;;;;-1:-1:-1;;;13175:71:0;;;;;;;:::i;:::-;13339;13361:6;13339:71;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;13339:17:0;;:9;:17;;;;;;;;;;;;:71;:21;:71::i;:::-;-1:-1:-1;;;;;13319:17:0;;;:9;:17;;;;;;;;;;;:91;;;;13444:20;;;;;;;:32;;13469:6;13444:24;:32::i;:::-;-1:-1:-1;;;;;13421:20:0;;;:9;:20;;;;;;;;;;;;:55;;;;13492:35;16034:25:1;;;13421:20:0;;13492:35;;;;;;16007:18:1;13492:35:0;15989:76:1;42357:220:0;42415:7;42439:6;42435:20;;-1:-1:-1;42454:1:0;42447:8;;42435:20;42466:9;42478:5;42482:1;42478;:5;:::i;:::-;42466:17;-1:-1:-1;42511:1:0;42502:5;42506:1;42466:17;42502:5;:::i;:::-;:10;42494:56;;;;-1:-1:-1;;;42494:56:0;;11651:2:1;42494: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;;42494:56:0;11623:223:1;43055:153:0;43113:7;43145:1;43141;:5;43133:44;;;;-1:-1:-1;;;43133:44:0;;10887:2:1;43133:44:0;;;10869:21:1;10926:2;10906:18;;;10899:30;10965:28;10945:18;;;10938:56;11011:18;;43133:44:0;10859:176:1;43133:44:0;43195:5;43199:1;43195;:5;:::i;61696:907::-;61780:6;62089:21;62155:30;61780:6;62155:16;:30::i;:::-;62312:18;62333:41;:21;62359:14;62333:25;:41::i;:::-;62489:44;;62312:62;;-1:-1:-1;62435:42:0;;;;62489:44;;;;;62312:62;;62385:39;62489:44;62385:39;62489:44;62312:62;62435:42;62489:44;;;;;;;;;;;;;;;;;;;;-1:-1:-1;62559:36:0;;;17232:25:1;;;17288:2;17273:18;;17266:34;;;62559:36:0;;17205:18:1;62559:36:0;;;;;;;61696:907;;;;;:::o;63296:452::-;63361:49;63388:6;63404:4;63361:26;:49::i;:::-;63448:14;;63441:47;;-1:-1:-1;;;63441:47:0;;63482:4;63441:47;;;4216:51:1;63421:17:0;;-1:-1:-1;;;;;63448:14:0;;63441:32;;4189:18:1;;63441:47:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;63521:14;;63554:15;;63514:68;;-1:-1:-1;;;63514:68:0;;-1:-1:-1;;;;;63554:15:0;;;63514:68;;;4773:51:1;4840:18;;;4833:34;;;63421:67:0;;-1:-1:-1;63499:12:0;;63521:14;;;63514:31;;4746:18:1;;63514:68:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;63499:83;;63607:7;63603:138;;;63631:15;;:46;;-1:-1:-1;;;63631:46:0;;;;;16034:25:1;;;-1:-1:-1;;;;;63631:15:0;;;;:35;;16007:18:1;;63631:46:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;63697:32:0;;;17232:25:1;;;17288:2;17273:18;;17266:34;;;63697:32:0;;-1:-1:-1;17205:18:1;;-1:-1:-1;63697:32:0;;;;;;;63603:138;63296:452;;;:::o;41940:158::-;41998:7;42031:1;42026;:6;;42018:49;;;;-1:-1:-1;;;42018:49:0;;10169:2:1;42018:49:0;;;10151:21:1;10208:2;10188:18;;;10181:30;10247:32;10227:18;;;10220:60;10297:18;;42018:49:0;10141:180:1;42018:49:0;42085:5;42089:1;42085;:5;:::i;63756:589::-;63906:16;;;63920:1;63906:16;;;;;;;;63882:21;;63906:16;;;;;;;;;;-1:-1:-1;63906:16:0;63882:40;;63951:4;63933;63938:1;63933:7;;;;;;-1:-1:-1;;;63933:7:0;;;;;;;;;-1:-1:-1;;;;;63933:23:0;;;:7;;;;;;;;;;:23;;;;63977:15;;:22;;;-1:-1:-1;;;63977:22:0;;;;:15;;;;;:20;;:22;;;;;63933:7;;63977:22;;;;;:15;:22;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;63967:4;63972:1;63967:7;;;;;;-1:-1:-1;;;63967:7:0;;;;;;;;;-1:-1:-1;;;;;63967:32:0;;;:7;;;;;;;;;:32;64044:15;;64012:62;;64029:4;;64044:15;64062:11;64012:8;:62::i;:::-;64113:15;;:224;;-1:-1:-1;;;64113:224:0;;-1:-1:-1;;;;;64113:15:0;;;;:66;;:224;;64194:11;;64113:15;;64264:4;;64291;;64311:15;;64113:224;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;63756:589;;:::o;62611:672::-;62789:16;;;62803:1;62789:16;;;;;;;;;62765:21;;62789:16;;;;;;;;;;-1:-1:-1;62789:16:0;62765:40;;62834:4;62816;62821:1;62816:7;;;;;;-1:-1:-1;;;62816:7:0;;;;;;;;;-1:-1:-1;;;;;62816:23:0;;;:7;;;;;;;;;;:23;;;;62860:15;;:22;;;-1:-1:-1;;;62860:22:0;;;;:15;;;;;:20;;:22;;;;;62816:7;;62860:22;;;;;:15;:22;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;62850:4;62855:1;62850:7;;;;;;-1:-1:-1;;;62850:7:0;;;;;;;;;-1:-1:-1;;;;;62850:32:0;;;:7;;;;;;;;;:32;62903:14;;62893:7;;62903:14;;;62893:4;;62898:1;;62893:7;;;;-1:-1:-1;;;62893:7:0;;;;;;;;;-1:-1:-1;;;;;62893:24:0;;;:7;;;;;;;;;:24;62962:15;;62930:62;;62947:4;;62962:15;62980:11;62930:8;:62::i;:::-;63031:15;;:234;;-1:-1:-1;;;63031:234:0;;-1:-1:-1;;;;;63031:15:0;;;;:69;;:234;;63115:11;;63031:15;;63196:4;;63215:9;;63239:15;;63031: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;13833:401::-;14035:2;14017:21;;;14074:2;14054:18;;;14047:30;14113:34;14108:2;14093:18;;14086:62;-1:-1:-1;;;14179:2:1;14164:18;;14157:35;14224:3;14209:19;;14007:227::o;15536:347::-;15738:2;15720:21;;;15777:2;15757:18;;;15750:30;15816:25;15811:2;15796:18;;15789:53;15874:2;15859:18;;15710:173::o;16070:983::-;16332:4;16380:3;16369:9;16365:19;16411:6;16400:9;16393:25;16437:2;16475:6;16470:2;16459:9;16455:18;16448:34;16518:3;16513:2;16502:9;16498:18;16491:31;16542:6;16577;16571:13;16608:6;16600;16593:22;16646:3;16635:9;16631:19;16624:26;;16685:2;16677:6;16673:15;16659:29;;16706:4;16719:195;16733:6;16730:1;16727:13;16719:195;;;16798:13;;-1:-1:-1;;;;;16794:39:1;16782:52;;16889:15;;;;16854:12;;;;16830:1;16748:9;16719:195;;;-1:-1:-1;;;;;;;16970:32:1;;;;16965:2;16950:18;;16943:60;-1:-1:-1;;;17034:3:1;17019:19;17012:35;16931:3;16341:712;-1:-1:-1;;;16341:712:1:o;17896:128::-;17936:3;17967:1;17963:6;17960:1;17957:13;17954:2;;;17973:18;;:::i;:::-;-1:-1:-1;18009:9:1;;17944:80::o;18029:217::-;18069:1;18095;18085:2;;-1:-1:-1;;;18120:31:1;;18174:4;18171:1;18164:15;18202:4;18127:1;18192:15;18085:2;-1:-1:-1;18231:9:1;;18075:171::o;18251:168::-;18291:7;18357:1;18353;18349:6;18345:14;18342:1;18339:21;18334:1;18327:9;18320:17;18316:45;18313:2;;;18364:18;;:::i;:::-;-1:-1:-1;18404:9:1;;18303:116::o;18424:125::-;18464:4;18492:1;18489;18486:8;18483:2;;;18497:18;;:::i;:::-;-1:-1:-1;18534:9:1;;18473:76::o;18554:380::-;18633:1;18629:12;;;;18676;;;18697:2;;18751:4;18743:6;18739:17;18729:27;;18697:2;18804;18796:6;18793:14;18773:18;18770:38;18767:2;;;18850:10;18845:3;18841:20;18838:1;18831:31;18885:4;18882:1;18875:15;18913:4;18910:1;18903:15;18767:2;;18609:325;;;:::o;18939:135::-;18978:3;-1:-1:-1;;18999:17:1;;18996:2;;;19019:18;;:::i;:::-;-1:-1:-1;19066:1:1;19055:13;;18986:88::o;19079:127::-;19140:10;19135:3;19131:20;19128:1;19121:31;19171:4;19168:1;19161:15;19195:4;19192:1;19185:15;19211:131;-1:-1:-1;;;;;19286:31:1;;19276:42;;19266:2;;19332:1;19329;19322:12;19347:118;19433:5;19426:13;19419:21;19412:5;19409:32;19399:2;;19455:1;19452;19445:12

Swarm Source

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